Initial commit

This commit is contained in:
2026-06-16 20:36:49 -05:00
commit 51248398ce
17 changed files with 1178 additions and 0 deletions
@@ -0,0 +1,169 @@
(version 1)
#PCBWay Custom DRC for Kicad 7
# ----------------------------------- Minimum trace width and spacing (PICK ONE) --------------------
# 2oz copper
#(rule "Minimum Trace Width and Spacing (outer layer)"
#(constraint track_width (min 0.1524mm))
#(constraint clearance (min 0.1778mm))
#(layer outer)
#(condition "A.Type == 'track'"))
#(rule "Minimum Trace Width and Spacing (innner layer)"
#(constraint track_width (min 0.1524mm))
#(constraint clearance (min 0.1778mm))
#(layer inner)
#(condition "A.Type == 'track'"))
# 2-layer, 1oz copper
(rule "Minimum Trace Width and Spacing (outer layer)"
(constraint track_width (min 0.127mm))
(constraint clearance (min 0.127mm))
(layer outer)
(condition "A.Type == 'track'"))
(rule "Minimum Trace Width and Spacing (inner layer)"
(constraint track_width (min 0.1mm))
(constraint clearance (min 0.1mm))
(layer inner)
(condition "A.Type == 'track'"))
# 4-layer , 1oz and 0.5oz copper
#(rule "Minimum Trace Width and Spacing (outer layer)"
#(constraint track_width (min 0.09mm))
#(constraint clearance (min 0.09mm))
#(layer outer)
#(condition "A.Type == 'track'"))
#(rule "Minimum Trace Width and Spacing (inner layer)"
#(constraint track_width (min 0.1mm))
#(constraint clearance (min 0.09mm))
#(layer inner)
#(condition "A.Type == 'track'"))
# ------------------------------------------------------------------------------------------------------
# Drill/hole size - listed here to maintain order of rule application. Must not override rule set in Via hole/diameter size below.
(rule "drill hole size (mechanical)"
(constraint hole_size (min 0.15mm) (max 6.3mm)))
# ----------------------------------- Via hole/diameter size (PICK ONE) ------------------------------------
# 2-layer standard
(rule "Minimum Via Diameter and Hole Size"
(constraint hole_size (min 0.3mm))
(constraint via_diameter (min 0.5mm))
(condition "A.Type == 'via'"))
# 4-layer standard
#(rule "Minimum Via Diameter and Hole Size"
#(constraint hole_size (min 0.3mm))
#(constraint via_diameter (min 0.45mm))
#(condition "A.Type == 'via'"))
# 4-layer advanced
#(rule "Minimum Via Diameter and Hole Size"
#(constraint hole_size (min 0.25mm))
#(constraint via_diameter (min 0.4mm))
#(constraint disallow buried_via)
#(condition "A.Type == 'via'"))
# 4-layer advanced
#(rule "Minimum Via Diameter and Hole Size"
#(constraint hole_size (min 0.2mm))
#(constraint via_diameter (min 0.35mm))
#(condition "A.Type == 'via'"))
# 4-layer advanced
#(rule "Minimum Via Diameter and Hole Size"
#(constraint hole_size (min 0.15mm))
#(constraint via_diameter (min 0.3mm))
#(condition "A.Type == 'via'"))
# ----------------------------------- Drill/hole size ------------------------------------
(rule "PTH Hole Size"
(constraint hole_size (min 0.2mm) (max 6.35mm))
(condition "A.Type != 'Via' && A.isPlated()"))
(rule "Minimum Non-plated Hole Size"
(constraint hole_size (min 0.5mm))
(condition "A.Type == 'pad' && !A.isPlated()"))
(rule "Pad Size"
(constraint hole_size (min 0.5mm))
(constraint annular_width (min 0.25mm))
(condition "A.Type == 'Pad' && A.isPlated()"))
(rule "Minimum Castellated Hole Size"
(constraint hole_size (min 0.6mm))
(condition "A.Type == 'pad' && A.Fabrication_Property == 'Castellated pad'"))
(rule "Min. Plated Slot Width"
(constraint hole_size (min 0.5mm))
(condition "(A.Hole_Size_X != A.Hole_Size_Y) && A.isPlated()"))
(rule "Min. Non-Plated Slot Width"
(constraint hole_size (min 0.8mm))
(condition "(A.Hole_Size_X != A.Hole_Size_Y) && !A.isPlated()"))
# ----------------------------------- Minimum clearance ----------------------------------
(rule "hole to hole clearance (different nets)"
(constraint hole_to_hole (min 0.5mm))
(condition "A.Net != B.Net"))
(rule "via to track clearance"
(constraint hole_clearance (min 0.254mm))
(condition "A.Type == 'via' && B.Type == 'track'"))
(rule "via to via clearance (same nets)"
(constraint hole_to_hole (min 0.254mm))
(condition "A.Type == 'via' && B.Type == A.Type && A.Net == B.Net"))
(rule "pad to pad clearance (with hole, different nets)"
(constraint hole_to_hole (min 0.5mm))
(condition "A.Type == 'pad' && B.Type == A.Type && A.Net != B.Net"))
(rule "pad to pad clearance (without hole, different nets)"
(constraint clearance (min 0.127mm))
(condition "A.Type == 'Pad' && B.Type == 'Pad'"))
(rule "NPTH to Track clearance"
(constraint hole_clearance (min 0.254mm))
(condition "A.Pad_Type == 'NPTH, mechanical' && B.Type == 'track'"))
(rule "NPTH with copper around"
(constraint hole_clearance (min 0.20mm))
(condition "A.Pad_Type == 'NPTH, mechanical' && B.Type != 'track'"))
(rule "PTH to Track clearance"
(constraint hole_clearance (min 0.33mm))
(condition "A.isPlated() && A.Type != 'Via' && B.Type == 'track'"))
(rule "Pad to Track clearance"
(constraint clearance (min 0.2mm))
(condition "A.isPlated() && A.Type != 'Via' && B.Type == 'track'"))
# ----------------------------------- Board Outlines (PICK ONE) -------------------------------------
#Default Routed Edge Clearance
(rule "Trace to Outline"
(constraint edge_clearance (min 0.3mm))
(condition "A.Type == 'track'"))
#Special Clearance for V-Score Edges
#(rule "Trace to V-Cut"
#(constraint edge_clearance (min 0.4mm))
#(condition "A.Type == 'track'"))
# ----------------------------------- silkscreen --------------------------
(rule "Minimum Text"
(constraint text_thickness (min 0.15mm))
(constraint text_height (min 0.8mm))
(layer "?.Silkscreen"))
(rule "Pad to Silkscreen"
(constraint silk_clearance (min 0.15mm))
(layer outer)
(condition "A.Type == 'pad' && (B.Type == 'text' || B.Type == 'graphic')"))
+553
View File
@@ -0,0 +1,553 @@
(kicad_wks
(version 20231118)
(generator "pl_editor")
(generator_version "8.0")
(setup
(textsize 1.5 1.5)
(linewidth 0.15)
(textlinewidth 0.15)
(left_margin 10)
(right_margin 10)
(top_margin 10)
(bottom_margin 10)
)
(rect
(name "")
(start 0 0 ltcorner)
(end 0 0)
(repeat 2)
(incrx 2)
(incry 2)
)
(line
(name "")
(start 50 2 ltcorner)
(end 50 0 ltcorner)
(repeat 30)
(incrx 50)
)
(tbtext "1"
(name "")
(pos 25 1 ltcorner)
(font
(size 1.3 1.3)
)
(repeat 100)
(incrx 50)
)
(line
(name "")
(start 50 2 lbcorner)
(end 50 0 lbcorner)
(repeat 30)
(incrx 50)
)
(tbtext "1"
(name "")
(pos 25 1 lbcorner)
(font
(size 1.3 1.3)
)
(repeat 100)
(incrx 50)
)
(line
(name "")
(start 0 50 ltcorner)
(end 2 50 ltcorner)
(repeat 30)
(incry 50)
)
(tbtext "A"
(name "")
(pos 1 25 ltcorner)
(font
(size 1.3 1.3)
)
(justify center)
(repeat 100)
(incry 50)
)
(line
(name "")
(start 0 50 rtcorner)
(end 2 50 rtcorner)
(repeat 30)
(incry 50)
)
(tbtext "A"
(name "")
(pos 1 25 rtcorner)
(font
(size 1.3 1.3)
)
(justify center)
(repeat 100)
(incry 50)
)
(tbtext "${#}"
(name "")
(pos 25.6 6.0002)
(font
(face "Times New Roman")
(size 2.5 2.5) bold
(color 0 0 127 1)
)
(comment "Sheet id")
)
(tbtext "Sheet:"
(name "")
(pos 25.989 10.5022)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "of"
(name "")
(pos 17.489 5.5022)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "${##}"
(name "")
(pos 14 6)
(font
(face "Times New Roman")
(size 2.5 2.5) bold
(color 0 0 127 1)
)
(comment "Sheet id")
)
(tbtext "Size:"
(name "")
(pos 41.989 10.502)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "${PAPER}"
(name "")
(pos 40.989 6.0022)
(font
(face "Times New Roman")
(size 2.5 2.5) bold
(color 0 0 127 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 43.489 2.0022)
(end 43.489 12.5022)
)
(line
(name "")
(start 43.489 12.5022)
(end 1.989 12.5022)
)
(line
(name "")
(start 27.489 12.5022)
(end 27.489 2.0022)
)
(line
(name "")
(start 43.489 12.5022)
(end 43.489 23.0022)
)
(line
(name "")
(start 43.489 23.0022)
(end 1.989 23.0022)
)
(tbtext "Revision:"
(name "")
(pos 17.989 21.002)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "${REVISION}"
(name "")
(pos 17.989 16.502)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 19.489 23.0022)
(end 19.489 12.5022)
)
(tbtext "Date:"
(name "")
(pos 41.989 21.002)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 43.489 23.0022)
(end 43.489 33.5022)
)
(line
(name "")
(start 43.489 33.5022)
(end 1.989 33.5022)
)
(tbtext "Project Name:"
(name "")
(pos 41.989 31.502)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "${ISSUE_DATE}"
(name "")
(pos 41.989 16.502)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(tbtext "Reviewer:"
(name "")
(pos 76.489 10.5022)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "${REVIEWER}"
(name "")
(pos 76.489 6.002)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 77.989 12.5022)
(end 43.489 12.5022)
)
(line
(name "")
(start 77.989 2.0022)
(end 77.989 12.5022)
)
(tbtext "Designer:"
(name "")
(pos 76.489 21.002)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 77.989 12.5022)
(end 77.989 23.0022)
)
(line
(name "")
(start 77.989 23.0022)
(end 43.489 23.0022)
)
(tbtext "${DESIGNER}"
(name "")
(pos 76.489 16.502)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 112.489 12.5022)
(end 77.989 12.5022)
)
(line
(name "")
(start 77.989 2.0022)
(end 77.989 12.5022)
)
(line
(name "")
(start 112.489 12.5022)
(end 112.489 23.0022)
)
(line
(name "")
(start 112.489 23.0022)
(end 77.989 23.0022)
)
(tbtext "${FILENAME}"
(name "")
(pos 110.989 16.502)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 112.489 33.5022)
(end 43.489 33.5022)
)
(line
(name "")
(start 112.489 23.0022)
(end 112.489 33.5022)
)
(tbtext "Board Name:"
(name "")
(pos 110.989 31.502)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "Variant:"
(name "")
(pos 41.989 42.0022)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 43.489 44.0022)
(end 1.989 44.0022)
)
(line
(name "")
(start 43.489 33.5022)
(end 43.489 44.0022)
)
(tbtext "${VARIANT}"
(name "")
(pos 41.989 37.502)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 112.489 44.0022)
(end 43.489 44.0022)
)
(line
(name "")
(start 112.489 33.5022)
(end 112.489 44.0022)
)
(tbtext "Company:"
(name "")
(pos 110.989 42.002)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "${COMPANY}"
(name "")
(pos 110.989 37.502)
(font
(face "Times New Roman") bold
(color 0 0 127 1)
)
(comment "Sheet id")
)
(tbtext "${PROJECT_NAME}"
(name "")
(pos 41.489 27.002)
(font
(face "Times New Roman")
(size 2.5 2.5) bold
(color 0 0 127 1)
)
(comment "Sheet id")
)
(tbtext "${BOARD_NAME}"
(name "")
(pos 110.489 27.002)
(font
(face "Times New Roman")
(size 2.5 2.5) bold
(color 0 0 127 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 146.989 12.5022)
(end 146.989 23.0022)
)
(line
(name "")
(start 146.989 23.0022)
(end 112.489 23.0022)
)
(line
(name "")
(start 146.989 12.5022)
(end 112.489 12.5022)
)
(line
(name "")
(start 146.989 2.0022)
(end 146.989 12.5022)
)
(tbtext "File Name:"
(name "")
(pos 110.989 21.002)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "Sheet Title:"
(name "")
(pos 145.489 21.0022)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "${SHEETPATH}"
(name "")
(pos 145.489 6.002)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(tbtext "Sheet Path:"
(name "")
(pos 145.489 10.502)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "${TITLE}"
(name "")
(pos 145.489 16.502)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 146.989 44.0022)
(end 112.489 44.0022)
)
(line
(name "")
(start 146.989 23.0022)
(end 146.989 44.0022)
)
(tbtext "Comments:"
(name "")
(pos 145.489 42.002)
(font
(face "Arial")
(color 0 0 255 1)
)
(comment "Sheet id")
)
(tbtext "${COMMENT1}"
(name "")
(pos 145.489 37.502)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(tbtext "${COMMENT2}"
(name "")
(pos 145.489 34.002)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(tbtext "${COMMENT3}"
(name "")
(pos 145.489 30.502)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(tbtext "${COMMENT4}"
(name "")
(pos 145.489 27.002)
(font
(face "Times New Roman")
(color 0 0 127 1)
)
(comment "Sheet id")
)
(line
(name "")
(start 112.489 44.0022)
(end 43.489 44.0022)
)
(line
(name "")
(start 188.989 44.0022)
(end 146.989 44.0022)
)
(line
(name "")
(start 188.989 44.0022)
(end 188.989 2.0022)
)
(tbtext "${BOARD_NAME} ${DOC_TYPE} Document"
(name "")
(pos 269.989 180.502)
(font
(face "Times New Roman")
(size 4 4)
)
)
)
+110
View File
@@ -0,0 +1,110 @@
(kicad_wks (version 20220228) (generator pl_editor)
(setup (textsize 1.5 1.5)(linewidth 0.15)(textlinewidth 0.15)
(left_margin 10)(right_margin 10)(top_margin 10)(bottom_margin 10))
(rect (name "") (start 0 0 ltcorner) (end 0 0) (repeat 2) (incrx 2) (incry 2))
(line (name "") (start 50 2 ltcorner) (end 50 0 ltcorner) (repeat 30) (incrx 50))
(tbtext "1" (name "") (pos 25 1 ltcorner) (font (size 1.3 1.3)) (repeat 100) (incrx 50))
(line (name "") (start 50 2 lbcorner) (end 50 0 lbcorner) (repeat 30) (incrx 50))
(tbtext "1" (name "") (pos 25 1 lbcorner) (font (size 1.3 1.3)) (repeat 100) (incrx 50))
(line (name "") (start 0 50 ltcorner) (end 2 50 ltcorner) (repeat 30) (incry 50))
(tbtext "A" (name "") (pos 1 25 ltcorner) (font (size 1.3 1.3)) (justify center) (repeat 100) (incry 50))
(line (name "") (start 0 50 rtcorner) (end 2 50 rtcorner) (repeat 30) (incry 50))
(tbtext "A" (name "") (pos 1 25 rtcorner) (font (size 1.3 1.3)) (justify center) (repeat 100) (incry 50))
(tbtext "${#}" (name "") (pos 25.6 6.0002) (font (face "Times New Roman") (size 2.5 2.5) bold (color 0 0 127 1)) (comment "Sheet id")
)
(tbtext "Sheet:" (name "") (pos 25.989 10.5022) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "of" (name "") (pos 17.489 5.5022) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "${##}" (name "") (pos 14 6) (font (face "Times New Roman") (size 2.5 2.5) bold (color 0 0 127 1)) (comment "Sheet id")
)
(tbtext "Size:" (name "") (pos 41.989 10.502) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "${PAPER}" (name "") (pos 40.989 6.0022) (font (face "Times New Roman") (size 2.5 2.5) bold (color 0 0 127 1)) (comment "Sheet id")
)
(line (name "") (start 43.489 2.0022) (end 43.489 12.5022))
(line (name "") (start 43.489 12.5022) (end 1.989 12.5022))
(line (name "") (start 27.489 12.5022) (end 27.489 2.0022))
(line (name "") (start 43.489 12.5022) (end 43.489 23.0022))
(line (name "") (start 43.489 23.0022) (end 1.989 23.0022))
(tbtext "Revision:" (name "") (pos 17.989 21.002) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "${REVISION}" (name "") (pos 17.989 16.502) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(line (name "") (start 19.489 23.0022) (end 19.489 12.5022))
(tbtext "Date:" (name "") (pos 41.989 21.002) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(line (name "") (start 43.489 23.0022) (end 43.489 33.5022))
(line (name "") (start 43.489 33.5022) (end 1.989 33.5022))
(tbtext "Project Name:" (name "") (pos 41.989 31.502) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "${ISSUE_DATE}" (name "") (pos 41.989 16.502) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(tbtext "Reviewer:" (name "") (pos 76.489 10.5022) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "${REVIEWER}" (name "") (pos 76.489 6.002) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(line (name "") (start 77.989 12.5022) (end 43.489 12.5022))
(line (name "") (start 77.989 2.0022) (end 77.989 12.5022))
(tbtext "Designer:" (name "") (pos 76.489 21.002) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(line (name "") (start 77.989 12.5022) (end 77.989 23.0022))
(line (name "") (start 77.989 23.0022) (end 43.489 23.0022))
(tbtext "${DESIGNER}" (name "") (pos 76.489 16.502) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(line (name "") (start 112.489 12.5022) (end 77.989 12.5022))
(line (name "") (start 77.989 2.0022) (end 77.989 12.5022))
(line (name "") (start 112.489 12.5022) (end 112.489 23.0022))
(line (name "") (start 112.489 23.0022) (end 77.989 23.0022))
(tbtext "${FILENAME}" (name "") (pos 110.989 16.502) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(line (name "") (start 112.489 33.5022) (end 43.489 33.5022))
(line (name "") (start 112.489 23.0022) (end 112.489 33.5022))
(tbtext "Board Name:" (name "") (pos 110.989 31.502) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "Variant:" (name "") (pos 41.989 42.0022) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(line (name "") (start 43.489 44.0022) (end 1.989 44.0022))
(line (name "") (start 43.489 33.5022) (end 43.489 44.0022))
(tbtext "${VARIANT}" (name "") (pos 41.989 37.502) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(line (name "") (start 112.489 44.0022) (end 43.489 44.0022))
(line (name "") (start 112.489 33.5022) (end 112.489 44.0022))
(tbtext "Company:" (name "") (pos 110.989 42.002) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "${COMPANY}" (name "") (pos 110.989 37.502) (font (face "Times New Roman") bold (color 0 0 127 1)) (comment "Sheet id")
)
(tbtext "${PROJECT_NAME}" (name "") (pos 41.489 27.002) (font (face "Times New Roman") (size 2.5 2.5) bold (color 0 0 127 1)) (comment "Sheet id")
)
(tbtext "${BOARD_NAME}" (name "") (pos 110.489 27.002) (font (face "Times New Roman") (size 2.5 2.5) bold (color 0 0 127 1)) (comment "Sheet id")
)
(line (name "") (start 146.989 12.5022) (end 146.989 23.0022))
(line (name "") (start 146.989 23.0022) (end 112.489 23.0022))
(line (name "") (start 146.989 12.5022) (end 112.489 12.5022))
(line (name "") (start 146.989 2.0022) (end 146.989 12.5022))
(tbtext "File Name:" (name "") (pos 110.989 21.002) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "Sheet Title:" (name "") (pos 145.489 21.0022) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "${SHEETPATH}" (name "") (pos 145.489 6.002) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(tbtext "Sheet Path:" (name "") (pos 145.489 10.502) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "${TITLE}" (name "") (pos 145.489 16.502) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(line (name "") (start 146.989 44.0022) (end 112.489 44.0022))
(line (name "") (start 146.989 23.0022) (end 146.989 44.0022))
(tbtext "Comments:" (name "") (pos 145.489 42.002) (font (face "Arial") (color 0 0 255 1)) (comment "Sheet id")
)
(tbtext "${COMMENT1}" (name "") (pos 145.489 37.502) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(tbtext "${COMMENT2}" (name "") (pos 145.489 34.002) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(tbtext "${COMMENT3}" (name "") (pos 145.489 30.502) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(tbtext "${COMMENT4}" (name "") (pos 145.489 27.002) (font (face "Times New Roman") (color 0 0 127 1)) (comment "Sheet id")
)
(line (name "") (start 112.489 44.0022) (end 43.489 44.0022))
(line (name "") (start 188.989 44.0022) (end 146.989 44.0022))
(line (name "") (start 188.989 44.0022) (end 188.989 2.0022))
)