├── .github └── workflows │ └── ci-build.yml ├── .gitignore ├── BOM.md ├── CAD └── VORON_Tap_R8.step ├── LICENSE ├── Manual ├── Assembly_Manual_Tap.pdf └── R8_errata.md ├── OptoTap ├── README.md ├── STLs │ ├── optotap_eeSX398_solder_jig.stl │ └── solder_jig.step ├── Tap_Photosensor_PCB_v1 │ ├── Tap_Photosensor_PCB.kicad_pcb │ ├── Tap_Photosensor_PCB.kicad_pro │ ├── Tap_Photosensor_PCB.kicad_sch │ ├── Tap_Photosensor_PCB_Short_ee-sx.STEP │ └── jlcpcb │ │ ├── gerber │ │ ├── Tap_Photosensor_PCB-CuBottom.gbr │ │ ├── Tap_Photosensor_PCB-CuTop.gbr │ │ ├── Tap_Photosensor_PCB-EdgeCuts.gbr │ │ ├── Tap_Photosensor_PCB-MaskBottom.gbr │ │ ├── Tap_Photosensor_PCB-MaskTop.gbr │ │ ├── Tap_Photosensor_PCB-NPTH-drl_map.pdf │ │ ├── Tap_Photosensor_PCB-NPTH.drl │ │ ├── Tap_Photosensor_PCB-PTH-drl_map.pdf │ │ ├── Tap_Photosensor_PCB-PTH.drl │ │ ├── Tap_Photosensor_PCB-PasteBottom.gbr │ │ ├── Tap_Photosensor_PCB-PasteTop.gbr │ │ ├── Tap_Photosensor_PCB-SilkBottom.gbr │ │ ├── Tap_Photosensor_PCB-SilkTop.gbr │ │ └── Tap_Photosensor_PCB-VScore.gbr │ │ ├── production_files │ │ ├── BOM-Tap_Photosensor_PCB.csv │ │ ├── CPL-Tap_Photosensor_PCB.csv │ │ └── GERBER-Tap_Photosensor_PCB.zip │ │ └── project.db ├── Tap_Photosensor_PCB_v2 │ ├── Tap_Photosensor_PCB.STEP │ ├── Tap_Photosensor_PCB.kicad_pcb │ ├── Tap_Photosensor_PCB.kicad_pro │ ├── Tap_Photosensor_PCB.kicad_sch │ ├── Tap_Photosensor_PCB_v2.4.STEP │ └── jlcpcb │ │ ├── gerber │ │ ├── Tap_Photosensor_PCB-CuBottom.gbr │ │ ├── Tap_Photosensor_PCB-CuTop.gbr │ │ ├── Tap_Photosensor_PCB-EdgeCuts.gbr │ │ ├── Tap_Photosensor_PCB-MaskBottom.gbr │ │ ├── Tap_Photosensor_PCB-MaskTop.gbr │ │ ├── Tap_Photosensor_PCB-NPTH-drl_map.pdf │ │ ├── Tap_Photosensor_PCB-NPTH.drl │ │ ├── Tap_Photosensor_PCB-PTH-drl_map.pdf │ │ ├── Tap_Photosensor_PCB-PTH.drl │ │ ├── Tap_Photosensor_PCB-PasteBottom.gbr │ │ ├── Tap_Photosensor_PCB-PasteTop.gbr │ │ ├── Tap_Photosensor_PCB-SilkBottom.gbr │ │ ├── Tap_Photosensor_PCB-SilkTop.gbr │ │ └── Tap_Photosensor_PCB-VScore.gbr │ │ ├── production_files │ │ ├── BOM-Tap_Photosensor_PCB.csv │ │ ├── CPL-Tap_Photosensor_PCB.csv │ │ └── GERBER-Tap_Photosensor_PCB.zip │ │ └── project.db └── images │ ├── 5v_led.png │ ├── dfm_led.png │ ├── kicad_led.png │ ├── led_blink.gif │ ├── led_circuit.png │ ├── optotap_v1.png │ ├── optotap_v2.png │ ├── photo_led.png │ └── solder_bridge.png ├── README.md ├── STLs ├── MGN9_Assembly_Tool.stl ├── Printed_Cut_Guide.stl ├── Tap_Center_left_r8.stl ├── Tap_Center_right_r8.stl ├── Tap_Front_r8.stl ├── Tap_Upper_D2HW_r8.stl ├── Tap_Upper_PCB_r8.stl ├── Tap_Upper_Wired_r8.stl ├── [a]_Tap_Belt_Cover_r8_x2.stl ├── [a]_Tap_Center_r8.stl └── changelog.md ├── config └── tap_klipper_instructions.md └── images ├── 12_16_updatelog.png ├── 1_3_23_updatelog.png ├── RC8 ├── RC8_beltclamp.png ├── RC8_changelog.png ├── RC8_heatsets.png ├── RC8_rail.png └── RC8_stiffeners.png └── Voron-Tap.gif /.github/workflows/ci-build.yml: -------------------------------------------------------------------------------- 1 | name: Voron CI 2 | 3 | on: 4 | push: 5 | branches: [ main ] 6 | pull_request: 7 | branches: [ main ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | strategy: 15 | matrix: 16 | node-version: [16.x] 17 | env: 18 | GIT_BRANCH: ${{ github.head_ref }} 19 | GIT_PR_BASE_BRANCH: ${{ github.base_ref }} 20 | GIT_PULL_REQUEST: ${{ github.event.number }} 21 | steps: 22 | - name: Checkout Actions 23 | uses: actions/checkout@v3 24 | 25 | - name: Cache Folder 26 | id: cache-folder 27 | uses: actions/cache@v3 28 | with: 29 | path: ci_cache 30 | key: voron-ci 31 | - name: Print Travis ENV vars 32 | run: | 33 | echo "GIT_BRANCH: ${GIT_BRANCH}" 34 | echo "GIT_PULL_REQUEST: ${GIT_PULL_REQUEST}" 35 | - name: Setup NPM 36 | uses: actions/setup-node@v3 37 | with: 38 | node-version: ${{ matrix.node-version }} 39 | - name: Install NPM scripts 40 | run: | 41 | npm init -y 42 | npm install --global remark-cli remark-validate-links 43 | - name: Execute CI 44 | run: | 45 | git clone https://github.com/VoronDesign/GithubScripts.git .github_scripts 46 | /bin/bash ./.github_scripts/workflows/ci-build.sh 47 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # macOS ignores provided by github/gitignore 2 | # General 3 | .DS_Store 4 | .AppleDouble 5 | .LSOverride 6 | 7 | # Icon must end with two \r 8 | Icon 9 | 10 | 11 | # Thumbnails 12 | ._* 13 | 14 | # Files that might appear in the root of a volume 15 | .DocumentRevisions-V100 16 | .fseventsd 17 | .Spotlight-V100 18 | .TemporaryItems 19 | .Trashes 20 | .VolumeIcon.icns 21 | .com.apple.timemachine.donotpresent 22 | 23 | # Directories potentially created on remote AFP share 24 | .AppleDB 25 | .AppleDesktop 26 | Network Trash Folder 27 | Temporary Items 28 | .apdisk 29 | 30 | # Kicad ignores provided by github/gitignore 31 | # For PCBs designed using KiCad: https://www.kicad.org/ 32 | # Format documentation: https://kicad.org/help/file-formats/ 33 | 34 | # Temporary files 35 | *.000 36 | *.bak 37 | *.bck 38 | *.kicad_pcb-bak 39 | *.kicad_sch-bak 40 | *-backups 41 | *.kicad_prl 42 | *.sch-bak 43 | *~ 44 | _autosave-* 45 | *.tmp 46 | *-save.pro 47 | *-save.kicad_pcb 48 | fp-info-cache 49 | 50 | # Netlist files (exported from Eeschema) 51 | *.net 52 | 53 | # Autorouter files (exported from Pcbnew) 54 | *.dsn 55 | *.ses 56 | 57 | # VSCodeignores provided by github/gitignore 58 | .vscode/* 59 | 60 | # Local History for Visual Studio Code 61 | .history/ 62 | 63 | # Built Visual Studio Code Extensions 64 | *.vsix 65 | 66 | -------------------------------------------------------------------------------- /BOM.md: -------------------------------------------------------------------------------- 1 | # Bill of Materials 2 | 3 | |Category|Qty|Description|Notes| 4 | |:----|:----|:----|:----| 5 | |Hardware|1|50 mm MGN9 Rail|see cutting guide, Ends deburred, overall length +/- 1 mm| 6 | |Hardware|1|MGN-9H Carriage|Medium preload (Z1) is preferred, but regular preload will work. Carriage must be removable from rail.| 7 | |Hardware|2|6 mm x 3 mm magnet|6 mm diameter, 3 mm tall cylinders. N52 strength preferred, N35 or higher strength required.| 8 | |Hardware|11|M3 Heatset Insert|Standard Voron spec 4.7 mm diameter inserts| 9 | |Hardware|3|H3 Hex Nut|ISO 4032| 10 | |Hardware|8|M3 Washer|DIN 125, 7mm outer diameter, 0.5 mm thickness| 11 | |Hardware|2|M3 x 20 SHCS|Socket head cap screw| 12 | |Hardware|3|M3 x 16 SHCS|Socket head cap screw| 13 | |Hardware|3|M3 x 12 SHCS|Socket head cap screw| 14 | |Hardware|1|M3 x 6 SHCS|Socket head cap screw| 15 | |Hardware|2|M3 x 6 FHCS|Flat head cap screw. MUST BE MAGNETIC. No stainless, may be black oxide or zinc coated.| 16 | |Hardware|2|M3 x 12 BHCS|Button Head Cap Screw| 17 | |Hardware|2|M3 x 8 BHCS|Button Head Cap Screw| 18 | |Hardware|10|M3 x 6 BHCS|Button Head Cap Screw| 19 | |Hardware|2|M3 x 50 BHCS/SHCS|Button or Socket Head Cap Screw, fully threaded| 20 | 21 | Optionally you can replace the M3 x 6 FHCS with additional magnets. See [R8_errata.md](Manual/R8_errata.md) for details 22 | 23 | ## Sensor Options: Select either “Wired Sensor” or “PCB Sensor" 24 | 25 | **Wired** 26 | |Category|Qty|Description|Notes|Links| 27 | |:----|:----|:----|:----|:----| 28 | |Electronics|1|220 Ohm resistor | ¼ Watt, +/- 10% tolerance resistor| | 29 | |Electronics|1|OPB Wired Sensor|Optek sensor, wired. OPB991| | 30 | | | | |OPB991P51Z| | 31 | | | | |OPB991L51Z| | 32 | | | | |OPB991T51Z| | 33 | | | | |OPB991T11Z|https://www.digikey.com/short/rrjtmvwm| 34 | | | | |OPB991L11Z|https://www.digikey.com/short/cnnhjr5n| 35 | 36 | **PCB Sensor** 37 | |Category|Qty|Description|Notes|Links| 38 | |:----|:----|:----|:----|:----| 39 | |Electronics|1|OptoTap v2 PCB| | | 40 | |Electronics|1|OPB PCB Sensor|Optek sensor: OPB666N or OPB971N51| | 41 | | | | |OPB666N|https://www.digikey.com/short/f2mzw5rm| 42 | | | | |OPB971N51|https://www.digikey.com/short/m9rz73fp| 43 | -------------------------------------------------------------------------------- /Manual/Assembly_Manual_Tap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/Manual/Assembly_Manual_Tap.pdf -------------------------------------------------------------------------------- /Manual/R8_errata.md: -------------------------------------------------------------------------------- 1 | TAP RC8 Errata, notes, etc 2 | 3 | Welcome to Tap RC8. This is a full reprint from Tap RC6. 4 | 5 | *Wait! What happened to RC7? the last thing you published was RC6!* 6 | RC7....didn't make it. From its ashes, RC8 arose. As we all know, eight is great. 7 | 8 | Here's what changed: 9 | 10 | ![RC8_changelog.png](../images/RC8/RC8_changelog.png) 11 | 12 | One of the big changes is you can now use either a pair of magnets or a pair of FHCS in Tap_front. The stronger the pull force, the more resistant to ringing, but also the more potential to marring your Build surface. 13 | 14 | here are my reccommendations. this is a guideline only, your mileage may vary, caveat emptor, barba crescit caput nescit. 15 | 16 | | Build surface | Trigger force (approx) | Configuration | Max Accels | 17 | |---------------|------------------------|---------------|------------| 18 | | Flat PEI sticker | 750 g | 2 N35 magnets + 2 FHCS | 5000 mm/s^2 | 19 | | Powder coat PEI | 1400g | 4 N52 Magnets | 10000 mm/s^2 | 20 | 21 | 22 | 23 | Other than possibly wanting more or stronger magnets, here's what you will need in addition to the original Tap BOM: 24 | 25 | | Qty | Description | Notes | 26 | |-----|-------------|-------| 27 | | 2 | M3x50 BHCS or SHCS | Threaded the entire length. you can get by without these, or with M3x40's. | 28 | | 1 | M3x16 SHCS | Replaces a M3x12 SHCS securing the rail. | 29 | | 2 | M3x8 BHCS | Used with belt covers | 30 | | 2 | M3 nuts | Used with belt covers | 31 | | 2 | M3 washers | Used with belt covers | 32 | | 11-12 | M3 Heatset inserts | This depends on your ability to reclaim heatsets from the existing parts. If you can, you won't need any additional heatsets. | 33 | 34 | 35 | Belt handling: 36 | The belts are now handled by looping around Tap_center, and secured with a printed belt cover and M3x8 BHCS: 37 | 38 | ![RC8_beltclamp.png](../images/RC8/RC8_beltclamp.png) 39 | 40 | 41 | 42 | 43 | the 2 M3x50 bolts are threaded up into Tap_Center, and serve to provide extra stiffening: 44 | 45 | ![RC8_stiffeners.png](../images/RC8/RC8_stiffeners.png) 46 | 47 | 48 | 49 | 50 | The heatset inserts for the center are moved back 4 mm to provide extra vibration resistance: 51 | 52 | ![RC8_heatsets.png](../images/RC8/RC8_heatsets.png) 53 | 54 | 55 | 56 | 57 | So they will need to be secured with M3x12 and M3x16 SHCS: 58 | 59 | ![RC8_rail.png](../images/RC8/RC8_rail.png) 60 | 61 | (The top is still secured by M3x6 SHCS) 62 | 63 | Enjoy! -------------------------------------------------------------------------------- /OptoTap/README.md: -------------------------------------------------------------------------------- 1 | # OptoTap PCB 2 | 3 | OptoTap PCB is a small, completely unnecessary PCB that exists to make installation of the optical sensor marginally more convenient. (That's right, several of us have spent dozens of hours and hundreds of dollars in order to avoid two solder joints and a bit of heat shrink.) 4 | 5 | It comes in two official flavors/form factors: 6 | 7 | - **V1**: smaller form factor, 5V only 8 | - **V2**: taller form factor, 5 or 24V capable 9 | 10 | Both simplify optical sensor installation by including the necessary current-limiting resistor for the IR led within the sensor itself, as well as providing a visible LED indicator to assist with troubleshooting. 11 | 12 | The V1 board attempts to minimize size and cost as much as possible, at the expense of some flexibility: it **can not be used as a drop-in replacement for 24V inductive sensors** (24V will fry the optical sensor, eventually.) 13 | 14 | The V2 board adds a switch-mode regulator to allow safely connecting to 24V probe headers. The regulator converts positive input voltage between >5V and 24V to 5V on-board, at the expense of some additional components and a larger PCB. **Please read important information about previous versions of this board below.** 15 | 16 | 17 | ## OptoTap V1 18 | 19 | 20 | 21 | This version saves some vertical room by requiring you to solder your connector wires directly to the board. 22 | 23 | **Do not connect this version to 24V!** (Did we mention that *it's not 24V tolerant???*) Many of the Voron toolhead PCBs in circulation send 24V to the three-pin probe header. You cannot plug this board directly in to these headers! 24 | 25 | ### Revision history 26 | 27 | - 1.0: initial release 28 | - 1.3: updated release 29 | - hybrid footprint to permit use of EE-SX398 sensor in addition to Optek versions 30 | - two-color LED to indicate status and assist with troubleshooting. 31 | - 'Dark Mode' solder jumper to allow turning off indicator LEDs 32 | - increased thermal relief on solder pads to make through-holes easier to solder 33 | 34 | ## OptoTap V2 35 | 36 | 37 | 38 | This version uses an AP63205WU switch mode regulator to drop input voltage and supply 5V to the sensor. This gives a bit of additional room to add a 3-pin JST-PH 2.0mm pitch connector as well [part number S3B-PH-K-S (LF)(SN)]. 39 | 40 | **IMPORTANT NOTE: The original version of this board had an issue that rendered it unsafe for use at 24V**. Please see [this issue](https://github.com/VoronDesign/Voron-Tap/issues/42#issuecomment-1370065351) for more extensive details on the testing and resolution of the problem. 41 | 42 | The current version (V2.4) fixes the inrush overvoltage spike that plagued the initial release, and adds several additional safeguards, including a polyfuse and a reverse polarity protection diode. 43 | 44 | ### Usage notes 45 | 46 | #### Operation at 5V 47 | 48 | The V2.4 OptoTap PCB has been tested to work fine from 5V to 24V inputs with no modifications. However, this does induce a bit of additional voltage drop from the switching regulator IC going into LDO mode. If you would like to run the V2.4 OptoTap at 5V, my first suggestion would be to just run it at 5V with no modifications. It will most likely work just fine. 49 | 50 | However, it does have the capacity to bypass the whole buck converter circuit. Note that this also bypasses the polyfuse, so there will be no overcurrent protection. 51 | 52 | To make this modification, you need to cut the trace between the center pad and 24V pad on the rear of the PCB, then use some solder to bridge the center pad to the 5V pad. To reverse the change, just desolder that bridge and re-connect the center pad to the 24V pad with more solder. 53 | 54 | 55 | 56 | ### Revision history 57 | 58 | - 2.0: initial prototype 59 | - 2.1: component modifications after initial testing 60 | - changed C1 to higher voltage rating 61 | - changed C2 bootstrap cap to higher capacitance 62 | - changed all capacitors to 0805 for better part availability 63 | - 2.4: updated release 64 | - added polyfuse to limit overcurrent and damp inrush current-induced voltage spike on hot-plugging 65 | - added reverse polarity protection diode 66 | - increased size of inductor to prevent coil saturation 67 | - added a second output filter capacitor to reduce output voltage ripple 68 | - hybrid footprint to permit use of EE-SX398 sensor in addition to Optek versions 69 | - two-color LED to indicate status and assist with troubleshooting. 70 | - 'Dark Mode' solder jumper to allow turning off indicator LEDs 71 | - added 5V/24V selection solder jumper on rear of board to allow for easy bypassing of voltage regulator circuit 72 | - increased thermal relief on solder pads to make through-holes easier to solder 73 | 74 | ### Ordering and Assembly notes 75 | 76 | #### Inductor choice 77 | 78 | I've tested version of this PCB with inductors from Cenker 79 | CKCS3012-4.7uH/M (C354557) and Microgate 80 | MPIT3015-4R7M-LF (C486485). Any 30xx footprint coil inductor with >1A current rating and ~ 100 mΩ DCR should work ok. 81 | 82 | #### Indicator LED placement 83 | 84 | For some reason, JLCPCB has trouble with their part orientation for this LED specifically. I'm hoping that eventually they will sort their database out. In the meantime, it is worth verifying the part placement prior to assembly. 85 | 86 | The footprint silkscreen has two elements to help indicate the orientation of the LED: an extra line on the side to indicate Pin 1, and a little arrow that matches up with a corresponding arrow on the part: 87 | 88 | 89 | 90 | For the v2.4 PCB, make sure that the arrow on the DFM points to the arrow on the footprint, pin 1 matches the extra line on the footprint, and the + pad matches up to the correct pad! 91 | 92 | 93 | 94 | This is how it will look when assembled: 95 | 96 | 97 | 98 | You can see the little bond wires from each of the three LEDs going back to the common anode, which is pretty neat. 99 | 100 | ***NOTE THAT THE 5V ONLY BOARD (V1.3) HAS A ROTATED FOOTPRINT! YOU'RE WELCOME AND I'M SORRY.*** 101 | 102 | 103 | 104 | 105 | ## Indicator LEDs 106 | 107 | The revised boards (V1.3/2.4) now have two-color indicator LEDs to help assist with troubleshooting. This should hopefully help a little bit with troubleshooting. The expected behavior of the LED is: 108 | 109 | - Blue: Connected to power, beam not broken 110 | - Red: Connected to power, beam broken 111 | 112 | 113 | 114 | When installed in the toolhead, the light should be red normally (toolhead in 'down' position) and blue when activated (toolhead in 'up') position. 115 | 116 | I would suggest powering on the board with 5V prior to installing it to make sure everything is functioning as expected. If the indicator LED is red with nothing blocking the optical sensor beam path, there is probably a problem with the ground and signal wires -- triple check! 117 | 118 | 119 | ## Sensor Choice 120 | 121 | 122 | ### Omron or Optek 123 | 124 | The revised versions of the boards (V1.3 and V2.4) feature a hybrid optical sensor footprint that permits installation of the Omron EE-SX398 sensor in addition to the Optek OPB666/9xx versions. In testing, the Omron sensor performed just as well as the Optek sensor. 125 | 126 | However, it has a *slightly* different footprint than the Omron sensor, with annoyingly-close leads on the three pin side. I went through a few iterations of testing to come up with a hybrid footprint that seems to work well for either sensor model. 127 | 128 | The slots mean there is a little play in sensor positioning, particularly with the EE-SX398 sensor. To help ensure precise alignment with this sensor, print out the jig included in the [STLs](./STLs) folder. 129 | 130 | 131 | ### Sensor Logic 132 | 133 | The Tap setup requires a *buffer* style circuit rather than an *inverter* style to ensure safe operation. This style causes the sensor to trigger (pull the signal pin low) when the toolhead is in its normal, 'down' position. That means that if there is a bad connection somewhere, the MCU can observe that there is a problem *without* crashing the toolhead uncontrollably into the build plate. 134 | 135 | Please double check your sensor part number to make sure you're getting the appropriate model! 136 | 137 | #### For Omron: 138 | 139 | - **Good**: 140 | - EE-SX398 141 | - **Bad**: 142 | - EE-SX498 143 | 144 | #### For Optek: 145 | 146 | - **Good**: 147 | - OPB666N 148 | - OPB9x1 149 | - **Bad**: 150 | - OPB9x2 151 | 152 | Additionally, for the Optek probes, the OPB9x0 sensors are totem pole rather than open collector, meaning that they will pull the sense pin up to 5V when not pulling it down to GND. This can cause problems for some boards (notably RP2040-based CAN toolhead boards) that do not have 5V-tolerant endstop pins. 153 | 154 | 155 | 156 | 157 | -------------------------------------------------------------------------------- /OptoTap/STLs/optotap_eeSX398_solder_jig.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/STLs/optotap_eeSX398_solder_jig.stl -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/Tap_Photosensor_PCB.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.09999999999999999, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.15, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 1.182, 38 | "height": 0.958, 39 | "width": 1.782 40 | }, 41 | "silk_line_width": 0.15, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 1.0, 44 | "silk_text_size_v": 1.0, 45 | "silk_text_thickness": 0.15, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "45_degree_only": false, 49 | "min_clearance": 0.508 50 | } 51 | }, 52 | "diff_pair_dimensions": [ 53 | { 54 | "gap": 0.0, 55 | "via_gap": 0.0, 56 | "width": 0.0 57 | } 58 | ], 59 | "drc_exclusions": [], 60 | "meta": { 61 | "version": 2 62 | }, 63 | "rule_severities": { 64 | "annular_width": "error", 65 | "clearance": "error", 66 | "connection_width": "warning", 67 | "copper_edge_clearance": "error", 68 | "copper_sliver": "warning", 69 | "courtyards_overlap": "error", 70 | "diff_pair_gap_out_of_range": "error", 71 | "diff_pair_uncoupled_length_too_long": "error", 72 | "drill_out_of_range": "error", 73 | "duplicate_footprints": "warning", 74 | "extra_footprint": "warning", 75 | "footprint": "error", 76 | "footprint_type_mismatch": "error", 77 | "hole_clearance": "error", 78 | "hole_near_hole": "error", 79 | "invalid_outline": "error", 80 | "isolated_copper": "warning", 81 | "item_on_disabled_layer": "error", 82 | "items_not_allowed": "error", 83 | "length_out_of_range": "error", 84 | "lib_footprint_issues": "warning", 85 | "lib_footprint_mismatch": "warning", 86 | "malformed_courtyard": "error", 87 | "microvia_drill_out_of_range": "error", 88 | "missing_courtyard": "ignore", 89 | "missing_footprint": "warning", 90 | "net_conflict": "warning", 91 | "npth_inside_courtyard": "ignore", 92 | "padstack": "error", 93 | "pth_inside_courtyard": "ignore", 94 | "shorting_items": "error", 95 | "silk_edge_clearance": "warning", 96 | "silk_over_copper": "warning", 97 | "silk_overlap": "warning", 98 | "skew_out_of_range": "error", 99 | "solder_mask_bridge": "error", 100 | "starved_thermal": "error", 101 | "text_height": "warning", 102 | "text_thickness": "warning", 103 | "through_hole_pad_without_hole": "error", 104 | "too_many_vias": "error", 105 | "track_dangling": "warning", 106 | "track_width": "error", 107 | "tracks_crossing": "error", 108 | "unconnected_items": "error", 109 | "unresolved_variable": "error", 110 | "via_dangling": "warning", 111 | "zones_intersect": "error" 112 | }, 113 | "rules": { 114 | "allow_blind_buried_vias": false, 115 | "allow_microvias": false, 116 | "max_error": 0.005, 117 | "min_clearance": 0.0, 118 | "min_connection": 0.0, 119 | "min_copper_edge_clearance": 0.0, 120 | "min_hole_clearance": 0.25, 121 | "min_hole_to_hole": 0.25, 122 | "min_microvia_diameter": 0.19999999999999998, 123 | "min_microvia_drill": 0.09999999999999999, 124 | "min_resolved_spokes": 2, 125 | "min_silk_clearance": 0.0, 126 | "min_text_height": 0.7999999999999999, 127 | "min_text_thickness": 0.08, 128 | "min_through_hole_diameter": 0.3, 129 | "min_track_width": 0.19999999999999998, 130 | "min_via_annular_width": 0.049999999999999996, 131 | "min_via_diameter": 0.39999999999999997, 132 | "solder_mask_clearance": 0.0, 133 | "solder_mask_min_width": 0.0, 134 | "solder_mask_to_copper_clearance": 0.0, 135 | "use_height_for_length_calcs": true 136 | }, 137 | "teardrop_options": [ 138 | { 139 | "td_allow_use_two_tracks": true, 140 | "td_curve_segcount": 5, 141 | "td_on_pad_in_zone": false, 142 | "td_onpadsmd": true, 143 | "td_onroundshapesonly": false, 144 | "td_ontrackend": false, 145 | "td_onviapad": true 146 | } 147 | ], 148 | "teardrop_parameters": [ 149 | { 150 | "td_curve_segcount": 0, 151 | "td_height_ratio": 1.0, 152 | "td_length_ratio": 0.5, 153 | "td_maxheight": 2.0, 154 | "td_maxlen": 1.0, 155 | "td_target_name": "td_round_shape", 156 | "td_width_to_size_filter_ratio": 0.9 157 | }, 158 | { 159 | "td_curve_segcount": 0, 160 | "td_height_ratio": 1.0, 161 | "td_length_ratio": 0.5, 162 | "td_maxheight": 2.0, 163 | "td_maxlen": 1.0, 164 | "td_target_name": "td_rect_shape", 165 | "td_width_to_size_filter_ratio": 0.9 166 | }, 167 | { 168 | "td_curve_segcount": 0, 169 | "td_height_ratio": 1.0, 170 | "td_length_ratio": 0.5, 171 | "td_maxheight": 2.0, 172 | "td_maxlen": 1.0, 173 | "td_target_name": "td_track_end", 174 | "td_width_to_size_filter_ratio": 0.9 175 | } 176 | ], 177 | "track_widths": [ 178 | 0.0, 179 | 0.3 180 | ], 181 | "via_dimensions": [ 182 | { 183 | "diameter": 0.0, 184 | "drill": 0.0 185 | } 186 | ], 187 | "zones_allow_external_fillets": false, 188 | "zones_use_no_outline": true 189 | }, 190 | "layer_presets": [], 191 | "viewports": [] 192 | }, 193 | "boards": [], 194 | "cvpcb": { 195 | "equivalence_files": [] 196 | }, 197 | "erc": { 198 | "erc_exclusions": [], 199 | "meta": { 200 | "version": 0 201 | }, 202 | "pin_map": [ 203 | [ 204 | 0, 205 | 0, 206 | 0, 207 | 0, 208 | 0, 209 | 0, 210 | 1, 211 | 0, 212 | 0, 213 | 0, 214 | 0, 215 | 2 216 | ], 217 | [ 218 | 0, 219 | 2, 220 | 0, 221 | 1, 222 | 0, 223 | 0, 224 | 1, 225 | 0, 226 | 2, 227 | 2, 228 | 2, 229 | 2 230 | ], 231 | [ 232 | 0, 233 | 0, 234 | 0, 235 | 0, 236 | 0, 237 | 0, 238 | 1, 239 | 0, 240 | 1, 241 | 0, 242 | 1, 243 | 2 244 | ], 245 | [ 246 | 0, 247 | 1, 248 | 0, 249 | 0, 250 | 0, 251 | 0, 252 | 1, 253 | 1, 254 | 2, 255 | 1, 256 | 1, 257 | 2 258 | ], 259 | [ 260 | 0, 261 | 0, 262 | 0, 263 | 0, 264 | 0, 265 | 0, 266 | 1, 267 | 0, 268 | 0, 269 | 0, 270 | 0, 271 | 2 272 | ], 273 | [ 274 | 0, 275 | 0, 276 | 0, 277 | 0, 278 | 0, 279 | 0, 280 | 0, 281 | 0, 282 | 0, 283 | 0, 284 | 0, 285 | 2 286 | ], 287 | [ 288 | 1, 289 | 1, 290 | 1, 291 | 1, 292 | 1, 293 | 0, 294 | 1, 295 | 1, 296 | 1, 297 | 1, 298 | 1, 299 | 2 300 | ], 301 | [ 302 | 0, 303 | 0, 304 | 0, 305 | 1, 306 | 0, 307 | 0, 308 | 1, 309 | 0, 310 | 0, 311 | 0, 312 | 0, 313 | 2 314 | ], 315 | [ 316 | 0, 317 | 2, 318 | 1, 319 | 2, 320 | 0, 321 | 0, 322 | 1, 323 | 0, 324 | 2, 325 | 2, 326 | 2, 327 | 2 328 | ], 329 | [ 330 | 0, 331 | 2, 332 | 0, 333 | 1, 334 | 0, 335 | 0, 336 | 1, 337 | 0, 338 | 2, 339 | 0, 340 | 0, 341 | 2 342 | ], 343 | [ 344 | 0, 345 | 2, 346 | 1, 347 | 1, 348 | 0, 349 | 0, 350 | 1, 351 | 0, 352 | 2, 353 | 0, 354 | 0, 355 | 2 356 | ], 357 | [ 358 | 2, 359 | 2, 360 | 2, 361 | 2, 362 | 2, 363 | 2, 364 | 2, 365 | 2, 366 | 2, 367 | 2, 368 | 2, 369 | 2 370 | ] 371 | ], 372 | "rule_severities": { 373 | "bus_definition_conflict": "error", 374 | "bus_entry_needed": "error", 375 | "bus_label_syntax": "error", 376 | "bus_to_bus_conflict": "error", 377 | "bus_to_net_conflict": "error", 378 | "different_unit_footprint": "error", 379 | "different_unit_net": "error", 380 | "duplicate_reference": "error", 381 | "duplicate_sheet_names": "error", 382 | "extra_units": "error", 383 | "global_label_dangling": "warning", 384 | "hier_label_mismatch": "error", 385 | "label_dangling": "error", 386 | "lib_symbol_issues": "warning", 387 | "multiple_net_names": "warning", 388 | "net_not_bus_member": "warning", 389 | "no_connect_connected": "warning", 390 | "no_connect_dangling": "warning", 391 | "pin_not_connected": "error", 392 | "pin_not_driven": "error", 393 | "pin_to_pin": "warning", 394 | "power_pin_not_driven": "error", 395 | "similar_labels": "warning", 396 | "unannotated": "error", 397 | "unit_value_mismatch": "error", 398 | "unresolved_variable": "error", 399 | "wire_dangling": "error" 400 | } 401 | }, 402 | "libraries": { 403 | "pinned_footprint_libs": [], 404 | "pinned_symbol_libs": [] 405 | }, 406 | "meta": { 407 | "filename": "Tap_Photosensor_PCB.kicad_pro", 408 | "version": 1 409 | }, 410 | "net_settings": { 411 | "classes": [ 412 | { 413 | "bus_width": 12, 414 | "clearance": 0.2, 415 | "diff_pair_gap": 0.25, 416 | "diff_pair_via_gap": 0.25, 417 | "diff_pair_width": 0.2, 418 | "line_style": 0, 419 | "microvia_diameter": 0.3, 420 | "microvia_drill": 0.1, 421 | "name": "Default", 422 | "pcb_color": "rgba(0, 0, 0, 0.000)", 423 | "schematic_color": "rgba(0, 0, 0, 0.000)", 424 | "track_width": 0.25, 425 | "via_diameter": 0.8, 426 | "via_drill": 0.4, 427 | "wire_width": 6 428 | } 429 | ], 430 | "meta": { 431 | "version": 3 432 | }, 433 | "net_colors": null, 434 | "netclass_assignments": null, 435 | "netclass_patterns": [] 436 | }, 437 | "pcbnew": { 438 | "last_paths": { 439 | "gencad": "", 440 | "idf": "", 441 | "netlist": "", 442 | "specctra_dsn": "", 443 | "step": "Tap_Photosensor_PCB_Short_ee-sx.STEP", 444 | "vrml": "" 445 | }, 446 | "page_layout_descr_file": "" 447 | }, 448 | "schematic": { 449 | "annotate_start_num": 0, 450 | "drawing": { 451 | "default_line_thickness": 6.0, 452 | "default_text_size": 50.0, 453 | "field_names": [], 454 | "intersheets_ref_own_page": false, 455 | "intersheets_ref_prefix": "", 456 | "intersheets_ref_short": false, 457 | "intersheets_ref_show": false, 458 | "intersheets_ref_suffix": "", 459 | "junction_size_choice": 3, 460 | "label_size_ratio": 0.375, 461 | "pin_symbol_size": 25.0, 462 | "text_offset_ratio": 0.15 463 | }, 464 | "legacy_lib_dir": "", 465 | "legacy_lib_list": [], 466 | "meta": { 467 | "version": 1 468 | }, 469 | "net_format_name": "", 470 | "ngspice": { 471 | "fix_include_paths": true, 472 | "fix_passive_vals": false, 473 | "meta": { 474 | "version": 0 475 | }, 476 | "model_mode": 0, 477 | "workbook_filename": "" 478 | }, 479 | "page_layout_descr_file": "", 480 | "plot_directory": "", 481 | "spice_adjust_passive_values": false, 482 | "spice_external_command": "spice \"%I\"", 483 | "subpart_first_id": 65, 484 | "subpart_id_separator": 0 485 | }, 486 | "sheets": [ 487 | [ 488 | "0ac6eaa6-e485-4cbc-b2bb-b102a789fc17", 489 | "" 490 | ] 491 | ], 492 | "text_variables": {} 493 | } 494 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-CuBottom.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:10:56-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Copper,L2,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:10:56* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMHorizOval* 16 | 0 Thick line with rounded ends* 17 | 0 $1 width* 18 | 0 $2 $3 position (X,Y) of the first rounded end (center of the circle)* 19 | 0 $4 $5 position (X,Y) of the second rounded end (center of the circle)* 20 | 0 Add line between two ends* 21 | 20,1,$1,$2,$3,$4,$5,0* 22 | 0 Add two circle primitives to create the rounded ends* 23 | 1,1,$1,$2,$3* 24 | 1,1,$1,$4,$5*% 25 | G04 Aperture macros list end* 26 | %TA.AperFunction,ComponentPad*% 27 | %ADD10R,1.700000X1.700000*% 28 | %TD*% 29 | %TA.AperFunction,ComponentPad*% 30 | %ADD11R,1.782000X0.958000*% 31 | %TD*% 32 | %TA.AperFunction,ComponentPad*% 33 | %ADD12O,1.782000X0.958000*% 34 | %TD*% 35 | %TA.AperFunction,ComponentPad*% 36 | %ADD13HorizOval,0.955000X0.279101X-0.263011X-0.279101X0.263011X0*% 37 | %TD*% 38 | %TA.AperFunction,ComponentPad*% 39 | %ADD14HorizOval,0.955000X0.279101X0.263011X-0.279101X-0.263011X0*% 40 | %TD*% 41 | %TA.AperFunction,ViaPad*% 42 | %ADD15C,0.800000*% 43 | %TD*% 44 | %TA.AperFunction,Conductor*% 45 | %ADD16C,0.250000*% 46 | %TD*% 47 | G04 APERTURE END LIST* 48 | D10* 49 | %TO.P,J1,1,Pin_1*% 50 | %TO.N,GND*% 51 | X107799999Y-60199999D03* 52 | %TD*% 53 | %TO.P,J2,1,Pin_1*% 54 | %TO.N,SIG*% 55 | X112399999Y-60199999D03* 56 | %TD*% 57 | %TO.P,J3,1,Pin_1*% 58 | %TO.N,+5V*% 59 | X116999999Y-60199999D03* 60 | %TD*% 61 | D11* 62 | %TO.P,U1,1,A*% 63 | %TO.N,Net-(R2-Pad2)*% 64 | X108067999Y-66769999D03* 65 | D12* 66 | %TO.P,U1,2,K*% 67 | %TO.N,GND*% 68 | X108067999Y-64229999D03* 69 | D13* 70 | %TO.P,U1,3,V*% 71 | %TO.N,+5V*% 72 | X116731999Y-63846999D03* 73 | D12* 74 | %TO.P,U1,4,S*% 75 | %TO.N,SIG*% 76 | X116731999Y-65499999D03* 77 | D14* 78 | %TO.P,U1,5,G*% 79 | %TO.N,GND*% 80 | X116731999Y-67152999D03* 81 | %TD*% 82 | D15* 83 | %TO.N,GND*% 84 | X114808000Y-61722000D03* 85 | X110200000Y-61900000D03* 86 | X120725000Y-60375000D03* 87 | X113200500Y-65301763D03* 88 | X105100000Y-60650000D03* 89 | %TD*% 90 | D16* 91 | %TO.N,SIG*% 92 | X112400000Y-61435000D02* 93 | X112400000Y-60200000D01* 94 | X116465000Y-65500000D02* 95 | X112400000Y-61435000D01* 96 | %TD*% 97 | %TA.AperFunction,Conductor*% 98 | %TO.N,GND*% 99 | G36* 100 | X118225617Y-58511424D02* 101 | G01* 102 | X119107083Y-58904510D01* 103 | X122429632Y-60386187D01* 104 | X122616717Y-60470590D01* 105 | X123760010Y-60986386D01* 106 | X123758863Y-60988926D01* 107 | X123759398Y-60989175D01* 108 | X123760538Y-60986624D01* 109 | X123854744Y-61028701D01* 110 | X123855195Y-61028904D01* 111 | X124150585Y-61162555D01* 112 | X124159774Y-61167176D01* 113 | X124316071Y-61253983D01* 114 | X124316327Y-61254125D01* 115 | X124317916Y-61255023D01* 116 | X124533005Y-61378593D01* 117 | X124540746Y-61383421D01* 118 | X124701179Y-61491746D01* 119 | X124703582Y-61493410D01* 120 | X124894199Y-61628928D01* 121 | X124900476Y-61633693D01* 122 | X125055089Y-61758928D01* 123 | X125058317Y-61761634D01* 124 | X125077620Y-61778381D01* 125 | X125231178Y-61911602D01* 126 | X125236114Y-61916120D01* 127 | X125380676Y-62055656D01* 128 | X125384532Y-62059543D01* 129 | X125541223Y-62224526D01* 130 | X125544906Y-62228577D01* 131 | X125676806Y-62380132D01* 132 | X125681063Y-62385294D01* 133 | X125821932Y-62565659D01* 134 | X125824491Y-62569053D01* 135 | X125941542Y-62729841D01* 136 | X125945980Y-62736356D01* 137 | X126005644Y-62830163D01* 138 | X126071529Y-62933752D01* 139 | X126073130Y-62936338D01* 140 | X126116680Y-63008605D01* 141 | X126124573Y-63024006D01* 142 | X126489812Y-63876228D01* 143 | X126500000Y-63925862D01* 144 | X126500000Y-67079054D01* 145 | X126491457Y-67124660D01* 146 | X126398357Y-67364433D01* 147 | X126395250Y-67371743D01* 148 | X126333828Y-67504474D01* 149 | X126332691Y-67506865D01* 150 | X126236911Y-67702927D01* 151 | X126234063Y-67708411D01* 152 | X126157934Y-67846622D01* 153 | X126155738Y-67850448D01* 154 | X126048288Y-68030319D01* 155 | X126045959Y-68034068D01* 156 | X125960331Y-68166632D01* 157 | X125956852Y-68171738D01* 158 | X125829644Y-68348963D01* 159 | X125828078Y-68351098D01* 160 | X125740289Y-68468134D01* 161 | X125735324Y-68474335D01* 162 | X125546723Y-68695264D01* 163 | X125546146Y-68695935D01* 164 | X125539302Y-68703839D01* 165 | X125496523Y-68735914D01* 166 | X125444293Y-68747360D01* 167 | X124341454Y-68749499D01* 168 | X99307896Y-68749499D01* 169 | X99255460Y-68738070D01* 170 | X99212540Y-68705858D01* 171 | X99205570Y-68697787D01* 172 | X99205248Y-68697412D01* 173 | X99005493Y-68462690D01* 174 | X99000362Y-68456245D01* 175 | X98911058Y-68336216D01* 176 | X98909442Y-68333994D01* 177 | X98776607Y-68147082D01* 178 | X98773054Y-68141803D01* 179 | X98685952Y-68005003D01* 180 | X98683564Y-68001097D01* 181 | X98615775Y-67885567D01* 182 | X98572279Y-67811439D01* 183 | X98570041Y-67807460D01* 184 | X98564973Y-67798056D01* 185 | X98493115Y-67664713D01* 186 | X98490243Y-67659044D01* 187 | X98391829Y-67451828D01* 188 | X98390692Y-67449365D01* 189 | X98388002Y-67443366D01* 190 | X98329468Y-67312851D01* 191 | X98326363Y-67305272D01* 192 | X98273640Y-67163557D01* 193 | X98265758Y-67122194D01* 194 | X98265359Y-67102658D01* 195 | X98234035Y-65567765D01* 196 | X100895788Y-65567765D01* 197 | X100896290Y-65572332D01* 198 | X100896291Y-65572344D01* 199 | X100924910Y-65832444D01* 200 | X100924911Y-65832453D01* 201 | X100925414Y-65837018D01* 202 | X100926576Y-65841463D01* 203 | X100926577Y-65841468D01* 204 | X100951587Y-65937132D01* 205 | X100993928Y-66099088D01* 206 | X100995725Y-66103318D01* 207 | X100995728Y-66103325D01* 208 | X101057424Y-66248506D01* 209 | X101099870Y-66348390D01* 210 | X101102265Y-66352315D01* 211 | X101102266Y-66352316D01* 212 | X101111758Y-66367870D01* 213 | X101240982Y-66579610D01* 214 | X101414255Y-66787820D01* 215 | X101486082Y-66852177D01* 216 | X101612561Y-66965503D01* 217 | X101612565Y-66965506D01* 218 | X101615998Y-66968582D01* 219 | X101841910Y-67118044D01* 220 | X102087176Y-67233020D01* 221 | X102346569Y-67311060D01* 222 | X102614561Y-67350500D01* 223 | X102815330Y-67350500D01* 224 | X102817631Y-67350500D01* 225 | X103020156Y-67335677D01* 226 | X103190918Y-67297638D01* 227 | X106668500Y-67297638D01* 228 | X106668859Y-67300985D01* 229 | X106668860Y-67300988D01* 230 | X106674168Y-67350367D01* 231 | X106674169Y-67350373D01* 232 | X106675011Y-67358201D01* 233 | X106677762Y-67365578D01* 234 | X106677763Y-67365580D01* 235 | X106722962Y-67486763D01* 236 | X106722964Y-67486766D01* 237 | X106726111Y-67495204D01* 238 | X106731508Y-67502414D01* 239 | X106731510Y-67502417D01* 240 | X106804627Y-67600089D01* 241 | X106813739Y-67612261D01* 242 | X106820950Y-67617659D01* 243 | X106876233Y-67659044D01* 244 | X106930796Y-67699889D01* 245 | X107067799Y-67750989D01* 246 | X107128362Y-67757500D01* 247 | X109004269Y-67757500D01* 248 | X109007638Y-67757500D01* 249 | X109068201Y-67750989D01* 250 | X109205204Y-67699889D01* 251 | X109322261Y-67612261D01* 252 | X109409889Y-67495204D01* 253 | X109438658Y-67418072D01* 254 | X115462944Y-67418072D01* 255 | X115481120Y-67604850D01* 256 | X115483624Y-67617306D01* 257 | X115539023Y-67796594D01* 258 | X115543989Y-67808305D01* 259 | X115634341Y-67972766D01* 260 | X115641558Y-67983232D01* 261 | X115763173Y-68126146D01* 262 | X115772351Y-68134946D01* 263 | X115920238Y-68250448D01* 264 | X115931002Y-68257222D01* 265 | X116099118Y-68340593D01* 266 | X116111013Y-68345057D01* 267 | X116292473Y-68392881D01* 268 | X116305037Y-68394861D01* 269 | X116460847Y-68403441D01* 270 | X116474311Y-68400487D01* 271 | X116478000Y-68387209D01* 272 | X116478000Y-68228248D01* 273 | X116986000Y-68228248D01* 274 | X116989075Y-68239558D01* 275 | X117000317Y-68236234D01* 276 | X117050400Y-68205318D01* 277 | X117060489Y-68197578D01* 278 | X117721018Y-67575128D01* 279 | X117725435Y-67570522D01* 280 | X117817491Y-67464226D01* 281 | X117824799Y-67453822D01* 282 | X117842989Y-67421382D01* 283 | X117845901Y-67410017D01* 284 | X117834567Y-67407000D01* 285 | X117002590Y-67407000D01* 286 | X116989506Y-67410506D01* 287 | X116986000Y-67423590D01* 288 | X116986000Y-68228248D01* 289 | X116478000Y-68228248D01* 290 | X116478000Y-67423590D01* 291 | X116474493Y-67410506D01* 292 | X116461410Y-67407000D01* 293 | X115478288Y-67407000D01* 294 | X115465657Y-67410147D01* 295 | X115462946Y-67417576D01* 296 | X115462944Y-67418072D01* 297 | X109438658Y-67418072D01* 298 | X109460989Y-67358201D01* 299 | X109467500Y-67297638D01* 300 | X109467500Y-66242362D01* 301 | X109460989Y-66181799D01* 302 | X109409889Y-66044796D01* 303 | X109395104Y-66025046D01* 304 | X109333353Y-65942556D01* 305 | X109322261Y-65927739D01* 306 | X109219041Y-65850469D01* 307 | X109212417Y-65845510D01* 308 | X109212414Y-65845508D01* 309 | X109205204Y-65840111D01* 310 | X109196766Y-65836964D01* 311 | X109196763Y-65836962D01* 312 | X109075580Y-65791763D01* 313 | X109075578Y-65791762D01* 314 | X109068201Y-65789011D01* 315 | X109060373Y-65788169D01* 316 | X109060367Y-65788168D01* 317 | X109010988Y-65782860D01* 318 | X109010985Y-65782859D01* 319 | X109007638Y-65782500D01* 320 | X107128362Y-65782500D01* 321 | X107125015Y-65782859D01* 322 | X107125011Y-65782860D01* 323 | X107075632Y-65788168D01* 324 | X107075625Y-65788169D01* 325 | X107067799Y-65789011D01* 326 | X107060423Y-65791761D01* 327 | X107060419Y-65791763D01* 328 | X106939236Y-65836962D01* 329 | X106939230Y-65836965D01* 330 | X106930796Y-65840111D01* 331 | X106923588Y-65845506D01* 332 | X106923582Y-65845510D01* 333 | X106820950Y-65922340D01* 334 | X106820946Y-65922343D01* 335 | X106813739Y-65927739D01* 336 | X106808343Y-65934946D01* 337 | X106808340Y-65934950D01* 338 | X106731510Y-66037582D01* 339 | X106731506Y-66037588D01* 340 | X106726111Y-66044796D01* 341 | X106722965Y-66053230D01* 342 | X106722962Y-66053236D01* 343 | X106677763Y-66174419D01* 344 | X106677761Y-66174423D01* 345 | X106675011Y-66181799D01* 346 | X106674169Y-66189625D01* 347 | X106674168Y-66189632D01* 348 | X106668860Y-66239011D01* 349 | X106668500Y-66242362D01* 350 | X106668500Y-67297638D01* 351 | X103190918Y-67297638D01* 352 | X103284553Y-67276780D01* 353 | X103537558Y-67180014D01* 354 | X103773777Y-67047441D01* 355 | X103988177Y-66881888D01* 356 | X104176186Y-66686881D01* 357 | X104333799Y-66466579D01* 358 | X104457656Y-66225675D01* 359 | X104545118Y-65969305D01* 360 | X104594319Y-65702933D01* 361 | X104604212Y-65432235D01* 362 | X104574586Y-65162982D01* 363 | X104506072Y-64900912D01* 364 | X104400130Y-64651610D01* 365 | X104299526Y-64486765D01* 366 | X106701526Y-64486765D01* 367 | X106702845Y-64498287D01* 368 | X106763078Y-64660919D01* 369 | X106768677Y-64672334D01* 370 | X106868099Y-64831842D01* 371 | X106875880Y-64841893D01* 372 | X107005380Y-64978127D01* 373 | X107015022Y-64986404D01* 374 | X107169289Y-65093778D01* 375 | X107180410Y-65099951D01* 376 | X107353131Y-65174071D01* 377 | X107365265Y-65177878D01* 378 | X107549371Y-65215713D01* 379 | X107562025Y-65217000D01* 380 | X107797410Y-65217000D01* 381 | X107810493Y-65213493D01* 382 | X107814000Y-65200410D01* 383 | X108322000Y-65200410D01* 384 | X108325506Y-65213493D01* 385 | X108338590Y-65217000D01* 386 | X108526854Y-65217000D01* 387 | X108533233Y-65216676D01* 388 | X108673352Y-65202428D01* 389 | X108685799Y-65199870D01* 390 | X108865146Y-65143599D01* 391 | X108876823Y-65138588D01* 392 | X109041157Y-65047374D01* 393 | X109051597Y-65040108D01* 394 | X109194217Y-64917674D01* 395 | X109202968Y-64908468D01* 396 | X109318016Y-64759836D01* 397 | X109324747Y-64749037D01* 398 | X109407521Y-64580294D01* 399 | X109411935Y-64568374D01* 400 | X109430165Y-64497967D01* 401 | X109430454Y-64486575D01* 402 | X109419356Y-64484000D01* 403 | X108338590Y-64484000D01* 404 | X108325506Y-64487506D01* 405 | X108322000Y-64500590D01* 406 | X108322000Y-65200410D01* 407 | X107814000Y-65200410D01* 408 | X107814000Y-64500590D01* 409 | X107810493Y-64487506D01* 410 | X107797410Y-64484000D01* 411 | X106712792Y-64484000D01* 412 | X106701526Y-64486765D01* 413 | X104299526Y-64486765D01* 414 | X104259018Y-64420390D01* 415 | X104085745Y-64212180D01* 416 | X104010137Y-64144435D01* 417 | X103887438Y-64034496D01* 418 | X103887432Y-64034491D01* 419 | X103884002Y-64031418D01* 420 | X103796344Y-63973424D01* 421 | X106705545Y-63973424D01* 422 | X106716644Y-63976000D01* 423 | X107797410Y-63976000D01* 424 | X107810493Y-63972493D01* 425 | X107814000Y-63959410D01* 426 | X108322000Y-63959410D01* 427 | X108325506Y-63972493D01* 428 | X108338590Y-63976000D01* 429 | X109423208Y-63976000D01* 430 | X109434473Y-63973234D01* 431 | X109433154Y-63961712D01* 432 | X109372921Y-63799080D01* 433 | X109367322Y-63787665D01* 434 | X109267900Y-63628157D01* 435 | X109260119Y-63618106D01* 436 | X109130619Y-63481872D01* 437 | X109120977Y-63473595D01* 438 | X108966710Y-63366221D01* 439 | X108955589Y-63360048D01* 440 | X108782868Y-63285928D01* 441 | X108770734Y-63282121D01* 442 | X108586628Y-63244286D01* 443 | X108573975Y-63243000D01* 444 | X108338590Y-63243000D01* 445 | X108325506Y-63246506D01* 446 | X108322000Y-63259590D01* 447 | X108322000Y-63959410D01* 448 | X107814000Y-63959410D01* 449 | X107814000Y-63259590D01* 450 | X107810493Y-63246506D01* 451 | X107797410Y-63243000D01* 452 | X107609146Y-63243000D01* 453 | X107602766Y-63243323D01* 454 | X107462647Y-63257571D01* 455 | X107450200Y-63260129D01* 456 | X107270853Y-63316400D01* 457 | X107259176Y-63321411D01* 458 | X107094842Y-63412625D01* 459 | X107084402Y-63419891D01* 460 | X106941782Y-63542325D01* 461 | X106933031Y-63551531D01* 462 | X106817983Y-63700163D01* 463 | X106811252Y-63710962D01* 464 | X106728478Y-63879705D01* 465 | X106724064Y-63891625D01* 466 | X106705834Y-63962032D01* 467 | X106705545Y-63973424D01* 468 | X103796344Y-63973424D01* 469 | X103724454Y-63925862D01* 470 | X103661925Y-63884493D01* 471 | X103661922Y-63884491D01* 472 | X103658090Y-63881956D01* 473 | X103412824Y-63766980D01* 474 | X103408420Y-63765655D01* 475 | X103157843Y-63690267D01* 476 | X103157838Y-63690265D01* 477 | X103153431Y-63688940D01* 478 | X103148874Y-63688269D01* 479 | X103148868Y-63688268D01* 480 | X102890000Y-63650171D01* 481 | X102889996Y-63650170D01* 482 | X102885439Y-63649500D01* 483 | X102682369Y-63649500D01* 484 | X102680098Y-63649666D01* 485 | X102680076Y-63649667D01* 486 | X102484438Y-63663986D01* 487 | X102484427Y-63663987D01* 488 | X102479844Y-63664323D01* 489 | X102475353Y-63665323D01* 490 | X102475349Y-63665324D01* 491 | X102219939Y-63722219D01* 492 | X102219934Y-63722220D01* 493 | X102215447Y-63723220D01* 494 | X102211149Y-63724863D01* 495 | X102211145Y-63724865D01* 496 | X101966746Y-63818339D01* 497 | X101966735Y-63818343D01* 498 | X101962442Y-63819986D01* 499 | X101958434Y-63822235D01* 500 | X101958422Y-63822241D01* 501 | X101730232Y-63950308D01* 502 | X101730221Y-63950314D01* 503 | X101726223Y-63952559D01* 504 | X101722589Y-63955364D01* 505 | X101722586Y-63955367D01* 506 | X101515466Y-64115298D01* 507 | X101515458Y-64115305D01* 508 | X101511823Y-64118112D01* 509 | X101508632Y-64121421D01* 510 | X101508625Y-64121428D01* 511 | X101327011Y-64309802D01* 512 | X101327004Y-64309809D01* 513 | X101323814Y-64313119D01* 514 | X101321136Y-64316861D01* 515 | X101321131Y-64316868D01* 516 | X101168885Y-64529668D01* 517 | X101168878Y-64529677D01* 518 | X101166201Y-64533421D01* 519 | X101164097Y-64537512D01* 520 | X101164091Y-64537523D01* 521 | X101055345Y-64749037D01* 522 | X101042344Y-64774325D01* 523 | X101040856Y-64778684D01* 524 | X101040854Y-64778691D01* 525 | X100956371Y-65026327D01* 526 | X100956367Y-65026341D01* 527 | X100954882Y-65030695D01* 528 | X100954044Y-65035228D01* 529 | X100954044Y-65035231D01* 530 | X100906517Y-65292537D01* 531 | X100906515Y-65292546D01* 532 | X100905681Y-65297067D01* 533 | X100905513Y-65301656D01* 534 | X100905512Y-65301668D01* 535 | X100895956Y-65563161D01* 536 | X100895788Y-65567765D01* 537 | X98234035Y-65567765D01* 538 | X98200938Y-63945969D01* 539 | X98207690Y-63902629D01* 540 | X98228888Y-63864232D01* 541 | X100264605Y-61343820D01* 542 | X100299643Y-61313863D01* 543 | X100403399Y-61253983D01* 544 | X100414512Y-61248283D01* 545 | X100731306Y-61105215D01* 546 | X105950000Y-61105215D01* 547 | X105950246Y-61110781D01* 548 | X105960078Y-61221362D01* 549 | X105962256Y-61233087D01* 550 | X106014799Y-61416717D01* 551 | X106019519Y-61428533D01* 552 | X106107759Y-61597458D01* 553 | X106114763Y-61608087D01* 554 | X106235214Y-61755807D01* 555 | X106244192Y-61764785D01* 556 | X106391912Y-61885236D01* 557 | X106402541Y-61892240D01* 558 | X106571466Y-61980480D01* 559 | X106583282Y-61985200D01* 560 | X106766912Y-62037743D01* 561 | X106778637Y-62039921D01* 562 | X106889218Y-62049753D01* 563 | X106894785Y-62050000D01* 564 | X107529410Y-62050000D01* 565 | X107542493Y-62046493D01* 566 | X107546000Y-62033410D01* 567 | X108054000Y-62033410D01* 568 | X108057506Y-62046493D01* 569 | X108070590Y-62050000D01* 570 | X108705215Y-62050000D01* 571 | X108710781Y-62049753D01* 572 | X108821362Y-62039921D01* 573 | X108833087Y-62037743D01* 574 | X109016717Y-61985200D01* 575 | X109028533Y-61980480D01* 576 | X109197458Y-61892240D01* 577 | X109208087Y-61885236D01* 578 | X109355807Y-61764785D01* 579 | X109364785Y-61755807D01* 580 | X109485236Y-61608087D01* 581 | X109492240Y-61597458D01* 582 | X109580480Y-61428533D01* 583 | X109585200Y-61416717D01* 584 | X109637743Y-61233087D01* 585 | X109639921Y-61221362D01* 586 | X109649753Y-61110781D01* 587 | X109650000Y-61105215D01* 588 | X109650000Y-61098638D01* 589 | X111041500Y-61098638D01* 590 | X111041859Y-61101985D01* 591 | X111041860Y-61101988D01* 592 | X111047168Y-61151367D01* 593 | X111047169Y-61151373D01* 594 | X111048011Y-61159201D01* 595 | X111050762Y-61166578D01* 596 | X111050763Y-61166580D01* 597 | X111095962Y-61287763D01* 598 | X111095964Y-61287766D01* 599 | X111099111Y-61296204D01* 600 | X111104508Y-61303414D01* 601 | X111104510Y-61303417D01* 602 | X111160787Y-61378593D01* 603 | X111186739Y-61413261D01* 604 | X111193950Y-61418659D01* 605 | X111291535Y-61491711D01* 606 | X111303796Y-61500889D01* 607 | X111440799Y-61551989D01* 608 | X111501362Y-61558500D01* 609 | X111681582Y-61558500D01* 610 | X111734033Y-61569936D01* 611 | X111776962Y-61602168D01* 612 | X111802578Y-61649345D01* 613 | X111811769Y-61680980D01* 614 | X111811772Y-61680988D01* 615 | X111813982Y-61688593D01* 616 | X111818014Y-61695411D01* 617 | X111818015Y-61695413D01* 618 | X111824293Y-61706029D01* 619 | X111832990Y-61723782D01* 620 | X111840448Y-61742617D01* 621 | X111845107Y-61749030D01* 622 | X111845108Y-61749031D01* 623 | X111866432Y-61778381D01* 624 | X111872948Y-61788301D01* 625 | X111891422Y-61819538D01* 626 | X111895458Y-61826362D01* 627 | X111901062Y-61831966D01* 628 | X111901063Y-61831967D01* 629 | X111909778Y-61840682D01* 630 | X111922618Y-61855715D01* 631 | X111934528Y-61872107D01* 632 | X111940635Y-61877159D01* 633 | X111940636Y-61877160D01* 634 | X111968598Y-61900292D01* 635 | X111977378Y-61908282D01* 636 | X115304926Y-65235831D01* 637 | X115335564Y-65285684D01* 638 | X115340366Y-65343848D01* 639 | X115338853Y-65349694D01* 640 | X115338529Y-65356077D01* 641 | X115338529Y-65356079D01* 642 | X115329004Y-65543893D01* 643 | X115329004Y-65543898D01* 644 | X115328681Y-65550274D01* 645 | X115359093Y-65748796D01* 646 | X115361310Y-65754783D01* 647 | X115361312Y-65754789D01* 648 | X115426624Y-65931137D01* 649 | X115426626Y-65931142D01* 650 | X115428845Y-65937132D01* 651 | X115432226Y-65942556D01* 652 | X115529793Y-66099088D01* 653 | X115535082Y-66107572D01* 654 | X115539482Y-66112201D01* 655 | X115539483Y-66112202D01* 656 | X115647347Y-66225675D01* 657 | X115673452Y-66253138D01* 658 | X115678698Y-66256789D01* 659 | X115678699Y-66256790D01* 660 | X115833048Y-66364220D01* 661 | X115833052Y-66364222D01* 662 | X115838293Y-66367870D01* 663 | X115860959Y-66377596D01* 664 | X115910008Y-66415110D01* 665 | X115935343Y-66471424D01* 666 | X115930878Y-66533014D01* 667 | X115897686Y-66585085D01* 668 | X115742972Y-66730880D01* 669 | X115738564Y-66735477D01* 670 | X115646508Y-66841773D01* 671 | X115639200Y-66852177D01* 672 | X115621010Y-66884617D01* 673 | X115618098Y-66895982D01* 674 | X115629433Y-66899000D01* 675 | X117985712Y-66899000D01* 676 | X117998342Y-66895852D01* 677 | X118001053Y-66888423D01* 678 | X118001055Y-66887927D01* 679 | X117982879Y-66701149D01* 680 | X117980375Y-66688693D01* 681 | X117924976Y-66509405D01* 682 | X117920010Y-66497694D01* 683 | X117833968Y-66341078D01* 684 | X117818543Y-66286410D01* 685 | X117828696Y-66230523D01* 686 | X117855577Y-66193995D01* 687 | X117854172Y-66192660D01* 688 | X117858578Y-66188023D01* 689 | X117863424Y-66183864D01* 690 | X117986358Y-66025046D01* 691 | X118074806Y-65844733D01* 692 | X118125147Y-65650306D01* 693 | X118129333Y-65567765D01* 694 | X120145788Y-65567765D01* 695 | X120146290Y-65572332D01* 696 | X120146291Y-65572344D01* 697 | X120174910Y-65832444D01* 698 | X120174911Y-65832453D01* 699 | X120175414Y-65837018D01* 700 | X120176576Y-65841463D01* 701 | X120176577Y-65841468D01* 702 | X120201587Y-65937132D01* 703 | X120243928Y-66099088D01* 704 | X120245725Y-66103318D01* 705 | X120245728Y-66103325D01* 706 | X120307424Y-66248506D01* 707 | X120349870Y-66348390D01* 708 | X120352265Y-66352315D01* 709 | X120352266Y-66352316D01* 710 | X120361758Y-66367870D01* 711 | X120490982Y-66579610D01* 712 | X120664255Y-66787820D01* 713 | X120736082Y-66852177D01* 714 | X120862561Y-66965503D01* 715 | X120862565Y-66965506D01* 716 | X120865998Y-66968582D01* 717 | X121091910Y-67118044D01* 718 | X121337176Y-67233020D01* 719 | X121596569Y-67311060D01* 720 | X121864561Y-67350500D01* 721 | X122065330Y-67350500D01* 722 | X122067631Y-67350500D01* 723 | X122270156Y-67335677D01* 724 | X122534553Y-67276780D01* 725 | X122787558Y-67180014D01* 726 | X123023777Y-67047441D01* 727 | X123238177Y-66881888D01* 728 | X123426186Y-66686881D01* 729 | X123583799Y-66466579D01* 730 | X123707656Y-66225675D01* 731 | X123795118Y-65969305D01* 732 | X123844319Y-65702933D01* 733 | X123854212Y-65432235D01* 734 | X123824586Y-65162982D01* 735 | X123756072Y-64900912D01* 736 | X123650130Y-64651610D01* 737 | X123509018Y-64420390D01* 738 | X123335745Y-64212180D01* 739 | X123260137Y-64144435D01* 740 | X123137438Y-64034496D01* 741 | X123137432Y-64034491D01* 742 | X123134002Y-64031418D01* 743 | X122974454Y-63925862D01* 744 | X122911925Y-63884493D01* 745 | X122911922Y-63884491D01* 746 | X122908090Y-63881956D01* 747 | X122662824Y-63766980D01* 748 | X122658420Y-63765655D01* 749 | X122407843Y-63690267D01* 750 | X122407838Y-63690265D01* 751 | X122403431Y-63688940D01* 752 | X122398874Y-63688269D01* 753 | X122398868Y-63688268D01* 754 | X122140000Y-63650171D01* 755 | X122139996Y-63650170D01* 756 | X122135439Y-63649500D01* 757 | X121932369Y-63649500D01* 758 | X121930098Y-63649666D01* 759 | X121930076Y-63649667D01* 760 | X121734438Y-63663986D01* 761 | X121734427Y-63663987D01* 762 | X121729844Y-63664323D01* 763 | X121725353Y-63665323D01* 764 | X121725349Y-63665324D01* 765 | X121469939Y-63722219D01* 766 | X121469934Y-63722220D01* 767 | X121465447Y-63723220D01* 768 | X121461149Y-63724863D01* 769 | X121461145Y-63724865D01* 770 | X121216746Y-63818339D01* 771 | X121216735Y-63818343D01* 772 | X121212442Y-63819986D01* 773 | X121208434Y-63822235D01* 774 | X121208422Y-63822241D01* 775 | X120980232Y-63950308D01* 776 | X120980221Y-63950314D01* 777 | X120976223Y-63952559D01* 778 | X120972589Y-63955364D01* 779 | X120972586Y-63955367D01* 780 | X120765466Y-64115298D01* 781 | X120765458Y-64115305D01* 782 | X120761823Y-64118112D01* 783 | X120758632Y-64121421D01* 784 | X120758625Y-64121428D01* 785 | X120577011Y-64309802D01* 786 | X120577004Y-64309809D01* 787 | X120573814Y-64313119D01* 788 | X120571136Y-64316861D01* 789 | X120571131Y-64316868D01* 790 | X120418885Y-64529668D01* 791 | X120418878Y-64529677D01* 792 | X120416201Y-64533421D01* 793 | X120414097Y-64537512D01* 794 | X120414091Y-64537523D01* 795 | X120305345Y-64749037D01* 796 | X120292344Y-64774325D01* 797 | X120290856Y-64778684D01* 798 | X120290854Y-64778691D01* 799 | X120206371Y-65026327D01* 800 | X120206367Y-65026341D01* 801 | X120204882Y-65030695D01* 802 | X120204044Y-65035228D01* 803 | X120204044Y-65035231D01* 804 | X120156517Y-65292537D01* 805 | X120156515Y-65292546D01* 806 | X120155681Y-65297067D01* 807 | X120155513Y-65301656D01* 808 | X120155512Y-65301668D01* 809 | X120145956Y-65563161D01* 810 | X120145788Y-65567765D01* 811 | X118129333Y-65567765D01* 812 | X118135319Y-65449726D01* 813 | X118104907Y-65251204D01* 814 | X118035155Y-65062868D01* 815 | X117928918Y-64892428D01* 816 | X117848903Y-64808252D01* 817 | X117820061Y-64759336D01* 818 | X117815626Y-64702722D01* 819 | X117836499Y-64649914D01* 820 | X117879731Y-64587225D01* 821 | X117958012Y-64402603D01* 822 | X117997527Y-64206001D01* 823 | X117996657Y-64005470D01* 824 | X117955439Y-63809219D01* 825 | X117946078Y-63787665D01* 826 | X117936520Y-63765655D01* 827 | X117875559Y-63625283D01* 828 | X117760288Y-63461191D01* 829 | X117092724Y-62832111D01* 830 | X116973495Y-62740645D01* 831 | X116967747Y-62737856D01* 832 | X116967745Y-62737855D01* 833 | X116798822Y-62655901D01* 834 | X116798820Y-62655900D01* 835 | X116793075Y-62653113D01* 836 | X116754263Y-62643243D01* 837 | X116604919Y-62605266D01* 838 | X116604915Y-62605265D01* 839 | X116598728Y-62603692D01* 840 | X116592345Y-62603396D01* 841 | X116404788Y-62594698D01* 842 | X116404780Y-62594698D01* 843 | X116398410Y-62594403D01* 844 | X116392106Y-62595396D01* 845 | X116392100Y-62595397D01* 846 | X116206632Y-62624633D01* 847 | X116206627Y-62624634D01* 848 | X116200323Y-62625628D01* 849 | X116194352Y-62627868D01* 850 | X116194344Y-62627871D01* 851 | X116018556Y-62693844D01* 852 | X116018547Y-62693848D01* 853 | X116012577Y-62696089D01* 854 | X116007176Y-62699487D01* 855 | X116007170Y-62699491D01* 856 | X115868356Y-62786854D01* 857 | X115842858Y-62802901D01* 858 | X115838252Y-62807316D01* 859 | X115838246Y-62807322D01* 860 | X115702719Y-62937273D01* 861 | X115702716Y-62937275D01* 862 | X115698113Y-62941690D01* 863 | X115694493Y-62946938D01* 864 | X115694489Y-62946944D01* 865 | X115587900Y-63101510D01* 866 | X115587897Y-63101515D01* 867 | X115584270Y-63106775D01* 868 | X115581776Y-63112655D01* 869 | X115581773Y-63112662D01* 870 | X115508481Y-63285518D01* 871 | X115505988Y-63291398D01* 872 | X115504731Y-63297649D01* 873 | X115504727Y-63297664D01* 874 | X115493135Y-63355340D01* 875 | X115462838Y-63415268D01* 876 | X115406061Y-63451122D01* 877 | X115338929Y-63452720D01* 878 | X115280511Y-63419606D01* 879 | X113522157Y-61661252D01* 880 | X113493196Y-61616189D01* 881 | X113485573Y-61563168D01* 882 | X113500665Y-61511771D01* 883 | X113535739Y-61471292D01* 884 | X113613261Y-61413261D01* 885 | X113700889Y-61296204D01* 886 | X113751989Y-61159201D01* 887 | X113758500Y-61098638D01* 888 | X115641500Y-61098638D01* 889 | X115641859Y-61101985D01* 890 | X115641860Y-61101988D01* 891 | X115647168Y-61151367D01* 892 | X115647169Y-61151373D01* 893 | X115648011Y-61159201D01* 894 | X115650762Y-61166578D01* 895 | X115650763Y-61166580D01* 896 | X115695962Y-61287763D01* 897 | X115695964Y-61287766D01* 898 | X115699111Y-61296204D01* 899 | X115704508Y-61303414D01* 900 | X115704510Y-61303417D01* 901 | X115760787Y-61378593D01* 902 | X115786739Y-61413261D01* 903 | X115793950Y-61418659D01* 904 | X115891535Y-61491711D01* 905 | X115903796Y-61500889D01* 906 | X116040799Y-61551989D01* 907 | X116101362Y-61558500D01* 908 | X117895269Y-61558500D01* 909 | X117898638Y-61558500D01* 910 | X117959201Y-61551989D01* 911 | X118096204Y-61500889D01* 912 | X118213261Y-61413261D01* 913 | X118300889Y-61296204D01* 914 | X118351989Y-61159201D01* 915 | X118358500Y-61098638D01* 916 | X118358500Y-59301362D01* 917 | X118351989Y-59240799D01* 918 | X118300889Y-59103796D01* 919 | X118213261Y-58986739D01* 920 | X118179836Y-58961717D01* 921 | X118103417Y-58904510D01* 922 | X118103414Y-58904508D01* 923 | X118096204Y-58899111D01* 924 | X118087766Y-58895964D01* 925 | X118087763Y-58895962D01* 926 | X117966580Y-58850763D01* 927 | X117966578Y-58850762D01* 928 | X117959201Y-58848011D01* 929 | X117951373Y-58847169D01* 930 | X117951367Y-58847168D01* 931 | X117901988Y-58841860D01* 932 | X117901985Y-58841859D01* 933 | X117898638Y-58841500D01* 934 | X116101362Y-58841500D01* 935 | X116098015Y-58841859D01* 936 | X116098011Y-58841860D01* 937 | X116048632Y-58847168D01* 938 | X116048625Y-58847169D01* 939 | X116040799Y-58848011D01* 940 | X116033423Y-58850761D01* 941 | X116033419Y-58850763D01* 942 | X115912236Y-58895962D01* 943 | X115912230Y-58895965D01* 944 | X115903796Y-58899111D01* 945 | X115896588Y-58904506D01* 946 | X115896582Y-58904510D01* 947 | X115793950Y-58981340D01* 948 | X115793946Y-58981343D01* 949 | X115786739Y-58986739D01* 950 | X115781343Y-58993946D01* 951 | X115781340Y-58993950D01* 952 | X115704510Y-59096582D01* 953 | X115704506Y-59096588D01* 954 | X115699111Y-59103796D01* 955 | X115695965Y-59112230D01* 956 | X115695962Y-59112236D01* 957 | X115650763Y-59233419D01* 958 | X115650761Y-59233423D01* 959 | X115648011Y-59240799D01* 960 | X115647169Y-59248625D01* 961 | X115647168Y-59248632D01* 962 | X115642207Y-59294785D01* 963 | X115641500Y-59301362D01* 964 | X115641500Y-61098638D01* 965 | X113758500Y-61098638D01* 966 | X113758500Y-59301362D01* 967 | X113751989Y-59240799D01* 968 | X113700889Y-59103796D01* 969 | X113613261Y-58986739D01* 970 | X113579836Y-58961717D01* 971 | X113503417Y-58904510D01* 972 | X113503414Y-58904508D01* 973 | X113496204Y-58899111D01* 974 | X113487766Y-58895964D01* 975 | X113487763Y-58895962D01* 976 | X113366580Y-58850763D01* 977 | X113366578Y-58850762D01* 978 | X113359201Y-58848011D01* 979 | X113351373Y-58847169D01* 980 | X113351367Y-58847168D01* 981 | X113301988Y-58841860D01* 982 | X113301985Y-58841859D01* 983 | X113298638Y-58841500D01* 984 | X111501362Y-58841500D01* 985 | X111498015Y-58841859D01* 986 | X111498011Y-58841860D01* 987 | X111448632Y-58847168D01* 988 | X111448625Y-58847169D01* 989 | X111440799Y-58848011D01* 990 | X111433423Y-58850761D01* 991 | X111433419Y-58850763D01* 992 | X111312236Y-58895962D01* 993 | X111312230Y-58895965D01* 994 | X111303796Y-58899111D01* 995 | X111296588Y-58904506D01* 996 | X111296582Y-58904510D01* 997 | X111193950Y-58981340D01* 998 | X111193946Y-58981343D01* 999 | X111186739Y-58986739D01* 1000 | X111181343Y-58993946D01* 1001 | X111181340Y-58993950D01* 1002 | X111104510Y-59096582D01* 1003 | X111104506Y-59096588D01* 1004 | X111099111Y-59103796D01* 1005 | X111095965Y-59112230D01* 1006 | X111095962Y-59112236D01* 1007 | X111050763Y-59233419D01* 1008 | X111050761Y-59233423D01* 1009 | X111048011Y-59240799D01* 1010 | X111047169Y-59248625D01* 1011 | X111047168Y-59248632D01* 1012 | X111042207Y-59294785D01* 1013 | X111041500Y-59301362D01* 1014 | X111041500Y-61098638D01* 1015 | X109650000Y-61098638D01* 1016 | X109650000Y-60470590D01* 1017 | X109646493Y-60457506D01* 1018 | X109633410Y-60454000D01* 1019 | X108070590Y-60454000D01* 1020 | X108057506Y-60457506D01* 1021 | X108054000Y-60470590D01* 1022 | X108054000Y-62033410D01* 1023 | X107546000Y-62033410D01* 1024 | X107546000Y-60470590D01* 1025 | X107542493Y-60457506D01* 1026 | X107529410Y-60454000D01* 1027 | X105966590Y-60454000D01* 1028 | X105953506Y-60457506D01* 1029 | X105950000Y-60470590D01* 1030 | X105950000Y-61105215D01* 1031 | X100731306Y-61105215D01* 1032 | X105861072Y-58788547D01* 1033 | X105921879Y-58777699D01* 1034 | X105980537Y-58797054D01* 1035 | X106022947Y-58841961D01* 1036 | X106038919Y-58901629D01* 1037 | X106024613Y-58961717D01* 1038 | X106019518Y-58971469D01* 1039 | X106014799Y-58983282D01* 1040 | X105962256Y-59166912D01* 1041 | X105960078Y-59178637D01* 1042 | X105950246Y-59289218D01* 1043 | X105950000Y-59294785D01* 1044 | X105950000Y-59929410D01* 1045 | X105953506Y-59942493D01* 1046 | X105966590Y-59946000D01* 1047 | X109633410Y-59946000D01* 1048 | X109646493Y-59942493D01* 1049 | X109650000Y-59929410D01* 1050 | X109650000Y-59294785D01* 1051 | X109649753Y-59289218D01* 1052 | X109639921Y-59178637D01* 1053 | X109637743Y-59166912D01* 1054 | X109585200Y-58983282D01* 1055 | X109580480Y-58971466D01* 1056 | X109492240Y-58802541D01* 1057 | X109485232Y-58791906D01* 1058 | X109415286Y-58706125D01* 1059 | X109387848Y-58641627D01* 1060 | X109399120Y-58572448D01* 1061 | X109445611Y-58519995D01* 1062 | X109512937Y-58500500D01* 1063 | X118174299Y-58500500D01* 1064 | X118225617Y-58511424D01* 1065 | G37* 1066 | %TD.AperFunction*% 1067 | %TD*% 1068 | M02* 1069 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-CuTop.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:10:56-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Copper,L1,Top*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:10:56* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | %AMHorizOval* 32 | 0 Thick line with rounded ends* 33 | 0 $1 width* 34 | 0 $2 $3 position (X,Y) of the first rounded end (center of the circle)* 35 | 0 $4 $5 position (X,Y) of the second rounded end (center of the circle)* 36 | 0 Add line between two ends* 37 | 20,1,$1,$2,$3,$4,$5,0* 38 | 0 Add two circle primitives to create the rounded ends* 39 | 1,1,$1,$2,$3* 40 | 1,1,$1,$4,$5*% 41 | %AMFreePoly0* 42 | 4,1,19,0.500000,-0.750000,0.000000,-0.750000,0.000000,-0.744911,-0.071157,-0.744911,-0.207708,-0.704816,-0.327430,-0.627875,-0.420627,-0.520320,-0.479746,-0.390866,-0.500000,-0.250000,-0.500000,0.250000,-0.479746,0.390866,-0.420627,0.520320,-0.327430,0.627875,-0.207708,0.704816,-0.071157,0.744911,0.000000,0.744911,0.000000,0.750000,0.500000,0.750000,0.500000,-0.750000,0.500000,-0.750000, 43 | $1*% 44 | %AMFreePoly1* 45 | 4,1,19,0.000000,0.744911,0.071157,0.744911,0.207708,0.704816,0.327430,0.627875,0.420627,0.520320,0.479746,0.390866,0.500000,0.250000,0.500000,-0.250000,0.479746,-0.390866,0.420627,-0.520320,0.327430,-0.627875,0.207708,-0.704816,0.071157,-0.744911,0.000000,-0.744911,0.000000,-0.750000,-0.500000,-0.750000,-0.500000,0.750000,0.000000,0.750000,0.000000,0.744911,0.000000,0.744911, 46 | $1*% 47 | G04 Aperture macros list end* 48 | %TA.AperFunction,SMDPad,CuDef*% 49 | %ADD10FreePoly0,90.000000*% 50 | %TD*% 51 | %TA.AperFunction,SMDPad,CuDef*% 52 | %ADD11FreePoly1,90.000000*% 53 | %TD*% 54 | %TA.AperFunction,ComponentPad*% 55 | %ADD12R,1.700000X1.700000*% 56 | %TD*% 57 | %TA.AperFunction,SMDPad,CuDef*% 58 | %ADD13RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 59 | %TD*% 60 | %TA.AperFunction,SMDPad,CuDef*% 61 | %ADD14R,0.700000X0.600000*% 62 | %TD*% 63 | %TA.AperFunction,ComponentPad*% 64 | %ADD15R,1.782000X0.958000*% 65 | %TD*% 66 | %TA.AperFunction,ComponentPad*% 67 | %ADD16O,1.782000X0.958000*% 68 | %TD*% 69 | %TA.AperFunction,ComponentPad*% 70 | %ADD17HorizOval,0.955000X0.279101X-0.263011X-0.279101X0.263011X0*% 71 | %TD*% 72 | %TA.AperFunction,ComponentPad*% 73 | %ADD18HorizOval,0.955000X0.279101X0.263011X-0.279101X-0.263011X0*% 74 | %TD*% 75 | %TA.AperFunction,ViaPad*% 76 | %ADD19C,0.800000*% 77 | %TD*% 78 | %TA.AperFunction,Conductor*% 79 | %ADD20C,0.250000*% 80 | %TD*% 81 | G04 APERTURE END LIST* 82 | %TO.C,JP1*% 83 | G36* 84 | X112700000Y-63950000D02* 85 | G01* 86 | X112100000Y-63950000D01* 87 | X112100000Y-63450000D01* 88 | X112700000Y-63450000D01* 89 | X112700000Y-63950000D01* 90 | G37* 91 | %TO.C,U1*% 92 | G36* 93 | X117250335Y-66427139D02* 94 | G01* 95 | X117376957Y-66461068D01* 96 | X117490484Y-66526612D01* 97 | X117583178Y-66619306D01* 98 | X117648722Y-66732833D01* 99 | X117682651Y-66859455D01* 100 | X117684790Y-66925000D01* 101 | X117684790Y-67380000D01* 102 | X117682651Y-67445545D01* 103 | X117648722Y-67572167D01* 104 | X117583178Y-67685694D01* 105 | X117490484Y-67778388D01* 106 | X117376957Y-67843932D01* 107 | X117250335Y-67877861D01* 108 | X117184790Y-67880000D01* 109 | X116466790Y-67880000D01* 110 | X116395820Y-67877381D01* 111 | X116260147Y-67835673D01* 112 | X116142719Y-67755940D01* 113 | X116053904Y-67645221D01* 114 | X116001544Y-67513292D01* 115 | X115990263Y-67371801D01* 116 | X116021055Y-67233242D01* 117 | X116091202Y-67109848D01* 118 | X116141061Y-67059275D01* 119 | X116677061Y-66554275D01* 120 | X116721859Y-66514444D01* 121 | X116826812Y-66456596D01* 122 | X116942870Y-66426730D01* 123 | X117002790Y-66425000D01* 124 | X117184790Y-66425000D01* 125 | X117250335Y-66427139D01* 126 | G37* 127 | G36* 128 | X117250335Y-63122139D02* 129 | G01* 130 | X117376957Y-63156068D01* 131 | X117490484Y-63221612D01* 132 | X117583178Y-63314306D01* 133 | X117648722Y-63427833D01* 134 | X117682651Y-63554455D01* 135 | X117684790Y-63620000D01* 136 | X117684790Y-64075000D01* 137 | X117682651Y-64140545D01* 138 | X117648722Y-64267167D01* 139 | X117583178Y-64380694D01* 140 | X117490484Y-64473388D01* 141 | X117376957Y-64538932D01* 142 | X117250335Y-64572861D01* 143 | X117184790Y-64575000D01* 144 | X117002790Y-64575000D01* 145 | X116942870Y-64573271D01* 146 | X116826812Y-64543405D01* 147 | X116721859Y-64485557D01* 148 | X116677061Y-64445725D01* 149 | X116141061Y-63940725D01* 150 | X116091202Y-63890152D01* 151 | X116021055Y-63766758D01* 152 | X115990263Y-63628199D01* 153 | X116001544Y-63486708D01* 154 | X116053904Y-63354779D01* 155 | X116142719Y-63244060D01* 156 | X116260147Y-63164327D01* 157 | X116395820Y-63122619D01* 158 | X116466790Y-63120000D01* 159 | X117184790Y-63120000D01* 160 | X117250335Y-63122139D01* 161 | G37* 162 | %TD*% 163 | D10* 164 | %TO.P,JP1,1,A*% 165 | %TO.N,Net-(JP1-Pad1)*% 166 | X112400000Y-64350000D03* 167 | D11* 168 | %TO.P,JP1,2,B*% 169 | %TO.N,+5V*% 170 | X112400000Y-63050000D03* 171 | %TD*% 172 | D12* 173 | %TO.P,J1,1,Pin_1*% 174 | %TO.N,GND*% 175 | X107799999Y-60199999D03* 176 | %TD*% 177 | D13* 178 | %TO.P,R2,1*% 179 | %TO.N,+5V*% 180 | X110300000Y-65287500D03* 181 | %TO.P,R2,2*% 182 | %TO.N,Net-(R2-Pad2)*% 183 | X110300000Y-67112500D03* 184 | %TD*% 185 | D14* 186 | %TO.P,D1,1,R*% 187 | %TO.N,SIG*% 188 | X111899999Y-67349999D03* 189 | %TO.P,D1,2,A*% 190 | %TO.N,Net-(D1-Pad2)*% 191 | X112899999Y-67349999D03* 192 | %TO.P,D1,3,B*% 193 | %TO.N,GND*% 194 | X112899999Y-65949999D03* 195 | %TO.P,D1,4,G*% 196 | %TO.N,unconnected-(D1-Pad4)*% 197 | X111899999Y-65949999D03* 198 | %TD*% 199 | D12* 200 | %TO.P,J2,1,Pin_1*% 201 | %TO.N,SIG*% 202 | X112399999Y-60199999D03* 203 | %TD*% 204 | D13* 205 | %TO.P,R1,1*% 206 | %TO.N,Net-(JP1-Pad1)*% 207 | X114500000Y-65287500D03* 208 | %TO.P,R1,2*% 209 | %TO.N,Net-(D1-Pad2)*% 210 | X114500000Y-67112500D03* 211 | %TD*% 212 | D12* 213 | %TO.P,J3,1,Pin_1*% 214 | %TO.N,+5V*% 215 | X116999999Y-60199999D03* 216 | %TD*% 217 | D15* 218 | %TO.P,U1,1,A*% 219 | %TO.N,Net-(R2-Pad2)*% 220 | X108067999Y-66769999D03* 221 | D16* 222 | %TO.P,U1,2,K*% 223 | %TO.N,GND*% 224 | X108067999Y-64229999D03* 225 | D17* 226 | %TO.P,U1,3,V*% 227 | %TO.N,+5V*% 228 | X116731999Y-63846999D03* 229 | D16* 230 | %TO.P,U1,4,S*% 231 | %TO.N,SIG*% 232 | X116731999Y-65499999D03* 233 | D18* 234 | %TO.P,U1,5,G*% 235 | %TO.N,GND*% 236 | X116731999Y-67152999D03* 237 | %TD*% 238 | D19* 239 | %TO.N,GND*% 240 | X114808000Y-61722000D03* 241 | X110200000Y-61900000D03* 242 | X120725000Y-60375000D03* 243 | X113200500Y-65301763D03* 244 | X105100000Y-60650000D03* 245 | %TD*% 246 | D20* 247 | %TO.N,SIG*% 248 | X111900000Y-66800000D02* 249 | X112087973Y-66612027D01* 250 | X113962987Y-66124520D02* 251 | X116051480Y-66124520D01* 252 | X112087973Y-66612027D02* 253 | X113475480Y-66612027D01* 254 | X111900000Y-67350000D02* 255 | X111900000Y-66800000D01* 256 | X113475480Y-66612027D02* 257 | X113962987Y-66124520D01* 258 | X116051480Y-66124520D02* 259 | X116676000Y-65500000D01* 260 | %TO.N,+5V*% 261 | X112400000Y-63050000D02* 262 | X110950000Y-63050000D01* 263 | X116732000Y-63913000D02* 264 | X115869000Y-63050000D01* 265 | X117000000Y-60200000D02* 266 | X117000000Y-63654000D01* 267 | X117000000Y-63654000D02* 268 | X116732000Y-63922000D01* 269 | X110300000Y-63700000D02* 270 | X110300000Y-65287500D01* 271 | X110950000Y-63050000D02* 272 | X110300000Y-63700000D01* 273 | X115869000Y-63050000D02* 274 | X112400000Y-63050000D01* 275 | %TO.N,GND*% 276 | X112900000Y-65602263D02* 277 | X113200500Y-65301763D01* 278 | X112900000Y-65950000D02* 279 | X112900000Y-65602263D01* 280 | %TO.N,Net-(D1-Pad2)*% 281 | X114262500Y-67350000D02* 282 | X114500000Y-67112500D01* 283 | X112900000Y-67350000D02* 284 | X114262500Y-67350000D01* 285 | %TO.N,Net-(R2-Pad2)*% 286 | X108430500Y-67112500D02* 287 | X108068000Y-66750000D01* 288 | X110300000Y-67112500D02* 289 | X108430500Y-67112500D01* 290 | %TO.N,Net-(JP1-Pad1)*% 291 | X113562500Y-64350000D02* 292 | X114500000Y-65287500D01* 293 | X112400000Y-64350000D02* 294 | X113562500Y-64350000D01* 295 | %TD*% 296 | %TA.AperFunction,Conductor*% 297 | %TO.N,GND*% 298 | G36* 299 | X118226568Y-58512517D02* 300 | G01* 301 | X122479064Y-60515993D01* 302 | X122527753Y-60556545D01* 303 | X122550547Y-60615670D01* 304 | X122541679Y-60678413D01* 305 | X122503393Y-60728905D01* 306 | X122445371Y-60754376D01* 307 | X119283173Y-61262981D01* 308 | X119283167Y-61262982D01* 309 | X119272697Y-61264667D01* 310 | X119265550Y-61272508D01* 311 | X119265547Y-61272511D01* 312 | X117910876Y-62758886D01* 313 | X117859803Y-62792787D01* 314 | X117798776Y-62798575D01* 315 | X117752500Y-62779180D01* 316 | X117751811Y-62780442D01* 317 | X117743900Y-62776122D01* 318 | X117736688Y-62770723D01* 319 | X117728249Y-62767575D01* 320 | X117728241Y-62767571D01* 321 | X117717816Y-62763683D01* 322 | X117698884Y-62754767D01* 323 | X117698783Y-62754709D01* 324 | X117696529Y-62753407D01* 325 | X117650390Y-62707288D01* 326 | X117633500Y-62644272D01* 327 | X117633500Y-61684500D01* 328 | X117650381Y-61621500D01* 329 | X117696500Y-61575381D01* 330 | X117759500Y-61558500D01* 331 | X117895269Y-61558500D01* 332 | X117898638Y-61558500D01* 333 | X117959201Y-61551989D01* 334 | X118096204Y-61500889D01* 335 | X118213261Y-61413261D01* 336 | X118300889Y-61296204D01* 337 | X118351989Y-61159201D01* 338 | X118358500Y-61098638D01* 339 | X118358500Y-59301362D01* 340 | X118351989Y-59240799D01* 341 | X118300889Y-59103796D01* 342 | X118213261Y-58986739D01* 343 | X118206049Y-58981340D01* 344 | X118103417Y-58904510D01* 345 | X118103414Y-58904508D01* 346 | X118096204Y-58899111D01* 347 | X118087766Y-58895964D01* 348 | X118087763Y-58895962D01* 349 | X117966580Y-58850763D01* 350 | X117966578Y-58850762D01* 351 | X117959201Y-58848011D01* 352 | X117951373Y-58847169D01* 353 | X117951367Y-58847168D01* 354 | X117901988Y-58841860D01* 355 | X117901985Y-58841859D01* 356 | X117898638Y-58841500D01* 357 | X116101362Y-58841500D01* 358 | X116098015Y-58841859D01* 359 | X116098011Y-58841860D01* 360 | X116048632Y-58847168D01* 361 | X116048625Y-58847169D01* 362 | X116040799Y-58848011D01* 363 | X116033423Y-58850761D01* 364 | X116033419Y-58850763D01* 365 | X115912236Y-58895962D01* 366 | X115912230Y-58895965D01* 367 | X115903796Y-58899111D01* 368 | X115896588Y-58904506D01* 369 | X115896582Y-58904510D01* 370 | X115793950Y-58981340D01* 371 | X115793946Y-58981343D01* 372 | X115786739Y-58986739D01* 373 | X115781343Y-58993946D01* 374 | X115781340Y-58993950D01* 375 | X115704510Y-59096582D01* 376 | X115704506Y-59096588D01* 377 | X115699111Y-59103796D01* 378 | X115695965Y-59112230D01* 379 | X115695962Y-59112236D01* 380 | X115650763Y-59233419D01* 381 | X115650761Y-59233423D01* 382 | X115648011Y-59240799D01* 383 | X115647169Y-59248625D01* 384 | X115647168Y-59248632D01* 385 | X115642207Y-59294785D01* 386 | X115641500Y-59301362D01* 387 | X115641500Y-61098638D01* 388 | X115641859Y-61101985D01* 389 | X115641860Y-61101988D01* 390 | X115647168Y-61151367D01* 391 | X115647169Y-61151373D01* 392 | X115648011Y-61159201D01* 393 | X115650762Y-61166578D01* 394 | X115650763Y-61166580D01* 395 | X115695962Y-61287763D01* 396 | X115695964Y-61287766D01* 397 | X115699111Y-61296204D01* 398 | X115704508Y-61303414D01* 399 | X115704510Y-61303417D01* 400 | X115781340Y-61406049D01* 401 | X115786739Y-61413261D01* 402 | X115903796Y-61500889D01* 403 | X116040799Y-61551989D01* 404 | X116101362Y-61558500D01* 405 | X116240500Y-61558500D01* 406 | X116303500Y-61575381D01* 407 | X116349619Y-61621500D01* 408 | X116366500Y-61684500D01* 409 | X116366500Y-62383199D01* 410 | X116351388Y-62443030D01* 411 | X116309678Y-62488510D01* 412 | X116251374Y-62508729D01* 413 | X116190461Y-62498837D01* 414 | X116153456Y-62482823D01* 415 | X116142804Y-62477605D01* 416 | X116111007Y-62460124D01* 417 | X116111005Y-62460123D01* 418 | X116104060Y-62456305D01* 419 | X116096383Y-62454334D01* 420 | X116096381Y-62454333D01* 421 | X116084438Y-62451267D01* 422 | X116065734Y-62444863D01* 423 | X116054420Y-62439967D01* 424 | X116054418Y-62439966D01* 425 | X116047145Y-62436819D01* 426 | X116039319Y-62435579D01* 427 | X116039318Y-62435579D01* 428 | X116003475Y-62429902D01* 429 | X115991859Y-62427496D01* 430 | X115949030Y-62416500D01* 431 | X115941101Y-62416500D01* 432 | X115928776Y-62416500D01* 433 | X115909065Y-62414949D01* 434 | X115896885Y-62413019D01* 435 | X115896878Y-62413018D01* 436 | X115889057Y-62411780D01* 437 | X115881173Y-62412525D01* 438 | X115881165Y-62412525D01* 439 | X115845039Y-62415941D01* 440 | X115833181Y-62416500D01* 441 | X113505922Y-62416500D01* 442 | X113457704Y-62406909D01* 443 | X113416827Y-62379596D01* 444 | X113369776Y-62332546D01* 445 | X113368179Y-62330949D01* 446 | X113259518Y-62236795D01* 447 | X113255740Y-62234367D01* 448 | X113255736Y-62234364D01* 449 | X113140298Y-62160177D01* 450 | X113140296Y-62160176D01* 451 | X113136512Y-62157744D01* 452 | X113121671Y-62150966D01* 453 | X113007769Y-62098948D01* 454 | X113007755Y-62098942D01* 455 | X113005727Y-62098016D01* 456 | X113003640Y-62097237D01* 457 | X113003629Y-62097233D01* 458 | X112941264Y-62073972D01* 459 | X112941254Y-62073969D01* 460 | X112937050Y-62072401D01* 461 | X112932651Y-62071444D01* 462 | X112867631Y-62057299D01* 463 | X112867618Y-62057296D01* 464 | X112865427Y-62056820D01* 465 | X112863209Y-62056501D01* 466 | X112863192Y-62056498D01* 467 | X112725339Y-62036678D01* 468 | X112725333Y-62036677D01* 469 | X112723112Y-62036358D01* 470 | X112720899Y-62036199D01* 471 | X112720874Y-62036197D01* 472 | X112654488Y-62031450D01* 473 | X112650000Y-62031129D01* 474 | X112645512Y-62031450D01* 475 | X112582592Y-62035950D01* 476 | X112573603Y-62036271D01* 477 | X112226397Y-62036271D01* 478 | X112217408Y-62035950D01* 479 | X112154488Y-62031450D01* 480 | X112150000Y-62031129D01* 481 | X112145512Y-62031450D01* 482 | X112079125Y-62036197D01* 483 | X112079097Y-62036200D01* 484 | X112076888Y-62036358D01* 485 | X112074669Y-62036676D01* 486 | X112074660Y-62036678D01* 487 | X111936807Y-62056498D01* 488 | X111936785Y-62056501D01* 489 | X111934573Y-62056820D01* 490 | X111932386Y-62057295D01* 491 | X111932368Y-62057299D01* 492 | X111867348Y-62071444D01* 493 | X111867344Y-62071444D01* 494 | X111862950Y-62072401D01* 495 | X111858748Y-62073967D01* 496 | X111858735Y-62073972D01* 497 | X111796370Y-62097233D01* 498 | X111796349Y-62097241D01* 499 | X111794273Y-62098016D01* 500 | X111792253Y-62098938D01* 501 | X111792230Y-62098948D01* 502 | X111667584Y-62155873D01* 503 | X111667579Y-62155875D01* 504 | X111663488Y-62157744D01* 505 | X111659708Y-62160172D01* 506 | X111659701Y-62160177D01* 507 | X111544263Y-62234364D01* 508 | X111544252Y-62234371D01* 509 | X111540482Y-62236795D01* 510 | X111537086Y-62239736D01* 511 | X111537084Y-62239739D01* 512 | X111433528Y-62329469D01* 513 | X111433514Y-62329481D01* 514 | X111431821Y-62330949D01* 515 | X111430237Y-62332532D01* 516 | X111430223Y-62332546D01* 517 | X111383173Y-62379596D01* 518 | X111342296Y-62406909D01* 519 | X111294078Y-62416500D01* 520 | X111028767Y-62416500D01* 521 | X111017583Y-62415972D01* 522 | X111010091Y-62414298D01* 523 | X111002165Y-62414547D01* 524 | X110942001Y-62416438D01* 525 | X110938043Y-62416500D01* 526 | X110910144Y-62416500D01* 527 | X110906219Y-62416995D01* 528 | X110906198Y-62416997D01* 529 | X110906124Y-62417007D01* 530 | X110894313Y-62417936D01* 531 | X110858034Y-62419076D01* 532 | X110858026Y-62419077D01* 533 | X110850111Y-62419326D01* 534 | X110842500Y-62421536D01* 535 | X110842493Y-62421538D01* 536 | X110830648Y-62424979D01* 537 | X110811303Y-62428985D01* 538 | X110799072Y-62430530D01* 539 | X110799059Y-62430533D01* 540 | X110791203Y-62431526D01* 541 | X110783839Y-62434441D01* 542 | X110783829Y-62434444D01* 543 | X110750092Y-62447802D01* 544 | X110738865Y-62451646D01* 545 | X110704018Y-62461770D01* 546 | X110704013Y-62461772D01* 547 | X110696407Y-62463982D01* 548 | X110689590Y-62468012D01* 549 | X110689581Y-62468017D01* 550 | X110678960Y-62474298D01* 551 | X110661221Y-62482989D01* 552 | X110649749Y-62487531D01* 553 | X110649746Y-62487532D01* 554 | X110642383Y-62490448D01* 555 | X110635976Y-62495102D01* 556 | X110635972Y-62495105D01* 557 | X110606611Y-62516437D01* 558 | X110596693Y-62522951D01* 559 | X110565465Y-62541419D01* 560 | X110565457Y-62541425D01* 561 | X110558638Y-62545458D01* 562 | X110553036Y-62551058D01* 563 | X110553029Y-62551065D01* 564 | X110544308Y-62559786D01* 565 | X110529287Y-62572615D01* 566 | X110519307Y-62579866D01* 567 | X110519298Y-62579873D01* 568 | X110512893Y-62584528D01* 569 | X110507845Y-62590628D01* 570 | X110507836Y-62590638D01* 571 | X110484705Y-62618598D01* 572 | X110476718Y-62627376D01* 573 | X109907738Y-63196355D01* 574 | X109899458Y-63203889D01* 575 | X109892982Y-63208000D01* 576 | X109887561Y-63213773D01* 577 | X109846370Y-63257636D01* 578 | X109843621Y-63260472D01* 579 | X109826667Y-63277427D01* 580 | X109826660Y-63277434D01* 581 | X109823865Y-63280230D01* 582 | X109821442Y-63283352D01* 583 | X109821426Y-63283371D01* 584 | X109821365Y-63283451D01* 585 | X109813690Y-63292435D01* 586 | X109788838Y-63318902D01* 587 | X109788835Y-63318904D01* 588 | X109783414Y-63324679D01* 589 | X109779600Y-63331614D01* 590 | X109779592Y-63331627D01* 591 | X109773650Y-63342436D01* 592 | X109762803Y-63358949D01* 593 | X109755243Y-63368695D01* 594 | X109755237Y-63368704D01* 595 | X109750386Y-63374959D01* 596 | X109747242Y-63382223D01* 597 | X109747238Y-63382231D01* 598 | X109732824Y-63415540D01* 599 | X109727604Y-63426195D01* 600 | X109710125Y-63457989D01* 601 | X109710121Y-63457997D01* 602 | X109706305Y-63464940D01* 603 | X109704333Y-63472616D01* 604 | X109704331Y-63472624D01* 605 | X109701266Y-63484562D01* 606 | X109694865Y-63503259D01* 607 | X109689968Y-63514576D01* 608 | X109689966Y-63514581D01* 609 | X109686819Y-63521855D01* 610 | X109685579Y-63529680D01* 611 | X109685577Y-63529689D01* 612 | X109679901Y-63565524D01* 613 | X109677495Y-63577144D01* 614 | X109668471Y-63612289D01* 615 | X109668469Y-63612297D01* 616 | X109666500Y-63619970D01* 617 | X109666500Y-63627899D01* 618 | X109666500Y-63640224D01* 619 | X109664949Y-63659935D01* 620 | X109663019Y-63672114D01* 621 | X109663018Y-63672121D01* 622 | X109661780Y-63679943D01* 623 | X109662525Y-63687826D01* 624 | X109662525Y-63687834D01* 625 | X109665941Y-63723961D01* 626 | X109666500Y-63735819D01* 627 | X109666500Y-63888760D01* 628 | X109647429Y-63955409D01* 629 | X109595990Y-64001883D01* 630 | X109527753Y-64014114D01* 631 | X109463375Y-63988398D01* 632 | X109422343Y-63932521D01* 633 | X109372921Y-63799080D01* 634 | X109367322Y-63787665D01* 635 | X109267900Y-63628157D01* 636 | X109260119Y-63618106D01* 637 | X109130619Y-63481872D01* 638 | X109120977Y-63473595D01* 639 | X108966710Y-63366221D01* 640 | X108955589Y-63360048D01* 641 | X108782868Y-63285928D01* 642 | X108770734Y-63282121D01* 643 | X108586628Y-63244286D01* 644 | X108573975Y-63243000D01* 645 | X108338590Y-63243000D01* 646 | X108325506Y-63246506D01* 647 | X108322000Y-63259590D01* 648 | X108322000Y-65200410D01* 649 | X108325506Y-65213493D01* 650 | X108338590Y-65217000D01* 651 | X108526854Y-65217000D01* 652 | X108533233Y-65216676D01* 653 | X108673352Y-65202428D01* 654 | X108685799Y-65199870D01* 655 | X108865146Y-65143599D01* 656 | X108876813Y-65138592D01* 657 | X108904350Y-65123308D01* 658 | X108967095Y-65107485D01* 659 | X109029418Y-65124891D01* 660 | X109074884Y-65170936D01* 661 | X109091500Y-65233475D01* 662 | X109091500Y-65597338D01* 663 | X109091500Y-65597357D01* 664 | X109091501Y-65600544D01* 665 | X109091825Y-65603721D01* 666 | X109091826Y-65603729D01* 667 | X109095909Y-65643695D01* 668 | X109083701Y-65711955D01* 669 | X109037227Y-65763419D01* 670 | X108970561Y-65782500D01* 671 | X107752990Y-65782500D01* 672 | X107685260Y-65762748D01* 673 | X107638765Y-65709684D01* 674 | X107628082Y-65639946D01* 675 | X107669630Y-65326446D01* 676 | X107691366Y-65270670D01* 677 | X107736390Y-65231220D01* 678 | X107794538Y-65217000D01* 679 | X107797410Y-65217000D01* 680 | X107810493Y-65213493D01* 681 | X107814000Y-65200410D01* 682 | X107814000Y-63259590D01* 683 | X107810493Y-63246506D01* 684 | X107797410Y-63243000D01* 685 | X107609146Y-63243000D01* 686 | X107602766Y-63243323D01* 687 | X107462647Y-63257571D01* 688 | X107450200Y-63260129D01* 689 | X107270853Y-63316400D01* 690 | X107259184Y-63321408D01* 691 | X107123697Y-63396610D01* 692 | X107055922Y-63412268D01* 693 | X106990166Y-63389577D01* 694 | X106946474Y-63335456D01* 695 | X106747697Y-62864667D01* 696 | X105347697Y-61539667D01* 697 | X105332675Y-61535572D01* 698 | X105332674Y-61535572D01* 699 | X103753667Y-61105215D01* 700 | X105950000Y-61105215D01* 701 | X105950246Y-61110781D01* 702 | X105960078Y-61221362D01* 703 | X105962256Y-61233087D01* 704 | X106014799Y-61416717D01* 705 | X106019519Y-61428533D01* 706 | X106107759Y-61597458D01* 707 | X106114763Y-61608087D01* 708 | X106235214Y-61755807D01* 709 | X106244192Y-61764785D01* 710 | X106391912Y-61885236D01* 711 | X106402541Y-61892240D01* 712 | X106571466Y-61980480D01* 713 | X106583282Y-61985200D01* 714 | X106766912Y-62037743D01* 715 | X106778637Y-62039921D01* 716 | X106889218Y-62049753D01* 717 | X106894785Y-62050000D01* 718 | X107529410Y-62050000D01* 719 | X107542493Y-62046493D01* 720 | X107546000Y-62033410D01* 721 | X108054000Y-62033410D01* 722 | X108057506Y-62046493D01* 723 | X108070590Y-62050000D01* 724 | X108705215Y-62050000D01* 725 | X108710781Y-62049753D01* 726 | X108821362Y-62039921D01* 727 | X108833087Y-62037743D01* 728 | X109016717Y-61985200D01* 729 | X109028533Y-61980480D01* 730 | X109197458Y-61892240D01* 731 | X109208087Y-61885236D01* 732 | X109355807Y-61764785D01* 733 | X109364785Y-61755807D01* 734 | X109485236Y-61608087D01* 735 | X109492240Y-61597458D01* 736 | X109580480Y-61428533D01* 737 | X109585200Y-61416717D01* 738 | X109637743Y-61233087D01* 739 | X109639921Y-61221362D01* 740 | X109649753Y-61110781D01* 741 | X109650000Y-61105215D01* 742 | X109650000Y-61098638D01* 743 | X111041500Y-61098638D01* 744 | X111041859Y-61101985D01* 745 | X111041860Y-61101988D01* 746 | X111047168Y-61151367D01* 747 | X111047169Y-61151373D01* 748 | X111048011Y-61159201D01* 749 | X111050762Y-61166578D01* 750 | X111050763Y-61166580D01* 751 | X111095962Y-61287763D01* 752 | X111095964Y-61287766D01* 753 | X111099111Y-61296204D01* 754 | X111104508Y-61303414D01* 755 | X111104510Y-61303417D01* 756 | X111181340Y-61406049D01* 757 | X111186739Y-61413261D01* 758 | X111303796Y-61500889D01* 759 | X111440799Y-61551989D01* 760 | X111501362Y-61558500D01* 761 | X113295269Y-61558500D01* 762 | X113298638Y-61558500D01* 763 | X113359201Y-61551989D01* 764 | X113496204Y-61500889D01* 765 | X113613261Y-61413261D01* 766 | X113700889Y-61296204D01* 767 | X113751989Y-61159201D01* 768 | X113758500Y-61098638D01* 769 | X113758500Y-59301362D01* 770 | X113751989Y-59240799D01* 771 | X113700889Y-59103796D01* 772 | X113613261Y-58986739D01* 773 | X113606049Y-58981340D01* 774 | X113503417Y-58904510D01* 775 | X113503414Y-58904508D01* 776 | X113496204Y-58899111D01* 777 | X113487766Y-58895964D01* 778 | X113487763Y-58895962D01* 779 | X113366580Y-58850763D01* 780 | X113366578Y-58850762D01* 781 | X113359201Y-58848011D01* 782 | X113351373Y-58847169D01* 783 | X113351367Y-58847168D01* 784 | X113301988Y-58841860D01* 785 | X113301985Y-58841859D01* 786 | X113298638Y-58841500D01* 787 | X111501362Y-58841500D01* 788 | X111498015Y-58841859D01* 789 | X111498011Y-58841860D01* 790 | X111448632Y-58847168D01* 791 | X111448625Y-58847169D01* 792 | X111440799Y-58848011D01* 793 | X111433423Y-58850761D01* 794 | X111433419Y-58850763D01* 795 | X111312236Y-58895962D01* 796 | X111312230Y-58895965D01* 797 | X111303796Y-58899111D01* 798 | X111296588Y-58904506D01* 799 | X111296582Y-58904510D01* 800 | X111193950Y-58981340D01* 801 | X111193946Y-58981343D01* 802 | X111186739Y-58986739D01* 803 | X111181343Y-58993946D01* 804 | X111181340Y-58993950D01* 805 | X111104510Y-59096582D01* 806 | X111104506Y-59096588D01* 807 | X111099111Y-59103796D01* 808 | X111095965Y-59112230D01* 809 | X111095962Y-59112236D01* 810 | X111050763Y-59233419D01* 811 | X111050761Y-59233423D01* 812 | X111048011Y-59240799D01* 813 | X111047169Y-59248625D01* 814 | X111047168Y-59248632D01* 815 | X111042207Y-59294785D01* 816 | X111041500Y-59301362D01* 817 | X111041500Y-61098638D01* 818 | X109650000Y-61098638D01* 819 | X109650000Y-60470590D01* 820 | X109646493Y-60457506D01* 821 | X109633410Y-60454000D01* 822 | X108070590Y-60454000D01* 823 | X108057506Y-60457506D01* 824 | X108054000Y-60470590D01* 825 | X108054000Y-62033410D01* 826 | X107546000Y-62033410D01* 827 | X107546000Y-60470590D01* 828 | X107542493Y-60457506D01* 829 | X107529410Y-60454000D01* 830 | X105966590Y-60454000D01* 831 | X105953506Y-60457506D01* 832 | X105950000Y-60470590D01* 833 | X105950000Y-61105215D01* 834 | X103753667Y-61105215D01* 835 | X102235974Y-60691569D01* 836 | X102182712Y-60661719D01* 837 | X102149736Y-60610333D01* 838 | X102144790Y-60549477D01* 839 | X102169036Y-60493441D01* 840 | X102216776Y-60455384D01* 841 | X105858457Y-58792877D01* 842 | X105919317Y-58781790D01* 843 | X105978123Y-58801007D01* 844 | X106020694Y-58845899D01* 845 | X106036765Y-58905642D01* 846 | X106022463Y-58965833D01* 847 | X106019517Y-58971471D01* 848 | X106014799Y-58983282D01* 849 | X105962256Y-59166912D01* 850 | X105960078Y-59178637D01* 851 | X105950246Y-59289218D01* 852 | X105950000Y-59294785D01* 853 | X105950000Y-59929410D01* 854 | X105953506Y-59942493D01* 855 | X105966590Y-59946000D01* 856 | X109633410Y-59946000D01* 857 | X109646493Y-59942493D01* 858 | X109650000Y-59929410D01* 859 | X109650000Y-59294785D01* 860 | X109649753Y-59289218D01* 861 | X109639921Y-59178637D01* 862 | X109637743Y-59166912D01* 863 | X109585200Y-58983282D01* 864 | X109580480Y-58971466D01* 865 | X109492240Y-58802541D01* 866 | X109485232Y-58791906D01* 867 | X109415286Y-58706125D01* 868 | X109387848Y-58641627D01* 869 | X109399120Y-58572448D01* 870 | X109445611Y-58519995D01* 871 | X109512937Y-58500500D01* 872 | X118172867Y-58500500D01* 873 | X118226568Y-58512517D01* 874 | G37* 875 | %TD.AperFunction*% 876 | %TD*% 877 | M02* 878 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-EdgeCuts.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:10:56-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Profile,NP*% 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:10:56* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | %TA.AperFunction,Profile*% 14 | %ADD10C,0.100000*% 15 | %TD*% 16 | G04 APERTURE END LIST* 17 | D10* 18 | X98194815Y-66951676D02* 19 | G75* 20 | G03* 21 | X99250001Y-68749999I4585185J1481676D01* 22 | G01* 23 | X123760651Y-60986127D02* 24 | X118250000Y-58500000D01* 25 | X126529551Y-63901550D02* 26 | X126529551Y-67026550D01* 27 | X99250001Y-68749999D02* 28 | X125500000Y-68750000D01* 29 | X126529551Y-63901550D02* 30 | G75* 31 | G03* 32 | X123760651Y-60986127I-4525051J-1525050D01* 33 | G01* 34 | X125499999Y-68749999D02* 35 | G75* 36 | G03* 37 | X126529550Y-67026550I-3524999J3274999D01* 38 | G01* 39 | X98194814Y-66951676D02* 40 | X98194814Y-63901676D01* 41 | X100987265Y-60968128D02* 42 | X106500000Y-58500000D01* 43 | X100987265Y-60968128D02* 44 | G75* 45 | G03* 46 | X98194814Y-63901676I1802735J-4511872D01* 47 | G01* 48 | X118250000Y-58500000D02* 49 | X106500000Y-58500000D01* 50 | M02* 51 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-MaskBottom.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:10:56-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Bot*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:10:56* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMHorizOval* 16 | 0 Thick line with rounded ends* 17 | 0 $1 width* 18 | 0 $2 $3 position (X,Y) of the first rounded end (center of the circle)* 19 | 0 $4 $5 position (X,Y) of the second rounded end (center of the circle)* 20 | 0 Add line between two ends* 21 | 20,1,$1,$2,$3,$4,$5,0* 22 | 0 Add two circle primitives to create the rounded ends* 23 | 1,1,$1,$2,$3* 24 | 1,1,$1,$4,$5*% 25 | G04 Aperture macros list end* 26 | %ADD10C,3.200000*% 27 | %ADD11R,1.700000X1.700000*% 28 | %ADD12R,1.782000X0.958000*% 29 | %ADD13O,1.782000X0.958000*% 30 | %ADD14HorizOval,0.955000X0.279101X-0.263011X-0.279101X0.263011X0*% 31 | %ADD15HorizOval,0.955000X0.279101X0.263011X-0.279101X-0.263011X0*% 32 | G04 APERTURE END LIST* 33 | D10* 34 | %TO.C,*% 35 | X122000000Y-65500000D03* 36 | %TD*% 37 | D11* 38 | %TO.C,J1*% 39 | X107799999Y-60199999D03* 40 | %TD*% 41 | %TO.C,J2*% 42 | X112399999Y-60199999D03* 43 | %TD*% 44 | D10* 45 | %TO.C,*% 46 | X102750000Y-65500000D03* 47 | %TD*% 48 | D11* 49 | %TO.C,J3*% 50 | X116999999Y-60199999D03* 51 | %TD*% 52 | D12* 53 | %TO.C,U1*% 54 | X108067999Y-66769999D03* 55 | D13* 56 | X108067999Y-64229999D03* 57 | D14* 58 | X116731999Y-63846999D03* 59 | D13* 60 | X116731999Y-65499999D03* 61 | D15* 62 | X116731999Y-67152999D03* 63 | %TD*% 64 | M02* 65 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-MaskTop.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:10:56-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Top*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:10:56* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | %AMHorizOval* 32 | 0 Thick line with rounded ends* 33 | 0 $1 width* 34 | 0 $2 $3 position (X,Y) of the first rounded end (center of the circle)* 35 | 0 $4 $5 position (X,Y) of the second rounded end (center of the circle)* 36 | 0 Add line between two ends* 37 | 20,1,$1,$2,$3,$4,$5,0* 38 | 0 Add two circle primitives to create the rounded ends* 39 | 1,1,$1,$2,$3* 40 | 1,1,$1,$4,$5*% 41 | %AMFreePoly0* 42 | 4,1,19,0.500000,-0.750000,0.000000,-0.750000,0.000000,-0.744911,-0.071157,-0.744911,-0.207708,-0.704816,-0.327430,-0.627875,-0.420627,-0.520320,-0.479746,-0.390866,-0.500000,-0.250000,-0.500000,0.250000,-0.479746,0.390866,-0.420627,0.520320,-0.327430,0.627875,-0.207708,0.704816,-0.071157,0.744911,0.000000,0.744911,0.000000,0.750000,0.500000,0.750000,0.500000,-0.750000,0.500000,-0.750000, 43 | $1*% 44 | %AMFreePoly1* 45 | 4,1,19,0.000000,0.744911,0.071157,0.744911,0.207708,0.704816,0.327430,0.627875,0.420627,0.520320,0.479746,0.390866,0.500000,0.250000,0.500000,-0.250000,0.479746,-0.390866,0.420627,-0.520320,0.327430,-0.627875,0.207708,-0.704816,0.071157,-0.744911,0.000000,-0.744911,0.000000,-0.750000,-0.500000,-0.750000,-0.500000,0.750000,0.000000,0.750000,0.000000,0.744911,0.000000,0.744911, 46 | $1*% 47 | G04 Aperture macros list end* 48 | %ADD10FreePoly0,90.000000*% 49 | %ADD11FreePoly1,90.000000*% 50 | %ADD12C,3.200000*% 51 | %ADD13R,1.700000X1.700000*% 52 | %ADD14RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 53 | %ADD15R,0.700000X0.600000*% 54 | %ADD16R,1.782000X0.958000*% 55 | %ADD17O,1.782000X0.958000*% 56 | %ADD18HorizOval,0.955000X0.279101X-0.263011X-0.279101X0.263011X0*% 57 | %ADD19HorizOval,0.955000X0.279101X0.263011X-0.279101X-0.263011X0*% 58 | G04 APERTURE END LIST* 59 | %TO.C,U1*% 60 | G36* 61 | X117249227Y-66427139D02* 62 | G01* 63 | X117375849Y-66461068D01* 64 | X117489376Y-66526612D01* 65 | X117582070Y-66619306D01* 66 | X117647614Y-66732833D01* 67 | X117681543Y-66859455D01* 68 | X117683682Y-66925000D01* 69 | X117683682Y-67380000D01* 70 | X117681543Y-67445545D01* 71 | X117647614Y-67572167D01* 72 | X117582070Y-67685694D01* 73 | X117489376Y-67778388D01* 74 | X117375849Y-67843932D01* 75 | X117249227Y-67877861D01* 76 | X117183682Y-67880000D01* 77 | X116465682Y-67880000D01* 78 | X116394712Y-67877381D01* 79 | X116259039Y-67835673D01* 80 | X116141611Y-67755940D01* 81 | X116052796Y-67645221D01* 82 | X116000436Y-67513292D01* 83 | X115989155Y-67371801D01* 84 | X116019947Y-67233242D01* 85 | X116090094Y-67109848D01* 86 | X116139953Y-67059275D01* 87 | X116675953Y-66554275D01* 88 | X116720751Y-66514444D01* 89 | X116825704Y-66456596D01* 90 | X116941762Y-66426730D01* 91 | X117001682Y-66425000D01* 92 | X117183682Y-66425000D01* 93 | X117249227Y-66427139D01* 94 | G37* 95 | G36* 96 | X117250335Y-63122139D02* 97 | G01* 98 | X117376957Y-63156068D01* 99 | X117490484Y-63221612D01* 100 | X117583178Y-63314306D01* 101 | X117648722Y-63427833D01* 102 | X117682651Y-63554455D01* 103 | X117684790Y-63620000D01* 104 | X117684790Y-64075000D01* 105 | X117682651Y-64140545D01* 106 | X117648722Y-64267167D01* 107 | X117583178Y-64380694D01* 108 | X117490484Y-64473388D01* 109 | X117376957Y-64538932D01* 110 | X117250335Y-64572861D01* 111 | X117184790Y-64575000D01* 112 | X117002790Y-64575000D01* 113 | X116942870Y-64573271D01* 114 | X116826812Y-64543405D01* 115 | X116721859Y-64485557D01* 116 | X116677061Y-64445725D01* 117 | X116141061Y-63940725D01* 118 | X116091202Y-63890152D01* 119 | X116021055Y-63766758D01* 120 | X115990263Y-63628199D01* 121 | X116001544Y-63486708D01* 122 | X116053904Y-63354779D01* 123 | X116142719Y-63244060D01* 124 | X116260147Y-63164327D01* 125 | X116395820Y-63122619D01* 126 | X116466790Y-63120000D01* 127 | X117184790Y-63120000D01* 128 | X117250335Y-63122139D01* 129 | G37* 130 | %TD*% 131 | D10* 132 | %TO.C,JP1*% 133 | X112400000Y-64350000D03* 134 | D11* 135 | X112400000Y-63050000D03* 136 | %TD*% 137 | D12* 138 | %TO.C,*% 139 | X122000000Y-65500000D03* 140 | %TD*% 141 | D13* 142 | %TO.C,J1*% 143 | X107799999Y-60199999D03* 144 | %TD*% 145 | D14* 146 | %TO.C,R2*% 147 | X110300000Y-65287500D03* 148 | X110300000Y-67112500D03* 149 | %TD*% 150 | D15* 151 | %TO.C,D1*% 152 | X111899999Y-67349999D03* 153 | X112899999Y-67349999D03* 154 | X112899999Y-65949999D03* 155 | X111899999Y-65949999D03* 156 | %TD*% 157 | D13* 158 | %TO.C,J2*% 159 | X112399999Y-60199999D03* 160 | %TD*% 161 | D12* 162 | %TO.C,*% 163 | X102750000Y-65500000D03* 164 | %TD*% 165 | D14* 166 | %TO.C,R1*% 167 | X114500000Y-65287500D03* 168 | X114500000Y-67112500D03* 169 | %TD*% 170 | D13* 171 | %TO.C,J3*% 172 | X116999999Y-60199999D03* 173 | %TD*% 174 | D16* 175 | %TO.C,U1*% 176 | X108067999Y-66769999D03* 177 | D17* 178 | X108067999Y-64229999D03* 179 | D18* 180 | X116731999Y-63846999D03* 181 | D17* 182 | X116731999Y-65499999D03* 183 | D19* 184 | X116731999Y-67152999D03* 185 | %TD*% 186 | M02* 187 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-NPTH-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-NPTH-drl_map.pdf -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad (7.0.0-0)} date Thursday, March 02, 2023 at 02:10:56 PM 3 | ; FORMAT={-:-/ absolute / inch / decimal} 4 | ; #@! TF.CreationDate,2023-03-02T14:10:56-08:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,(7.0.0-0) 6 | ; #@! TF.FileFunction,NonPlated,1,2,NPTH 7 | FMAT,2 8 | INCH 9 | ; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill 10 | T1C0.1260 11 | % 12 | G90 13 | G05 14 | T1 15 | X4.0453Y-2.5787 16 | X4.8031Y-2.5787 17 | T0 18 | M30 19 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-PTH-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-PTH-drl_map.pdf -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-PTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad (7.0.0-0)} date Thursday, March 02, 2023 at 02:10:56 PM 3 | ; FORMAT={-:-/ absolute / inch / decimal} 4 | ; #@! TF.CreationDate,2023-03-02T14:10:56-08:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,(7.0.0-0) 6 | ; #@! TF.FileFunction,Plated,1,2,PTH 7 | FMAT,2 8 | INCH 9 | ; #@! TA.AperFunction,Plated,PTH,ViaDrill 10 | T1C0.0157 11 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 12 | T2C0.0297 13 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 14 | T3C0.0298 15 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 16 | T4C0.0394 17 | % 18 | G90 19 | G05 20 | T1 21 | X4.1378Y-2.3878 22 | X4.3386Y-2.437 23 | X4.4567Y-2.5709 24 | X4.52Y-2.43 25 | X4.753Y-2.377 26 | T4 27 | X4.2441Y-2.3701 28 | X4.4252Y-2.3701 29 | X4.6063Y-2.3701 30 | T2 31 | G00X4.5853Y-2.5038 32 | M15 33 | G01X4.6062Y-2.5235 34 | M16 35 | G05 36 | G00X4.5853Y-2.6537 37 | M15 38 | G01X4.6062Y-2.634 39 | M16 40 | G05 41 | T3 42 | G00X4.2443Y-2.5287 43 | M15 44 | G01X4.265Y-2.5287 45 | M16 46 | G05 47 | G00X4.2443Y-2.6287 48 | M15 49 | G01X4.265Y-2.6287 50 | M16 51 | G05 52 | G00X4.5854Y-2.5787 53 | M15 54 | G01X4.6061Y-2.5787 55 | M16 56 | G05 57 | T0 58 | M30 59 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-PasteBottom.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:10:56-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:10:56* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 APERTURE END LIST* 15 | M02* 16 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-PasteTop.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:10:56-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Top*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:10:56* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | G04 Aperture macros list end* 32 | %ADD10RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 33 | %ADD11R,0.700000X0.600000*% 34 | G04 APERTURE END LIST* 35 | D10* 36 | %TO.C,R2*% 37 | X110300000Y-65287500D03* 38 | X110300000Y-67112500D03* 39 | %TD*% 40 | D11* 41 | %TO.C,D1*% 42 | X111899999Y-67349999D03* 43 | X112899999Y-67349999D03* 44 | X112899999Y-65949999D03* 45 | X111899999Y-65949999D03* 46 | %TD*% 47 | D10* 48 | %TO.C,R1*% 49 | X114500000Y-65287500D03* 50 | X114500000Y-67112500D03* 51 | %TD*% 52 | M02* 53 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-SilkBottom.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:10:56-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Legend,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:10:56* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMHorizOval* 16 | 0 Thick line with rounded ends* 17 | 0 $1 width* 18 | 0 $2 $3 position (X,Y) of the first rounded end (center of the circle)* 19 | 0 $4 $5 position (X,Y) of the second rounded end (center of the circle)* 20 | 0 Add line between two ends* 21 | 20,1,$1,$2,$3,$4,$5,0* 22 | 0 Add two circle primitives to create the rounded ends* 23 | 1,1,$1,$2,$3* 24 | 1,1,$1,$4,$5*% 25 | G04 Aperture macros list end* 26 | %ADD10C,0.100000*% 27 | %ADD11C,0.200000*% 28 | %ADD12C,0.150000*% 29 | %ADD13C,0.120000*% 30 | %ADD14C,0.127000*% 31 | %ADD15C,3.200000*% 32 | %ADD16R,1.700000X1.700000*% 33 | %ADD17R,1.782000X0.958000*% 34 | %ADD18O,1.782000X0.958000*% 35 | %ADD19HorizOval,0.955000X0.279101X-0.263011X-0.279101X0.263011X0*% 36 | %ADD20HorizOval,0.955000X0.279101X0.263011X-0.279101X-0.263011X0*% 37 | G04 APERTURE END LIST* 38 | D10* 39 | X104876579Y-61996866D02* 40 | X104651183Y-61513502D01* 41 | X104715582Y-61651606D02* 42 | X104648856Y-61598654D01* 43 | X104648856Y-61598654D02* 44 | X104598230Y-61580228D01* 45 | X104598230Y-61580228D02* 46 | X104513079Y-61577901D01* 47 | X104513079Y-61577901D02* 48 | X104444026Y-61610101D01* 49 | X104135433Y-62300435D02* 50 | X104220585Y-62302761D01* 51 | X104220585Y-62302761D02* 52 | X104358689Y-62238363D01* 53 | X104358689Y-62238363D02* 54 | X104411641Y-62171637D01* 55 | X104411641Y-62171637D02* 56 | X104413968Y-62086485D01* 57 | X104413968Y-62086485D02* 58 | X104285170Y-61810277D01* 59 | X104285170Y-61810277D02* 60 | X104218444Y-61757325D01* 61 | X104218444Y-61757325D02* 62 | X104133292Y-61754998D01* 63 | X104133292Y-61754998D02* 64 | X103995188Y-61819397D01* 65 | X103995188Y-61819397D02* 66 | X103942236Y-61886123D01* 67 | X103942236Y-61886123D02* 68 | X103939910Y-61971275D01* 69 | X103939910Y-61971275D02* 70 | X103972109Y-62040327D01* 71 | X103972109Y-62040327D02* 72 | X104349569Y-61948381D01* 73 | X103649929Y-61980395D02* 74 | X103702695Y-62544258D01* 75 | X103702695Y-62544258D02* 76 | X103304668Y-62141392D01* 77 | X102439043Y-63133508D02* 78 | X102853355Y-62940311D01* 79 | X102646199Y-63036910D02* 80 | X102308104Y-62311863D01* 81 | X102308104Y-62311863D02* 82 | X102425455Y-62383242D01* 83 | X102425455Y-62383242D02* 84 | X102526707Y-62420095D01* 85 | X102526707Y-62420095D02* 86 | X102611859Y-62422421D01* 87 | X102096109Y-63209354D02* 88 | X102077683Y-63259980D01* 89 | X102077683Y-63259980D02* 90 | X102128308Y-63278406D01* 91 | X102128308Y-63278406D02* 92 | X102146735Y-63227780D01* 93 | X102146735Y-63227780D02* 94 | X102096109Y-63209354D01* 95 | X102096109Y-63209354D02* 96 | X102128308Y-63278406D01* 97 | X101514006Y-62682158D02* 98 | X101065168Y-62891454D01* 99 | X101065168Y-62891454D02* 100 | X101435648Y-63054964D01* 101 | X101435648Y-63054964D02* 102 | X101332070Y-63103263D01* 103 | X101332070Y-63103263D02* 104 | X101279118Y-63169989D01* 105 | X101279118Y-63169989D02* 106 | X101260691Y-63220615D01* 107 | X101260691Y-63220615D02* 108 | X101258365Y-63305766D01* 109 | X101258365Y-63305766D02* 110 | X101338864Y-63478396D01* 111 | X101338864Y-63478396D02* 112 | X101405589Y-63531349D01* 113 | X101405589Y-63531349D02* 114 | X101456215Y-63549775D01* 115 | X101456215Y-63549775D02* 116 | X101541367Y-63552101D01* 117 | X101541367Y-63552101D02* 118 | X101748523Y-63455503D01* 119 | X101748523Y-63455503D02* 120 | X101801475Y-63388777D01* 121 | X101801475Y-63388777D02* 122 | X101819901Y-63338152D01* 123 | X112603571Y-62005809D02* 124 | X112489285Y-62043904D01* 125 | X112489285Y-62043904D02* 126 | X112298809Y-62043904D01* 127 | X112298809Y-62043904D02* 128 | X112222618Y-62005809D01* 129 | X112222618Y-62005809D02* 130 | X112184523Y-61967714D01* 131 | X112184523Y-61967714D02* 132 | X112146428Y-61891523D01* 133 | X112146428Y-61891523D02* 134 | X112146428Y-61815333D01* 135 | X112146428Y-61815333D02* 136 | X112184523Y-61739142D01* 137 | X112184523Y-61739142D02* 138 | X112222618Y-61701047D01* 139 | X112222618Y-61701047D02* 140 | X112298809Y-61662952D01* 141 | X112298809Y-61662952D02* 142 | X112451190Y-61624857D01* 143 | X112451190Y-61624857D02* 144 | X112527380Y-61586761D01* 145 | X112527380Y-61586761D02* 146 | X112565475Y-61548666D01* 147 | X112565475Y-61548666D02* 148 | X112603571Y-61472476D01* 149 | X112603571Y-61472476D02* 150 | X112603571Y-61396285D01* 151 | X112603571Y-61396285D02* 152 | X112565475Y-61320095D01* 153 | X112565475Y-61320095D02* 154 | X112527380Y-61282000D01* 155 | X112527380Y-61282000D02* 156 | X112451190Y-61243904D01* 157 | X112451190Y-61243904D02* 158 | X112260713Y-61243904D01* 159 | X112260713Y-61243904D02* 160 | X112146428Y-61282000D01* 161 | D11* 162 | X105288071Y-59179329D02* 163 | X105080915Y-59275927D01* 164 | X105080915Y-59275927D02* 165 | X105001486Y-59376016D01* 166 | X105001486Y-59376016D02* 167 | X104946207Y-59527893D01* 168 | X104946207Y-59527893D02* 169 | X104991017Y-59759199D01* 170 | X104991017Y-59759199D02* 171 | X105160064Y-60121722D01* 172 | X105160064Y-60121722D02* 173 | X105308452Y-60304728D01* 174 | X105308452Y-60304728D02* 175 | X105460329Y-60360007D01* 176 | X105460329Y-60360007D02* 177 | X105588057Y-60363497D01* 178 | X105588057Y-60363497D02* 179 | X105795213Y-60266898D01* 180 | X105795213Y-60266898D02* 181 | X105874641Y-60166810D01* 182 | X105874641Y-60166810D02* 183 | X105929920Y-60014933D01* 184 | X105929920Y-60014933D02* 185 | X105885110Y-59783627D01* 186 | X105885110Y-59783627D02* 187 | X105716063Y-59421104D01* 188 | X105716063Y-59421104D02* 189 | X105567676Y-59238098D01* 190 | X105567676Y-59238098D02* 191 | X105415798Y-59182819D01* 192 | X105415798Y-59182819D02* 193 | X105288071Y-59179329D01* 194 | X104524916Y-59976545D02* 195 | X105032058Y-61064115D01* 196 | X104549065Y-60028334D02* 197 | X104421338Y-60024844D01* 198 | X104421338Y-60024844D02* 199 | X104214181Y-60121443D01* 200 | X104214181Y-60121443D02* 201 | X104134753Y-60221531D01* 202 | X104134753Y-60221531D02* 203 | X104107114Y-60297470D01* 204 | X104107114Y-60297470D02* 205 | X104103624Y-60425197D01* 206 | X104103624Y-60425197D02* 207 | X104248522Y-60735932D01* 208 | X104248522Y-60735932D02* 209 | X104348610Y-60815360D01* 210 | X104348610Y-60815360D02* 211 | X104424548Y-60842999D01* 212 | X104424548Y-60842999D02* 213 | X104552276Y-60846489D01* 214 | X104552276Y-60846489D02* 215 | X104759432Y-60749891D01* 216 | X104759432Y-60749891D02* 217 | X104838861Y-60649802D01* 218 | X103696292Y-60362939D02* 219 | X103281979Y-60556136D01* 220 | X103371877Y-60072865D02* 221 | X103806570Y-61005067D01* 222 | X103806570Y-61005067D02* 223 | X103803081Y-61132795D01* 224 | X103803081Y-61132795D02* 225 | X103723652Y-61232883D01* 226 | X103723652Y-61232883D02* 227 | X103620074Y-61281182D01* 228 | X103102184Y-61522678D02* 229 | X103181613Y-61422590D01* 230 | X103181613Y-61422590D02* 231 | X103209252Y-61346651D01* 232 | X103209252Y-61346651D02* 233 | X103212742Y-61218924D01* 234 | X103212742Y-61218924D02* 235 | X103067844Y-60908189D01* 236 | X103067844Y-60908189D02* 237 | X102967756Y-60828761D01* 238 | X102967756Y-60828761D02* 239 | X102891817Y-60801122D01* 240 | X102891817Y-60801122D02* 241 | X102764090Y-60797632D01* 242 | X102764090Y-60797632D02* 243 | X102608723Y-60870081D01* 244 | X102608723Y-60870081D02* 245 | X102529294Y-60970169D01* 246 | X102529294Y-60970169D02* 247 | X102501655Y-61046108D01* 248 | X102501655Y-61046108D02* 249 | X102498165Y-61173835D01* 250 | X102498165Y-61173835D02* 251 | X102643063Y-61484569D01* 252 | X102643063Y-61484569D02* 253 | X102743151Y-61563998D01* 254 | X102743151Y-61563998D02* 255 | X102819089Y-61591637D01* 256 | X102819089Y-61591637D02* 257 | X102946817Y-61595127D01* 258 | X102946817Y-61595127D02* 259 | X103102184Y-61522678D01* 260 | X101921785Y-60749054D02* 261 | X101300317Y-61038849D01* 262 | X102118193Y-61981521D02* 263 | X101611051Y-60893951D01* 264 | X100978834Y-62512812D02* 265 | X100713189Y-61943133D01* 266 | X100713189Y-61943133D02* 267 | X100716679Y-61815405D01* 268 | X100716679Y-61815405D02* 269 | X100796107Y-61715317D01* 270 | X100796107Y-61715317D02* 271 | X101003263Y-61618719D01* 272 | X101003263Y-61618719D02* 273 | X101130991Y-61622209D01* 274 | X100954685Y-62461023D02* 275 | X101082413Y-62464513D01* 276 | X101082413Y-62464513D02* 277 | X101341358Y-62343765D01* 278 | X101341358Y-62343765D02* 279 | X101420786Y-62243677D01* 280 | X101420786Y-62243677D02* 281 | X101424276Y-62115949D01* 282 | X101424276Y-62115949D02* 283 | X101375977Y-62012371D01* 284 | X101375977Y-62012371D02* 285 | X101275888Y-61932943D01* 286 | X101275888Y-61932943D02* 287 | X101148161Y-61929453D01* 288 | X101148161Y-61929453D02* 289 | X100889216Y-62050201D01* 290 | X100889216Y-62050201D02* 291 | X100761488Y-62046711D01* 292 | X100122850Y-62029262D02* 293 | X100629992Y-63116831D01* 294 | X100147000Y-62081051D02* 295 | X100019272Y-62077561D01* 296 | X100019272Y-62077561D02* 297 | X99812116Y-62174160D01* 298 | X99812116Y-62174160D02* 299 | X99732687Y-62274248D01* 300 | X99732687Y-62274248D02* 301 | X99705048Y-62350187D01* 302 | X99705048Y-62350187D02* 303 | X99701558Y-62477914D01* 304 | X99701558Y-62477914D02* 305 | X99846456Y-62788648D01* 306 | X99846456Y-62788648D02* 307 | X99946544Y-62868077D01* 308 | X99946544Y-62868077D02* 309 | X100022483Y-62895716D01* 310 | X100022483Y-62895716D02* 311 | X100150210Y-62899206D01* 312 | X100150210Y-62899206D02* 313 | X100357367Y-62802608D01* 314 | X100357367Y-62802608D02* 315 | X100436795Y-62702519D01* 316 | D10* 317 | X117177380Y-61243904D02* 318 | X117558332Y-61243904D01* 319 | X117558332Y-61243904D02* 320 | X117596428Y-61624857D01* 321 | X117596428Y-61624857D02* 322 | X117558332Y-61586761D01* 323 | X117558332Y-61586761D02* 324 | X117482142Y-61548666D01* 325 | X117482142Y-61548666D02* 326 | X117291666Y-61548666D01* 327 | X117291666Y-61548666D02* 328 | X117215475Y-61586761D01* 329 | X117215475Y-61586761D02* 330 | X117177380Y-61624857D01* 331 | X117177380Y-61624857D02* 332 | X117139285Y-61701047D01* 333 | X117139285Y-61701047D02* 334 | X117139285Y-61891523D01* 335 | X117139285Y-61891523D02* 336 | X117177380Y-61967714D01* 337 | X117177380Y-61967714D02* 338 | X117215475Y-62005809D01* 339 | X117215475Y-62005809D02* 340 | X117291666Y-62043904D01* 341 | X117291666Y-62043904D02* 342 | X117482142Y-62043904D01* 343 | X117482142Y-62043904D02* 344 | X117558332Y-62005809D01* 345 | X117558332Y-62005809D02* 346 | X117596428Y-61967714D01* 347 | X116910713Y-61243904D02* 348 | X116644046Y-62043904D01* 349 | X116644046Y-62043904D02* 350 | X116377380Y-61243904D01* 351 | X107640476Y-61282000D02* 352 | X107716666Y-61243904D01* 353 | X107716666Y-61243904D02* 354 | X107830952Y-61243904D01* 355 | X107830952Y-61243904D02* 356 | X107945238Y-61282000D01* 357 | X107945238Y-61282000D02* 358 | X108021428Y-61358190D01* 359 | X108021428Y-61358190D02* 360 | X108059523Y-61434380D01* 361 | X108059523Y-61434380D02* 362 | X108097619Y-61586761D01* 363 | X108097619Y-61586761D02* 364 | X108097619Y-61701047D01* 365 | X108097619Y-61701047D02* 366 | X108059523Y-61853428D01* 367 | X108059523Y-61853428D02* 368 | X108021428Y-61929619D01* 369 | X108021428Y-61929619D02* 370 | X107945238Y-62005809D01* 371 | X107945238Y-62005809D02* 372 | X107830952Y-62043904D01* 373 | X107830952Y-62043904D02* 374 | X107754761Y-62043904D01* 375 | X107754761Y-62043904D02* 376 | X107640476Y-62005809D01* 377 | X107640476Y-62005809D02* 378 | X107602380Y-61967714D01* 379 | X107602380Y-61967714D02* 380 | X107602380Y-61701047D01* 381 | X107602380Y-61701047D02* 382 | X107754761Y-61701047D01* 383 | D12* 384 | %TO.C,U1*% 385 | X113161904Y-63467380D02* 386 | X113161904Y-64276904D01* 387 | X113161904Y-64276904D02* 388 | X113114285Y-64372142D01* 389 | X113114285Y-64372142D02* 390 | X113066666Y-64419761D01* 391 | X113066666Y-64419761D02* 392 | X112971428Y-64467380D01* 393 | X112971428Y-64467380D02* 394 | X112780952Y-64467380D01* 395 | X112780952Y-64467380D02* 396 | X112685714Y-64419761D01* 397 | X112685714Y-64419761D02* 398 | X112638095Y-64372142D01* 399 | X112638095Y-64372142D02* 400 | X112590476Y-64276904D01* 401 | X112590476Y-64276904D02* 402 | X112590476Y-63467380D01* 403 | X111590476Y-64467380D02* 404 | X112161904Y-64467380D01* 405 | X111876190Y-64467380D02* 406 | X111876190Y-63467380D01* 407 | X111876190Y-63467380D02* 408 | X111971428Y-63610238D01* 409 | X111971428Y-63610238D02* 410 | X112066666Y-63705476D01* 411 | X112066666Y-63705476D02* 412 | X112161904Y-63753095D01* 413 | D10* 414 | X114966667Y-67213964D02* 415 | X114783334Y-67213964D01* 416 | X114704762Y-67502059D02* 417 | X114966667Y-67502059D01* 418 | X114966667Y-67502059D02* 419 | X114966667Y-66952059D01* 420 | X114966667Y-66952059D02* 421 | X114704762Y-66952059D01* 422 | X114469048Y-67213964D02* 423 | X114285715Y-67213964D01* 424 | X114207143Y-67502059D02* 425 | X114469048Y-67502059D01* 426 | X114469048Y-67502059D02* 427 | X114469048Y-66952059D01* 428 | X114469048Y-66952059D02* 429 | X114207143Y-66952059D01* 430 | X113971429Y-67292535D02* 431 | X113552382Y-67292535D01* 432 | X113316668Y-67475869D02* 433 | X113238096Y-67502059D01* 434 | X113238096Y-67502059D02* 435 | X113107144Y-67502059D01* 436 | X113107144Y-67502059D02* 437 | X113054763Y-67475869D01* 438 | X113054763Y-67475869D02* 439 | X113028572Y-67449678D01* 440 | X113028572Y-67449678D02* 441 | X113002382Y-67397297D01* 442 | X113002382Y-67397297D02* 443 | X113002382Y-67344916D01* 444 | X113002382Y-67344916D02* 445 | X113028572Y-67292535D01* 446 | X113028572Y-67292535D02* 447 | X113054763Y-67266345D01* 448 | X113054763Y-67266345D02* 449 | X113107144Y-67240154D01* 450 | X113107144Y-67240154D02* 451 | X113211906Y-67213964D01* 452 | X113211906Y-67213964D02* 453 | X113264287Y-67187773D01* 454 | X113264287Y-67187773D02* 455 | X113290477Y-67161583D01* 456 | X113290477Y-67161583D02* 457 | X113316668Y-67109202D01* 458 | X113316668Y-67109202D02* 459 | X113316668Y-67056821D01* 460 | X113316668Y-67056821D02* 461 | X113290477Y-67004440D01* 462 | X113290477Y-67004440D02* 463 | X113264287Y-66978250D01* 464 | X113264287Y-66978250D02* 465 | X113211906Y-66952059D01* 466 | X113211906Y-66952059D02* 467 | X113080953Y-66952059D01* 468 | X113080953Y-66952059D02* 469 | X113002382Y-66978250D01* 470 | X112819048Y-66952059D02* 471 | X112452381Y-67502059D01* 472 | X112452381Y-66952059D02* 473 | X112819048Y-67502059D01* 474 | X112295238Y-66952059D02* 475 | X111954762Y-66952059D01* 476 | X111954762Y-66952059D02* 477 | X112138095Y-67161583D01* 478 | X112138095Y-67161583D02* 479 | X112059524Y-67161583D01* 480 | X112059524Y-67161583D02* 481 | X112007143Y-67187773D01* 482 | X112007143Y-67187773D02* 483 | X111980952Y-67213964D01* 484 | X111980952Y-67213964D02* 485 | X111954762Y-67266345D01* 486 | X111954762Y-67266345D02* 487 | X111954762Y-67397297D01* 488 | X111954762Y-67397297D02* 489 | X111980952Y-67449678D01* 490 | X111980952Y-67449678D02* 491 | X112007143Y-67475869D01* 492 | X112007143Y-67475869D02* 493 | X112059524Y-67502059D01* 494 | X112059524Y-67502059D02* 495 | X112216667Y-67502059D01* 496 | X112216667Y-67502059D02* 497 | X112269048Y-67475869D01* 498 | X112269048Y-67475869D02* 499 | X112295238Y-67449678D01* 500 | X111326190Y-66925869D02* 501 | X111797619Y-67633011D01* 502 | X110907143Y-67135392D02* 503 | X110907143Y-67502059D01* 504 | X111038095Y-66925869D02* 505 | X111169048Y-67318726D01* 506 | X111169048Y-67318726D02* 507 | X110828571Y-67318726D01* 508 | X110592857Y-67502059D02* 509 | X110488095Y-67502059D01* 510 | X110488095Y-67502059D02* 511 | X110435714Y-67475869D01* 512 | X110435714Y-67475869D02* 513 | X110409523Y-67449678D01* 514 | X110409523Y-67449678D02* 515 | X110357142Y-67371107D01* 516 | X110357142Y-67371107D02* 517 | X110330952Y-67266345D01* 518 | X110330952Y-67266345D02* 519 | X110330952Y-67056821D01* 520 | X110330952Y-67056821D02* 521 | X110357142Y-67004440D01* 522 | X110357142Y-67004440D02* 523 | X110383333Y-66978250D01* 524 | X110383333Y-66978250D02* 525 | X110435714Y-66952059D01* 526 | X110435714Y-66952059D02* 527 | X110540476Y-66952059D01* 528 | X110540476Y-66952059D02* 529 | X110592857Y-66978250D01* 530 | X110592857Y-66978250D02* 531 | X110619047Y-67004440D01* 532 | X110619047Y-67004440D02* 533 | X110645238Y-67056821D01* 534 | X110645238Y-67056821D02* 535 | X110645238Y-67187773D01* 536 | X110645238Y-67187773D02* 537 | X110619047Y-67240154D01* 538 | X110619047Y-67240154D02* 539 | X110592857Y-67266345D01* 540 | X110592857Y-67266345D02* 541 | X110540476Y-67292535D01* 542 | X110540476Y-67292535D02* 543 | X110435714Y-67292535D01* 544 | X110435714Y-67292535D02* 545 | X110383333Y-67266345D01* 546 | X110383333Y-67266345D02* 547 | X110357142Y-67240154D01* 548 | X110357142Y-67240154D02* 549 | X110330952Y-67187773D01* 550 | X110016666Y-67187773D02* 551 | X110069047Y-67161583D01* 552 | X110069047Y-67161583D02* 553 | X110095237Y-67135392D01* 554 | X110095237Y-67135392D02* 555 | X110121428Y-67083011D01* 556 | X110121428Y-67083011D02* 557 | X110121428Y-67056821D01* 558 | X110121428Y-67056821D02* 559 | X110095237Y-67004440D01* 560 | X110095237Y-67004440D02* 561 | X110069047Y-66978250D01* 562 | X110069047Y-66978250D02* 563 | X110016666Y-66952059D01* 564 | X110016666Y-66952059D02* 565 | X109911904Y-66952059D01* 566 | X109911904Y-66952059D02* 567 | X109859523Y-66978250D01* 568 | X109859523Y-66978250D02* 569 | X109833332Y-67004440D01* 570 | X109833332Y-67004440D02* 571 | X109807142Y-67056821D01* 572 | X109807142Y-67056821D02* 573 | X109807142Y-67083011D01* 574 | X109807142Y-67083011D02* 575 | X109833332Y-67135392D01* 576 | X109833332Y-67135392D02* 577 | X109859523Y-67161583D01* 578 | X109859523Y-67161583D02* 579 | X109911904Y-67187773D01* 580 | X109911904Y-67187773D02* 581 | X110016666Y-67187773D01* 582 | X110016666Y-67187773D02* 583 | X110069047Y-67213964D01* 584 | X110069047Y-67213964D02* 585 | X110095237Y-67240154D01* 586 | X110095237Y-67240154D02* 587 | X110121428Y-67292535D01* 588 | X110121428Y-67292535D02* 589 | X110121428Y-67397297D01* 590 | X110121428Y-67397297D02* 591 | X110095237Y-67449678D01* 592 | X110095237Y-67449678D02* 593 | X110069047Y-67475869D01* 594 | X110069047Y-67475869D02* 595 | X110016666Y-67502059D01* 596 | X110016666Y-67502059D02* 597 | X109911904Y-67502059D01* 598 | X109911904Y-67502059D02* 599 | X109859523Y-67475869D01* 600 | X109859523Y-67475869D02* 601 | X109833332Y-67449678D01* 602 | X109833332Y-67449678D02* 603 | X109807142Y-67397297D01* 604 | X109807142Y-67397297D02* 605 | X109807142Y-67292535D01* 606 | X109807142Y-67292535D02* 607 | X109833332Y-67240154D01* 608 | X109833332Y-67240154D02* 609 | X109859523Y-67213964D01* 610 | X109859523Y-67213964D02* 611 | X109911904Y-67187773D01* 612 | X114259523Y-68152059D02* 613 | X114154761Y-68152059D01* 614 | X114154761Y-68152059D02* 615 | X114102380Y-68178250D01* 616 | X114102380Y-68178250D02* 617 | X114049999Y-68230630D01* 618 | X114049999Y-68230630D02* 619 | X114023809Y-68335392D01* 620 | X114023809Y-68335392D02* 621 | X114023809Y-68518726D01* 622 | X114023809Y-68518726D02* 623 | X114049999Y-68623488D01* 624 | X114049999Y-68623488D02* 625 | X114102380Y-68675869D01* 626 | X114102380Y-68675869D02* 627 | X114154761Y-68702059D01* 628 | X114154761Y-68702059D02* 629 | X114259523Y-68702059D01* 630 | X114259523Y-68702059D02* 631 | X114311904Y-68675869D01* 632 | X114311904Y-68675869D02* 633 | X114364285Y-68623488D01* 634 | X114364285Y-68623488D02* 635 | X114390476Y-68518726D01* 636 | X114390476Y-68518726D02* 637 | X114390476Y-68335392D01* 638 | X114390476Y-68335392D02* 639 | X114364285Y-68230630D01* 640 | X114364285Y-68230630D02* 641 | X114311904Y-68178250D01* 642 | X114311904Y-68178250D02* 643 | X114259523Y-68152059D01* 644 | X113788095Y-68702059D02* 645 | X113788095Y-68152059D01* 646 | X113788095Y-68152059D02* 647 | X113578571Y-68152059D01* 648 | X113578571Y-68152059D02* 649 | X113526190Y-68178250D01* 650 | X113526190Y-68178250D02* 651 | X113500000Y-68204440D01* 652 | X113500000Y-68204440D02* 653 | X113473809Y-68256821D01* 654 | X113473809Y-68256821D02* 655 | X113473809Y-68335392D01* 656 | X113473809Y-68335392D02* 657 | X113500000Y-68387773D01* 658 | X113500000Y-68387773D02* 659 | X113526190Y-68413964D01* 660 | X113526190Y-68413964D02* 661 | X113578571Y-68440154D01* 662 | X113578571Y-68440154D02* 663 | X113788095Y-68440154D01* 664 | X113054762Y-68413964D02* 665 | X112976190Y-68440154D01* 666 | X112976190Y-68440154D02* 667 | X112950000Y-68466345D01* 668 | X112950000Y-68466345D02* 669 | X112923809Y-68518726D01* 670 | X112923809Y-68518726D02* 671 | X112923809Y-68597297D01* 672 | X112923809Y-68597297D02* 673 | X112950000Y-68649678D01* 674 | X112950000Y-68649678D02* 675 | X112976190Y-68675869D01* 676 | X112976190Y-68675869D02* 677 | X113028571Y-68702059D01* 678 | X113028571Y-68702059D02* 679 | X113238095Y-68702059D01* 680 | X113238095Y-68702059D02* 681 | X113238095Y-68152059D01* 682 | X113238095Y-68152059D02* 683 | X113054762Y-68152059D01* 684 | X113054762Y-68152059D02* 685 | X113002381Y-68178250D01* 686 | X113002381Y-68178250D02* 687 | X112976190Y-68204440D01* 688 | X112976190Y-68204440D02* 689 | X112950000Y-68256821D01* 690 | X112950000Y-68256821D02* 691 | X112950000Y-68309202D01* 692 | X112950000Y-68309202D02* 693 | X112976190Y-68361583D01* 694 | X112976190Y-68361583D02* 695 | X113002381Y-68387773D01* 696 | X113002381Y-68387773D02* 697 | X113054762Y-68413964D01* 698 | X113054762Y-68413964D02* 699 | X113238095Y-68413964D01* 700 | X112452381Y-68152059D02* 701 | X112557143Y-68152059D01* 702 | X112557143Y-68152059D02* 703 | X112609524Y-68178250D01* 704 | X112609524Y-68178250D02* 705 | X112635714Y-68204440D01* 706 | X112635714Y-68204440D02* 707 | X112688095Y-68283011D01* 708 | X112688095Y-68283011D02* 709 | X112714286Y-68387773D01* 710 | X112714286Y-68387773D02* 711 | X112714286Y-68597297D01* 712 | X112714286Y-68597297D02* 713 | X112688095Y-68649678D01* 714 | X112688095Y-68649678D02* 715 | X112661905Y-68675869D01* 716 | X112661905Y-68675869D02* 717 | X112609524Y-68702059D01* 718 | X112609524Y-68702059D02* 719 | X112504762Y-68702059D01* 720 | X112504762Y-68702059D02* 721 | X112452381Y-68675869D01* 722 | X112452381Y-68675869D02* 723 | X112426190Y-68649678D01* 724 | X112426190Y-68649678D02* 725 | X112400000Y-68597297D01* 726 | X112400000Y-68597297D02* 727 | X112400000Y-68466345D01* 728 | X112400000Y-68466345D02* 729 | X112426190Y-68413964D01* 730 | X112426190Y-68413964D02* 731 | X112452381Y-68387773D01* 732 | X112452381Y-68387773D02* 733 | X112504762Y-68361583D01* 734 | X112504762Y-68361583D02* 735 | X112609524Y-68361583D01* 736 | X112609524Y-68361583D02* 737 | X112661905Y-68387773D01* 738 | X112661905Y-68387773D02* 739 | X112688095Y-68413964D01* 740 | X112688095Y-68413964D02* 741 | X112714286Y-68466345D01* 742 | X111771428Y-68125869D02* 743 | X112242857Y-68833011D01* 744 | X111561905Y-68702059D02* 745 | X111457143Y-68702059D01* 746 | X111457143Y-68702059D02* 747 | X111404762Y-68675869D01* 748 | X111404762Y-68675869D02* 749 | X111378571Y-68649678D01* 750 | X111378571Y-68649678D02* 751 | X111326190Y-68571107D01* 752 | X111326190Y-68571107D02* 753 | X111300000Y-68466345D01* 754 | X111300000Y-68466345D02* 755 | X111300000Y-68256821D01* 756 | X111300000Y-68256821D02* 757 | X111326190Y-68204440D01* 758 | X111326190Y-68204440D02* 759 | X111352381Y-68178250D01* 760 | X111352381Y-68178250D02* 761 | X111404762Y-68152059D01* 762 | X111404762Y-68152059D02* 763 | X111509524Y-68152059D01* 764 | X111509524Y-68152059D02* 765 | X111561905Y-68178250D01* 766 | X111561905Y-68178250D02* 767 | X111588095Y-68204440D01* 768 | X111588095Y-68204440D02* 769 | X111614286Y-68256821D01* 770 | X111614286Y-68256821D02* 771 | X111614286Y-68387773D01* 772 | X111614286Y-68387773D02* 773 | X111588095Y-68440154D01* 774 | X111588095Y-68440154D02* 775 | X111561905Y-68466345D01* 776 | X111561905Y-68466345D02* 777 | X111509524Y-68492535D01* 778 | X111509524Y-68492535D02* 779 | X111404762Y-68492535D01* 780 | X111404762Y-68492535D02* 781 | X111352381Y-68466345D01* 782 | X111352381Y-68466345D02* 783 | X111326190Y-68440154D01* 784 | X111326190Y-68440154D02* 785 | X111300000Y-68387773D01* 786 | X111116666Y-68702059D02* 787 | X110828571Y-68335392D01* 788 | X111116666Y-68335392D02* 789 | X110828571Y-68702059D01* 790 | X110671428Y-68702059D02* 791 | X110383333Y-68335392D01* 792 | X110671428Y-68335392D02* 793 | X110383333Y-68702059D01* 794 | %TO.C,kibuzzard-6366BF75*% 795 | G36* 796 | X122919144Y-62030653D02* 797 | G01* 798 | X123006952Y-62095902D01* 799 | X123066070Y-62196380D01* 800 | X123084310Y-62276215D01* 801 | X123079332Y-62358263D01* 802 | X123051134Y-62442523D01* 803 | X123004632Y-62518249D01* 804 | X122944741Y-62574690D01* 805 | X122871459Y-62611848D01* 806 | X122755948Y-62630894D01* 807 | X122649343Y-62605487D01* 808 | X122561284Y-62540778D01* 809 | X122501410Y-62441918D01* 810 | X122482760Y-62362963D01* 811 | X122487851Y-62280675D01* 812 | X122516681Y-62195056D01* 813 | X122563892Y-62117812D01* 814 | X122624119Y-62060652D01* 815 | X122697363Y-62023574D01* 816 | X122812623Y-62005066D01* 817 | X122919144Y-62030653D01* 818 | G37* 819 | G36* 820 | X118638621Y-61413715D02* 821 | G01* 822 | X118583361Y-61387947D01* 823 | X119512430Y-61387947D01* 824 | X119537188Y-61436276D01* 825 | X119606539Y-61479125D01* 826 | X119683942Y-61504709D01* 827 | X119737213Y-61491889D01* 828 | X119768996Y-61459417D01* 829 | X119794971Y-61409347D01* 830 | X119921773Y-61137420D01* 831 | X120449248Y-60817616D01* 832 | X120517898Y-60756791D01* 833 | X120523121Y-60704270D01* 834 | X120495853Y-60638788D01* 835 | X120425003Y-60554077D01* 836 | X120376473Y-60545460D01* 837 | X120297170Y-60580297D01* 838 | X119907776Y-60833119D01* 839 | X119851153Y-60372316D01* 840 | X119830174Y-60293345D01* 841 | X119789789Y-60257872D01* 842 | X119688848Y-60254593D01* 843 | X119613498Y-60278135D01* 844 | X119574069Y-60316677D01* 845 | X119571602Y-60408363D01* 846 | X119665673Y-61017999D01* 847 | X119537529Y-61292803D01* 848 | X119516541Y-61343446D01* 849 | X119512430Y-61387947D01* 850 | X118583361Y-61387947D01* 851 | X118338879Y-61273943D01* 852 | X118306320Y-61060925D01* 853 | X118822398Y-61060925D01* 854 | X118846832Y-61110417D01* 855 | X118913008Y-61153973D01* 856 | X118988576Y-61180673D01* 857 | X119041191Y-61179590D01* 858 | X119081438Y-61148218D01* 859 | X119119900Y-61084046D01* 860 | X119144761Y-60993169D01* 861 | X119118657Y-60934579D01* 862 | X119046975Y-60891095D01* 863 | X119031273Y-60881570D01* 864 | X118927884Y-60866640D01* 865 | X118859573Y-60939882D01* 866 | X118848838Y-60962903D01* 867 | X118827180Y-61014985D01* 868 | X118822398Y-61060925D01* 869 | X118306320Y-61060925D01* 870 | X118249987Y-60692359D01* 871 | X119003022Y-60692359D01* 872 | X119030127Y-60735652D01* 873 | X119100149Y-60777062D01* 874 | X119176881Y-60804084D01* 875 | X119227085Y-60795966D01* 876 | X119255464Y-60768913D01* 877 | X119278421Y-60725317D01* 878 | X119491098Y-60269229D01* 879 | X119510073Y-60222901D01* 880 | X119512171Y-60182717D01* 881 | X119485736Y-60137985D01* 882 | X119416050Y-60095856D01* 883 | X119338982Y-60069552D01* 884 | X119288108Y-60079111D01* 885 | X119259057Y-60107603D01* 886 | X119235766Y-60151917D01* 887 | X119023088Y-60608006D01* 888 | X119004448Y-60653613D01* 889 | X119003022Y-60692359D01* 890 | X118249987Y-60692359D01* 891 | X118169569Y-60166212D01* 892 | X119126970Y-59583875D01* 893 | X119426713Y-59723647D01* 894 | X125967332Y-62773588D01* 895 | X126267075Y-62913361D01* 896 | X126830431Y-63176058D01* 897 | X125873029Y-63758395D01* 898 | X126042339Y-64866126D01* 899 | X125478984Y-64603429D01* 900 | X125179240Y-64463656D01* 901 | X124835376Y-64303310D01* 902 | X123867088Y-63851790D01* 903 | X123484435Y-63673356D01* 904 | X124745525Y-63673356D01* 905 | X124767593Y-63776287D01* 906 | X124814480Y-63870649D01* 907 | X124883665Y-63946409D01* 908 | X124975148Y-64003568D01* 909 | X125064978Y-64036308D01* 910 | X125156060Y-64051338D01* 911 | X125248394Y-64048658D01* 912 | X125297109Y-64038094D01* 913 | X125313316Y-64033389D01* 914 | X125408243Y-63972558D01* 915 | X125398618Y-63854216D01* 916 | X125337310Y-63767823D01* 917 | X125219443Y-63768913D01* 918 | X125115432Y-63757196D01* 919 | X125033221Y-63685579D01* 920 | X125037511Y-63595620D01* 921 | X125106879Y-63535132D01* 922 | X125196935Y-63542969D01* 923 | X125253920Y-63601071D01* 924 | X125316902Y-63670726D01* 925 | X125420291Y-63685657D01* 926 | X125507656Y-63672972D01* 927 | X125539919Y-63645102D01* 928 | X125564091Y-63574485D01* 929 | X125619160Y-63400043D01* 930 | X125672696Y-63227951D01* 931 | X125692266Y-63164385D01* 932 | X125696283Y-63129474D01* 933 | X125693537Y-63080899D01* 934 | X125670553Y-63032522D01* 935 | X125618656Y-62991682D01* 936 | X125399293Y-62891144D01* 937 | X125264049Y-62828078D01* 938 | X125212686Y-62806754D01* 939 | X125168905Y-62802979D01* 940 | X125121656Y-62828239D01* 941 | X125076386Y-62899966D01* 942 | X125053007Y-62973579D01* 943 | X125063378Y-63021768D01* 944 | X125092255Y-63051874D01* 945 | X125138008Y-63075836D01* 946 | X125389792Y-63193244D01* 947 | X125353190Y-63309300D01* 948 | X125304176Y-63282941D01* 949 | X125210762Y-63253297D01* 950 | X125112762Y-63249345D01* 951 | X125010177Y-63271087D01* 952 | X124915064Y-63316457D01* 953 | X124839479Y-63383388D01* 954 | X124783422Y-63471882D01* 955 | X124750802Y-63571888D01* 956 | X124745525Y-63673356D01* 957 | X123484435Y-63673356D01* 958 | X122386601Y-63161427D01* 959 | X120982367Y-62506622D01* 960 | X120100841Y-62095560D01* 961 | X121037423Y-62095560D01* 962 | X121061965Y-62142474D01* 963 | X121131532Y-62186737D01* 964 | X121213251Y-62214334D01* 965 | X121261967Y-62203769D01* 966 | X121426934Y-62115654D01* 967 | X121571839Y-62038424D01* 968 | X121696681Y-61972080D01* 969 | X121801462Y-61916622D01* 970 | X121886181Y-61872050D01* 971 | X121950836Y-61838362D01* 972 | X121730108Y-62311716D01* 973 | X121708785Y-62363079D01* 974 | X121705010Y-62406860D01* 975 | X121729551Y-62453774D01* 976 | X121799118Y-62498038D01* 977 | X121875585Y-62521871D01* 978 | X121926579Y-62510180D01* 979 | X121958361Y-62477707D01* 980 | X121984001Y-62428356D01* 981 | X122045265Y-62296974D01* 982 | X122204663Y-62296974D01* 983 | X122208108Y-62411669D01* 984 | X122234197Y-62526632D01* 985 | X122280601Y-62633717D01* 986 | X122344989Y-62724774D01* 987 | X122427360Y-62799804D01* 988 | X122527715Y-62858807D01* 989 | X122637582Y-62897996D01* 990 | X122748491Y-62913587D01* 991 | X122860442Y-62905579D01* 992 | X122973435Y-62873973D01* 993 | X123079133Y-62822323D01* 994 | X123169200Y-62754190D01* 995 | X123243637Y-62669571D01* 996 | X123302440Y-62568468D01* 997 | X123345574Y-62447795D01* 998 | X123350313Y-62415416D01* 999 | X123913306Y-62415416D01* 1000 | X123934697Y-63406294D01* 1001 | X123959079Y-63479846D01* 1002 | X124016924Y-63530465D01* 1003 | X124031311Y-63537175D01* 1004 | X124108711Y-63549620D01* 1005 | X124180726Y-63521019D01* 1006 | X124953532Y-62900482D01* 1007 | X125007317Y-62841485D01* 1008 | X125008571Y-62783390D01* 1009 | X124965368Y-62709820D01* 1010 | X124904116Y-62651480D01* 1011 | X124863305Y-62639456D01* 1012 | X124829454Y-62648193D01* 1013 | X124787935Y-62675251D01* 1014 | X124749906Y-62706563D01* 1015 | X124676857Y-62768838D01* 1016 | X124583255Y-62848898D01* 1017 | X124483563Y-62933564D01* 1018 | X124383691Y-63018145D01* 1019 | X124289549Y-63097953D01* 1020 | X124218309Y-63158226D01* 1021 | X124187148Y-63184201D01* 1022 | X124193253Y-62419840D01* 1023 | X124193237Y-62367286D01* 1024 | X124148046Y-62298919D01* 1025 | X124051753Y-62283795D01* 1026 | X123967626Y-62297989D01* 1027 | X123923928Y-62336292D01* 1028 | X123913306Y-62415416D01* 1029 | X123350313Y-62415416D01* 1030 | X123363603Y-62324612D01* 1031 | X123357946Y-62205273D01* 1032 | X123330017Y-62096130D01* 1033 | X123282036Y-61997123D01* 1034 | X123216220Y-61908192D01* 1035 | X123135350Y-61833697D01* 1036 | X123042211Y-61778005D01* 1037 | X122934763Y-61739615D01* 1038 | X122825355Y-61723738D01* 1039 | X122713988Y-61730377D01* 1040 | X122600661Y-61759529D01* 1041 | X122493998Y-61809140D01* 1042 | X122402617Y-61877155D01* 1043 | X122326522Y-61963572D01* 1044 | X122265711Y-62068392D01* 1045 | X122223864Y-62182549D01* 1046 | X122204663Y-62296974D01* 1047 | X122045265Y-62296974D01* 1048 | X122358367Y-61625526D01* 1049 | X122381934Y-61539301D01* 1050 | X122356696Y-61486370D01* 1051 | X122290222Y-61444862D01* 1052 | X122218191Y-61420908D01* 1053 | X122174555Y-61422456D01* 1054 | X122124019Y-61444432D01* 1055 | X121967873Y-61529702D01* 1056 | X121830185Y-61604604D01* 1057 | X121710954Y-61669137D01* 1058 | X121610183Y-61723304D01* 1059 | X121527869Y-61767100D01* 1060 | X121464014Y-61800528D01* 1061 | X121690781Y-61314226D01* 1062 | X121714348Y-61228001D01* 1063 | X121689109Y-61175069D01* 1064 | X121624794Y-61134568D01* 1065 | X121555256Y-61110900D01* 1066 | X121509797Y-61110722D01* 1067 | X121477723Y-61132550D01* 1068 | X121434875Y-61201901D01* 1069 | X121062522Y-62000415D01* 1070 | X121041199Y-62051778D01* 1071 | X121037423Y-62095560D01* 1072 | X120100841Y-62095560D01* 1073 | X120094650Y-62092673D01* 1074 | X119458716Y-61796132D01* 1075 | X119210646Y-61680455D01* 1076 | X120166009Y-61680455D01* 1077 | X120175708Y-61723513D01* 1078 | X120243815Y-61772788D01* 1079 | X120761769Y-62014314D01* 1080 | X120847995Y-62037881D01* 1081 | X120905243Y-62014656D01* 1082 | X120948092Y-61945304D01* 1083 | X121321116Y-61145351D01* 1084 | X121342104Y-61094707D01* 1085 | X121346215Y-61050207D01* 1086 | X121321673Y-61003293D01* 1087 | X121252106Y-60959029D01* 1088 | X121165689Y-60934935D01* 1089 | X121107865Y-60956578D01* 1090 | X121065784Y-61028040D01* 1091 | X120733014Y-61741667D01* 1092 | X120341670Y-61559180D01* 1093 | X120267578Y-61537767D01* 1094 | X120223037Y-61558160D01* 1095 | X120187329Y-61615953D01* 1096 | X120166009Y-61680455D01* 1097 | X119210646Y-61680455D01* 1098 | X118764513Y-61472420D01* 1099 | X118638621Y-61413715D01* 1100 | G37* 1101 | D13* 1102 | %TO.C,U1*% 1103 | X118700000Y-69000000D02* 1104 | X106100000Y-69000000D01* 1105 | X118700000Y-62000000D02* 1106 | X118700000Y-69000000D01* 1107 | X118700000Y-62000000D02* 1108 | X106100000Y-62000000D01* 1109 | D14* 1110 | X118500000Y-63000000D02* 1111 | X118500000Y-68000000D01* 1112 | X106300000Y-68000000D02* 1113 | X118500000Y-68000000D01* 1114 | X106300000Y-68000000D02* 1115 | X106300000Y-63000000D01* 1116 | X106300000Y-63000000D02* 1117 | X118500000Y-63000000D01* 1118 | D13* 1119 | X106100000Y-62000000D02* 1120 | X106100000Y-69000000D01* 1121 | D11* 1122 | X105600000Y-66800000D02* 1123 | G75* 1124 | G03* 1125 | X105600000Y-66800000I-100000J0D01* 1126 | G01* 1127 | %TD*% 1128 | %LPC*% 1129 | D15* 1130 | %TO.C,*% 1131 | X122000000Y-65500000D03* 1132 | %TD*% 1133 | D16* 1134 | %TO.C,J1*% 1135 | X107799999Y-60199999D03* 1136 | %TD*% 1137 | %TO.C,J2*% 1138 | X112399999Y-60199999D03* 1139 | %TD*% 1140 | D15* 1141 | %TO.C,*% 1142 | X102750000Y-65500000D03* 1143 | %TD*% 1144 | D16* 1145 | %TO.C,J3*% 1146 | X116999999Y-60199999D03* 1147 | %TD*% 1148 | D17* 1149 | %TO.C,U1*% 1150 | X108067999Y-66769999D03* 1151 | D18* 1152 | X108067999Y-64229999D03* 1153 | D19* 1154 | X116731999Y-63846999D03* 1155 | D18* 1156 | X116731999Y-65499999D03* 1157 | D20* 1158 | X116731999Y-67152999D03* 1159 | %TD*% 1160 | M02* 1161 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-SilkTop.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:10:56-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Legend,Top*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:10:56* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | %AMHorizOval* 32 | 0 Thick line with rounded ends* 33 | 0 $1 width* 34 | 0 $2 $3 position (X,Y) of the first rounded end (center of the circle)* 35 | 0 $4 $5 position (X,Y) of the second rounded end (center of the circle)* 36 | 0 Add line between two ends* 37 | 20,1,$1,$2,$3,$4,$5,0* 38 | 0 Add two circle primitives to create the rounded ends* 39 | 1,1,$1,$2,$3* 40 | 1,1,$1,$4,$5*% 41 | %AMFreePoly0* 42 | 4,1,19,0.500000,-0.750000,0.000000,-0.750000,0.000000,-0.744911,-0.071157,-0.744911,-0.207708,-0.704816,-0.327430,-0.627875,-0.420627,-0.520320,-0.479746,-0.390866,-0.500000,-0.250000,-0.500000,0.250000,-0.479746,0.390866,-0.420627,0.520320,-0.327430,0.627875,-0.207708,0.704816,-0.071157,0.744911,0.000000,0.744911,0.000000,0.750000,0.500000,0.750000,0.500000,-0.750000,0.500000,-0.750000, 43 | $1*% 44 | %AMFreePoly1* 45 | 4,1,19,0.000000,0.744911,0.071157,0.744911,0.207708,0.704816,0.327430,0.627875,0.420627,0.520320,0.479746,0.390866,0.500000,0.250000,0.500000,-0.250000,0.479746,-0.390866,0.420627,-0.520320,0.327430,-0.627875,0.207708,-0.704816,0.071157,-0.744911,0.000000,-0.744911,0.000000,-0.750000,-0.500000,-0.750000,-0.500000,0.750000,0.000000,0.750000,0.000000,0.744911,0.000000,0.744911, 46 | $1*% 47 | G04 Aperture macros list end* 48 | %ADD10C,0.150000*% 49 | %ADD11C,0.100000*% 50 | %ADD12C,0.120000*% 51 | %ADD13FreePoly0,90.000000*% 52 | %ADD14FreePoly1,90.000000*% 53 | %ADD15C,3.200000*% 54 | %ADD16R,1.700000X1.700000*% 55 | %ADD17RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 56 | %ADD18R,0.700000X0.600000*% 57 | %ADD19R,1.782000X0.958000*% 58 | %ADD20O,1.782000X0.958000*% 59 | %ADD21HorizOval,0.955000X0.279101X-0.263011X-0.279101X0.263011X0*% 60 | %ADD22HorizOval,0.955000X0.279101X0.263011X-0.279101X-0.263011X0*% 61 | G04 APERTURE END LIST* 62 | D10* 63 | X108036904Y-61390000D02* 64 | X107941666Y-61342380D01* 65 | X107941666Y-61342380D02* 66 | X107798809Y-61342380D01* 67 | X107798809Y-61342380D02* 68 | X107655952Y-61390000D01* 69 | X107655952Y-61390000D02* 70 | X107560714Y-61485238D01* 71 | X107560714Y-61485238D02* 72 | X107513095Y-61580476D01* 73 | X107513095Y-61580476D02* 74 | X107465476Y-61770952D01* 75 | X107465476Y-61770952D02* 76 | X107465476Y-61913809D01* 77 | X107465476Y-61913809D02* 78 | X107513095Y-62104285D01* 79 | X107513095Y-62104285D02* 80 | X107560714Y-62199523D01* 81 | X107560714Y-62199523D02* 82 | X107655952Y-62294761D01* 83 | X107655952Y-62294761D02* 84 | X107798809Y-62342380D01* 85 | X107798809Y-62342380D02* 86 | X107894047Y-62342380D01* 87 | X107894047Y-62342380D02* 88 | X108036904Y-62294761D01* 89 | X108036904Y-62294761D02* 90 | X108084523Y-62247142D01* 91 | X108084523Y-62247142D02* 92 | X108084523Y-61913809D01* 93 | X108084523Y-61913809D02* 94 | X107894047Y-61913809D01* 95 | D11* 96 | X114128572Y-63484428D02* 97 | X114128572Y-62884428D01* 98 | X114128572Y-63455857D02* 99 | X114071429Y-63484428D01* 100 | X114071429Y-63484428D02* 101 | X113957143Y-63484428D01* 102 | X113957143Y-63484428D02* 103 | X113900000Y-63455857D01* 104 | X113900000Y-63455857D02* 105 | X113871429Y-63427285D01* 106 | X113871429Y-63427285D02* 107 | X113842857Y-63370142D01* 108 | X113842857Y-63370142D02* 109 | X113842857Y-63198714D01* 110 | X113842857Y-63198714D02* 111 | X113871429Y-63141571D01* 112 | X113871429Y-63141571D02* 113 | X113900000Y-63113000D01* 114 | X113900000Y-63113000D02* 115 | X113957143Y-63084428D01* 116 | X113957143Y-63084428D02* 117 | X114071429Y-63084428D01* 118 | X114071429Y-63084428D02* 119 | X114128572Y-63113000D01* 120 | X114671429Y-63484428D02* 121 | X114671429Y-63170142D01* 122 | X114671429Y-63170142D02* 123 | X114642857Y-63113000D01* 124 | X114642857Y-63113000D02* 125 | X114585714Y-63084428D01* 126 | X114585714Y-63084428D02* 127 | X114471429Y-63084428D01* 128 | X114471429Y-63084428D02* 129 | X114414286Y-63113000D01* 130 | X114671429Y-63455857D02* 131 | X114614286Y-63484428D01* 132 | X114614286Y-63484428D02* 133 | X114471429Y-63484428D01* 134 | X114471429Y-63484428D02* 135 | X114414286Y-63455857D01* 136 | X114414286Y-63455857D02* 137 | X114385714Y-63398714D01* 138 | X114385714Y-63398714D02* 139 | X114385714Y-63341571D01* 140 | X114385714Y-63341571D02* 141 | X114414286Y-63284428D01* 142 | X114414286Y-63284428D02* 143 | X114471429Y-63255857D01* 144 | X114471429Y-63255857D02* 145 | X114614286Y-63255857D01* 146 | X114614286Y-63255857D02* 147 | X114671429Y-63227285D01* 148 | X114957143Y-63484428D02* 149 | X114957143Y-63084428D01* 150 | X114957143Y-63198714D02* 151 | X114985714Y-63141571D01* 152 | X114985714Y-63141571D02* 153 | X115014286Y-63113000D01* 154 | X115014286Y-63113000D02* 155 | X115071428Y-63084428D01* 156 | X115071428Y-63084428D02* 157 | X115128571Y-63084428D01* 158 | X115328572Y-63484428D02* 159 | X115328572Y-62884428D01* 160 | X115385715Y-63255857D02* 161 | X115557143Y-63484428D01* 162 | X115557143Y-63084428D02* 163 | X115328572Y-63313000D01* 164 | X113642857Y-64456428D02* 165 | X113642857Y-64056428D01* 166 | X113642857Y-64113571D02* 167 | X113671428Y-64085000D01* 168 | X113671428Y-64085000D02* 169 | X113728571Y-64056428D01* 170 | X113728571Y-64056428D02* 171 | X113814285Y-64056428D01* 172 | X113814285Y-64056428D02* 173 | X113871428Y-64085000D01* 174 | X113871428Y-64085000D02* 175 | X113900000Y-64142142D01* 176 | X113900000Y-64142142D02* 177 | X113900000Y-64456428D01* 178 | X113900000Y-64142142D02* 179 | X113928571Y-64085000D01* 180 | X113928571Y-64085000D02* 181 | X113985714Y-64056428D01* 182 | X113985714Y-64056428D02* 183 | X114071428Y-64056428D01* 184 | X114071428Y-64056428D02* 185 | X114128571Y-64085000D01* 186 | X114128571Y-64085000D02* 187 | X114157142Y-64142142D01* 188 | X114157142Y-64142142D02* 189 | X114157142Y-64456428D01* 190 | X114528571Y-64456428D02* 191 | X114471428Y-64427857D01* 192 | X114471428Y-64427857D02* 193 | X114442857Y-64399285D01* 194 | X114442857Y-64399285D02* 195 | X114414285Y-64342142D01* 196 | X114414285Y-64342142D02* 197 | X114414285Y-64170714D01* 198 | X114414285Y-64170714D02* 199 | X114442857Y-64113571D01* 200 | X114442857Y-64113571D02* 201 | X114471428Y-64085000D01* 202 | X114471428Y-64085000D02* 203 | X114528571Y-64056428D01* 204 | X114528571Y-64056428D02* 205 | X114614285Y-64056428D01* 206 | X114614285Y-64056428D02* 207 | X114671428Y-64085000D01* 208 | X114671428Y-64085000D02* 209 | X114700000Y-64113571D01* 210 | X114700000Y-64113571D02* 211 | X114728571Y-64170714D01* 212 | X114728571Y-64170714D02* 213 | X114728571Y-64342142D01* 214 | X114728571Y-64342142D02* 215 | X114700000Y-64399285D01* 216 | X114700000Y-64399285D02* 217 | X114671428Y-64427857D01* 218 | X114671428Y-64427857D02* 219 | X114614285Y-64456428D01* 220 | X114614285Y-64456428D02* 221 | X114528571Y-64456428D01* 222 | X115242857Y-64456428D02* 223 | X115242857Y-63856428D01* 224 | X115242857Y-64427857D02* 225 | X115185714Y-64456428D01* 226 | X115185714Y-64456428D02* 227 | X115071428Y-64456428D01* 228 | X115071428Y-64456428D02* 229 | X115014285Y-64427857D01* 230 | X115014285Y-64427857D02* 231 | X114985714Y-64399285D01* 232 | X114985714Y-64399285D02* 233 | X114957142Y-64342142D01* 234 | X114957142Y-64342142D02* 235 | X114957142Y-64170714D01* 236 | X114957142Y-64170714D02* 237 | X114985714Y-64113571D01* 238 | X114985714Y-64113571D02* 239 | X115014285Y-64085000D01* 240 | X115014285Y-64085000D02* 241 | X115071428Y-64056428D01* 242 | X115071428Y-64056428D02* 243 | X115185714Y-64056428D01* 244 | X115185714Y-64056428D02* 245 | X115242857Y-64085000D01* 246 | X115757142Y-64427857D02* 247 | X115699999Y-64456428D01* 248 | X115699999Y-64456428D02* 249 | X115585714Y-64456428D01* 250 | X115585714Y-64456428D02* 251 | X115528571Y-64427857D01* 252 | X115528571Y-64427857D02* 253 | X115499999Y-64370714D01* 254 | X115499999Y-64370714D02* 255 | X115499999Y-64142142D01* 256 | X115499999Y-64142142D02* 257 | X115528571Y-64085000D01* 258 | X115528571Y-64085000D02* 259 | X115585714Y-64056428D01* 260 | X115585714Y-64056428D02* 261 | X115699999Y-64056428D01* 262 | X115699999Y-64056428D02* 263 | X115757142Y-64085000D01* 264 | X115757142Y-64085000D02* 265 | X115785714Y-64142142D01* 266 | X115785714Y-64142142D02* 267 | X115785714Y-64199285D01* 268 | X115785714Y-64199285D02* 269 | X115499999Y-64256428D01* 270 | D10* 271 | X116734523Y-61292380D02* 272 | X116258333Y-61292380D01* 273 | X116258333Y-61292380D02* 274 | X116210714Y-61768571D01* 275 | X116210714Y-61768571D02* 276 | X116258333Y-61720952D01* 277 | X116258333Y-61720952D02* 278 | X116353571Y-61673333D01* 279 | X116353571Y-61673333D02* 280 | X116591666Y-61673333D01* 281 | X116591666Y-61673333D02* 282 | X116686904Y-61720952D01* 283 | X116686904Y-61720952D02* 284 | X116734523Y-61768571D01* 285 | X116734523Y-61768571D02* 286 | X116782142Y-61863809D01* 287 | X116782142Y-61863809D02* 288 | X116782142Y-62101904D01* 289 | X116782142Y-62101904D02* 290 | X116734523Y-62197142D01* 291 | X116734523Y-62197142D02* 292 | X116686904Y-62244761D01* 293 | X116686904Y-62244761D02* 294 | X116591666Y-62292380D01* 295 | X116591666Y-62292380D02* 296 | X116353571Y-62292380D01* 297 | X116353571Y-62292380D02* 298 | X116258333Y-62244761D01* 299 | X116258333Y-62244761D02* 300 | X116210714Y-62197142D01* 301 | X117067857Y-61292380D02* 302 | X117401190Y-62292380D01* 303 | X117401190Y-62292380D02* 304 | X117734523Y-61292380D01* 305 | X112139286Y-62269761D02* 306 | X112282143Y-62317380D01* 307 | X112282143Y-62317380D02* 308 | X112520238Y-62317380D01* 309 | X112520238Y-62317380D02* 310 | X112615476Y-62269761D01* 311 | X112615476Y-62269761D02* 312 | X112663095Y-62222142D01* 313 | X112663095Y-62222142D02* 314 | X112710714Y-62126904D01* 315 | X112710714Y-62126904D02* 316 | X112710714Y-62031666D01* 317 | X112710714Y-62031666D02* 318 | X112663095Y-61936428D01* 319 | X112663095Y-61936428D02* 320 | X112615476Y-61888809D01* 321 | X112615476Y-61888809D02* 322 | X112520238Y-61841190D01* 323 | X112520238Y-61841190D02* 324 | X112329762Y-61793571D01* 325 | X112329762Y-61793571D02* 326 | X112234524Y-61745952D01* 327 | X112234524Y-61745952D02* 328 | X112186905Y-61698333D01* 329 | X112186905Y-61698333D02* 330 | X112139286Y-61603095D01* 331 | X112139286Y-61603095D02* 332 | X112139286Y-61507857D01* 333 | X112139286Y-61507857D02* 334 | X112186905Y-61412619D01* 335 | X112186905Y-61412619D02* 336 | X112234524Y-61365000D01* 337 | X112234524Y-61365000D02* 338 | X112329762Y-61317380D01* 339 | X112329762Y-61317380D02* 340 | X112567857Y-61317380D01* 341 | X112567857Y-61317380D02* 342 | X112710714Y-61365000D01* 343 | %TO.C,*% 344 | D11* 345 | %TO.C,R2*% 346 | X110158333Y-68432166D02* 347 | X109925000Y-68098833D01* 348 | X109758333Y-68432166D02* 349 | X109758333Y-67732166D01* 350 | X109758333Y-67732166D02* 351 | X110025000Y-67732166D01* 352 | X110025000Y-67732166D02* 353 | X110091667Y-67765500D01* 354 | X110091667Y-67765500D02* 355 | X110125000Y-67798833D01* 356 | X110125000Y-67798833D02* 357 | X110158333Y-67865500D01* 358 | X110158333Y-67865500D02* 359 | X110158333Y-67965500D01* 360 | X110158333Y-67965500D02* 361 | X110125000Y-68032166D01* 362 | X110125000Y-68032166D02* 363 | X110091667Y-68065500D01* 364 | X110091667Y-68065500D02* 365 | X110025000Y-68098833D01* 366 | X110025000Y-68098833D02* 367 | X109758333Y-68098833D01* 368 | X110425000Y-67798833D02* 369 | X110458333Y-67765500D01* 370 | X110458333Y-67765500D02* 371 | X110525000Y-67732166D01* 372 | X110525000Y-67732166D02* 373 | X110691667Y-67732166D01* 374 | X110691667Y-67732166D02* 375 | X110758333Y-67765500D01* 376 | X110758333Y-67765500D02* 377 | X110791667Y-67798833D01* 378 | X110791667Y-67798833D02* 379 | X110825000Y-67865500D01* 380 | X110825000Y-67865500D02* 381 | X110825000Y-67932166D01* 382 | X110825000Y-67932166D02* 383 | X110791667Y-68032166D01* 384 | X110791667Y-68032166D02* 385 | X110391667Y-68432166D01* 386 | X110391667Y-68432166D02* 387 | X110825000Y-68432166D01* 388 | %TO.C,D1*% 389 | X111907143Y-68520428D02* 390 | X111907143Y-67920428D01* 391 | X111907143Y-67920428D02* 392 | X112050000Y-67920428D01* 393 | X112050000Y-67920428D02* 394 | X112135714Y-67949000D01* 395 | X112135714Y-67949000D02* 396 | X112192857Y-68006142D01* 397 | X112192857Y-68006142D02* 398 | X112221428Y-68063285D01* 399 | X112221428Y-68063285D02* 400 | X112250000Y-68177571D01* 401 | X112250000Y-68177571D02* 402 | X112250000Y-68263285D01* 403 | X112250000Y-68263285D02* 404 | X112221428Y-68377571D01* 405 | X112221428Y-68377571D02* 406 | X112192857Y-68434714D01* 407 | X112192857Y-68434714D02* 408 | X112135714Y-68491857D01* 409 | X112135714Y-68491857D02* 410 | X112050000Y-68520428D01* 411 | X112050000Y-68520428D02* 412 | X111907143Y-68520428D01* 413 | X112821428Y-68520428D02* 414 | X112478571Y-68520428D01* 415 | X112650000Y-68520428D02* 416 | X112650000Y-67920428D01* 417 | X112650000Y-67920428D02* 418 | X112592857Y-68006142D01* 419 | X112592857Y-68006142D02* 420 | X112535714Y-68063285D01* 421 | X112535714Y-68063285D02* 422 | X112478571Y-68091857D01* 423 | D10* 424 | %TO.C,*% 425 | D11* 426 | %TO.C,R1*% 427 | X114483333Y-68432166D02* 428 | X114250000Y-68098833D01* 429 | X114083333Y-68432166D02* 430 | X114083333Y-67732166D01* 431 | X114083333Y-67732166D02* 432 | X114350000Y-67732166D01* 433 | X114350000Y-67732166D02* 434 | X114416667Y-67765500D01* 435 | X114416667Y-67765500D02* 436 | X114450000Y-67798833D01* 437 | X114450000Y-67798833D02* 438 | X114483333Y-67865500D01* 439 | X114483333Y-67865500D02* 440 | X114483333Y-67965500D01* 441 | X114483333Y-67965500D02* 442 | X114450000Y-68032166D01* 443 | X114450000Y-68032166D02* 444 | X114416667Y-68065500D01* 445 | X114416667Y-68065500D02* 446 | X114350000Y-68098833D01* 447 | X114350000Y-68098833D02* 448 | X114083333Y-68098833D01* 449 | X115150000Y-68432166D02* 450 | X114750000Y-68432166D01* 451 | X114950000Y-68432166D02* 452 | X114950000Y-67732166D01* 453 | X114950000Y-67732166D02* 454 | X114883333Y-67832166D01* 455 | X114883333Y-67832166D02* 456 | X114816667Y-67898833D01* 457 | X114816667Y-67898833D02* 458 | X114750000Y-67932166D01* 459 | %TO.C,U1*% 460 | X117833333Y-64357166D02* 461 | X118166666Y-64357166D01* 462 | X117766666Y-64557166D02* 463 | X118000000Y-63857166D01* 464 | X118000000Y-63857166D02* 465 | X118233333Y-64557166D01* 466 | X106566666Y-66657166D02* 467 | X106800000Y-67357166D01* 468 | X106800000Y-67357166D02* 469 | X107033333Y-66657166D01* 470 | X106983333Y-63490500D02* 471 | X106916666Y-63457166D01* 472 | X106916666Y-63457166D02* 473 | X106816666Y-63457166D01* 474 | X106816666Y-63457166D02* 475 | X106716666Y-63490500D01* 476 | X106716666Y-63490500D02* 477 | X106650000Y-63557166D01* 478 | X106650000Y-63557166D02* 479 | X106616666Y-63623833D01* 480 | X106616666Y-63623833D02* 481 | X106583333Y-63757166D01* 482 | X106583333Y-63757166D02* 483 | X106583333Y-63857166D01* 484 | X106583333Y-63857166D02* 485 | X106616666Y-63990500D01* 486 | X106616666Y-63990500D02* 487 | X106650000Y-64057166D01* 488 | X106650000Y-64057166D02* 489 | X106716666Y-64123833D01* 490 | X106716666Y-64123833D02* 491 | X106816666Y-64157166D01* 492 | X106816666Y-64157166D02* 493 | X106883333Y-64157166D01* 494 | X106883333Y-64157166D02* 495 | X106983333Y-64123833D01* 496 | X106983333Y-64123833D02* 497 | X107016666Y-64090500D01* 498 | X107016666Y-64090500D02* 499 | X107016666Y-63857166D01* 500 | X107016666Y-63857166D02* 501 | X106883333Y-63857166D01* 502 | X106733334Y-65057166D02* 503 | X106866667Y-65057166D01* 504 | X106866667Y-65057166D02* 505 | X106933334Y-65090500D01* 506 | X106933334Y-65090500D02* 507 | X107000000Y-65157166D01* 508 | X107000000Y-65157166D02* 509 | X107033334Y-65290500D01* 510 | X107033334Y-65290500D02* 511 | X107033334Y-65523833D01* 512 | X107033334Y-65523833D02* 513 | X107000000Y-65657166D01* 514 | X107000000Y-65657166D02* 515 | X106933334Y-65723833D01* 516 | X106933334Y-65723833D02* 517 | X106866667Y-65757166D01* 518 | X106866667Y-65757166D02* 519 | X106733334Y-65757166D01* 520 | X106733334Y-65757166D02* 521 | X106666667Y-65723833D01* 522 | X106666667Y-65723833D02* 523 | X106600000Y-65657166D01* 524 | X106600000Y-65657166D02* 525 | X106566667Y-65523833D01* 526 | X106566667Y-65523833D02* 527 | X106566667Y-65290500D01* 528 | X106566667Y-65290500D02* 529 | X106600000Y-65157166D01* 530 | X106600000Y-65157166D02* 531 | X106666667Y-65090500D01* 532 | X106666667Y-65090500D02* 533 | X106733334Y-65057166D01* 534 | X117816666Y-67057166D02* 535 | X117816666Y-66357166D01* 536 | X118216666Y-67057166D02* 537 | X117916666Y-66657166D01* 538 | X118216666Y-66357166D02* 539 | X117816666Y-66757166D01* 540 | D12* 541 | %TO.C,JP1*% 542 | X113500000Y-64000000D02* 543 | X113500000Y-63400000D01* 544 | X111700000Y-63700000D02* 545 | X113100000Y-63700000D01* 546 | X113100000Y-63700000D02* 547 | X113500000Y-64000000D01* 548 | X113500000Y-63400000D02* 549 | X113100000Y-63700000D01* 550 | %TO.C,R2*% 551 | X111035000Y-65972936D02* 552 | X111035000Y-66427064D01* 553 | X109565000Y-65972936D02* 554 | X109565000Y-66427064D01* 555 | %TO.C,D1*% 556 | X111450000Y-67750000D02* 557 | X111450000Y-67000000D01* 558 | X112300000Y-67750000D02* 559 | X112400000Y-67550000D01* 560 | X113300000Y-67750000D02* 561 | X111450000Y-67750000D01* 562 | X112400000Y-67550000D02* 563 | X112500000Y-67750000D01* 564 | X112300000Y-65550000D02* 565 | X112500000Y-65550000D01* 566 | X113300000Y-65550000D02* 567 | X111450000Y-65550000D01* 568 | %TO.C,R1*% 569 | X115235000Y-65972936D02* 570 | X115235000Y-66427064D01* 571 | X113765000Y-65972936D02* 572 | X113765000Y-66427064D01* 573 | %TO.C,kibuzzard-6366C103*% 574 | G36* 575 | X122002196Y-61587494D02* 576 | G01* 577 | X122090267Y-61652646D01* 578 | X122150176Y-61752837D01* 579 | X122168854Y-61832779D01* 580 | X122163779Y-61915657D01* 581 | X122134954Y-62001474D01* 582 | X122087898Y-62078594D01* 583 | X122028134Y-62135388D01* 584 | X121955662Y-62171853D01* 585 | X121841445Y-62189533D01* 586 | X121735272Y-62163670D01* 587 | X121647284Y-62098337D01* 588 | X121587626Y-61997607D01* 589 | X121568986Y-61917585D01* 590 | X121573725Y-61835426D01* 591 | X121601843Y-61751129D01* 592 | X121648265Y-61675366D01* 593 | X121707917Y-61618814D01* 594 | X121780799Y-61581469D01* 595 | X121895770Y-61562171D01* 596 | X122002196Y-61587494D01* 597 | G37* 598 | G36* 599 | X118685645Y-61420064D02* 600 | G01* 601 | X118385902Y-61280291D01* 602 | X118332204Y-60928966D01* 603 | X118914648Y-60928966D01* 604 | X118929066Y-61040786D01* 605 | X118935880Y-61056225D01* 606 | X118959102Y-61100333D01* 607 | X119016399Y-61172788D01* 608 | X119086459Y-61232899D01* 609 | X119169281Y-61280668D01* 610 | X119271871Y-61314007D01* 611 | X119374378Y-61318309D01* 612 | X119476802Y-61293572D01* 613 | X119569837Y-61244314D01* 614 | X119644174Y-61175049D01* 615 | X119699815Y-61085778D01* 616 | X119731572Y-60985953D01* 617 | X119734259Y-60885029D01* 618 | X119707878Y-60783005D01* 619 | X119658593Y-60690445D01* 620 | X119592573Y-60617913D01* 621 | X119545706Y-60588177D01* 622 | X120028188Y-60588177D01* 623 | X120049579Y-61579055D01* 624 | X120073961Y-61652606D01* 625 | X120133246Y-61703897D01* 626 | X120147633Y-61710606D01* 627 | X120223592Y-61722380D01* 628 | X120295609Y-61693780D01* 629 | X121068415Y-61073243D01* 630 | X121122199Y-61014245D01* 631 | X121123453Y-60956150D01* 632 | X121080251Y-60882581D01* 633 | X121006769Y-60818538D01* 634 | X120925349Y-60827865D01* 635 | X120885079Y-60861635D01* 636 | X120303469Y-61357633D01* 637 | X120303337Y-61317065D01* 638 | X120303718Y-61223750D01* 639 | X120304340Y-61100333D01* 640 | X120304937Y-60969459D01* 641 | X120305714Y-60838668D01* 642 | X120306877Y-60715503D01* 643 | X120307628Y-60619515D01* 644 | X120307169Y-60570256D01* 645 | X120301209Y-60521059D01* 646 | X120286143Y-60489511D01* 647 | X120250699Y-60465977D01* 648 | X120166635Y-60456555D01* 649 | X120082508Y-60470749D01* 650 | X120038811Y-60509053D01* 651 | X120028188Y-60588177D01* 652 | X119545706Y-60588177D01* 653 | X119509819Y-60565408D01* 654 | X119458121Y-60544804D01* 655 | X119523497Y-60442167D01* 656 | X119775280Y-60559576D01* 657 | X119823047Y-60579222D01* 658 | X119864670Y-60581992D01* 659 | X119908251Y-60558961D01* 660 | X119949615Y-60493734D01* 661 | X119975461Y-60412950D01* 662 | X119964441Y-60360518D01* 663 | X119933407Y-60329407D01* 664 | X119884056Y-60303767D01* 665 | X119748812Y-60240702D01* 666 | X119530791Y-60137285D01* 667 | X119466148Y-60123781D01* 668 | X119414315Y-60137271D01* 669 | X119375339Y-60166390D01* 670 | X119351178Y-60191908D01* 671 | X119315063Y-60247759D01* 672 | X119217645Y-60399389D01* 673 | X119119413Y-60553703D01* 674 | X119080854Y-60617611D01* 675 | X119080243Y-60660241D01* 676 | X119126683Y-60735320D01* 677 | X119204577Y-60804923D01* 678 | X119298421Y-60808397D01* 679 | X119379558Y-60814703D01* 680 | X119443449Y-60878652D01* 681 | X119441702Y-60970672D01* 682 | X119375546Y-61031783D01* 683 | X119267840Y-61014840D01* 684 | X119192007Y-60942694D01* 685 | X119117079Y-60851703D01* 686 | X119011490Y-60860270D01* 687 | X118914648Y-60928966D01* 688 | X118332204Y-60928966D01* 689 | X118216592Y-60172560D01* 690 | X119173993Y-59590223D01* 691 | X119473737Y-59729996D01* 692 | X126014356Y-62779937D01* 693 | X126314098Y-62919709D01* 694 | X126877454Y-63182406D01* 695 | X125920052Y-63764743D01* 696 | X126089362Y-64872474D01* 697 | X125526007Y-64609777D01* 698 | X125226264Y-64470005D01* 699 | X125100372Y-64411300D01* 700 | X124406169Y-64087588D01* 701 | X124132832Y-63960129D01* 702 | X125145010Y-63960129D01* 703 | X125146847Y-64011125D01* 704 | X125179839Y-64052126D01* 705 | X125248866Y-64092854D01* 706 | X125324769Y-64115549D01* 707 | X125378388Y-64102454D01* 708 | X125410506Y-64069261D01* 709 | X125436482Y-64019192D01* 710 | X125447216Y-63996172D01* 711 | X125459414Y-63896763D01* 712 | X125381519Y-63827160D01* 713 | X125364130Y-63821254D01* 714 | X125284742Y-63794293D01* 715 | X125223081Y-63811957D01* 716 | X125169445Y-63889416D01* 717 | X125145010Y-63960129D01* 718 | X124132832Y-63960129D01* 719 | X123770235Y-63791047D01* 720 | X123529269Y-63678683D01* 721 | X124460219Y-63678683D01* 722 | X124484640Y-63727732D01* 723 | X124553992Y-63770581D01* 724 | X124631394Y-63796164D01* 725 | X124684330Y-63784064D01* 726 | X124715777Y-63752310D01* 727 | X124741081Y-63703680D01* 728 | X124779107Y-63622133D01* 729 | X125321231Y-63622133D01* 730 | X125347282Y-63665810D01* 731 | X125417305Y-63707221D01* 732 | X125494036Y-63734243D01* 733 | X125544623Y-63727179D01* 734 | X125573387Y-63701180D01* 735 | X125596343Y-63657585D01* 736 | X125809021Y-63201497D01* 737 | X125827996Y-63155170D01* 738 | X125831149Y-63114601D01* 739 | X125805769Y-63069486D01* 740 | X125736082Y-63027356D01* 741 | X125659016Y-63001053D01* 742 | X125607757Y-63009556D01* 743 | X125578322Y-63036993D01* 744 | X125555030Y-63081308D01* 745 | X125342353Y-63537396D01* 746 | X125323713Y-63583004D01* 747 | X125321231Y-63622133D01* 748 | X124779107Y-63622133D01* 749 | X124869225Y-63428876D01* 750 | X125396700Y-63109071D01* 751 | X125465350Y-63048247D01* 752 | X125469530Y-62993269D01* 753 | X125439130Y-62920414D01* 754 | X125371735Y-62845197D01* 755 | X125318602Y-62837061D01* 756 | X125244622Y-62871752D01* 757 | X124855229Y-63124575D01* 758 | X124798605Y-62663771D01* 759 | X124774317Y-62580629D01* 760 | X124736521Y-62548992D01* 761 | X124626088Y-62549169D01* 762 | X124558397Y-62570371D01* 763 | X124521521Y-62608133D01* 764 | X124519054Y-62699818D01* 765 | X124613125Y-63309454D01* 766 | X124486323Y-63581381D01* 767 | X124464664Y-63633463D01* 768 | X124460219Y-63678683D01* 769 | X123529269Y-63678683D01* 770 | X122882518Y-63377098D01* 771 | X122331061Y-63119949D01* 772 | X123308961Y-63119949D01* 773 | X123327967Y-63178732D01* 774 | X123401445Y-63229636D01* 775 | X123919400Y-63471162D01* 776 | X124000925Y-63491662D01* 777 | X124040144Y-63471414D01* 778 | X124075851Y-63413621D01* 779 | X124097171Y-63349119D01* 780 | X124084162Y-63301890D01* 781 | X124020133Y-63258896D01* 782 | X123628789Y-63076410D01* 783 | X123961559Y-62362783D01* 784 | X123989253Y-62284612D01* 785 | X123968664Y-62226404D01* 786 | X123894658Y-62175693D01* 787 | X123816033Y-62150853D01* 788 | X123764320Y-62162209D01* 789 | X123732873Y-62193962D01* 790 | X123707569Y-62242593D01* 791 | X123334545Y-63042546D01* 792 | X123308961Y-63119949D01* 793 | X122331061Y-63119949D01* 794 | X121478285Y-62722293D01* 795 | X121336282Y-62656076D01* 796 | X122272865Y-62656076D01* 797 | X122296687Y-62702655D01* 798 | X122364096Y-62745912D01* 799 | X122442721Y-62770752D01* 800 | X122494435Y-62759396D01* 801 | X122525546Y-62728362D01* 802 | X122551187Y-62679012D01* 803 | X122771915Y-62205658D01* 804 | X122787669Y-62276841D01* 805 | X122807980Y-62370390D01* 806 | X122832849Y-62486304D01* 807 | X122862273Y-62624584D01* 808 | X122896255Y-62785230D01* 809 | X122934794Y-62968242D01* 810 | X122958015Y-63012351D01* 811 | X123031683Y-63057213D01* 812 | X123110308Y-63082053D01* 813 | X123162021Y-63070697D01* 814 | X123193133Y-63039662D01* 815 | X123218773Y-62990313D01* 816 | X123591126Y-62191798D01* 817 | X123616710Y-62114396D01* 818 | X123612814Y-62075796D01* 819 | X123583457Y-62041087D01* 820 | X123520629Y-62003031D01* 821 | X123448262Y-61979796D01* 822 | X123391491Y-61994486D01* 823 | X123340587Y-62067964D01* 824 | X123113821Y-62554266D01* 825 | X123098383Y-62483863D01* 826 | X123079023Y-62392656D01* 827 | X123055742Y-62280643D01* 828 | X123028537Y-62147826D01* 829 | X122997411Y-61994205D01* 830 | X122962363Y-61819779D01* 831 | X122946715Y-61766940D01* 832 | X122919851Y-61732518D01* 833 | X122855200Y-61692736D01* 834 | X122780676Y-61668496D01* 835 | X122723904Y-61683186D01* 836 | X122673001Y-61756663D01* 837 | X122298635Y-62559493D01* 838 | X122277311Y-62610857D01* 839 | X122272865Y-62656076D01* 840 | X121336282Y-62656076D01* 841 | X119997797Y-62031931D01* 842 | X119631278Y-61861020D01* 843 | X121287201Y-61861020D01* 844 | X121292902Y-61973811D01* 845 | X121321278Y-62087980D01* 846 | X121369696Y-62194854D01* 847 | X121435523Y-62285761D01* 848 | X121518756Y-62360700D01* 849 | X121619399Y-62419673D01* 850 | X121729104Y-62458623D01* 851 | X121839527Y-62473494D01* 852 | X121950669Y-62464287D01* 853 | X122062528Y-62431003D01* 854 | X122167366Y-62377092D01* 855 | X122257441Y-62306006D01* 856 | X122332754Y-62217745D01* 857 | X122393305Y-62112311D01* 858 | X122434512Y-61998350D01* 859 | X122451799Y-61884509D01* 860 | X122445163Y-61770789D01* 861 | X122414605Y-61657191D01* 862 | X122364092Y-61551638D01* 863 | X122297592Y-61462059D01* 864 | X122215104Y-61388453D01* 865 | X122116629Y-61330820D01* 866 | X122014097Y-61295269D01* 867 | X121905050Y-61281204D01* 868 | X121794618Y-61287950D01* 869 | X121687933Y-61314834D01* 870 | X121586372Y-61363595D01* 871 | X121491317Y-61435971D01* 872 | X121408542Y-61528963D01* 873 | X121343827Y-61639573D01* 874 | X121304176Y-61749607D01* 875 | X121287201Y-61861020D01* 876 | X119631278Y-61861020D01* 877 | X119029509Y-61580410D01* 878 | X118685645Y-61420064D01* 879 | G37* 880 | %TD*% 881 | %LPC*% 882 | %TO.C,U1*% 883 | G36* 884 | X117249227Y-66427139D02* 885 | G01* 886 | X117375849Y-66461068D01* 887 | X117489376Y-66526612D01* 888 | X117582070Y-66619306D01* 889 | X117647614Y-66732833D01* 890 | X117681543Y-66859455D01* 891 | X117683682Y-66925000D01* 892 | X117683682Y-67380000D01* 893 | X117681543Y-67445545D01* 894 | X117647614Y-67572167D01* 895 | X117582070Y-67685694D01* 896 | X117489376Y-67778388D01* 897 | X117375849Y-67843932D01* 898 | X117249227Y-67877861D01* 899 | X117183682Y-67880000D01* 900 | X116465682Y-67880000D01* 901 | X116394712Y-67877381D01* 902 | X116259039Y-67835673D01* 903 | X116141611Y-67755940D01* 904 | X116052796Y-67645221D01* 905 | X116000436Y-67513292D01* 906 | X115989155Y-67371801D01* 907 | X116019947Y-67233242D01* 908 | X116090094Y-67109848D01* 909 | X116139953Y-67059275D01* 910 | X116675953Y-66554275D01* 911 | X116720751Y-66514444D01* 912 | X116825704Y-66456596D01* 913 | X116941762Y-66426730D01* 914 | X117001682Y-66425000D01* 915 | X117183682Y-66425000D01* 916 | X117249227Y-66427139D01* 917 | G37* 918 | G36* 919 | X117250335Y-63122139D02* 920 | G01* 921 | X117376957Y-63156068D01* 922 | X117490484Y-63221612D01* 923 | X117583178Y-63314306D01* 924 | X117648722Y-63427833D01* 925 | X117682651Y-63554455D01* 926 | X117684790Y-63620000D01* 927 | X117684790Y-64075000D01* 928 | X117682651Y-64140545D01* 929 | X117648722Y-64267167D01* 930 | X117583178Y-64380694D01* 931 | X117490484Y-64473388D01* 932 | X117376957Y-64538932D01* 933 | X117250335Y-64572861D01* 934 | X117184790Y-64575000D01* 935 | X117002790Y-64575000D01* 936 | X116942870Y-64573271D01* 937 | X116826812Y-64543405D01* 938 | X116721859Y-64485557D01* 939 | X116677061Y-64445725D01* 940 | X116141061Y-63940725D01* 941 | X116091202Y-63890152D01* 942 | X116021055Y-63766758D01* 943 | X115990263Y-63628199D01* 944 | X116001544Y-63486708D01* 945 | X116053904Y-63354779D01* 946 | X116142719Y-63244060D01* 947 | X116260147Y-63164327D01* 948 | X116395820Y-63122619D01* 949 | X116466790Y-63120000D01* 950 | X117184790Y-63120000D01* 951 | X117250335Y-63122139D01* 952 | G37* 953 | %TD*% 954 | D13* 955 | %TO.C,JP1*% 956 | X112400000Y-64350000D03* 957 | D14* 958 | X112400000Y-63050000D03* 959 | %TD*% 960 | D15* 961 | %TO.C,*% 962 | X122000000Y-65500000D03* 963 | %TD*% 964 | D16* 965 | %TO.C,J1*% 966 | X107799999Y-60199999D03* 967 | %TD*% 968 | D17* 969 | %TO.C,R2*% 970 | X110300000Y-65287500D03* 971 | X110300000Y-67112500D03* 972 | %TD*% 973 | D18* 974 | %TO.C,D1*% 975 | X111899999Y-67349999D03* 976 | X112899999Y-67349999D03* 977 | X112899999Y-65949999D03* 978 | X111899999Y-65949999D03* 979 | %TD*% 980 | D16* 981 | %TO.C,J2*% 982 | X112399999Y-60199999D03* 983 | %TD*% 984 | D15* 985 | %TO.C,*% 986 | X102750000Y-65500000D03* 987 | %TD*% 988 | D17* 989 | %TO.C,R1*% 990 | X114500000Y-65287500D03* 991 | X114500000Y-67112500D03* 992 | %TD*% 993 | D16* 994 | %TO.C,J3*% 995 | X116999999Y-60199999D03* 996 | %TD*% 997 | D19* 998 | %TO.C,U1*% 999 | X108067999Y-66769999D03* 1000 | D20* 1001 | X108067999Y-64229999D03* 1002 | D21* 1003 | X116731999Y-63846999D03* 1004 | D20* 1005 | X116731999Y-65499999D03* 1006 | D22* 1007 | X116731999Y-67152999D03* 1008 | %TD*% 1009 | M02* 1010 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/gerber/Tap_Photosensor_PCB-VScore.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:10:56-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Other,Comment*% 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:10:56* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | G04 APERTURE END LIST* 14 | M02* 15 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/production_files/BOM-Tap_Photosensor_PCB.csv: -------------------------------------------------------------------------------- 1 | Comment,Designator,Footprint,LCSC 2 | 1K,R1,R_0805_2012Metric,C17513 3 | 200R,R2,R_0805_2012Metric,C17540 4 | XL-1615RGBC,D1,LED_0606_1432,C965840 5 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/production_files/CPL-Tap_Photosensor_PCB.csv: -------------------------------------------------------------------------------- 1 | Designator,Val,Package,Mid X,Mid Y,Rotation,Layer 2 | D1,XL-1615RGBC,LED_0606_1432,112.4,-66.65,90.0,top 3 | R1,1K,R_0805_2012Metric,114.5,-66.2,-90.0,top 4 | R2,200R,R_0805_2012Metric,110.3,-66.2,-90.0,top 5 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/production_files/GERBER-Tap_Photosensor_PCB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/production_files/GERBER-Tap_Photosensor_PCB.zip -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/project.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/Tap_Photosensor_PCB_v1/jlcpcb/project.db -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/Tap_Photosensor_PCB.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.09999999999999999, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.15, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 1.182, 38 | "height": 0.958, 39 | "width": 1.782 40 | }, 41 | "silk_line_width": 0.15, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 1.0, 44 | "silk_text_size_v": 1.0, 45 | "silk_text_thickness": 0.15, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "45_degree_only": false, 49 | "min_clearance": 0.39999999999999997 50 | } 51 | }, 52 | "diff_pair_dimensions": [ 53 | { 54 | "gap": 0.0, 55 | "via_gap": 0.0, 56 | "width": 0.0 57 | } 58 | ], 59 | "drc_exclusions": [ 60 | "clearance|116099489|67424511|07ebdbd9-f3c3-441b-b2dd-932692738093|cc971879-a096-4953-b836-ec5549d9b38b", 61 | "clearance|116130025|67739975|e4d67c16-6e09-4008-8f6c-ea819fdff002|cc971879-a096-4953-b836-ec5549d9b38b", 62 | "clearance|116219480|67599520|0f3cdef8-9cf7-4b9d-8b94-17ba8b5aec9e|cc971879-a096-4953-b836-ec5549d9b38b", 63 | "clearance|116452899|63583989|0f459366-c708-4e8d-a336-2ec0af98d4c8|de7deb88-e071-41d2-8cff-39d4786f0b8a", 64 | "clearance|116452899|67416011|dbb32dd2-a096-4b84-82bd-ff60f6b80734|cc971879-a096-4953-b836-ec5549d9b38b", 65 | "courtyards_overlap|111660001|63220001|3388a811-b444-4ecc-a564-b22a1b731ab4|882392f3-a6f5-4b64-8d03-943b44c38421", 66 | "courtyards_overlap|115838525|62301584|3b19a97f-624a-48d9-8072-15bdeede0fff|17762bbf-a6b9-47f0-a068-614c79333bf3", 67 | "courtyards_overlap|118809999|62310062|3b19a97f-624a-48d9-8072-15bdeede0fff|57ed731a-c03e-487d-ad37-a91240b448a4", 68 | "solder_mask_bridge|116283358|67843149|24a31da8-f3a4-4d47-abb1-164bc3305b5d|07ebdbd9-f3c3-441b-b2dd-932692738093", 69 | "solder_mask_bridge|116452899|63583989|de7deb88-e071-41d2-8cff-39d4786f0b8a|0f459366-c708-4e8d-a336-2ec0af98d4c8", 70 | "solder_mask_bridge|116452899|67416011|cc971879-a096-4953-b836-ec5549d9b38b|dbb32dd2-a096-4b84-82bd-ff60f6b80734" 71 | ], 72 | "meta": { 73 | "version": 2 74 | }, 75 | "rule_severities": { 76 | "annular_width": "error", 77 | "clearance": "error", 78 | "connection_width": "warning", 79 | "copper_edge_clearance": "error", 80 | "copper_sliver": "warning", 81 | "courtyards_overlap": "error", 82 | "diff_pair_gap_out_of_range": "error", 83 | "diff_pair_uncoupled_length_too_long": "error", 84 | "drill_out_of_range": "error", 85 | "duplicate_footprints": "warning", 86 | "extra_footprint": "warning", 87 | "footprint": "error", 88 | "footprint_type_mismatch": "error", 89 | "hole_clearance": "error", 90 | "hole_near_hole": "error", 91 | "invalid_outline": "error", 92 | "isolated_copper": "warning", 93 | "item_on_disabled_layer": "error", 94 | "items_not_allowed": "error", 95 | "length_out_of_range": "error", 96 | "lib_footprint_issues": "warning", 97 | "lib_footprint_mismatch": "warning", 98 | "malformed_courtyard": "error", 99 | "microvia_drill_out_of_range": "error", 100 | "missing_courtyard": "ignore", 101 | "missing_footprint": "warning", 102 | "net_conflict": "warning", 103 | "npth_inside_courtyard": "ignore", 104 | "padstack": "error", 105 | "pth_inside_courtyard": "ignore", 106 | "shorting_items": "error", 107 | "silk_edge_clearance": "warning", 108 | "silk_over_copper": "warning", 109 | "silk_overlap": "warning", 110 | "skew_out_of_range": "error", 111 | "solder_mask_bridge": "error", 112 | "starved_thermal": "error", 113 | "text_height": "warning", 114 | "text_thickness": "warning", 115 | "through_hole_pad_without_hole": "error", 116 | "too_many_vias": "error", 117 | "track_dangling": "warning", 118 | "track_width": "error", 119 | "tracks_crossing": "error", 120 | "unconnected_items": "error", 121 | "unresolved_variable": "error", 122 | "via_dangling": "warning", 123 | "zones_intersect": "error" 124 | }, 125 | "rules": { 126 | "allow_blind_buried_vias": false, 127 | "allow_microvias": false, 128 | "max_error": 0.005, 129 | "min_clearance": 0.0, 130 | "min_connection": 0.0, 131 | "min_copper_edge_clearance": 0.0, 132 | "min_hole_clearance": 0.25, 133 | "min_hole_to_hole": 0.25, 134 | "min_microvia_diameter": 0.19999999999999998, 135 | "min_microvia_drill": 0.09999999999999999, 136 | "min_resolved_spokes": 2, 137 | "min_silk_clearance": 0.0, 138 | "min_text_height": 0.7999999999999999, 139 | "min_text_thickness": 0.08, 140 | "min_through_hole_diameter": 0.3, 141 | "min_track_width": 0.19999999999999998, 142 | "min_via_annular_width": 0.049999999999999996, 143 | "min_via_diameter": 0.39999999999999997, 144 | "solder_mask_clearance": 0.0, 145 | "solder_mask_min_width": 0.0, 146 | "solder_mask_to_copper_clearance": 0.0, 147 | "use_height_for_length_calcs": true 148 | }, 149 | "teardrop_options": [ 150 | { 151 | "td_allow_use_two_tracks": true, 152 | "td_curve_segcount": 5, 153 | "td_on_pad_in_zone": false, 154 | "td_onpadsmd": true, 155 | "td_onroundshapesonly": false, 156 | "td_ontrackend": false, 157 | "td_onviapad": true 158 | } 159 | ], 160 | "teardrop_parameters": [ 161 | { 162 | "td_curve_segcount": 0, 163 | "td_height_ratio": 1.0, 164 | "td_length_ratio": 0.5, 165 | "td_maxheight": 2.0, 166 | "td_maxlen": 1.0, 167 | "td_target_name": "td_round_shape", 168 | "td_width_to_size_filter_ratio": 0.9 169 | }, 170 | { 171 | "td_curve_segcount": 0, 172 | "td_height_ratio": 1.0, 173 | "td_length_ratio": 0.5, 174 | "td_maxheight": 2.0, 175 | "td_maxlen": 1.0, 176 | "td_target_name": "td_rect_shape", 177 | "td_width_to_size_filter_ratio": 0.9 178 | }, 179 | { 180 | "td_curve_segcount": 0, 181 | "td_height_ratio": 1.0, 182 | "td_length_ratio": 0.5, 183 | "td_maxheight": 2.0, 184 | "td_maxlen": 1.0, 185 | "td_target_name": "td_track_end", 186 | "td_width_to_size_filter_ratio": 0.9 187 | } 188 | ], 189 | "track_widths": [ 190 | 0.0, 191 | 0.3 192 | ], 193 | "via_dimensions": [ 194 | { 195 | "diameter": 0.0, 196 | "drill": 0.0 197 | } 198 | ], 199 | "zones_allow_external_fillets": false, 200 | "zones_use_no_outline": true 201 | }, 202 | "layer_presets": [], 203 | "viewports": [] 204 | }, 205 | "boards": [], 206 | "cvpcb": { 207 | "equivalence_files": [] 208 | }, 209 | "erc": { 210 | "erc_exclusions": [], 211 | "meta": { 212 | "version": 0 213 | }, 214 | "pin_map": [ 215 | [ 216 | 0, 217 | 0, 218 | 0, 219 | 0, 220 | 0, 221 | 0, 222 | 1, 223 | 0, 224 | 0, 225 | 0, 226 | 0, 227 | 2 228 | ], 229 | [ 230 | 0, 231 | 2, 232 | 0, 233 | 1, 234 | 0, 235 | 0, 236 | 1, 237 | 0, 238 | 2, 239 | 2, 240 | 2, 241 | 2 242 | ], 243 | [ 244 | 0, 245 | 0, 246 | 0, 247 | 0, 248 | 0, 249 | 0, 250 | 1, 251 | 0, 252 | 1, 253 | 0, 254 | 1, 255 | 2 256 | ], 257 | [ 258 | 0, 259 | 1, 260 | 0, 261 | 0, 262 | 0, 263 | 0, 264 | 1, 265 | 1, 266 | 2, 267 | 1, 268 | 1, 269 | 2 270 | ], 271 | [ 272 | 0, 273 | 0, 274 | 0, 275 | 0, 276 | 0, 277 | 0, 278 | 1, 279 | 0, 280 | 0, 281 | 0, 282 | 0, 283 | 2 284 | ], 285 | [ 286 | 0, 287 | 0, 288 | 0, 289 | 0, 290 | 0, 291 | 0, 292 | 0, 293 | 0, 294 | 0, 295 | 0, 296 | 0, 297 | 2 298 | ], 299 | [ 300 | 1, 301 | 1, 302 | 1, 303 | 1, 304 | 1, 305 | 0, 306 | 1, 307 | 1, 308 | 1, 309 | 1, 310 | 1, 311 | 2 312 | ], 313 | [ 314 | 0, 315 | 0, 316 | 0, 317 | 1, 318 | 0, 319 | 0, 320 | 1, 321 | 0, 322 | 0, 323 | 0, 324 | 0, 325 | 2 326 | ], 327 | [ 328 | 0, 329 | 2, 330 | 1, 331 | 2, 332 | 0, 333 | 0, 334 | 1, 335 | 0, 336 | 2, 337 | 2, 338 | 2, 339 | 2 340 | ], 341 | [ 342 | 0, 343 | 2, 344 | 0, 345 | 1, 346 | 0, 347 | 0, 348 | 1, 349 | 0, 350 | 2, 351 | 0, 352 | 0, 353 | 2 354 | ], 355 | [ 356 | 0, 357 | 2, 358 | 1, 359 | 1, 360 | 0, 361 | 0, 362 | 1, 363 | 0, 364 | 2, 365 | 0, 366 | 0, 367 | 2 368 | ], 369 | [ 370 | 2, 371 | 2, 372 | 2, 373 | 2, 374 | 2, 375 | 2, 376 | 2, 377 | 2, 378 | 2, 379 | 2, 380 | 2, 381 | 2 382 | ] 383 | ], 384 | "rule_severities": { 385 | "bus_definition_conflict": "error", 386 | "bus_entry_needed": "error", 387 | "bus_to_bus_conflict": "error", 388 | "bus_to_net_conflict": "error", 389 | "conflicting_netclasses": "error", 390 | "different_unit_footprint": "error", 391 | "different_unit_net": "error", 392 | "duplicate_reference": "error", 393 | "duplicate_sheet_names": "error", 394 | "endpoint_off_grid": "warning", 395 | "extra_units": "error", 396 | "global_label_dangling": "warning", 397 | "hier_label_mismatch": "error", 398 | "label_dangling": "error", 399 | "lib_symbol_issues": "warning", 400 | "missing_bidi_pin": "warning", 401 | "missing_input_pin": "warning", 402 | "missing_power_pin": "error", 403 | "missing_unit": "warning", 404 | "multiple_net_names": "warning", 405 | "net_not_bus_member": "warning", 406 | "no_connect_connected": "warning", 407 | "no_connect_dangling": "warning", 408 | "pin_not_connected": "error", 409 | "pin_not_driven": "error", 410 | "pin_to_pin": "warning", 411 | "power_pin_not_driven": "error", 412 | "similar_labels": "warning", 413 | "simulation_model_issue": "error", 414 | "unannotated": "error", 415 | "unit_value_mismatch": "error", 416 | "unresolved_variable": "error", 417 | "wire_dangling": "error" 418 | } 419 | }, 420 | "libraries": { 421 | "pinned_footprint_libs": [], 422 | "pinned_symbol_libs": [] 423 | }, 424 | "meta": { 425 | "filename": "Tap_Photosensor_PCB.kicad_pro", 426 | "version": 1 427 | }, 428 | "net_settings": { 429 | "classes": [ 430 | { 431 | "bus_width": 12, 432 | "clearance": 0.2, 433 | "diff_pair_gap": 0.25, 434 | "diff_pair_via_gap": 0.25, 435 | "diff_pair_width": 0.2, 436 | "line_style": 0, 437 | "microvia_diameter": 0.3, 438 | "microvia_drill": 0.1, 439 | "name": "Default", 440 | "pcb_color": "rgba(0, 0, 0, 0.000)", 441 | "schematic_color": "rgba(0, 0, 0, 0.000)", 442 | "track_width": 0.25, 443 | "via_diameter": 0.8, 444 | "via_drill": 0.4, 445 | "wire_width": 6 446 | } 447 | ], 448 | "meta": { 449 | "version": 3 450 | }, 451 | "net_colors": null, 452 | "netclass_assignments": null, 453 | "netclass_patterns": [] 454 | }, 455 | "pcbnew": { 456 | "last_paths": { 457 | "gencad": "", 458 | "idf": "", 459 | "netlist": "", 460 | "specctra_dsn": "", 461 | "step": "Tap_Photosensor_PCB.STEP", 462 | "vrml": "" 463 | }, 464 | "page_layout_descr_file": "" 465 | }, 466 | "schematic": { 467 | "annotate_start_num": 0, 468 | "drawing": { 469 | "dashed_lines_dash_length_ratio": 12.0, 470 | "dashed_lines_gap_length_ratio": 3.0, 471 | "default_line_thickness": 6.0, 472 | "default_text_size": 50.0, 473 | "field_names": [], 474 | "intersheets_ref_own_page": false, 475 | "intersheets_ref_prefix": "", 476 | "intersheets_ref_short": false, 477 | "intersheets_ref_show": false, 478 | "intersheets_ref_suffix": "", 479 | "junction_size_choice": 3, 480 | "label_size_ratio": 0.375, 481 | "pin_symbol_size": 25.0, 482 | "text_offset_ratio": 0.15 483 | }, 484 | "legacy_lib_dir": "", 485 | "legacy_lib_list": [], 486 | "meta": { 487 | "version": 1 488 | }, 489 | "net_format_name": "", 490 | "ngspice": { 491 | "fix_include_paths": true, 492 | "fix_passive_vals": false, 493 | "meta": { 494 | "version": 0 495 | }, 496 | "model_mode": 0, 497 | "workbook_filename": "" 498 | }, 499 | "page_layout_descr_file": "", 500 | "plot_directory": "", 501 | "spice_adjust_passive_values": false, 502 | "spice_current_sheet_as_root": false, 503 | "spice_external_command": "spice \"%I\"", 504 | "spice_model_current_sheet_as_root": true, 505 | "spice_save_all_currents": false, 506 | "spice_save_all_voltages": false, 507 | "subpart_first_id": 65, 508 | "subpart_id_separator": 0 509 | }, 510 | "sheets": [ 511 | [ 512 | "0ac6eaa6-e485-4cbc-b2bb-b102a789fc17", 513 | "" 514 | ] 515 | ], 516 | "text_variables": {} 517 | } 518 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-EdgeCuts.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:09:57-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Profile,NP*% 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:09:57* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | %TA.AperFunction,Profile*% 14 | %ADD10C,0.100000*% 15 | %TD*% 16 | G04 APERTURE END LIST* 17 | D10* 18 | X99250000Y-68750000D02* 19 | X125500000Y-68750000D01* 20 | X105875000Y-54425000D02* 21 | X119075000Y-54425000D01* 22 | X98181040Y-63993680D02* 23 | X98181040Y-66993680D01* 24 | X126499999Y-64000000D02* 25 | G75* 26 | G03* 27 | X125475943Y-62272338I-4499999J-1500000D01* 28 | G01* 29 | X126500000Y-64000000D02* 30 | X126500246Y-67100088D01* 31 | X99250000Y-68750000D02* 32 | X99180000Y-68640000D01* 33 | X99000000Y-62500000D02* 34 | G75* 35 | G03* 36 | X98181040Y-63993680I3700000J-3000000D01* 37 | G01* 38 | X125499999Y-68749999D02* 39 | G75* 40 | G03* 41 | X126500245Y-67100088I-3499999J3249999D01* 42 | G01* 43 | X105875000Y-54425000D02* 44 | X99000000Y-62500000D01* 45 | X119075000Y-54425000D02* 46 | X125475944Y-62272337D01* 47 | X98179585Y-66994198D02* 48 | G75* 49 | G03* 50 | X99180001Y-68639999I4476615J1594198D01* 51 | G01* 52 | M02* 53 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-MaskBottom.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:09:57-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Bot*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:09:57* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | %AMHorizOval* 32 | 0 Thick line with rounded ends* 33 | 0 $1 width* 34 | 0 $2 $3 position (X,Y) of the first rounded end (center of the circle)* 35 | 0 $4 $5 position (X,Y) of the second rounded end (center of the circle)* 36 | 0 Add line between two ends* 37 | 20,1,$1,$2,$3,$4,$5,0* 38 | 0 Add two circle primitives to create the rounded ends* 39 | 1,1,$1,$2,$3* 40 | 1,1,$1,$4,$5*% 41 | %AMFreePoly0* 42 | 4,1,19,0.550000,-0.750000,0.000000,-0.750000,0.000000,-0.744911,-0.071157,-0.744911,-0.207708,-0.704816,-0.327430,-0.627875,-0.420627,-0.520320,-0.479746,-0.390866,-0.500000,-0.250000,-0.500000,0.250000,-0.479746,0.390866,-0.420627,0.520320,-0.327430,0.627875,-0.207708,0.704816,-0.071157,0.744911,0.000000,0.744911,0.000000,0.750000,0.550000,0.750000,0.550000,-0.750000,0.550000,-0.750000, 43 | $1*% 44 | %AMFreePoly1* 45 | 4,1,19,0.000000,0.744911,0.071157,0.744911,0.207708,0.704816,0.327430,0.627875,0.420627,0.520320,0.479746,0.390866,0.500000,0.250000,0.500000,-0.250000,0.479746,-0.390866,0.420627,-0.520320,0.327430,-0.627875,0.207708,-0.704816,0.071157,-0.744911,0.000000,-0.744911,0.000000,-0.750000,-0.550000,-0.750000,-0.550000,0.750000,0.000000,0.750000,0.000000,0.744911,0.000000,0.744911, 46 | $1*% 47 | G04 Aperture macros list end* 48 | %ADD10RoundRect,0.250000X-0.625000X0.350000X-0.625000X-0.350000X0.625000X-0.350000X0.625000X0.350000X0*% 49 | %ADD11O,1.750000X1.200000*% 50 | %ADD12C,3.200000*% 51 | %ADD13R,1.782000X0.958000*% 52 | %ADD14O,1.782000X0.958000*% 53 | %ADD15HorizOval,0.955000X0.279101X-0.263011X-0.279101X0.263011X0*% 54 | %ADD16HorizOval,0.955000X0.279101X0.263011X-0.279101X-0.263011X0*% 55 | %ADD17FreePoly0,90.000000*% 56 | %ADD18R,1.500000X1.000000*% 57 | %ADD19FreePoly1,90.000000*% 58 | G04 APERTURE END LIST* 59 | D10* 60 | %TO.C,J1*% 61 | X112675000Y-56925000D03* 62 | D11* 63 | X112674999Y-58924999D03* 64 | X112674999Y-60924999D03* 65 | %TD*% 66 | D12* 67 | %TO.C,REF\u002A\u002A*% 68 | X102870000Y-65500000D03* 69 | %TD*% 70 | %TO.C,REF\u002A\u002A*% 71 | X121930000Y-65500000D03* 72 | %TD*% 73 | D13* 74 | %TO.C,U1*% 75 | X108067999Y-66769999D03* 76 | D14* 77 | X108067999Y-64229999D03* 78 | D15* 79 | X116731999Y-63846999D03* 80 | D14* 81 | X116731999Y-65499999D03* 82 | D16* 83 | X116731999Y-67152999D03* 84 | %TD*% 85 | D17* 86 | %TO.C,JP1*% 87 | X109250000Y-60050000D03* 88 | D18* 89 | X109249999Y-58749999D03* 90 | D19* 91 | X109250000Y-57450000D03* 92 | %TD*% 93 | M02* 94 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-MaskTop.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:09:57-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Top*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:09:57* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | %AMHorizOval* 32 | 0 Thick line with rounded ends* 33 | 0 $1 width* 34 | 0 $2 $3 position (X,Y) of the first rounded end (center of the circle)* 35 | 0 $4 $5 position (X,Y) of the second rounded end (center of the circle)* 36 | 0 Add line between two ends* 37 | 20,1,$1,$2,$3,$4,$5,0* 38 | 0 Add two circle primitives to create the rounded ends* 39 | 1,1,$1,$2,$3* 40 | 1,1,$1,$4,$5*% 41 | %AMFreePoly0* 42 | 4,1,19,0.500000,-0.750000,0.000000,-0.750000,0.000000,-0.744911,-0.071157,-0.744911,-0.207708,-0.704816,-0.327430,-0.627875,-0.420627,-0.520320,-0.479746,-0.390866,-0.500000,-0.250000,-0.500000,0.250000,-0.479746,0.390866,-0.420627,0.520320,-0.327430,0.627875,-0.207708,0.704816,-0.071157,0.744911,0.000000,0.744911,0.000000,0.750000,0.500000,0.750000,0.500000,-0.750000,0.500000,-0.750000, 43 | $1*% 44 | %AMFreePoly1* 45 | 4,1,19,0.000000,0.744911,0.071157,0.744911,0.207708,0.704816,0.327430,0.627875,0.420627,0.520320,0.479746,0.390866,0.500000,0.250000,0.500000,-0.250000,0.479746,-0.390866,0.420627,-0.520320,0.327430,-0.627875,0.207708,-0.704816,0.071157,-0.744911,0.000000,-0.744911,0.000000,-0.750000,-0.500000,-0.750000,-0.500000,0.750000,0.000000,0.750000,0.000000,0.744911,0.000000,0.744911, 46 | $1*% 47 | G04 Aperture macros list end* 48 | %ADD10RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 49 | %ADD11RoundRect,0.250000X-0.625000X0.350000X-0.625000X-0.350000X0.625000X-0.350000X0.625000X0.350000X0*% 50 | %ADD12O,1.750000X1.200000*% 51 | %ADD13RoundRect,0.200000X-0.275000X0.200000X-0.275000X-0.200000X0.275000X-0.200000X0.275000X0.200000X0*% 52 | %ADD14RoundRect,0.140000X0.140000X0.170000X-0.140000X0.170000X-0.140000X-0.170000X0.140000X-0.170000X0*% 53 | %ADD15RoundRect,0.225000X0.225000X0.250000X-0.225000X0.250000X-0.225000X-0.250000X0.225000X-0.250000X0*% 54 | %ADD16FreePoly0,90.000000*% 55 | %ADD17FreePoly1,90.000000*% 56 | %ADD18C,3.200000*% 57 | %ADD19RoundRect,0.175000X-0.325000X-0.175000X0.325000X-0.175000X0.325000X0.175000X-0.325000X0.175000X0*% 58 | %ADD20R,0.700000X0.600000*% 59 | %ADD21RoundRect,0.250000X-0.250000X-0.475000X0.250000X-0.475000X0.250000X0.475000X-0.250000X0.475000X0*% 60 | %ADD22RoundRect,0.140000X-0.140000X-0.170000X0.140000X-0.170000X0.140000X0.170000X-0.140000X0.170000X0*% 61 | %ADD23R,0.600000X0.450000*% 62 | %ADD24R,1.000000X2.700000*% 63 | %ADD25RoundRect,0.225000X0.250000X-0.225000X0.250000X0.225000X-0.250000X0.225000X-0.250000X-0.225000X0*% 64 | %ADD26R,1.782000X0.958000*% 65 | %ADD27O,1.782000X0.958000*% 66 | %ADD28HorizOval,0.955000X0.279101X-0.263011X-0.279101X0.263011X0*% 67 | %ADD29HorizOval,0.955000X0.279101X0.263011X-0.279101X-0.263011X0*% 68 | G04 APERTURE END LIST* 69 | %TO.C,U1*% 70 | G36* 71 | X117249227Y-66427139D02* 72 | G01* 73 | X117375849Y-66461068D01* 74 | X117489376Y-66526612D01* 75 | X117582070Y-66619306D01* 76 | X117647614Y-66732833D01* 77 | X117681543Y-66859455D01* 78 | X117683682Y-66925000D01* 79 | X117683682Y-67380000D01* 80 | X117681543Y-67445545D01* 81 | X117647614Y-67572167D01* 82 | X117582070Y-67685694D01* 83 | X117489376Y-67778388D01* 84 | X117375849Y-67843932D01* 85 | X117249227Y-67877861D01* 86 | X117183682Y-67880000D01* 87 | X116465682Y-67880000D01* 88 | X116394712Y-67877381D01* 89 | X116259039Y-67835673D01* 90 | X116141611Y-67755940D01* 91 | X116052796Y-67645221D01* 92 | X116000436Y-67513292D01* 93 | X115989155Y-67371801D01* 94 | X116019947Y-67233242D01* 95 | X116090094Y-67109848D01* 96 | X116139953Y-67059275D01* 97 | X116675953Y-66554275D01* 98 | X116720751Y-66514444D01* 99 | X116825704Y-66456596D01* 100 | X116941762Y-66426730D01* 101 | X117001682Y-66425000D01* 102 | X117183682Y-66425000D01* 103 | X117249227Y-66427139D01* 104 | G37* 105 | G36* 106 | X117250335Y-63122139D02* 107 | G01* 108 | X117376957Y-63156068D01* 109 | X117490484Y-63221612D01* 110 | X117583178Y-63314306D01* 111 | X117648722Y-63427833D01* 112 | X117682651Y-63554455D01* 113 | X117684790Y-63620000D01* 114 | X117684790Y-64075000D01* 115 | X117682651Y-64140545D01* 116 | X117648722Y-64267167D01* 117 | X117583178Y-64380694D01* 118 | X117490484Y-64473388D01* 119 | X117376957Y-64538932D01* 120 | X117250335Y-64572861D01* 121 | X117184790Y-64575000D01* 122 | X117002790Y-64575000D01* 123 | X116942870Y-64573271D01* 124 | X116826812Y-64543405D01* 125 | X116721859Y-64485557D01* 126 | X116677061Y-64445725D01* 127 | X116141061Y-63940725D01* 128 | X116091202Y-63890152D01* 129 | X116021055Y-63766758D01* 130 | X115990263Y-63628199D01* 131 | X116001544Y-63486708D01* 132 | X116053904Y-63354779D01* 133 | X116142719Y-63244060D01* 134 | X116260147Y-63164327D01* 135 | X116395820Y-63122619D01* 136 | X116466790Y-63120000D01* 137 | X117184790Y-63120000D01* 138 | X117250335Y-63122139D01* 139 | G37* 140 | %TD*% 141 | D10* 142 | %TO.C,F1*% 143 | X104850000Y-58237500D03* 144 | X104850000Y-60062500D03* 145 | %TD*% 146 | D11* 147 | %TO.C,J1*% 148 | X112675000Y-56925000D03* 149 | D12* 150 | X112674999Y-58924999D03* 151 | X112674999Y-60924999D03* 152 | %TD*% 153 | D13* 154 | %TO.C,R1*% 155 | X110452990Y-65375000D03* 156 | X110452990Y-67025000D03* 157 | %TD*% 158 | D14* 159 | %TO.C,C2*% 160 | X119205000Y-56700000D03* 161 | X118245000Y-56700000D03* 162 | %TD*% 163 | D15* 164 | %TO.C,C3*% 165 | X120275000Y-61375000D03* 166 | X118725000Y-61375000D03* 167 | %TD*% 168 | D16* 169 | %TO.C,JP2*% 170 | X112460000Y-65070000D03* 171 | D17* 172 | X112460000Y-63770000D03* 173 | %TD*% 174 | D18* 175 | %TO.C,REF\u002A\u002A*% 176 | X102870000Y-65500000D03* 177 | %TD*% 178 | D19* 179 | %TO.C,U2*% 180 | X115150000Y-57975000D03* 181 | X115150000Y-58925000D03* 182 | X115150000Y-59875000D03* 183 | X117350000Y-59875000D03* 184 | X117350000Y-58925000D03* 185 | X117350000Y-57975000D03* 186 | %TD*% 187 | D20* 188 | %TO.C,D1*% 189 | X112939999Y-66199999D03* 190 | X111939999Y-66199999D03* 191 | X111939999Y-67599999D03* 192 | X112939999Y-67599999D03* 193 | %TD*% 194 | D21* 195 | %TO.C,C1*% 196 | X115325000Y-61650000D03* 197 | X117225000Y-61650000D03* 198 | %TD*% 199 | D22* 200 | %TO.C,C4*% 201 | X118245000Y-55750000D03* 202 | X119205000Y-55750000D03* 203 | %TD*% 204 | D23* 205 | %TO.C,D3*% 206 | X117224999Y-56224999D03* 207 | X115124999Y-56224999D03* 208 | %TD*% 209 | D13* 210 | %TO.C,R3*% 211 | X114400000Y-65375000D03* 212 | X114400000Y-67025000D03* 213 | %TD*% 214 | D18* 215 | %TO.C,REF\u002A\u002A*% 216 | X121930000Y-65500000D03* 217 | %TD*% 218 | D24* 219 | %TO.C,L1*% 220 | X118624999Y-58899999D03* 221 | X120724999Y-58899999D03* 222 | %TD*% 223 | D25* 224 | %TO.C,C5*% 225 | X122150000Y-61275000D03* 226 | X122150000Y-59725000D03* 227 | %TD*% 228 | D26* 229 | %TO.C,U1*% 230 | X108067999Y-66769999D03* 231 | D27* 232 | X108067999Y-64229999D03* 233 | D28* 234 | X116731999Y-63846999D03* 235 | D27* 236 | X116731999Y-65499999D03* 237 | D29* 238 | X116731999Y-67152999D03* 239 | %TD*% 240 | M02* 241 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-NPTH-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-NPTH-drl_map.pdf -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad (7.0.0-0)} date Thursday, March 02, 2023 at 02:09:57 PM 3 | ; FORMAT={-:-/ absolute / inch / decimal} 4 | ; #@! TF.CreationDate,2023-03-02T14:09:57-08:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,(7.0.0-0) 6 | ; #@! TF.FileFunction,NonPlated,1,2,NPTH 7 | FMAT,2 8 | INCH 9 | ; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill 10 | T1C0.1260 11 | % 12 | G90 13 | G05 14 | T1 15 | X4.05Y-2.5787 16 | X4.8004Y-2.5787 17 | T0 18 | M30 19 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-PTH-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-PTH-drl_map.pdf -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-PTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad (7.0.0-0)} date Thursday, March 02, 2023 at 02:09:57 PM 3 | ; FORMAT={-:-/ absolute / inch / decimal} 4 | ; #@! TF.CreationDate,2023-03-02T14:09:57-08:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,(7.0.0-0) 6 | ; #@! TF.FileFunction,Plated,1,2,PTH 7 | FMAT,2 8 | INCH 9 | ; #@! TA.AperFunction,Plated,PTH,ViaDrill 10 | T1C0.0157 11 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 12 | T2C0.0295 13 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 14 | T3C0.0297 15 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 16 | T4C0.0298 17 | % 18 | G90 19 | G05 20 | T1 21 | X4.0512Y-2.4016 22 | X4.1811Y-2.6693 23 | X4.2096Y-2.2018 24 | X4.2143Y-2.2697 25 | X4.3012Y-2.313 26 | X4.3012Y-2.4163 27 | X4.3702Y-2.2549 28 | X4.5335Y-2.25 29 | X4.5966Y-2.2146 30 | X4.6654Y-2.4921 31 | X4.6693Y-2.685 32 | X4.7283Y-2.2244 33 | X4.7835Y-2.4134 34 | X4.8369Y-2.3765 35 | T2 36 | X4.436Y-2.2411 37 | X4.436Y-2.3199 38 | X4.436Y-2.3986 39 | T3 40 | G00X4.5853Y-2.5038 41 | M15 42 | G01X4.6062Y-2.5235 43 | M16 44 | G05 45 | G00X4.5853Y-2.6537 46 | M15 47 | G01X4.6062Y-2.634 48 | M16 49 | G05 50 | T4 51 | G00X4.2443Y-2.5287 52 | M15 53 | G01X4.265Y-2.5287 54 | M16 55 | G05 56 | G00X4.2443Y-2.6287 57 | M15 58 | G01X4.265Y-2.6287 59 | M16 60 | G05 61 | G00X4.5854Y-2.5787 62 | M15 63 | G01X4.6061Y-2.5787 64 | M16 65 | G05 66 | T0 67 | M30 68 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-PasteBottom.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:09:57-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:09:57* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 APERTURE END LIST* 15 | M02* 16 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-PasteTop.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:09:57-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Top*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:09:57* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | G04 Aperture macros list end* 32 | %ADD10RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 33 | %ADD11RoundRect,0.200000X-0.275000X0.200000X-0.275000X-0.200000X0.275000X-0.200000X0.275000X0.200000X0*% 34 | %ADD12RoundRect,0.140000X0.140000X0.170000X-0.140000X0.170000X-0.140000X-0.170000X0.140000X-0.170000X0*% 35 | %ADD13RoundRect,0.225000X0.225000X0.250000X-0.225000X0.250000X-0.225000X-0.250000X0.225000X-0.250000X0*% 36 | %ADD14RoundRect,0.175000X-0.325000X-0.175000X0.325000X-0.175000X0.325000X0.175000X-0.325000X0.175000X0*% 37 | %ADD15R,0.700000X0.600000*% 38 | %ADD16RoundRect,0.250000X-0.250000X-0.475000X0.250000X-0.475000X0.250000X0.475000X-0.250000X0.475000X0*% 39 | %ADD17RoundRect,0.140000X-0.140000X-0.170000X0.140000X-0.170000X0.140000X0.170000X-0.140000X0.170000X0*% 40 | %ADD18R,0.600000X0.450000*% 41 | %ADD19R,1.000000X2.700000*% 42 | %ADD20RoundRect,0.225000X0.250000X-0.225000X0.250000X0.225000X-0.250000X0.225000X-0.250000X-0.225000X0*% 43 | G04 APERTURE END LIST* 44 | D10* 45 | %TO.C,F1*% 46 | X104850000Y-58237500D03* 47 | X104850000Y-60062500D03* 48 | %TD*% 49 | D11* 50 | %TO.C,R1*% 51 | X110452990Y-65375000D03* 52 | X110452990Y-67025000D03* 53 | %TD*% 54 | D12* 55 | %TO.C,C2*% 56 | X119205000Y-56700000D03* 57 | X118245000Y-56700000D03* 58 | %TD*% 59 | D13* 60 | %TO.C,C3*% 61 | X120275000Y-61375000D03* 62 | X118725000Y-61375000D03* 63 | %TD*% 64 | D14* 65 | %TO.C,U2*% 66 | X115150000Y-57975000D03* 67 | X115150000Y-58925000D03* 68 | X115150000Y-59875000D03* 69 | X117350000Y-59875000D03* 70 | X117350000Y-58925000D03* 71 | X117350000Y-57975000D03* 72 | %TD*% 73 | D15* 74 | %TO.C,D1*% 75 | X112939999Y-66199999D03* 76 | X111939999Y-66199999D03* 77 | X111939999Y-67599999D03* 78 | X112939999Y-67599999D03* 79 | %TD*% 80 | D16* 81 | %TO.C,C1*% 82 | X115325000Y-61650000D03* 83 | X117225000Y-61650000D03* 84 | %TD*% 85 | D17* 86 | %TO.C,C4*% 87 | X118245000Y-55750000D03* 88 | X119205000Y-55750000D03* 89 | %TD*% 90 | D18* 91 | %TO.C,D3*% 92 | X117224999Y-56224999D03* 93 | X115124999Y-56224999D03* 94 | %TD*% 95 | D11* 96 | %TO.C,R3*% 97 | X114400000Y-65375000D03* 98 | X114400000Y-67025000D03* 99 | %TD*% 100 | D19* 101 | %TO.C,L1*% 102 | X118624999Y-58899999D03* 103 | X120724999Y-58899999D03* 104 | %TD*% 105 | D20* 106 | %TO.C,C5*% 107 | X122150000Y-61275000D03* 108 | X122150000Y-59725000D03* 109 | %TD*% 110 | M02* 111 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/gerber/Tap_Photosensor_PCB-VScore.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(7.0.0-0)*% 2 | %TF.CreationDate,2023-03-02T14:09:57-08:00*% 3 | %TF.ProjectId,Tap_Photosensor_PCB,5461705f-5068-46f7-946f-73656e736f72,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Other,Comment*% 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW (7.0.0-0)) date 2023-03-02 14:09:57* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | %ADD10C,0.150000*% 14 | G04 APERTURE END LIST* 15 | D10* 16 | %TO.C,REF\u002A\u002A*% 17 | X105720000Y-65500000D02* 18 | G75* 19 | G03* 20 | X105720000Y-65500000I-2850000J0D01* 21 | G01* 22 | X124780000Y-65500000D02* 23 | G75* 24 | G03* 25 | X124780000Y-65500000I-2850000J0D01* 26 | G01* 27 | %TD*% 28 | M02* 29 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/production_files/BOM-Tap_Photosensor_PCB.csv: -------------------------------------------------------------------------------- 1 | Comment,Designator,Footprint,LCSC 2 | D_Schottky,D3,D_SOD-323,C146335 3 | AP63205WU,U2,TSOT-26,C2071056 4 | 620R,R3,R_0603_1608Metric,C23220 5 | Polyfuse_Small,F1,R_0805_2012Metric,C2840557 6 | 100 nF,C2,C_0402_1005Metric,C307331 7 | 4.7 uH,L1,CKCS3010,C354557 8 | 68 nF,C4,C_0402_1005Metric,C354977 9 | 10 µF,C1,C_0805_2012Metric,C440198 10 | 200R,R1,R_0603_1608Metric,C8218 11 | 22 µF,"C3,C5",C_0603_1608Metric,C84419 12 | XL-1615RGBC,D1,LED_0606_1432,C965840 13 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/production_files/CPL-Tap_Photosensor_PCB.csv: -------------------------------------------------------------------------------- 1 | Designator,Val,Package,Mid X,Mid Y,Rotation,Layer 2 | C1,10 µF,C_0805_2012Metric,116.275,-61.65,0.0,top 3 | C2,100 nF,C_0402_1005Metric,118.725,-56.7,180.0,top 4 | C3,22 µF,C_0603_1608Metric,119.5,-61.375,180.0,top 5 | C4,68 nF,C_0402_1005Metric,118.725,-55.75,0.0,top 6 | C5,22 µF,C_0603_1608Metric,122.15,-60.5,90.0,top 7 | D1,XL-1615RGBC,LED_0606_1432,112.44,-66.9,-90.0,top 8 | D3,D_Schottky,D_SOD-323,116.175,-56.225,180.0,top 9 | F1,Polyfuse_Small,R_0805_2012Metric,104.85,-59.15,-90.0,top 10 | L1,4.7 uH,CKCS3010,119.675,-58.9,0.0,top 11 | R1,200R,R_0603_1608Metric,110.45299,-66.2,-90.0,top 12 | R3,620R,R_0603_1608Metric,114.4,-66.2,-90.0,top 13 | U2,AP63205WU,TSOT-26,116.25,-58.925,270.0,top 14 | -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/production_files/GERBER-Tap_Photosensor_PCB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/production_files/GERBER-Tap_Photosensor_PCB.zip -------------------------------------------------------------------------------- /OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/project.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/Tap_Photosensor_PCB_v2/jlcpcb/project.db -------------------------------------------------------------------------------- /OptoTap/images/5v_led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/images/5v_led.png -------------------------------------------------------------------------------- /OptoTap/images/dfm_led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/images/dfm_led.png -------------------------------------------------------------------------------- /OptoTap/images/kicad_led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/images/kicad_led.png -------------------------------------------------------------------------------- /OptoTap/images/led_blink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/images/led_blink.gif -------------------------------------------------------------------------------- /OptoTap/images/led_circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/images/led_circuit.png -------------------------------------------------------------------------------- /OptoTap/images/optotap_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/images/optotap_v1.png -------------------------------------------------------------------------------- /OptoTap/images/optotap_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/images/optotap_v2.png -------------------------------------------------------------------------------- /OptoTap/images/photo_led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/images/photo_led.png -------------------------------------------------------------------------------- /OptoTap/images/solder_bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/OptoTap/images/solder_bridge.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Voron Tap 2 | 3 | ![Voron-Tap3](images/Voron-Tap.gif) 4 | 5 | > Animated image courtesy of [Maple Leaf Makers](https://github.com/MapleLeafMakers) , see the whole video at https://www.youtube.com/watch?v=mz5qcOZgXhI 6 | 7 | Tap is a nozzle-based z-probe for the V2 and Trident printer designs. The entire toolhead moves to trigger an optical switch. Tap offers many advantages: 8 | 9 | * Extreme precision 0.4μm (0.0004mm) 10 | * Any build surface and easily change at will 11 | * Durability via optical sensor (millions of probe cycles) 12 | * High temperature reliability (70C to 100C) 13 | * Simplified probe mechanics (no dock/undock macros) 14 | * No separate Z-endstop required 15 | * Crash protection 16 | 17 | ## Requirements 18 | 19 | * Bed must be stable for probing force of 500-800 grams 20 | * Switchwire, V1.8, Legacy, V0 beds are NOT rigid enough 21 | * Mounts to MGN-12H X-axis 22 | * Front mounted extruder (Clockwork2, LGX, Galileo) 23 | * Accuracy depends on good mechanical condition 24 | * Must have 5V at toolhead or special 24V sensor PCB 25 | 26 | ## Instructions 27 | 28 | Comprehensive assembly details are available in the [Manual](Manual/Assembly_Manual_Tap.pdf) 29 | 30 | ## Post-Install Setup 31 | 32 | 1. Update your `printer.cfg` as recommended in [Tap Klipper Instructions](config/tap_klipper_instructions.md) 33 | 2. Home Z and test virtual Z endstop by lifting tool-head 34 | 3. Heat soak your machine and run a couple `probe_accuracy samples=100` to "break-in" your probe 35 | 4. Run a few more `probe_accuracy` checks (default of 10 probes) 36 | 37 | For well-built machines you can expect to see between 0.0000 and 0.0008 standard deviation. 38 | 39 | ## FAQs 40 | 41 | * Will Tap hurt my print surface? No, probing temp is restricted to 150C. The team recommends spray coated spring steel. Users of smooth PEI may find minor burnish marks if continously probing the same spot. 42 | * Will the hartk 2-piece PCB work with Tap? Yes, but it requires a slight modification. See discord pin. 43 | * Can I use an optical sensor not specified in the BOM? Not recommended, the team spent considerable time validating sensors in [BOM](BOM.md). 44 | * Can I use micro-switch instead? Not recommended, but check here for more details: [Unklicky Tap](https://github.com/majarspeed/Unklicky/tree/main/Unklicky_TAP) 45 | * Can I use Tap with kinematic bed mounts? Yes, if your bed is rigid up to 800 grams of force. 46 | * Doesn't this add a lot of weight? The team explored many designs and landed on ~50 extra grams as good trade-off between rigidity and weight. 47 | * Why do I need this if my induction probe works fine? Tap enables a far better user experience as it eliminates most baby-stepping needed due to thermal expansion, nozzle & bed surface changes. 48 | * Is Tap noticably more accurate than klicky? Yes. 49 | 50 | ## (Bonus Points) Data Science 51 | 52 | Tap engineering is backed by data science. If you want to dive deeper check out the following resources: 53 | 54 | * [Voron:LIVE! Voron Tap announcement stream](https://www.youtube.com/watch?v=JLUDLJQXZeU) 55 | * [Probe accuracy across thermal envelope](https://github.com/KiloQubit/probe_accuracy) 56 | * [Repeatability at individual corners](https://github.com/sporkus/probe_accuracy_tests) 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /STLs/MGN9_Assembly_Tool.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/STLs/MGN9_Assembly_Tool.stl -------------------------------------------------------------------------------- /STLs/Printed_Cut_Guide.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/STLs/Printed_Cut_Guide.stl -------------------------------------------------------------------------------- /STLs/Tap_Center_left_r8.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/STLs/Tap_Center_left_r8.stl -------------------------------------------------------------------------------- /STLs/Tap_Center_right_r8.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/STLs/Tap_Center_right_r8.stl -------------------------------------------------------------------------------- /STLs/Tap_Front_r8.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/STLs/Tap_Front_r8.stl -------------------------------------------------------------------------------- /STLs/Tap_Upper_D2HW_r8.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/STLs/Tap_Upper_D2HW_r8.stl -------------------------------------------------------------------------------- /STLs/Tap_Upper_PCB_r8.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/STLs/Tap_Upper_PCB_r8.stl -------------------------------------------------------------------------------- /STLs/Tap_Upper_Wired_r8.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/STLs/Tap_Upper_Wired_r8.stl -------------------------------------------------------------------------------- /STLs/[a]_Tap_Belt_Cover_r8_x2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/STLs/[a]_Tap_Belt_Cover_r8_x2.stl -------------------------------------------------------------------------------- /STLs/[a]_Tap_Center_r8.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/STLs/[a]_Tap_Center_r8.stl -------------------------------------------------------------------------------- /STLs/changelog.md: -------------------------------------------------------------------------------- 1 | The scope of this file is to summarize any stl changes after the initial release files (r1) 2 | Important note: When a change is made it is normal for only a few parts to change, or a single part to change. For parts that don't change, we do not increment revision numbers. 3 | As a result of this, the revision numbers of the most current parts may not match. 4 | 5 | 11/28/2022 6 | [a]Tap_Center_r2: fixed a minor issue in the MGN12H chamfer that would cause some MGN12H carriages to not fit properly (issue 15) 7 | https://github.com/VoronDesign/Voron-Tap/issues/15 8 | 9 | 11/29/2022 10 | [a]Tap_Center_r3: re-added in the support structure that went missing at [a]Tap_Center_r2 11 | 12 | 12/16/2022 13 | [a]Tap_Center_r4: reinforced area above magnet holders 14 | Tap_upper_D2HW_r1: new variant for switch 15 | Tap_upper_PCB_r2: minor changes to optical sensor location for better trigger 16 | Tap_upper_wired_r2: repositioned sensor to same location as PCB 17 | Tap_front_r2: increased clearance to M3x12 endstop 18 | 19 | ![Mid December Update](../images/12_16_updatelog.png) 20 | 21 | 1/3/2023 22 | [a]Tap_Center_r5: eliminates binding issues caused by belts pressing on endcaps, also better belt management 23 | moved X-switch 1mm to right to activate before collision 24 | [a]Tap_Center_r6: removed a small artifact that began in r5 25 | ![Jan 3 Update](../images/1_3_23_updatelog.png) 26 | -------------------------------------------------------------------------------- /config/tap_klipper_instructions.md: -------------------------------------------------------------------------------- 1 | # Updating your Klipper config for Tap 2 | 3 | There are a few changes you'll need to make in order to get Tap working properly. 4 | 5 | 1. Update your Z endstop: 6 | 7 | - Under the `[stepper_z]` block, you'll want to comment out your `position_endstop` and change your `endstop_pin` so that it uses the virtual Z endstop for Tap. 8 | 9 | - Example: `endstop_pin: probe:z_virtual_endstop` 10 | 11 | - Be sure to *also* remove any automatically saved `[stepper_z] position_endstop: ...` value that may be found at the **bottom** of your `printer.cfg`file. 12 | 13 | 2. Update your Z homing position: 14 | 15 | - If you use `[safe_z_home]`, change the location to the center of the bed. If you have a `[homing_override]` make sure that it moves the toolhead to the center of the bed before calling `G28 Z`. 16 | 17 | 3. Update your probe's offsets: 18 | 19 | - Remember, with Tap, your nozzle IS the probe, so your `[probe] x_offset` and `[probe] y_offset` values should be 0 now. You'll need to manually calibrate the probe's Z offset by using `PROBE_CALIBRATE`. 20 | 21 | 4. Add Tap's `activate_gcode:` 22 | 23 | - This G-code will allow you to probe cold, but will also prevent you from probing with a nozzle at printing temperature (to try to preserve your build surface). This goes in the `[probe]` section of your config. 24 | 25 | ```jinja 26 | 27 | activate_gcode: 28 | {% set PROBE_TEMP = 150 %} 29 | {% set MAX_TEMP = PROBE_TEMP + 5 %} 30 | {% set ACTUAL_TEMP = printer.extruder.temperature %} 31 | {% set TARGET_TEMP = printer.extruder.target %} 32 | 33 | {% if TARGET_TEMP > PROBE_TEMP %} 34 | { action_respond_info('Extruder temperature target of %.1fC is too high, lowering to %.1fC' % (TARGET_TEMP, PROBE_TEMP)) } 35 | M109 S{ PROBE_TEMP } 36 | {% else %} 37 | # Temperature target is already low enough, but nozzle may still be too hot. 38 | {% if ACTUAL_TEMP > MAX_TEMP %} 39 | { action_respond_info('Extruder temperature %.1fC is still too high, waiting until below %.1fC' % (ACTUAL_TEMP, MAX_TEMP)) } 40 | TEMPERATURE_WAIT SENSOR=extruder MAXIMUM={ MAX_TEMP } 41 | {% endif %} 42 | {% endif %} 43 | 44 | ``` 45 | -------------------------------------------------------------------------------- /images/12_16_updatelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/images/12_16_updatelog.png -------------------------------------------------------------------------------- /images/1_3_23_updatelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/images/1_3_23_updatelog.png -------------------------------------------------------------------------------- /images/RC8/RC8_beltclamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/images/RC8/RC8_beltclamp.png -------------------------------------------------------------------------------- /images/RC8/RC8_changelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/images/RC8/RC8_changelog.png -------------------------------------------------------------------------------- /images/RC8/RC8_heatsets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/images/RC8/RC8_heatsets.png -------------------------------------------------------------------------------- /images/RC8/RC8_rail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/images/RC8/RC8_rail.png -------------------------------------------------------------------------------- /images/RC8/RC8_stiffeners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/images/RC8/RC8_stiffeners.png -------------------------------------------------------------------------------- /images/Voron-Tap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoronDesign/Voron-Tap/29e900094a0f094aad88493c76ec5a6d39f94812/images/Voron-Tap.gif --------------------------------------------------------------------------------