Skip to content
Snippets Groups Projects
LoRaTracker_GPSBoard_L76.kicad_pcb-bak 62.8 KiB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
(kicad_pcb (version 20171130) (host pcbnew "(5.0.1)-3")

  (general
    (thickness 1.6)
    (drawings 13)
    (tracks 121)
    (zones 0)
    (modules 18)
    (nets 14)
  )

  (page A4)
  (layers
    (0 F.Cu signal)
    (31 B.Cu signal)
    (32 B.Adhes user)
    (33 F.Adhes user)
    (34 B.Paste user)
    (35 F.Paste user)
    (36 B.SilkS user)
    (37 F.SilkS user)
    (38 B.Mask user)
    (39 F.Mask user)
    (40 Dwgs.User user)
    (41 Cmts.User user)
    (42 Eco1.User user)
    (43 Eco2.User user)
    (44 Edge.Cuts user)
    (45 Margin user)
    (46 B.CrtYd user)
    (47 F.CrtYd user)
    (48 B.Fab user)
    (49 F.Fab user)
  )

  (setup
    (last_trace_width 0.25)
    (trace_clearance 0.2)
    (zone_clearance 0.508)
    (zone_45_only no)
    (trace_min 0.2)
    (segment_width 0.2)
    (edge_width 0.2)
    (via_size 0.8)
    (via_drill 0.4)
    (via_min_size 0.4)
    (via_min_drill 0.3)
    (uvia_size 0.3)
    (uvia_drill 0.1)
    (uvias_allowed no)
    (uvia_min_size 0.2)
    (uvia_min_drill 0.1)
    (pcb_text_width 0.3)
    (pcb_text_size 1.5 1.5)
    (mod_edge_width 0.15)
    (mod_text_size 1 1)
    (mod_text_width 0.15)
    (pad_size 1.5 1.5)
    (pad_drill 0.6)
    (pad_to_mask_clearance 0)
    (solder_mask_min_width 0.25)
    (aux_axis_origin 0 0)
    (visible_elements 7FFFFFFF)
    (pcbplotparams
      (layerselection 0x010fc_ffffffff)
      (usegerberextensions false)
      (usegerberattributes false)
      (usegerberadvancedattributes false)
      (creategerberjobfile false)
      (excludeedgelayer true)
      (linewidth 0.100000)
      (plotframeref false)
      (viasonmask false)
      (mode 1)
      (useauxorigin false)
      (hpglpennumber 1)
      (hpglpenspeed 20)
      (hpglpendiameter 15.000000)
      (psnegative false)
      (psa4output false)
      (plotreference true)
      (plotvalue true)
      (plotinvisibletext false)
      (padsonsilk false)
      (subtractmaskfromsilk false)
      (outputformat 1)
      (mirror false)
      (drillshape 1)
      (scaleselection 1)
      (outputdirectory ""))
  )

  (net 0 "")
  (net 1 "Net-(D1-Pad2)")
  (net 2 GND)
  (net 3 3V3)
  (net 4 GNSS_TX)
  (net 5 GNSS_RX)
  (net 6 GNSS_On_Off)
  (net 7 GNSS_VCC)
  (net 8 "Net-(C2-Pad1)")
  (net 9 "Net-(R6-Pad1)")
  (net 10 "Net-(L1-Pad1)")
  (net 11 V_BCKP)
  (net 12 PPS)
  (net 13 VCC_RF)

  (net_class Default "Dies ist die voreingestellte Netzklasse."
    (clearance 0.2)
    (trace_width 0.25)
    (via_dia 0.8)
    (via_drill 0.4)
    (uvia_dia 0.3)
    (uvia_drill 0.1)
    (add_net 3V3)
    (add_net GND)
    (add_net GNSS_On_Off)
    (add_net GNSS_RX)
    (add_net GNSS_TX)
    (add_net GNSS_VCC)
    (add_net "Net-(C2-Pad1)")
    (add_net "Net-(D1-Pad2)")
    (add_net "Net-(R6-Pad1)")
    (add_net PPS)
    (add_net VCC_RF)
    (add_net V_BCKP)
  )

  (net_class ÂNT ""
    (clearance 0.2)
    (trace_width 1)
    (via_dia 0.8)
    (via_drill 0.4)
    (uvia_dia 0.3)
    (uvia_drill 0.1)
    (add_net "Net-(L1-Pad1)")
  )

  (module L76L-M33:GNSS-MODULE_L76L-M33 (layer F.Cu) (tedit 5C46F768) (tstamp 5C46F426)
    (at 105.156 32.004 180)
    (path /5C46F36E)
    (attr smd)
    (fp_text reference U1 (at -2.667 -6.731 180) (layer F.SilkS) hide
      (effects (font (size 1.4 1.4) (thickness 0.05)))
    )
    (fp_text value L76L-M33 (at -1.905 6.731 180) (layer F.SilkS) hide
      (effects (font (size 1.4 1.4) (thickness 0.05)))
    )
    (fp_line (start -4.85 -5.05) (end 4.85 -5.05) (layer Dwgs.User) (width 0.127))
    (fp_line (start 4.85 -5.05) (end 4.85 5.05) (layer Dwgs.User) (width 0.127))
    (fp_line (start 4.85 5.05) (end -4.85 5.05) (layer Dwgs.User) (width 0.127))
    (fp_line (start -4.85 5.05) (end -4.85 -5.05) (layer Dwgs.User) (width 0.127))
    (fp_line (start -4.85 -5.05) (end 4.85 -5.05) (layer F.SilkS) (width 0.127))
    (fp_line (start 4.85 5.05) (end -4.85 5.05) (layer F.SilkS) (width 0.127))
    (fp_line (start -6 -5.3) (end 6 -5.3) (layer Eco1.User) (width 0.05))
    (fp_line (start 6 -5.3) (end 6 5.3) (layer Eco1.User) (width 0.05))
    (fp_line (start 6 5.3) (end -6 5.3) (layer Eco1.User) (width 0.05))
    (fp_line (start -6 5.3) (end -6 -5.3) (layer Eco1.User) (width 0.05))
    (fp_circle (center -6.4 -4.4) (end -6.3 -4.4) (layer F.SilkS) (width 0.3))
    (fp_circle (center -6.4 -4.4) (end -6.3 -4.4) (layer Dwgs.User) (width 0.3))
    (pad 1 smd rect (at -4.85 -4.4 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 2 smd rect (at -4.85 -3.3 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask)
      (net 4 GNSS_TX))
    (pad 3 smd rect (at -4.85 -2.2 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask)
      (net 5 GNSS_RX))
    (pad 4 smd rect (at -4.85 -1.1 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask)
      (net 12 PPS))
    (pad 5 smd rect (at -4.85 0 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask))
    (pad 6 smd rect (at -4.85 1.1 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask)
      (net 11 V_BCKP))
    (pad 7 smd rect (at -4.85 2.2 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask))
    (pad 8 smd rect (at -4.85 3.3 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask)
      (net 7 GNSS_VCC))
    (pad 9 smd rect (at -4.85 4.4 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask)
      (net 9 "Net-(R6-Pad1)"))
    (pad 10 smd rect (at 4.85 4.4 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 11 smd rect (at 4.85 3.3 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask)
      (net 10 "Net-(L1-Pad1)"))
    (pad 12 smd rect (at 4.85 2.2 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 13 smd rect (at 4.85 1.1 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask))
    (pad 14 smd rect (at 4.85 0 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask)
      (net 13 VCC_RF))
    (pad 15 smd rect (at 4.85 -1.1 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask))
    (pad 16 smd rect (at 4.85 -2.2 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask))
    (pad 17 smd rect (at 4.85 -3.3 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask))
    (pad 18 smd rect (at 4.85 -4.4 180) (size 1.8 0.8) (layers F.Cu F.Paste F.Mask))
  )

  (module LEDs:LED_0603_HandSoldering (layer F.Cu) (tedit 5C45C50C) (tstamp 5C45C05B)
    (at 101.6 25.908)
    (descr "LED SMD 0603, hand soldering")
    (tags "LED 0603")
    (path /5C49FB46)
    (attr smd)
    (fp_text reference D1 (at 0 -1.45) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value LED (at 0 1.55) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 1.95 0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.55) (end 0.8 -0.55) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 0.55) (end 0.8 0.55) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.15 -0.2) (end 0.15 0.2) (layer F.Fab) (width 0.1))
    (fp_line (start 0.15 0.2) (end -0.15 0) (layer F.Fab) (width 0.1))
    (fp_line (start -0.15 0) (end 0.15 -0.2) (layer F.Fab) (width 0.1))
    (fp_line (start -0.2 -0.2) (end -0.2 0.2) (layer F.Fab) (width 0.1))
    (fp_line (start -1.8 -0.55) (end -1.8 0.55) (layer F.SilkS) (width 0.12))
    (pad 2 smd rect (at 1.1 0) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 1 "Net-(D1-Pad2)"))
    (pad 1 smd rect (at -1.1 0) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (model ${KISYS3DMOD}/LEDs.3dshapes/LED_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 180))
    )
  )

  (module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer F.Cu) (tedit 5C45C517) (tstamp 5C45C070)
    (at 113.284 24.892)
    (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x01 2.54mm single row")
    (path /5C4A0788)
    (fp_text reference J1 (at 0 -2.33) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value M01NOSILK-KIT (at 0 2.33) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 0 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
    (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 3 3V3))
    (model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer F.Cu) (tedit 59650532) (tstamp 5C45C085)
    (at 113.284 29.972)
    (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x01 2.54mm single row")
    (path /5C4A0806)
    (fp_text reference J2 (at 0 -2.33) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value M01NOSILK-KIT (at 0 2.33) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_text user %R (at 0 0 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 4 GNSS_TX))
    (model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer F.Cu) (tedit 5C45C51F) (tstamp 5C45C09A)
    (at 113.284 27.432)
    (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x01 2.54mm single row")
    (path /5C4A082A)
    (fp_text reference J3 (at 0 -2.33) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value M01NOSILK-KIT (at 0 2.33) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
    (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 5 GNSS_RX))
    (model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer F.Cu) (tedit 5C45C528) (tstamp 5C45C0AF)
    (at 113.284 32.512)
    (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x01 2.54mm single row")
    (path /5C4A084C)
    (fp_text reference J4 (at 0 -2.33) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value M01NOSILK-KIT (at 0 2.33) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 6 GNSS_On_Off))
    (model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm (layer F.Cu) (tedit 5C45C531) (tstamp 5C45C0C4)
    (at 113.284 35.052)
    (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x01 2.54mm single row")
    (path /5C4A0870)
    (fp_text reference J5 (at 0 -2.33) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value M01NOSILK-KIT (at 0 2.33) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
    (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 2 GND))
    (model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module TO_SOT_Packages_SMD:SOT-23 (layer F.Cu) (tedit 5C45C514) (tstamp 5C45C0D9)
    (at 106.68 21.844 270)
    (descr "SOT-23, Standard")
    (tags SOT-23)
    (path /5C4A12F0)
    (attr smd)
    (fp_text reference Q1 (at 0 -2.5 270) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value Q_PMOS_GDS (at 0 2.5 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
    (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
    (fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer F.Fab) (width 0.1))
    (fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer F.Fab) (width 0.1))
    (fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 0) (layer F.Fab)
      (effects (font (size 0.5 0.5) (thickness 0.075)))
    )
    (pad 3 smd rect (at 1 0 270) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
      (net 7 GNSS_VCC))
    (pad 2 smd rect (at -1 0.95 270) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
      (net 3 3V3))
    (pad 1 smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
      (net 6 GNSS_On_Off))
    (model ${KISYS3DMOD}/TO_SOT_Packages_SMD.3dshapes/SOT-23.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer F.Cu) (tedit 5C45C508) (tstamp 5C45C0EA)
    (at 102.616 24.384)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5C49FAEF)
    (attr smd)
    (fp_text reference R1 (at 0 -1.45) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100 (at 0 1.55) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 0) (layer F.Fab)
      (effects (font (size 0.4 0.4) (thickness 0.075)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.5 0.68) (end -0.5 0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.5 -0.68) (end 0.5 -0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.96 -0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -1.1 0) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 1 "Net-(D1-Pad2)"))
    (pad 2 smd rect (at 1.1 0) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 12 PPS))
    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer F.Cu) (tedit 5C45E7A2) (tstamp 5C45C0FB)
    (at 109.22 22.352 270)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5C4A1E56)
    (attr smd)
    (fp_text reference R2 (at 0 -1.45 270) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100k (at 0 1.55 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.95 0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.5 -0.68) (end 0.5 -0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.5 0.68) (end -0.5 0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 0 270) (layer F.Fab)
      (effects (font (size 0.4 0.4) (thickness 0.075)))
    )
    (pad 2 smd rect (at 1.1 0 270) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 1 smd rect (at -1.1 0 270) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 6 GNSS_On_Off))
    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module WinLib:MS621FE-FL11E (layer F.Cu) (tedit 5C45E798) (tstamp 5C461FA4)
    (at 96.774 21.844)
    (path /5C4A2D63)
    (fp_text reference BT1 (at 0 4.4) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value Battery_Cell (at 0 -4.2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user + (at 7.239 -0.762) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 3.4 -0.5) (end 2.5 1) (layer F.Fab) (width 0.15))
    (fp_line (start 3.4 -0.5) (end 5.9 -0.5) (layer F.Fab) (width 0.15))
    (fp_line (start 5.9 0.5) (end 3.7 0.5) (layer F.Fab) (width 0.15))
    (fp_line (start 3.7 0.5) (end 3.7 -0.5) (layer F.Fab) (width 0.15))
    (fp_line (start 5.9 0.5) (end 5.9 1) (layer F.Fab) (width 0.15))
    (fp_line (start 5.9 1) (end 3.3 1) (layer F.Fab) (width 0.15))
    (fp_line (start 5.9 -1) (end -2.1 -1) (layer F.Fab) (width 0.15))
    (fp_line (start -2.1 -1) (end -2.1 1) (layer F.Fab) (width 0.15))
    (fp_line (start -2.1 1) (end 2.5 1) (layer F.Fab) (width 0.15))
    (fp_line (start 5.9 -0.5) (end 5.9 -1) (layer F.Fab) (width 0.15))
    (fp_circle (center 0 0) (end 3.4 0) (layer F.SilkS) (width 0.15))
    (pad 1 smd rect (at 5 -0.8) (size 2.4 1.2) (layers F.Cu F.Paste F.Mask)
      (net 11 V_BCKP))
    (pad 2 smd rect (at 5 0.8) (size 2.4 1.2) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 5C45E7A8) (tstamp 5C461FB5)
    (at 106.68 25.908)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /5C4A2EA2)
    (attr smd)
    (fp_text reference C1 (at 0 -1.25) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 1u (at 0 1.5) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 -1.25) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (pad 2 smd rect (at 0.95 0) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 1 smd rect (at -0.95 0) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 11 V_BCKP))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 5C45E7BA) (tstamp 5C461FC6)
    (at 97.028 38.608 180)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /5C4A9D6B)
    (attr smd)
    (fp_text reference C2 (at 0 -1.25 180) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value C (at 0 1.5 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.25 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 180) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 8 "Net-(C2-Pad1)"))
    (pad 2 smd rect (at 0.95 0 180) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer F.Cu) (tedit 5C45E7B4) (tstamp 5C462001)
    (at 100.584 38.608 180)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5C4A9DB3)
    (attr smd)
    (fp_text reference R4 (at 0 -1.45 180) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 10 (at 0 1.55 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.95 0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.5 -0.68) (end 0.5 -0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.5 0.68) (end -0.5 0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 0 180) (layer F.Fab)
      (effects (font (size 0.4 0.4) (thickness 0.075)))
    )
    (pad 2 smd rect (at 1.1 0 180) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 8 "Net-(C2-Pad1)"))
    (pad 1 smd rect (at -1.1 0 180) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 13 VCC_RF))
    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer F.Cu) (tedit 5C45E7E3) (tstamp 5C462023)
    (at 112.268 21.844)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5C4B95BE)
    (attr smd)
    (fp_text reference R6 (at 0 -1.45) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 10k (at 0 1.55) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 1.95 0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.5 -0.68) (end 0.5 -0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.5 0.68) (end -0.5 0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 0) (layer F.Fab) hide
      (effects (font (size 0.4 0.4) (thickness 0.075)))
    )
    (pad 2 smd rect (at 1.1 0) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 3 3V3))
    (pad 1 smd rect (at -1.1 0) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 9 "Net-(R6-Pad1)"))
    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module adafruit:SOD-323F (layer F.Cu) (tedit 5C3F1605) (tstamp 5C45F005)
    (at 106.68 24.384 180)
    (path /5C4A2C60)
    (attr smd)
    (fp_text reference D2 (at 0.23114 -1.30556 180) (layer F.SilkS) hide
      (effects (font (size 0.8128 0.8128) (thickness 0.0762)))
    )
    (fp_text value MBRA160T3G (at 0.33782 1.29286 180) (layer F.SilkS) hide
      (effects (font (size 0.8128 0.8128) (thickness 0.0762)))
    )
    (fp_line (start -0.84836 -0.6477) (end 0.84836 -0.6477) (layer F.SilkS) (width 0.127))
    (fp_line (start 0.84836 -0.6477) (end 0.84836 0.6477) (layer F.SilkS) (width 0.127))
    (fp_line (start 0.84836 0.6477) (end -0.84836 0.6477) (layer F.SilkS) (width 0.127))
    (fp_line (start -0.84836 0.6477) (end -0.84836 -0.6477) (layer F.SilkS) (width 0.127))
    (fp_line (start 0.39878 -0.59944) (end 0.39878 0.59944) (layer F.SilkS) (width 0.127))
    (fp_line (start 0.39878 0.59944) (end 0.29972 0.59944) (layer F.SilkS) (width 0.127))
    (fp_line (start 0.29972 0.59944) (end 0.29972 -0.59944) (layer F.SilkS) (width 0.127))
    (fp_line (start -0.89916 -0.19812) (end -1.19888 -0.19812) (layer F.SilkS) (width 0.127))
    (fp_line (start -1.19888 -0.19812) (end -1.19888 0.19812) (layer F.SilkS) (width 0.127))
    (fp_line (start -1.19888 0.19812) (end -0.89916 0.19812) (layer F.SilkS) (width 0.127))
    (fp_line (start 0.89916 -0.19812) (end 1.19888 -0.19812) (layer F.SilkS) (width 0.127))
    (fp_line (start 1.19888 -0.19812) (end 1.19888 0.19812) (layer F.SilkS) (width 0.127))
    (fp_line (start 1.19888 0.19812) (end 0.89916 0.19812) (layer F.SilkS) (width 0.127))
    (pad A smd rect (at -0.99822 0 180) (size 0.99822 0.79756) (layers F.Cu F.Paste F.Mask)
      (net 3 3V3))
    (pad C smd rect (at 0.99822 0 180) (size 0.99822 0.79756) (layers F.Cu F.Paste F.Mask)
      (net 11 V_BCKP))
  )

  (module adafruit:U.FL (layer F.Cu) (tedit 5C45E7FB) (tstamp 5C45F048)
    (at 96.012 28.448)
    (path /5C45FB42)
    (attr smd)
    (fp_text reference X1 (at -7.62 7.62) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.1778)))
    )
    (fp_text value ANTENNA_U.FL (at -6.35 7.62 -270) (layer F.SilkS) hide
      (effects (font (size 0.8128 0.8128) (thickness 0.0762)))
    )
    (fp_line (start -0.889 0.8255) (end 0.889 0.8255) (layer F.SilkS) (width 0.06604))
    (fp_line (start 0.889 0.8255) (end 0.889 -0.8255) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.889 -0.8255) (end 0.889 -0.8255) (layer F.SilkS) (width 0.06604))
    (fp_line (start -0.889 0.8255) (end -0.889 -0.8255) (layer F.SilkS) (width 0.06604))
    (fp_line (start 1.29794 -0.6985) (end 1.29794 -2.09804) (layer F.SilkS) (width 0.2032))
    (fp_line (start 1.29794 -2.09804) (end -1.29794 -2.09804) (layer F.SilkS) (width 0.2032))
    (fp_line (start -1.29794 2.09804) (end 1.29794 2.09804) (layer F.SilkS) (width 0.2032))
    (fp_line (start 1.29794 2.09804) (end 1.29794 0.6985) (layer F.SilkS) (width 0.2032))
    (fp_line (start -1.29794 -0.6985) (end -1.29794 -2.09804) (layer F.SilkS) (width 0.2032))
    (fp_line (start -1.29794 2.09804) (end -1.29794 0.6985) (layer F.SilkS) (width 0.2032))
    (fp_line (start 1.39954 -0.6985) (end 1.39954 -1.99898) (layer F.SilkS) (width 0.2032))
    (fp_line (start 1.39954 1.99898) (end 1.39954 0.6985) (layer F.SilkS) (width 0.2032))
    (fp_line (start 1.4986 -0.6985) (end 1.4986 -2.09804) (layer F.SilkS) (width 0.2032))
    (fp_line (start 1.4986 2.09804) (end 1.4986 0.6985) (layer F.SilkS) (width 0.2032))
    (fp_line (start 1.4986 -2.09804) (end 1.29794 -2.09804) (layer F.SilkS) (width 0.2032))
    (fp_line (start 1.4986 -0.6985) (end 1.29794 -0.6985) (layer F.SilkS) (width 0.2032))
    (fp_line (start 1.4986 0.6985) (end 1.29794 0.6985) (layer F.SilkS) (width 0.2032))
    (fp_line (start 1.4986 2.09804) (end 1.29794 2.09804) (layer F.SilkS) (width 0.2032))
    (pad 1 smd rect (at 0 -1.37414) (size 2.19964 1.04902) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 2 smd rect (at 0 1.37414) (size 2.19964 1.04902) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 3 smd rect (at 1.524 0) (size 0.79756 0.99822) (layers F.Cu F.Paste F.Mask)
      (net 10 "Net-(L1-Pad1)"))
  )

  (module Inductors_SMD:L_0603_HandSoldering (layer F.Cu) (tedit 5C45E79D) (tstamp 5C45F085)
    (at 96.012 35.052 270)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5C45E31A)
    (attr smd)
    (fp_text reference L1 (at 0 -1.9 270) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value INDUCTOR (at 0 1.9 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.5 -0.68) (end 0.5 -0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.5 0.68) (end -0.5 0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start 2 -0.8) (end 2 0.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2 -0.8) (end -2 0.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2 0.8) (end 2 0.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2 -0.8) (end 2 -0.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 0 270) (layer F.Fab)
      (effects (font (size 0.4 0.4) (thickness 0.075)))
    )
    (pad 2 smd rect (at 1.1 0 270) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 8 "Net-(C2-Pad1)"))
    (pad 1 smd rect (at -1.1 0 270) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 10 "Net-(L1-Pad1)"))
    (model ${KISYS3DMOD}/Inductors_SMD.3dshapes/L_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (gr_text GND (at 109.982 35.179) (layer B.Paste)
    (effects (font (size 1 1) (thickness 0.2)) (justify mirror))
  )
  (gr_text ON/OFF (at 108.839 32.512) (layer B.Paste)
    (effects (font (size 1 1) (thickness 0.2)) (justify mirror))
  )
  (gr_text TX (at 110.49 30.099) (layer B.Paste)
    (effects (font (size 1 1) (thickness 0.2)) (justify mirror))
  )
  (gr_text RX (at 110.363 27.432) (layer B.Paste)
    (effects (font (size 1 1) (thickness 0.2)) (justify mirror))
  )
  (gr_text 3v3 (at 110.109 25.146) (layer B.Paste)
    (effects (font (size 1 1) (thickness 0.2)) (justify mirror))
  )
  (gr_line (start 95 20) (end 95 40) (angle 90) (layer Margin) (width 0.2) (tstamp 5C45C217))
  (gr_line (start 95 20) (end 115 20) (angle 90) (layer Edge.Cuts) (width 0.2) (tstamp 5C45C216))
  (gr_line (start 115 20) (end 115 40) (angle 90) (layer Edge.Cuts) (width 0.2) (tstamp 5C45C215))
  (gr_line (start 95 40) (end 115 40) (angle 90) (layer Edge.Cuts) (width 0.2) (tstamp 5C45C214))
  (gr_line (start 95 40) (end 115 40) (angle 90) (layer Margin) (width 0.2))
  (gr_line (start 115 20) (end 115 40) (angle 90) (layer Margin) (width 0.2))
  (gr_line (start 95 20) (end 115 20) (angle 90) (layer Margin) (width 0.2))
  (gr_line (start 95 20) (end 95 40) (angle 90) (layer Edge.Cuts) (width 0.2))

  (via (at 114.046 20.574) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 112.395 20.574) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 110.744 20.574) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 110.236 22.987) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (segment (start 102.7 25.908) (end 102.7 25.568) (width 0.25) (layer F.Cu) (net 1) (status C00000))
  (segment (start 102.7 25.568) (end 101.516 24.384) (width 0.25) (layer F.Cu) (net 1) (tstamp 5C472FA0) (status C00000))
  (via (at 98.425 27.305) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 95.885 25.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 97.155 25.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 98.425 25.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 95.885 31.75) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 97.79 33.655) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 97.79 35.56) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 97.155 37.465) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 95.885 37.465) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 102.235 27.94) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 102.235 29.845) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 103.505 31.115) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 103.505 29.21) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 103.505 33.02) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 103.505 34.925) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 103.505 36.83) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 103.505 38.735) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 105.41 37.465) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 105.41 35.56) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 105.41 33.655) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 105.41 31.75) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 107.315 38.735) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 107.315 36.83) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 107.315 34.925) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 107.315 33.02) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 109.22 38.735) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 111.125 38.735) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 113.03 38.735) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 96.52 23.495) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 98.425 23.495) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 97.79 21.59) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 95.885 21.59) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 109.22 26.035) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (segment (start 109.771 23.452) (end 110.236 22.987) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 109.22 23.452) (end 109.771 23.452) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 110.236 21.082) (end 110.744 20.574) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 110.236 22.987) (end 110.236 21.082) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 110.744 20.574) (end 112.395 20.574) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 114.046 20.574) (end 112.395 20.574) (width 0.25) (layer F.Cu) (net 2))
  (via (at 107.188 28.575) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (via (at 108.204 29.591) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
  (segment (start 113.284 24.892) (end 113.284 21.928) (width 0.25) (layer F.Cu) (net 3) (status C00000))
  (segment (start 113.284 21.928) (end 113.368 21.844) (width 0.25) (layer F.Cu) (net 3) (tstamp 5C472F68) (status C00000))
  (segment (start 113.284 24.892) (end 108.18622 24.892) (width 0.25) (layer F.Cu) (net 3) (status 400000))
  (segment (start 108.18622 24.892) (end 107.67822 24.384) (width 0.25) (layer F.Cu) (net 3) (tstamp 5C472F6B) (status 800000))
  (segment (start 107.67822 24.384) (end 107.67822 23.13178) (width 0.25) (layer F.Cu) (net 3) (status 400000))
  (segment (start 105.73 21.778) (end 105.73 20.844) (width 0.25) (layer F.Cu) (net 3) (tstamp 5C472F86) (status 800000))
  (segment (start 105.41 22.098) (end 105.73 21.778) (width 0.25) (layer F.Cu) (net 3) (tstamp 5C472F85))
  (via (at 105.41 22.098) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 105.918 22.606) (end 105.41 22.098) (width 0.25) (layer B.Cu) (net 3) (tstamp 5C472F82))
  (segment (start 107.188 22.606) (end 105.918 22.606) (width 0.25) (layer B.Cu) (net 3) (tstamp 5C472F81))
  (segment (start 107.696 23.114) (end 107.188 22.606) (width 0.25) (layer B.Cu) (net 3) (tstamp 5C472F80))
  (via (at 107.696 23.114) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 107.67822 23.13178) (end 107.696 23.114) (width 0.25) (layer F.Cu) (net 3) (tstamp 5C472F7D))
  (segment (start 110.006 35.304) (end 110.746 35.304) (width 0.25) (layer F.Cu) (net 4) (status C00000))
  (segment (start 112.776 29.972) (end 113.284 29.972) (width 0.25) (layer F.Cu) (net 4) (tstamp 5C472F58) (status C00000))
  (segment (start 112.014 30.734) (end 112.776 29.972) (width 0.25) (layer F.Cu) (net 4) (tstamp 5C472F57) (status 800000))
  (segment (start 112.014 34.036) (end 112.014 30.734) (width 0.25) (layer F.Cu) (net 4) (tstamp 5C472F55))
  (segment (start 110.746 35.304) (end 112.014 34.036) (width 0.25) (layer F.Cu) (net 4) (tstamp 5C472F54) (status 400000))
  (segment (start 110.006 34.204) (end 111.084 34.204) (width 0.25) (layer F.Cu) (net 5) (status 400000))
  (segment (start 112.268 27.432) (end 113.284 27.432) (width 0.25) (layer F.Cu) (net 5) (tstamp 5C472F51) (status 800000))
  (segment (start 111.506 28.194) (end 112.268 27.432) (width 0.25) (layer F.Cu) (net 5) (tstamp 5C472F50))
  (segment (start 111.506 33.782) (end 111.506 28.194) (width 0.25) (layer F.Cu) (net 5) (tstamp 5C472F4F))
  (segment (start 111.084 34.204) (end 111.506 33.782) (width 0.25) (layer F.Cu) (net 5) (tstamp 5C472F4E))
  (segment (start 113.284 32.512) (end 111.506 32.512) (width 0.25) (layer B.Cu) (net 6) (status 400000))
  (segment (start 107.63 21.778) (end 107.63 20.844) (width 0.25) (layer F.Cu) (net 6) (tstamp 5C472F62) (status 800000))
  (segment (start 107.696 21.844) (end 107.63 21.778) (width 0.25) (layer F.Cu) (net 6) (tstamp 5C472F61))
  (via (at 107.696 21.844) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
  (segment (start 110.998 25.146) (end 107.696 21.844) (width 0.25) (layer B.Cu) (net 6) (tstamp 5C472F5D))
  (segment (start 110.998 32.004) (end 110.998 25.146) (width 0.25) (layer B.Cu) (net 6) (tstamp 5C472F5C))
  (segment (start 111.506 32.512) (end 110.998 32.004) (width 0.25) (layer B.Cu) (net 6) (tstamp 5C472F5B))
  (segment (start 107.696 21.844) (end 108.628 21.844) (width 0.25) (layer F.Cu) (net 6))
  (segment (start 108.628 21.844) (end 109.22 21.252) (width 0.25) (layer F.Cu) (net 6) (tstamp 5C472F65) (status 800000))
  (segment (start 110.006 28.704) (end 108.714 28.704) (width 0.25) (layer F.Cu) (net 7) (status 400000))
  (segment (start 106.68 26.67) (end 106.68 22.844) (width 0.25) (layer F.Cu) (net 7) (tstamp 5C472F7A) (status 800000))
  (segment (start 108.714 28.704) (end 106.68 26.67) (width 0.25) (layer F.Cu) (net 7) (tstamp 5C472F79))
  (segment (start 97.978 38.608) (end 99.484 38.608) (width 0.25) (layer F.Cu) (net 8) (status C00000))
  (segment (start 97.978 38.608) (end 97.978 37.018) (width 0.25) (layer F.Cu) (net 8) (status 400000))
  (segment (start 97.112 36.152) (end 96.012 36.152) (width 0.25) (layer F.Cu) (net 8) (tstamp 5C472F4B) (status 800000))
  (segment (start 97.978 37.018) (end 97.112 36.152) (width 0.25) (layer F.Cu) (net 8) (tstamp 5C472F4A))
  (segment (start 110.006 27.604) (end 110.006 27.408) (width 0.25) (layer F.Cu) (net 9) (status C00000))
  (segment (start 111.168 23.03) (end 111.168 21.844) (width 0.25) (layer F.Cu) (net 9) (tstamp 5C472F76) (status 800000))
  (segment (start 111.252 23.114) (end 111.168 23.03) (width 0.25) (layer F.Cu) (net 9) (tstamp 5C472F75))
  (via (at 111.252 23.114) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 9))
  (segment (start 111.506 23.368) (end 111.252 23.114) (width 0.25) (layer B.Cu) (net 9) (tstamp 5C472F73))
  (segment (start 111.506 25.4) (end 111.506 23.368) (width 0.25) (layer B.Cu) (net 9) (tstamp 5C472F72))
  (segment (start 111.76 25.654) (end 111.506 25.4) (width 0.25) (layer B.Cu) (net 9) (tstamp 5C472F71))
  (via (at 111.76 25.654) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 9))
  (segment (start 110.006 27.408) (end 111.76 25.654) (width 0.25) (layer F.Cu) (net 9) (tstamp 5C472F6E) (status 400000))
  (segment (start 100.306 28.704) (end 98.044 28.704) (width 1) (layer F.Cu) (net 10) (status 400000))
  (segment (start 98.044 28.704) (end 97.792 28.704) (width 1) (layer F.Cu) (net 10) (tstamp 5C472FB2) (status 800000))
  (segment (start 97.792 28.704) (end 97.536 28.448) (width 1) (layer F.Cu) (net 10) (tstamp 5C472FAB) (status C00000))
  (segment (start 96.012 33.952) (end 96.012 33.528) (width 1) (layer F.Cu) (net 10) (status C00000))
  (segment (start 98.044 31.496) (end 98.044 28.704) (width 1) (layer F.Cu) (net 10) (tstamp 5C472FAF))
  (segment (start 96.012 33.528) (end 98.044 31.496) (width 1) (layer F.Cu) (net 10) (tstamp 5C472FAE) (status 400000))
  (segment (start 110.006 30.904) (end 108.12 30.904) (width 0.25) (layer F.Cu) (net 11) (status 400000))
  (segment (start 105.918 26.096) (end 105.73 25.908) (width 0.25) (layer F.Cu) (net 11) (tstamp 5C472F8C) (status C00000))
  (segment (start 105.918 28.702) (end 105.918 26.096) (width 0.25) (layer F.Cu) (net 11) (tstamp 5C472F8A) (status 800000))
  (segment (start 108.12 30.904) (end 105.918 28.702) (width 0.25) (layer F.Cu) (net 11) (tstamp 5C472F89))
  (segment (start 105.73 25.908) (end 105.73 24.43222) (width 0.25) (layer F.Cu) (net 11) (status C00000))
  (segment (start 105.73 24.43222) (end 105.68178 24.384) (width 0.25) (layer F.Cu) (net 11) (tstamp 5C472F8F) (status C00000))
  (segment (start 105.68178 24.384) (end 105.68178 23.63978) (width 0.25) (layer F.Cu) (net 11) (status 400000))
  (segment (start 102.32 21.59) (end 101.774 21.044) (width 0.25) (layer F.Cu) (net 11) (tstamp 5C472F95) (status C00000))
  (segment (start 103.632 21.59) (end 102.32 21.59) (width 0.25) (layer F.Cu) (net 11) (tstamp 5C472F94) (status 800000))
  (segment (start 104.902 22.86) (end 103.632 21.59) (width 0.25) (layer F.Cu) (net 11) (tstamp 5C472F93))
  (segment (start 105.68178 23.63978) (end 104.902 22.86) (width 0.25) (layer F.Cu) (net 11) (tstamp 5C472F92))
  (segment (start 110.006 33.104) (end 109.304 33.104) (width 0.25) (layer F.Cu) (net 12) (status C00000))
  (segment (start 104.14 24.808) (end 103.716 24.384) (width 0.25) (layer F.Cu) (net 12) (tstamp 5C472FA6) (status C00000))
  (segment (start 104.14 27.94) (end 104.14 24.808) (width 0.25) (layer F.Cu) (net 12) (tstamp 5C472FA4) (status 800000))
  (segment (start 109.304 33.104) (end 104.14 27.94) (width 0.25) (layer F.Cu) (net 12) (tstamp 5C472FA3) (status 400000))
  (segment (start 101.684 38.608) (end 101.684 36.746) (width 0.25) (layer F.Cu) (net 13) (status 400000))
  (segment (start 102.108 32.004) (end 100.306 32.004) (width 0.25) (layer F.Cu) (net 13) (tstamp 5C472F47) (status 800000))
  (segment (start 102.362 32.258) (end 102.108 32.004) (width 0.25) (layer F.Cu) (net 13) (tstamp 5C472F46))
  (segment (start 102.362 36.068) (end 102.362 32.258) (width 0.25) (layer F.Cu) (net 13) (tstamp 5C472F45))
  (segment (start 101.684 36.746) (end 102.362 36.068) (width 0.25) (layer F.Cu) (net 13) (tstamp 5C472F44))

  (zone (net 2) (net_name GND) (layer F.Cu) (tstamp 5C45C20E) (hatch edge 0.508)
    (connect_pads (clearance 0.508))
    (min_thickness 0.254)
    (fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 115.062 40.132) (xy 94.996 40.132) (xy 94.996 20.066) (xy 115.062 20.066)
      )
    )
    (filled_polygon
      (pts
        (xy 101.852235 26.956157) (xy 102.1 27.00544) (xy 103.3 27.00544) (xy 103.38 26.989527) (xy 103.38 27.865153)
        (xy 103.365112 27.94) (xy 103.38 28.014847) (xy 103.38 28.014851) (xy 103.424096 28.236536) (xy 103.592071 28.487929)
        (xy 103.65553 28.530331) (xy 108.45856 33.333362) (xy 108.45856 33.504) (xy 108.488397 33.654) (xy 108.45856 33.804)
        (xy 108.45856 34.604) (xy 108.488397 34.754) (xy 108.45856 34.904) (xy 108.45856 35.704) (xy 108.485936 35.841631)
        (xy 108.471 35.87769) (xy 108.471 36.11825) (xy 108.62975 36.277) (xy 108.820585 36.277) (xy 108.858235 36.302157)
        (xy 109.106 36.35144) (xy 110.906 36.35144) (xy 111.153765 36.302157) (xy 111.191415 36.277) (xy 111.38225 36.277)
        (xy 111.541 36.11825) (xy 111.541 35.87769) (xy 111.526064 35.841631) (xy 111.55344 35.704) (xy 111.55344 35.571361)
        (xy 111.9458 35.179002) (xy 111.957748 35.179002) (xy 111.799 35.33775) (xy 111.799 36.02831) (xy 111.895673 36.261699)
        (xy 112.074302 36.440327) (xy 112.307691 36.537) (xy 112.99825 36.537) (xy 113.157 36.37825) (xy 113.157 35.179)
        (xy 113.137 35.179) (xy 113.137 34.925) (xy 113.157 34.925) (xy 113.157 34.905) (xy 113.411 34.905)
        (xy 113.411 34.925) (xy 113.431 34.925) (xy 113.431 35.179) (xy 113.411 35.179) (xy 113.411 36.37825)
        (xy 113.56975 36.537) (xy 114.260309 36.537) (xy 114.265001 36.535057) (xy 114.265001 39.265) (xy 102.890266 39.265)
        (xy 102.93144 39.058) (xy 102.93144 38.158) (xy 102.882157 37.910235) (xy 102.741809 37.700191) (xy 102.531765 37.559843)
        (xy 102.444 37.542386) (xy 102.444 37.060801) (xy 102.815051 36.68975) (xy 108.471 36.68975) (xy 108.471 36.93031)
        (xy 108.567673 37.163699) (xy 108.746302 37.342327) (xy 108.979691 37.439) (xy 109.72025 37.439) (xy 109.879 37.28025)
        (xy 109.879 36.531) (xy 110.133 36.531) (xy 110.133 37.28025) (xy 110.29175 37.439) (xy 111.032309 37.439)
        (xy 111.265698 37.342327) (xy 111.444327 37.163699) (xy 111.541 36.93031) (xy 111.541 36.68975) (xy 111.38225 36.531)
        (xy 110.133 36.531) (xy 109.879 36.531) (xy 108.62975 36.531) (xy 108.471 36.68975) (xy 102.815051 36.68975)
        (xy 102.846473 36.658329) (xy 102.909929 36.615929) (xy 102.966677 36.531) (xy 103.077904 36.364538) (xy 103.12018 36.152)
        (xy 103.122 36.142852) (xy 103.122 36.142848) (xy 103.136888 36.068) (xy 103.122 35.993152) (xy 103.122 32.332846)
        (xy 103.136888 32.257999) (xy 103.122 32.183152) (xy 103.122 32.183148) (xy 103.077904 31.961463) (xy 102.909929 31.710071)
        (xy 102.84647 31.667669) (xy 102.698331 31.51953) (xy 102.655929 31.456071) (xy 102.404537 31.288096) (xy 102.182852 31.244)
        (xy 102.182847 31.244) (xy 102.108 31.229112) (xy 102.033153 31.244) (xy 101.85344 31.244) (xy 101.85344 30.504)
        (xy 101.826064 30.366369) (xy 101.841 30.33031) (xy 101.841 30.08975) (xy 101.68225 29.931) (xy 101.491415 29.931)
        (xy 101.453765 29.905843) (xy 101.206 29.85656) (xy 100.159 29.85656) (xy 100.159 29.839) (xy 100.417783 29.839)
        (xy 100.748855 29.773146) (xy 100.78134 29.75144) (xy 101.206 29.75144) (xy 101.453765 29.702157) (xy 101.491415 29.677)
        (xy 101.68225 29.677) (xy 101.841 29.51825) (xy 101.841 29.27769) (xy 101.826064 29.241631) (xy 101.85344 29.104)
        (xy 101.85344 28.304) (xy 101.826064 28.166369) (xy 101.841 28.13031) (xy 101.841 27.88975) (xy 101.68225 27.731)
        (xy 101.491415 27.731) (xy 101.453765 27.705843) (xy 101.206 27.65656) (xy 100.78134 27.65656) (xy 100.748855 27.634854)
        (xy 100.417783 27.569) (xy 100.159 27.569) (xy 100.159 27.477) (xy 100.179 27.477) (xy 100.179 27.457)
        (xy 100.433 27.457) (xy 100.433 27.477) (xy 101.68225 27.477) (xy 101.841 27.31825) (xy 101.841 27.07769)
        (xy 101.767095 26.899268)
      )
    )
    (filled_polygon
      (pts
        (xy 97.218001 37.332802) (xy 97.218001 37.617386) (xy 97.130235 37.634843) (xy 97.038898 37.695873) (xy 97.037698 37.694673)