commit 93ed93633d2a0f2f8e0dc83b071ad844a839c55a Author: Marek Baczynski Date: Thu Feb 5 17:33:13 2026 +0100 Initial comit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..300b298 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +kicad/breakout-opamp-ac-2-backups +kicad/fp-info-cache +kicad/~breakout-opamp-ac-2.kicad_sch.lck +kicad/~breakout-opamp-ac-2.kicad_pcb.lck diff --git a/README.md b/README.md new file mode 100644 index 0000000..af8e6f7 --- /dev/null +++ b/README.md @@ -0,0 +1,67 @@ +# Op-Amp AC amplifier with highpass and lowpass filters +* For use with MCP6001 or similar amplifier +* Works with mV inputs centered around GND +* Few components, 0603 passives for easy soldering + +![Image](images/pcb.png) + +# Basic configuration + +![Basic configuration](images/basic.png) +## Behaviour: +* 11x gain +* Bandpass 20Hz - 15kHz (approx, not textbook perfect!) +* Vcc 3-5V +* Makes 10mV signal centered around GND into a 110mV signal centered around 2.5V +* Output centered arround VCC/2 +* To directly drive headphones you must add a DC blocking capacitor! (between OUT and your headphones, 100uF should be fine) + +## Easy adjustments for people in a hurry: +* More gain? -> Increase R2 with respect to R1 +* Pass higher frequencies? -> Reduce Clp or Rout (or both) +* Pass lower frequencies? -> Increase both Rb+ and Rb- (same value!) +* Lower center voltage of output? -> Increase Rb+ relative to Rb- +* Achive the opposite of any of the above? -> Do the opposite of any of the above + +Note! The MCP6001 has a GBW of 1MHz. This means, if the gain is set to 100x, the amplifier will drop 3dB at 1MHz/100x = 10kHz! For very low input frequencies (<5Hz), you may need to increase C1 and C2. + +# Design details + +## C1, Rb+ and Rb- together form a combo bias and highpass filter +* Since the op-amp does not have a negative voltage rail, the signal can not be less than GND +* Therefore, the input must be biased - pulled towards some positive voltage +* If Rb+ = Rb-, then the bias will be VCC/2 - the signal will be centered around VCC/2 +* Adjusting them relative to eachother allows you to pick a different center voltage +* The parallel resistance of Rb+ and Rb-, together with C1 forms a HIGHPASS FILTER +* Increasing the resistance lowers the pass frequency + +## R1 and R2 set the gain +* Gain = R2/R1 + 1 +* Gain is limited by the GBW (gain-bandwidth product) of the op-amp used +* MCP6001 has a GBW of 1MHz, so max frequency = 1MHz / gain (3db loss at that frequency) + +## C2 makes the output centered around the biasing frequency +* Whatever voltage Rb+ and Rb- form, will be the center frequency of the output +* In essance, the gain for DC is 0 (since the gain resistors R1 and R2 have not DC path to GND) +* C2 just needs to be big enough, when it is big enough it does not affect filtering + +## Rlp and Cout can be used for an output lowpass +* Classic low pass filter, nothing to see here + +## Rlp and Cout can instead be used for an output highpass +* Just swap the position of the capacitor and resistor. It's ok, they fit. + +# Soldering tips + +![Soldered board](images/soldered.jpg) +* Solder under the stereo optical microscope +* Start with the Op-amp +* Then the resistors and capacitors +* Last the pin header +* If you make the pins face down, the PCB looks cool on a breadboard +* If you make the pins face up, its easy to re-work the soldering + +# Simulation + +![Simulation](images/simulation.png) +[Falstad simulation available here (https://www.falstad.com/circuit/circuitjs.html?ctz=CQAgjCAMB0l3BWEDYCYDMqDsrUE4AOLSAgsJANiSQBZ1kBTAWjDACgBDEXG8CyEOnQU+AvMijh48btAR48WAnnQIMqGpAR1Z8wnHR5IRinSxTpbAO7cN4GrzwiwDqGwBOIJ-cciCAgXJ4Dy9nV29UEkkguDYAY1CfPiTeGGlICFRoGgV-BCxVBTAcIihYDLcAc0TIghq7ALYAJUT-RJo6gJBNCS6YBGtbXmKRHiG3TzGxoVGGi1ibGfGlsH4J8bHVgTHA4IStwUjRbgQRVPL4BSvrm4UQJiyclQINCnQS9EhzuAhINmqDphAmslo1FsJjsI6gc-p4occ6Khjrs-glEQjMONhswwEj0NB+OgCAgCMIEFoaBpFGUflVupixujUKdJH8AB73KjIXgUJFKbrgOoASQAdgAHACuABcADoAZwAFgBLSoKsUcOVymUykUcEUAE3lACMlRr5XEAPYAWyNFrYHNwSE+Akw5k+9GGdQAglaxQAbJUAMyVcQ4UqVFpF9qk5jAkHoYAhcbOgpATSNTGjrGBsZ0xQEnrTRplYujefIIGI4DAdULAGElVGHRRxFTuHgkcykYWmuwOTXO2puFoTrRU01UIMDps1syROzwFg3cVhy6jvXJxyicMVzQl+B16mAPLSyWyuXBv1ShjuQbog4dYGNDk5WPyZDoYa8gU1kBHgCqAAqbD5skLi8EwphJEi5IgP4cBlL8aBsBa3DmEiBbGOIWDQGAeAdDg2D5AQvLYDStKBGwQA)] \ No newline at end of file diff --git a/images/basic.png b/images/basic.png new file mode 100644 index 0000000..b8e305d Binary files /dev/null and b/images/basic.png differ diff --git a/images/pcb.png b/images/pcb.png new file mode 100644 index 0000000..f450aa7 Binary files /dev/null and b/images/pcb.png differ diff --git a/images/simulation.png b/images/simulation.png new file mode 100644 index 0000000..53b6063 Binary files /dev/null and b/images/simulation.png differ diff --git a/images/soldered.jpg b/images/soldered.jpg new file mode 100644 index 0000000..4b3a4f4 Binary files /dev/null and b/images/soldered.jpg differ diff --git a/kicad/breakout-opamp-ac-2.kicad_pcb b/kicad/breakout-opamp-ac-2.kicad_pcb new file mode 100644 index 0000000..08c1bb8 --- /dev/null +++ b/kicad/breakout-opamp-ac-2.kicad_pcb @@ -0,0 +1,5334 @@ +(kicad_pcb + (version 20241229) + (generator "pcbnew") + (generator_version "9.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (paper "A4") + (layers + (0 "F.Cu" signal) + (2 "B.Cu" signal) + (9 "F.Adhes" user "F.Adhesive") + (11 "B.Adhes" user "B.Adhesive") + (13 "F.Paste" user) + (15 "B.Paste" user) + (5 "F.SilkS" user "F.Silkscreen") + (7 "B.SilkS" user "B.Silkscreen") + (1 "F.Mask" user) + (3 "B.Mask" user) + (17 "Dwgs.User" user "User.Drawings") + (19 "Cmts.User" user "User.Comments") + (21 "Eco1.User" user "User.Eco1") + (23 "Eco2.User" user "User.Eco2") + (25 "Edge.Cuts" user) + (27 "Margin" user) + (31 "F.CrtYd" user "F.Courtyard") + (29 "B.CrtYd" user "B.Courtyard") + (35 "F.Fab" user) + (33 "B.Fab" user) + (39 "User.1" user) + (41 "User.2" user) + (43 "User.3" user) + (45 "User.4" user) + (47 "User.5" user) + (49 "User.6" user) + (51 "User.7" user) + (53 "User.8" user) + (55 "User.9" user) + ) + (setup + (pad_to_mask_clearance 0) + (allow_soldermask_bridges_in_footprints no) + (tenting front back) + (grid_origin 86.4 73.1) + (pcbplotparams + (layerselection 0x00000000_00000000_55555555_5755f5ff) + (plot_on_all_layers_selection 0x00000000_00000000_00000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (pdf_metadata yes) + (pdf_single_document no) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plot_black_and_white yes) + (sketchpadsonfab no) + (plotpadnumbers no) + (hidednponfab no) + (sketchdnponfab yes) + (crossoutdnponfab yes) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + (net 0 "") + (net 1 "VCC") + (net 2 "GND") + (net 3 "/in-") + (net 4 "/out") + (net 5 "/in+") + (net 6 "/in") + (net 7 "Net-(C2-Pad1)") + (net 8 "Net-(R1-Pad1)") + (net 9 "unconnected-(J2-Pin_3-Pad3)") + (footprint "Package_TO_SOT_SMD:SOT-23-5_HandSoldering" + (layer "F.Cu") + (uuid "1bd92b12-fe0f-45ae-9b45-556eecbd1068") + (at 96.2 61.95 -90) + (descr "5-pin SOT23 package") + (tags "SOT-23-5 hand-soldering") + (property "Reference" "U1" + (at 0 -2.9 270) + (layer "F.SilkS") + (hide yes) + (uuid "b85cb425-f1a1-4cec-82e4-5699d8d7128c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MCP6001-OT" + (at 0 2.9 270) + (layer "F.Fab") + (uuid "30ae80d0-a776-4e44-86f9-22b7f0089f6b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21733j.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cd8aae48-d7e2-413f-b66c-7e9426e89f36") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "979e3c3a-85f5-4a57-b5b8-7af1021e8c8b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOT?23*") + (path "/1a5824e1-07ef-4267-95b0-220a31432434") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr smd) + (fp_line + (start -0.9 1.61) + (end 0.9 1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2311cb4e-de2b-45f9-82e9-1a8de1e819d9") + ) + (fp_line + (start 0.1 -1.61) + (end -0.7 -1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b0e148c0-9526-4377-ab6f-410b888043f5") + ) + (fp_line + (start 0.1 -1.61) + (end 0.9 -1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "423be7a1-864f-4122-92d3-4748defa6087") + ) + (fp_poly + (pts + (xy -1.2 -1.56) (xy -1.44 -1.89) (xy -0.96 -1.89) (xy -1.2 -1.56) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "9b4ff7a5-3240-4873-96b1-595037ca5bf1") + ) + (fp_line + (start 2.38 1.8) + (end -2.38 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3bd2788d-c9ec-4d19-a5a4-241d1d9ce6c4") + ) + (fp_line + (start 2.38 1.8) + (end 2.38 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4b092ae8-887d-4f66-848a-e894c780e127") + ) + (fp_line + (start -2.38 -1.8) + (end -2.38 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "90bdbe8a-05a4-485c-aaab-54b082e862ec") + ) + (fp_line + (start -2.38 -1.8) + (end 2.38 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b20f2dfd-bb37-4548-bf24-367e8c97765c") + ) + (fp_line + (start 0.9 1.55) + (end -0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c0b79f38-0b85-4aab-a44f-416a6ce8cde7") + ) + (fp_line + (start -0.9 -0.9) + (end -0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "04a3636d-783d-43b1-b6fd-7f564320d622") + ) + (fp_line + (start -0.9 -0.9) + (end -0.25 -1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dba92160-4789-4973-b840-e49e0ba1a723") + ) + (fp_line + (start 0.9 -1.55) + (end 0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "119c5a82-ce5b-4456-8829-4d50e30a82c0") + ) + (fp_line + (start 0.9 -1.55) + (end -0.25 -1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "77ca060a-2a27-47f1-be65-3a80c47fc524") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "f102eb1b-d3c6-4013-9e69-93a521b96881") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -1.35 -0.95 270) + (size 1.56 0.65) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 8 "Net-(R1-Pad1)") + (pintype "output") + (uuid "3b3969b4-baf3-41c5-9750-88e4f43077f3") + ) + (pad "2" smd roundrect + (at -1.35 0 270) + (size 1.56 0.65) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "V-") + (pintype "power_in") + (uuid "7e3d01ae-0ce8-44ce-a76d-3104168f0652") + ) + (pad "3" smd roundrect + (at -1.35 0.95 270) + (size 1.56 0.65) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 5 "/in+") + (pinfunction "+") + (pintype "input") + (uuid "b981e706-19b3-4dca-be79-957c36f86ba5") + ) + (pad "4" smd roundrect + (at 1.35 0.95 270) + (size 1.56 0.65) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "/in-") + (pinfunction "-") + (pintype "input") + (uuid "14b91837-488f-43ed-9f71-60f27b35ed68") + ) + (pad "5" smd roundrect + (at 1.35 -0.95 270) + (size 1.56 0.65) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "VCC") + (pinfunction "V+") + (pintype "power_in") + (uuid "0de3ae53-f291-47fd-8247-7483fdb06afc") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (layer "F.Cu") + (uuid "2c08238b-d436-4aed-b0e6-00dd73739ee8") + (at 99.3 62 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C4" + (at 0 -1.68 90) + (layer "F.SilkS") + (hide yes) + (uuid "af9ad13c-1700-401c-8e1b-6b88514575d6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "67d9ef8b-8657-41ff-adb1-8743ef13ac56") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b408ad9d-3471-4a5f-8634-9c191a5ffa26") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3584e435-e2ad-4a48-bdad-9554308cac3a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/08a20653-7b8d-40cf-bb72-4819b0aa1959") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f794b6b7-4e7d-4899-b88f-04ae72978c52") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "faa3f103-adba-4d33-ab4c-a36d24016364") + ) + (fp_line + (start 1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4ec04f23-dc0c-466a-81dc-9af167a3c8a8") + ) + (fp_line + (start -1.88 -0.98) + (end 1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "22bf6068-495a-4fe9-adfc-cf405a6d68b7") + ) + (fp_line + (start 1.88 0.98) + (end -1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "513b4b78-bfb7-4c7e-8a4e-fd6b60155921") + ) + (fp_line + (start -1.88 0.98) + (end -1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a64547d5-4b2d-4d26-91ce-81178a93f2d7") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "593c74ba-f934-4721-8c94-eff5030cb36f") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "302c932a-1d39-4868-9f15-2fb622417fb6") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "12d3df3b-106d-4a1b-acf8-126100582638") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "da2eddfa-45c9-4248-b489-d6ebab272a9b") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "cd7d4d31-28e7-40cd-b8db-f84271628816") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "VCC") + (pintype "passive") + (uuid "036d3877-70d0-49e0-bcd8-c9eee54684c8") + ) + (pad "2" smd roundrect + (at 1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 2 "GND") + (pintype "passive") + (uuid "c821b16d-bff8-4404-8764-a1d4ab152b46") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (layer "F.Cu") + (uuid "37001ade-48dc-481f-97e8-d78f1ff25eb4") + (at 87.725 67.4625 -90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C2" + (at 0.2125 2.025 0) + (layer "F.SilkS") + (uuid "ee1592fc-0611-44c3-90dd-71290be38e4a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10u" + (at 0 1.68 270) + (layer "F.Fab") + (uuid "80bfc542-43dc-46c4-bec8-70324af23a84") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "aad68171-1434-4d9b-8d6f-5c6fb84e3b71") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "977a75ce-8e74-48df-9954-d54800a5fbef") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/6ada6eca-5d3c-4006-9572-b553c622f176") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "469131e7-536f-4ab6-b8c9-305ef746c0dd") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "569d559c-277a-487d-967c-46f2a85b723f") + ) + (fp_line + (start -1.88 0.98) + (end -1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ffc63ba8-6063-4a96-9fb3-84e290012432") + ) + (fp_line + (start 1.88 0.98) + (end -1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1866ef91-8718-4b56-9e20-20a1075082b9") + ) + (fp_line + (start -1.88 -0.98) + (end 1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "22e0da64-e8fb-43c1-b121-f00525416e79") + ) + (fp_line + (start 1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "280798cb-47f0-4b75-9b80-1aee1f5c4018") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c7003829-afa7-489e-9be8-a821d6b640ef") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fae7d644-b47a-43f8-a67c-8d33c2d2629d") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "005d8058-ced7-43ff-918e-a0fdc1e37591") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6d41bf62-9b5c-429f-8f77-8e9caed11977") + ) + (fp_text user "${REFERENCE}" + (at 0 0 270) + (layer "F.Fab") + (uuid "851b355e-362d-47b1-9aaa-65e5feb6130f") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 7 "Net-(C2-Pad1)") + (pintype "passive") + (uuid "d74ee516-7f9c-4d0e-88e9-07125e443e89") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 2 "GND") + (pintype "passive") + (uuid "937d3b76-e56f-406e-bd86-10ef66d9f4ef") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (layer "F.Cu") + (uuid "5fb2a4a5-c7e3-47de-99c0-d0c7f6af6c28") + (at 88.65 60.75) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C1" + (at 0 -1.68 0) + (layer "F.SilkS") + (hide yes) + (uuid "d0f6309c-c032-4dc9-a845-8ca11cd4e70c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1u" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "10bde4ab-5d24-4f53-b81e-7b8be46bacbb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ae5a6fba-4fe9-42d1-8421-d24164c2c985") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d41ffb28-00de-405c-96b2-c4dd8376b1d5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/520d5da9-bb17-41ca-8523-e097343d32ab") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "65581451-ce77-4ef3-a519-40775edd89a9") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bc26897a-858e-4fef-bf48-36436a5a637f") + ) + (fp_line + (start -1.88 -0.98) + (end 1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "eed4bded-a779-4914-ac6e-e8c8bb8a94b3") + ) + (fp_line + (start -1.88 0.98) + (end -1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1fd8b22c-de94-4fe9-95cd-d8e6d7b5fe89") + ) + (fp_line + (start 1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f9f72e68-9523-469a-af16-407f743d0f22") + ) + (fp_line + (start 1.88 0.98) + (end -1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d0430792-a883-484f-b57f-a87015b00d98") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ff10bc46-5b60-46d4-927a-2d970a039d4d") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fd48c3f1-da73-4e59-ae7c-f28e0c8d7c0c") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "38ef47c6-f302-48b3-b027-1a7817df51af") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f2ca2995-5f8d-4d00-b509-7fe61de7c5d0") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "c5f7439e-923b-4892-8cdb-8b3a30160855") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 6 "/in") + (pintype "passive") + (uuid "9df21d20-99ca-4a0c-9010-fa082f99cf74") + ) + (pad "2" smd roundrect + (at 1.0375 0) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 5 "/in+") + (pintype "passive") + (uuid "d1b2cddd-1dbc-4483-bf09-13aa0b59c2b1") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (layer "F.Cu") + (uuid "69c7a6cf-34f0-4cee-bb46-80ad02356b1a") + (at 103.6 61.9625 180) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R3" + (at 0 -1.65 180) + (layer "F.SilkS") + (hide yes) + (uuid "baaa555a-c123-474c-a303-629684430009") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100" + (at 0 1.4625 180) + (layer "F.Fab") + (uuid "03a92d00-9ff7-4fd2-a4b0-f552be3ce2bf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b0ee6e71-8d67-42db-89f3-bea383af20b2") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c987323e-abb5-427b-bd29-32967364d9b9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/c2e97a37-c640-4bd4-b547-97006fe23f23") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "79169411-b637-4cf2-9ce9-90e011fdcf27") + ) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "64f7cfa4-271c-4ceb-99fb-e69ec25be8e0") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e5b3f084-aa64-4948-b901-96ea9e1c1cf4") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f5f14537-e8c3-4198-8fb8-651badbb230f") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e10777b0-bc85-4f8c-bb41-517d65ce01cd") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "26c5d5db-c2fe-4868-8a70-e4d4f90b19cb") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f86596a9-9f35-4b9d-9386-076533233dda") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "95bd662a-3660-4591-8c95-91501f797cc4") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ee92458d-f802-479a-a409-301f78f546a2") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "09689f86-452e-4f19-8e5b-f1691815fdf1") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "fc949272-eaaa-4692-b94d-579b0bf46a76") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 180) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 4 "/out") + (pintype "passive") + (uuid "c4f72024-2430-41d1-aee2-fc21fa49bfa4") + ) + (pad "2" smd roundrect + (at 1 0 180) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 8 "Net-(R1-Pad1)") + (pintype "passive") + (uuid "22f76cb7-cfda-4ee2-a62d-83f6561a35c3") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (layer "F.Cu") + (uuid "8b95eb6f-63ba-4dda-9e54-8d58c8ec81e2") + (at 104.5 65.3625 -90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C3" + (at 0 -1.68 270) + (layer "F.SilkS") + (hide yes) + (uuid "35770846-a805-45a7-8e9c-29ad9ae66f5f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 1.1375 -2.8 0) + (layer "F.Fab") + (uuid "69c757f9-355f-4381-a629-0630f737ff4b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ee0ef2de-0ba5-4217-913a-51b53ec3bd3d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e82e1382-4d20-4e13-ab97-6e159a5025e6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/792c1a9e-e718-459f-950f-26bfc9993c73") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7b836677-e689-47d9-8952-e14138ea65c4") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9c00626e-a3c2-4af5-a7ce-3e38f277ed29") + ) + (fp_line + (start -1.88 0.98) + (end -1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6250b998-bfb7-4df6-bab6-23438ada0913") + ) + (fp_line + (start 1.88 0.98) + (end -1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5a9d4ea7-f42e-4eaf-b7b0-13f1da696965") + ) + (fp_line + (start -1.88 -0.98) + (end 1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "41ca2473-de50-47b7-b329-b87971c4981f") + ) + (fp_line + (start 1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "29516239-d8ee-4f48-818e-8f685007c2c2") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e250846b-d58d-4f82-9462-45a172f2899c") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "73b29261-0605-46bc-803c-39b2c3f17b25") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dcec4b6a-9e7d-475b-8f68-a6f44785eb3b") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "61b55801-c87d-44b7-98a7-68a9c37be0b4") + ) + (fp_text user "${REFERENCE}" + (at 0 0 270) + (layer "F.Fab") + (uuid "030f3171-99b7-4788-b97a-37b7e5d18106") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 4 "/out") + (pintype "passive") + (uuid "eb79d89e-4bd2-4b08-951e-42adb6de6fa1") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 2 "GND") + (pintype "passive") + (uuid "471612b2-69cf-41e1-9a41-979c798481b4") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (layer "F.Cu") + (uuid "94a050d7-3158-4471-8c7c-a9ce30d60686") + (at 91.9 58.6625 -90) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "Rb+1" + (at 0 -1.65 270) + (layer "F.SilkS") + (hide yes) + (uuid "7a754d10-5d57-45e5-b220-f4694a75b654") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "15k" + (at 0 1.65 270) + (layer "F.Fab") + (uuid "498bf97c-0719-4fcb-b0aa-50f58e211b9b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ea7117a1-34cd-4627-9a6c-77c597d7099d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "688c5889-d228-4a4c-82c7-f5ebd03dfae3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/006cdf77-993e-4177-a85a-5519e48f45bd") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5889e396-4cf9-4b9d-9e3f-caa56ac3b143") + ) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f4fed0c4-4ac6-4b68-958d-697922d4eb62") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9c4a4053-0f69-460b-8e8f-7e6f89255193") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5c3da6cb-0a7a-4ca7-aca7-1ae621eecb65") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "efbca209-8879-4704-99ba-766b4ec146c7") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9eb606e5-1f05-4bfa-9fda-fffdca5933c1") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a2bf1514-0dd8-4c15-abb0-bf2d22ccd434") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0e3718ef-d6f6-4eab-93e0-34e5111f3827") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ffa96f9a-a692-4135-8983-ae7d310b29e8") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4311be6e-0b25-47dc-ba22-f984aa60d7b6") + ) + (fp_text user "${REFERENCE}" + (at 0 0 270) + (layer "F.Fab") + (uuid "ff04265f-8e83-4ba6-bd20-b492af3fd178") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 270) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 1 "VCC") + (pintype "passive") + (uuid "f3d6ae83-b865-4ff8-abac-1de0179f2f2e") + ) + (pad "2" smd roundrect + (at 1 0 270) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 5 "/in+") + (pintype "passive") + (uuid "5df9e8f0-5287-4603-ac47-eeb8605307ae") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (layer "F.Cu") + (uuid "997343b5-3f3f-43b8-a602-7787ae0c21d7") + (at 90.925 66.6) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R2" + (at -0.025 1.75 0) + (layer "F.SilkS") + (uuid "d4da2a93-72cb-412d-9537-61e23cdd2431") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.65 0) + (layer "F.Fab") + (uuid "14bb09c2-61b1-4a1e-a2ee-482c13677409") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5d644841-c63c-400c-a59b-7f2e82337892") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ef658d67-504a-42f3-af6e-b1b2666ba06b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/5677ec09-091b-451b-826b-395a91af0fa0") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "93d30541-a7ff-42e2-90f0-7ffdd03cce4d") + ) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a51b05e8-504a-4ead-90c4-011808c7062c") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3b25e509-c167-4508-8f67-98470eed0009") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d09dc6ee-5169-458d-aaf2-504320547e29") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "76878eed-b224-4a16-a96b-1d8852115e20") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "04f87744-98ce-46ec-84d1-5af327547013") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4b82fbec-5495-4804-b319-54761ba8e8f9") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "425b442c-9906-44f2-8393-8d46bfd2017e") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5329048a-c65e-435a-b262-b9ed62feaaf3") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a84690a3-7ac6-4625-b75f-f6a7270858fd") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "ea8ddf79-6475-4bd3-b6c1-958903430fa1") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 7 "Net-(C2-Pad1)") + (pintype "passive") + (uuid "4f12da2e-ea3c-45aa-b471-129597228532") + ) + (pad "2" smd roundrect + (at 1 0) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 3 "/in-") + (pintype "passive") + (uuid "eb87374f-7cae-4459-9e42-2420b0f9983c") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (layer "F.Cu") + (uuid "9a536a57-e176-45ec-8695-9bee2a2cffa8") + (at 96.9 66.6 180) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "R1" + (at -0.025 -1.75 180) + (layer "F.SilkS") + (uuid "cf0d2a99-2d49-4568-81f1-86f6a1f93560") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10k" + (at -0.3 -1.7 180) + (layer "F.Fab") + (uuid "5d0a5902-85f2-4180-b253-8dbee7a223ab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a2f592d5-bf9c-4d59-b3ec-38f609726568") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1a46b556-7d8d-4067-a05c-bccd80784e1d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/01ab4288-1478-491a-b158-cd764fb6a15a") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5e5f40a2-3f74-42ba-b788-c10697a55905") + ) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b487160f-9187-4597-b6bc-5e29854ac73f") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d8ed08ff-f077-4ebc-84ef-227177299636") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "be76d01d-ca3d-4688-a2de-bc19e688e3de") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e788e782-fb11-4acc-95e2-70e2b41cf1cb") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a8856352-645c-4ac5-b898-c699155e2a9a") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d66498cf-61ca-4f17-96db-2c8ed949c1d9") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b1ee37e2-f8c8-4530-b472-428602510af1") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f0351e8c-4dd3-40cf-ad89-d73e28a4d2b8") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7ab3a564-6262-4a00-9d41-97cae17aecfc") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "afe2461c-be78-4de3-80a6-91370ad7367c") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 180) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 8 "Net-(R1-Pad1)") + (pintype "passive") + (uuid "64ccbb4a-213a-4b9f-a008-e7fbc4d237bc") + ) + (pad "2" smd roundrect + (at 1 0 180) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 3 "/in-") + (pintype "passive") + (uuid "d6edf0ac-05bf-42d6-99ab-9acfe26b57df") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (layer "F.Cu") + (uuid "e334d6bc-a481-439c-ad89-12235a600b13") + (at 91.9 62.8625 90) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (property "Reference" "Rb-1" + (at 0 -1.65 90) + (layer "F.SilkS") + (hide yes) + (uuid "51ba08bb-eb0d-4393-9b8c-086e891792b9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "15k" + (at 0 1.65 90) + (layer "F.Fab") + (uuid "b1f63d8e-76b1-441a-b80d-8349023ef6b9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "80ad1804-515b-4490-86c9-61c0a0592308") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e8ed64fc-9ef7-4e8f-b992-c06fb6666404") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/9b3ee936-a5d4-44a3-8ec7-10128aeceb4c") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "faa5f7e7-3980-4cb1-9d6e-e24f2dcb3e4e") + ) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2e05c088-c51c-4dfb-b89b-c4976ad7c6e8") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3b89a436-4933-4d2c-b746-cab04911b7ce") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2da00ec8-47d7-49e6-afff-b80e6b485a83") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b1b266c6-6cf6-4a37-8250-00abbad79650") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f3262011-dde2-4073-be71-66d8dc593e7a") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f2613889-b366-48ff-8755-9c21701ad086") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "237d36c2-ba21-41ea-84d0-751ed380520b") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "38801660-73fe-467d-a40e-c55ff44a23c1") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "196440c9-52f2-488a-91f2-cb6fc28941a7") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "405e9fc2-159d-4fc9-9418-ff39aa15eab8") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 2 "GND") + (pintype "passive") + (uuid "7489373b-9e47-4ded-8d7e-8df3ee50bb57") + ) + (pad "2" smd roundrect + (at 1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 5 "/in+") + (pintype "passive") + (uuid "ebacff9c-d218-4842-9d9e-bdf5f3ba40a9") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (layer "F.Cu") + (uuid "e516b821-94d3-4f99-8500-b3f8fd5cab46") + (at 105.45 69.6 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "C5" + (at 0 -1.68 180) + (layer "F.SilkS") + (hide yes) + (uuid "66ffe141-7000-4c54-a763-e72c54a656f2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10u" + (at 0 1.68 180) + (layer "F.Fab") + (uuid "8627b0d5-29be-4cfd-86c9-69ad49b4bebe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fcdf7a0e-b216-4692-9052-b71ebd871e59") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2f0a8f7e-ed18-49d3-85af-0b5d6006cf0a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/a137a073-5913-43cc-9ffc-95eab8aff62b") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1359a667-4e78-461a-a6e7-276a56bbce54") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bead5a86-3b87-4a67-b4ac-8c1baaa8992d") + ) + (fp_line + (start 1.88 0.98) + (end -1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c55beb20-13d6-448c-aeb4-b2b602459340") + ) + (fp_line + (start 1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1467c047-f58f-466e-97df-772556b7d5a7") + ) + (fp_line + (start -1.88 0.98) + (end -1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7801ffdc-0422-4456-a62e-174e2dd247f4") + ) + (fp_line + (start -1.88 -0.98) + (end 1.88 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a600f5a5-b244-4510-84ba-3bfae5bc6e0d") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9a948f20-09bd-4cfe-8b44-5ef9e58f9452") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f09f6abb-6acc-4994-85d9-840fdafe7e4b") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0ba46fef-4386-4561-afed-96ac2255ccdf") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b967e1cb-3ead-4f26-9356-0b379685066a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "2b2def8e-61e1-4708-809b-5fadccd0e3a2") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "VCC") + (pintype "passive") + (uuid "2d0f4c89-6201-457c-9540-1dac84df5ff6") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 2 "GND") + (pintype "passive") + (uuid "2449b098-ce1c-4cf2-9c9c-4b0f15eeeacd") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "LOGO" + (layer "B.Cu") + (uuid "12ba6b27-0bb9-4eae-b7bb-20178dde183b") + (at 89.5 64.05 180) + (property "Reference" "G***" + (at 0 0 180) + (layer "B.SilkS") + (hide yes) + (uuid "00712eb2-0e6a-4651-86b1-dea7a94ed304") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + (justify mirror) + ) + ) + (property "Value" "LOGO" + (at 0.75 0 180) + (layer "B.SilkS") + (hide yes) + (uuid "f947d795-431a-4d2a-8971-77cf248ae013") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "cadac959-681e-4192-82c1-390eec7f0a52") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "5c92cc0e-7c8f-4900-8f57-25537c00a3dd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (attr board_only exclude_from_pos_files exclude_from_bom) + (fp_poly + (pts + (xy 3.823656 3.27742) (xy 3.823656 2.731183) (xy 3.277419 2.731183) (xy 2.731182 2.731183) (xy 2.731182 3.27742) + (xy 2.731182 3.823656) (xy 3.277419 3.823656) (xy 3.823656 3.823656) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "a1394ba5-eba1-4c77-be88-75fcf9ed8781") + ) + (fp_poly + (pts + (xy 2.367025 -2.184946) (xy 2.367025 -2.367025) (xy 2.184946 -2.367025) (xy 2.002867 -2.367025) + (xy 2.002867 -2.184946) (xy 2.002867 -2.002867) (xy 2.184946 -2.002867) (xy 2.367025 -2.002867) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "79f345be-5209-4864-9220-22c1056262c6") + ) + (fp_poly + (pts + (xy 1.274552 4.369893) (xy 1.274552 4.187814) (xy 0.910394 4.187814) (xy 0.546236 4.187814) (xy 0.546236 4.369893) + (xy 0.546236 4.551972) (xy 0.910394 4.551972) (xy 1.274552 4.551972) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "51331171-9cfb-405f-a7da-6b7de4f18d01") + ) + (fp_poly + (pts + (xy 0.182079 4.369893) (xy 0.182079 4.187814) (xy 0 4.187814) (xy -0.182079 4.187814) (xy -0.182079 4.369893) + (xy -0.182079 4.551972) (xy 0 4.551972) (xy 0.182079 4.551972) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "51f433f6-a30f-4781-9c51-5fd71713d569") + ) + (fp_poly + (pts + (xy -0.182079 0.364158) (xy -0.182079 0.182079) (xy -0.546237 0.182079) (xy -0.910395 0.182079) + (xy -0.910395 0.364158) (xy -0.910395 0.546237) (xy -0.546237 0.546237) (xy -0.182079 0.546237) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "d6f004e0-7f7c-4934-a099-e092d42a02b3") + ) + (fp_poly + (pts + (xy -0.546237 -3.277419) (xy -0.546237 -3.459498) (xy -0.728316 -3.459498) (xy -0.910395 -3.459498) + (xy -0.910395 -3.277419) (xy -0.910395 -3.09534) (xy -0.728316 -3.09534) (xy -0.546237 -3.09534) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "2033c146-d767-4ac4-a000-7a63c573503a") + ) + (fp_poly + (pts + (xy -1.274552 4.369893) (xy -1.274552 4.187814) (xy -1.456631 4.187814) (xy -1.63871 4.187814) (xy -1.63871 4.369893) + (xy -1.63871 4.551972) (xy -1.456631 4.551972) (xy -1.274552 4.551972) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "bb74c6ee-2c37-413f-a7fd-5226b32c0427") + ) + (fp_poly + (pts + (xy -1.274552 -2.913261) (xy -1.274552 -3.09534) (xy -1.456631 -3.09534) (xy -1.63871 -3.09534) + (xy -1.63871 -2.913261) (xy -1.63871 -2.731182) (xy -1.456631 -2.731182) (xy -1.274552 -2.731182) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "707dc045-55df-43aa-9e49-00baecf5f101") + ) + (fp_poly + (pts + (xy -1.274552 -4.369892) (xy -1.274552 -4.551971) (xy -1.456631 -4.551971) (xy -1.63871 -4.551971) + (xy -1.63871 -4.369892) (xy -1.63871 -4.187813) (xy -1.456631 -4.187813) (xy -1.274552 -4.187813) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "f663464f-cd81-428a-a5ed-3e07656967d1") + ) + (fp_poly + (pts + (xy -2.002868 -0.728315) (xy -2.002868 -0.910394) (xy -2.184947 -0.910394) (xy -2.367025 -0.910394) + (xy -2.367025 -0.728315) (xy -2.367025 -0.546236) (xy -2.184947 -0.546236) (xy -2.002868 -0.546236) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "19ae576d-a92c-43d2-8054-c05a87527936") + ) + (fp_poly + (pts + (xy -2.731183 3.27742) (xy -2.731183 2.731183) (xy -3.27742 2.731183) (xy -3.823656 2.731183) (xy -3.823656 3.27742) + (xy -3.823656 3.823656) (xy -3.27742 3.823656) (xy -2.731183 3.823656) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "d92e60a5-a66e-402f-a535-c29be763785b") + ) + (fp_poly + (pts + (xy -2.731183 -3.277419) (xy -2.731183 -3.823656) (xy -3.27742 -3.823656) (xy -3.823656 -3.823656) + (xy -3.823656 -3.277419) (xy -3.823656 -2.731182) (xy -3.27742 -2.731182) (xy -2.731183 -2.731182) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "0968d2d0-bd73-40ea-950c-69d5246f9d3b") + ) + (fp_poly + (pts + (xy 4.551971 1.456631) (xy 4.551971 1.274552) (xy 4.369892 1.274552) (xy 4.187813 1.274552) (xy 4.187813 1.092473) + (xy 4.187813 0.910395) (xy 4.005734 0.910395) (xy 3.823656 0.910395) (xy 3.823656 1.092473) (xy 3.823656 1.274552) + (xy 4.005734 1.274552) (xy 4.187813 1.274552) (xy 4.187813 1.456631) (xy 4.187813 1.63871) (xy 4.369892 1.63871) + (xy 4.551971 1.63871) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "f78619ad-230f-4905-aaef-3a26ae6f40ed") + ) + (fp_poly + (pts + (xy -0.546237 -0.364157) (xy -0.546237 -0.546236) (xy -0.728316 -0.546236) (xy -0.910395 -0.546236) + (xy -0.910395 -0.728315) (xy -0.910395 -0.910394) (xy -1.092473 -0.910394) (xy -1.274552 -0.910394) + (xy -1.274552 -0.728315) (xy -1.274552 -0.546236) (xy -1.092473 -0.546236) (xy -0.910395 -0.546236) + (xy -0.910395 -0.364157) (xy -0.910395 -0.182079) (xy -0.728316 -0.182079) (xy -0.546237 -0.182079) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "862f1aec-644d-49d4-8fe8-320ba693faa2") + ) + (fp_poly + (pts + (xy -1.274552 0) (xy -1.274552 -0.182079) (xy -1.456631 -0.182079) (xy -1.63871 -0.182079) (xy -1.63871 -0.364157) + (xy -1.63871 -0.546236) (xy -1.820789 -0.546236) (xy -2.002868 -0.546236) (xy -2.002868 -0.364157) + (xy -2.002868 -0.182079) (xy -1.820789 -0.182079) (xy -1.63871 -0.182079) (xy -1.63871 0) (xy -1.63871 0.182079) + (xy -1.456631 0.182079) (xy -1.274552 0.182079) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "7181dd86-e4b9-4ec7-a1b9-1ce12caa4414") + ) + (fp_poly + (pts + (xy 4.551971 3.27742) (xy 4.551971 2.002868) (xy 3.277419 2.002868) (xy 2.002867 2.002868) (xy 2.002867 3.27742) + (xy 2.002867 4.187814) (xy 2.367025 4.187814) (xy 2.367025 3.27742) (xy 2.367025 2.367025) (xy 3.277419 2.367025) + (xy 4.187813 2.367025) (xy 4.187813 3.27742) (xy 4.187813 4.187814) (xy 3.277419 4.187814) (xy 2.367025 4.187814) + (xy 2.002867 4.187814) (xy 2.002867 4.551972) (xy 3.277419 4.551972) (xy 4.551971 4.551972) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "95b14bc2-9f34-406e-9d9b-e403c64816e6") + ) + (fp_poly + (pts + (xy -2.002868 3.27742) (xy -2.002868 2.002868) (xy -3.27742 2.002868) (xy -4.551972 2.002868) (xy -4.551972 3.27742) + (xy -4.551972 4.187814) (xy -4.187814 4.187814) (xy -4.187814 3.27742) (xy -4.187814 2.367025) (xy -3.27742 2.367025) + (xy -2.367025 2.367025) (xy -2.367025 3.27742) (xy -2.367025 4.187814) (xy -3.27742 4.187814) (xy -4.187814 4.187814) + (xy -4.551972 4.187814) (xy -4.551972 4.551972) (xy -3.27742 4.551972) (xy -2.002868 4.551972) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "ffd69ebb-5c8c-4c0f-b456-958dc95798a1") + ) + (fp_poly + (pts + (xy -2.002868 -3.277419) (xy -2.002868 -4.551971) (xy -3.27742 -4.551971) (xy -4.551972 -4.551971) + (xy -4.551972 -3.277419) (xy -4.551972 -2.367025) (xy -4.187814 -2.367025) (xy -4.187814 -3.277419) + (xy -4.187814 -4.187813) (xy -3.27742 -4.187813) (xy -2.367025 -4.187813) (xy -2.367025 -3.277419) + (xy -2.367025 -2.367025) (xy -3.27742 -2.367025) (xy -4.187814 -2.367025) (xy -4.551972 -2.367025) + (xy -4.551972 -2.002867) (xy -3.27742 -2.002867) (xy -2.002868 -2.002867) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "fb2ccc52-6bfc-4063-b6ba-7e87b7021a35") + ) + (fp_poly + (pts + (xy -0.546237 -1.092473) (xy -0.546237 -1.274552) (xy -0.364158 -1.274552) (xy -0.182079 -1.274552) + (xy -0.182079 -1.092473) (xy -0.182079 -0.910394) (xy 0 -0.910394) (xy 0.182079 -0.910394) (xy 0.182079 -1.092473) + (xy 0.182079 -1.274552) (xy 0 -1.274552) (xy -0.182079 -1.274552) (xy -0.182079 -1.45663) (xy -0.182079 -1.638709) + (xy -0.546237 -1.638709) (xy -0.910395 -1.638709) (xy -0.910395 -1.274552) (xy -0.910395 -0.910394) + (xy -0.728316 -0.910394) (xy -0.546237 -0.910394) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "c001dbdb-98aa-4852-be0a-659823de5bb9") + ) + (fp_poly + (pts + (xy 0.182079 -4.005734) (xy 0.182079 -4.187813) (xy 0.364157 -4.187813) (xy 0.546236 -4.187813) + (xy 0.546236 -4.005734) (xy 0.546236 -3.823656) (xy 0.910394 -3.823656) (xy 1.274552 -3.823656) + (xy 1.274552 -4.005734) (xy 1.274552 -4.187813) (xy 1.092473 -4.187813) (xy 0.910394 -4.187813) + (xy 0.910394 -4.369892) (xy 0.910394 -4.551971) (xy 0.546236 -4.551971) (xy 0.182079 -4.551971) + (xy 0.182079 -4.369892) (xy 0.182079 -4.187813) (xy 0 -4.187813) (xy -0.182079 -4.187813) (xy -0.182079 -4.369892) + (xy -0.182079 -4.551971) (xy -0.546237 -4.551971) (xy -0.910395 -4.551971) (xy -0.910395 -4.369892) + (xy -0.910395 -4.187813) (xy -0.546237 -4.187813) (xy -0.182079 -4.187813) (xy -0.182079 -4.005734) + (xy -0.182079 -3.823656) (xy 0 -3.823656) (xy 0.182079 -3.823656) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "cf8448ae-d380-4902-884f-c776ae59ea84") + ) + (fp_poly + (pts + (xy -0.546237 3.823656) (xy -0.546237 3.459499) (xy -0.910395 3.459499) (xy -1.274552 3.459499) + (xy -1.274552 2.731183) (xy -1.274552 2.002868) (xy -1.092473 2.002868) (xy -0.910395 2.002868) + (xy -0.910395 2.184947) (xy -0.910395 2.367025) (xy -0.728316 2.367025) (xy -0.546237 2.367025) + (xy -0.546237 1.63871) (xy -0.546237 0.910395) (xy -0.728316 0.910395) (xy -0.910395 0.910395) (xy -0.910395 0.728316) + (xy -0.910395 0.546237) (xy -1.092473 0.546237) (xy -1.274552 0.546237) (xy -1.274552 0.910395) + (xy -1.274552 1.274552) (xy -1.456631 1.274552) (xy -1.63871 1.274552) (xy -1.63871 0.728316) (xy -1.63871 0.182079) + (xy -1.820789 0.182079) (xy -2.002868 0.182079) (xy -2.002868 0) (xy -2.002868 -0.182079) (xy -2.184947 -0.182079) + (xy -2.367025 -0.182079) (xy -2.367025 -0.364157) (xy -2.367025 -0.546236) (xy -2.731183 -0.546236) + (xy -3.095341 -0.546236) (xy -3.095341 -1.092473) (xy -3.095341 -1.638709) (xy -3.823656 -1.638709) + (xy -4.551972 -1.638709) (xy -4.551972 -1.45663) (xy -4.551972 -1.274552) (xy -4.005735 -1.274552) + (xy -3.459499 -1.274552) (xy -3.459499 -0.910394) (xy -3.459499 -0.546236) (xy -3.641577 -0.546236) + (xy -3.823656 -0.546236) (xy -3.823656 -0.364157) (xy -3.823656 -0.182079) (xy -4.005735 -0.182079) + (xy -4.187814 -0.182079) (xy -4.187814 -0.364157) (xy -4.187814 -0.546236) (xy -4.369893 -0.546236) + (xy -4.551972 -0.546236) (xy -4.551972 -0.182079) (xy -4.551972 0.182079) (xy -4.187814 0.182079) + (xy -3.823656 0.182079) (xy -3.823656 0.364158) (xy -3.823656 0.546237) (xy -3.641577 0.546237) + (xy -3.459499 0.546237) (xy -3.459499 0.364158) (xy -3.459499 0.182079) (xy -3.27742 0.182079) (xy -3.095341 0.182079) + (xy -3.095341 0) (xy -3.095341 -0.182079) (xy -2.913262 -0.182079) (xy -2.731183 -0.182079) (xy -2.731183 0) + (xy -2.731183 0.182079) (xy -2.913262 0.182079) (xy -3.095341 0.182079) (xy -3.095341 0.546237) + (xy -3.095341 0.910395) (xy -3.641577 0.910395) (xy -4.187814 0.910395) (xy -4.187814 1.092473) + (xy -4.187814 1.274552) (xy -4.369893 1.274552) (xy -4.551972 1.274552) (xy -4.551972 1.456631) + (xy -4.551972 1.63871) (xy -4.369893 1.63871) (xy -4.187814 1.63871) (xy -4.187814 1.456631) (xy -4.187814 1.274552) + (xy -3.641577 1.274552) (xy -3.095341 1.274552) (xy -3.095341 1.456631) (xy -3.095341 1.63871) (xy -2.913262 1.63871) + (xy -2.731183 1.63871) (xy -2.731183 0.910395) (xy -2.731183 0.182079) (xy -2.367025 0.182079) (xy -2.002868 0.182079) + (xy -2.002868 0.364158) (xy -2.002868 0.546237) (xy -2.184947 0.546237) (xy -2.367025 0.546237) + (xy -2.367025 0.728316) (xy -2.367025 0.910395) (xy -2.184947 0.910395) (xy -2.002868 0.910395) + (xy -2.002868 1.092473) (xy -2.002868 1.274552) (xy -2.184947 1.274552) (xy -2.367025 1.274552) + (xy -2.367025 1.456631) (xy -2.367025 1.63871) (xy -2.002868 1.63871) (xy -1.63871 1.63871) (xy -1.63871 2.549104) + (xy -1.63871 3.459499) (xy -1.456631 3.459499) (xy -1.274552 3.459499) (xy -1.274552 3.823656) (xy -1.274552 4.187814) + (xy -0.910395 4.187814) (xy -0.546237 4.187814) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "b8d48971-b82e-4479-b910-ee988604c53f") + ) + (fp_poly + (pts + (xy -1.63871 -1.092473) (xy -1.63871 -1.274552) (xy -1.456631 -1.274552) (xy -1.274552 -1.274552) + (xy -1.274552 -1.45663) (xy -1.274552 -1.638709) (xy -1.092473 -1.638709) (xy -0.910395 -1.638709) + (xy -0.910395 -1.820788) (xy -0.910395 -2.002867) (xy -0.546237 -2.002867) (xy -0.182079 -2.002867) + (xy -0.182079 -1.820788) (xy -0.182079 -1.638709) (xy 0 -1.638709) (xy 0.182079 -1.638709) (xy 0.182079 -1.820788) + (xy 0.182079 -2.002867) (xy 0.364157 -2.002867) (xy 0.546236 -2.002867) (xy 0.546236 -1.820788) + (xy 0.546236 -1.638709) (xy 0.364157 -1.638709) (xy 0.182079 -1.638709) (xy 0.182079 -1.45663) (xy 0.182079 -1.274552) + (xy 0.364157 -1.274552) (xy 0.546236 -1.274552) (xy 0.546236 -1.092473) (xy 0.546236 -0.910394) + (xy 0.728315 -0.910394) (xy 0.910394 -0.910394) (xy 0.910394 -1.274552) (xy 0.910394 -1.638709) + (xy 1.092473 -1.638709) (xy 1.274552 -1.638709) (xy 1.638709 -1.638709) (xy 1.638709 -2.184946) + (xy 1.638709 -2.731182) (xy 2.184946 -2.731182) (xy 2.731182 -2.731182) (xy 2.731182 -2.184946) + (xy 2.731182 -1.638709) (xy 2.184946 -1.638709) (xy 1.638709 -1.638709) (xy 1.274552 -1.638709) + (xy 1.274552 -1.274552) (xy 1.274552 -0.910394) (xy 1.638709 -0.910394) (xy 2.002867 -0.910394) + (xy 2.002867 -1.092473) (xy 2.002867 -1.274552) (xy 2.549104 -1.274552) (xy 3.09534 -1.274552) (xy 3.09534 -1.45663) + (xy 3.09534 -1.638709) (xy 3.277419 -1.638709) (xy 3.459498 -1.638709) (xy 3.459498 -1.274552) (xy 3.459498 -0.910394) + (xy 3.641577 -0.910394) (xy 3.823656 -0.910394) (xy 3.823656 -1.092473) (xy 3.823656 -1.274552) + (xy 4.005734 -1.274552) (xy 4.187813 -1.274552) (xy 4.187813 -1.092473) (xy 4.187813 -0.910394) + (xy 4.369892 -0.910394) (xy 4.551971 -0.910394) (xy 4.551971 -1.274552) (xy 4.551971 -1.638709) + (xy 4.369892 -1.638709) (xy 4.187813 -1.638709) (xy 4.187813 -1.820788) (xy 4.187813 -2.002867) + (xy 4.005734 -2.002867) (xy 3.823656 -2.002867) (xy 3.823656 -2.367025) (xy 3.823656 -2.731182) + (xy 4.187813 -2.731182) (xy 4.551971 -2.731182) (xy 4.551971 -3.09534) (xy 4.551971 -3.459498) (xy 4.369892 -3.459498) + (xy 4.187813 -3.459498) (xy 4.187813 -3.823656) (xy 4.187813 -4.187813) (xy 4.369892 -4.187813) + (xy 4.551971 -4.187813) (xy 4.551971 -4.369892) (xy 4.551971 -4.551971) (xy 4.005734 -4.551971) + (xy 3.459498 -4.551971) (xy 3.459498 -4.187813) (xy 3.459498 -3.823656) (xy 3.277419 -3.823656) + (xy 3.09534 -3.823656) (xy 3.09534 -3.459498) (xy 3.09534 -3.09534) (xy 3.277419 -3.09534) (xy 3.459498 -3.09534) + (xy 3.459498 -2.549104) (xy 3.459498 -2.002867) (xy 3.641577 -2.002867) (xy 3.823656 -2.002867) + (xy 3.823656 -1.820788) (xy 3.823656 -1.638709) (xy 3.641577 -1.638709) (xy 3.459498 -1.638709) + (xy 3.459498 -1.820788) (xy 3.459498 -2.002867) (xy 3.277419 -2.002867) (xy 3.09534 -2.002867) (xy 3.09534 -2.549104) + (xy 3.09534 -3.09534) (xy 2.913261 -3.09534) (xy 2.731182 -3.09534) (xy 2.731182 -3.641577) (xy 2.731182 -4.187813) + (xy 2.913261 -4.187813) (xy 3.09534 -4.187813) (xy 3.09534 -4.369892) (xy 3.09534 -4.551971) (xy 2.549104 -4.551971) + (xy 2.002867 -4.551971) (xy 2.002867 -4.369892) (xy 2.002867 -4.187813) (xy 1.820788 -4.187813) + (xy 1.638709 -4.187813) (xy 1.638709 -3.823656) (xy 1.638709 -3.459498) (xy 1.45663 -3.459498) (xy 1.274552 -3.459498) + (xy 1.274552 -2.731182) (xy 1.274552 -2.002867) (xy 1.092473 -2.002867) (xy 0.910394 -2.002867) + (xy 0.910394 -2.184946) (xy 0.910394 -2.367025) (xy 0.728315 -2.367025) (xy 0.546236 -2.367025) + (xy 0.546236 -2.731182) (xy 0.546236 -3.09534) (xy 0.728315 -3.09534) (xy 0.910394 -3.09534) (xy 0.910394 -3.277419) + (xy 0.910394 -3.459498) (xy 0.546236 -3.459498) (xy 0.182079 -3.459498) (xy 0.182079 -3.277419) + (xy 0.182079 -3.09534) (xy 0 -3.09534) (xy -0.182079 -3.09534) (xy -0.182079 -2.913261) (xy -0.182079 -2.731182) + (xy -0.546237 -2.731182) (xy -0.910395 -2.731182) (xy -0.910395 -2.367025) (xy -0.182079 -2.367025) + (xy -0.182079 -2.549104) (xy -0.182079 -2.731182) (xy 0 -2.731182) (xy 0.182079 -2.731182) (xy 0.182079 -2.549104) + (xy 0.182079 -2.367025) (xy 0 -2.367025) (xy -0.182079 -2.367025) (xy -0.910395 -2.367025) (xy -0.910395 -2.002867) + (xy -1.092473 -2.002867) (xy -1.274552 -2.002867) (xy -1.274552 -2.184946) (xy -1.274552 -2.367025) + (xy -1.456631 -2.367025) (xy -1.63871 -2.367025) (xy -1.63871 -2.002867) (xy -1.63871 -1.638709) + (xy -2.002868 -1.638709) (xy -2.367025 -1.638709) (xy -2.367025 -1.45663) (xy -2.367025 -1.274552) + (xy -2.184947 -1.274552) (xy -2.002868 -1.274552) (xy -2.002868 -1.092473) (xy -2.002868 -0.910394) + (xy -1.820789 -0.910394) (xy -1.63871 -0.910394) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "bed263a2-e114-42b0-b474-a9f1508927e0") + ) + (fp_poly + (pts + (xy 1.638709 3.823656) (xy 1.638709 3.459499) (xy 1.45663 3.459499) (xy 1.274552 3.459499) (xy 1.274552 3.27742) + (xy 1.274552 3.095341) (xy 1.45663 3.095341) (xy 1.638709 3.095341) (xy 1.638709 2.549104) (xy 1.638709 2.002868) + (xy 1.45663 2.002868) (xy 1.274552 2.002868) (xy 1.274552 2.367025) (xy 1.274552 2.731183) (xy 1.092473 2.731183) + (xy 0.910394 2.731183) (xy 0.910394 2.367025) (xy 0.910394 2.002868) (xy 0.728315 2.002868) (xy 0.546236 2.002868) + (xy 0.546236 2.184947) (xy 0.546236 2.367025) (xy 0.364157 2.367025) (xy 0.182079 2.367025) (xy 0.182079 1.820789) + (xy 0.182079 1.274552) (xy 0.364157 1.274552) (xy 0.546236 1.274552) (xy 0.546236 1.456631) (xy 0.546236 1.63871) + (xy 0.910394 1.63871) (xy 1.274552 1.63871) (xy 1.274552 0.910395) (xy 1.274552 0.182079) (xy 1.092473 0.182079) + (xy 0.910394 0.182079) (xy 0.910394 0) (xy 0.910394 -0.182079) (xy 1.274552 -0.182079) (xy 1.638709 -0.182079) + (xy 1.638709 0) (xy 1.638709 0.182079) (xy 1.820788 0.182079) (xy 2.002867 0.182079) (xy 2.731182 0.182079) + (xy 2.731182 0) (xy 2.731182 -0.182079) (xy 3.09534 -0.182079) (xy 3.459498 -0.182079) (xy 3.459498 0) + (xy 3.459498 0.182079) (xy 3.09534 0.182079) (xy 2.731182 0.182079) (xy 2.002867 0.182079) (xy 2.002867 0.364158) + (xy 2.002867 0.546237) (xy 1.820788 0.546237) (xy 1.638709 0.546237) (xy 1.638709 0.728316) (xy 1.638709 0.910395) + (xy 2.002867 0.910395) (xy 2.367025 0.910395) (xy 2.367025 0.728316) (xy 2.367025 0.546237) (xy 2.549104 0.546237) + (xy 2.731182 0.546237) (xy 2.731182 0.910395) (xy 2.731182 1.274552) (xy 2.184946 1.274552) (xy 1.638709 1.274552) + (xy 1.638709 1.456631) (xy 1.638709 1.63871) (xy 2.549104 1.63871) (xy 3.459498 1.63871) (xy 3.459498 1.274552) + (xy 3.459498 0.910395) (xy 3.277419 0.910395) (xy 3.09534 0.910395) (xy 3.09534 0.728316) (xy 3.09534 0.546237) + (xy 3.459498 0.546237) (xy 3.823656 0.546237) (xy 3.823656 0.364158) (xy 3.823656 0.182079) (xy 4.005734 0.182079) + (xy 4.187813 0.182079) (xy 4.187813 0.364158) (xy 4.187813 0.546237) (xy 4.369892 0.546237) (xy 4.551971 0.546237) + (xy 4.551971 0.182079) (xy 4.551971 -0.182079) (xy 4.369892 -0.182079) (xy 4.187813 -0.182079) (xy 4.187813 -0.364157) + (xy 4.187813 -0.546236) (xy 3.823656 -0.546236) (xy 3.459498 -0.546236) (xy 3.459498 -0.728315) + (xy 3.459498 -0.910394) (xy 3.09534 -0.910394) (xy 2.731182 -0.910394) (xy 2.731182 -0.728315) (xy 2.731182 -0.546236) + (xy 2.549104 -0.546236) (xy 2.367025 -0.546236) (xy 2.367025 -0.364157) (xy 2.367025 -0.182079) + (xy 2.184946 -0.182079) (xy 2.002867 -0.182079) (xy 2.002867 -0.364157) (xy 2.002867 -0.546236) + (xy 1.638709 -0.546236) (xy 1.274552 -0.546236) (xy 1.274552 -0.728315) (xy 1.274552 -0.910394) + (xy 1.092473 -0.910394) (xy 0.910394 -0.910394) (xy 0.910394 -0.546236) (xy 0.910394 -0.182079) + (xy 0.728315 -0.182079) (xy 0.546236 -0.182079) (xy 0.546236 -0.546236) (xy 0.546236 -0.910394) + (xy 0.364157 -0.910394) (xy 0.182079 -0.910394) (xy 0.182079 -0.546236) (xy 0.182079 -0.182079) + (xy 0 -0.182079) (xy -0.182079 -0.182079) (xy -0.182079 0) (xy -0.182079 0.182079) (xy 0 0.182079) + (xy 0.182079 0.182079) (xy 0.182079 0) (xy 0.182079 -0.182079) (xy 0.364157 -0.182079) (xy 0.546236 -0.182079) + (xy 0.546236 0) (xy 0.546236 0.182079) (xy 0.728315 0.182079) (xy 0.910394 0.182079) (xy 0.910394 0.728316) + (xy 0.910394 1.274552) (xy 0.728315 1.274552) (xy 0.546236 1.274552) (xy 0.546236 1.092473) (xy 0.546236 0.910395) + (xy 0.364157 0.910395) (xy 0.182079 0.910395) (xy 0.182079 1.092473) (xy 0.182079 1.274552) (xy 0 1.274552) + (xy -0.182079 1.274552) (xy -0.182079 2.002868) (xy -0.182079 2.731183) (xy -0.546237 2.731183) + (xy -0.910395 2.731183) (xy -0.910395 2.913262) (xy -0.910395 3.095341) (xy -0.364158 3.095341) + (xy 0.182079 3.095341) (xy 0.182079 3.27742) (xy 0.182079 3.459499) (xy 0 3.459499) (xy -0.182079 3.459499) + (xy -0.182079 3.641577) (xy -0.182079 3.823656) (xy 0 3.823656) (xy 0.182079 3.823656) (xy 0.182079 3.641577) + (xy 0.182079 3.459499) (xy 0.364157 3.459499) (xy 0.546236 3.459499) (xy 0.546236 3.095341) (xy 0.546236 2.731183) + (xy 0.728315 2.731183) (xy 0.910394 2.731183) (xy 0.910394 3.095341) (xy 0.910394 3.459499) (xy 0.728315 3.459499) + (xy 0.546236 3.459499) (xy 0.546236 3.641577) (xy 0.546236 3.823656) (xy 0.910394 3.823656) (xy 1.274552 3.823656) + (xy 1.274552 4.005735) (xy 1.274552 4.187814) (xy 1.45663 4.187814) (xy 1.638709 4.187814) + ) + (stroke + (width 0) + (type solid) + ) + (fill yes) + (layer "B.SilkS") + (uuid "74036b11-c0c3-46f7-b3ef-3520a3c66634") + ) + (embedded_fonts no) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (locked yes) + (layer "B.Cu") + (uuid "190fa5d2-afe8-4352-a69f-b80490ba943a") + (at 91.48 73.1 90) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Reference" "J2" + (at 0 2.33 270) + (layer "B.SilkS") + (hide yes) + (uuid "fa9c9f7e-1a44-476b-9bf3-b8e1d509a0e5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "Conn_01x03_Pin" + (at 0 -7.41 270) + (layer "B.Fab") + (hide yes) + (uuid "ab92036e-ff26-4ba1-9b68-8f6485d35343") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "~" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "d18c8b76-0998-486e-be7e-b7e4961d608c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Description" "" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "2561b303-8dd5-483e-813a-dbed0b8261ae") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/5f1662fa-3505-4cbd-809e-14d9396b40c0") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr through_hole) + (fp_line + (start 1.33 -6.41) + (end -1.33 -6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "fe1d77af-ee6f-43e7-a0a3-e62ff2399113") + ) + (fp_line + (start 1.33 -6.41) + (end 1.33 -1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "9b2e2c81-9df5-42b0-9744-8ab4d1ac0949") + ) + (fp_line + (start -1.33 -6.41) + (end -1.33 -1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "c2bfc6b2-bf5c-497a-94c3-650d1bae85f7") + ) + (fp_line + (start 1.33 -1.27) + (end -1.33 -1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "74132d91-4f53-423f-8f4a-99a9c297df02") + ) + (fp_line + (start 0 1.33) + (end -1.33 1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "2ed0e801-534b-49c0-b0b2-c613aae48a1d") + ) + (fp_line + (start -1.33 1.33) + (end -1.33 0) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "955a65f4-cb77-4e7f-9408-c07ae361a4b9") + ) + (fp_line + (start 1.8 -6.85) + (end -1.8 -6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "0a04d1a1-8745-4238-a9cc-ad8cf38f2995") + ) + (fp_line + (start -1.8 -6.85) + (end -1.8 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "0c46457a-7df6-45c0-8990-9609a4dddbea") + ) + (fp_line + (start 1.8 1.8) + (end 1.8 -6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "8c862f8c-075b-4209-bb06-a3beb83c5916") + ) + (fp_line + (start -1.8 1.8) + (end 1.8 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "913b88fc-ac7f-4e92-920d-6cc3dc0603a6") + ) + (fp_line + (start 1.27 -6.35) + (end 1.27 1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "687fdd3f-839f-4554-b599-d0dd0e87595d") + ) + (fp_line + (start -1.27 -6.35) + (end 1.27 -6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "218749f8-3da7-41e7-a994-54c5a1a0eae3") + ) + (fp_line + (start -1.27 0.635) + (end -1.27 -6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "e4bb7208-154c-477e-8dfc-96c172c0579e") + ) + (fp_line + (start 1.27 1.27) + (end -0.635 1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "21b8f310-3551-4a9f-b8b0-3eaca4831343") + ) + (fp_line + (start -0.635 1.27) + (end -1.27 0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "bed7a311-94bd-49bc-96b3-b122c96fe8fb") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.54 0) + (layer "B.Fab") + (uuid "c6cc286d-4f5e-4ac1-a00a-f201ba6925aa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "/out") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "45f47b11-1e3f-4e8d-bd47-de086eea1ff8") + ) + (pad "2" thru_hole oval + (at 0 -2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "/in-") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "6d884987-3c8b-4834-952c-4eee57248df4") + ) + (pad "3" thru_hole oval + (at 0 -5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 9 "unconnected-(J2-Pin_3-Pad3)") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "50e5b11a-690a-43f0-baea-e0a0f60b2da3") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" + (locked yes) + (layer "B.Cu") + (uuid "f137eb81-a39a-4078-8ade-a64fc29427f5") + (at 106.72 73.1 90) + (descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x05 2.54mm single row") + (property "Reference" "J3" + (at 0 2.33 270) + (layer "B.SilkS") + (hide yes) + (uuid "078a04ed-ebe8-4203-96da-3105bdc38715") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "Conn_01x05_Pin" + (at 0 -12.49 270) + (layer "B.Fab") + (hide yes) + (uuid "651232dc-4559-4d7e-8cbe-54d07833bff9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "~" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "ef8f4c42-8582-423f-8b1f-ec40199235f7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Description" "Generic connector, single row, 01x05, script generated" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "529782c8-5b6f-490e-8330-9c2c52cee9fa") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/9ea95a02-46d3-475a-a8d4-f44597c7c24c") + (sheetname "/") + (sheetfile "breakout-opamp-ac-2.kicad_sch") + (attr through_hole) + (fp_line + (start 1.33 -11.49) + (end -1.33 -11.49) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "7dc6be1b-f324-41e5-8a40-1eb10f77e74d") + ) + (fp_line + (start 1.33 -11.49) + (end 1.33 -1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "78ba774d-41e4-4d00-a640-6575ef65e948") + ) + (fp_line + (start -1.33 -11.49) + (end -1.33 -1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "5a171ce9-075a-4581-8a67-971ae4450f75") + ) + (fp_line + (start 1.33 -1.27) + (end -1.33 -1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d93180b5-f200-444a-bc81-1e2cfe592776") + ) + (fp_line + (start 0 1.33) + (end -1.33 1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a0fd7425-0bd6-46a0-9765-e21bf826fbfb") + ) + (fp_line + (start -1.33 1.33) + (end -1.33 0) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "46a426b2-355e-4dec-a9af-32e6c2681c36") + ) + (fp_line + (start 1.8 -11.95) + (end -1.8 -11.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "6da50bd5-4c47-4179-9ffe-ff474644a258") + ) + (fp_line + (start -1.8 -11.95) + (end -1.8 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "24726e85-b557-43e0-a393-b55c35362c2d") + ) + (fp_line + (start 1.8 1.8) + (end 1.8 -11.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "e2852157-d7fe-429d-b096-1295ba8db572") + ) + (fp_line + (start -1.8 1.8) + (end 1.8 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "9a492812-66e7-42fb-a717-ea1609030888") + ) + (fp_line + (start 1.27 -11.43) + (end 1.27 1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "56ff06b6-2c6f-4496-b832-6d97a33e196a") + ) + (fp_line + (start -1.27 -11.43) + (end 1.27 -11.43) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "7dbdf221-6868-444e-8636-f623e015dd17") + ) + (fp_line + (start -1.27 0.635) + (end -1.27 -11.43) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "e6b0e1df-50c9-4eaf-a45b-d3db8db7b5f9") + ) + (fp_line + (start 1.27 1.27) + (end -0.635 1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "7bcdc47c-4ad9-43cc-b03b-eb788ae4c208") + ) + (fp_line + (start -0.635 1.27) + (end -1.27 0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "a30903a5-e7d6-426a-8ec7-d456da2b57c9") + ) + (fp_text user "${REFERENCE}" + (at 0 -5.08 0) + (layer "B.Fab") + (uuid "1f5a0334-0144-4d1e-8fb0-7a00d00e2f9f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "VCC") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "1ea1a39d-7908-44cf-b81c-a41da6deda62") + ) + (pad "2" thru_hole oval + (at 0 -2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "3ec2a29f-4911-446c-b35f-3b6d171a6390") + ) + (pad "3" thru_hole oval + (at 0 -5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "/out") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "e86b46ab-4284-4cef-b4f8-77b00a710389") + ) + (pad "4" thru_hole oval + (at 0 -7.62 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 6 "/in") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "4be27984-a912-4826-95dc-8444dac44329") + ) + (pad "5" thru_hole oval + (at 0 -10.16 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_5") + (pintype "passive") + (uuid "ea9b356a-45ed-4e7a-958b-f4d6cbe00fb1") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (gr_line + (start 105.3 61.9) + (end 106 61.9) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "1030afe6-8d89-49ea-b5f8-559cfdc3ea4e") + ) + (gr_line + (start 87.125 69.6) + (end 88.325 69.6) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "12b0a004-9d36-4349-b4c0-c2c18b0d7c3c") + ) + (gr_line + (start 100.6 61.95) + (end 94.6 58.45) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "13da1789-394c-4384-be28-4f314bb358f0") + ) + (gr_line + (start 88.425 66.6) + (end 89.275 66.6) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "1d9ced0b-fecd-4892-a61c-b9f11cf2f120") + ) + (gr_line + (start 92.95 66.6) + (end 95.25 66.6) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "232bc34b-5bda-46d0-8996-a0c8e82137a6") + ) + (gr_line + (start 94.6 60.7625) + (end 93.05 60.7625) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "26aeed77-a3ae-4094-b177-8c4835477089") + ) + (gr_line + (start 93.3 63.2625) + (end 93.3 66.55) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "2b43025a-c3ca-49f4-a882-6811513f72b8") + ) + (gr_line + (start 104.2 67.9) + (end 104.8 67.9) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "30df7c1f-8622-4fb3-ac6b-53cd67f900cd") + ) + (gr_line + (start 86.6 71.1) + (end 86.05 71.1) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "39fb4694-f320-4bcb-91e0-05f57d8c6713") + ) + (gr_line + (start 94.6 63.2625) + (end 93.3 63.2625) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "42031872-7395-4d0b-92f4-8b07116e8afe") + ) + (gr_line + (start 91.9 56.8) + (end 91.9 57.05) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "483242ce-b38d-45ae-8f24-ac6b58abfd17") + ) + (gr_line + (start 90.6 60.7625) + (end 93.05 60.7625) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "4e957561-f4ba-426f-93f1-c251d51fead6") + ) + (gr_line + (start 91.65 71.1) + (end 91.1 71.1) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "5d4abdc0-ab1d-49a1-b901-b72e7ff6670c") + ) + (gr_line + (start 91.9 60.3625) + (end 91.9 61.1625) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "69cb571f-ea04-4919-a45d-6238b85bd7eb") + ) + (gr_line + (start 94.6 58.45) + (end 94.6 65.45) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "6b17c3bb-e11b-40b3-b10d-ad7baf8a87bd") + ) + (gr_line + (start 86 71.8) + (end 86 71.1) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "6b19db77-5922-4955-aa9a-7b3d11dbeb2b") + ) + (gr_line + (start 87.725 69.2) + (end 87.725 69.6) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "73b09cc4-d265-492f-901a-938f0b6c190b") + ) + (gr_line + (start 104.5 63.6625) + (end 104.5 62.6625) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "7fca1891-11b7-48fa-a670-c573a56f4b65") + ) + (gr_line + (start 89.2 71.1) + (end 88.6 71.1) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "84a78e44-30ea-4692-bb23-ec7e29a1ca77") + ) + (gr_line + (start 86.6 60.75) + (end 87.3 60.75) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "863b48f8-1c9a-403d-b59a-bdc1828cd570") + ) + (gr_line + (start 91.9 64.6) + (end 91.9 65) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "87f424f0-797d-4584-8803-5edc558aba69") + ) + (gr_line + (start 94.6 65.45) + (end 100.6 61.95) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "8b2dcd0c-555d-41fa-b4e0-2316c72803bd") + ) + (gr_line + (start 91.7 71.8) + (end 91.7 71.1) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "8f33f6f2-1b06-425a-9bf4-545da7de3e12") + ) + (gr_line + (start 91.3 65) + (end 92.5 65) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "93557b04-78f4-48a1-a7e8-1745233776fd") + ) + (gr_line + (start 103.9 67.5) + (end 105.1 67.5) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "a7bb92cc-8fbb-4513-b77e-de956382e05f") + ) + (gr_line + (start 98.55 66.6) + (end 101.4 66.6) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "b1326f89-0fa8-4f72-90af-1ae0405927d3") + ) + (gr_line + (start 91.6 65.4) + (end 92.2 65.4) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "ca1c0e2c-ecf0-4d5e-a06d-15a065d6687a") + ) + (gr_line + (start 104.5 67.1) + (end 104.5 67.5) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "df9a13b4-95a5-4006-89cc-eeb1e5919b38") + ) + (gr_line + (start 88.9 71.8) + (end 88.9 71.1) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "e183399e-9971-42b1-b181-664fac4d02d9") + ) + (gr_line + (start 87.425 70) + (end 88.025 70) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "e93ca315-71bd-4415-8b04-858a4e432053") + ) + (gr_line + (start 101.4 62) + (end 101.4 66.6) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "f0d1ce0c-f4d9-4867-8dce-dc2f03b0a176") + ) + (gr_line + (start 100.7 61.9625) + (end 101.95 61.9625) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "f352c5fc-9106-49f5-b545-8a8df7d35ecf") + ) + (gr_rect + (start 84 55) + (end 109 75) + (stroke + (width 0.1) + (type default) + ) + (fill no) + (locked yes) + (layer "Edge.Cuts") + (uuid "12e20930-e240-49c1-b00b-bbb48defae87") + ) + (gr_text "OUT" + (at 100.4 71.6 0) + (layer "F.SilkS") + (uuid "010724ea-cfe6-470b-8ea8-94b43cdeccf7") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "C" + (at 98 59.575 0) + (layer "F.SilkS") + (uuid "07a61a08-8ec1-4b7e-969e-98cb3c10d371") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "LP" + (at 106.2 65.85 0) + (layer "F.SilkS") + (uuid "100a4baa-9afe-4863-8c7d-38d68ca0caf3") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "IN" + (at 84.275 61.4 0) + (layer "F.SilkS") + (uuid "261dd240-2cc6-44a6-82c1-da632b80fd21") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "R" + (at 88.35 58.225 0) + (layer "F.SilkS") + (uuid "2f6dc765-b12c-4966-9c2c-bed55a12fd52") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "b-" + (at 89.2 64.2 0) + (layer "F.SilkS") + (uuid "3670bb23-2a2a-47fc-93ec-e35dfaea1019") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "out" + (at 103.05 61.1 0) + (layer "F.SilkS") + (uuid "3ad3eae2-8145-430c-a958-c9386a5fa368") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "OP-AMP filter" + (at 97.7 56.85 0) + (layer "F.SilkS" knockout) + (uuid "41912050-1481-4787-8a26-248cd8f169b5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "C" + (at 87.35 59.75 0) + (layer "F.SilkS") + (uuid "5693460c-6f5e-4185-954f-e0f1dd2e47a5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "R" + (at 102.05 61.1 0) + (layer "F.SilkS") + (uuid "5925b5c0-5831-47bd-b552-06ed30da3dd7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "IN" + (at 98.5 71.6 0) + (layer "F.SilkS") + (uuid "5a514d3d-236d-441a-88fd-1f684199c75a") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "OUT" + (at 106.1 62.4 0) + (layer "F.SilkS") + (uuid "65e18c72-4f59-49a9-a531-7df9a0c84c0f") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "b+" + (at 89.25 58.175 0) + (layer "F.SilkS") + (uuid "6655e907-392f-4667-8444-285d6193393e") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "R2" + (at 86.8 71.6 0) + (layer "F.SilkS") + (uuid "80d955c8-20c9-4eb1-a59a-80058d0d8a39") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "-" + (at 93.3 64.2 0) + (layer "F.SilkS") + (uuid "925343c6-a5ca-4a78-b1dc-f10370e19705") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "GND" + (at 102.9 71.6 0) + (layer "F.SilkS") + (uuid "98b82ccd-c312-4749-aa10-9098d79292fb") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "GND" + (at 95.2 71.6 0) + (layer "F.SilkS") + (uuid "a67d7b96-5f67-4b6f-95de-72fd55bf538b") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "VCC" + (at 90.65 56.6 0) + (layer "F.SilkS") + (uuid "adfa8d29-5134-4a2b-8334-d35b56f64bcc") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "C" + (at 105.2 65.85 0) + (layer "F.SilkS") + (uuid "b70e48ce-3bbd-497b-ae72-01035e3975b7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "VCC" + (at 105.7 71.6 0) + (layer "F.SilkS") + (uuid "be8c09a7-a93d-4264-8f6c-d0950687cf23") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "in" + (at 88.3 59.7 0) + (layer "F.SilkS") + (uuid "bfc9b5d5-ef66-48b9-91c5-7ca927e92e7c") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "+" + (at 93.3 60.45 0) + (layer "F.SilkS") + (uuid "c45b68be-2758-4507-bb5a-6cc516271a6f") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "R1" + (at 89.3 71.6 0) + (layer "F.SilkS") + (uuid "d1b13625-fe18-4983-9bc5-c02a66a4003f") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "bypass" + (at 98.9 59.55 0) + (layer "F.SilkS") + (uuid "ea46cfa0-99e5-4c8f-8d41-b8c0afdd2fb7") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "R" + (at 88.225 64.25 0) + (layer "F.SilkS") + (uuid "f2c09c83-9946-4499-b485-f0f83926076a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "full" + (at 90.7 57.85 0) + (layer "B.SilkS") + (uuid "4289758b-ab43-4a8e-b68a-c6d8f67cc557") + (effects + (font + (size 1 0.8) + (thickness 0.15) + ) + (justify left bottom mirror) + ) + ) + (gr_text "Example setup\nfor 20Hz+ highpass:\nwith 11x gain:\nCbypass = 100n\nR1 = 10k R2 = 100k\nCin = 1u C2 = 1u \nRb+ = 15k\nRb- = 15k\nRout = 100\n" + (at 108.25 70.1 0) + (layer "B.SilkS") + (uuid "a2529b2a-fdb7-4475-9b4a-0d07d839fa49") + (effects + (font + (size 1 0.8) + (thickness 0.15) + ) + (justify left bottom mirror) + ) + ) + (gr_text "documentation" + (at 93.75 59.15 0) + (layer "B.SilkS") + (uuid "cb1d5d9a-7a88-469a-9fc0-0789598aef10") + (effects + (font + (size 1 0.8) + (thickness 0.15) + ) + (justify left bottom mirror) + ) + ) + (gr_text "elab.kth.se/q/003" + (at 98.75 70.3 0) + (layer "B.SilkS") + (uuid "cee56593-9a74-424f-949a-3136a8d595bd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom mirror) + ) + ) + (segment + (start 91.95 57.7) + (end 91.9 57.75) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "2cf9a781-1c5c-4f4b-b0ab-50c6955468b1") + ) + (segment + (start 99.25 62.9125) + (end 99.3 62.8625) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "3248764c-cc10-4b64-8102-0a2a3c644364") + ) + (segment + (start 98.9 62.8625) + (end 97.375 62.8625) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "81740c74-e1e3-4d5a-94b1-11bc8c1135b2") + ) + (segment + (start 99.25 64.35) + (end 99.25 62.9125) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "89a15dbd-f48f-4afd-adf8-03797949b53d") + ) + (segment + (start 98.95 62.9125) + (end 98.9 62.8625) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "c0803fb5-896c-400b-8c08-d865ae654f2b") + ) + (segment + (start 93.3 57.7) + (end 91.95 57.7) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "c4da993c-ecc0-4a51-a70c-254932d927c5") + ) + (segment + (start 106.72 70.0075) + (end 106.3125 69.6) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "c70bcdc4-153d-43c4-b0c8-0109660514e1") + ) + (segment + (start 97.375 62.8625) + (end 97.15 63.0875) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "dfecafc3-04ba-42c8-8f41-f2a3485cb587") + ) + (segment + (start 106.72 73.1) + (end 106.72 70.0075) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "e71f6a1d-8d6e-4e37-92b5-7f5b9327b6ca") + ) + (via + (at 93.3 57.7) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "59f1b4b3-9e02-4e86-a8e9-e56549d06126") + ) + (via + (at 99.25 64.35) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "be8c49a6-edc9-43f2-8405-f7e2fd0f2fd7") + ) + (segment + (start 101.153299 74.275) + (end 100.35 73.471701) + (width 0.25) + (layer "B.Cu") + (net 1) + (uuid "14c0fe10-1d43-4c85-abf9-93f372243cf8") + ) + (segment + (start 99.25 64.15) + (end 99.25 64.35) + (width 0.25) + (layer "B.Cu") + (net 1) + (uuid "38565b50-80cb-4670-9728-20bd5ca9f930") + ) + (segment + (start 93.3 58.2) + (end 99.25 64.15) + (width 0.25) + (layer "B.Cu") + (net 1) + (uuid "5eaf3253-6ac0-453d-bf7c-4104e11f43c3") + ) + (segment + (start 105.545 74.275) + (end 101.153299 74.275) + (width 0.25) + (layer "B.Cu") + (net 1) + (uuid "8c6e082c-b137-42d5-99e8-518a0900de7a") + ) + (segment + (start 93.3 57.7) + (end 93.3 58.2) + (width 0.25) + (layer "B.Cu") + (net 1) + (uuid "cd122953-d857-4c83-9429-9d42a113a856") + ) + (segment + (start 106.72 73.1) + (end 105.545 74.275) + (width 0.25) + (layer "B.Cu") + (net 1) + (uuid "d82f597c-dfb7-43ab-8532-067b22cc59a0") + ) + (segment + (start 100.35 65.45) + (end 99.25 64.35) + (width 0.25) + (layer "B.Cu") + (net 1) + (uuid "f34ca10f-2ea8-4c58-8a3c-3163cbe0673c") + ) + (segment + (start 100.35 73.471701) + (end 100.35 65.45) + (width 0.25) + (layer "B.Cu") + (net 1) + (uuid "fc5ac27d-7637-4229-81cc-8f0270f68664") + ) + (via + (at 102.9 66.2) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (free yes) + (net 2) + (uuid "00908f2f-c18c-434b-86fd-babbd0799873") + ) + (via + (at 89.05 62.4) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (free yes) + (net 2) + (uuid "7b0bbd2b-e308-4514-b624-474e584e6e45") + ) + (via + (at 99.3 59.75) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (free yes) + (net 2) + (uuid "8075fc95-c633-40b5-ae09-a105072fbbb1") + ) + (via + (at 90.35 65) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (free yes) + (net 2) + (uuid "b49b9bbf-88c7-4239-8c46-2d103ef1a435") + ) + (segment + (start 93.4 63.3) + (end 95.25 63.3) + (width 0.2) + (layer "F.Cu") + (net 3) + (uuid "225f1c1f-7882-4709-b471-275d5f51247b") + ) + (segment + (start 92.2125 66.6) + (end 93.3 66.6) + (width 0.2) + (layer "F.Cu") + (net 3) + (uuid "2b4ddb68-0cf5-4e32-ab93-9c3fdc16532c") + ) + (segment + (start 93.3 63.4) + (end 93.4 63.3) + (width 0.2) + (layer "F.Cu") + (net 3) + (uuid "6ce83501-25ee-448d-911b-1203cd343fb9") + ) + (segment + (start 93.3 66.6) + (end 93.3 63.4) + (width 0.2) + (layer "F.Cu") + (net 3) + (uuid "74b03053-f1d7-431e-862c-58100ff377b7") + ) + (segment + (start 93.3 66.6) + (end 95.9875 66.6) + (width 0.2) + (layer "F.Cu") + (net 3) + (uuid "f5daaa02-5e96-4167-9b53-51491cdac2d3") + ) + (via + (at 93.3 66.6) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "d58161c6-c3e9-4e72-ab94-479859d4e1af") + ) + (segment + (start 88.94 71.26) + (end 88.94 73.1) + (width 0.2) + (layer "B.Cu") + (net 3) + (uuid "06582cb7-acde-4169-b572-d6222db573ad") + ) + (segment + (start 93.3 66.6) + (end 93.3 66.9) + (width 0.2) + (layer "B.Cu") + (net 3) + (uuid "185d59aa-b15d-4a37-8e1d-ebebb09b3e81") + ) + (segment + (start 93.3 66.9) + (end 88.94 71.26) + (width 0.2) + (layer "B.Cu") + (net 3) + (uuid "7642bddf-643b-4a48-ae27-352aaec9e1ae") + ) + (segment + (start 100.1 74.5) + (end 100.24 74.5) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "03edc052-4f6b-4f75-a21d-0b3ca514403a") + ) + (segment + (start 100.24 74.5) + (end 101.64 73.1) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "4935647d-cfc2-4bc5-97bd-1a0ebea4c8b0") + ) + (segment + (start 104.5125 61.9625) + (end 104.5125 64.4875) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "61825a03-ec15-4920-9ab8-31c00d7e5d2f") + ) + (segment + (start 104.5125 64.4875) + (end 104.5 64.5) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "c03991b2-63fe-4634-8130-2dedbe8dcae0") + ) + (segment + (start 105.85 61.9) + (end 104.575 61.9) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "c9365ac3-4087-400e-ae05-2f48b654cc61") + ) + (segment + (start 104.575 61.9) + (end 104.5125 61.9625) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "f74774d3-78d9-4aa5-ba00-f49ffe4ba985") + ) + (via + (at 100.1 74.5) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 4) + (uuid "0f9859a6-8f3d-47ea-8e97-8d704b664ea6") + ) + (via + (at 105.85 61.9) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 4) + (uuid "4a887c45-de33-48bf-8e79-4602c5fe584f") + ) + (segment + (start 100.1 74.5) + (end 100 74.6) + (width 0.25) + (layer "B.Cu") + (net 4) + (uuid "178fd3c2-dbac-41b9-8ceb-1ead5aeb3001") + ) + (segment + (start 100 74.6) + (end 92.94 74.6) + (width 0.25) + (layer "B.Cu") + (net 4) + (uuid "2c8f2974-fad1-41b5-8c7e-19110f9d9e6f") + ) + (segment + (start 101.64 73.1) + (end 101.64 66.11) + (width 0.25) + (layer "B.Cu") + (net 4) + (uuid "85d8100e-c009-4ce5-a0db-411b320d5b36") + ) + (segment + (start 92.94 74.6) + (end 91.48 73.14) + (width 0.25) + (layer "B.Cu") + (net 4) + (uuid "ae35694f-7058-4eec-bbec-2254796c560a") + ) + (segment + (start 91.48 73.14) + (end 91.48 73.1) + (width 0.25) + (layer "B.Cu") + (net 4) + (uuid "d2c4a59c-dab8-4a62-8884-011409ec7c6e") + ) + (segment + (start 101.64 66.11) + (end 105.85 61.9) + (width 0.25) + (layer "B.Cu") + (net 4) + (uuid "d3f4f214-48e2-4b1d-b7aa-7b3aedc3fad4") + ) + (segment + (start 89.825 60.7625) + (end 91.9 60.7625) + (width 0.2) + (layer "F.Cu") + (net 5) + (uuid "2d58cb9d-3b0f-44d0-82fc-78ee866f3605") + ) + (segment + (start 95.0875 60.7625) + (end 91.9 60.7625) + (width 0.2) + (layer "F.Cu") + (net 5) + (uuid "360fa058-d9a2-4e8f-8687-2f1f06a53083") + ) + (segment + (start 91.9 59.575) + (end 91.9 60.7625) + (width 0.2) + (layer "F.Cu") + (net 5) + (uuid "381cd872-479e-44df-aa01-51e2e4168fae") + ) + (segment + (start 95.0875 60.7625) + (end 95.25 60.6) + (width 0.2) + (layer "F.Cu") + (net 5) + (uuid "47ee1e42-5f25-43ed-8d2b-736457138fb5") + ) + (segment + (start 91.9 60.7625) + (end 91.9 61.95) + (width 0.2) + (layer "F.Cu") + (net 5) + (uuid "976b849a-2830-4235-acce-96e97d4dd655") + ) + (segment + (start 86.275 60.75) + (end 86.2875 60.7625) + (width 0.25) + (layer "F.Cu") + (net 6) + (uuid "86b438cf-f1f1-49c1-ad74-55ebe9cd0f64") + ) + (segment + (start 86.2875 60.7625) + (end 88.1 60.7625) + (width 0.25) + (layer "F.Cu") + (net 6) + (uuid "fa973cdd-8156-47bb-8729-38a9c5af2bd5") + ) + (via + (at 86.275 60.75) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 6) + (uuid "83085dc9-0d41-4270-94b4-70fa2b96a3db") + ) + (segment + (start 90.1 60.75) + (end 99.1 69.75) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "06e802a9-4da1-4505-81d0-aa8d397ef116") + ) + (segment + (start 86.275 60.75) + (end 90.1 60.75) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "904fa781-2679-4c33-9af7-afe271d5f2ed") + ) + (segment + (start 99.1 69.75) + (end 99.1 73.1) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "c1edcd85-ef57-43f6-92d6-3f6ae4d586a3") + ) + (segment + (start 90.0125 66.6) + (end 87.725 66.6) + (width 0.25) + (layer "F.Cu") + (net 7) + (uuid "24428a50-a7bd-423f-8de9-bbf6d4e6d8e2") + ) + (segment + (start 101.4 62) + (end 101.35 62.05) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "4baa6bbd-6d88-4285-98fc-5be9b22d5c5c") + ) + (segment + (start 102.65 62) + (end 102.6875 61.9625) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "4d645cda-669a-49a1-8fb9-bf70224f08ed") + ) + (segment + (start 98.55 62) + (end 101.4 62) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "60d2903e-5145-4b8e-b7e1-7a396c9ec8bc") + ) + (segment + (start 101.35 62.05) + (end 101.35 66.425) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "6bfcd290-7a2b-48fc-b74e-e206ad410508") + ) + (segment + (start 101.4 62) + (end 102.65 62) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "7517f539-98ed-46e9-a5df-e72f7930ce02") + ) + (segment + (start 101.175 66.6) + (end 97.8125 66.6) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "845d3a15-a3a0-4e47-b56f-7720e168b612") + ) + (segment + (start 97.15 60.6) + (end 98.55 62) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "8ff334e6-9117-4485-a085-32dd9533dae7") + ) + (segment + (start 101.35 66.425) + (end 101.175 66.6) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "e0af8574-f323-4e0c-9cce-c25ca630fc81") + ) + (zone + (net 2) + (net_name "GND") + (locked yes) + (layers "F.Cu" "B.Cu") + (uuid "7b704f08-47f5-4e53-8f5e-980a92aea82e") + (hatch edge 0.5) + (priority 1) + (connect_pads + (clearance 0.2) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 84 55) (xy 109 55) (xy 109 75) (xy 84 75) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 108.959191 55.018907) (xy 108.995155 55.068407) (xy 109 55.099) (xy 109 74.901) (xy 108.981093 74.959191) + (xy 108.931593 74.995155) (xy 108.901 75) (xy 100.674002 75) (xy 100.615811 74.981093) (xy 100.579847 74.931593) + (xy 100.579847 74.870407) (xy 100.595457 74.840737) (xy 100.624536 74.802841) (xy 100.685044 74.656762) + (xy 100.702107 74.527149) (xy 100.728448 74.471926) (xy 100.730219 74.470106) (xy 101.111825 74.0885) + (xy 101.16634 74.060725) (xy 101.226772 74.070296) (xy 101.228463 74.071178) (xy 101.236046 74.075232) + (xy 101.387977 74.121319) (xy 101.434065 74.1353) (xy 101.43407 74.135301) (xy 101.639997 74.155583) + (xy 101.64 74.155583) (xy 101.640003 74.155583) (xy 101.845929 74.135301) (xy 101.845934 74.1353) + (xy 101.857505 74.13179) (xy 102.043954 74.075232) (xy 102.22645 73.977685) (xy 102.38641 73.84641) + (xy 102.517685 73.68645) (xy 102.615232 73.503954) (xy 102.660819 73.35367) (xy 102.695804 73.303474) + (xy 102.753612 73.283428) (xy 102.812163 73.301189) (xy 102.849092 73.349973) (xy 102.851183 73.356786) + (xy 102.906569 73.563489) (xy 103.006399 73.777577) (xy 103.141886 73.971073) (xy 103.308926 74.138113) + (xy 103.502422 74.2736) (xy 103.716509 74.37343) (xy 103.93 74.430634) (xy 103.93 73.533012) (xy 103.987007 73.565925) + (xy 104.114174 73.6) (xy 104.245826 73.6) (xy 104.372993 73.565925) (xy 104.43 73.533012) (xy 104.43 74.430633) + (xy 104.64349 74.37343) (xy 104.857577 74.2736) (xy 105.051073 74.138113) (xy 105.218113 73.971073) + (xy 105.3536 73.777577) (xy 105.45343 73.56349) (xy 105.474873 73.483466) (xy 105.508197 73.432152) + (xy 105.565318 73.410225) (xy 105.624419 73.42606) (xy 105.662924 73.47361) (xy 105.6695 73.509089) + (xy 105.6695 73.969746) (xy 105.669501 73.969758) (xy 105.681132 74.028227) (xy 105.681134 74.028233) + (xy 105.725445 74.094548) (xy 105.725448 74.094552) (xy 105.791769 74.138867) (xy 105.836231 74.147711) + (xy 105.850241 74.150498) (xy 105.850246 74.150498) (xy 105.850252 74.1505) (xy 105.850253 74.1505) + (xy 107.589747 74.1505) (xy 107.589748 74.1505) (xy 107.648231 74.138867) (xy 107.714552 74.094552) + (xy 107.758867 74.028231) (xy 107.7705 73.969748) (xy 107.7705 72.230252) (xy 107.768921 72.222316) + (xy 107.767711 72.216231) (xy 107.758867 72.171769) (xy 107.714552 72.105448) (xy 107.714548 72.105445) + (xy 107.648233 72.061134) (xy 107.648231 72.061133) (xy 107.648228 72.061132) (xy 107.648227 72.061132) + (xy 107.589758 72.049501) (xy 107.589748 72.0495) (xy 107.589747 72.0495) (xy 107.1445 72.0495) + (xy 107.086309 72.030593) (xy 107.050345 71.981093) (xy 107.0455 71.9505) (xy 107.0455 70.522148) + (xy 107.064407 70.463957) (xy 107.085709 70.442494) (xy 107.14715 70.39715) (xy 107.227793 70.287882) + (xy 107.272646 70.159699) (xy 107.275499 70.129273) (xy 107.2755 70.129273) (xy 107.2755 69.070727) + (xy 107.275499 69.070725) (xy 107.272646 69.040305) (xy 107.272646 69.040301) (xy 107.227793 68.912118) + (xy 107.14715 68.80285) (xy 107.147146 68.802847) (xy 107.147144 68.802845) (xy 107.037883 68.722207) + (xy 106.909703 68.677355) (xy 106.909694 68.677353) (xy 106.879274 68.6745) (xy 106.879266 68.6745) + (xy 106.095734 68.6745) (xy 106.095725 68.6745) (xy 106.065305 68.677353) (xy 106.065296 68.677355) + (xy 105.937116 68.722207) (xy 105.827855 68.802845) (xy 105.827845 68.802855) (xy 105.747207 68.912116) + (xy 105.702355 69.040296) (xy 105.702353 69.040305) (xy 105.6995 69.070725) (xy 105.6995 70.129274) + (xy 105.702353 70.159694) (xy 105.702355 70.159703) (xy 105.747207 70.287883) (xy 105.827845 70.397144) + (xy 105.827847 70.397146) (xy 105.82785 70.39715) (xy 105.827853 70.397152) (xy 105.827855 70.397154) + (xy 105.937116 70.477792) (xy 105.937117 70.477792) (xy 105.937118 70.477793) (xy 106.065301 70.522646) + (xy 106.095725 70.525499) (xy 106.095727 70.5255) (xy 106.095734 70.5255) (xy 106.2955 70.5255) + (xy 106.353691 70.544407) (xy 106.389655 70.593907) (xy 106.3945 70.6245) (xy 106.3945 71.9505) + (xy 106.375593 72.008691) (xy 106.326093 72.044655) (xy 106.2955 72.0495) (xy 105.850252 72.0495) + (xy 105.850251 72.0495) (xy 105.850241 72.049501) (xy 105.791772 72.061132) (xy 105.791766 72.061134) + (xy 105.725451 72.105445) (xy 105.725445 72.105451) (xy 105.681134 72.171766) (xy 105.681132 72.171772) + (xy 105.669501 72.230241) (xy 105.6695 72.230253) (xy 105.6695 72.69091) (xy 105.650593 72.749101) + (xy 105.601093 72.785065) (xy 105.539907 72.785065) (xy 105.490407 72.749101) (xy 105.474873 72.716533) + (xy 105.453429 72.636505) (xy 105.353605 72.422432) (xy 105.353601 72.422424) (xy 105.218113 72.228926) + (xy 105.051073 72.061886) (xy 104.857577 71.926399) (xy 104.643489 71.826569) (xy 104.43 71.769364) + (xy 104.43 72.666988) (xy 104.372993 72.634075) (xy 104.245826 72.6) (xy 104.114174 72.6) (xy 103.987007 72.634075) + (xy 103.93 72.666988) (xy 103.93 71.769364) (xy 103.716505 71.82657) (xy 103.502432 71.926394) (xy 103.502424 71.926398) + (xy 103.308926 72.061886) (xy 103.141886 72.228926) (xy 103.006398 72.422424) (xy 103.006394 72.422432) + (xy 102.90657 72.636505) (xy 102.851183 72.843213) (xy 102.817859 72.894527) (xy 102.760737 72.916454) + (xy 102.701637 72.900618) (xy 102.663132 72.853068) (xy 102.660819 72.846328) (xy 102.642235 72.785065) + (xy 102.615232 72.696046) (xy 102.517685 72.51355) (xy 102.38641 72.35359) (xy 102.236123 72.230253) + (xy 102.226452 72.222316) (xy 102.043954 72.124768) (xy 101.845934 72.064699) (xy 101.845929 72.064698) + (xy 101.640003 72.044417) (xy 101.639997 72.044417) (xy 101.43407 72.064698) (xy 101.434065 72.064699) + (xy 101.236045 72.124768) (xy 101.053547 72.222316) (xy 100.893595 72.353585) (xy 100.893585 72.353595) + (xy 100.762316 72.513547) (xy 100.664768 72.696045) (xy 100.604699 72.894065) (xy 100.604698 72.89407) + (xy 100.584417 73.099996) (xy 100.584417 73.100003) (xy 100.604698 73.305929) (xy 100.604699 73.305934) + (xy 100.664768 73.503954) (xy 100.664769 73.503957) (xy 100.668804 73.511506) (xy 100.679558 73.571739) + (xy 100.652854 73.626789) (xy 100.651496 73.628175) (xy 100.379871 73.8998) (xy 100.325354 73.927577) + (xy 100.271982 73.92126) (xy 100.256767 73.914957) (xy 100.256758 73.914955) (xy 100.100001 73.894318) + (xy 100.099999 73.894318) (xy 100.019993 73.904851) (xy 99.959832 73.893701) (xy 99.917715 73.849319) + (xy 99.909729 73.788657) (xy 99.930543 73.743893) (xy 99.977683 73.686452) (xy 99.977685 73.68645) + (xy 100.075232 73.503954) (xy 100.1353 73.305934) (xy 100.135301 73.305929) (xy 100.155583 73.100003) + (xy 100.155583 73.099996) (xy 100.135301 72.89407) (xy 100.1353 72.894065) (xy 100.102235 72.785065) + (xy 100.075232 72.696046) (xy 99.977685 72.51355) (xy 99.84641 72.35359) (xy 99.696123 72.230253) + (xy 99.686452 72.222316) (xy 99.503954 72.124768) (xy 99.305934 72.064699) (xy 99.305929 72.064698) + (xy 99.100003 72.044417) (xy 99.099997 72.044417) (xy 98.89407 72.064698) (xy 98.894065 72.064699) + (xy 98.696045 72.124768) (xy 98.513547 72.222316) (xy 98.353595 72.353585) (xy 98.353585 72.353595) + (xy 98.222316 72.513547) (xy 98.127513 72.69091) (xy 98.124768 72.696046) (xy 98.108674 72.749101) + (xy 98.07918 72.846329) (xy 98.044195 72.896525) (xy 97.986386 72.916571) (xy 97.927836 72.89881) + (xy 97.890907 72.850025) (xy 97.888816 72.843213) (xy 97.833429 72.636504) (xy 97.733605 72.422432) + (xy 97.733601 72.422424) (xy 97.598113 72.228926) (xy 97.431073 72.061886) (xy 97.237577 71.926399) + (xy 97.023489 71.826569) (xy 96.81 71.769364) (xy 96.81 72.666988) (xy 96.752993 72.634075) (xy 96.625826 72.6) + (xy 96.494174 72.6) (xy 96.367007 72.634075) (xy 96.31 72.666988) (xy 96.31 71.769364) (xy 96.096505 71.82657) + (xy 95.882432 71.926394) (xy 95.882424 71.926398) (xy 95.688926 72.061886) (xy 95.521886 72.228926) + (xy 95.386398 72.422424) (xy 95.386394 72.422432) (xy 95.28657 72.636505) (xy 95.229364 72.85) (xy 96.126988 72.85) + (xy 96.094075 72.907007) (xy 96.06 73.034174) (xy 96.06 73.165826) (xy 96.094075 73.292993) (xy 96.126988 73.35) + (xy 95.229364 73.35) (xy 95.286569 73.563489) (xy 95.386399 73.777577) (xy 95.521886 73.971073) + (xy 95.688926 74.138113) (xy 95.882422 74.2736) (xy 96.096509 74.37343) (xy 96.31 74.430634) (xy 96.31 73.533012) + (xy 96.367007 73.565925) (xy 96.494174 73.6) (xy 96.625826 73.6) (xy 96.752993 73.565925) (xy 96.81 73.533012) + (xy 96.81 74.430633) (xy 97.02349 74.37343) (xy 97.237577 74.2736) (xy 97.431073 74.138113) (xy 97.598113 73.971073) + (xy 97.7336 73.777577) (xy 97.83343 73.56349) (xy 97.888816 73.356786) (xy 97.92214 73.305472) (xy 97.979261 73.283545) + (xy 98.038362 73.29938) (xy 98.076867 73.34693) (xy 98.07918 73.353671) (xy 98.124768 73.503954) + (xy 98.222316 73.686452) (xy 98.353585 73.846404) (xy 98.35359 73.84641) (xy 98.353595 73.846414) + (xy 98.513547 73.977683) (xy 98.513548 73.977683) (xy 98.51355 73.977685) (xy 98.696046 74.075232) + (xy 98.833997 74.117078) (xy 98.894065 74.1353) (xy 98.89407 74.135301) (xy 99.099997 74.155583) + (xy 99.1 74.155583) (xy 99.100003 74.155583) (xy 99.305929 74.135301) (xy 99.305929 74.1353) (xy 99.305934 74.1353) + (xy 99.4432 74.093661) (xy 99.50437 74.094862) (xy 99.553154 74.13179) (xy 99.570916 74.190341) + (xy 99.563399 74.226283) (xy 99.514957 74.343232) (xy 99.514955 74.343241) (xy 99.494318 74.499999) + (xy 99.494318 74.5) (xy 99.514955 74.656758) (xy 99.514957 74.656766) (xy 99.575461 74.802836) (xy 99.575463 74.802838) + (xy 99.575464 74.802841) (xy 99.604541 74.840735) (xy 99.624964 74.898408) (xy 99.607587 74.957074) + (xy 99.559045 74.994321) (xy 99.525998 75) (xy 84.099 75) (xy 84.040809 74.981093) (xy 84.004845 74.931593) + (xy 84 74.901) (xy 84 73.100003) (xy 85.344417 73.100003) (xy 85.364698 73.305929) (xy 85.364699 73.305934) + (xy 85.424768 73.503954) (xy 85.522316 73.686452) (xy 85.653585 73.846404) (xy 85.65359 73.84641) + (xy 85.653595 73.846414) (xy 85.813547 73.977683) (xy 85.813548 73.977683) (xy 85.81355 73.977685) + (xy 85.996046 74.075232) (xy 86.133997 74.117078) (xy 86.194065 74.1353) (xy 86.19407 74.135301) + (xy 86.399997 74.155583) (xy 86.4 74.155583) (xy 86.400003 74.155583) (xy 86.605929 74.135301) (xy 86.605934 74.1353) + (xy 86.617505 74.13179) (xy 86.803954 74.075232) (xy 86.98645 73.977685) (xy 87.14641 73.84641) + (xy 87.277685 73.68645) (xy 87.375232 73.503954) (xy 87.4353 73.305934) (xy 87.435301 73.305929) + (xy 87.455583 73.100003) (xy 87.884417 73.100003) (xy 87.904698 73.305929) (xy 87.904699 73.305934) + (xy 87.964768 73.503954) (xy 88.062316 73.686452) (xy 88.193585 73.846404) (xy 88.19359 73.84641) + (xy 88.193595 73.846414) (xy 88.353547 73.977683) (xy 88.353548 73.977683) (xy 88.35355 73.977685) + (xy 88.536046 74.075232) (xy 88.673997 74.117078) (xy 88.734065 74.1353) (xy 88.73407 74.135301) + (xy 88.939997 74.155583) (xy 88.94 74.155583) (xy 88.940003 74.155583) (xy 89.145929 74.135301) + (xy 89.145934 74.1353) (xy 89.157505 74.13179) (xy 89.343954 74.075232) (xy 89.52645 73.977685) + (xy 89.536124 73.969746) (xy 90.4295 73.969746) (xy 90.429501 73.969758) (xy 90.441132 74.028227) + (xy 90.441134 74.028233) (xy 90.485445 74.094548) (xy 90.485448 74.094552) (xy 90.551769 74.138867) + (xy 90.596231 74.147711) (xy 90.610241 74.150498) (xy 90.610246 74.150498) (xy 90.610252 74.1505) + (xy 90.610253 74.1505) (xy 92.349747 74.1505) (xy 92.349748 74.1505) (xy 92.408231 74.138867) (xy 92.474552 74.094552) + (xy 92.518867 74.028231) (xy 92.5305 73.969748) (xy 92.5305 72.230252) (xy 92.528921 72.222316) + (xy 92.527711 72.216231) (xy 92.518867 72.171769) (xy 92.474552 72.105448) (xy 92.474548 72.105445) + (xy 92.408233 72.061134) (xy 92.408231 72.061133) (xy 92.408228 72.061132) (xy 92.408227 72.061132) + (xy 92.349758 72.049501) (xy 92.349748 72.0495) (xy 90.610252 72.0495) (xy 90.610251 72.0495) (xy 90.610241 72.049501) + (xy 90.551772 72.061132) (xy 90.551766 72.061134) (xy 90.485451 72.105445) (xy 90.485445 72.105451) + (xy 90.441134 72.171766) (xy 90.441132 72.171772) (xy 90.429501 72.230241) (xy 90.4295 72.230253) + (xy 90.4295 73.969746) (xy 89.536124 73.969746) (xy 89.68641 73.84641) (xy 89.817685 73.68645) (xy 89.915232 73.503954) + (xy 89.9753 73.305934) (xy 89.975301 73.305929) (xy 89.995583 73.100003) (xy 89.995583 73.099996) + (xy 89.975301 72.89407) (xy 89.9753 72.894065) (xy 89.942235 72.785065) (xy 89.915232 72.696046) + (xy 89.817685 72.51355) (xy 89.68641 72.35359) (xy 89.536123 72.230253) (xy 89.526452 72.222316) + (xy 89.343954 72.124768) (xy 89.145934 72.064699) (xy 89.145929 72.064698) (xy 88.940003 72.044417) + (xy 88.939997 72.044417) (xy 88.73407 72.064698) (xy 88.734065 72.064699) (xy 88.536045 72.124768) + (xy 88.353547 72.222316) (xy 88.193595 72.353585) (xy 88.193585 72.353595) (xy 88.062316 72.513547) + (xy 87.964768 72.696045) (xy 87.904699 72.894065) (xy 87.904698 72.89407) (xy 87.884417 73.099996) + (xy 87.884417 73.100003) (xy 87.455583 73.100003) (xy 87.455583 73.099996) (xy 87.435301 72.89407) + (xy 87.4353 72.894065) (xy 87.402235 72.785065) (xy 87.375232 72.696046) (xy 87.277685 72.51355) + (xy 87.14641 72.35359) (xy 86.996123 72.230253) (xy 86.986452 72.222316) (xy 86.803954 72.124768) + (xy 86.605934 72.064699) (xy 86.605929 72.064698) (xy 86.400003 72.044417) (xy 86.399997 72.044417) + (xy 86.19407 72.064698) (xy 86.194065 72.064699) (xy 85.996045 72.124768) (xy 85.813547 72.222316) + (xy 85.653595 72.353585) (xy 85.653585 72.353595) (xy 85.522316 72.513547) (xy 85.424768 72.696045) + (xy 85.364699 72.894065) (xy 85.364698 72.89407) (xy 85.344417 73.099996) (xy 85.344417 73.100003) + (xy 84 73.100003) (xy 84 70.124986) (xy 103.325001 70.124986) (xy 103.335492 70.227687) (xy 103.335495 70.227699) + (xy 103.390643 70.394124) (xy 103.48268 70.54334) (xy 103.606659 70.667319) (xy 103.755875 70.759356) + (xy 103.922306 70.814506) (xy 104.025013 70.824999) (xy 104.1625 70.824999) (xy 104.1625 70.824998) + (xy 104.6625 70.824998) (xy 104.662501 70.824999) (xy 104.799986 70.824999) (xy 104.902687 70.814507) + (xy 104.902699 70.814504) (xy 105.069124 70.759356) (xy 105.21834 70.667319) (xy 105.342319 70.54334) + (xy 105.434356 70.394124) (xy 105.489506 70.227693) (xy 105.5 70.124987) (xy 105.5 69.850001) (xy 105.499999 69.85) + (xy 104.662501 69.85) (xy 104.6625 69.850001) (xy 104.6625 70.824998) (xy 104.1625 70.824998) (xy 104.1625 69.850001) + (xy 104.162499 69.85) (xy 103.325002 69.85) (xy 103.325001 69.850001) (xy 103.325001 70.124986) + (xy 84 70.124986) (xy 84 68.887486) (xy 86.500001 68.887486) (xy 86.510492 68.990187) (xy 86.510495 68.990199) + (xy 86.565643 69.156624) (xy 86.65768 69.30584) (xy 86.781659 69.429819) (xy 86.930875 69.521856) + (xy 87.097306 69.577006) (xy 87.200013 69.587499) (xy 87.474998 69.587499) (xy 87.475 69.587498) + (xy 87.975 69.587498) (xy 87.975001 69.587499) (xy 88.249986 69.587499) (xy 88.352687 69.577007) + (xy 88.352699 69.577004) (xy 88.519124 69.521856) (xy 88.66834 69.429819) (xy 88.74816 69.349999) + (xy 103.325 69.349999) (xy 103.325001 69.35) (xy 104.162499 69.35) (xy 104.1625 69.349999) (xy 104.6625 69.349999) + (xy 104.662501 69.35) (xy 105.499998 69.35) (xy 105.499999 69.349999) (xy 105.499999 69.075013) + (xy 105.489507 68.972312) (xy 105.489504 68.9723) (xy 105.434356 68.805875) (xy 105.342319 68.656659) + (xy 105.21834 68.53268) (xy 105.069124 68.440643) (xy 104.902693 68.385493) (xy 104.799987 68.375) + (xy 104.662501 68.375) (xy 104.6625 68.375001) (xy 104.6625 69.349999) (xy 104.1625 69.349999) (xy 104.1625 68.375001) + (xy 104.162499 68.375) (xy 104.025013 68.375) (xy 104.025013 68.375001) (xy 103.922312 68.385492) + (xy 103.9223 68.385495) (xy 103.755875 68.440643) (xy 103.606659 68.53268) (xy 103.48268 68.656659) + (xy 103.390643 68.805875) (xy 103.335493 68.972306) (xy 103.325 69.075012) (xy 103.325 69.349999) + (xy 88.74816 69.349999) (xy 88.792319 69.30584) (xy 88.884356 69.156624) (xy 88.939506 68.990193) + (xy 88.95 68.887487) (xy 88.95 68.750001) (xy 88.949999 68.75) (xy 87.975001 68.75) (xy 87.975 68.750001) + (xy 87.975 69.587498) (xy 87.475 69.587498) (xy 87.475 68.750001) (xy 87.474999 68.75) (xy 86.500002 68.75) + (xy 86.500001 68.750001) (xy 86.500001 68.887486) (xy 84 68.887486) (xy 84 68.249999) (xy 86.5 68.249999) + (xy 86.500001 68.25) (xy 87.474999 68.25) (xy 87.475 68.249999) (xy 87.975 68.249999) (xy 87.975001 68.25) + (xy 88.949998 68.25) (xy 88.949999 68.249999) (xy 88.949999 68.112513) (xy 88.939507 68.009812) + (xy 88.939504 68.0098) (xy 88.884356 67.843375) (xy 88.792319 67.694159) (xy 88.66834 67.57018) + (xy 88.519124 67.478143) (xy 88.352693 67.422993) (xy 88.249987 67.4125) (xy 87.975001 67.4125) + (xy 87.975 67.412501) (xy 87.975 68.249999) (xy 87.475 68.249999) (xy 87.475 67.412501) (xy 87.474999 67.4125) + (xy 87.200013 67.4125) (xy 87.097312 67.422992) (xy 87.0973 67.422995) (xy 86.930875 67.478143) + (xy 86.781659 67.57018) (xy 86.65768 67.694159) (xy 86.565643 67.843375) (xy 86.510493 68.009806) + (xy 86.5 68.112512) (xy 86.5 68.249999) (xy 84 68.249999) (xy 84 66.816774) (xy 86.7995 66.816774) + (xy 86.802353 66.847194) (xy 86.802355 66.847203) (xy 86.847207 66.975383) (xy 86.927845 67.084644) + (xy 86.927847 67.084646) (xy 86.92785 67.08465) (xy 86.927853 67.084652) (xy 86.927855 67.084654) + (xy 87.037116 67.165292) (xy 87.037117 67.165292) (xy 87.037118 67.165293) (xy 87.165301 67.210146) + (xy 87.195725 67.212999) (xy 87.195727 67.213) (xy 87.195734 67.213) (xy 88.254273 67.213) (xy 88.254273 67.212999) + (xy 88.284699 67.210146) (xy 88.412882 67.165293) (xy 88.52215 67.08465) (xy 88.565866 67.025417) + (xy 88.607199 66.969413) (xy 88.609004 66.970745) (xy 88.645189 66.935628) (xy 88.68881 66.9255) + (xy 89.0255 66.9255) (xy 89.083691 66.944407) (xy 89.119655 66.993907) (xy 89.1245 67.0245) (xy 89.1245 67.104274) + (xy 89.127353 67.134694) (xy 89.127355 67.134703) (xy 89.172207 67.262883) (xy 89.252845 67.372144) + (xy 89.252847 67.372146) (xy 89.25285 67.37215) (xy 89.252853 67.372152) (xy 89.252855 67.372154) + (xy 89.362116 67.452792) (xy 89.362117 67.452792) (xy 89.362118 67.452793) (xy 89.490301 67.497646) + (xy 89.520725 67.500499) (xy 89.520727 67.5005) (xy 89.520734 67.5005) (xy 90.329273 67.5005) (xy 90.329273 67.500499) + (xy 90.359699 67.497646) (xy 90.487882 67.452793) (xy 90.59715 67.37215) (xy 90.677793 67.262882) + (xy 90.722646 67.134699) (xy 90.725499 67.104273) (xy 90.7255 67.104273) (xy 90.7255 66.095727) + (xy 90.725499 66.095725) (xy 90.722646 66.065305) (xy 90.722646 66.065301) (xy 90.677793 65.937118) + (xy 90.65764 65.909812) (xy 90.597154 65.827855) (xy 90.597152 65.827853) (xy 90.59715 65.82785) + (xy 90.597146 65.827847) (xy 90.597144 65.827845) (xy 90.487883 65.747207) (xy 90.359703 65.702355) + (xy 90.359694 65.702353) (xy 90.329274 65.6995) (xy 90.329266 65.6995) (xy 89.520734 65.6995) (xy 89.520725 65.6995) + (xy 89.490305 65.702353) (xy 89.490296 65.702355) (xy 89.362116 65.747207) (xy 89.252855 65.827845) + (xy 89.252845 65.827855) (xy 89.172207 65.937116) (xy 89.127355 66.065296) (xy 89.127353 66.065305) + (xy 89.1245 66.095725) (xy 89.1245 66.1755) (xy 89.105593 66.233691) (xy 89.056093 66.269655) (xy 89.0255 66.2745) + (xy 88.7495 66.2745) (xy 88.691309 66.255593) (xy 88.655345 66.206093) (xy 88.6505 66.1755) (xy 88.6505 66.033227) + (xy 88.650499 66.033225) (xy 88.649713 66.024846) (xy 88.647646 66.002801) (xy 88.602793 65.874618) + (xy 88.568273 65.827845) (xy 88.522154 65.765355) (xy 88.522152 65.765353) (xy 88.52215 65.76535) + (xy 88.522146 65.765347) (xy 88.522144 65.765345) (xy 88.412883 65.684707) (xy 88.284703 65.639855) + (xy 88.284694 65.639853) (xy 88.254274 65.637) (xy 88.254266 65.637) (xy 87.195734 65.637) (xy 87.195725 65.637) + (xy 87.165305 65.639853) (xy 87.165296 65.639855) (xy 87.037116 65.684707) (xy 86.927855 65.765345) + (xy 86.927845 65.765355) (xy 86.847207 65.874616) (xy 86.802355 66.002796) (xy 86.802353 66.002805) + (xy 86.7995 66.033225) (xy 86.7995 66.816774) (xy 84 66.816774) (xy 84 64.262486) (xy 90.700001 64.262486) + (xy 90.710492 64.365187) (xy 90.710495 64.365199) (xy 90.765643 64.531624) (xy 90.85768 64.68084) + (xy 90.981659 64.804819) (xy 91.130875 64.896856) (xy 91.297306 64.952006) (xy 91.400013 64.962499) + (xy 91.649998 64.962499) (xy 91.65 64.962498) (xy 91.65 64.112501) (xy 91.649999 64.1125) (xy 90.700002 64.1125) + (xy 90.700001 64.112501) (xy 90.700001 64.262486) (xy 84 64.262486) (xy 84 60.75) (xy 85.669318 60.75) + (xy 85.689955 60.906758) (xy 85.689957 60.906766) (xy 85.750462 61.052838) (xy 85.750462 61.052839) + (xy 85.820484 61.144093) (xy 85.846718 61.178282) (xy 85.846722 61.178285) (xy 85.846723 61.178286) + (xy 85.866672 61.193593) (xy 85.972159 61.274536) (xy 85.97216 61.274536) (xy 85.972161 61.274537) + (xy 86.069739 61.314955) (xy 86.118238 61.335044) (xy 86.231742 61.349987) (xy 86.274999 61.355682) + (xy 86.275 61.355682) (xy 86.275001 61.355682) (xy 86.318258 61.349987) (xy 86.431762 61.335044) + (xy 86.577841 61.274536) (xy 86.665434 61.207323) (xy 86.723108 61.1869) (xy 86.781774 61.204277) + (xy 86.819021 61.252819) (xy 86.823767 61.277008) (xy 86.824283 61.27696) (xy 86.827353 61.309694) + (xy 86.827355 61.309703) (xy 86.872207 61.437883) (xy 86.952845 61.547144) (xy 86.952847 61.547146) + (xy 86.95285 61.54715) (xy 86.952853 61.547152) (xy 86.952855 61.547154) (xy 87.062116 61.627792) + (xy 87.062117 61.627792) (xy 87.062118 61.627793) (xy 87.190301 61.672646) (xy 87.220725 61.675499) + (xy 87.220727 61.6755) (xy 87.220734 61.6755) (xy 88.004273 61.6755) (xy 88.004273 61.675499) (xy 88.034699 61.672646) + (xy 88.162882 61.627793) (xy 88.27215 61.54715) (xy 88.352793 61.437882) (xy 88.397646 61.309699) + (xy 88.400499 61.279274) (xy 88.8995 61.279274) (xy 88.902353 61.309694) (xy 88.902355 61.309703) + (xy 88.947207 61.437883) (xy 89.027845 61.547144) (xy 89.027847 61.547146) (xy 89.02785 61.54715) + (xy 89.027853 61.547152) (xy 89.027855 61.547154) (xy 89.137116 61.627792) (xy 89.137117 61.627792) + (xy 89.137118 61.627793) (xy 89.265301 61.672646) (xy 89.295725 61.675499) (xy 89.295727 61.6755) + (xy 89.295734 61.6755) (xy 90.079273 61.6755) (xy 90.079273 61.675499) (xy 90.109699 61.672646) + (xy 90.237882 61.627793) (xy 90.34715 61.54715) (xy 90.427793 61.437882) (xy 90.472646 61.309699) + (xy 90.475499 61.279273) (xy 90.4755 61.279273) (xy 90.4755 61.162) (xy 90.494407 61.103809) (xy 90.543907 61.067845) + (xy 90.5745 61.063) (xy 91.02573 61.063) (xy 91.083921 61.081907) (xy 91.119885 61.131407) (xy 91.119885 61.192593) + (xy 91.105385 61.220788) (xy 91.047207 61.299616) (xy 91.002355 61.427796) (xy 91.002353 61.427805) + (xy 90.9995 61.458225) (xy 90.9995 62.266774) (xy 91.002353 62.297194) (xy 91.002355 62.297203) + (xy 91.047207 62.425383) (xy 91.127845 62.534644) (xy 91.127847 62.534646) (xy 91.12785 62.53465) + (xy 91.127853 62.534652) (xy 91.127855 62.534654) (xy 91.237112 62.615289) (xy 91.237114 62.61529) + (xy 91.237118 62.615293) (xy 91.237122 62.615294) (xy 91.238451 62.615997) (xy 91.23941 62.616985) + (xy 91.243087 62.619699) (xy 91.242636 62.620309) (xy 91.281067 62.659901) (xy 91.289738 62.720469) + (xy 91.261152 62.774566) (xy 91.223339 62.797503) (xy 91.130874 62.828143) (xy 90.981659 62.92018) + (xy 90.85768 63.044159) (xy 90.765643 63.193375) (xy 90.710493 63.359806) (xy 90.7 63.462512) (xy 90.7 63.612499) + (xy 90.700001 63.6125) (xy 92.051 63.6125) (xy 92.109191 63.631407) (xy 92.145155 63.680907) (xy 92.15 63.7115) + (xy 92.15 64.962498) (xy 92.150001 64.962499) (xy 92.399986 64.962499) (xy 92.502687 64.952007) + (xy 92.502699 64.952004) (xy 92.669124 64.896856) (xy 92.81834 64.804819) (xy 92.830496 64.792664) + (xy 92.885013 64.764887) (xy 92.945445 64.774458) (xy 92.98871 64.817723) (xy 92.9995 64.862668) + (xy 92.9995 66.024846) (xy 92.980593 66.083037) (xy 92.960768 66.103386) (xy 92.943366 66.116741) + (xy 92.884072 66.162238) (xy 92.826396 66.182661) (xy 92.76773 66.165283) (xy 92.730483 66.116741) + (xy 92.725238 66.092944) (xy 92.722646 66.065301) (xy 92.677793 65.937118) (xy 92.65764 65.909812) + (xy 92.597154 65.827855) (xy 92.597152 65.827853) (xy 92.59715 65.82785) (xy 92.597146 65.827847) + (xy 92.597144 65.827845) (xy 92.487883 65.747207) (xy 92.359703 65.702355) (xy 92.359694 65.702353) + (xy 92.329274 65.6995) (xy 92.329266 65.6995) (xy 91.520734 65.6995) (xy 91.520725 65.6995) (xy 91.490305 65.702353) + (xy 91.490296 65.702355) (xy 91.362116 65.747207) (xy 91.252855 65.827845) (xy 91.252845 65.827855) + (xy 91.172207 65.937116) (xy 91.127355 66.065296) (xy 91.127353 66.065305) (xy 91.1245 66.095725) + (xy 91.1245 67.104274) (xy 91.127353 67.134694) (xy 91.127355 67.134703) (xy 91.172207 67.262883) + (xy 91.252845 67.372144) (xy 91.252847 67.372146) (xy 91.25285 67.37215) (xy 91.252853 67.372152) + (xy 91.252855 67.372154) (xy 91.362116 67.452792) (xy 91.362117 67.452792) (xy 91.362118 67.452793) + (xy 91.490301 67.497646) (xy 91.520725 67.500499) (xy 91.520727 67.5005) (xy 91.520734 67.5005) + (xy 92.329273 67.5005) (xy 92.329273 67.500499) (xy 92.359699 67.497646) (xy 92.487882 67.452793) + (xy 92.59715 67.37215) (xy 92.677793 67.262882) (xy 92.722646 67.134699) (xy 92.725238 67.107058) + (xy 92.749495 67.05089) (xy 92.802136 67.019705) (xy 92.863054 67.025417) (xy 92.884072 67.037762) + (xy 92.901181 67.05089) (xy 92.997159 67.124536) (xy 92.99716 67.124536) (xy 92.997161 67.124537) + (xy 93.095555 67.165293) (xy 93.143238 67.185044) (xy 93.260809 67.200522) (xy 93.299999 67.205682) + (xy 93.3 67.205682) (xy 93.300001 67.205682) (xy 93.331352 67.201554) (xy 93.456762 67.185044) (xy 93.602841 67.124536) + (xy 93.728282 67.028282) (xy 93.768873 66.975383) (xy 93.796612 66.939233) (xy 93.847037 66.904577) + (xy 93.875154 66.9005) (xy 95.0005 66.9005) (xy 95.058691 66.919407) (xy 95.094655 66.968907) (xy 95.0995 66.9995) + (xy 95.0995 67.104274) (xy 95.102353 67.134694) (xy 95.102355 67.134703) (xy 95.147207 67.262883) + (xy 95.227845 67.372144) (xy 95.227847 67.372146) (xy 95.22785 67.37215) (xy 95.227853 67.372152) + (xy 95.227855 67.372154) (xy 95.337116 67.452792) (xy 95.337117 67.452792) (xy 95.337118 67.452793) + (xy 95.465301 67.497646) (xy 95.495725 67.500499) (xy 95.495727 67.5005) (xy 95.495734 67.5005) + (xy 96.304273 67.5005) (xy 96.304273 67.500499) (xy 96.334699 67.497646) (xy 96.462882 67.452793) + (xy 96.57215 67.37215) (xy 96.652793 67.262882) (xy 96.697646 67.134699) (xy 96.700499 67.104273) + (xy 96.7005 67.104273) (xy 96.7005 66.095727) (xy 96.700499 66.095725) (xy 96.697646 66.065305) + (xy 96.697646 66.065301) (xy 96.652793 65.937118) (xy 96.63264 65.909812) (xy 96.572154 65.827855) + (xy 96.572152 65.827853) (xy 96.57215 65.82785) (xy 96.572146 65.827847) (xy 96.572144 65.827845) + (xy 96.462883 65.747207) (xy 96.334703 65.702355) (xy 96.334694 65.702353) (xy 96.304274 65.6995) + (xy 96.304266 65.6995) (xy 95.495734 65.6995) (xy 95.495725 65.6995) (xy 95.465305 65.702353) (xy 95.465296 65.702355) + (xy 95.337116 65.747207) (xy 95.227855 65.827845) (xy 95.227845 65.827855) (xy 95.147207 65.937116) + (xy 95.102355 66.065296) (xy 95.102353 66.065305) (xy 95.0995 66.095725) (xy 95.0995 66.2005) (xy 95.080593 66.258691) + (xy 95.031093 66.294655) (xy 95.0005 66.2995) (xy 93.875154 66.2995) (xy 93.816963 66.280593) (xy 93.796612 66.260767) + (xy 93.728286 66.171723) (xy 93.728285 66.171722) (xy 93.728282 66.171718) (xy 93.728277 66.171714) + (xy 93.728276 66.171713) (xy 93.639233 66.103388) (xy 93.604577 66.052963) (xy 93.6005 66.024846) + (xy 93.6005 63.6995) (xy 93.619407 63.641309) (xy 93.668907 63.605345) (xy 93.6995 63.6005) (xy 94.625501 63.6005) + (xy 94.683692 63.619407) (xy 94.719656 63.668907) (xy 94.724501 63.6995) (xy 94.724501 63.951951) + (xy 94.734778 64.022504) (xy 94.734781 64.022514) (xy 94.787985 64.131343) (xy 94.787987 64.131345) + (xy 94.787988 64.131347) (xy 94.873653 64.217012) (xy 94.982491 64.27022) (xy 95.053051 64.2805) + (xy 95.446948 64.280499) (xy 95.494542 64.273565) (xy 95.517504 64.270221) (xy 95.517505 64.27022) + (xy 95.517509 64.27022) (xy 95.517511 64.270218) (xy 95.517514 64.270218) (xy 95.626343 64.217014) + (xy 95.626343 64.217013) (xy 95.626347 64.217012) (xy 95.712012 64.131347) (xy 95.76522 64.022509) + (xy 95.7755 63.951949) (xy 95.775499 62.648052) (xy 95.76522 62.577491) (xy 95.765219 62.577489) + (xy 95.765218 62.577485) (xy 95.712014 62.468656) (xy 95.712012 62.468654) (xy 95.712012 62.468653) + (xy 95.626347 62.382988) (xy 95.517509 62.32978) (xy 95.446949 62.3195) (xy 95.446945 62.3195) (xy 95.053056 62.3195) + (xy 95.053048 62.319501) (xy 94.982495 62.329778) (xy 94.982485 62.329781) (xy 94.873656 62.382985) + (xy 94.787987 62.468654) (xy 94.763818 62.518093) (xy 94.73478 62.577491) (xy 94.724501 62.648048) + (xy 94.7245 62.648054) (xy 94.7245 62.9005) (xy 94.705593 62.958691) (xy 94.656093 62.994655) (xy 94.6255 62.9995) + (xy 93.360435 62.9995) (xy 93.284012 63.019978) (xy 93.252557 63.038139) (xy 93.252556 63.038138) + (xy 93.215487 63.059541) (xy 93.140933 63.134094) (xy 93.086416 63.161871) (xy 93.025984 63.152299) + (xy 92.986669 63.116062) (xy 92.942319 63.044159) (xy 92.81834 62.92018) (xy 92.669125 62.828143) + (xy 92.57666 62.797503) (xy 92.52737 62.761251) (xy 92.508803 62.702951) (xy 92.528049 62.644871) + (xy 92.557045 62.619878) (xy 92.556913 62.619699) (xy 92.559289 62.617945) (xy 92.561552 62.615995) + (xy 92.562871 62.615296) (xy 92.562882 62.615293) (xy 92.67215 62.53465) (xy 92.752793 62.425382) + (xy 92.797646 62.297199) (xy 92.800499 62.266773) (xy 92.8005 62.266773) (xy 92.8005 61.458227) + (xy 92.800499 61.458225) (xy 92.798591 61.437882) (xy 92.797646 61.427801) (xy 92.752793 61.299618) + (xy 92.752792 61.299616) (xy 92.694615 61.220788) (xy 92.675273 61.16274) (xy 92.693745 61.10441) + (xy 92.742974 61.068077) (xy 92.77427 61.063) (xy 94.625501 61.063) (xy 94.683692 61.081907) (xy 94.719656 61.131407) + (xy 94.724501 61.162) (xy 94.724501 61.251951) (xy 94.734778 61.322504) (xy 94.734781 61.322514) + (xy 94.787985 61.431343) (xy 94.787987 61.431345) (xy 94.787988 61.431347) (xy 94.873653 61.517012) + (xy 94.982491 61.57022) (xy 95.053051 61.5805) (xy 95.426958 61.580499) (xy 95.485149 61.599406) + (xy 95.508241 61.624538) (xy 95.508466 61.624362) (xy 95.510706 61.627221) (xy 95.511679 61.62828) + (xy 95.512159 61.629074) (xy 95.625926 61.742841) (xy 95.763602 61.82607) (xy 95.763604 61.826071) + (xy 95.917205 61.873934) (xy 95.95 61.876914) (xy 95.95 59.323084) (xy 96.45 59.323084) (xy 96.45 61.876913) + (xy 96.482794 61.873934) (xy 96.636395 61.826071) (xy 96.636397 61.82607) (xy 96.774073 61.742841) + (xy 96.887839 61.629075) (xy 96.888311 61.628295) (xy 96.888747 61.627917) (xy 96.891535 61.62436) + (xy 96.89223 61.624905) (xy 96.93459 61.588271) (xy 96.973036 61.580499) (xy 97.346948 61.580499) + (xy 97.394542 61.573565) (xy 97.417504 61.570221) (xy 97.417505 61.57022) (xy 97.417509 61.57022) + (xy 97.417511 61.570218) (xy 97.417514 61.570218) (xy 97.478069 61.540614) (xy 97.516802 61.521677) + (xy 97.577383 61.513106) (xy 97.630287 61.540614) (xy 98.350138 62.260465) (xy 98.35014 62.260466) + (xy 98.350141 62.260467) (xy 98.350142 62.260468) (xy 98.42203 62.301973) (xy 98.462971 62.347442) + (xy 98.469367 62.408293) (xy 98.452186 62.446496) (xy 98.417802 62.493086) (xy 98.415996 62.491753) + (xy 98.379811 62.526872) (xy 98.33619 62.537) (xy 97.707224 62.537) (xy 97.649033 62.518093) (xy 97.618284 62.481481) + (xy 97.612014 62.468657) (xy 97.612013 62.468655) (xy 97.612012 62.468654) (xy 97.612012 62.468653) + (xy 97.526347 62.382988) (xy 97.417509 62.32978) (xy 97.346949 62.3195) (xy 97.346945 62.3195) (xy 96.953056 62.3195) + (xy 96.953048 62.319501) (xy 96.882495 62.329778) (xy 96.882485 62.329781) (xy 96.773656 62.382985) + (xy 96.687987 62.468654) (xy 96.663818 62.518093) (xy 96.63478 62.577491) (xy 96.624501 62.648048) + (xy 96.6245 62.648054) (xy 96.6245 63.951943) (xy 96.624501 63.951951) (xy 96.634778 64.022504) + (xy 96.634781 64.022514) (xy 96.687985 64.131343) (xy 96.687987 64.131345) (xy 96.687988 64.131347) + (xy 96.773653 64.217012) (xy 96.882491 64.27022) (xy 96.953051 64.2805) (xy 97.346948 64.280499) + (xy 97.394542 64.273565) (xy 97.417504 64.270221) (xy 97.417505 64.27022) (xy 97.417509 64.27022) + (xy 97.417511 64.270218) (xy 97.417514 64.270218) (xy 97.526343 64.217014) (xy 97.526343 64.217013) + (xy 97.526347 64.217012) (xy 97.612012 64.131347) (xy 97.66522 64.022509) (xy 97.6755 63.951949) + (xy 97.675499 63.286999) (xy 97.694406 63.228809) (xy 97.743906 63.192845) (xy 97.774499 63.188) + (xy 98.2755 63.188) (xy 98.333691 63.206907) (xy 98.369655 63.256407) (xy 98.3745 63.287) (xy 98.3745 63.429274) + (xy 98.377353 63.459694) (xy 98.377355 63.459703) (xy 98.422207 63.587883) (xy 98.502845 63.697144) + (xy 98.502847 63.697146) (xy 98.50285 63.69715) (xy 98.502853 63.697152) (xy 98.502855 63.697154) + (xy 98.612114 63.777791) (xy 98.612116 63.777791) (xy 98.612118 63.777793) (xy 98.735293 63.820893) + (xy 98.783972 63.857958) (xy 98.801569 63.916558) (xy 98.781361 63.97431) (xy 98.781137 63.974603) + (xy 98.725462 64.047161) (xy 98.664957 64.193233) (xy 98.664955 64.193241) (xy 98.644318 64.349999) + (xy 98.644318 64.35) (xy 98.664955 64.506758) (xy 98.664957 64.506766) (xy 98.725462 64.652838) + (xy 98.725462 64.652839) (xy 98.821713 64.778276) (xy 98.821718 64.778282) (xy 98.947159 64.874536) + (xy 98.94716 64.874536) (xy 98.947161 64.874537) (xy 99.001044 64.896856) (xy 99.093238 64.935044) + (xy 99.210809 64.950522) (xy 99.249999 64.955682) (xy 99.25 64.955682) (xy 99.250001 64.955682) + (xy 99.281352 64.951554) (xy 99.406762 64.935044) (xy 99.552841 64.874536) (xy 99.678282 64.778282) + (xy 99.774536 64.652841) (xy 99.835044 64.506762) (xy 99.855682 64.35) (xy 99.835044 64.193238) + (xy 99.774537 64.047161) (xy 99.774537 64.04716) (xy 99.726661 63.984767) (xy 99.706237 63.927091) + (xy 99.723615 63.868426) (xy 99.772156 63.831178) (xy 99.805203 63.8255) (xy 99.829273 63.8255) + (xy 99.829273 63.825499) (xy 99.859699 63.822646) (xy 99.987882 63.777793) (xy 100.09715 63.69715) + (xy 100.177793 63.587882) (xy 100.222646 63.459699) (xy 100.225499 63.429273) (xy 100.2255 63.429273) + (xy 100.2255 62.645727) (xy 100.225499 62.645725) (xy 100.223591 62.625382) (xy 100.222646 62.615301) + (xy 100.177793 62.487118) (xy 100.177792 62.487116) (xy 100.174967 62.483288) (xy 100.155625 62.425241) + (xy 100.174096 62.36691) (xy 100.223326 62.330577) (xy 100.254622 62.3255) (xy 100.9255 62.3255) + (xy 100.983691 62.344407) (xy 101.019655 62.393907) (xy 101.0245 62.4245) (xy 101.0245 66.1755) + (xy 101.005593 66.233691) (xy 100.956093 66.269655) (xy 100.9255 66.2745) (xy 98.7995 66.2745) (xy 98.741309 66.255593) + (xy 98.705345 66.206093) (xy 98.7005 66.1755) (xy 98.7005 66.095727) (xy 98.700499 66.095725) (xy 98.697646 66.065305) + (xy 98.697646 66.065301) (xy 98.652793 65.937118) (xy 98.63264 65.909812) (xy 98.572154 65.827855) + (xy 98.572152 65.827853) (xy 98.57215 65.82785) (xy 98.572146 65.827847) (xy 98.572144 65.827845) + (xy 98.462883 65.747207) (xy 98.334703 65.702355) (xy 98.334694 65.702353) (xy 98.304274 65.6995) + (xy 98.304266 65.6995) (xy 97.495734 65.6995) (xy 97.495725 65.6995) (xy 97.465305 65.702353) (xy 97.465296 65.702355) + (xy 97.337116 65.747207) (xy 97.227855 65.827845) (xy 97.227845 65.827855) (xy 97.147207 65.937116) + (xy 97.102355 66.065296) (xy 97.102353 66.065305) (xy 97.0995 66.095725) (xy 97.0995 67.104274) + (xy 97.102353 67.134694) (xy 97.102355 67.134703) (xy 97.147207 67.262883) (xy 97.227845 67.372144) + (xy 97.227847 67.372146) (xy 97.22785 67.37215) (xy 97.227853 67.372152) (xy 97.227855 67.372154) + (xy 97.337116 67.452792) (xy 97.337117 67.452792) (xy 97.337118 67.452793) (xy 97.465301 67.497646) + (xy 97.495725 67.500499) (xy 97.495727 67.5005) (xy 97.495734 67.5005) (xy 98.304273 67.5005) (xy 98.304273 67.500499) + (xy 98.334699 67.497646) (xy 98.462882 67.452793) (xy 98.57215 67.37215) (xy 98.652793 67.262882) + (xy 98.697646 67.134699) (xy 98.700499 67.104273) (xy 98.7005 67.104273) (xy 98.7005 67.0245) (xy 98.719407 66.966309) + (xy 98.768907 66.930345) (xy 98.7995 66.9255) (xy 101.217851 66.9255) (xy 101.217853 66.9255) (xy 101.300639 66.903318) + (xy 101.300641 66.903316) (xy 101.300643 66.903316) (xy 101.374857 66.860468) (xy 101.374857 66.860467) + (xy 101.374862 66.860465) (xy 101.447841 66.787486) (xy 103.275001 66.787486) (xy 103.285492 66.890187) + (xy 103.285495 66.890199) (xy 103.340643 67.056624) (xy 103.43268 67.20584) (xy 103.556659 67.329819) + (xy 103.705875 67.421856) (xy 103.872306 67.477006) (xy 103.975013 67.487499) (xy 104.249998 67.487499) + (xy 104.25 67.487498) (xy 104.75 67.487498) (xy 104.750001 67.487499) (xy 105.024986 67.487499) + (xy 105.127687 67.477007) (xy 105.127699 67.477004) (xy 105.294124 67.421856) (xy 105.44334 67.329819) + (xy 105.567319 67.20584) (xy 105.659356 67.056624) (xy 105.714506 66.890193) (xy 105.725 66.787487) + (xy 105.725 66.650001) (xy 105.724999 66.65) (xy 104.750001 66.65) (xy 104.75 66.650001) (xy 104.75 67.487498) + (xy 104.25 67.487498) (xy 104.25 66.650001) (xy 104.249999 66.65) (xy 103.275002 66.65) (xy 103.275001 66.650001) + (xy 103.275001 66.787486) (xy 101.447841 66.787486) (xy 101.610465 66.624862) (xy 101.653317 66.550639) + (xy 101.653318 66.550638) (xy 101.6755 66.467853) (xy 101.6755 66.149999) (xy 103.275 66.149999) + (xy 103.275001 66.15) (xy 104.249999 66.15) (xy 104.25 66.149999) (xy 104.75 66.149999) (xy 104.750001 66.15) + (xy 105.724998 66.15) (xy 105.724999 66.149999) (xy 105.724999 66.012513) (xy 105.714507 65.909812) + (xy 105.714504 65.9098) (xy 105.659356 65.743375) (xy 105.567319 65.594159) (xy 105.44334 65.47018) + (xy 105.294124 65.378143) (xy 105.127693 65.322993) (xy 105.024987 65.3125) (xy 104.750001 65.3125) + (xy 104.75 65.312501) (xy 104.75 66.149999) (xy 104.25 66.149999) (xy 104.25 65.312501) (xy 104.249999 65.3125) + (xy 103.975013 65.3125) (xy 103.872312 65.322992) (xy 103.8723 65.322995) (xy 103.705875 65.378143) + (xy 103.556659 65.47018) (xy 103.43268 65.594159) (xy 103.340643 65.743375) (xy 103.285493 65.909806) + (xy 103.275 66.012512) (xy 103.275 66.149999) (xy 101.6755 66.149999) (xy 101.6755 64.716774) (xy 103.5745 64.716774) + (xy 103.577353 64.747194) (xy 103.577355 64.747203) (xy 103.622207 64.875383) (xy 103.702845 64.984644) + (xy 103.702847 64.984646) (xy 103.70285 64.98465) (xy 103.702853 64.984652) (xy 103.702855 64.984654) + (xy 103.812116 65.065292) (xy 103.812117 65.065292) (xy 103.812118 65.065293) (xy 103.940301 65.110146) + (xy 103.970725 65.112999) (xy 103.970727 65.113) (xy 103.970734 65.113) (xy 105.029273 65.113) (xy 105.029273 65.112999) + (xy 105.059699 65.110146) (xy 105.187882 65.065293) (xy 105.29715 64.98465) (xy 105.377793 64.875382) + (xy 105.422646 64.747199) (xy 105.425499 64.716773) (xy 105.4255 64.716773) (xy 105.4255 63.933227) + (xy 105.425499 63.933225) (xy 105.422646 63.902805) (xy 105.422646 63.902801) (xy 105.377793 63.774618) + (xy 105.320622 63.697154) (xy 105.297154 63.665355) (xy 105.297152 63.665353) (xy 105.29715 63.66535) + (xy 105.297146 63.665347) (xy 105.297144 63.665345) (xy 105.187883 63.584707) (xy 105.059703 63.539855) + (xy 105.059694 63.539853) (xy 105.029274 63.537) (xy 105.029266 63.537) (xy 104.937 63.537) (xy 104.878809 63.518093) + (xy 104.842845 63.468593) (xy 104.838 63.438) (xy 104.838 62.962) (xy 104.856907 62.903809) (xy 104.906407 62.867845) + (xy 104.937 62.863) (xy 105.004273 62.863) (xy 105.004273 62.862999) (xy 105.034699 62.860146) (xy 105.162882 62.815293) + (xy 105.27215 62.73465) (xy 105.352793 62.625382) (xy 105.397646 62.497199) (xy 105.397646 62.497189) + (xy 105.398931 62.491315) (xy 105.400956 62.491757) (xy 105.421636 62.44387) (xy 105.474277 62.412684) + (xy 105.535195 62.418395) (xy 105.54546 62.423554) (xy 105.547155 62.424533) (xy 105.547159 62.424536) + (xy 105.547162 62.424537) (xy 105.547167 62.42454) (xy 105.693233 62.485042) (xy 105.693238 62.485044) + (xy 105.810809 62.500522) (xy 105.849999 62.505682) (xy 105.85 62.505682) (xy 105.850001 62.505682) + (xy 105.881352 62.501554) (xy 106.006762 62.485044) (xy 106.152841 62.424536) (xy 106.278282 62.328282) + (xy 106.374536 62.202841) (xy 106.435044 62.056762) (xy 106.455682 61.9) (xy 106.435044 61.743238) + (xy 106.387427 61.62828) (xy 106.374537 61.597161) (xy 106.374537 61.59716) (xy 106.278286 61.471723) + (xy 106.278285 61.471722) (xy 106.278282 61.471718) (xy 106.278277 61.471714) (xy 106.278276 61.471713) + (xy 106.152838 61.375462) (xy 106.006766 61.314957) (xy 106.006758 61.314955) (xy 105.850001 61.294318) + (xy 105.849999 61.294318) (xy 105.693241 61.314955) (xy 105.693233 61.314957) (xy 105.547161 61.375462) + (xy 105.523384 61.393707) (xy 105.465708 61.41413) (xy 105.407043 61.396752) (xy 105.369796 61.34821) + (xy 105.352793 61.299618) (xy 105.352791 61.299616) (xy 105.352791 61.299614) (xy 105.272154 61.190355) + (xy 105.272152 61.190353) (xy 105.27215 61.19035) (xy 105.272146 61.190347) (xy 105.272144 61.190345) + (xy 105.162883 61.109707) (xy 105.034703 61.064855) (xy 105.034694 61.064853) (xy 105.004274 61.062) + (xy 105.004266 61.062) (xy 104.195734 61.062) (xy 104.195725 61.062) (xy 104.165305 61.064853) (xy 104.165296 61.064855) + (xy 104.037116 61.109707) (xy 103.927855 61.190345) (xy 103.927845 61.190355) (xy 103.847207 61.299616) + (xy 103.802355 61.427796) (xy 103.802353 61.427805) (xy 103.7995 61.458225) (xy 103.7995 62.466774) + (xy 103.802353 62.497194) (xy 103.802355 62.497203) (xy 103.847207 62.625383) (xy 103.927845 62.734644) + (xy 103.927847 62.734646) (xy 103.92785 62.73465) (xy 103.927853 62.734652) (xy 103.927855 62.734654) + (xy 104.037114 62.815291) (xy 104.037116 62.815291) (xy 104.037118 62.815293) (xy 104.1207 62.844539) + (xy 104.169378 62.881602) (xy 104.187 62.937982) (xy 104.187 63.438) (xy 104.168093 63.496191) (xy 104.118593 63.532155) + (xy 104.088 63.537) (xy 103.970725 63.537) (xy 103.940305 63.539853) (xy 103.940296 63.539855) (xy 103.812116 63.584707) + (xy 103.702855 63.665345) (xy 103.702845 63.665355) (xy 103.622207 63.774616) (xy 103.577355 63.902796) + (xy 103.577353 63.902805) (xy 103.5745 63.933225) (xy 103.5745 64.716774) (xy 101.6755 64.716774) + (xy 101.6755 62.693585) (xy 101.694407 62.635394) (xy 101.743907 62.59943) (xy 101.805093 62.59943) + (xy 101.854155 62.634797) (xy 101.927845 62.734644) (xy 101.927847 62.734646) (xy 101.92785 62.73465) + (xy 101.927853 62.734652) (xy 101.927855 62.734654) (xy 102.037116 62.815292) (xy 102.037117 62.815292) + (xy 102.037118 62.815293) (xy 102.165301 62.860146) (xy 102.195725 62.862999) (xy 102.195727 62.863) + (xy 102.195734 62.863) (xy 103.004273 62.863) (xy 103.004273 62.862999) (xy 103.034699 62.860146) + (xy 103.162882 62.815293) (xy 103.27215 62.73465) (xy 103.352793 62.625382) (xy 103.397646 62.497199) + (xy 103.400499 62.466773) (xy 103.4005 62.466773) (xy 103.4005 61.458227) (xy 103.400499 61.458225) + (xy 103.398591 61.437882) (xy 103.397646 61.427801) (xy 103.352793 61.299618) (xy 103.35279 61.299614) + (xy 103.272154 61.190355) (xy 103.272152 61.190353) (xy 103.27215 61.19035) (xy 103.272146 61.190347) + (xy 103.272144 61.190345) (xy 103.162883 61.109707) (xy 103.034703 61.064855) (xy 103.034694 61.064853) + (xy 103.004274 61.062) (xy 103.004266 61.062) (xy 102.195734 61.062) (xy 102.195725 61.062) (xy 102.165305 61.064853) + (xy 102.165296 61.064855) (xy 102.037116 61.109707) (xy 101.927855 61.190345) (xy 101.927845 61.190355) + (xy 101.847207 61.299616) (xy 101.802355 61.427796) (xy 101.802353 61.427805) (xy 101.7995 61.458225) + (xy 101.7995 61.5755) (xy 101.780593 61.633691) (xy 101.731093 61.669655) (xy 101.7005 61.6745) + (xy 101.448932 61.6745) (xy 101.448916 61.674499) (xy 101.442853 61.674499) (xy 101.357147 61.674499) + (xy 101.351084 61.674499) (xy 101.351068 61.6745) (xy 100.578106 61.6745) (xy 100.519915 61.655593) + (xy 100.483951 61.606093) (xy 100.483951 61.544907) (xy 100.484131 61.54436) (xy 100.514506 61.452693) + (xy 100.525 61.349987) (xy 100.525 61.212501) (xy 100.524999 61.2125) (xy 99.149 61.2125) (xy 99.090809 61.193593) + (xy 99.054845 61.144093) (xy 99.05 61.1135) (xy 99.05 60.712499) (xy 99.55 60.712499) (xy 99.550001 60.7125) + (xy 100.524998 60.7125) (xy 100.524999 60.712499) (xy 100.524999 60.575013) (xy 100.514507 60.472312) + (xy 100.514504 60.4723) (xy 100.459356 60.305875) (xy 100.367319 60.156659) (xy 100.24334 60.03268) + (xy 100.094124 59.940643) (xy 99.927693 59.885493) (xy 99.824987 59.875) (xy 99.550001 59.875) (xy 99.55 59.875001) + (xy 99.55 60.712499) (xy 99.05 60.712499) (xy 99.05 59.875001) (xy 99.049999 59.875) (xy 98.775013 59.875) + (xy 98.672312 59.885492) (xy 98.6723 59.885495) (xy 98.505875 59.940643) (xy 98.356659 60.03268) + (xy 98.23268 60.156659) (xy 98.140643 60.305875) (xy 98.085493 60.472306) (xy 98.075 60.575012) + (xy 98.075 60.825665) (xy 98.056093 60.883856) (xy 98.006593 60.91982) (xy 97.945407 60.91982) (xy 97.905996 60.895669) + (xy 97.704495 60.694168) (xy 97.676718 60.639651) (xy 97.675499 60.624164) (xy 97.675499 59.948056) + (xy 97.675498 59.948051) (xy 97.66522 59.877491) (xy 97.665219 59.877489) (xy 97.665218 59.877485) + (xy 97.612014 59.768656) (xy 97.612012 59.768654) (xy 97.612012 59.768653) (xy 97.526347 59.682988) + (xy 97.417509 59.62978) (xy 97.346949 59.6195) (xy 97.346946 59.6195) (xy 96.973041 59.6195) (xy 96.91485 59.600593) + (xy 96.891759 59.575461) (xy 96.891534 59.575638) (xy 96.889284 59.572767) (xy 96.888318 59.571715) + (xy 96.887841 59.570926) (xy 96.774073 59.457158) (xy 96.636397 59.373929) (xy 96.63639 59.373926) + (xy 96.482802 59.326067) (xy 96.482793 59.326065) (xy 96.45 59.323084) (xy 95.95 59.323084) (xy 95.917206 59.326065) + (xy 95.917197 59.326067) (xy 95.763609 59.373926) (xy 95.763602 59.373929) (xy 95.625926 59.457158) + (xy 95.512156 59.570928) (xy 95.511675 59.571725) (xy 95.511231 59.572108) (xy 95.508466 59.575638) + (xy 95.507774 59.575096) (xy 95.465386 59.611738) (xy 95.426958 59.6195) (xy 95.053056 59.6195) + (xy 95.053048 59.619501) (xy 94.982495 59.629778) (xy 94.982485 59.629781) (xy 94.873656 59.682985) + (xy 94.787987 59.768654) (xy 94.75929 59.827355) (xy 94.73478 59.877491) (xy 94.724501 59.948048) + (xy 94.7245 59.948054) (xy 94.7245 60.363) (xy 94.705593 60.421191) (xy 94.656093 60.457155) (xy 94.6255 60.462) + (xy 92.77427 60.462) (xy 92.716079 60.443093) (xy 92.680115 60.393593) (xy 92.680115 60.332407) + (xy 92.694615 60.304212) (xy 92.752792 60.225383) (xy 92.752791 60.225383) (xy 92.752793 60.225382) + (xy 92.797646 60.097199) (xy 92.800499 60.066773) (xy 92.8005 60.066773) (xy 92.8005 59.258227) + (xy 92.800499 59.258225) (xy 92.797646 59.227805) (xy 92.797646 59.227801) (xy 92.752793 59.099618) + (xy 92.67215 58.99035) (xy 92.672146 58.990347) (xy 92.672144 58.990345) (xy 92.562883 58.909707) + (xy 92.434703 58.864855) (xy 92.434694 58.864853) (xy 92.404274 58.862) (xy 92.404266 58.862) (xy 91.395734 58.862) + (xy 91.395725 58.862) (xy 91.365305 58.864853) (xy 91.365296 58.864855) (xy 91.237116 58.909707) + (xy 91.127855 58.990345) (xy 91.127845 58.990355) (xy 91.047207 59.099616) (xy 91.002355 59.227796) + (xy 91.002353 59.227805) (xy 90.9995 59.258225) (xy 90.9995 60.066774) (xy 91.002353 60.097194) + (xy 91.002355 60.097203) (xy 91.047207 60.225383) (xy 91.105385 60.304212) (xy 91.124727 60.36226) + (xy 91.106255 60.42059) (xy 91.057026 60.456923) (xy 91.02573 60.462) (xy 90.5745 60.462) (xy 90.516309 60.443093) + (xy 90.480345 60.393593) (xy 90.4755 60.363) (xy 90.4755 60.220727) (xy 90.475499 60.220725) (xy 90.472646 60.190305) + (xy 90.472646 60.190301) (xy 90.427793 60.062118) (xy 90.34715 59.95285) (xy 90.347146 59.952847) + (xy 90.347144 59.952845) (xy 90.237883 59.872207) (xy 90.109703 59.827355) (xy 90.109694 59.827353) + (xy 90.079274 59.8245) (xy 90.079266 59.8245) (xy 89.295734 59.8245) (xy 89.295725 59.8245) (xy 89.265305 59.827353) + (xy 89.265296 59.827355) (xy 89.137116 59.872207) (xy 89.027855 59.952845) (xy 89.027845 59.952855) + (xy 88.947207 60.062116) (xy 88.902355 60.190296) (xy 88.902353 60.190305) (xy 88.8995 60.220725) + (xy 88.8995 61.279274) (xy 88.400499 61.279274) (xy 88.400499 61.279273) (xy 88.4005 61.279273) + (xy 88.4005 60.911689) (xy 88.403873 60.886066) (xy 88.420057 60.825665) (xy 88.4255 60.805353) + (xy 88.4255 60.719647) (xy 88.403872 60.63893) (xy 88.4005 60.613313) (xy 88.4005 60.220727) (xy 88.400499 60.220725) + (xy 88.397646 60.190305) (xy 88.397646 60.190301) (xy 88.352793 60.062118) (xy 88.27215 59.95285) + (xy 88.272146 59.952847) (xy 88.272144 59.952845) (xy 88.162883 59.872207) (xy 88.034703 59.827355) + (xy 88.034694 59.827353) (xy 88.004274 59.8245) (xy 88.004266 59.8245) (xy 87.220734 59.8245) (xy 87.220725 59.8245) + (xy 87.190305 59.827353) (xy 87.190296 59.827355) (xy 87.062116 59.872207) (xy 86.952855 59.952845) + (xy 86.952845 59.952855) (xy 86.872207 60.062116) (xy 86.827355 60.190296) (xy 86.827353 60.190305) + (xy 86.824283 60.22304) (xy 86.823035 60.222922) (xy 86.802952 60.276046) (xy 86.751806 60.309629) + (xy 86.690689 60.306736) (xy 86.665433 60.292675) (xy 86.577838 60.225462) (xy 86.431766 60.164957) + (xy 86.431758 60.164955) (xy 86.275001 60.144318) (xy 86.274999 60.144318) (xy 86.118241 60.164955) + (xy 86.118233 60.164957) (xy 85.972161 60.225462) (xy 85.97216 60.225462) (xy 85.846723 60.321713) + (xy 85.846713 60.321723) (xy 85.750462 60.44716) (xy 85.750462 60.447161) (xy 85.689957 60.593233) + (xy 85.689955 60.593241) (xy 85.669318 60.749999) (xy 85.669318 60.75) (xy 84 60.75) (xy 84 58.066774) + (xy 90.9995 58.066774) (xy 91.002353 58.097194) (xy 91.002355 58.097203) (xy 91.047207 58.225383) + (xy 91.127845 58.334644) (xy 91.127847 58.334646) (xy 91.12785 58.33465) (xy 91.127853 58.334652) + (xy 91.127855 58.334654) (xy 91.237116 58.415292) (xy 91.237117 58.415292) (xy 91.237118 58.415293) + (xy 91.365301 58.460146) (xy 91.395725 58.462999) (xy 91.395727 58.463) (xy 91.395734 58.463) (xy 92.404273 58.463) + (xy 92.404273 58.462999) (xy 92.434699 58.460146) (xy 92.562882 58.415293) (xy 92.67215 58.33465) + (xy 92.752793 58.225382) (xy 92.759569 58.206016) (xy 92.796633 58.157337) (xy 92.855234 58.13974) + (xy 92.912986 58.159948) (xy 92.997159 58.224536) (xy 92.99716 58.224536) (xy 92.997161 58.224537) + (xy 93.143233 58.285042) (xy 93.143238 58.285044) (xy 93.260809 58.300522) (xy 93.299999 58.305682) + (xy 93.3 58.305682) (xy 93.300001 58.305682) (xy 93.331352 58.301554) (xy 93.456762 58.285044) (xy 93.602841 58.224536) + (xy 93.728282 58.128282) (xy 93.824536 58.002841) (xy 93.885044 57.856762) (xy 93.905682 57.7) (xy 93.885044 57.543238) + (xy 93.824537 57.397161) (xy 93.824537 57.39716) (xy 93.728286 57.271723) (xy 93.728285 57.271722) + (xy 93.728282 57.271718) (xy 93.728277 57.271714) (xy 93.728276 57.271713) (xy 93.602838 57.175462) + (xy 93.456766 57.114957) (xy 93.456758 57.114955) (xy 93.300001 57.094318) (xy 93.299999 57.094318) + (xy 93.143241 57.114955) (xy 93.143233 57.114957) (xy 92.997161 57.175462) (xy 92.933967 57.223952) + (xy 92.876291 57.244375) (xy 92.817626 57.226997) (xy 92.780379 57.178455) (xy 92.752793 57.099618) + (xy 92.752791 57.099616) (xy 92.752791 57.099614) (xy 92.672154 56.990355) (xy 92.672152 56.990353) + (xy 92.67215 56.99035) (xy 92.672146 56.990347) (xy 92.672144 56.990345) (xy 92.562883 56.909707) + (xy 92.434703 56.864855) (xy 92.434694 56.864853) (xy 92.404274 56.862) (xy 92.404266 56.862) (xy 91.395734 56.862) + (xy 91.395725 56.862) (xy 91.365305 56.864853) (xy 91.365296 56.864855) (xy 91.237116 56.909707) + (xy 91.127855 56.990345) (xy 91.127845 56.990355) (xy 91.047207 57.099616) (xy 91.002355 57.227796) + (xy 91.002353 57.227805) (xy 90.9995 57.258225) (xy 90.9995 58.066774) (xy 84 58.066774) (xy 84 55.099) + (xy 84.018907 55.040809) (xy 84.068407 55.004845) (xy 84.099 55) (xy 108.901 55) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 108.959191 55.018907) (xy 108.995155 55.068407) (xy 109 55.099) (xy 109 74.901) (xy 108.981093 74.959191) + (xy 108.931593 74.995155) (xy 108.901 75) (xy 100.674002 75) (xy 100.615811 74.981093) (xy 100.579847 74.931593) + (xy 100.579847 74.870407) (xy 100.595457 74.840737) (xy 100.624536 74.802841) (xy 100.685044 74.656762) + (xy 100.704175 74.51144) (xy 100.730516 74.456217) (xy 100.784286 74.427022) (xy 100.844948 74.435008) + (xy 100.872332 74.45436) (xy 100.892834 74.474862) (xy 100.892833 74.474862) (xy 100.929414 74.511442) + (xy 100.953437 74.535465) (xy 101.027661 74.578318) (xy 101.110446 74.6005) (xy 101.110448 74.6005) + (xy 105.587851 74.6005) (xy 105.587853 74.6005) (xy 105.670639 74.578318) (xy 105.670641 74.578316) + (xy 105.670643 74.578316) (xy 105.744857 74.535468) (xy 105.744857 74.535467) (xy 105.744862 74.535465) + (xy 106.011291 74.269036) (xy 106.100832 74.179496) (xy 106.155348 74.151719) (xy 106.170835 74.1505) + (xy 107.589747 74.1505) (xy 107.589748 74.1505) (xy 107.648231 74.138867) (xy 107.714552 74.094552) + (xy 107.758867 74.028231) (xy 107.7705 73.969748) (xy 107.7705 72.230252) (xy 107.768921 72.222316) + (xy 107.767711 72.216231) (xy 107.758867 72.171769) (xy 107.714552 72.105448) (xy 107.696499 72.093385) + (xy 107.648233 72.061134) (xy 107.648231 72.061133) (xy 107.648228 72.061132) (xy 107.648227 72.061132) + (xy 107.589758 72.049501) (xy 107.589748 72.0495) (xy 105.850252 72.0495) (xy 105.850251 72.0495) + (xy 105.850241 72.049501) (xy 105.791772 72.061132) (xy 105.791766 72.061134) (xy 105.725451 72.105445) + (xy 105.725445 72.105451) (xy 105.681134 72.171766) (xy 105.681132 72.171772) (xy 105.669501 72.230241) + (xy 105.6695 72.230253) (xy 105.6695 72.69091) (xy 105.650593 72.749101) (xy 105.601093 72.785065) + (xy 105.539907 72.785065) (xy 105.490407 72.749101) (xy 105.474873 72.716533) (xy 105.453429 72.636505) + (xy 105.353605 72.422432) (xy 105.353601 72.422424) (xy 105.218113 72.228926) (xy 105.051073 72.061886) + (xy 104.857577 71.926399) (xy 104.643489 71.826569) (xy 104.43 71.769364) (xy 104.43 72.666988) + (xy 104.372993 72.634075) (xy 104.245826 72.6) (xy 104.114174 72.6) (xy 103.987007 72.634075) (xy 103.93 72.666988) + (xy 103.93 71.769364) (xy 103.716505 71.82657) (xy 103.502432 71.926394) (xy 103.502424 71.926398) + (xy 103.308926 72.061886) (xy 103.141886 72.228926) (xy 103.006398 72.422424) (xy 103.006394 72.422432) + (xy 102.90657 72.636505) (xy 102.851183 72.843213) (xy 102.817859 72.894527) (xy 102.760737 72.916454) + (xy 102.701637 72.900618) (xy 102.663132 72.853068) (xy 102.660819 72.846328) (xy 102.642235 72.785065) + (xy 102.615232 72.696046) (xy 102.517685 72.51355) (xy 102.456043 72.438439) (xy 102.386414 72.353595) + (xy 102.38641 72.35359) (xy 102.373076 72.342647) (xy 102.226452 72.222316) (xy 102.043958 72.12477) + (xy 102.043956 72.124769) (xy 102.043954 72.124768) (xy 102.043949 72.124766) (xy 102.043943 72.124764) + (xy 102.035756 72.12228) (xy 101.985561 72.087292) (xy 101.965519 72.029482) (xy 101.9655 72.027545) + (xy 101.9655 66.285834) (xy 101.984407 66.227643) (xy 101.99449 66.215836) (xy 105.687035 62.52329) + (xy 105.74155 62.495515) (xy 105.769953 62.495143) (xy 105.85 62.505682) (xy 106.006762 62.485044) + (xy 106.152841 62.424536) (xy 106.278282 62.328282) (xy 106.374536 62.202841) (xy 106.435044 62.056762) + (xy 106.455682 61.9) (xy 106.435044 61.743238) (xy 106.374537 61.597161) (xy 106.374537 61.59716) + (xy 106.278286 61.471723) (xy 106.278285 61.471722) (xy 106.278282 61.471718) (xy 106.278277 61.471714) + (xy 106.278276 61.471713) (xy 106.152838 61.375462) (xy 106.006766 61.314957) (xy 106.006758 61.314955) + (xy 105.850001 61.294318) (xy 105.849999 61.294318) (xy 105.693241 61.314955) (xy 105.693233 61.314957) + (xy 105.547161 61.375462) (xy 105.54716 61.375462) (xy 105.421723 61.471713) (xy 105.421713 61.471723) + (xy 105.325462 61.59716) (xy 105.325462 61.597161) (xy 105.264957 61.743233) (xy 105.264955 61.743241) + (xy 105.244318 61.899999) (xy 105.244318 61.9) (xy 105.254855 61.980039) (xy 105.243705 62.0402) + (xy 105.226706 62.062965) (xy 101.379532 65.910141) (xy 101.379531 65.910142) (xy 101.336682 65.98436) + (xy 101.336681 65.98436) (xy 101.336682 65.984361) (xy 101.3145 66.067147) (xy 101.3145 72.027545) + (xy 101.295593 72.085736) (xy 101.246093 72.1217) (xy 101.244244 72.12228) (xy 101.236056 72.124764) + (xy 101.236041 72.12477) (xy 101.053547 72.222316) (xy 100.893595 72.353585) (xy 100.893585 72.353595) + (xy 100.851028 72.405452) (xy 100.799497 72.438439) (xy 100.738417 72.434837) (xy 100.69112 72.396022) + (xy 100.6755 72.342647) (xy 100.6755 65.407148) (xy 100.6755 65.407147) (xy 100.653318 65.324362) + (xy 100.653318 65.324361) (xy 100.653318 65.32436) (xy 100.610468 65.250142) (xy 100.610466 65.25014) + (xy 100.610465 65.250138) (xy 99.87329 64.512963) (xy 99.845515 64.458449) (xy 99.845143 64.430045) + (xy 99.855682 64.35) (xy 99.835044 64.193238) (xy 99.774537 64.047161) (xy 99.774537 64.04716) (xy 99.678286 63.921723) + (xy 99.678285 63.921722) (xy 99.678282 63.921718) (xy 99.678277 63.921714) (xy 99.678276 63.921713) + (xy 99.552838 63.825462) (xy 99.406762 63.764956) (xy 99.406763 63.764956) (xy 99.346245 63.756988) + (xy 99.291021 63.730646) (xy 99.289165 63.728839) (xy 93.772448 58.212121) (xy 93.744671 58.157604) + (xy 93.754242 58.097172) (xy 93.76391 58.08185) (xy 93.824536 58.002841) (xy 93.885044 57.856762) + (xy 93.905682 57.7) (xy 93.885044 57.543238) (xy 93.824537 57.397161) (xy 93.824537 57.39716) (xy 93.728286 57.271723) + (xy 93.728285 57.271722) (xy 93.728282 57.271718) (xy 93.728277 57.271714) (xy 93.728276 57.271713) + (xy 93.602838 57.175462) (xy 93.456766 57.114957) (xy 93.456758 57.114955) (xy 93.300001 57.094318) + (xy 93.299999 57.094318) (xy 93.143241 57.114955) (xy 93.143233 57.114957) (xy 92.997161 57.175462) + (xy 92.99716 57.175462) (xy 92.871723 57.271713) (xy 92.871713 57.271723) (xy 92.775462 57.39716) + (xy 92.775462 57.397161) (xy 92.714957 57.543233) (xy 92.714955 57.543241) (xy 92.694318 57.699999) + (xy 92.694318 57.7) (xy 92.714955 57.856758) (xy 92.714957 57.856766) (xy 92.775462 58.002838) (xy 92.775462 58.002839) + (xy 92.871713 58.128276) (xy 92.871718 58.128282) (xy 92.871722 58.128285) (xy 92.871723 58.128286) + (xy 92.936737 58.178173) (xy 92.971393 58.228597) (xy 92.974131 58.241475) (xy 92.996683 58.325643) + (xy 93.039531 58.399857) (xy 93.039533 58.399859) (xy 93.039535 58.399862) (xy 95.91421 61.274536) + (xy 98.667374 64.0277) (xy 98.695151 64.082217) (xy 98.688834 64.135589) (xy 98.664957 64.193232) + (xy 98.664955 64.193241) (xy 98.644318 64.349999) (xy 98.644318 64.35) (xy 98.664955 64.506758) + (xy 98.664957 64.506766) (xy 98.725462 64.652838) (xy 98.725462 64.652839) (xy 98.725464 64.652841) + (xy 98.821718 64.778282) (xy 98.947159 64.874536) (xy 99.093238 64.935044) (xy 99.25 64.955682) + (xy 99.330041 64.945143) (xy 99.390198 64.956292) (xy 99.412965 64.973292) (xy 99.995504 65.555831) + (xy 100.023281 65.610348) (xy 100.0245 65.625835) (xy 100.0245 72.293906) (xy 100.005593 72.352097) + (xy 99.956093 72.388061) (xy 99.894907 72.388061) (xy 99.848976 72.356716) (xy 99.846415 72.353596) + (xy 99.846414 72.353595) (xy 99.84641 72.35359) (xy 99.833076 72.342647) (xy 99.686452 72.222316) + (xy 99.503958 72.12477) (xy 99.503956 72.124769) (xy 99.503954 72.124768) (xy 99.503949 72.124766) + (xy 99.503943 72.124764) (xy 99.495756 72.12228) (xy 99.445561 72.087292) (xy 99.425519 72.029482) + (xy 99.4255 72.027545) (xy 99.4255 69.707148) (xy 99.4255 69.707147) (xy 99.403318 69.624362) (xy 99.403318 69.624361) + (xy 99.403318 69.62436) (xy 99.360468 69.550142) (xy 99.360466 69.55014) (xy 99.360465 69.550138) + (xy 90.299862 60.489535) (xy 90.299859 60.489533) (xy 90.299857 60.489531) (xy 90.225642 60.446683) + (xy 90.225644 60.446683) (xy 90.193521 60.438076) (xy 90.142853 60.4245) (xy 90.142851 60.4245) + (xy 86.83097 60.4245) (xy 86.772779 60.405593) (xy 86.752428 60.385767) (xy 86.703285 60.321722) + (xy 86.703282 60.321718) (xy 86.703277 60.321714) (xy 86.703276 60.321713) (xy 86.577838 60.225462) + (xy 86.431766 60.164957) (xy 86.431758 60.164955) (xy 86.275001 60.144318) (xy 86.274999 60.144318) + (xy 86.118241 60.164955) (xy 86.118233 60.164957) (xy 85.972161 60.225462) (xy 85.97216 60.225462) + (xy 85.846723 60.321713) (xy 85.846713 60.321723) (xy 85.750462 60.44716) (xy 85.750462 60.447161) + (xy 85.689957 60.593233) (xy 85.689955 60.593241) (xy 85.669318 60.749999) (xy 85.669318 60.75) + (xy 85.689955 60.906758) (xy 85.689957 60.906766) (xy 85.750462 61.052838) (xy 85.750462 61.052839) + (xy 85.846713 61.178276) (xy 85.846718 61.178282) (xy 85.972159 61.274536) (xy 86.118238 61.335044) + (xy 86.235809 61.350522) (xy 86.274999 61.355682) (xy 86.275 61.355682) (xy 86.275001 61.355682) + (xy 86.306352 61.351554) (xy 86.431762 61.335044) (xy 86.577841 61.274536) (xy 86.703282 61.178282) + (xy 86.752428 61.114232) (xy 86.802852 61.079577) (xy 86.83097 61.0755) (xy 89.924165 61.0755) (xy 89.982356 61.094407) + (xy 89.994169 61.104496) (xy 98.745504 69.855831) (xy 98.773281 69.910348) (xy 98.7745 69.925835) + (xy 98.7745 72.027545) (xy 98.755593 72.085736) (xy 98.706093 72.1217) (xy 98.704244 72.12228) (xy 98.696056 72.124764) + (xy 98.696041 72.12477) (xy 98.513547 72.222316) (xy 98.353595 72.353585) (xy 98.353585 72.353595) + (xy 98.222316 72.513547) (xy 98.1355 72.675968) (xy 98.124768 72.696046) (xy 98.108674 72.749101) + (xy 98.07918 72.846329) (xy 98.044195 72.896525) (xy 97.986386 72.916571) (xy 97.927836 72.89881) + (xy 97.890907 72.850025) (xy 97.888816 72.843213) (xy 97.833429 72.636504) (xy 97.733605 72.422432) + (xy 97.733601 72.422424) (xy 97.598113 72.228926) (xy 97.431073 72.061886) (xy 97.237577 71.926399) + (xy 97.023489 71.826569) (xy 96.81 71.769364) (xy 96.81 72.666988) (xy 96.752993 72.634075) (xy 96.625826 72.6) + (xy 96.494174 72.6) (xy 96.367007 72.634075) (xy 96.31 72.666988) (xy 96.31 71.769364) (xy 96.096505 71.82657) + (xy 95.882432 71.926394) (xy 95.882424 71.926398) (xy 95.688926 72.061886) (xy 95.521886 72.228926) + (xy 95.386398 72.422424) (xy 95.386394 72.422432) (xy 95.28657 72.636505) (xy 95.229364 72.85) (xy 96.126988 72.85) + (xy 96.094075 72.907007) (xy 96.06 73.034174) (xy 96.06 73.165826) (xy 96.094075 73.292993) (xy 96.126988 73.35) + (xy 95.229364 73.35) (xy 95.286569 73.563489) (xy 95.386399 73.777577) (xy 95.521886 73.971073) + (xy 95.656309 74.105496) (xy 95.684086 74.160013) (xy 95.674515 74.220445) (xy 95.63125 74.26371) + (xy 95.586305 74.2745) (xy 93.115834 74.2745) (xy 93.057643 74.255593) (xy 93.04583 74.245503) (xy 92.559496 73.759168) + (xy 92.531719 73.704652) (xy 92.5305 73.689165) (xy 92.5305 72.230253) (xy 92.530498 72.230241) + (xy 92.527711 72.216231) (xy 92.518867 72.171769) (xy 92.474552 72.105448) (xy 92.456499 72.093385) + (xy 92.408233 72.061134) (xy 92.408231 72.061133) (xy 92.408228 72.061132) (xy 92.408227 72.061132) + (xy 92.349758 72.049501) (xy 92.349748 72.0495) (xy 90.610252 72.0495) (xy 90.610251 72.0495) (xy 90.610241 72.049501) + (xy 90.551772 72.061132) (xy 90.551766 72.061134) (xy 90.485451 72.105445) (xy 90.485445 72.105451) + (xy 90.441134 72.171766) (xy 90.441132 72.171772) (xy 90.429501 72.230241) (xy 90.4295 72.230253) + (xy 90.4295 73.969746) (xy 90.429501 73.969758) (xy 90.441132 74.028227) (xy 90.441134 74.028233) + (xy 90.476234 74.080763) (xy 90.485448 74.094552) (xy 90.551769 74.138867) (xy 90.596231 74.147711) + (xy 90.610241 74.150498) (xy 90.610246 74.150498) (xy 90.610252 74.1505) (xy 91.989166 74.1505) + (xy 92.047357 74.169407) (xy 92.05917 74.179496) (xy 92.679533 74.799859) (xy 92.679535 74.799862) + (xy 92.710671 74.830998) (xy 92.738447 74.885513) (xy 92.728876 74.945945) (xy 92.685611 74.98921) + (xy 92.640666 75) (xy 84.099 75) (xy 84.040809 74.981093) (xy 84.004845 74.931593) (xy 84 74.901) + (xy 84 73.100003) (xy 85.344417 73.100003) (xy 85.364698 73.305929) (xy 85.364699 73.305934) (xy 85.424768 73.503954) + (xy 85.522316 73.686452) (xy 85.622646 73.808705) (xy 85.65359 73.84641) (xy 85.653595 73.846414) + (xy 85.813547 73.977683) (xy 85.813548 73.977683) (xy 85.81355 73.977685) (xy 85.996046 74.075232) + (xy 86.129611 74.115748) (xy 86.194065 74.1353) (xy 86.19407 74.135301) (xy 86.399997 74.155583) + (xy 86.4 74.155583) (xy 86.400003 74.155583) (xy 86.605929 74.135301) (xy 86.605934 74.1353) (xy 86.803954 74.075232) + (xy 86.98645 73.977685) (xy 87.14641 73.84641) (xy 87.277685 73.68645) (xy 87.375232 73.503954) + (xy 87.4353 73.305934) (xy 87.435301 73.305929) (xy 87.455583 73.100003) (xy 87.884417 73.100003) + (xy 87.904698 73.305929) (xy 87.904699 73.305934) (xy 87.964768 73.503954) (xy 88.062316 73.686452) + (xy 88.162646 73.808705) (xy 88.19359 73.84641) (xy 88.193595 73.846414) (xy 88.353547 73.977683) + (xy 88.353548 73.977683) (xy 88.35355 73.977685) (xy 88.536046 74.075232) (xy 88.669611 74.115748) + (xy 88.734065 74.1353) (xy 88.73407 74.135301) (xy 88.939997 74.155583) (xy 88.94 74.155583) (xy 88.940003 74.155583) + (xy 89.145929 74.135301) (xy 89.145934 74.1353) (xy 89.343954 74.075232) (xy 89.52645 73.977685) + (xy 89.68641 73.84641) (xy 89.817685 73.68645) (xy 89.915232 73.503954) (xy 89.9753 73.305934) (xy 89.975301 73.305929) + (xy 89.995583 73.100003) (xy 89.995583 73.099996) (xy 89.975301 72.89407) (xy 89.9753 72.894065) + (xy 89.942235 72.785065) (xy 89.915232 72.696046) (xy 89.817685 72.51355) (xy 89.756043 72.438439) + (xy 89.686414 72.353595) (xy 89.68641 72.35359) (xy 89.673076 72.342647) (xy 89.526452 72.222316) + (xy 89.343958 72.12477) (xy 89.343957 72.124769) (xy 89.343954 72.124768) (xy 89.343948 72.124766) + (xy 89.343945 72.124765) (xy 89.310759 72.114697) (xy 89.260563 72.079711) (xy 89.240519 72.021902) + (xy 89.2405 72.019961) (xy 89.2405 71.425478) (xy 89.259407 71.367287) (xy 89.26949 71.35548) (xy 93.415009 67.20996) + (xy 93.451366 67.188974) (xy 93.450767 67.187527) (xy 93.456761 67.185044) (xy 93.456762 67.185044) + (xy 93.602841 67.124536) (xy 93.728282 67.028282) (xy 93.824536 66.902841) (xy 93.885044 66.756762) + (xy 93.905682 66.6) (xy 93.885044 66.443238) (xy 93.824537 66.297161) (xy 93.824537 66.29716) (xy 93.728286 66.171723) + (xy 93.728285 66.171722) (xy 93.728282 66.171718) (xy 93.728277 66.171714) (xy 93.728276 66.171713) + (xy 93.602838 66.075462) (xy 93.456766 66.014957) (xy 93.456758 66.014955) (xy 93.300001 65.994318) + (xy 93.299999 65.994318) (xy 93.143241 66.014955) (xy 93.143233 66.014957) (xy 92.997161 66.075462) + (xy 92.99716 66.075462) (xy 92.871723 66.171713) (xy 92.871713 66.171723) (xy 92.775462 66.29716) + (xy 92.775462 66.297161) (xy 92.714957 66.443233) (xy 92.714955 66.443241) (xy 92.694318 66.599999) + (xy 92.694318 66.6) (xy 92.714956 66.756762) (xy 92.714958 66.756766) (xy 92.777947 66.908835) (xy 92.775343 66.909913) + (xy 92.785601 66.958254) (xy 92.760695 67.014141) (xy 92.757151 67.017876) (xy 88.755489 71.01954) + (xy 88.755488 71.019539) (xy 88.699539 71.075489) (xy 88.65998 71.144007) (xy 88.659978 71.144011) + (xy 88.6395 71.220435) (xy 88.6395 72.019961) (xy 88.620593 72.078152) (xy 88.571093 72.114116) + (xy 88.569241 72.114697) (xy 88.536054 72.124765) (xy 88.536041 72.12477) (xy 88.353547 72.222316) + (xy 88.193595 72.353585) (xy 88.193585 72.353595) (xy 88.062316 72.513547) (xy 87.964768 72.696045) + (xy 87.904699 72.894065) (xy 87.904698 72.89407) (xy 87.884417 73.099996) (xy 87.884417 73.100003) + (xy 87.455583 73.100003) (xy 87.455583 73.099996) (xy 87.435301 72.89407) (xy 87.4353 72.894065) + (xy 87.402235 72.785065) (xy 87.375232 72.696046) (xy 87.277685 72.51355) (xy 87.216043 72.438439) + (xy 87.146414 72.353595) (xy 87.14641 72.35359) (xy 87.133076 72.342647) (xy 86.986452 72.222316) + (xy 86.803954 72.124768) (xy 86.605934 72.064699) (xy 86.605929 72.064698) (xy 86.400003 72.044417) + (xy 86.399997 72.044417) (xy 86.19407 72.064698) (xy 86.194065 72.064699) (xy 85.996045 72.124768) + (xy 85.813547 72.222316) (xy 85.653595 72.353585) (xy 85.653585 72.353595) (xy 85.522316 72.513547) + (xy 85.424768 72.696045) (xy 85.364699 72.894065) (xy 85.364698 72.89407) (xy 85.344417 73.099996) + (xy 85.344417 73.100003) (xy 84 73.100003) (xy 84 55.099) (xy 84.018907 55.040809) (xy 84.068407 55.004845) + (xy 84.099 55) (xy 108.901 55) + ) + ) + ) + (embedded_fonts no) +) diff --git a/kicad/breakout-opamp-ac-2.kicad_prl b/kicad/breakout-opamp-ac-2.kicad_prl new file mode 100644 index 0000000..123ecb0 --- /dev/null +++ b/kicad/breakout-opamp-ac-2.kicad_prl @@ -0,0 +1,130 @@ +{ + "board": { + "active_layer": 0, + "active_layer_preset": "Front Layers", + "auto_track_width": true, + "hidden_netclasses": [], + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "images": 0.6, + "pads": 1.0, + "shapes": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": false, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + "vias", + "footprint_text", + "footprint_anchors", + "ratsnest", + "footprints_front", + "footprints_back", + "footprint_values", + "footprint_references", + "tracks", + "drc_errors", + "drawing_sheet", + "bitmaps", + "pads", + "zones", + "drc_warnings", + "drc_exclusions", + "locked_item_shadows", + "conflict_shadows", + "shapes" + ], + "visible_layers": "00000000_00000000_00000008_82002223", + "zone_display_mode": 0 + }, + "git": { + "repo_type": "", + "repo_username": "", + "ssh_key": "" + }, + "meta": { + "filename": "breakout-opamp-ac-2.kicad_prl", + "version": 5 + }, + "net_inspector_panel": { + "col_hidden": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "col_order": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "col_widths": [ + 156, + 141, + 103, + 71, + 103, + 103, + 103, + 74, + 103, + 103 + ], + "custom_group_rules": [], + "expanded_rows": [], + "filter_by_net_name": true, + "filter_by_netclass": true, + "filter_text": "", + "group_by_constraint": false, + "group_by_netclass": false, + "show_unconnected_nets": false, + "show_zero_pad_nets": false, + "sort_ascending": true, + "sorting_column": 0 + }, + "open_jobsets": [], + "project": { + "files": [] + }, + "schematic": { + "selection_filter": { + "graphics": true, + "images": true, + "labels": true, + "lockedItems": false, + "otherItems": true, + "pins": true, + "symbols": true, + "text": true, + "wires": true + } + } +} diff --git a/kicad/breakout-opamp-ac-2.kicad_pro b/kicad/breakout-opamp-ac-2.kicad_pro new file mode 100644 index 0000000..87ead3e --- /dev/null +++ b/kicad/breakout-opamp-ac-2.kicad_pro @@ -0,0 +1,611 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "apply_defaults_to_fp_fields": false, + "apply_defaults_to_fp_shapes": false, + "apply_defaults_to_fp_text": false, + "board_outline_line_width": 0.1, + "copper_line_width": 0.2, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.05, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.1, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.15, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.15, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.2 + } + }, + "diff_pair_dimensions": [], + "drc_exclusions": [], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "creepage": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_filters_mismatch": "ignore", + "footprint_symbol_mismatch": "warning", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_near_hole": "error", + "hole_to_hole": "error", + "holes_co_located": "warning", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "mirrored_text_on_front_layer": "warning", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "nonmirrored_text_on_back_layer": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_on_edge_cuts": "error", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_angle": "error", + "track_dangling": "warning", + "track_segment_length": "error", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "max_error": 0.005, + "min_clearance": 0.15, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.0, + "min_groove_width": 0.0, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.1, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.8, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.15, + "min_via_annular_width": 0.1, + "min_via_diameter": 0.5, + "solder_mask_clearance": 0.0, + "solder_mask_min_width": 0.0, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_onpthpad": true, + "td_onroundshapesonly": false, + "td_onsmdpad": true, + "td_ontrackend": false, + "td_onvia": true + } + ], + "teardrop_parameters": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [], + "tuning_pattern_settings": { + "diff_pair_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 1.0 + }, + "diff_pair_skew_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + }, + "single_track_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + } + }, + "via_dimensions": [], + "zones_allow_external_fillets": false + }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, + "layer_pairs": [], + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "conflicting_netclasses": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "footprint_filter": "ignore", + "footprint_link_issues": "warning", + "four_way_junction": "ignore", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "label_multiple_wires": "warning", + "lib_symbol_issues": "warning", + "lib_symbol_mismatch": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "same_local_global_label": "warning", + "similar_label_and_power": "warning", + "similar_labels": "warning", + "similar_power": "warning", + "simulation_model_issue": "ignore", + "single_global_label": "ignore", + "unannotated": "error", + "unconnected_wire_endpoint": "warning", + "undefined_netclass": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "breakout-opamp-ac-2.kicad_pro", + "version": 3 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "priority": 2147483647, + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.25, + "via_diameter": 0.8, + "via_drill": 0.4, + "wire_width": 6 + } + ], + "meta": { + "version": 4 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "plot": "", + "pos_files": "", + "specctra_dsn": "", + "step": "", + "svg": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "bom_export_filename": "", + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": false, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + } + ], + "filter_string": "", + "group_symbols": true, + "include_excluded_from_bom": false, + "name": "Grouped By Value", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "page_layout_descr_file": "", + "plot_directory": "", + "space_save_all_events": true, + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_dissipations": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "8feb529e-2e66-44c8-8b72-e60028d39ece", + "Root" + ] + ], + "text_variables": {} +} diff --git a/kicad/breakout-opamp-ac-2.kicad_sch b/kicad/breakout-opamp-ac-2.kicad_sch new file mode 100644 index 0000000..fe71746 --- /dev/null +++ b/kicad/breakout-opamp-ac-2.kicad_sch @@ -0,0 +1,3553 @@ +(kicad_sch + (version 20250114) + (generator "eeschema") + (generator_version "9.0") + (uuid "8feb529e-2e66-44c8-8b72-e60028d39ece") + (paper "A4") + (title_block + (title "AC amplifier with lowpass and highpass filter") + (date "2026-02-05") + (rev "1.1") + (company "For ELAB by Marek Baczynski") + ) + (lib_symbols + (symbol "Amplifier_Operational:MCP6001-OT" + (pin_names + (offset 0.127) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -1.27 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MCP6001-OT" + (at -1.27 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at -2.54 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21733j.pdf" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1MHz, Low-Power Op Amp, SOT-23-5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "single opamp" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?23*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MCP6001-OT_0_1" + (polyline + (pts + (xy -5.08 5.08) (xy 5.08 0) (xy -5.08 -5.08) (xy -5.08 5.08) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin power_in line + (at -2.54 7.62 270) + (length 3.81) + (name "V+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 -7.62 90) + (length 3.81) + (name "V-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "MCP6001-OT_1_1" + (pin input line + (at -7.62 2.54 0) + (length 2.54) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 -2.54 0) + (length 2.54) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 7.62 0 180) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Connector:Conn_01x03_Pin" + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x03_Pin" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x03_Pin_1_1" + (rectangle + (start 0.8636 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 1.27 2.54) (xy 0.8636 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 0) (xy 0.8636 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -2.54) (xy 0.8636 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at 5.08 2.54 180) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 0 180) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -2.54 180) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Connector:Conn_01x05_Pin" + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x05_Pin" + (at 0 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x05, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x05_Pin_1_1" + (rectangle + (start 0.8636 5.207) + (end 0 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 1.27 5.08) (xy 0.8636 5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 2.54) (xy 0.8636 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 0) (xy 0.8636 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -2.54) (xy 0.8636 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -5.08) (xy 0.8636 -5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at 5.08 5.08 180) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 2.54 180) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 0 180) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -2.54 180) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -5.08 180) + (length 3.81) + (name "Pin_5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Device:C" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Device:R" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "power:GND" + (power) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "power:VCC" + (power) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 0 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VCC\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "VCC_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "VCC_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (hide yes) + (name "VCC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + ) + (rectangle + (start 140.97 118.11) + (end 210.82 152.4) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + (uuid 1995b69a-7ce8-46e2-b465-4a0ecfb376ec) + ) + (rectangle + (start 72.39 118.11) + (end 138.43 152.4) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + (uuid 8acae706-e4d6-4db7-98b1-2ff649aff4ee) + ) + (rectangle + (start 72.39 44.45) + (end 210.82 115.57) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + (uuid e1f64c7d-64e8-465d-bdc3-9af07f0d1701) + ) + (text "J2 can be used with\nan external potentiometer\ninstead of R1 and R2\nfor easy gain control" + (exclude_from_sim no) + (at 109.982 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "10d4dd76-1e22-43b9-9428-6f79d06136af") + ) + (text "Bypass capacitors" + (exclude_from_sim no) + (at 174.752 121.158 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "4c3be854-0bd1-4a75-82c0-0331dfdff231") + ) + (text "AC amplifier with highpass and lowpass filter" + (exclude_from_sim no) + (at 142.748 48.768 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "5f570d2e-5f98-4111-98b4-6360281dd99a") + ) + (text "Amplification" + (exclude_from_sim no) + (at 139.446 102.362 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "604bcefe-cd24-47aa-8d4d-b608439fc09a") + ) + (text "Input highpass filter\nand bias combo" + (exclude_from_sim no) + (at 97.028 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "6d7991cf-5286-4544-86a1-071188d824fe") + ) + (text "Output filter\nConfigured as lowpass\nbut can be highpass\nif you swap the C and R" + (exclude_from_sim no) + (at 163.83 62.484 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "9d22a68a-2d30-4a1f-b96f-26ddd5ae99b2") + ) + (text "Connectors" + (exclude_from_sim no) + (at 104.394 120.904 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "a49806e1-cf98-4520-a474-3d33e19faaf9") + ) + (text "C4 (\"Cbypass\") MUST be \npopulated with 100nF to\nensure stable operation\n\nC5 can be used with 1-10uF\nif the output current is high\nor the supply wires are long" + (exclude_from_sim no) + (at 177.292 136.144 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "ef5ab3f1-eec2-4d57-a134-4541af6f26e2") + ) + (junction + (at 154.94 76.2) + (diameter 0) + (color 0 0 0 0) + (uuid "20430c1b-959d-4365-8d56-b7440c692732") + ) + (junction + (at 134.62 95.25) + (diameter 0) + (color 0 0 0 0) + (uuid "474e0efa-8b5f-41cf-9328-b6ec22352d0a") + ) + (junction + (at 171.45 76.2) + (diameter 0) + (color 0 0 0 0) + (uuid "743c5610-6869-4ea1-9cb7-b32647f341b0") + ) + (junction + (at 113.03 73.66) + (diameter 0) + (color 0 0 0 0) + (uuid "d00b106c-a90b-4c09-91e7-9af1886638d3") + ) + (wire + (pts + (xy 123.19 132.08) (xy 125.73 132.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0befa3ce-dfb2-4d4d-82bc-5d38122bc212") + ) + (wire + (pts + (xy 154.94 76.2) (xy 161.29 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "11814bc7-fe3a-432c-900f-169619398ba7") + ) + (wire + (pts + (xy 134.62 78.74) (xy 135.89 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "14c72a3a-56d5-482c-b0d3-d0525fdd6524") + ) + (wire + (pts + (xy 171.45 76.2) (xy 171.45 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1b1a0a13-ad20-48a0-8255-0f580531c36d") + ) + (wire + (pts + (xy 151.13 95.25) (xy 154.94 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1d0d115a-ae6e-4072-bbfa-329ad54b489e") + ) + (wire + (pts + (xy 113.03 62.23) (xy 113.03 63.5) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1d9b5461-da66-4552-aa50-cb2b5e52339f") + ) + (wire + (pts + (xy 165.1 140.97) (xy 165.1 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "233d8d80-1a4d-4015-881e-585452a76d9d") + ) + (wire + (pts + (xy 168.91 76.2) (xy 171.45 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "25950b89-79a2-455d-b450-024c13301cee") + ) + (wire + (pts + (xy 171.45 76.2) (xy 181.61 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "28f73e33-0946-4a14-b944-081adee2db8e") + ) + (wire + (pts + (xy 151.13 140.97) (xy 151.13 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2ab6f24f-c792-4210-acdf-0cd8382bc426") + ) + (wire + (pts + (xy 113.03 73.66) (xy 113.03 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2dc9fa3b-d075-4a6a-85cd-b932705a7f67") + ) + (wire + (pts + (xy 123.19 134.62) (xy 125.73 134.62) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3af43606-c3fd-42c6-9a7d-9303bb8c8254") + ) + (wire + (pts + (xy 97.79 135.89) (xy 97.79 138.43) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3dde07ff-a100-4311-a2da-48c05024a0e6") + ) + (wire + (pts + (xy 90.17 138.43) (xy 92.71 138.43) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3e4c02e7-928c-4f28-9b57-3ab025aefc74") + ) + (wire + (pts + (xy 165.1 132.08) (xy 165.1 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "48dbc555-e61e-4ab6-9e06-f8ef5dc0dccc") + ) + (wire + (pts + (xy 90.17 143.51) (xy 93.98 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4ba5c6a3-35ec-4f41-b349-4a2dbb80e961") + ) + (wire + (pts + (xy 154.94 76.2) (xy 151.13 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4f3d091c-57d7-48bf-a72f-672bc0460751") + ) + (wire + (pts + (xy 113.03 83.82) (xy 113.03 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "50c89e80-0926-4dad-b791-855d4a15b762") + ) + (wire + (pts + (xy 140.97 67.31) (xy 140.97 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5f9b866b-5ef9-45d9-978f-08feaf4c12ab") + ) + (wire + (pts + (xy 134.62 78.74) (xy 134.62 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5ff90730-3003-4566-9aa1-abf204570b6c") + ) + (wire + (pts + (xy 90.17 135.89) (xy 97.79 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "62550473-7c46-4d1f-9dcc-2b3d60a6ba22") + ) + (wire + (pts + (xy 113.03 71.12) (xy 113.03 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "644d6935-6987-44dc-985b-9485aeb1c242") + ) + (wire + (pts + (xy 101.6 73.66) (xy 113.03 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6a3f3d79-9607-4224-95f6-f135bc1509e7") + ) + (wire + (pts + (xy 93.98 143.51) (xy 93.98 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8225d624-f03d-4fe7-bfd1-ec123b663a9f") + ) + (wire + (pts + (xy 140.97 83.82) (xy 140.97 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8477d7b3-1277-40fd-924c-7af55e009949") + ) + (wire + (pts + (xy 86.36 73.66) (xy 93.98 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "997c6697-463e-48a7-b3ab-9f847dbb539d") + ) + (wire + (pts + (xy 90.17 140.97) (xy 92.71 140.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9ba3f5a2-59b2-43d2-97e0-a4df923ef697") + ) + (wire + (pts + (xy 151.13 132.08) (xy 151.13 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a27f317f-ac83-4bae-af52-9817429c1fdc") + ) + (wire + (pts + (xy 120.65 95.25) (xy 120.65 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a4503e41-f4e7-4961-bb12-02d5fa8b8aaa") + ) + (wire + (pts + (xy 113.03 73.66) (xy 135.89 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b4f648de-588f-47d6-9309-10945120241c") + ) + (wire + (pts + (xy 134.62 95.25) (xy 143.51 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b7804408-903e-4bab-aae3-c92517ecebed") + ) + (wire + (pts + (xy 132.08 95.25) (xy 134.62 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b914b7c6-be05-4fbf-b5ce-0c84da991354") + ) + (wire + (pts + (xy 120.65 105.41) (xy 120.65 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cac2f904-3510-4dd5-8a48-5d19f4213776") + ) + (wire + (pts + (xy 171.45 85.09) (xy 171.45 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e0241556-a62c-42b1-a3de-a9e22ffea509") + ) + (wire + (pts + (xy 90.17 133.35) (xy 97.79 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ea9f2118-6f90-49e1-8f68-f544289ee507") + ) + (wire + (pts + (xy 154.94 95.25) (xy 154.94 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "eff36729-8ce0-4294-bdb4-96bfadaef58b") + ) + (wire + (pts + (xy 97.79 133.35) (xy 97.79 132.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f32e50ae-9a37-4abd-80a2-e7c01273e1ce") + ) + (wire + (pts + (xy 124.46 95.25) (xy 120.65 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fb1b9c23-5abc-4f98-9290-dbdec72c0e57") + ) + (label "in-" + (at 125.73 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "03553f4b-6428-486d-bb10-f8245a92bcac") + ) + (label "in-" + (at 134.62 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "64fa63d1-8fb2-4aa0-b7da-86803647b643") + ) + (label "in+" + (at 129.54 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6aa19824-9c7a-4601-a032-dc043126c085") + ) + (label "in" + (at 92.71 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "95ec7071-e10b-4b0a-9a61-c8e55ee4ea65") + ) + (label "out" + (at 181.61 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a12f498d-1e51-4872-b563-88b8da7d290e") + ) + (label "in" + (at 86.36 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b1463e71-5170-4330-836d-ea103403233a") + ) + (label "out" + (at 125.73 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b764c516-78e1-4a1a-b5a4-687149eb8224") + ) + (label "out" + (at 92.71 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f7147cb7-f5e2-4ca0-85d2-26fc4f520bda") + ) + (symbol + (lib_id "Device:R") + (at 113.03 67.31 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "006cdf77-993e-4177-a85a-5519e48f45bd") + (property "Reference" "Rb+1" + (at 107.188 66.548 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "15k" + (at 107.442 69.088 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 111.252 67.31 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 113.03 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 113.03 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "cfd0917c-5649-4c49-bd05-64fe4ee139bf") + ) + (pin "1" + (uuid "d7e7d39c-c4b0-4cba-a661-9caeb4cb6513") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "Rb+1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 147.32 95.25 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "01ab4288-1478-491a-b158-cd764fb6a15a") + (property "Reference" "R1" + (at 147.32 88.9 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10k" + (at 147.32 91.44 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 147.32 93.472 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 147.32 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 147.32 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "a81f4424-c730-4d64-839d-f2c82cc81280") + ) + (pin "1" + (uuid "b410db6d-ebab-4ba3-a882-2a27d6828af7") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 151.13 137.16 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "08a20653-7b8d-40cf-bb72-4819b0aa1959") + (property "Reference" "C4" + (at 155.194 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 155.194 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 152.0952 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 151.13 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 151.13 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "57ff15bd-5d0d-4fb5-8414-6b1c2fb22255") + ) + (pin "2" + (uuid "91031827-ad07-48f3-9591-dc681249dca9") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "C4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 165.1 142.24 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "0b2fbe64-d48a-4158-9938-2d04fe1c1f70") + (property "Reference" "#PWR010" + (at 165.1 148.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 165.1 146.558 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 165.1 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 165.1 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 165.1 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0b8318fd-3661-49f7-a7d1-b3cb3ffc9ef8") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR010") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Operational:MCP6001-OT") + (at 143.51 76.2 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1a5824e1-07ef-4267-95b0-220a31432434") + (property "Reference" "U1" + (at 145.542 70.104 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "MCP6001-OT" + (at 150.622 72.136 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5_HandSoldering" + (at 140.97 81.28 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21733j.pdf" + (at 143.51 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 143.51 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "dfadd43a-4892-4244-a91a-9d34b0373dc7") + ) + (pin "3" + (uuid "876a513a-6e42-447d-b5c0-182627301f22") + ) + (pin "4" + (uuid "7a6555ae-8fc4-4f16-b1d1-182330509c60") + ) + (pin "2" + (uuid "66873d9a-8984-4f47-8d4d-6d7ccab3a51f") + ) + (pin "5" + (uuid "b5ba1f9c-c966-4396-a785-7cbfe9bb1c3a") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 97.79 138.43 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2bfed11b-f42f-4c0e-9357-77eb6672c34b") + (property "Reference" "#PWR06" + (at 97.79 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 97.79 142.748 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 97.79 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 97.79 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 97.79 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f4577707-e8a3-430c-a2a9-7f4b479b0906") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VCC") + (at 151.13 132.08 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3c4afb9c-05f0-4bf8-ad4c-f771cb03a87e") + (property "Reference" "#PWR01" + (at 151.13 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 151.13 126.746 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 151.13 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 151.13 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 151.13 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0da681b8-2111-4ad3-9069-ebd90d4abbf4") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VCC") + (at 113.03 62.23 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "4bd6c2a0-0a60-4a65-8f28-69cd66ab4d5e") + (property "Reference" "#PWR012" + (at 113.03 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 112.776 58.166 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 113.03 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 113.03 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 113.03 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ee5b7dc8-8243-4f21-83bf-3a33598488c5") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR012") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 97.79 73.66 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "520d5da9-bb17-41ca-8523-e097343d32ab") + (property "Reference" "C1" + (at 97.79 66.04 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1u" + (at 97.79 68.58 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 101.6 72.6948 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 97.79 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 97.79 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "80f5a3b6-c0a4-4249-9893-4591158bd777") + ) + (pin "2" + (uuid "2dee37ae-ffc1-47e5-a7f3-ee92541ba7ab") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 128.27 95.25 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5677ec09-091b-451b-826b-395a91af0fa0") + (property "Reference" "R2" + (at 128.27 88.9 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "100k" + (at 128.27 91.44 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 128.27 97.028 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 128.27 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 128.27 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "ce7ca127-8169-4723-92af-8201dbb9ec39") + ) + (pin "1" + (uuid "f5e4277f-6224-4f7b-bc14-57d21c7f1384") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "R2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Pin") + (at 118.11 134.62 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5f1662fa-3505-4cbd-809e-14d9396b40c0") + (property "Reference" "J2" + (at 118.745 127 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x03_Pin" + (at 118.745 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 118.11 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 118.11 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 118.11 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "824e9802-35ce-4771-8650-f56d0c7a2651") + ) + (pin "2" + (uuid "a98eaade-a9d0-4a86-b3ae-5908b3ffc1cd") + ) + (pin "3" + (uuid "70b11b85-c33b-4705-add0-92045df3a833") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "J2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 120.65 101.6 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "6ada6eca-5d3c-4006-9572-b553c622f176") + (property "Reference" "C2" + (at 124.46 100.3299 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 124.46 102.8699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 121.6152 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 120.65 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 120.65 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "35e80689-64ca-4543-b7d4-18a596347e03") + ) + (pin "2" + (uuid "f957c4e5-7023-4523-bf33-dcf56293c06c") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 171.45 81.28 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "792c1a9e-e718-459f-950f-26bfc9993c73") + (property "Reference" "C3" + (at 175.514 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 175.514 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 172.4152 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 171.45 81.28 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 171.45 81.28 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "305f1611-c059-4f12-b036-e0cdbd33afb3") + ) + (pin "2" + (uuid "f61fb570-5f3b-4b91-be6e-311cfadc4331") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "C3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VCC") + (at 97.79 132.08 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7aa80d8a-162b-410f-abc2-37b117178b37") + (property "Reference" "#PWR08" + (at 97.79 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 97.79 126.746 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 97.79 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 97.79 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 97.79 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9155e71e-19c9-4fe1-978b-754d5de4b34f") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR08") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VCC") + (at 140.97 67.31 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7c775019-efa1-4975-97b3-6b83d221722f") + (property "Reference" "#PWR03" + (at 140.97 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 140.97 61.976 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 140.97 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 140.97 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 140.97 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3a20f504-df53-42f2-9e17-6279bf0d15f5") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 93.98 146.05 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "85b2f412-38e6-47e7-bc11-e8f49b20de32") + (property "Reference" "#PWR07" + (at 93.98 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 93.98 150.368 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 93.98 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 93.98 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 93.98 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d0173777-8e17-419c-9b08-f5758d536957") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 113.03 80.01 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "9b3ee936-a5d4-44a3-8ec7-10128aeceb4c") + (property "Reference" "Rb-1" + (at 106.934 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "15k" + (at 107.442 80.772 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 114.808 80.01 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 113.03 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 113.03 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "828f02d0-ec54-4204-ab06-4ef75be7c2bf") + ) + (pin "1" + (uuid "6fcf2b4b-ff09-4b50-a799-0323f2486fae") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "Rb-1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x05_Pin") + (at 85.09 138.43 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9ea95a02-46d3-475a-a8d4-f44597c7c24c") + (property "Reference" "J3" + (at 85.725 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x05_Pin" + (at 85.725 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" + (at 85.09 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 85.09 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x05, script generated" + (at 85.09 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "5" + (uuid "1691b6e8-de6e-45a9-8e3a-86ce164d2fd2") + ) + (pin "4" + (uuid "4ce8bfe0-295c-47d7-9cb6-0d287c041376") + ) + (pin "1" + (uuid "74709c43-19f1-41d0-86a6-8653db3883af") + ) + (pin "2" + (uuid "5b3aeba4-dff3-4933-8b8a-62ea630dddcf") + ) + (pin "3" + (uuid "cd867cf9-b8bd-4cdf-ae07-4456f5fb3d28") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "J3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 165.1 137.16 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a137a073-5913-43cc-9ffc-95eab8aff62b") + (property "Reference" "C5" + (at 169.164 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 169.164 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 166.0652 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 165.1 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 165.1 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "915c58e9-bf4e-499c-9496-aa7b922d29b6") + ) + (pin "2" + (uuid "4c87a571-40c2-4662-87cb-d889eefa5a2a") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "C5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 120.65 109.22 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b1487d1a-37a8-46a1-bf6a-3b082ae71f9f") + (property "Reference" "#PWR05" + (at 120.65 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 120.65 113.538 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 120.65 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 120.65 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 120.65 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ff447166-60be-49eb-b033-f74bf97f606b") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 113.03 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b9a9e835-4fde-4164-8bf6-06d216a5ce3f") + (property "Reference" "#PWR013" + (at 113.03 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 113.03 89.408 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 113.03 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 113.03 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 113.03 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "83ca88d6-234d-40f4-abd7-6e596ee97cb9") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR013") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 165.1 76.2 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c2e97a37-c640-4bd4-b547-97006fe23f23") + (property "Reference" "R3" + (at 165.1 70.866 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "100" + (at 165.1 73.406 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 165.1 74.422 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 165.1 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 165.1 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "0d9bd0db-3580-4182-86ab-4f19a008a61f") + ) + (pin "1" + (uuid "64bdf203-333a-43c4-b605-241c93a4e1a6") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "R3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 171.45 90.17 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d4e0af87-47d5-463f-abc7-952579efc48f") + (property "Reference" "#PWR011" + (at 171.45 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 171.45 94.488 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 171.45 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 171.45 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 171.45 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "da35815f-56ce-408d-bd02-499f9af14348") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR011") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 151.13 142.24 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e94a7e48-7d91-497e-83cc-bfaa82bf3525") + (property "Reference" "#PWR02" + (at 151.13 148.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 151.13 146.558 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 151.13 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 151.13 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 151.13 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fccbe3e4-8210-4e87-bb26-4fca92db5f55") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 140.97 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "f1017c14-f292-45f4-a5cf-586ae53c6118") + (property "Reference" "#PWR04" + (at 140.97 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 140.97 89.408 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 140.97 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 140.97 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 140.97 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "acc24480-fcd7-4718-848e-77bb6d4064d6") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VCC") + (at 165.1 132.08 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "f123f324-b995-4f10-979a-d636d5dcf83c") + (property "Reference" "#PWR09" + (at 165.1 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 165.1 126.746 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 165.1 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 165.1 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 165.1 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f6dcfced-787b-4778-b8ac-3c40ba1f6e6b") + ) + (instances + (project "breakout-opamp-ac-2" + (path "/8feb529e-2e66-44c8-8b72-e60028d39ece" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) + (embedded_fonts no) +)