Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • master
1 result

Target

Select target project
No results found
Select Git revision
  • patch-1
  • master
2 results
Show changes
114 files
+ 29512
188
Compare changes
  • Side-by-side
  • Inline

Files

.gitignore

0 → 100644
+1 −0
Original line number Original line Diff line number Diff line
**.l#*
 No newline at end of file

README.md

0 → 100644
+1 −0
Original line number Original line Diff line number Diff line
These are historical; current library development is at https://gitlab.fabcloud.org/pub/libraries

eagle/README.md

0 → 100644
+28 −0
Original line number Original line Diff line number Diff line
## Use Fab Design Rules in Eagle

This will help you make sure that traces are not too close together!

In this folder, find ``` fabcity-designrules.dru ```

In Eagle, in the Board Window, find ``` edit >> design rules ``` 

On the first tab, use 'load' and load this .dru file.

Now you can use the 'DRC' command to check!

## Automate the generation of trace.png and cutout.png files
Matt Keeter wrote a Python script that opens up Eagle and exports a number of pngs using ImageMagick.

To get this script to run, use the following steps:
* Save eagle_png.py into the folder where you keep your Eagle project folders containing .brd and .sch files
* Install [ImageMagick](https://www.imagemagick.org/script/index.php)
* Create a polygon over your .brd design on the Milling layer (number 46)
* Set the isolate value for the polygon to a number greater than 16, this will ensure there's enough black space for mods to generate toolpaths in (see image below)
* Save your .brd file and close Eagle
* Run eagle_png using the following command `python eagle_png.py board_folder/board_name.brd`
* The script should have saved several .png files into the folder where the .brd file is

<img src="img/isolate.png" alt="Increase isolate value for polygon" width="700"/>


> **Note:** With later versions of Eagle (9.0.1+), by default it is configured to show text similar to "1-16" ontop of each via. This comes through even when exporting your final image. To remove this artifact, type the following in the commandline: `SET Option.ViaLength 0`

eagle/eagle_png.py

0 → 100644
+185 −0
Original line number Original line Diff line number Diff line
#!/usr/bin/env python

import os
import sys
import platform
import glob
import subprocess
import hashlib

def find_eagle():
    if platform.uname()[0] == 'Darwin':
        try:
            eagle_dir = glob.glob('/Applications/EAGLE*')[-1]
        except IndexError:
            sys.stderr.write("Error: EAGLE not found.\n")
            sys.exit(1)

        return eagle_dir + '/EAGLE.app/Contents/MacOS/EAGLE'
    else:
        if subprocess.call(['which','eagle'],
                           stdout = open(os.devnull, 'w')):
            sys.stderr.write("Error: EAGLE not found.\n")
            sys.exit(1)
        return 'eagle'

def create_images(name, resolution = 1500):
    for img in ['top','bottom','cutout','holes','vias']:
        file = '%s.%s.png' % (name, img)
        if os.path.isfile(file):
            os.remove(file)

    script = '''
ratsnest; write;
set palette black; window;
display none top vias pads;
export image '{name}.top.png' monochrome {resolution};
display none bottom vias pads;
export image '{name}.bottom.png' monochrome {resolution};
display none milling;
export image '{name}.cutout.png' monochrome {resolution};
display none holes;
export image '{name}.holes.png' monochrome {resolution};
display none vias pads;
export image '{name}.vias.png' monochrome {resolution};
quit'''.format(name = name, resolution = resolution)
    subprocess.call([find_eagle(), '-C', script, name + '.brd'])

def md5(filename):
    with open(filename,'rb') as f:
        m = hashlib.md5()
        for chunk in iter(lambda: f.read(m.block_size*128), ''):
            m.update(chunk)
    return m.digest()

def clean_up(name):
    preserve = ['top','bottom','cutout']
    for img in ['top','bottom','cutout','holes','vias']:
        file = '%s.%s.png'   % (name, img)
        file_ = '%s.%s_.png' % (name, img)
        if os.path.isfile(file) and img not in preserve:
            os.remove(file)
        if os.path.isfile(file_):
            os.remove(file_)

def print_help():
    print """command line: eagle_png [options] target.brd
   target.brd = EAGLE brd file to render
   The board outline should be a solid polygon on the 'milling' layer
   Internal cutouts should be solid shapes on the 'holes' layer

   Valid options:
       --resolution NUM : sets output image resolution
       --doublesided : forces double-sided mode"""
    sys.exit(1)

if __name__ == '__main__':
    if len(sys.argv) == 1:
        print_help()
        sys.exit(1)

    # Parse arguments
    sys.argv = sys.argv[1:]
    resolution = 1500
    force_doublesided = False

    while sys.argv:
        if sys.argv[0] == '--resolution':
            try:
                resolution = sys.argv[1]
                sys.argv = sys.argv[2:]
            except IndexError:
                sys.stderr.write("Error: No resolution provided.\n")
                sys.exit(1)
            try:
                resolution = int(resolution)
            except ValueError:
                sys.stderr.write("Error: Invalid resolution.\n")
                sys.exit(1)

        elif sys.argv[0] == '--doublesided':
            force_doublesided = True
            sys.argv = sys.argv[1:]

        elif len(sys.argv) == 1:
            break
    else:
        sys.stderr.write("Error: No filename provided.\n")
        sys.exit(1)

    name = sys.argv[0].replace('.brd','')
    if not os.path.isfile(name+'.brd'):
        sys.stderr.write("Error: .brd file does not exist.\n")
        sys.exit(1)

    vias    = name + '.vias.png'
    cutout  = name + '.cutout.png'
    top     = name + '.top.png'
    bottom  = name + '.bottom.png'
    holes   = name + '.holes.png'

    print "Rendering images."
    create_images(name, resolution)

    # Check to make sure that imagemagick is installed.
    if subprocess.call(['which','convert'], stdout = open(os.devnull, 'w')):
        sys.stderr.write("""Error: 'convert' not found.
ImageMagick command-line tools must be installed to use eagle_png.""")
        sys.exit(1)

    print "Processing images."

    # The following command is a set of ImageMagick instructions that
    # combine all of the images.

    # The following steps take place:
    #   - Perform a white flood fill on the vias image, starting in the upper
    #       left corner.  This makes the via image a set of black holes on
    #       a uniform white background
    #   - Multiply the vias and cutout images, to cut the via holes from
    #       the cutout region.
    #   - Invert the cutout image.
    #   - Lighten the top and bottom traces with the inverted cutout.  This
    #       ensures that we don't waste time milling traces in regions that
    #       will be cut out of the PCB.
    #   - Subtract the holes image from the original cutout image
    #   - Save this combined cutout image

    command = [ 'convert',
                vias, '-fill', 'white', '-draw', 'color 0,0 floodfill',
                cutout, '-compose', 'Darken', '-composite',
                '-compose','Lighten',
                '(',
                    '+clone',
                    '-negate'
              ]

    # If this is a two-sided board, then process the bottom layer
    if md5(bottom) != md5(vias) or force_doublesided:
        command += [
                    '(',
                        '+clone', bottom, '-composite',
                        '-flop', '-write', bottom, '+delete',
                    ')'
                    ]
    else:
        os.remove(bottom)

    # Process the top layer
    command += [
                top, '-composite', '-write', top,
                    '+delete',
                ')',
                holes,  '-compose', 'Minus_Src', '-composite', cutout
                ]

    # Execute this whole mess
    subprocess.call(command)

    os.remove(vias)
    os.remove(holes)

    if bottom in command:
        print "Generated %s, %s, %s." % (top, bottom, cutout)
    else:
        print "Generated %s, %s." % (top, cutout)
+73 −0
Original line number Original line Diff line number Diff line
description[de] = <b>EAGLE Design Rules</b>\n<p>\nDie Standard-Design-Rules sind so gewählt, dass sie für \ndie meisten Anwendungen passen. Sollte ihre Platine \nbesondere Anforderungen haben, treffen Sie die erforderlichen\nEinstellungen hier und speichern die Design Rules unter \neinem neuen Namen ab.
description[en] = <b>EAGLE Design Rules</b>\n<p>\nThe default Design Rules have been set to cover\na wide range of applications. Your particular design\nmay have different requirements, so please make the\nnecessary adjustments and save your customized\ndesign rules under a new name.
layerSetup = (1*16)
mtCopper = 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm
mtIsolate = 1.5mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm
mdWireWire = 16mil
mdWirePad = 16mil
mdWireVia = 16mil
mdPadPad = 16mil
mdPadVia = 16mil
mdViaVia = 16mil
mdSmdPad = 6mil
mdSmdVia = 6mil
mdSmdSmd = 6mil
mdViaViaSameLayer = 6mil
mnLayersViaInSmd = 2
mdCopperDimension = 16mil
mdDrill = 16mil
mdSmdStop = 0mil
msWidth = 10mil
msDrill = 32mil
msMicroVia = 9.99mm
msBlindViaRatio = 0.500000
rvPadTop = 0.250000
rvPadInner = 0.250000
rvPadBottom = 0.250000
rvViaOuter = 0.250000
rvViaInner = 0.250000
rvMicroViaOuter = 0.250000
rvMicroViaInner = 0.250000
rlMinPadTop = 10mil
rlMaxPadTop = 20mil
rlMinPadInner = 10mil
rlMaxPadInner = 20mil
rlMinPadBottom = 10mil
rlMaxPadBottom = 20mil
rlMinViaOuter = 8mil
rlMaxViaOuter = 20mil
rlMinViaInner = 8mil
rlMaxViaInner = 20mil
rlMinMicroViaOuter = 4mil
rlMaxMicroViaOuter = 20mil
rlMinMicroViaInner = 4mil
rlMaxMicroViaInner = 20mil
psTop = -1
psBottom = -1
psFirst = -1
psElongationLong = 100
psElongationOffset = 100
mvStopFrame = 1.000000
mvCreamFrame = 0.000000
mlMinStopFrame = 4mil
mlMaxStopFrame = 4mil
mlMinCreamFrame = 0mil
mlMaxCreamFrame = 0mil
mlViaStopLimit = 0mil
srRoundness = 0.000000
srMinRoundness = 0mil
srMaxRoundness = 0mil
slThermalIsolate = 16mil
slThermalsForVias = 0
dpMaxLengthDifference = 10mm
dpGapFactor = 2.500000
checkAngle = 0
checkFont = 1
checkRestrict = 1
checkStop = 0
checkValues = 0
checkNames = 1
checkWireStubs = 1
checkPolygonWidth = 0
useDiameter = 13
maxErrors = 50

eagle/img/.gitkeep

0 → 100644
+0 −0
Original line number Original line Diff line number Diff line
+32 −8
Original line number Original line Diff line number Diff line
<html>
<html>
<head>
<head>
  <title>CBA</title>
<title>fab libraries</title>
  <link rel="stylesheet" href="https://copplestone.pages.cba.mit.edu/styling/stylesheet.css">
</head>
</head>
<body link="black" vlink="black" alink="black">
<font face="bitstream vera sans,arial,helvetica,sans-serif">

<div style="margin-left:5%;margin-right:5%;">

<br>


<body id="main">
<h1>Fab Libraries</h1>
<h1>Fab Libraries</h1>
  <p>This repository holds libraries of components commonly used during How to Make (almost) Anything. Currently we have libraries for Eagle and KiCAD. If you have updated or different libraries to add then please submit a <a href="https://gitlab.cba.mit.edu/pub/ring/merge_requests">merge request.<a/></p>


  <p>Eagle - <a href="eagle/fab.lbr">fab.lbr</a> - <a href="https://learn.sparkfun.com/tutorials/how-to-install-and-setup-eagle/using-the-sparkfun-libraries">Instructions to add library to Eagle</a></p>
<p>
  <p>KiCAD - <a href="kicad/fab.mod">fab.mod</a> and <a href="kicad/fab.lib">fab.lib</a> - <a href="https://www.accelerated-designs.com/help/KiCad_Library.html">Instructions to add library to KiCAD</a></p>

This repository holds libraries of components commonly used in fab classes and labs. If you have updated or different libraries to add then please submit a <a href="https://gitlab.cba.mit.edu/pub/libraries/merge_requests">merge request.<a/>

<p>

<div style="margin-left:5%;margin-right:5%;">

<b><a href=https://gitlab.cba.mit.edu/pub/libraries/tree/master/eagle>Eagle</a></b>

<p>

<b><a href=https://gitlab.cba.mit.edu/pub/libraries/tree/master/kicad>KiCad</a></b>

<p>

<b><a href=https://gitlab.cba.mit.edu/pub/libraries/tree/master/kokompe>Kokompe</a></b>

<p>

<b><a href=https://gitlab.cba.mit.edu/pub/libraries/tree/master/kokopelli>Kokopelli</a></b>

<p>


</body>
<b><a href=https://gitlab.cba.mit.edu/pub/libraries/tree/master/python>Python</a></b>

kicad/README.md

0 → 100644
+23 −0
Original line number Original line Diff line number Diff line
See: https://gitlab.fabcloud.org/pub/libraries/electronics/kicad

## Fab KiCad Footprint Library

Updated and cleaned up 10/15/2020 by zfredin to fix errors and reflect the [homelab inventory](https://gitlab.cba.mit.edu/zfredin/homelab/-/blob/master/components.md); prior footprints to /archive.

![footprints](footprints.png)

### naming convention
fab_x_y_z.kicad_mod

_x_ is category: C, CONN, IC, LED, R, SMD (for generic footprints), etc

_y_ is size/config: 1x06 (single-row 6-pin header connector), SOIC8 (small outline integrated circuit, 8-pin), etc

_z_ is an optional descriptor, such as "SMD" for connectors to differentiate from thru-hole versions

### general design strategy
- hand-solderable (i.e., pads should be a bit longer than those intended for automated assembly and reflow soldering)
- route-able using a 1/64" (~0.4 mm) end mill
- maximize bridge span (i.e., space to run two tracks under a 1206 component)
- centered at 0,0
- component outline, reference, and value on F.Silk layer
Original line number Original line Diff line number Diff line
(module fab-1X06SMD (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at -2.54 0 90) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (pad 1 smd rect (at 0 -6.35) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 0 -3.81) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd rect (at 0 -1.27) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 4 smd rect (at 0 1.27) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 5 smd rect (at 0 3.81) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 6 smd rect (at 0 6.35) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-2-SMD-5X3MM (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at 0.635 -3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 1.27 3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -2.49936 -1.29794) (end -2.49936 -1.59766) (layer B.SilkS) (width 0.127))
  (fp_line (start -2.49936 -1.59766) (end 2.49936 -1.59766) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.49936 -1.59766) (end 2.49936 -1.29794) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.49936 1.29794) (end 2.49936 1.59766) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.49936 1.59766) (end -2.49936 1.59766) (layer B.SilkS) (width 0.127))
  (fp_line (start -2.49936 1.59766) (end -2.49936 1.29794) (layer B.SilkS) (width 0.127))
  (pad P$1 smd rect (at -1.99898 0) (size 1.99898 2.39776) (layers F.Cu F.Paste F.Mask))
  (pad P$2 smd rect (at 1.99898 0) (size 1.99898 2.39776) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-2X02SMD (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at -0.635 -3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 0 3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (pad 1 smd rect (at -2.54 -1.27) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 2.91846 -1.27) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd rect (at -2.54 1.27) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 4 smd rect (at 2.91846 1.27) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-2X03 (layer F.Cu) (tedit 200000)
  (descr "PIN HEADER")
  (tags "PIN HEADER")
  (attr virtual)
  (fp_text reference >NAME (at -0.635 -3.81) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_text value >VALUE (at 0 3.81) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -2.794 1.524) (end -2.286 1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.286 1.524) (end -2.286 1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.794 1.016) (end -2.286 1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.794 1.524) (end -2.794 1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.794 -1.016) (end -2.286 -1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.286 -1.016) (end -2.286 -1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.794 -1.524) (end -2.286 -1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.794 -1.016) (end -2.794 -1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.254 -1.016) (end 0.254 -1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.254 -1.016) (end 0.254 -1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.254 -1.524) (end 0.254 -1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.254 -1.016) (end -0.254 -1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.254 1.524) (end 0.254 1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.254 1.524) (end 0.254 1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.254 1.016) (end 0.254 1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.254 1.524) (end -0.254 1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.286 -1.016) (end 2.794 -1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.794 -1.016) (end 2.794 -1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.286 -1.524) (end 2.794 -1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.286 -1.016) (end 2.286 -1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.286 1.524) (end 2.794 1.524) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.794 1.524) (end 2.794 1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.286 1.016) (end 2.794 1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.286 1.524) (end 2.286 1.016) (layer F.SilkS) (width 0.06604))
  (fp_line (start -3.81 1.905) (end -3.175 2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start -1.905 2.54) (end -1.27 1.905) (layer B.SilkS) (width 0.1524))
  (fp_line (start -1.27 1.905) (end -0.635 2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start 0.635 2.54) (end 1.27 1.905) (layer B.SilkS) (width 0.1524))
  (fp_line (start -3.81 1.905) (end -3.81 -1.905) (layer B.SilkS) (width 0.1524))
  (fp_line (start -3.81 -1.905) (end -3.175 -2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start -3.175 -2.54) (end -1.905 -2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start -1.905 -2.54) (end -1.27 -1.905) (layer B.SilkS) (width 0.1524))
  (fp_line (start -1.27 -1.905) (end -0.635 -2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start -0.635 -2.54) (end 0.635 -2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start 0.635 -2.54) (end 1.27 -1.905) (layer B.SilkS) (width 0.1524))
  (fp_line (start -1.27 -1.905) (end -1.27 1.905) (layer B.SilkS) (width 0.1524))
  (fp_line (start 1.27 -1.905) (end 1.27 1.905) (layer B.SilkS) (width 0.1524))
  (fp_line (start -0.635 2.54) (end 0.635 2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start -3.175 2.54) (end -1.905 2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start 1.27 1.905) (end 1.905 2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start 3.175 2.54) (end 3.81 1.905) (layer B.SilkS) (width 0.1524))
  (fp_line (start 1.27 -1.905) (end 1.905 -2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start 1.905 -2.54) (end 3.175 -2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start 3.175 -2.54) (end 3.81 -1.905) (layer B.SilkS) (width 0.1524))
  (fp_line (start 3.81 -1.905) (end 3.81 1.905) (layer B.SilkS) (width 0.1524))
  (fp_line (start 1.905 2.54) (end 3.175 2.54) (layer B.SilkS) (width 0.1524))
  (fp_line (start -3.175 2.921) (end -1.905 2.921) (layer B.SilkS) (width 0.127))
  (fp_text user 1 (at -4.445 1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (pad 1 thru_hole rect (at -2.54 1.27) (size 1.524 1.524) (drill 1.016) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 2 thru_hole circle (at -2.54 -1.27) (size 1.524 3.048) (drill 1.016) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 3 thru_hole circle (at 0 1.27) (size 1.524 3.048) (drill 1.016) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 4 thru_hole circle (at 0 -1.27) (size 1.524 3.048) (drill 1.016) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 5 thru_hole circle (at 2.54 1.27) (size 1.524 3.048) (drill 1.016) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 6 thru_hole circle (at 2.54 -1.27) (size 1.524 3.048) (drill 1.016) (layers F&B.Cu F.Paste F.SilkS F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-2X03SMD (layer F.Cu) (tedit 5DC0ADA4)
  (attr smd)
  (fp_text reference >NAME (at -0.635 -4.445) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 0 4.445) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (pad 1 smd rect (at -2.54 -2.54) (size 2.54 1) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 2.91846 -2.54) (size 2.54 1) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd rect (at -2.54 0) (size 2.54 1) (layers F.Cu F.Paste F.Mask))
  (pad 4 smd rect (at 2.91846 0) (size 2.54 1) (layers F.Cu F.Paste F.Mask))
  (pad 5 smd rect (at -2.54 2.54) (size 2.54 1) (layers F.Cu F.Paste F.Mask))
  (pad 6 smd rect (at 2.91846 2.54) (size 2.54 1) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-2X04_THRU (layer F.Cu) (tedit 200000)
  (descr "2X4 HEADER.")
  (tags "2X4 HEADER.")
  (attr virtual)
  (fp_text reference "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (pad 1 thru_hole rect (at -1.27 -3.81) (size 1.50622 0) (drill 0.99822) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 2 thru_hole rect (at -1.27 -1.27) (size 1.50622 0) (drill 0.99822) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 3 thru_hole rect (at -1.27 1.27) (size 1.50622 0) (drill 0.99822) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 4 thru_hole rect (at -1.27 3.81) (size 1.50622 0) (drill 0.99822) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 5 thru_hole rect (at 1.27 3.81) (size 1.50622 0) (drill 0.99822) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 6 thru_hole rect (at 1.27 1.27) (size 1.50622 0) (drill 0.99822) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 7 thru_hole rect (at 1.27 -1.27) (size 1.50622 0) (drill 0.99822) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 8 thru_hole rect (at 1.27 -3.81) (size 1.50622 0) (drill 0.99822) (layers F&B.Cu F.Paste F.SilkS F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-2X05SMD (layer F.Cu) (tedit 5F70CDB2)
  (attr smd)
  (fp_text reference >NAME (at -0.889 -6.985) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at -0.254 6.985) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (pad 1 smd rect (at -2.794 -5.08) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 2.66446 -5.08) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd rect (at -2.794 -2.54) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 4 smd rect (at 2.66446 -2.54) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 5 smd rect (at -2.794 0) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 6 smd rect (at 2.66446 0) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 7 smd rect (at -2.794 2.54) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 8 smd rect (at 2.66446 2.54) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 9 smd rect (at -2.794 5.08) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
  (pad 10 smd rect (at 2.66446 5.08) (size 2.54 1.27) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-3.5MMTERM (layer F.Cu) (tedit 200000)
  (attr virtual)
  (fp_text reference >NAME (at -0.17272 -4.36372 180) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_line (start -3.39852 -3.39852) (end -3.39852 2.19964) (layer B.SilkS) (width 0.127))
  (fp_line (start -3.39852 2.19964) (end -3.39852 3.59918) (layer B.SilkS) (width 0.127))
  (fp_line (start -3.39852 3.59918) (end 3.59918 3.59918) (layer B.SilkS) (width 0.127))
  (fp_line (start 3.59918 3.59918) (end 3.59918 2.19964) (layer B.SilkS) (width 0.127))
  (fp_line (start 3.59918 2.19964) (end 3.59918 -3.39852) (layer B.SilkS) (width 0.127))
  (fp_line (start 3.59918 -3.39852) (end -3.39852 -3.39852) (layer B.SilkS) (width 0.127))
  (fp_line (start -3.39852 2.19964) (end 3.59918 2.19964) (layer B.SilkS) (width 0.127))
  (pad 1 thru_hole circle (at 1.79832 0) (size 2.18186 2.18186) (drill 0.99822) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 2 thru_hole circle (at -1.69926 0) (size 2.18186 2.18186) (drill 0.99822) (layers F&B.Cu F.Paste F.SilkS F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-5MM (layer F.Cu) (tedit 200000)
  (descr "5MM ROUND THROUGH HOLE PART.")
  (tags "5MM ROUND THROUGH HOLE PART.")
  (attr virtual)
  (fp_text reference >NAME (at 6.35 -1.1684) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_text value >VALUE (at 7.0104 1.1684) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_line (start 2.54 1.905) (end 2.54 -1.905) (layer B.SilkS) (width 0.2032))
  (fp_circle (center 0 0) (end -1.27 1.27) (layer B.SilkS) (width 0.0762))
  (fp_arc (start 0 0) (end 2.54 1.905) (angle 286.2) (layer B.SilkS) (width 0.254))
  (fp_arc (start 0 0) (end -1.143 0) (angle 90) (layer F.SilkS) (width 0.1524))
  (fp_arc (start 0 0) (end 1.143 0) (angle 90) (layer F.SilkS) (width 0.1524))
  (fp_arc (start 0 0) (end -1.651 0) (angle 90) (layer F.SilkS) (width 0.1524))
  (fp_arc (start 0 0) (end 1.651 0) (angle 90) (layer F.SilkS) (width 0.1524))
  (fp_arc (start 0 0) (end -2.159 0) (angle 90) (layer F.SilkS) (width 0.1524))
  (fp_arc (start 0 0) (end 2.159 0) (angle 90) (layer F.SilkS) (width 0.1524))
  (pad IN thru_hole circle (at -1.27 0) (size 1.4224 1.4224) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad OUT thru_hole circle (at 1.27 0) (size 1.4224 1.4224) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-6MM_SWITCH (layer F.Cu) (tedit 200000)
  (descr "OMRON SWITCH")
  (tags "OMRON SWITCH")
  (attr smd)
  (fp_text reference >NAME (at 0.127 -4.318) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_text value >VALUE (at 0.762 4.445) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_line (start 3.302 0.762) (end 3.048 0.762) (layer B.SilkS) (width 0.1524))
  (fp_line (start 3.302 0.762) (end 3.302 -0.762) (layer B.SilkS) (width 0.1524))
  (fp_line (start 3.048 -0.762) (end 3.302 -0.762) (layer B.SilkS) (width 0.1524))
  (fp_line (start 3.048 -1.016) (end 3.048 -2.54) (layer F.SilkS) (width 0.1524))
  (fp_line (start -3.302 -0.762) (end -3.048 -0.762) (layer B.SilkS) (width 0.1524))
  (fp_line (start -3.302 -0.762) (end -3.302 0.762) (layer B.SilkS) (width 0.1524))
  (fp_line (start -3.048 0.762) (end -3.302 0.762) (layer B.SilkS) (width 0.1524))
  (fp_line (start 3.048 -2.54) (end 2.54 -3.048) (layer F.SilkS) (width 0.1524))
  (fp_line (start 2.54 3.048) (end 3.048 2.54) (layer F.SilkS) (width 0.1524))
  (fp_line (start 3.048 2.54) (end 3.048 1.016) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.54 -3.048) (end -3.048 -2.54) (layer F.SilkS) (width 0.1524))
  (fp_line (start -3.048 -2.54) (end -3.048 -1.016) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.54 3.048) (end -3.048 2.54) (layer F.SilkS) (width 0.1524))
  (fp_line (start -3.048 2.54) (end -3.048 1.016) (layer F.SilkS) (width 0.1524))
  (fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.0508))
  (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.0508))
  (fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.0508))
  (fp_line (start -1.27 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.0508))
  (fp_line (start -1.27 -3.048) (end -1.27 -2.794) (layer B.SilkS) (width 0.0508))
  (fp_line (start 1.27 -2.794) (end -1.27 -2.794) (layer B.SilkS) (width 0.0508))
  (fp_line (start 1.27 -2.794) (end 1.27 -3.048) (layer B.SilkS) (width 0.0508))
  (fp_line (start 1.143 2.794) (end -1.27 2.794) (layer B.SilkS) (width 0.0508))
  (fp_line (start 1.143 2.794) (end 1.143 3.048) (layer B.SilkS) (width 0.0508))
  (fp_line (start -1.27 2.794) (end -1.27 3.048) (layer B.SilkS) (width 0.0508))
  (fp_line (start 2.54 3.048) (end 2.159 3.048) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.54 3.048) (end -2.159 3.048) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.159 3.048) (end -1.27 3.048) (layer B.SilkS) (width 0.1524))
  (fp_line (start -2.54 -3.048) (end -2.159 -3.048) (layer F.SilkS) (width 0.1524))
  (fp_line (start 2.54 -3.048) (end 2.159 -3.048) (layer F.SilkS) (width 0.1524))
  (fp_line (start 2.159 -3.048) (end 1.27 -3.048) (layer B.SilkS) (width 0.1524))
  (fp_line (start 1.27 -3.048) (end -1.27 -3.048) (layer B.SilkS) (width 0.1524))
  (fp_line (start -1.27 -3.048) (end -2.159 -3.048) (layer B.SilkS) (width 0.1524))
  (fp_line (start -1.27 3.048) (end 1.143 3.048) (layer B.SilkS) (width 0.1524))
  (fp_line (start 1.143 3.048) (end 2.159 3.048) (layer B.SilkS) (width 0.1524))
  (fp_line (start 3.048 0.762) (end 3.048 1.016) (layer B.SilkS) (width 0.1524))
  (fp_line (start 3.048 -0.762) (end 3.048 -1.016) (layer B.SilkS) (width 0.1524))
  (fp_line (start -3.048 0.762) (end -3.048 1.016) (layer B.SilkS) (width 0.1524))
  (fp_line (start -3.048 -0.762) (end -3.048 -1.016) (layer B.SilkS) (width 0.1524))
  (fp_line (start -1.27 2.159) (end 1.27 2.159) (layer F.SilkS) (width 0.1524))
  (fp_line (start 1.27 -2.286) (end -1.27 -2.286) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.413 -1.27) (end -2.413 -0.508) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.413 0.508) (end -2.413 1.27) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.413 -0.508) (end -2.159 0.381) (layer F.SilkS) (width 0.1524))
  (fp_circle (center 0 0) (end -0.889 0.889) (layer B.SilkS) (width 0.0762))
  (fp_circle (center -2.159 2.159) (end -2.413 2.413) (layer F.SilkS) (width 0.0762))
  (fp_circle (center 2.159 2.032) (end 2.413 2.286) (layer F.SilkS) (width 0.0762))
  (fp_circle (center 2.159 -2.159) (end 2.413 -2.413) (layer F.SilkS) (width 0.0762))
  (fp_circle (center -2.159 -2.159) (end -2.413 -2.413) (layer F.SilkS) (width 0.0762))
  (fp_circle (center 0 0) (end -0.3175 0.3175) (layer F.SilkS) (width 0.0254))
  (fp_circle (center 0 0) (end -0.127 0.127) (layer B.SilkS) (width 0.0762))
  (fp_text user 1 (at -3.683 -2.286) (layer B.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_text user 2 (at 4.191 -2.159) (layer B.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_text user 3 (at -3.937 2.159) (layer B.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_text user 4 (at 4.191 2.159) (layer B.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (pad 1 smd rect (at -3.302 -2.286) (size 2.286 1.524) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 3.302 -2.286) (size 2.286 1.524) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd rect (at -3.302 2.286) (size 2.286 1.524) (layers F.Cu F.Paste F.Mask))
  (pad 4 smd rect (at 3.302 2.286) (size 2.286 1.524) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-8-LCC (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at 0.17272 -4.63296) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 0.30988 4.8641) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -2.49936 -1.99898) (end -2.49936 -2.49936) (layer B.SilkS) (width 0.127))
  (fp_line (start -2.49936 -2.49936) (end 2.49936 -2.49936) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.49936 -2.49936) (end 2.49936 -1.99898) (layer B.SilkS) (width 0.127))
  (fp_line (start -2.49936 1.99898) (end -2.49936 2.49936) (layer B.SilkS) (width 0.127))
  (fp_line (start -2.49936 2.49936) (end 2.49936 2.49936) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.49936 2.49936) (end 2.49936 1.99898) (layer B.SilkS) (width 0.127))
  (pad P$1 smd rect (at -2.21996 -1.27) (size 1.76784 0.7493) (layers F.Cu F.Paste F.Mask))
  (pad P$2 smd rect (at -2.21996 0) (size 1.76784 0.7493) (layers F.Cu F.Paste F.Mask))
  (pad P$3 smd rect (at -2.21996 1.27) (size 1.76784 0.7493) (layers F.Cu F.Paste F.Mask))
  (pad P$4 smd rect (at 0 2.80924 90) (size 1.27 0.635) (layers F.Cu F.Paste F.Mask))
  (pad P$5 smd rect (at 2.21996 1.27 180) (size 1.76784 0.7493) (layers F.Cu F.Paste F.Mask))
  (pad P$6 smd rect (at 2.21996 0 180) (size 1.76784 0.8382) (layers F.Cu F.Paste F.Mask))
  (pad P$7 smd rect (at 2.21996 -1.27 180) (size 1.76784 0.7493) (layers F.Cu F.Paste F.Mask))
  (pad P$8 smd rect (at 0 -3.07848 270) (size 1.27 0.635) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-AYZ0102AGRLC (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at 0.381 -3.429) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 0.508 3.937) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -3.59918 1.4986) (end 3.59918 1.4986) (layer B.SilkS) (width 0.127))
  (fp_line (start 3.59918 1.4986) (end 3.59918 -1.4986) (layer B.SilkS) (width 0.127))
  (fp_line (start 3.59918 -1.4986) (end 1.4986 -1.4986) (layer B.SilkS) (width 0.127))
  (fp_line (start 1.4986 -1.4986) (end -1.4986 -1.4986) (layer B.SilkS) (width 0.127))
  (fp_line (start -1.4986 -1.4986) (end -3.59918 -1.4986) (layer B.SilkS) (width 0.127))
  (fp_line (start -3.59918 -1.4986) (end -3.59918 1.4986) (layer B.SilkS) (width 0.127))
  (fp_line (start 0 -1.59766) (end 0 -2.49936) (layer B.SilkS) (width 0.127))
  (fp_line (start 0 -2.49936) (end 1.4986 -2.49936) (layer B.SilkS) (width 0.127))
  (fp_line (start 1.4986 -2.49936) (end 1.4986 -1.4986) (layer B.SilkS) (width 0.127))
  (fp_circle (center -1.4986 -0.39878) (end -1.70942 -0.6096) (layer F.SilkS) (width 0.127))
  (fp_line (start -1.92278 -0.39878) (end -1.07442 -0.39878) (layer F.SilkS) (width 0.127))
  (fp_line (start -1.4986 0.02286) (end -1.4986 -0.82296) (layer F.SilkS) (width 0.127))
  (fp_circle (center 1.4986 -0.39878) (end 1.70942 -0.6096) (layer F.SilkS) (width 0.127))
  (fp_line (start 1.07442 -0.39878) (end 1.92278 -0.39878) (layer F.SilkS) (width 0.127))
  (fp_line (start 1.4986 0.02286) (end 1.4986 -0.82296) (layer F.SilkS) (width 0.127))
  (pad 1 smd rect (at 2.49936 2.2987) (size 0.99822 1.19888) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 0 2.2987) (size 0.99822 1.19888) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd rect (at -2.49936 2.2987) (size 0.99822 1.19888) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-C1206 (layer F.Cu) (tedit 200000)
  (descr CAPACITOR)
  (tags CAPACITOR)
  (attr smd)
  (fp_text reference >NAME (at 1.905 -1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 2.54 1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -1.7018 0.8509) (end -0.94996 0.8509) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.94996 0.8509) (end -0.94996 -0.84836) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.7018 -0.84836) (end -0.94996 -0.84836) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.7018 0.8509) (end -1.7018 -0.84836) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.94996 0.84836) (end 1.7018 0.84836) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7018 0.84836) (end 1.7018 -0.8509) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.94996 -0.8509) (end 1.7018 -0.8509) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.94996 0.84836) (end 0.94996 -0.8509) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.19812 0.39878) (end 0.19812 0.39878) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.19812 0.39878) (end 0.19812 -0.39878) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.19812 -0.39878) (end 0.19812 -0.39878) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.19812 0.39878) (end -0.19812 -0.39878) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.47142 -0.98298) (end 2.47142 -0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start 2.47142 0.98298) (end -2.47142 0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start -2.47142 0.98298) (end -2.47142 -0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start 2.47142 -0.98298) (end 2.47142 0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start -0.96266 -0.78486) (end 0.96266 -0.78486) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.96266 0.78486) (end 0.96266 0.78486) (layer F.SilkS) (width 0.1016))
  (pad 1 smd rect (at -1.39954 0) (size 1.59766 1.79832) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 1.39954 0) (size 1.59766 1.79832) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-C1206FAB (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at 0.762 -1.778) (layer F.SilkS)
    (effects (font (size 1.016 1.016) (thickness 0.1524)))
  )
  (fp_text value >VALUE (at 1.27 1.778) (layer F.SilkS)
    (effects (font (size 1.016 1.016) (thickness 0.1524)))
  )
  (fp_line (start -2.032 -1.016) (end 2.032 -1.016) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.032 -1.016) (end 2.032 1.016) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.032 1.016) (end -2.032 1.016) (layer B.SilkS) (width 0.127))
  (fp_line (start -2.032 1.016) (end -2.032 -1.016) (layer B.SilkS) (width 0.127))
  (pad 1 smd rect (at -1.651 0) (size 1.27 1.905) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 1.651 0) (size 1.27 1.905) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-C1206K (layer F.Cu) (tedit 200000)
  (descr "CERAMIC CHIP CAPACITOR KEMET 1206 REFLOW SOLDER")
  (tags "CERAMIC CHIP CAPACITOR KEMET 1206 REFLOW SOLDER")
  (attr smd)
  (fp_text reference >NAME (at 0.9398 -1.60782) (layer F.SilkS)
    (effects (font (size 1.016 1.016) (thickness 0.0762)))
  )
  (fp_text value >VALUE (at 1.4478 1.59004) (layer F.SilkS)
    (effects (font (size 1.016 1.016) (thickness 0.0762)))
  )
  (fp_line (start -1.59766 0.79756) (end -1.09982 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 0.79756) (end -1.09982 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.59766 -0.79756) (end -1.09982 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.59766 0.79756) (end -1.59766 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.09982 0.79756) (end 1.59766 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.59766 0.79756) (end 1.59766 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.09982 -0.79756) (end 1.59766 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.09982 0.79756) (end 1.09982 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.524 -0.7493) (end 1.524 -0.7493) (layer F.SilkS) (width 0.1016))
  (fp_line (start 1.524 0.7493) (end -1.524 0.7493) (layer F.SilkS) (width 0.1016))
  (pad 1 smd rect (at -1.4986 0) (size 1.4986 1.99898) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 1.4986 0) (size 1.4986 1.99898) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-CSP-4PIN (layer F.Cu) (tedit 200000)
  (descr "KNOWLES SPU0414HR5H-SB")
  (tags "KNOWLES SPU0414HR5H-SB")
  (attr smd)
  (fp_text reference "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_line (start -1.4732 -1.8796) (end 1.4732 -1.8796) (layer F.SilkS) (width 0.127))
  (fp_line (start 1.4732 -1.8796) (end 1.4732 1.8796) (layer F.SilkS) (width 0.127))
  (fp_line (start 1.4732 1.8796) (end -1.4732 1.8796) (layer F.SilkS) (width 0.127))
  (fp_line (start -1.4732 1.8796) (end -1.4732 -1.8796) (layer F.SilkS) (width 0.127))
  (fp_circle (center 0 -0.6985) (end -0.14986 -0.84836) (layer F.SilkS) (width 0.0635))
  (pad P$1 smd circle (at 0.85344 -1.21412) (size 0.79756 0.79756) (layers F.Cu F.Paste F.Mask))
  (pad P$2 smd circle (at 0.84836 1.22936) (size 0.79756 0.79756) (layers F.Cu F.Paste F.Mask))
  (pad P$3 smd circle (at -0.84836 1.22936) (size 0.79756 0.79756) (layers F.Cu F.Paste F.Mask))
  (pad P$4 smd circle (at -0.84836 -1.22936) (size 0.79756 0.79756) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-DIL14 (layer F.Cu) (tedit 200000)
  (descr "DUAL IN LINE PACKAGE")
  (tags "DUAL IN LINE PACKAGE")
  (attr virtual)
  (fp_text reference >NAME (at -9.906 -0.127 90) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_text value >VALUE (at -2.921 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_line (start 8.89 -2.921) (end -8.89 -2.921) (layer B.SilkS) (width 0.1524))
  (fp_line (start -8.89 2.921) (end 8.89 2.921) (layer B.SilkS) (width 0.1524))
  (fp_line (start 8.89 -2.921) (end 8.89 2.921) (layer B.SilkS) (width 0.1524))
  (fp_line (start -8.89 -2.921) (end -8.89 -1.016) (layer B.SilkS) (width 0.1524))
  (fp_line (start -8.89 2.921) (end -8.89 1.016) (layer B.SilkS) (width 0.1524))
  (fp_arc (start -8.89 0) (end -8.89 -1.016) (angle 180) (layer B.SilkS) (width 0.1524))
  (pad 1 thru_hole oval (at -7.62 3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 2 thru_hole oval (at -5.08 3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 3 thru_hole oval (at -2.54 3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 4 thru_hole oval (at 0 3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 5 thru_hole oval (at 2.54 3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 6 thru_hole oval (at 5.08 3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 7 thru_hole oval (at 7.62 3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 8 thru_hole oval (at 7.62 -3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 9 thru_hole oval (at 5.08 -3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 10 thru_hole oval (at 2.54 -3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 11 thru_hole oval (at 0 -3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 12 thru_hole oval (at -2.54 -3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 13 thru_hole oval (at -5.08 -3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 14 thru_hole oval (at -7.62 -3.81 180) (size 1.3208 2.6416) (drill 0.8128) (layers F&B.Cu F.Paste F.SilkS F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-DO41Z10 (layer F.Cu) (tedit 200000)
  (descr DIODE)
  (tags DIODE)
  (attr virtual)
  (fp_text reference >NAME (at 1.27 -2.286) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_text value >VALUE (at 1.905 2.159) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_line (start -1.651 1.27) (end -1.143 1.27) (layer B.SilkS) (width 0.06604))
  (fp_line (start -1.143 1.27) (end -1.143 -1.27) (layer B.SilkS) (width 0.06604))
  (fp_line (start -1.651 -1.27) (end -1.143 -1.27) (layer B.SilkS) (width 0.06604))
  (fp_line (start -1.651 1.27) (end -1.651 -1.27) (layer B.SilkS) (width 0.06604))
  (fp_line (start 2.032 0.381) (end 3.937 0.381) (layer B.SilkS) (width 0.06604))
  (fp_line (start 3.937 0.381) (end 3.937 -0.381) (layer B.SilkS) (width 0.06604))
  (fp_line (start 2.032 -0.381) (end 3.937 -0.381) (layer B.SilkS) (width 0.06604))
  (fp_line (start 2.032 0.381) (end 2.032 -0.381) (layer B.SilkS) (width 0.06604))
  (fp_line (start -3.937 0.381) (end -2.032 0.381) (layer B.SilkS) (width 0.06604))
  (fp_line (start -2.032 0.381) (end -2.032 -0.381) (layer B.SilkS) (width 0.06604))
  (fp_line (start -3.937 -0.381) (end -2.032 -0.381) (layer B.SilkS) (width 0.06604))
  (fp_line (start -3.937 0.381) (end -3.937 -0.381) (layer B.SilkS) (width 0.06604))
  (fp_line (start 2.032 1.27) (end -2.032 1.27) (layer B.SilkS) (width 0.1524))
  (fp_line (start 2.032 1.27) (end 2.032 -1.27) (layer B.SilkS) (width 0.1524))
  (fp_line (start -2.032 -1.27) (end 2.032 -1.27) (layer B.SilkS) (width 0.1524))
  (fp_line (start -2.032 -1.27) (end -2.032 1.27) (layer B.SilkS) (width 0.1524))
  (fp_line (start 5.08 0) (end 3.937 0) (layer F.SilkS) (width 0.762))
  (fp_line (start -5.08 0) (end -4.064 0) (layer F.SilkS) (width 0.762))
  (fp_line (start -0.635 0) (end 0 0) (layer B.SilkS) (width 0.1524))
  (fp_line (start 1.016 -0.635) (end 1.016 0.635) (layer B.SilkS) (width 0.1524))
  (fp_line (start 1.016 0.635) (end 0 0) (layer B.SilkS) (width 0.1524))
  (fp_line (start 0 0) (end 1.524 0) (layer B.SilkS) (width 0.1524))
  (fp_line (start 0 0) (end 1.016 -0.635) (layer B.SilkS) (width 0.1524))
  (fp_line (start 0 0) (end 0 0.635) (layer B.SilkS) (width 0.1524))
  (fp_line (start 0.254 -0.635) (end 0 -0.635) (layer B.SilkS) (width 0.1524))
  (fp_line (start 0 -0.635) (end 0 0) (layer B.SilkS) (width 0.1524))
  (pad A thru_hole circle (at 5.08 0) (size 1.6764 1.6764) (drill 1.1176) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad C thru_hole circle (at -5.08 0) (size 1.6764 1.6764) (drill 1.1176) (layers F&B.Cu F.Paste F.SilkS F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-DX4R005HJ5 (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at -3.7973 -0.254 90) (layer F.SilkS)
    (effects (font (size 0.6096 0.6096) (thickness 0.0508)))
  )
  (fp_text value >VALUE (at 3.8227 -0.2413 90) (layer F.SilkS)
    (effects (font (size 0.6096 0.6096) (thickness 0.0508)))
  )
  (fp_line (start 3.24866 2.59842) (end -3.24866 2.59842) (layer B.SilkS) (width 0.127))
  (fp_line (start -3.24866 -2.59842) (end -3.24866 0) (layer F.SilkS) (width 0.127))
  (fp_line (start 3.24866 -2.59842) (end 3.24866 0) (layer F.SilkS) (width 0.127))
  (fp_line (start -1.74752 -2.59842) (end 1.74752 -2.59842) (layer F.SilkS) (width 0.127))
  (fp_line (start -3.24866 2.19964) (end -3.24866 2.59842) (layer F.SilkS) (width 0.127))
  (fp_line (start 3.24866 2.59842) (end 3.24866 2.19964) (layer F.SilkS) (width 0.127))
  (pad D+ smd rect (at 0 -1.59766) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad D- smd rect (at -0.6477 -1.59766) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad GND smd rect (at 1.29794 -1.59766) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad GND@1 smd rect (at -2.49936 -1.94818) (size 1.19888 1.29794) (layers F.Cu F.Paste F.Mask))
  (pad GND@2 smd rect (at 2.49936 -1.94818) (size 1.19888 1.29794) (layers F.Cu F.Paste F.Mask))
  (pad GND@3 smd rect (at -2.17424 1.09982) (size 2.14884 1.89992) (layers F.Cu F.Paste F.Mask))
  (pad GND@4 smd rect (at 2.17424 1.09982) (size 2.14884 1.89992) (layers F.Cu F.Paste F.Mask))
  (pad ID smd rect (at 0.6477 -1.59766) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad VBUS smd rect (at -1.29794 -1.59766) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-DX4R005HJ5_100 (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at -3.7973 -0.254 90) (layer F.SilkS)
    (effects (font (size 0.6096 0.6096) (thickness 0.0508)))
  )
  (fp_text value >VALUE (at 3.8227 -0.2413 90) (layer F.SilkS)
    (effects (font (size 0.6096 0.6096) (thickness 0.0508)))
  )
  (fp_line (start 3.24866 2.59842) (end -3.24866 2.59842) (layer B.SilkS) (width 0.127))
  (fp_line (start -3.24866 -2.59842) (end -3.24866 0) (layer F.SilkS) (width 0.127))
  (fp_line (start 3.24866 -2.59842) (end 3.24866 0) (layer F.SilkS) (width 0.127))
  (fp_line (start -1.74752 -2.59842) (end 1.74752 -2.59842) (layer F.SilkS) (width 0.127))
  (fp_line (start -3.24866 2.19964) (end -3.24866 2.59842) (layer F.SilkS) (width 0.127))
  (fp_line (start 3.24866 2.59842) (end 3.24866 2.19964) (layer F.SilkS) (width 0.127))
  (pad D+ smd rect (at 0 -1.59766) (size 0.34798 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad D- smd rect (at -0.6477 -1.59766) (size 0.34798 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad GND smd rect (at 1.29794 -1.59766) (size 0.34798 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad GND@1 smd rect (at -2.49936 -1.94818) (size 1.19888 1.29794) (layers F.Cu F.Paste F.Mask))
  (pad GND@2 smd rect (at 2.49936 -1.94818) (size 1.19888 1.29794) (layers F.Cu F.Paste F.Mask))
  (pad GND@3 smd rect (at -2.17424 1.09982) (size 2.14884 1.89992) (layers F.Cu F.Paste F.Mask))
  (pad GND@4 smd rect (at 2.17424 1.09982) (size 2.14884 1.89992) (layers F.Cu F.Paste F.Mask))
  (pad ID smd rect (at 0.6477 -1.59766) (size 0.34798 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad VBUS smd rect (at -1.29794 -1.59766) (size 0.34798 1.34874) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-DX4R005HJ5_64 (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at -3.7973 -0.254 90) (layer F.SilkS)
    (effects (font (size 0.6096 0.6096) (thickness 0.0508)))
  )
  (fp_text value >VALUE (at 3.8227 -0.2413 90) (layer F.SilkS)
    (effects (font (size 0.6096 0.6096) (thickness 0.0508)))
  )
  (fp_line (start 3.24866 2.59842) (end -3.24866 2.59842) (layer B.SilkS) (width 0.127))
  (fp_line (start -3.24866 -2.59842) (end -3.24866 0) (layer F.SilkS) (width 0.127))
  (fp_line (start 3.24866 -2.59842) (end 3.24866 0) (layer F.SilkS) (width 0.127))
  (fp_line (start -1.74752 -2.59842) (end 1.74752 -2.59842) (layer F.SilkS) (width 0.127))
  (fp_line (start -3.24866 2.19964) (end -3.24866 2.59842) (layer F.SilkS) (width 0.127))
  (fp_line (start 3.24866 2.59842) (end 3.24866 2.19964) (layer F.SilkS) (width 0.127))
  (pad D+ smd rect (at 0 -1.59766) (size 0.254 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad D- smd rect (at -0.6477 -1.59766) (size 0.254 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad GND smd rect (at 1.29794 -1.59766) (size 0.254 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad GND@1 smd rect (at -2.49936 -1.94818) (size 1.19888 1.29794) (layers F.Cu F.Paste F.Mask))
  (pad GND@2 smd rect (at 2.49936 -1.94818) (size 1.19888 1.29794) (layers F.Cu F.Paste F.Mask))
  (pad GND@3 smd rect (at -2.17424 1.09982) (size 2.14884 1.89992) (layers F.Cu F.Paste F.Mask))
  (pad GND@4 smd rect (at 2.17424 1.09982) (size 2.14884 1.89992) (layers F.Cu F.Paste F.Mask))
  (pad ID smd rect (at 0.6477 -1.59766) (size 0.254 1.34874) (layers F.Cu F.Paste F.Mask))
  (pad VBUS smd rect (at -1.29794 -1.59766) (size 0.254 1.34874) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-ED555DS-2DS (layer F.Cu) (tedit 200000)
  (attr virtual)
  (fp_text reference >NAME (at -0.17272 -4.36372 180) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_line (start -3.39852 -3.39852) (end -3.39852 2.19964) (layer B.SilkS) (width 0.127))
  (fp_line (start -3.39852 2.19964) (end -3.39852 3.59918) (layer B.SilkS) (width 0.127))
  (fp_line (start -3.39852 3.59918) (end 3.59918 3.59918) (layer B.SilkS) (width 0.127))
  (fp_line (start 3.59918 3.59918) (end 3.59918 2.19964) (layer B.SilkS) (width 0.127))
  (fp_line (start 3.59918 2.19964) (end 3.59918 -3.39852) (layer B.SilkS) (width 0.127))
  (fp_line (start 3.59918 -3.39852) (end -3.39852 -3.39852) (layer B.SilkS) (width 0.127))
  (fp_line (start -3.39852 2.19964) (end 3.59918 2.19964) (layer B.SilkS) (width 0.127))
  (pad 1 thru_hole circle (at 1.79832 0) (size 2.18186 2.18186) (drill 1.19888) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 2 thru_hole circle (at -1.69926 0) (size 2.18186 2.18186) (drill 1.19888) (layers F&B.Cu F.Paste F.SilkS F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-ED555DS-3DS (layer F.Cu) (tedit 200000)
  (attr virtual)
  (fp_text reference >NAME (at -0.17272 -3.61442 180) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_line (start -5.24764 -2.69748) (end -5.24764 2.19964) (layer B.SilkS) (width 0.127))
  (fp_line (start -5.24764 2.19964) (end -5.24764 3.79984) (layer B.SilkS) (width 0.127))
  (fp_line (start -5.24764 3.79984) (end 5.24764 3.79984) (layer B.SilkS) (width 0.127))
  (fp_line (start 5.24764 3.79984) (end 5.24764 2.19964) (layer B.SilkS) (width 0.127))
  (fp_line (start 5.24764 2.19964) (end 5.24764 -2.69748) (layer B.SilkS) (width 0.127))
  (fp_line (start 5.24764 -2.69748) (end -5.24764 -2.69748) (layer B.SilkS) (width 0.127))
  (fp_line (start -5.24764 2.19964) (end 5.24764 2.19964) (layer B.SilkS) (width 0.127))
  (pad 1 thru_hole circle (at -3.49758 0) (size 2.18186 2.18186) (drill 1.19888) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 2 thru_hole circle (at 0 0) (size 2.18186 2.18186) (drill 1.19888) (layers F&B.Cu F.Paste F.SilkS F.Mask))
  (pad 3 thru_hole circle (at 3.49758 0) (size 2.18186 2.18186) (drill 1.19888) (layers F&B.Cu F.Paste F.SilkS F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-EFOBM (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (pad 1 smd rect (at -1.34874 0 90) (size 3.8989 0.79756) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 0 0 270) (size 3.8989 0.79756) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd rect (at 1.34874 0 270) (size 3.8989 0.79756) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-ELECTRET_2742PBJ-A (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (pad P$1 smd rect (at -0.9525 0) (size 1.016 1.905) (layers F.Cu F.Paste F.Mask))
  (pad P$2 smd rect (at 0.9525 0) (size 1.016 1.905) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-ELLCTV (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at -2.3241 -7.13486) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 0.30988 -0.13462) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -3.99796 5.99948) (end -5.99948 3.99796) (layer F.SilkS) (width 0.127))
  (fp_line (start -3.99796 5.99948) (end 3.99796 5.99948) (layer F.SilkS) (width 0.127))
  (fp_line (start 3.99796 5.99948) (end 5.99948 3.99796) (layer F.SilkS) (width 0.127))
  (fp_line (start 5.99948 3.99796) (end 5.99948 -3.99796) (layer F.SilkS) (width 0.127))
  (fp_line (start 5.99948 -3.99796) (end 3.99796 -5.99948) (layer F.SilkS) (width 0.127))
  (fp_line (start 3.99796 -5.99948) (end -5.99948 -5.99948) (layer F.SilkS) (width 0.127))
  (fp_line (start -5.99948 3.99796) (end -5.99948 -5.99948) (layer F.SilkS) (width 0.127))
  (fp_line (start -5.99948 1.99898) (end -5.99948 -5.99948) (layer B.SilkS) (width 0.127))
  (fp_line (start -5.99948 -5.99948) (end 1.99898 -5.99948) (layer B.SilkS) (width 0.127))
  (fp_line (start 5.99948 -1.99898) (end 5.99948 3.99796) (layer B.SilkS) (width 0.127))
  (fp_line (start 5.99948 3.99796) (end 3.99796 5.99948) (layer B.SilkS) (width 0.127))
  (fp_line (start 3.99796 5.99948) (end -1.99898 5.99948) (layer B.SilkS) (width 0.127))
  (fp_line (start -4.19862 2.79908) (end -5.89788 4.49834) (layer F.SilkS) (width 0.127))
  (fp_line (start -5.89788 4.49834) (end -4.49834 5.89788) (layer F.SilkS) (width 0.127))
  (fp_line (start -4.49834 5.89788) (end -2.79908 4.19862) (layer F.SilkS) (width 0.127))
  (fp_line (start 2.79908 -4.19862) (end 4.49834 -5.89788) (layer F.SilkS) (width 0.127))
  (fp_line (start 4.49834 -5.89788) (end 5.89788 -4.49834) (layer F.SilkS) (width 0.127))
  (fp_line (start 5.89788 -4.49834) (end 4.19862 -2.79908) (layer F.SilkS) (width 0.127))
  (fp_circle (center 0 0) (end -2.49936 2.49936) (layer F.SilkS) (width 0.0635))
  (fp_circle (center 0 0) (end -2.26314 2.26314) (layer F.SilkS) (width 0.0635))
  (fp_circle (center 0 0) (end -2.2479 2.2479) (layer B.SilkS) (width 0.0635))
  (pad 1 smd rect (at -4.34848 4.34848 315) (size 3.99796 2.39776) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 4.34848 -4.34848 315) (size 3.99796 2.39776) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-JACK_.65MM (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_line (start -2.42062 -6.03758) (end 2.55524 -6.03758) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.55524 -6.03758) (end 2.55524 4.96824) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.55524 4.96824) (end -2.42062 4.96824) (layer B.SilkS) (width 0.127))
  (fp_line (start -2.42062 4.96824) (end -2.42062 -6.03758) (layer B.SilkS) (width 0.127))
  (fp_line (start 0.03302 4.9911) (end 0.03302 -3.3528) (layer B.SilkS) (width 0.6096))
  (pad CONTACT smd rect (at 3.57632 -4.02336) (size 2.032 2.54) (layers F.Cu F.Paste F.Mask))
  (pad PIN smd rect (at 0.0635 -7.06882) (size 1.778 2.032) (layers F.Cu F.Paste F.Mask))
  (pad SHIELD smd rect (at -3.44932 1.4478) (size 2.032 2.54) (layers F.Cu F.Paste F.Mask))
  (pad SHIELD1 smd rect (at 3.57632 0.44704) (size 2.032 2.54) (layers F.Cu F.Paste F.Mask))
  (pad SHUNT smd rect (at -3.44932 -5.0038) (size 2.032 2.54) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-JACK_2.1MM (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_line (start -4.445 7.493) (end 4.5466 7.493) (layer B.SilkS) (width 0.127))
  (fp_line (start -4.445 7.493) (end -4.445 -7.3152) (layer B.SilkS) (width 0.127))
  (fp_line (start -4.445 -7.3152) (end 4.5466 -7.3152) (layer B.SilkS) (width 0.127))
  (fp_line (start 4.5466 7.493) (end 4.5466 -7.3152) (layer B.SilkS) (width 0.127))
  (fp_line (start 0 7.366) (end 0 2.54) (layer B.SilkS) (width 0.6096))
  (fp_line (start 0 2.54) (end 0 -3.81) (layer B.SilkS) (width 0.6096))
  (fp_line (start 0 -3.81) (end 0 -4.826) (layer B.SilkS) (width 0.6096))
  (pad CONTACT smd rect (at 5.7658 2.413) (size 2.3876 2.794) (layers F.Cu F.Paste F.Mask))
  (pad PIN smd rect (at -5.6388 2.413) (size 2.3876 2.794) (layers F.Cu F.Paste F.Mask))
  (pad PIN1 smd rect (at -5.6388 -3.683) (size 2.3876 2.794) (layers F.Cu F.Paste F.Mask))
  (pad SHUNT smd rect (at 5.7658 -3.683) (size 2.3876 2.794) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-LCC16 (layer F.Cu) (tedit 200000)
  (descr "LCC16 PACKAGE")
  (tags "LCC16 PACKAGE")
  (attr smd)
  (fp_text reference >NAME (at 0 -5.08) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 0.635 4.445) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -3.42392 3.44932) (end -2.54 3.44932) (layer B.SilkS) (width 0.06604))
  (fp_line (start -2.54 3.44932) (end -2.54 2.54) (layer B.SilkS) (width 0.06604))
  (fp_line (start -3.42392 2.54) (end -2.54 2.54) (layer B.SilkS) (width 0.06604))
  (fp_line (start -3.42392 3.44932) (end -3.42392 2.54) (layer B.SilkS) (width 0.06604))
  (fp_line (start 3.42392 3.42392) (end -3.42392 3.42392) (layer F.SilkS) (width 0.2032))
  (fp_line (start -3.42392 3.42392) (end -3.42392 -3.42392) (layer F.SilkS) (width 0.2032))
  (fp_line (start -3.42392 -3.42392) (end 3.42392 -3.42392) (layer F.SilkS) (width 0.2032))
  (fp_line (start 3.42392 -3.42392) (end 3.42392 3.42392) (layer F.SilkS) (width 0.2032))
  (fp_line (start 2.52476 -3.42392) (end 3.42392 -3.42392) (layer B.SilkS) (width 0.2032))
  (fp_line (start 3.42392 2.52476) (end 3.42392 3.42392) (layer B.SilkS) (width 0.2032))
  (fp_line (start 3.42392 -3.42392) (end 3.42392 -2.52476) (layer B.SilkS) (width 0.2032))
  (fp_line (start -3.42392 -2.52476) (end -3.42392 -3.42392) (layer B.SilkS) (width 0.2032))
  (fp_line (start -3.42392 3.42392) (end -3.42392 2.52476) (layer B.SilkS) (width 0.2032))
  (fp_line (start -2.52476 3.42392) (end -3.42392 3.42392) (layer B.SilkS) (width 0.2032))
  (fp_line (start 3.42392 3.42392) (end 2.52476 3.42392) (layer B.SilkS) (width 0.2032))
  (fp_line (start -3.42392 -3.42392) (end -2.52476 -3.42392) (layer B.SilkS) (width 0.2032))
  (pad 1 smd rect (at -2.81432 0.635) (size 1.89992 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd oval (at -3.01498 1.905) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd oval (at -1.905 3.01498 90) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 4 smd oval (at -0.635 3.01498 90) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 5 smd oval (at 0.635 3.01498 90) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 6 smd oval (at 1.905 3.01498 90) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 7 smd oval (at 3.01498 1.905 180) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 8 smd oval (at 3.01498 0.635 180) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 9 smd oval (at 3.01498 -0.635 180) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 10 smd oval (at 3.01498 -1.905 180) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 11 smd oval (at 1.905 -3.01498 270) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 12 smd oval (at 0.635 -3.01498 270) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 13 smd oval (at -0.635 -3.01498 270) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 14 smd oval (at -1.905 -3.01498 270) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 15 smd oval (at -3.01498 -1.905) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
  (pad 16 smd oval (at -3.01498 -0.635) (size 1.4986 0.63754) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-LED1206 (layer F.Cu) (tedit 200000)
  (descr "LED 1206 PADS (STANDARD PATTERN)")
  (tags "LED 1206 PADS (STANDARD PATTERN)")
  (attr smd)
  (fp_text reference >NAME (at 1.905 -1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 2.54 1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -1.6891 0.8763) (end -0.9525 0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.9525 0.8763) (end -0.9525 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.6891 -0.8763) (end -0.9525 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.6891 0.8763) (end -1.6891 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 0.8763) (end 1.6891 0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.6891 0.8763) (end 1.6891 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 -0.8763) (end 1.6891 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 0.8763) (end 0.9525 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.SilkS) (width 0.1524))
  (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.47142 -0.98298) (end 2.47142 -0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start 2.47142 -0.98298) (end 2.47142 0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start 2.47142 0.98298) (end -2.47142 0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start -2.47142 0.98298) (end -2.47142 -0.98298) (layer F.SilkS) (width 0.0508))
  (pad 1 smd rect (at -1.41986 0) (size 1.59766 1.80086) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 1.41986 0) (size 1.59766 1.80086) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-LED1206FAB (layer F.Cu) (tedit 200000)
  (descr "LED1206 FAB STYLE (SMALLER PADS TO ALLOW TRACE BETWEEN)")
  (tags "LED1206 FAB STYLE (SMALLER PADS TO ALLOW TRACE BETWEEN)")
  (attr smd)
  (fp_text reference >NAME (at 0.762 -1.778) (layer F.SilkS)
    (effects (font (size 1.016 1.016) (thickness 0.1524)))
  )
  (fp_text value >VALUE (at 1.27 1.778) (layer F.SilkS)
    (effects (font (size 1.016 1.016) (thickness 0.1524)))
  )
  (fp_line (start -2.032 -1.016) (end 2.032 -1.016) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.032 -1.016) (end 2.032 1.016) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.032 1.016) (end -2.032 1.016) (layer B.SilkS) (width 0.127))
  (fp_line (start -2.032 1.016) (end -2.032 -1.016) (layer B.SilkS) (width 0.127))
  (pad 1 smd rect (at -1.651 0) (size 1.27 1.905) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 1.651 0) (size 1.27 1.905) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-MIC_BOTTOM_PORT (layer F.Cu) (tedit 200000)
  (descr "KNOWLES SPH0645LM4H-B")
  (tags "KNOWLES SPH0645LM4H-B")
  (attr smd)
  (fp_text reference "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_line (start -0.49784 0) (end -0.48514 -0.10922) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.48514 -0.10922) (end -0.44958 -0.2159) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.44958 -0.2159) (end -0.38862 -0.30988) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.38862 -0.30988) (end -0.30988 -0.38862) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.30988 -0.38862) (end -0.2159 -0.44958) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.2159 -0.44958) (end -0.10922 -0.48514) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.10922 -0.48514) (end 0 -0.49784) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0 -0.49784) (end 0.10922 -0.48514) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.10922 -0.48514) (end 0.2159 -0.44958) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.2159 -0.44958) (end 0.30988 -0.38862) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.30988 -0.38862) (end 0.38862 -0.30988) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.38862 -0.30988) (end 0.44958 -0.2159) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.44958 -0.2159) (end 0.48514 -0.10922) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.48514 -0.10922) (end 0.49784 0) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.49784 0) (end 0.48514 0.10922) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.48514 0.10922) (end 0.44958 0.2159) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.44958 0.2159) (end 0.38862 0.30988) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.38862 0.30988) (end 0.30988 0.38862) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.30988 0.38862) (end 0.2159 0.44958) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.2159 0.44958) (end 0.10922 0.48514) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0.10922 0.48514) (end 0 0.49784) (layer F.SilkS) (width 0.04572))
  (fp_line (start 0 0.49784) (end -0.10922 0.48514) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.10922 0.48514) (end -0.2159 0.44958) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.2159 0.44958) (end -0.30988 0.38862) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.30988 0.38862) (end -0.38862 0.30988) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.38862 0.30988) (end -0.44958 0.2159) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.44958 0.2159) (end -0.48514 0.10922) (layer F.SilkS) (width 0.04572))
  (fp_line (start -0.48514 0.10922) (end -0.49784 0) (layer F.SilkS) (width 0.04572))
  (fp_circle (center 0 0) (end -0.24892 0.24892) (layer F.SilkS) (width 0.02286))
  (pad 1 smd rect (at -0.9271 -2.10566) (size 0.53848 0.45974) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at -0.92964 -1.2192) (size 0.53848 0.45974) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd circle (at 0 0) (size 1.62306 1.62306) (layers F.Cu F.Paste F.Mask))
  (pad 4 smd circle (at 0.92964 -1.2192) (size 0.53848 0.45974) (layers F.Cu F.Paste F.Mask))
  (pad 5 smd circle (at 0.92964 -2.10312) (size 0.53848 0.45974) (layers F.Cu F.Paste F.Mask))
  (pad 6 smd circle (at 0 -2.10058) (size 0.53848 0.45974) (layers F.Cu F.Paste F.Mask))
  (pad P$1 thru_hole circle (at 0 0) (size 1.62306 1.62306) (drill 1.02362) (layers F&B.Cu F.Paste F.SilkS F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-MIC_MEMS_ANALOG_SPU0414HR5H (layer F.Cu) (tedit 200000)
  (descr HTTP://WWW.DIGIKEY.COM/PRODUCT-SEARCH/EN?KEYWORDS=423-1134-1-ND%09)
  (tags HTTP://WWW.DIGIKEY.COM/PRODUCT-SEARCH/EN?KEYWORDS=423-1134-1-ND%09)
  (attr smd)
  (fp_text reference >NAME (at 0.59436 -3.03784) (layer F.SilkS)
    (effects (font (size 0.99822 0.99822) (thickness 0.0762)))
  )
  (fp_text value >VALUE (at 1.09474 3.05562) (layer F.SilkS)
    (effects (font (size 0.99822 0.99822) (thickness 0.0762)))
  )
  (fp_line (start -1.4732 -1.8796) (end 1.4732 -1.8796) (layer F.SilkS) (width 0.127))
  (fp_line (start 1.4732 -1.8796) (end 1.4732 1.8796) (layer F.SilkS) (width 0.127))
  (fp_line (start 1.4732 1.8796) (end -1.4732 1.8796) (layer F.SilkS) (width 0.127))
  (fp_line (start -1.4732 1.8796) (end -1.4732 -1.8796) (layer F.SilkS) (width 0.127))
  (fp_circle (center 1.8288 -2.1336) (end 1.92786 -2.23266) (layer B.SilkS) (width 0.0635))
  (fp_circle (center 0.84836 -1.22936) (end 1.04648 -1.42748) (layer F.SilkS) (width 0.01778))
  (fp_circle (center -0.84836 -1.22936) (end -1.04648 -1.42748) (layer F.SilkS) (width 0.01778))
  (fp_circle (center -0.84836 1.22936) (end -1.04648 1.42748) (layer F.SilkS) (width 0.01778))
  (fp_circle (center 0.84836 1.22936) (end 1.04648 1.42748) (layer F.SilkS) (width 0.01778))
  (pad 1 smd circle (at 0.9652 -1.3716) (size 1.143 1.143) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd circle (at 0.9652 1.3716) (size 1.143 1.143) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd circle (at -0.9652 1.3716) (size 1.143 1.143) (layers F.Cu F.Paste F.Mask))
  (pad 4 smd circle (at -0.9652 -1.3716) (size 1.143 1.143) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-MINI-SMA (layer F.Cu) (tedit 200000)
  (descr "MINI-SMA DIODE")
  (tags "MINI-SMA DIODE")
  (attr smd)
  (fp_text reference >NAME (at 0.635 -1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 1.27 1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -1.94818 0.89916) (end 1.94818 0.89916) (layer B.SilkS) (width 0.127))
  (fp_line (start 1.94818 0.89916) (end 1.94818 -0.89916) (layer B.SilkS) (width 0.127))
  (fp_line (start 1.94818 -0.89916) (end -1.94818 -0.89916) (layer B.SilkS) (width 0.127))
  (fp_line (start -1.94818 -0.89916) (end -1.94818 0.89916) (layer B.SilkS) (width 0.127))
  (fp_line (start -0.82296 -0.82296) (end -0.82296 0) (layer F.SilkS) (width 0.127))
  (fp_line (start -0.82296 0) (end -0.82296 0.82296) (layer F.SilkS) (width 0.127))
  (fp_line (start 0.82296 -0.82296) (end 0.82296 0.82296) (layer F.SilkS) (width 0.127))
  (fp_line (start 0.82296 0.82296) (end -0.82296 0) (layer F.SilkS) (width 0.127))
  (fp_line (start -0.82296 0) (end 0.82296 -0.82296) (layer F.SilkS) (width 0.127))
  (pad ANODE smd rect (at 1.64846 0) (size 1.39954 1.89992) (layers F.Cu F.Paste F.Mask))
  (pad KATHODE smd rect (at -1.64846 0) (size 1.39954 1.89992) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-MSOP (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_line (start -1.33858 -1.59766) (end -1.33858 1.04902) (layer B.SilkS) (width 0.127))
  (fp_line (start -1.33858 1.04902) (end -0.58928 1.04902) (layer B.SilkS) (width 0.127))
  (fp_line (start -0.58928 1.04902) (end 1.94818 1.04902) (layer B.SilkS) (width 0.127))
  (fp_line (start 1.94818 1.04902) (end 1.94818 -1.59766) (layer B.SilkS) (width 0.127))
  (fp_line (start 1.94818 -1.59766) (end -1.33858 -1.59766) (layer B.SilkS) (width 0.127))
  (fp_line (start -1.29794 0.38862) (end -0.58928 1.04902) (layer B.SilkS) (width 0.127))
  (fp_circle (center -1.34874 2.26822) (end -1.46558 2.38506) (layer B.SilkS) (width 0.0635))
  (pad P$1 smd rect (at -0.6477 -2.44856) (size 0.23876 1.4478) (layers F.Cu F.Paste F.Mask))
  (pad P$2 smd rect (at 0 -2.44856) (size 0.23876 1.4478) (layers F.Cu F.Paste F.Mask))
  (pad P$3 smd rect (at 0.6477 -2.44856) (size 0.23876 1.4478) (layers F.Cu F.Paste F.Mask))
  (pad P$4 smd rect (at 1.29794 -2.44856) (size 0.23876 1.4478) (layers F.Cu F.Paste F.Mask))
  (pad P$5 smd rect (at -0.6477 1.94818) (size 0.23876 1.4478) (layers F.Cu F.Paste F.Mask))
  (pad P$6 smd rect (at 0 1.94818) (size 0.23876 1.4478) (layers F.Cu F.Paste F.Mask))
  (pad P$7 smd rect (at 0.6477 1.94818) (size 0.23876 1.4478) (layers F.Cu F.Paste F.Mask))
  (pad P$8 smd rect (at 1.29794 1.94818) (size 0.23876 1.4478) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-OP1206 (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at 1.905 -1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 2.54 1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -1.6891 0.8763) (end -0.9525 0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.9525 0.8763) (end -0.9525 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.6891 -0.8763) (end -0.9525 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.6891 0.8763) (end -1.6891 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 0.8763) (end 1.6891 0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.6891 0.8763) (end 1.6891 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 -0.8763) (end 1.6891 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 0.8763) (end 0.9525 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.SilkS) (width 0.1524))
  (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.SilkS) (width 0.1524))
  (pad COLLECTOR smd rect (at -1.5494 0) (size 1.4986 1.59766) (layers F.Cu F.Paste F.Mask))
  (pad EMITTER smd rect (at 1.5494 0) (size 1.4986 1.59766) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-P-LCC-4-3 (layer F.Cu) (tedit 200000)
  (descr "HYPER TOPLED®")
  (tags "HYPER TOPLED®")
  (attr smd)
  (fp_text reference >NAME (at -3.175 -0.635 90) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 3.175 -1.27 90) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -1.14808 -0.7493) (end -0.34798 -0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.34798 -0.7493) (end -0.34798 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 -1.84912) (end -0.34798 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 -0.7493) (end -1.14808 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 -0.7493) (end 1.14808 -0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.14808 -0.7493) (end 1.14808 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 -1.84912) (end 1.14808 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 -0.7493) (end 0.34798 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 1.84912) (end 1.14808 1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.14808 1.84912) (end 1.14808 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 0.7493) (end 1.14808 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 1.84912) (end 0.34798 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 1.84912) (end -0.34798 1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.34798 1.84912) (end -0.34798 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 0.7493) (end -0.34798 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 1.84912) (end -1.14808 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 1.79832) (end -0.39878 1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.39878 1.79832) (end -0.39878 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 0.79756) (end -0.39878 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 1.79832) (end -1.09982 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 1.79832) (end 1.09982 1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.09982 1.79832) (end 1.09982 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 0.79756) (end 1.09982 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 1.79832) (end 0.39878 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 -0.79756) (end 1.09982 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.09982 -0.79756) (end 1.09982 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 -1.79832) (end 1.09982 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 -0.79756) (end 0.39878 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 -0.79756) (end -0.39878 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.39878 -0.79756) (end -0.39878 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 -1.79832) (end -0.39878 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 -0.79756) (end -1.09982 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.09906 -0.09906) (end 0.49784 -0.09906) (layer B.SilkS) (width 0.06604))
  (fp_line (start 0.49784 -0.09906) (end 0.49784 -0.49784) (layer B.SilkS) (width 0.06604))
  (fp_line (start 0.09906 -0.49784) (end 0.49784 -0.49784) (layer B.SilkS) (width 0.06604))
  (fp_line (start 0.09906 -0.09906) (end 0.09906 -0.49784) (layer B.SilkS) (width 0.06604))
  (fp_line (start 0.09906 0.49784) (end 0.49784 0.49784) (layer B.SilkS) (width 0.06604))
  (fp_line (start 0.49784 0.49784) (end 0.49784 0.09906) (layer B.SilkS) (width 0.06604))
  (fp_line (start 0.09906 0.09906) (end 0.49784 0.09906) (layer B.SilkS) (width 0.06604))
  (fp_line (start 0.09906 0.49784) (end 0.09906 0.09906) (layer B.SilkS) (width 0.06604))
  (fp_line (start -0.49784 0.49784) (end -0.09906 0.49784) (layer B.SilkS) (width 0.06604))
  (fp_line (start -0.09906 0.49784) (end -0.09906 0.09906) (layer B.SilkS) (width 0.06604))
  (fp_line (start -0.49784 0.09906) (end -0.09906 0.09906) (layer B.SilkS) (width 0.06604))
  (fp_line (start -0.49784 0.49784) (end -0.49784 0.09906) (layer B.SilkS) (width 0.06604))
  (fp_line (start -1.39954 1.04902) (end -1.39954 1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start -1.39954 1.59766) (end -0.99822 1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start -0.99822 1.59766) (end -0.84836 1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start -0.84836 1.59766) (end 0.99822 1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start 0.99822 1.59766) (end 1.39954 1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start 1.39954 1.59766) (end 1.39954 -1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start 1.39954 -1.59766) (end 1.09982 -1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start 1.09982 -1.59766) (end -0.99822 -1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start -0.99822 -1.59766) (end -1.39954 -1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start -0.99822 -1.59766) (end -0.99822 -1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.99822 -1.79832) (end -0.49784 -1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.49784 -1.79832) (end -0.49784 -1.64846) (layer F.SilkS) (width 0.1016))
  (fp_line (start 0.49784 -1.64846) (end 0.49784 -1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start 0.49784 -1.79832) (end 1.09982 -1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start 1.09982 -1.79832) (end 1.09982 -1.59766) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.99822 1.59766) (end -0.99822 1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.99822 1.79832) (end -0.49784 1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.49784 1.79832) (end -0.49784 1.64846) (layer F.SilkS) (width 0.1016))
  (fp_line (start 0.49784 1.64846) (end 0.49784 1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start 0.49784 1.79832) (end 0.99822 1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start 0.99822 1.79832) (end 0.99822 1.59766) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.84836 1.59766) (end -1.39954 1.04902) (layer F.SilkS) (width 0.2032))
  (fp_line (start -1.39954 -1.59766) (end -1.39954 1.04902) (layer F.SilkS) (width 0.2032))
  (fp_circle (center 0 0) (end -0.54864 0.54864) (layer F.SilkS) (width 0.1016))
  (fp_text user R (at -0.635 3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text user A (at -0.635 -3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text user B (at 1.27 -3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text user G (at 1.27 3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (pad A smd rect (at -0.79756 -1.4986) (size 1.09982 1.4986) (layers F.Cu F.Paste F.Mask))
  (pad B smd rect (at 0.79756 -1.4986) (size 1.09982 1.4986) (layers F.Cu F.Paste F.Mask))
  (pad G smd rect (at 0.79756 1.4986) (size 1.09982 1.4986) (layers F.Cu F.Paste F.Mask))
  (pad R smd rect (at -0.79756 1.4986) (size 1.09982 1.4986) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-P-LCC-4 (layer F.Cu) (tedit 200000)
  (descr "POWER TOPLED®")
  (tags "POWER TOPLED®")
  (attr smd)
  (fp_text reference >NAME (at -4.445 -0.635 90) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 4.445 -1.27 90) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -1.14808 -0.7493) (end -0.34798 -0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.34798 -0.7493) (end -0.34798 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 -1.84912) (end -0.34798 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 -0.7493) (end -1.14808 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 -0.7493) (end 1.14808 -0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.14808 -0.7493) (end 1.14808 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 -1.84912) (end 1.14808 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 -0.7493) (end 0.34798 -1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 1.84912) (end 1.14808 1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.14808 1.84912) (end 1.14808 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 0.7493) (end 1.14808 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.34798 1.84912) (end 0.34798 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 1.84912) (end -0.34798 1.84912) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.34798 1.84912) (end -0.34798 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 0.7493) (end -0.34798 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 1.84912) (end -1.14808 0.7493) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 1.79832) (end -0.39878 1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.39878 1.79832) (end -0.39878 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 0.79756) (end -0.39878 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 1.79832) (end -1.09982 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 1.79832) (end 1.09982 1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.09982 1.79832) (end 1.09982 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 0.79756) (end 1.09982 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 1.79832) (end 0.39878 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 -0.79756) (end 1.09982 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.09982 -0.79756) (end 1.09982 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 -1.79832) (end 1.09982 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.39878 -0.79756) (end 0.39878 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 -0.79756) (end -0.39878 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.39878 -0.79756) (end -0.39878 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 -1.79832) (end -0.39878 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.09982 -0.79756) (end -1.09982 -1.79832) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.19812 0.19812) (end 0.19812 0.19812) (layer B.SilkS) (width 0.06604))
  (fp_line (start 0.19812 0.19812) (end 0.19812 -0.19812) (layer B.SilkS) (width 0.06604))
  (fp_line (start -0.19812 -0.19812) (end 0.19812 -0.19812) (layer B.SilkS) (width 0.06604))
  (fp_line (start -0.19812 0.19812) (end -0.19812 -0.19812) (layer B.SilkS) (width 0.06604))
  (fp_line (start -1.39954 1.04902) (end -1.39954 1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start -1.39954 1.59766) (end -0.99822 1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start -0.99822 1.59766) (end -0.84836 1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start -0.84836 1.59766) (end 0.99822 1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start 0.99822 1.59766) (end 1.39954 1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start 1.39954 1.59766) (end 1.39954 -1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start 1.39954 -1.59766) (end 1.09982 -1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start 1.09982 -1.59766) (end -0.99822 -1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start -0.99822 -1.59766) (end -1.39954 -1.59766) (layer F.SilkS) (width 0.2032))
  (fp_line (start -0.99822 -1.59766) (end -0.99822 -1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.99822 -1.79832) (end -0.49784 -1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.49784 -1.79832) (end -0.49784 -1.64846) (layer F.SilkS) (width 0.1016))
  (fp_line (start 0.49784 -1.64846) (end 0.49784 -1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start 0.49784 -1.79832) (end 1.09982 -1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start 1.09982 -1.79832) (end 1.09982 -1.59766) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.99822 1.59766) (end -0.99822 1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.99822 1.79832) (end -0.49784 1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.49784 1.79832) (end -0.49784 1.64846) (layer F.SilkS) (width 0.1016))
  (fp_line (start 0.49784 1.64846) (end 0.49784 1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start 0.49784 1.79832) (end 0.99822 1.79832) (layer F.SilkS) (width 0.1016))
  (fp_line (start 0.99822 1.79832) (end 0.99822 1.59766) (layer F.SilkS) (width 0.1016))
  (fp_line (start -0.84836 1.59766) (end -1.39954 1.04902) (layer F.SilkS) (width 0.2032))
  (fp_line (start -1.39954 -1.59766) (end -1.39954 1.04902) (layer F.SilkS) (width 0.2032))
  (fp_circle (center 0 0) (end -0.54864 0.54864) (layer F.SilkS) (width 0.1016))
  (fp_text user R (at -1.27 3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text user G (at -1.27 -3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text user B (at 1.905 -3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text user A (at 1.905 3.175) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (pad A smd rect (at 1.99898 3.1496) (size 3.29946 4.79806) (layers F.Cu F.Paste F.Mask))
  (pad B smd rect (at 1.99898 -3.1496) (size 3.29946 4.79806) (layers F.Cu F.Paste F.Mask))
  (pad G smd rect (at -1.99898 -3.1496) (size 3.29946 4.79806) (layers F.Cu F.Paste F.Mask))
  (pad R smd rect (at -1.99898 3.1496) (size 3.29946 4.79806) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-PJ-002AH-SMT (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at -2.82448 -2.63398) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at -2.18948 2.36474) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start 2.74828 -4.7498) (end 4.54914 -4.7498) (layer F.SilkS) (width 0.06604))
  (fp_line (start 4.54914 -4.7498) (end 4.54914 -6.2484) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.74828 -6.2484) (end 4.54914 -6.2484) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.74828 -4.7498) (end 2.74828 -6.2484) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.74828 6.2484) (end 4.54914 6.2484) (layer F.SilkS) (width 0.06604))
  (fp_line (start 4.54914 6.2484) (end 4.54914 4.7498) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.74828 4.7498) (end 4.54914 4.7498) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.74828 6.2484) (end 2.74828 4.7498) (layer F.SilkS) (width 0.06604))
  (fp_line (start -3.24866 6.2484) (end -1.4478 6.2484) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.4478 6.2484) (end -1.4478 4.7498) (layer F.SilkS) (width 0.06604))
  (fp_line (start -3.24866 4.7498) (end -1.4478 4.7498) (layer F.SilkS) (width 0.06604))
  (fp_line (start -3.24866 6.2484) (end -3.24866 4.7498) (layer F.SilkS) (width 0.06604))
  (fp_line (start -3.34772 -4.7498) (end -1.5494 -4.7498) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.5494 -4.7498) (end -1.5494 -6.2484) (layer F.SilkS) (width 0.06604))
  (fp_line (start -3.34772 -6.2484) (end -1.5494 -6.2484) (layer F.SilkS) (width 0.06604))
  (fp_line (start -3.34772 -4.7498) (end -3.34772 -6.2484) (layer F.SilkS) (width 0.06604))
  (fp_line (start -7.39902 -4.39928) (end -7.39902 4.49834) (layer B.SilkS) (width 0.127))
  (fp_line (start -7.39902 4.49834) (end 7.39902 4.49834) (layer B.SilkS) (width 0.127))
  (fp_line (start 7.39902 4.49834) (end 7.39902 -4.49834) (layer B.SilkS) (width 0.127))
  (fp_line (start 7.39902 -4.49834) (end -7.39902 -4.49834) (layer B.SilkS) (width 0.127))
  (fp_line (start 5.4991 -0.49784) (end -6.49986 -0.49784) (layer B.SilkS) (width 0.127))
  (fp_line (start -6.49986 0.49784) (end 5.4991 0.49784) (layer B.SilkS) (width 0.127))
  (fp_circle (center -2.39776 0) (end -2.79654 0.39878) (layer F.SilkS) (width 0.127))
  (fp_line (start -3.19786 0) (end -1.59766 0) (layer F.SilkS) (width 0.127))
  (fp_line (start -2.39776 0.79756) (end -2.39776 -0.79756) (layer F.SilkS) (width 0.127))
  (fp_circle (center 2.09804 0) (end 2.54762 0.44958) (layer F.SilkS) (width 0.127))
  (fp_line (start 1.19888 0) (end 2.99974 0) (layer F.SilkS) (width 0.127))
  (fp_line (start 2.09804 0.89916) (end 2.09804 -0.89916) (layer F.SilkS) (width 0.127))
  (fp_arc (start -6.49986 0) (end -6.9977 0) (angle 90) (layer B.SilkS) (width 0.127))
  (fp_arc (start -6.49986 0) (end -6.49986 0.49784) (angle 90) (layer B.SilkS) (width 0.127))
  (pad CONTACT smd rect (at -2.39776 5.99948 270) (size 2.79908 2.39776) (layers F.Cu F.Paste F.Mask))
  (pad PIN1 smd rect (at 3.69824 -5.99948 270) (size 2.79908 2.39776) (layers F.Cu F.Paste F.Mask))
  (pad PIN2 smd rect (at -2.39776 -5.99948 270) (size 2.79908 2.39776) (layers F.Cu F.Paste F.Mask))
  (pad SHUNT smd rect (at 3.69824 5.99948 270) (size 2.79908 2.39776) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-QFN_MLF20 (layer F.Cu) (tedit 200000)
  (descr "HP-VFQFP-N20 MICRO LEAD FRAME PACKAGE (MLF)")
  (tags "HP-VFQFP-N20 MICRO LEAD FRAME PACKAGE (MLF)")
  (attr smd)
  (fp_text reference >NAME (at 0.635 -3.81) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 1.27 3.81) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -2.3495 -1.14808) (end -1.89992 -1.14808) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.89992 -1.14808) (end -1.89992 -1.4478) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 -1.4478) (end -1.89992 -1.4478) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 -1.14808) (end -2.3495 -1.4478) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 -0.49784) (end -1.89992 -0.49784) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.89992 -0.49784) (end -1.89992 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 -0.79756) (end -1.89992 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 -0.49784) (end -2.3495 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 0.14986) (end -1.89992 0.14986) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.89992 0.14986) (end -1.89992 -0.14986) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 -0.14986) (end -1.89992 -0.14986) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 0.14986) (end -2.3495 -0.14986) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 0.79756) (end -1.89992 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.89992 0.79756) (end -1.89992 0.49784) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 0.49784) (end -1.89992 0.49784) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 0.79756) (end -2.3495 0.49784) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 1.4478) (end -1.89992 1.4478) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.89992 1.4478) (end -1.89992 1.14808) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 1.14808) (end -1.89992 1.14808) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3495 1.4478) (end -2.3495 1.14808) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.4478 2.3495) (end -1.14808 2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 2.3495) (end -1.14808 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.4478 1.89992) (end -1.14808 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.4478 2.3495) (end -1.4478 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.79756 2.3495) (end -0.49784 2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.49784 2.3495) (end -0.49784 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.79756 1.89992) (end -0.49784 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.79756 2.3495) (end -0.79756 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.14986 2.3495) (end 0.14986 2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.14986 2.3495) (end 0.14986 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.14986 1.89992) (end 0.14986 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.14986 2.3495) (end -0.14986 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.49784 2.3495) (end 0.79756 2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.79756 2.3495) (end 0.79756 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.49784 1.89992) (end 0.79756 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.49784 2.3495) (end 0.49784 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.14808 2.3495) (end 1.4478 2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.4478 2.3495) (end 1.4478 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.14808 1.89992) (end 1.4478 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.14808 2.3495) (end 1.14808 1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 1.4478) (end 2.3495 1.4478) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.3495 1.4478) (end 2.3495 1.14808) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 1.14808) (end 2.3495 1.14808) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 1.4478) (end 1.89992 1.14808) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 0.79756) (end 2.3495 0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.3495 0.79756) (end 2.3495 0.49784) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 0.49784) (end 2.3495 0.49784) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 0.79756) (end 1.89992 0.49784) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 0.14986) (end 2.3495 0.14986) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.3495 0.14986) (end 2.3495 -0.14986) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 -0.14986) (end 2.3495 -0.14986) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 0.14986) (end 1.89992 -0.14986) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 -0.49784) (end 2.3495 -0.49784) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.3495 -0.49784) (end 2.3495 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 -0.79756) (end 2.3495 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 -0.49784) (end 1.89992 -0.79756) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 -1.14808) (end 2.3495 -1.14808) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.3495 -1.14808) (end 2.3495 -1.4478) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 -1.4478) (end 2.3495 -1.4478) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.89992 -1.14808) (end 1.89992 -1.4478) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.14808 -1.89992) (end 1.4478 -1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.4478 -1.89992) (end 1.4478 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.14808 -2.3495) (end 1.4478 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.14808 -1.89992) (end 1.14808 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.49784 -1.89992) (end 0.79756 -1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.79756 -1.89992) (end 0.79756 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.49784 -2.3495) (end 0.79756 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.49784 -1.89992) (end 0.49784 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.14986 -1.89992) (end 0.14986 -1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.14986 -1.89992) (end 0.14986 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.14986 -2.3495) (end 0.14986 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.14986 -1.89992) (end -0.14986 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.79756 -1.89992) (end -0.49784 -1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.49784 -1.89992) (end -0.49784 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.79756 -2.3495) (end -0.49784 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.79756 -1.89992) (end -0.79756 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.4478 -1.89992) (end -1.14808 -1.89992) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.14808 -1.89992) (end -1.14808 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.4478 -2.3495) (end -1.14808 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.4478 -1.89992) (end -1.4478 -2.3495) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.3749 -2.04978) (end -2.04978 -2.3749) (layer B.SilkS) (width 0.254))
  (fp_line (start -2.04978 -2.3749) (end 2.04978 -2.3749) (layer F.SilkS) (width 0.254))
  (fp_line (start 2.04978 2.3749) (end -2.04978 2.3749) (layer F.SilkS) (width 0.254))
  (fp_line (start -2.04978 2.3749) (end -2.3749 2.04978) (layer B.SilkS) (width 0.254))
  (fp_line (start -2.3749 2.04978) (end -2.3749 -2.04978) (layer F.SilkS) (width 0.254))
  (fp_line (start 2.3749 -2.04978) (end 2.3749 2.04978) (layer F.SilkS) (width 0.254))
  (fp_line (start 2.04978 -2.3749) (end 2.3749 -2.04978) (layer B.SilkS) (width 0.254))
  (fp_line (start 2.3749 2.04978) (end 2.04978 2.3749) (layer B.SilkS) (width 0.254))
  (fp_circle (center -1.5494 -1.5494) (end -1.62306 -1.62306) (layer B.SilkS) (width 0.127))
  (pad 1 smd oval (at -2.2479 -1.29794) (size 0.89916 0.34798) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd oval (at -2.2479 -0.6477) (size 0.89916 0.34798) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd oval (at -2.2479 0) (size 0.89916 0.34798) (layers F.Cu F.Paste F.Mask))
  (pad 4 smd oval (at -2.2479 0.6477) (size 0.89916 0.34798) (layers F.Cu F.Paste F.Mask))
  (pad 5 smd oval (at -2.2479 1.29794) (size 0.89916 0.34798) (layers F.Cu F.Paste F.Mask))
  (pad 6 smd oval (at -1.29794 2.2479) (size 0.34798 0.89916) (layers F.Cu F.Paste F.Mask))
  (pad 7 smd oval (at -0.6477 2.2479) (size 0.34798 0.89916) (layers F.Cu F.Paste F.Mask))
  (pad 8 smd oval (at 0 2.2479) (size 0.34798 0.89916) (layers F.Cu F.Paste F.Mask))
  (pad 9 smd oval (at 0.6477 2.2479) (size 0.34798 0.89916) (layers F.Cu F.Paste F.Mask))
  (pad 10 smd oval (at 1.29794 2.2479) (size 0.34798 0.89916) (layers F.Cu F.Paste F.Mask))
  (pad 11 smd oval (at 2.2479 1.29794) (size 0.89916 0.34798) (layers F.Cu F.Paste F.Mask))
  (pad 12 smd oval (at 2.2479 0.6477) (size 0.89916 0.34798) (layers F.Cu F.Paste F.Mask))
  (pad 13 smd oval (at 2.2479 0) (size 0.89916 0.34798) (layers F.Cu F.Paste F.Mask))
  (pad 14 smd oval (at 2.2479 -0.6477) (size 0.89916 0.34798) (layers F.Cu F.Paste F.Mask))
  (pad 15 smd oval (at 2.2479 -1.29794) (size 0.89916 0.34798) (layers F.Cu F.Paste F.Mask))
  (pad 16 smd oval (at 1.29794 -2.2479) (size 0.34798 0.89916) (layers F.Cu F.Paste F.Mask))
  (pad 17 smd oval (at 0.6477 -2.2479) (size 0.34798 0.89916) (layers F.Cu F.Paste F.Mask))
  (pad 18 smd oval (at 0 -2.2479) (size 0.34798 0.89916) (layers F.Cu F.Paste F.Mask))
  (pad 19 smd oval (at -0.6477 -2.2479) (size 0.34798 0.89916) (layers F.Cu F.Paste F.Mask))
  (pad 20 smd oval (at -1.29794 -2.2479) (size 0.34798 0.89916) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-R1206 (layer F.Cu) (tedit 200000)
  (descr RESISTOR)
  (tags RESISTOR)
  (attr smd)
  (fp_text reference >NAME (at 1.905 -1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 2.54 1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -1.6891 0.8763) (end -0.9525 0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.9525 0.8763) (end -0.9525 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.6891 -0.8763) (end -0.9525 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.6891 0.8763) (end -1.6891 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 0.8763) (end 1.6891 0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.6891 0.8763) (end 1.6891 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 -0.8763) (end 1.6891 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 0.8763) (end 0.9525 -0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.29972 0.6985) (end 0.29972 0.6985) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.29972 0.6985) (end 0.29972 -0.6985) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.29972 -0.6985) (end 0.29972 -0.6985) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.29972 0.6985) (end -0.29972 -0.6985) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.SilkS) (width 0.1524))
  (fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.47142 -0.98298) (end 2.47142 -0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start 2.47142 -0.98298) (end 2.47142 0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start 2.47142 0.98298) (end -2.47142 0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start -2.47142 0.98298) (end -2.47142 -0.98298) (layer F.SilkS) (width 0.0508))
  (pad 1 smd rect (at -1.41986 0) (size 1.59766 1.80086) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 1.41986 0) (size 1.59766 1.80086) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-R1206FAB (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at 0.762 -1.778) (layer F.SilkS)
    (effects (font (size 1.016 1.016) (thickness 0.1524)))
  )
  (fp_text value >VALUE (at 1.27 1.778) (layer F.SilkS)
    (effects (font (size 1.016 1.016) (thickness 0.1524)))
  )
  (fp_line (start -2.032 -1.016) (end 2.032 -1.016) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.032 -1.016) (end 2.032 1.016) (layer B.SilkS) (width 0.127))
  (fp_line (start 2.032 1.016) (end -2.032 1.016) (layer B.SilkS) (width 0.127))
  (fp_line (start -2.032 1.016) (end -2.032 -1.016) (layer B.SilkS) (width 0.127))
  (pad 1 smd rect (at -1.651 0) (size 1.27 1.905) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 1.651 0) (size 1.27 1.905) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-R1206W (layer F.Cu) (tedit 200000)
  (descr RESISTOR)
  (tags RESISTOR)
  (attr smd)
  (fp_text reference >NAME (at 1.27 -1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_text value >VALUE (at 1.905 1.905) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.1016)))
  )
  (fp_line (start -1.651 0.8763) (end -0.89916 0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.89916 0.8763) (end -0.89916 -0.87376) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.651 -0.87376) (end -0.89916 -0.87376) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.651 0.8763) (end -1.651 -0.87376) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.889 0.8763) (end 1.6383 0.8763) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.6383 0.8763) (end 1.6383 -0.87376) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.889 -0.87376) (end 1.6383 -0.87376) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.889 0.8763) (end 0.889 -0.87376) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.29972 0.6985) (end 0.29972 0.6985) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.29972 0.6985) (end 0.29972 -0.6985) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.29972 -0.6985) (end 0.29972 -0.6985) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.29972 0.6985) (end -0.29972 -0.6985) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.91186 -0.79756) (end 0.88646 -0.79756) (layer F.SilkS) (width 0.1524))
  (fp_line (start -0.91186 0.79756) (end 0.88646 0.79756) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.47142 -0.98298) (end 2.47142 -0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start 2.47142 -0.98298) (end 2.47142 0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start 2.47142 0.98298) (end -2.47142 0.98298) (layer F.SilkS) (width 0.0508))
  (fp_line (start -2.47142 0.98298) (end -2.47142 -0.98298) (layer F.SilkS) (width 0.0508))
  (pad 1 smd rect (at -1.4986 0) (size 1.79832 1.19888) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 1.4986 0) (size 1.79832 1.19888) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-S008 (layer F.Cu) (tedit 200000)
  (descr "SMALL OUTLINE PACKAGE")
  (tags "SMALL OUTLINE PACKAGE")
  (attr smd)
  (fp_text reference >NAME (at -3.3655 -1.143 90) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_text value >VALUE (at 3.3655 -1.778 90) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_line (start -2.0828 2.8702) (end -1.7272 2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.7272 2.8702) (end -1.7272 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.0828 1.8542) (end -1.7272 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.0828 2.8702) (end -2.0828 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 2.8702) (end -0.4572 2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.4572 2.8702) (end -0.4572 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 1.8542) (end -0.4572 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 2.8702) (end -0.8128 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 2.8702) (end 0.8128 2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.8128 2.8702) (end 0.8128 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 1.8542) (end 0.8128 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 2.8702) (end 0.4572 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 2.8702) (end 2.0828 2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.0828 2.8702) (end 2.0828 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 1.8542) (end 2.0828 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 2.8702) (end 1.7272 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.0828 -1.8542) (end -1.7272 -1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.7272 -1.8542) (end -1.7272 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.0828 -2.8702) (end -1.7272 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.0828 -1.8542) (end -2.0828 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 -1.8542) (end -0.4572 -1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.4572 -1.8542) (end -0.4572 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 -2.8702) (end -0.4572 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 -1.8542) (end -0.8128 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 -1.8542) (end 0.8128 -1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.8128 -1.8542) (end 0.8128 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 -2.8702) (end 0.8128 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 -1.8542) (end 0.4572 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 -1.8542) (end 2.0828 -1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.0828 -1.8542) (end 2.0828 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 -2.8702) (end 2.0828 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 -1.8542) (end 1.7272 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.35966 1.80086) (end 2.35966 1.80086) (layer F.SilkS) (width 0.1524))
  (fp_line (start 2.35966 1.80086) (end 2.35966 -1.80086) (layer B.SilkS) (width 0.1524))
  (fp_line (start 2.35966 -1.80086) (end -2.35966 -1.80086) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.35966 -1.80086) (end -2.35966 1.80086) (layer B.SilkS) (width 0.1524))
  (fp_circle (center -1.80086 0.9906) (end -1.97866 1.1684) (layer B.SilkS) (width 0.0254))
  (pad 1 smd rect (at -1.905 2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at -0.635 2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd rect (at 0.635 2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 4 smd rect (at 1.905 2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 5 smd rect (at 1.905 -2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 6 smd rect (at 0.635 -2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 7 smd rect (at -0.635 -2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 8 smd rect (at -1.905 -2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-SJFAB (layer F.Cu) (tedit 200000)
  (attr smd)
  (fp_text reference >NAME (at 1.524 -1.778) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_text value >VALUE (at 0.45974 -0.00762) (layer F.SilkS)
    (effects (font (size 0.01778 0.01778) (thickness 0.000001)))
  )
  (fp_line (start 1.397 1.016) (end -1.397 1.016) (layer B.SilkS) (width 0.1524))
  (fp_line (start 1.651 0.762) (end 1.651 -0.762) (layer B.SilkS) (width 0.1524))
  (fp_line (start -1.651 0.762) (end -1.651 -0.762) (layer B.SilkS) (width 0.1524))
  (fp_line (start -1.397 -1.016) (end 1.397 -1.016) (layer B.SilkS) (width 0.1524))
  (fp_line (start 1.016 0) (end 1.524 0) (layer F.SilkS) (width 0.1524))
  (fp_line (start -1.016 0) (end -1.524 0) (layer F.SilkS) (width 0.1524))
  (fp_arc (start 1.397 -0.762) (end 1.397 -1.016) (angle 90) (layer B.SilkS) (width 0.1524))
  (fp_arc (start -1.397 -0.762) (end -1.651 -0.762) (angle 90) (layer B.SilkS) (width 0.1524))
  (fp_arc (start -1.397 0.762) (end -1.397 1.016) (angle 90) (layer B.SilkS) (width 0.1524))
  (fp_arc (start 1.397 0.762) (end 1.651 0.762) (angle 90) (layer B.SilkS) (width 0.1524))
  (fp_arc (start -0.254 0) (end -0.254 0.127) (angle 180) (layer F.SilkS) (width 1.27))
  (fp_arc (start 0.254 0) (end 0.254 -0.127) (angle 180) (layer F.SilkS) (width 1.27))
  (pad 1 smd rect (at -0.7874 0) (size 1.1176 1.6002) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at 0.7874 0) (size 1.1176 1.6002) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-SMD_COIL (layer F.Cu) (tedit 200000)
  (descr "ELL-CTV SERIES SMD CHOKE COILS")
  (tags "ELL-CTV SERIES SMD CHOKE COILS")
  (attr smd)
  (fp_text reference "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_text value "" (at 0 0) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.15)))
  )
  (fp_line (start 0 -2.09804) (end 0 -11.99896) (layer F.SilkS) (width 0.127))
  (fp_line (start 0 -11.99896) (end 9.89838 -11.99896) (layer F.SilkS) (width 0.127))
  (fp_line (start 9.89838 -11.99896) (end 11.99896 -9.89838) (layer F.SilkS) (width 0.127))
  (fp_line (start 11.99896 -9.89838) (end 11.99896 -2.09804) (layer F.SilkS) (width 0.127))
  (fp_line (start 11.99896 -2.09804) (end 9.99998 0) (layer F.SilkS) (width 0.127))
  (fp_line (start 9.99998 0) (end 2.09804 0) (layer F.SilkS) (width 0.127))
  (fp_line (start 2.09804 0) (end 0 -2.09804) (layer F.SilkS) (width 0.127))
  (pad P$1 smd rect (at 10.44194 -10.30732 135) (size 3.99796 2.39776) (layers F.Cu F.Paste F.Mask))
  (pad P$2 smd rect (at 1.74498 -1.61036 135) (size 3.99796 2.39776) (layers F.Cu F.Paste F.Mask))
)
Original line number Original line Diff line number Diff line
(module fab-SO08 (layer F.Cu) (tedit 200000)
  (descr "SMALL OUTLINE PACKAGE")
  (tags "SMALL OUTLINE PACKAGE")
  (attr smd)
  (fp_text reference >NAME (at -3.3655 -1.143 90) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_text value >VALUE (at 3.3655 -1.778 90) (layer F.SilkS)
    (effects (font (size 1.27 1.27) (thickness 0.127)))
  )
  (fp_line (start -2.0828 2.8702) (end -1.7272 2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.7272 2.8702) (end -1.7272 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.0828 1.8542) (end -1.7272 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.0828 2.8702) (end -2.0828 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 2.8702) (end -0.4572 2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.4572 2.8702) (end -0.4572 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 1.8542) (end -0.4572 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 2.8702) (end -0.8128 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 2.8702) (end 0.8128 2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.8128 2.8702) (end 0.8128 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 1.8542) (end 0.8128 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 2.8702) (end 0.4572 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 2.8702) (end 2.0828 2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.0828 2.8702) (end 2.0828 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 1.8542) (end 2.0828 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 2.8702) (end 1.7272 1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.0828 -1.8542) (end -1.7272 -1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -1.7272 -1.8542) (end -1.7272 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.0828 -2.8702) (end -1.7272 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.0828 -1.8542) (end -2.0828 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 -1.8542) (end -0.4572 -1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.4572 -1.8542) (end -0.4572 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 -2.8702) (end -0.4572 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -0.8128 -1.8542) (end -0.8128 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 -1.8542) (end 0.8128 -1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.8128 -1.8542) (end 0.8128 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 -2.8702) (end 0.8128 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 0.4572 -1.8542) (end 0.4572 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 -1.8542) (end 2.0828 -1.8542) (layer F.SilkS) (width 0.06604))
  (fp_line (start 2.0828 -1.8542) (end 2.0828 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 -2.8702) (end 2.0828 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start 1.7272 -1.8542) (end 1.7272 -2.8702) (layer F.SilkS) (width 0.06604))
  (fp_line (start -2.35966 1.80086) (end 2.35966 1.80086) (layer F.SilkS) (width 0.1524))
  (fp_line (start 2.35966 1.80086) (end 2.35966 -1.80086) (layer B.SilkS) (width 0.1524))
  (fp_line (start 2.35966 -1.80086) (end -2.35966 -1.80086) (layer F.SilkS) (width 0.1524))
  (fp_line (start -2.35966 -1.80086) (end -2.35966 1.80086) (layer B.SilkS) (width 0.1524))
  (fp_circle (center -1.80086 0.9906) (end -1.97866 1.1684) (layer B.SilkS) (width 0.0254))
  (pad 1 smd rect (at -1.905 2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 2 smd rect (at -0.635 2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 3 smd rect (at 0.635 2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 4 smd rect (at 1.905 2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 5 smd rect (at 1.905 -2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 6 smd rect (at 0.635 -2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 7 smd rect (at -0.635 -2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
  (pad 8 smd rect (at -1.905 -2.6162) (size 0.6096 2.20726) (layers F.Cu F.Paste F.Mask))
)