├── .gitignore ├── LICENSE ├── README.md ├── kicad ├── fp-lib-table ├── nw12887.dcm ├── nw12887.kicad_pcb ├── nw12887.lib ├── nw12887.pretty │ └── BatteryHolder_CR1220.kicad_mod ├── nw12887.pro ├── nw12887.sch └── sym-lib-table └── photo.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | /kicad/*-cache 2 | /kicad/*-cache.lib 3 | /kicad/*-bak 4 | /kicad/gerber 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Necroware's NW12887 RTC module 2 | 3 | __ATTENTION:__ *this project was made for the SSOP-24 version of the RTC IC, if 4 | you need the SO-24 version go for https://github.com/necroware/nwX287 project 5 | instead* 6 | 7 | ![photo](./photo.jpg) 8 | 9 | This is a drop-in replacement for RTC modules with solid body. Such modules were 10 | widely used on 486 and Pentium mainboards back in the days. After so many years 11 | the battery inside of such modules got empty and there is no way to exchange it. 12 | With empty battery BIOS settings can not be saved and so many mainboards can't 13 | even boot properly. This alternative solution has a socket for CR1225 and the 14 | battery can be easily replaced again, when it gets empty. 15 | 16 | This part should be compatible with following RTC modules: 17 | 18 | * Dallas DS1287 / DS12887 / DS12B887 19 | * Benchmarq BQ3287 20 | * ODIN OEC12C887 21 | 22 | 23 | ## Bill of Materials 24 | 25 | Part | # | Description 26 | -----|---|------------------------------------- 27 | U1 | 1 | Real-Time Clock BQ3285LDSS SSOP-24 28 | Y1 | 1 | Crystal oscillator 32.768kHz 6pF 29 | BT1 | 1 | CR1220 / CR1225 SMD battery holder 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /kicad/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name nw12887)(type KiCad)(uri ${KIPRJMOD}/nw12887.pretty)(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /kicad/nw12887.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /kicad/nw12887.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20171130) (host pcbnew 5.1.10) 2 | 3 | (general 4 | (thickness 1.6) 5 | (drawings 9) 6 | (tracks 123) 7 | (zones 0) 8 | (modules 4) 9 | (nets 22) 10 | ) 11 | 12 | (page A4) 13 | (title_block 14 | (title NW12887) 15 | (date 2021-05-21) 16 | (rev 1) 17 | (company Necroware) 18 | (comment 1 "by Scorp") 19 | ) 20 | 21 | (layers 22 | (0 F.Cu signal) 23 | (31 B.Cu signal) 24 | (32 B.Adhes user) 25 | (33 F.Adhes user) 26 | (34 B.Paste user) 27 | (35 F.Paste user) 28 | (36 B.SilkS user) 29 | (37 F.SilkS user) 30 | (38 B.Mask user) 31 | (39 F.Mask user) 32 | (40 Dwgs.User user) 33 | (41 Cmts.User user) 34 | (42 Eco1.User user) 35 | (43 Eco2.User user) 36 | (44 Edge.Cuts user) 37 | (45 Margin user) 38 | (46 B.CrtYd user) 39 | (47 F.CrtYd user) 40 | (48 B.Fab user hide) 41 | (49 F.Fab user hide) 42 | ) 43 | 44 | (setup 45 | (last_trace_width 0.2) 46 | (trace_clearance 0.15) 47 | (zone_clearance 0.254) 48 | (zone_45_only no) 49 | (trace_min 0.2) 50 | (via_size 0.5) 51 | (via_drill 0.3) 52 | (via_min_size 0.4) 53 | (via_min_drill 0.3) 54 | (uvia_size 0.3) 55 | (uvia_drill 0.1) 56 | (uvias_allowed yes) 57 | (uvia_min_size 0.2) 58 | (uvia_min_drill 0.1) 59 | (edge_width 0.05) 60 | (segment_width 0.2) 61 | (pcb_text_width 0.3) 62 | (pcb_text_size 1.5 1.5) 63 | (mod_edge_width 0.12) 64 | (mod_text_size 1 1) 65 | (mod_text_width 0.15) 66 | (pad_size 1.524 1.524) 67 | (pad_drill 0.762) 68 | (pad_to_mask_clearance 0) 69 | (aux_axis_origin 0 0) 70 | (visible_elements FFFFFF7F) 71 | (pcbplotparams 72 | (layerselection 0x010fc_ffffffff) 73 | (usegerberextensions false) 74 | (usegerberattributes false) 75 | (usegerberadvancedattributes true) 76 | (creategerberjobfile true) 77 | (excludeedgelayer true) 78 | (linewidth 0.100000) 79 | (plotframeref false) 80 | (viasonmask false) 81 | (mode 1) 82 | (useauxorigin false) 83 | (hpglpennumber 1) 84 | (hpglpenspeed 20) 85 | (hpglpendiameter 15.000000) 86 | (psnegative false) 87 | (psa4output false) 88 | (plotreference true) 89 | (plotvalue true) 90 | (plotinvisibletext false) 91 | (padsonsilk false) 92 | (subtractmaskfromsilk false) 93 | (outputformat 1) 94 | (mirror false) 95 | (drillshape 0) 96 | (scaleselection 1) 97 | (outputdirectory "./gerber")) 98 | ) 99 | 100 | (net 0 "") 101 | (net 1 GND) 102 | (net 2 VCC) 103 | (net 3 SQW) 104 | (net 4 AD7) 105 | (net 5 AD6) 106 | (net 6 AD5) 107 | (net 7 AD4) 108 | (net 8 INT) 109 | (net 9 AD3) 110 | (net 10 RST) 111 | (net 11 AD2) 112 | (net 12 DS) 113 | (net 13 AD1) 114 | (net 14 AD0) 115 | (net 15 RW) 116 | (net 16 AS) 117 | (net 17 CS) 118 | (net 18 MOT) 119 | (net 19 BC) 120 | (net 20 X2) 121 | (net 21 X1) 122 | 123 | (net_class Default "This is the default net class." 124 | (clearance 0.15) 125 | (trace_width 0.2) 126 | (via_dia 0.5) 127 | (via_drill 0.3) 128 | (uvia_dia 0.3) 129 | (uvia_drill 0.1) 130 | (add_net AD0) 131 | (add_net AD1) 132 | (add_net AD2) 133 | (add_net AD3) 134 | (add_net AD4) 135 | (add_net AD5) 136 | (add_net AD6) 137 | (add_net AD7) 138 | (add_net AS) 139 | (add_net CS) 140 | (add_net DS) 141 | (add_net INT) 142 | (add_net MOT) 143 | (add_net "Net-(U1-Pad21)") 144 | (add_net "Net-(U1-Pad22)") 145 | (add_net "Net-(U2-Pad16)") 146 | (add_net "Net-(U2-Pad2)") 147 | (add_net "Net-(U2-Pad20)") 148 | (add_net "Net-(U2-Pad21)") 149 | (add_net "Net-(U2-Pad22)") 150 | (add_net "Net-(U2-Pad3)") 151 | (add_net RST) 152 | (add_net RW) 153 | (add_net SQW) 154 | (add_net X1) 155 | (add_net X2) 156 | ) 157 | 158 | (net_class Power "" 159 | (clearance 0.2) 160 | (trace_width 0.35) 161 | (via_dia 0.5) 162 | (via_drill 0.3) 163 | (uvia_dia 0.3) 164 | (uvia_drill 0.1) 165 | (add_net BC) 166 | (add_net GND) 167 | (add_net VCC) 168 | ) 169 | 170 | (module Package_DIP:DIP-24_W15.24mm_Socket (layer F.Cu) (tedit 60A81ED2) (tstamp 60A7C2D7) 171 | (at 127 79.459001) 172 | (descr "24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket") 173 | (tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket") 174 | (path /60A068FA) 175 | (fp_text reference U2 (at 7.62 -2.33) (layer F.SilkS) hide 176 | (effects (font (size 1 1) (thickness 0.15))) 177 | ) 178 | (fp_text value ds12887 (at 7.62 30.27) (layer F.Fab) hide 179 | (effects (font (size 1 1) (thickness 0.15))) 180 | ) 181 | (fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer F.Fab) (width 0.1)) 182 | (fp_line (start 14.985 -1.27) (end 14.985 29.21) (layer F.Fab) (width 0.1)) 183 | (fp_line (start 14.985 29.21) (end 0.255 29.21) (layer F.Fab) (width 0.1)) 184 | (fp_line (start 0.255 29.21) (end 0.255 -0.27) (layer F.Fab) (width 0.1)) 185 | (fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer F.Fab) (width 0.1)) 186 | (fp_line (start -1.27 -1.33) (end -1.27 29.27) (layer F.Fab) (width 0.1)) 187 | (fp_line (start -1.27 29.27) (end 16.51 29.27) (layer F.Fab) (width 0.1)) 188 | (fp_line (start 16.51 29.27) (end 16.51 -1.33) (layer F.Fab) (width 0.1)) 189 | (fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer F.Fab) (width 0.1)) 190 | (fp_line (start -1.55 -1.6) (end -1.55 29.55) (layer F.CrtYd) (width 0.05)) 191 | (fp_line (start -1.55 29.55) (end 16.8 29.55) (layer F.CrtYd) (width 0.05)) 192 | (fp_line (start 16.8 29.55) (end 16.8 -1.6) (layer F.CrtYd) (width 0.05)) 193 | (fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer F.CrtYd) (width 0.05)) 194 | (fp_text user %R (at 7.62 13.97) (layer F.Fab) hide 195 | (effects (font (size 1 1) (thickness 0.15))) 196 | ) 197 | (pad 24 thru_hole oval (at 15.24 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 198 | (net 2 VCC)) 199 | (pad 12 thru_hole oval (at 0 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 200 | (net 1 GND)) 201 | (pad 23 thru_hole oval (at 15.24 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 202 | (net 3 SQW)) 203 | (pad 11 thru_hole oval (at 0 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 204 | (net 4 AD7)) 205 | (pad 22 thru_hole oval (at 15.24 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)) 206 | (pad 10 thru_hole oval (at 0 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 207 | (net 5 AD6)) 208 | (pad 21 thru_hole oval (at 15.24 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)) 209 | (pad 9 thru_hole oval (at 0 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 210 | (net 6 AD5)) 211 | (pad 20 thru_hole oval (at 15.24 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)) 212 | (pad 8 thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 213 | (net 7 AD4)) 214 | (pad 19 thru_hole oval (at 15.24 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 215 | (net 8 INT)) 216 | (pad 7 thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 217 | (net 9 AD3)) 218 | (pad 18 thru_hole oval (at 15.24 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 219 | (net 10 RST)) 220 | (pad 6 thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 221 | (net 11 AD2)) 222 | (pad 17 thru_hole oval (at 15.24 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 223 | (net 12 DS)) 224 | (pad 5 thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 225 | (net 13 AD1)) 226 | (pad 16 thru_hole oval (at 15.24 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)) 227 | (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 228 | (net 14 AD0)) 229 | (pad 15 thru_hole oval (at 15.24 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 230 | (net 15 RW)) 231 | (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)) 232 | (pad 14 thru_hole oval (at 15.24 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 233 | (net 16 AS)) 234 | (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)) 235 | (pad 13 thru_hole oval (at 15.24 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 236 | (net 17 CS)) 237 | (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) 238 | (net 18 MOT)) 239 | (model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-24_W15.24mm_Socket.wrl 240 | (at (xyz 0 0 0)) 241 | (scale (xyz 1 1 1)) 242 | (rotate (xyz 0 0 0)) 243 | ) 244 | ) 245 | 246 | (module Package_SO:SSOP-24_3.9x8.7mm_P0.635mm (layer B.Cu) (tedit 5A02F25C) (tstamp 60A861C4) 247 | (at 134.6616 90.17 180) 248 | (descr "SSOP24: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot556-1_po.pdf)") 249 | (tags "SSOP 0.635") 250 | (path /60A06FF2) 251 | (attr smd) 252 | (fp_text reference U1 (at 0 5.4) (layer B.SilkS) 253 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 254 | ) 255 | (fp_text value ds12887 (at 0 -5.4) (layer B.Fab) 256 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 257 | ) 258 | (fp_line (start -0.95 4.35) (end 1.95 4.35) (layer B.Fab) (width 0.15)) 259 | (fp_line (start 1.95 4.35) (end 1.95 -4.35) (layer B.Fab) (width 0.15)) 260 | (fp_line (start 1.95 -4.35) (end -1.95 -4.35) (layer B.Fab) (width 0.15)) 261 | (fp_line (start -1.95 -4.35) (end -1.95 3.35) (layer B.Fab) (width 0.15)) 262 | (fp_line (start -1.95 3.35) (end -0.95 4.35) (layer B.Fab) (width 0.15)) 263 | (fp_line (start -3.45 4.65) (end -3.45 -4.65) (layer B.CrtYd) (width 0.05)) 264 | (fp_line (start 3.45 4.65) (end 3.45 -4.65) (layer B.CrtYd) (width 0.05)) 265 | (fp_line (start -3.45 4.65) (end 3.45 4.65) (layer B.CrtYd) (width 0.05)) 266 | (fp_line (start -3.45 -4.65) (end 3.45 -4.65) (layer B.CrtYd) (width 0.05)) 267 | (fp_line (start -2.075 4.475) (end -2.075 4) (layer B.SilkS) (width 0.15)) 268 | (fp_line (start 2.075 4.475) (end 2.075 3.9175) (layer B.SilkS) (width 0.15)) 269 | (fp_line (start 2.075 -4.475) (end 2.075 -3.9175) (layer B.SilkS) (width 0.15)) 270 | (fp_line (start -2.075 -4.475) (end -2.075 -3.9175) (layer B.SilkS) (width 0.15)) 271 | (fp_line (start -2.075 4.475) (end 2.075 4.475) (layer B.SilkS) (width 0.15)) 272 | (fp_line (start -2.075 -4.475) (end 2.075 -4.475) (layer B.SilkS) (width 0.15)) 273 | (fp_line (start -2.075 4) (end -3.2 4) (layer B.SilkS) (width 0.15)) 274 | (fp_text user %R (at 0 0) (layer B.Fab) 275 | (effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror)) 276 | ) 277 | (pad 24 smd rect (at 2.6 3.4925 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 278 | (net 2 VCC)) 279 | (pad 23 smd rect (at 2.6 2.8575 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 280 | (net 3 SQW)) 281 | (pad 22 smd rect (at 2.6 2.2225 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask)) 282 | (pad 21 smd rect (at 2.6 1.5875 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask)) 283 | (pad 20 smd rect (at 2.6 0.9525 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 284 | (net 19 BC)) 285 | (pad 19 smd rect (at 2.6 0.3175 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 286 | (net 8 INT)) 287 | (pad 18 smd rect (at 2.6 -0.3175 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 288 | (net 10 RST)) 289 | (pad 17 smd rect (at 2.6 -0.9525 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 290 | (net 12 DS)) 291 | (pad 16 smd rect (at 2.6 -1.5875 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 292 | (net 1 GND)) 293 | (pad 15 smd rect (at 2.6 -2.2225 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 294 | (net 15 RW)) 295 | (pad 14 smd rect (at 2.6 -2.8575 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 296 | (net 16 AS)) 297 | (pad 13 smd rect (at 2.6 -3.4925 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 298 | (net 17 CS)) 299 | (pad 12 smd rect (at -2.6 -3.4925 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 300 | (net 1 GND)) 301 | (pad 11 smd rect (at -2.6 -2.8575 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 302 | (net 4 AD7)) 303 | (pad 10 smd rect (at -2.6 -2.2225 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 304 | (net 5 AD6)) 305 | (pad 9 smd rect (at -2.6 -1.5875 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 306 | (net 6 AD5)) 307 | (pad 8 smd rect (at -2.6 -0.9525 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 308 | (net 7 AD4)) 309 | (pad 7 smd rect (at -2.6 -0.3175 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 310 | (net 9 AD3)) 311 | (pad 6 smd rect (at -2.6 0.3175 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 312 | (net 11 AD2)) 313 | (pad 5 smd rect (at -2.6 0.9525 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 314 | (net 13 AD1)) 315 | (pad 4 smd rect (at -2.6 1.5875 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 316 | (net 14 AD0)) 317 | (pad 3 smd rect (at -2.6 2.2225 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 318 | (net 20 X2)) 319 | (pad 2 smd rect (at -2.6 2.8575 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 320 | (net 21 X1)) 321 | (pad 1 smd rect (at -2.6 3.4925 180) (size 1.2 0.4) (layers B.Cu B.Paste B.Mask) 322 | (net 18 MOT)) 323 | (model ${KISYS3DMOD}/Package_SO.3dshapes/SSOP-24_3.9x8.7mm_P0.635mm.wrl 324 | (at (xyz 0 0 0)) 325 | (scale (xyz 1 1 1)) 326 | (rotate (xyz 0 0 0)) 327 | ) 328 | ) 329 | 330 | (module nw12887:BatteryHolder_CR1220 (layer F.Cu) (tedit 60A7B985) (tstamp 60A86129) 331 | (at 134.6073 92.1131 180) 332 | (path /60A1174E) 333 | (fp_text reference BT1 (at -2.7686 8.762) (layer F.SilkS) 334 | (effects (font (size 1 1) (thickness 0.15))) 335 | ) 336 | (fp_text value Battery_Cell (at 0.3 11) (layer F.Fab) 337 | (effects (font (size 1 1) (thickness 0.15))) 338 | ) 339 | (fp_circle (center 0 0) (end 0.1 -7.5) (layer F.SilkS) (width 0.12)) 340 | (fp_line (start -5 5.6) (end -5 7.9) (layer F.SilkS) (width 0.12)) 341 | (fp_line (start -5 7.9) (end 5 7.9) (layer F.SilkS) (width 0.12)) 342 | (fp_line (start 5 7.9) (end 5 5.6) (layer F.SilkS) (width 0.12)) 343 | (pad 1 smd rect (at 0 8 180) (size 2.3 4) (layers F.Cu F.Paste F.Mask) 344 | (net 19 BC)) 345 | (pad 2 smd rect (at 0 -8 180) (size 2.3 4) (layers F.Cu F.Paste F.Mask) 346 | (net 1 GND)) 347 | (pad "" thru_hole circle (at 0 -3.6 180) (size 1.2 1.2) (drill 1.2) (layers *.Cu F.SilkS)) 348 | (pad "" thru_hole circle (at 0 3.9 180) (size 1.2 1.2) (drill 1.2) (layers *.Cu F.SilkS)) 349 | ) 350 | 351 | (module Crystal:Crystal_SMD_FrontierElectronics_FM206 (layer B.Cu) (tedit 5A1AD604) (tstamp 60A7C320) 352 | (at 137.7315 100.203 180) 353 | (descr "SMD Watch Crystal FrontierElectronics FM206 6.0mm length 1.9mm diameter http://www.chinafronter.com/wp-content/uploads/2013/12/FM206.pdf") 354 | (tags ['FM206']) 355 | (path /60A0ABAA) 356 | (attr smd) 357 | (fp_text reference Y1 (at 0 -5.842 180) (layer B.SilkS) 358 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 359 | ) 360 | (fp_text value Crystal_Small (at 3.02 2.1625 90) (layer B.Fab) 361 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 362 | ) 363 | (fp_line (start -0.95 1.9) (end -0.95 -4.1) (layer B.Fab) (width 0.1)) 364 | (fp_line (start -0.95 -4.1) (end 0.95 -4.1) (layer B.Fab) (width 0.1)) 365 | (fp_line (start 0.95 -4.1) (end 0.95 1.9) (layer B.Fab) (width 0.1)) 366 | (fp_line (start 0.95 1.9) (end -0.95 1.9) (layer B.Fab) (width 0.1)) 367 | (fp_line (start -0.5 1.9) (end -1.27 2.7) (layer B.Fab) (width 0.1)) 368 | (fp_line (start -1.27 2.7) (end -1.27 3.5) (layer B.Fab) (width 0.1)) 369 | (fp_line (start 0.5 1.9) (end 1.27 2.7) (layer B.Fab) (width 0.1)) 370 | (fp_line (start 1.27 2.7) (end 1.27 3.5) (layer B.Fab) (width 0.1)) 371 | (fp_line (start -1.7 2.1) (end -1.7 -4.5) (layer B.SilkS) (width 0.12)) 372 | (fp_line (start -1.7 -4.5) (end 1.7 -4.5) (layer B.SilkS) (width 0.12)) 373 | (fp_line (start 1.7 -4.5) (end 1.7 2.1) (layer B.SilkS) (width 0.12)) 374 | (fp_line (start 1.7 2.1) (end -1.7 2.1) (layer B.SilkS) (width 0.12)) 375 | (fp_line (start -0.5 2.1) (end -1.27 2.5) (layer B.SilkS) (width 0.12)) 376 | (fp_line (start -1.27 2.5) (end -1.27 2.5) (layer B.SilkS) (width 0.12)) 377 | (fp_line (start 0.5 2.1) (end 1.27 2.5) (layer B.SilkS) (width 0.12)) 378 | (fp_line (start 1.27 2.5) (end 1.27 2.5) (layer B.SilkS) (width 0.12)) 379 | (fp_line (start -2.1 4.63) (end -2.1 -5.07) (layer B.CrtYd) (width 0.05)) 380 | (fp_line (start -2.1 -5.07) (end 2.1 -5.07) (layer B.CrtYd) (width 0.05)) 381 | (fp_line (start 2.1 -5.07) (end 2.1 4.63) (layer B.CrtYd) (width 0.05)) 382 | (fp_line (start 2.1 4.63) (end -2.1 4.63) (layer B.CrtYd) (width 0.05)) 383 | (fp_text user %R (at 0 -0.3 180) (layer B.Fab) 384 | (effects (font (size 0.6 0.6) (thickness 0.09)) (justify mirror)) 385 | ) 386 | (pad 3 smd rect (at 0 -3.05 180) (size 3 2.5) (layers B.Cu B.Paste B.Mask) 387 | (net 1 GND)) 388 | (pad 2 smd rect (at 1.27 3.5 180) (size 1 1.6) (layers B.Cu B.Paste B.Mask) 389 | (net 20 X2)) 390 | (pad 1 smd rect (at -1.27 3.5 180) (size 1 1.6) (layers B.Cu B.Paste B.Mask) 391 | (net 21 X1)) 392 | (model ${KISYS3DMOD}/Crystal.3dshapes/Crystal_SMD_FrontierElectronics_FM206.wrl 393 | (offset (xyz 0 0.224999996200839 0)) 394 | (scale (xyz 1 1 1)) 395 | (rotate (xyz 0 0 0)) 396 | ) 397 | ) 398 | 399 | (gr_line (start 125.476 77.9145) (end 133.604 77.9145) (layer Edge.Cuts) (width 0.05) (tstamp 60A7EEEB)) 400 | (gr_arc (start 134.62 77.978) (end 133.604 77.9145) (angle -187.1526687) (layer Edge.Cuts) (width 0.05)) 401 | (gr_text rev.1 (at 130.6195 79.4385) (layer F.SilkS) (tstamp 60A873CF) 402 | (effects (font (size 1.2 1) (thickness 0.1))) 403 | ) 404 | (gr_line (start 125.476 108.966) (end 125.476 77.9145) (layer Edge.Cuts) (width 0.05)) 405 | (gr_line (start 143.764 108.966) (end 125.476 108.966) (layer Edge.Cuts) (width 0.05)) 406 | (gr_line (start 143.764 77.9145) (end 143.764 108.966) (layer Edge.Cuts) (width 0.05)) 407 | (gr_line (start 135.636 77.9145) (end 143.764 77.9145) (layer Edge.Cuts) (width 0.05)) 408 | (gr_text "by Necroware" (at 134.5946 106.8578) (layer F.Mask) (tstamp 60A873FF) 409 | (effects (font (size 1.5 1.1) (thickness 0.2))) 410 | ) 411 | (gr_text NW12887 (at 134.5946 104.3686) (layer F.Mask) 412 | (effects (font (size 1.5 1.5) (thickness 0.25))) 413 | ) 414 | 415 | (via micro (at 128.27 83.312) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 1) (tstamp 60A8211A)) 416 | (via micro (at 128.27 88.138) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 1) (tstamp 60A8211A)) 417 | (via micro (at 137.668 98.806) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 1) (tstamp 60A8211A)) 418 | (via micro (at 139.954 80.772) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 1) (tstamp 60A8210A)) 419 | (via micro (at 137.668 100.838) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 1)) 420 | (segment (start 137.22 93.6625) (end 137.177007 93.705493) (width 0.35) (layer B.Cu) (net 1)) 421 | (segment (start 137.668 103.1895) (end 137.7315 103.253) (width 0.35) (layer B.Cu) (net 1)) 422 | (segment (start 137.668 101.092) (end 137.668 103.1895) (width 0.35) (layer B.Cu) (net 1)) 423 | (segment (start 130.7719 91.7575) (end 130.7719 91.7575) (width 0.35) (layer B.Cu) (net 1) (tstamp 60A89CCD)) 424 | (segment (start 136.156506 93.705493) (end 136.156506 93.705493) (width 0.35) (layer B.Cu) (net 1) (tstamp 60A89CFE)) 425 | (via micro (at 139.954 83.312) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 1)) 426 | (segment (start 132.02 83.3212) (end 132.02 86.6048) (width 0.35) (layer B.Cu) (net 2)) 427 | (segment (start 135.882199 79.459001) (end 132.02 83.3212) (width 0.35) (layer B.Cu) (net 2)) 428 | (segment (start 142.24 79.459001) (end 135.882199 79.459001) (width 0.35) (layer B.Cu) (net 2)) 429 | (segment (start 135.932999 81.999001) (end 142.24 81.999001) (width 0.2) (layer B.Cu) (net 3)) 430 | (segment (start 134.62 86.36) (end 134.62 83.312) (width 0.2) (layer B.Cu) (net 3)) 431 | (segment (start 134.62 83.312) (end 135.932999 81.999001) (width 0.2) (layer B.Cu) (net 3)) 432 | (segment (start 133.604 87.376) (end 134.62 86.36) (width 0.2) (layer B.Cu) (net 3)) 433 | (segment (start 132.02 87.376) (end 133.604 87.376) (width 0.2) (layer B.Cu) (net 3)) 434 | (segment (start 132.02 87.3125) (end 132.02 87.376) (width 0.2) (layer B.Cu) (net 3)) 435 | (segment (start 129.54 102.319001) (end 129.54 99.2251) (width 0.2) (layer F.Cu) (net 4)) 436 | (segment (start 127 104.859001) (end 129.54 102.319001) (width 0.2) (layer F.Cu) (net 4)) 437 | (segment (start 137.2073 93.0402) (end 135.7249 93.0402) (width 0.2) (layer B.Cu) (net 4)) 438 | (segment (start 137.22 93.0275) (end 137.2073 93.0402) (width 0.2) (layer B.Cu) (net 4)) 439 | (segment (start 129.54 99.2251) (end 135.7249 93.0402) (width 0.2) (layer F.Cu) (net 4)) 440 | (via micro (at 135.7249 93.0402) (size 0.3) (drill 0.1) (layers F.Cu B.Cu) (net 4)) 441 | (segment (start 135.701547 92.3417) (end 136.0551 92.3417) (width 0.2) (layer F.Cu) (net 5)) 442 | (segment (start 128.7907 99.252547) (end 135.701547 92.3417) (width 0.2) (layer F.Cu) (net 5)) 443 | (segment (start 127 102.319001) (end 128.7907 100.528301) (width 0.2) (layer F.Cu) (net 5)) 444 | (segment (start 128.7907 100.528301) (end 128.7907 99.252547) (width 0.2) (layer F.Cu) (net 5)) 445 | (segment (start 136.1059 92.3925) (end 136.0551 92.3417) (width 0.2) (layer B.Cu) (net 5)) 446 | (segment (start 137.22 92.3925) (end 136.1059 92.3925) (width 0.2) (layer B.Cu) (net 5)) 447 | (via micro (at 136.0551 92.3417) (size 0.3) (drill 0.1) (layers F.Cu B.Cu) (net 5)) 448 | (segment (start 135.688431 91.7575) (end 135.687724 91.756793) (width 0.2) (layer B.Cu) (net 6)) 449 | (segment (start 137.22 91.7575) (end 135.688431 91.7575) (width 0.2) (layer B.Cu) (net 6)) 450 | (via micro (at 135.687724 91.756793) (size 0.3) (drill 0.1) (layers F.Cu B.Cu) (net 6)) 451 | (segment (start 135.022208 91.756793) (end 135.687724 91.756793) (width 0.2) (layer F.Cu) (net 6)) 452 | (segment (start 127 99.779001) (end 135.022208 91.756793) (width 0.2) (layer F.Cu) (net 6)) 453 | (segment (start 133.116503 91.122498) (end 136.1313 91.122498) (width 0.2) (layer F.Cu) (net 7)) 454 | (segment (start 136.131302 91.1225) (end 136.1313 91.122498) (width 0.2) (layer B.Cu) (net 7)) 455 | (segment (start 137.22 91.1225) (end 136.131302 91.1225) (width 0.2) (layer B.Cu) (net 7)) 456 | (segment (start 127 97.239001) (end 133.116503 91.122498) (width 0.2) (layer F.Cu) (net 7)) 457 | (via micro (at 136.1313 91.122498) (size 0.3) (drill 0.1) (layers F.Cu B.Cu) (net 7)) 458 | (segment (start 134.437498 91.232098) (end 134.437498 93.213298) (width 0.2) (layer B.Cu) (net 8)) 459 | (segment (start 140.050011 94.34899) (end 142.24 92.159001) (width 0.2) (layer B.Cu) (net 8)) 460 | (segment (start 134.437498 93.213298) (end 135.57319 94.34899) (width 0.2) (layer B.Cu) (net 8)) 461 | (segment (start 132.02 89.8525) (end 133.0579 89.8525) (width 0.2) (layer B.Cu) (net 8)) 462 | (segment (start 133.0579 89.8525) (end 134.437498 91.232098) (width 0.2) (layer B.Cu) (net 8)) 463 | (segment (start 135.57319 94.34899) (end 140.050011 94.34899) (width 0.2) (layer B.Cu) (net 8)) 464 | (via micro (at 135.699498 90.4875) (size 0.3) (drill 0.1) (layers F.Cu B.Cu) (net 9)) 465 | (segment (start 137.22 90.4875) (end 135.699498 90.4875) (width 0.2) (layer B.Cu) (net 9)) 466 | (segment (start 127 94.699001) (end 131.211501 90.4875) (width 0.2) (layer F.Cu) (net 9)) 467 | (segment (start 131.211501 90.4875) (end 135.699498 90.4875) (width 0.2) (layer F.Cu) (net 9)) 468 | (segment (start 134.087488 91.542488) (end 134.087488 93.358278) (width 0.2) (layer B.Cu) (net 10)) 469 | (segment (start 132.02 90.4875) (end 133.0325 90.4875) (width 0.2) (layer B.Cu) (net 10)) 470 | (segment (start 134.087488 93.358278) (end 135.428211 94.699001) (width 0.2) (layer B.Cu) (net 10)) 471 | (segment (start 135.428211 94.699001) (end 142.24 94.699001) (width 0.2) (layer B.Cu) (net 10)) 472 | (segment (start 133.0325 90.4875) (end 134.087488 91.542488) (width 0.2) (layer B.Cu) (net 10)) 473 | (segment (start 137.22 89.8525) (end 136.194772 89.8525) (width 0.2) (layer B.Cu) (net 11)) 474 | (via micro (at 136.156632 89.814386) (size 0.3) (drill 0.1) (layers F.Cu B.Cu) (net 11)) 475 | (segment (start 127 92.159001) (end 129.344615 89.814386) (width 0.2) (layer F.Cu) (net 11)) 476 | (segment (start 129.344615 89.814386) (end 136.156632 89.814386) (width 0.2) (layer F.Cu) (net 11)) 477 | (segment (start 132.705336 91.1225) (end 133.737477 92.154641) (width 0.2) (layer B.Cu) (net 12)) 478 | (segment (start 140.060499 95.0595) (end 142.24 97.239001) (width 0.2) (layer B.Cu) (net 12)) 479 | (segment (start 132.02 91.1225) (end 132.705336 91.1225) (width 0.2) (layer B.Cu) (net 12)) 480 | (segment (start 135.29372 95.0595) (end 140.060499 95.0595) (width 0.2) (layer B.Cu) (net 12)) 481 | (segment (start 133.737477 93.503257) (end 135.29372 95.0595) (width 0.2) (layer B.Cu) (net 12)) 482 | (segment (start 133.737477 92.154641) (end 133.737477 93.503257) (width 0.2) (layer B.Cu) (net 12)) 483 | (via micro (at 135.712198 89.2175) (size 0.3) (drill 0.1) (layers F.Cu B.Cu) (net 13)) 484 | (segment (start 137.22 89.2175) (end 135.712198 89.2175) (width 0.2) (layer B.Cu) (net 13)) 485 | (segment (start 127 89.619001) (end 127.401501 89.2175) (width 0.2) (layer F.Cu) (net 13)) 486 | (segment (start 127.401501 89.2175) (end 135.712198 89.2175) (width 0.2) (layer F.Cu) (net 13)) 487 | (via micro (at 136.144006 88.5825) (size 0.3) (drill 0.1) (layers F.Cu B.Cu) (net 14)) 488 | (segment (start 137.22 88.5825) (end 136.144006 88.5825) (width 0.2) (layer B.Cu) (net 14)) 489 | (segment (start 136.144006 87.845906) (end 136.144006 88.5825) (width 0.2) (layer F.Cu) (net 14)) 490 | (segment (start 135.377101 87.079001) (end 136.144006 87.845906) (width 0.2) (layer F.Cu) (net 14)) 491 | (segment (start 127 87.079001) (end 135.377101 87.079001) (width 0.2) (layer F.Cu) (net 14)) 492 | (segment (start 132.8928 92.3925) (end 133.387468 92.887168) (width 0.2) (layer B.Cu) (net 15)) 493 | (segment (start 132.02 92.3925) (end 132.8928 92.3925) (width 0.2) (layer B.Cu) (net 15)) 494 | (segment (start 133.387468 92.887168) (end 133.387468 96.824478) (width 0.2) (layer B.Cu) (net 15)) 495 | (segment (start 133.387468 96.824478) (end 136.161979 99.598989) (width 0.2) (layer B.Cu) (net 15)) 496 | (segment (start 139.519988 99.598989) (end 142.24 102.319001) (width 0.2) (layer B.Cu) (net 15)) 497 | (segment (start 136.161979 99.598989) (end 139.519988 99.598989) (width 0.2) (layer B.Cu) (net 15)) 498 | (segment (start 132.02 93.0275) (end 132.82 93.0275) (width 0.2) (layer B.Cu) (net 16)) 499 | (segment (start 139.192 99.949) (end 140.6525 101.4095) (width 0.2) (layer B.Cu) (net 16)) 500 | (segment (start 132.82 93.0275) (end 133.037457 93.244957) (width 0.2) (layer B.Cu) (net 16)) 501 | (segment (start 140.6525 103.271501) (end 142.24 104.859001) (width 0.2) (layer B.Cu) (net 16)) 502 | (segment (start 133.037457 96.969457) (end 136.017 99.949) (width 0.2) (layer B.Cu) (net 16)) 503 | (segment (start 140.6525 101.4095) (end 140.6525 103.271501) (width 0.2) (layer B.Cu) (net 16)) 504 | (segment (start 133.037457 93.244957) (end 133.037457 96.969457) (width 0.2) (layer B.Cu) (net 16)) 505 | (segment (start 136.017 99.949) (end 139.192 99.949) (width 0.2) (layer B.Cu) (net 16)) 506 | (segment (start 141.10863 107.399001) (end 142.24 107.399001) (width 0.2) (layer B.Cu) (net 17)) 507 | (segment (start 137.053501 107.399001) (end 141.10863 107.399001) (width 0.2) (layer B.Cu) (net 17)) 508 | (segment (start 132.02 102.3655) (end 137.053501 107.399001) (width 0.2) (layer B.Cu) (net 17)) 509 | (segment (start 132.02 93.6625) (end 132.02 102.3655) (width 0.2) (layer B.Cu) (net 17)) 510 | (via micro (at 136.1313 86.6775) (size 0.3) (drill 0.1) (layers F.Cu B.Cu) (net 18)) 511 | (segment (start 137.22 86.6775) (end 136.1313 86.6775) (width 0.2) (layer B.Cu) (net 18)) 512 | (segment (start 127 79.459001) (end 129.0955 81.554501) (width 0.2) (layer F.Cu) (net 18)) 513 | (segment (start 129.0955 81.554501) (end 129.0955 85.344) (width 0.2) (layer F.Cu) (net 18)) 514 | (segment (start 130.429 86.6775) (end 136.1313 86.6775) (width 0.2) (layer F.Cu) (net 18)) 515 | (segment (start 129.0955 85.344) (end 130.429 86.6775) (width 0.2) (layer F.Cu) (net 18)) 516 | (via (at 130.556 84.328) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 19)) 517 | (segment (start 134.3924 84.328) (end 134.6073 84.1131) (width 0.35) (layer F.Cu) (net 19)) 518 | (segment (start 130.556 84.328) (end 134.3924 84.328) (width 0.35) (layer F.Cu) (net 19)) 519 | (segment (start 130.556 84.328) (end 130.556 88.9) (width 0.35) (layer B.Cu) (net 19)) 520 | (segment (start 130.8735 89.2175) (end 132.0616 89.2175) (width 0.35) (layer B.Cu) (net 19)) 521 | (segment (start 130.556 88.9) (end 130.8735 89.2175) (width 0.35) (layer B.Cu) (net 19)) 522 | (segment (start 138.612557 87.9475) (end 138.619405 87.954348) (width 0.2) (layer B.Cu) (net 20)) 523 | (via micro (at 138.619405 87.954348) (size 0.3) (drill 0.1) (layers F.Cu B.Cu) (net 20)) 524 | (segment (start 137.22 87.9475) (end 138.612557 87.9475) (width 0.2) (layer B.Cu) (net 20)) 525 | (via micro (at 137.414004 96.7105) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 20)) 526 | (segment (start 138.619405 87.954348) (end 138.619405 95.505099) (width 0.2) (layer F.Cu) (net 20)) 527 | (segment (start 138.619405 95.505099) (end 137.414004 96.7105) (width 0.2) (layer F.Cu) (net 20)) 528 | (segment (start 137.406504 96.703) (end 137.414004 96.7105) (width 0.2) (layer B.Cu) (net 20)) 529 | (segment (start 136.4615 96.703) (end 137.406504 96.703) (width 0.2) (layer B.Cu) (net 20)) 530 | (via micro (at 139.344404 87.3252) (size 0.3) (drill 0.1) (layers F.Cu B.Cu) (net 21)) 531 | (segment (start 137.22 87.3125) (end 139.331704 87.3125) (width 0.2) (layer B.Cu) (net 21)) 532 | (segment (start 139.331704 87.3125) (end 139.344404 87.3252) (width 0.2) (layer B.Cu) (net 21)) 533 | (via micro (at 139.954006 96.710498) (size 0.5) (drill 0.3) (layers F.Cu B.Cu) (net 21)) 534 | (segment (start 139.954006 87.934802) (end 139.954006 96.710498) (width 0.2) (layer F.Cu) (net 21)) 535 | (segment (start 139.344404 87.3252) (end 139.954006 87.934802) (width 0.2) (layer F.Cu) (net 21)) 536 | (segment (start 139.946508 96.703) (end 139.954006 96.710498) (width 0.2) (layer B.Cu) (net 21)) 537 | (segment (start 139.0015 96.703) (end 139.946508 96.703) (width 0.2) (layer B.Cu) (net 21)) 538 | 539 | (zone (net 1) (net_name GND) (layer F.Cu) (tstamp 60BA817F) (hatch edge 0.508) 540 | (connect_pads (clearance 0.254)) 541 | (min_thickness 0.254) 542 | (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) 543 | (polygon 544 | (pts 545 | (xy 143.3195 108.712) (xy 125.9205 108.712) (xy 125.9205 78.232) (xy 143.3195 78.232) 546 | ) 547 | ) 548 | (filled_polygon 549 | (pts 550 | (xy 133.25881 78.392715) (xy 133.26082 78.398016) (xy 133.33259 78.583274) (xy 133.349168 78.616126) (xy 133.365285 78.649205) 551 | (xy 133.368287 78.654014) (xy 133.474673 78.821805) (xy 133.497349 78.850855) (xy 133.519552 78.88013) (xy 133.52343 78.884265) 552 | (xy 133.660382 79.028197) (xy 133.688226 79.052251) (xy 133.715734 79.076695) (xy 133.720342 79.079997) (xy 133.882641 79.194587) 553 | (xy 133.914663 79.212796) (xy 133.946361 79.23141) (xy 133.951523 79.233755) (xy 134.132989 79.314638) (xy 134.16792 79.326274) 554 | (xy 134.202644 79.338382) (xy 134.208162 79.339679) (xy 134.208165 79.33968) (xy 134.208168 79.33968) (xy 134.401883 79.383776) 555 | (xy 134.438406 79.388405) (xy 134.474827 79.393539) (xy 134.48049 79.39374) (xy 134.480493 79.39374) (xy 134.679088 79.399369) 556 | (xy 134.715799 79.396817) (xy 134.752537 79.394778) (xy 134.758133 79.393874) (xy 134.758137 79.393874) (xy 134.954041 79.360822) 557 | (xy 134.989596 79.351178) (xy 135.0252 79.342052) (xy 135.030511 79.34008) (xy 135.030515 79.340079) (xy 135.030518 79.340077) 558 | (xy 135.21627 79.269605) (xy 135.249251 79.25325) (xy 135.28243 79.23737) (xy 135.28726 79.234402) (xy 135.45579 79.129189) 559 | (xy 135.484998 79.106715) (xy 135.514426 79.084719) (xy 135.518584 79.080873) (xy 135.518589 79.080869) (xy 135.518593 79.080864) 560 | (xy 135.663472 78.944927) (xy 135.68775 78.917218) (xy 135.712355 78.889913) (xy 135.71569 78.885328) (xy 135.83141 78.723832) 561 | (xy 135.849823 78.69197) (xy 135.868675 78.660375) (xy 135.871056 78.65523) (xy 135.953205 78.474334) (xy 135.965091 78.439467) 562 | (xy 135.977436 78.404841) (xy 135.978772 78.399331) (xy 135.988249 78.359) (xy 141.809538 78.359) (xy 141.680587 78.412413) 563 | (xy 141.487157 78.541659) (xy 141.322658 78.706158) (xy 141.193412 78.899588) (xy 141.104386 79.114516) (xy 141.059 79.342683) 564 | (xy 141.059 79.575319) (xy 141.104386 79.803486) (xy 141.193412 80.018414) (xy 141.322658 80.211844) (xy 141.487157 80.376343) 565 | (xy 141.680587 80.505589) (xy 141.895515 80.594615) (xy 142.123682 80.640001) (xy 142.356318 80.640001) (xy 142.584485 80.594615) 566 | (xy 142.799413 80.505589) (xy 142.992843 80.376343) (xy 143.157342 80.211844) (xy 143.1925 80.159226) (xy 143.1925 81.298776) 567 | (xy 143.157342 81.246158) (xy 142.992843 81.081659) (xy 142.799413 80.952413) (xy 142.584485 80.863387) (xy 142.356318 80.818001) 568 | (xy 142.123682 80.818001) (xy 141.895515 80.863387) (xy 141.680587 80.952413) (xy 141.487157 81.081659) (xy 141.322658 81.246158) 569 | (xy 141.193412 81.439588) (xy 141.104386 81.654516) (xy 141.059 81.882683) (xy 141.059 82.115319) (xy 141.104386 82.343486) 570 | (xy 141.193412 82.558414) (xy 141.322658 82.751844) (xy 141.487157 82.916343) (xy 141.680587 83.045589) (xy 141.895515 83.134615) 571 | (xy 142.123682 83.180001) (xy 142.356318 83.180001) (xy 142.584485 83.134615) (xy 142.799413 83.045589) (xy 142.992843 82.916343) 572 | (xy 143.157342 82.751844) (xy 143.1925 82.699226) (xy 143.1925 83.838776) (xy 143.157342 83.786158) (xy 142.992843 83.621659) 573 | (xy 142.799413 83.492413) (xy 142.584485 83.403387) (xy 142.356318 83.358001) (xy 142.123682 83.358001) (xy 141.895515 83.403387) 574 | (xy 141.680587 83.492413) (xy 141.487157 83.621659) (xy 141.322658 83.786158) (xy 141.193412 83.979588) (xy 141.104386 84.194516) 575 | (xy 141.059 84.422683) (xy 141.059 84.655319) (xy 141.104386 84.883486) (xy 141.193412 85.098414) (xy 141.322658 85.291844) 576 | (xy 141.487157 85.456343) (xy 141.680587 85.585589) (xy 141.895515 85.674615) (xy 142.123682 85.720001) (xy 142.356318 85.720001) 577 | (xy 142.584485 85.674615) (xy 142.799413 85.585589) (xy 142.992843 85.456343) (xy 143.157342 85.291844) (xy 143.1925 85.239226) 578 | (xy 143.1925 86.378776) (xy 143.157342 86.326158) (xy 142.992843 86.161659) (xy 142.799413 86.032413) (xy 142.584485 85.943387) 579 | (xy 142.356318 85.898001) (xy 142.123682 85.898001) (xy 141.895515 85.943387) (xy 141.680587 86.032413) (xy 141.487157 86.161659) 580 | (xy 141.322658 86.326158) (xy 141.193412 86.519588) (xy 141.104386 86.734516) (xy 141.059 86.962683) (xy 141.059 87.195319) 581 | (xy 141.104386 87.423486) (xy 141.193412 87.638414) (xy 141.322658 87.831844) (xy 141.487157 87.996343) (xy 141.680587 88.125589) 582 | (xy 141.895515 88.214615) (xy 142.123682 88.260001) (xy 142.356318 88.260001) (xy 142.584485 88.214615) (xy 142.799413 88.125589) 583 | (xy 142.992843 87.996343) (xy 143.157342 87.831844) (xy 143.1925 87.779226) (xy 143.1925 88.918776) (xy 143.157342 88.866158) 584 | (xy 142.992843 88.701659) (xy 142.799413 88.572413) (xy 142.584485 88.483387) (xy 142.356318 88.438001) (xy 142.123682 88.438001) 585 | (xy 141.895515 88.483387) (xy 141.680587 88.572413) (xy 141.487157 88.701659) (xy 141.322658 88.866158) (xy 141.193412 89.059588) 586 | (xy 141.104386 89.274516) (xy 141.059 89.502683) (xy 141.059 89.735319) (xy 141.104386 89.963486) (xy 141.193412 90.178414) 587 | (xy 141.322658 90.371844) (xy 141.487157 90.536343) (xy 141.680587 90.665589) (xy 141.895515 90.754615) (xy 142.123682 90.800001) 588 | (xy 142.356318 90.800001) (xy 142.584485 90.754615) (xy 142.799413 90.665589) (xy 142.992843 90.536343) (xy 143.157342 90.371844) 589 | (xy 143.1925 90.319226) (xy 143.1925 91.458776) (xy 143.157342 91.406158) (xy 142.992843 91.241659) (xy 142.799413 91.112413) 590 | (xy 142.584485 91.023387) (xy 142.356318 90.978001) (xy 142.123682 90.978001) (xy 141.895515 91.023387) (xy 141.680587 91.112413) 591 | (xy 141.487157 91.241659) (xy 141.322658 91.406158) (xy 141.193412 91.599588) (xy 141.104386 91.814516) (xy 141.059 92.042683) 592 | (xy 141.059 92.275319) (xy 141.104386 92.503486) (xy 141.193412 92.718414) (xy 141.322658 92.911844) (xy 141.487157 93.076343) 593 | (xy 141.680587 93.205589) (xy 141.895515 93.294615) (xy 142.123682 93.340001) (xy 142.356318 93.340001) (xy 142.584485 93.294615) 594 | (xy 142.799413 93.205589) (xy 142.992843 93.076343) (xy 143.157342 92.911844) (xy 143.1925 92.859226) (xy 143.1925 93.998776) 595 | (xy 143.157342 93.946158) (xy 142.992843 93.781659) (xy 142.799413 93.652413) (xy 142.584485 93.563387) (xy 142.356318 93.518001) 596 | (xy 142.123682 93.518001) (xy 141.895515 93.563387) (xy 141.680587 93.652413) (xy 141.487157 93.781659) (xy 141.322658 93.946158) 597 | (xy 141.193412 94.139588) (xy 141.104386 94.354516) (xy 141.059 94.582683) (xy 141.059 94.815319) (xy 141.104386 95.043486) 598 | (xy 141.193412 95.258414) (xy 141.322658 95.451844) (xy 141.487157 95.616343) (xy 141.680587 95.745589) (xy 141.895515 95.834615) 599 | (xy 142.123682 95.880001) (xy 142.356318 95.880001) (xy 142.584485 95.834615) (xy 142.799413 95.745589) (xy 142.992843 95.616343) 600 | (xy 143.157342 95.451844) (xy 143.1925 95.399226) (xy 143.1925 96.538776) (xy 143.157342 96.486158) (xy 142.992843 96.321659) 601 | (xy 142.799413 96.192413) (xy 142.584485 96.103387) (xy 142.356318 96.058001) (xy 142.123682 96.058001) (xy 141.895515 96.103387) 602 | (xy 141.680587 96.192413) (xy 141.487157 96.321659) (xy 141.322658 96.486158) (xy 141.193412 96.679588) (xy 141.104386 96.894516) 603 | (xy 141.059 97.122683) (xy 141.059 97.355319) (xy 141.104386 97.583486) (xy 141.193412 97.798414) (xy 141.322658 97.991844) 604 | (xy 141.487157 98.156343) (xy 141.680587 98.285589) (xy 141.895515 98.374615) (xy 142.123682 98.420001) (xy 142.356318 98.420001) 605 | (xy 142.584485 98.374615) (xy 142.799413 98.285589) (xy 142.992843 98.156343) (xy 143.157342 97.991844) (xy 143.1925 97.939226) 606 | (xy 143.1925 99.078776) (xy 143.157342 99.026158) (xy 142.992843 98.861659) (xy 142.799413 98.732413) (xy 142.584485 98.643387) 607 | (xy 142.356318 98.598001) (xy 142.123682 98.598001) (xy 141.895515 98.643387) (xy 141.680587 98.732413) (xy 141.487157 98.861659) 608 | (xy 141.322658 99.026158) (xy 141.193412 99.219588) (xy 141.104386 99.434516) (xy 141.059 99.662683) (xy 141.059 99.895319) 609 | (xy 141.104386 100.123486) (xy 141.193412 100.338414) (xy 141.322658 100.531844) (xy 141.487157 100.696343) (xy 141.680587 100.825589) 610 | (xy 141.895515 100.914615) (xy 142.123682 100.960001) (xy 142.356318 100.960001) (xy 142.584485 100.914615) (xy 142.799413 100.825589) 611 | (xy 142.992843 100.696343) (xy 143.157342 100.531844) (xy 143.1925 100.479226) (xy 143.1925 101.618776) (xy 143.157342 101.566158) 612 | (xy 142.992843 101.401659) (xy 142.799413 101.272413) (xy 142.584485 101.183387) (xy 142.356318 101.138001) (xy 142.123682 101.138001) 613 | (xy 141.895515 101.183387) (xy 141.680587 101.272413) (xy 141.487157 101.401659) (xy 141.322658 101.566158) (xy 141.193412 101.759588) 614 | (xy 141.104386 101.974516) (xy 141.059 102.202683) (xy 141.059 102.435319) (xy 141.104386 102.663486) (xy 141.193412 102.878414) 615 | (xy 141.322658 103.071844) (xy 141.487157 103.236343) (xy 141.680587 103.365589) (xy 141.895515 103.454615) (xy 142.123682 103.500001) 616 | (xy 142.356318 103.500001) (xy 142.584485 103.454615) (xy 142.799413 103.365589) (xy 142.992843 103.236343) (xy 143.157342 103.071844) 617 | (xy 143.1925 103.019226) (xy 143.1925 104.158776) (xy 143.157342 104.106158) (xy 142.992843 103.941659) (xy 142.799413 103.812413) 618 | (xy 142.584485 103.723387) (xy 142.356318 103.678001) (xy 142.123682 103.678001) (xy 141.895515 103.723387) (xy 141.680587 103.812413) 619 | (xy 141.487157 103.941659) (xy 141.322658 104.106158) (xy 141.193412 104.299588) (xy 141.104386 104.514516) (xy 141.059 104.742683) 620 | (xy 141.059 104.975319) (xy 141.104386 105.203486) (xy 141.193412 105.418414) (xy 141.322658 105.611844) (xy 141.487157 105.776343) 621 | (xy 141.680587 105.905589) (xy 141.895515 105.994615) (xy 142.123682 106.040001) (xy 142.356318 106.040001) (xy 142.584485 105.994615) 622 | (xy 142.799413 105.905589) (xy 142.992843 105.776343) (xy 143.157342 105.611844) (xy 143.1925 105.559226) (xy 143.1925 106.698776) 623 | (xy 143.157342 106.646158) (xy 142.992843 106.481659) (xy 142.799413 106.352413) (xy 142.584485 106.263387) (xy 142.356318 106.218001) 624 | (xy 142.123682 106.218001) (xy 141.895515 106.263387) (xy 141.680587 106.352413) (xy 141.487157 106.481659) (xy 141.322658 106.646158) 625 | (xy 141.193412 106.839588) (xy 141.104386 107.054516) (xy 141.059 107.282683) (xy 141.059 107.515319) (xy 141.104386 107.743486) 626 | (xy 141.193412 107.958414) (xy 141.322658 108.151844) (xy 141.487157 108.316343) (xy 141.680587 108.445589) (xy 141.895515 108.534615) 627 | (xy 142.023132 108.56) (xy 127.840768 108.56) (xy 127.855131 108.551386) (xy 128.063519 108.362415) (xy 128.231037 108.136421) 628 | (xy 128.351246 107.882088) (xy 128.391904 107.74804) (xy 128.269915 107.526001) (xy 127.127 107.526001) (xy 127.127 107.546001) 629 | (xy 126.873 107.546001) (xy 126.873 107.526001) (xy 126.853 107.526001) (xy 126.853 107.272001) (xy 126.873 107.272001) 630 | (xy 126.873 107.252001) (xy 127.127 107.252001) (xy 127.127 107.272001) (xy 128.269915 107.272001) (xy 128.391904 107.049962) 631 | (xy 128.351246 106.915914) (xy 128.231037 106.661581) (xy 128.063519 106.435587) (xy 127.855131 106.246616) (xy 127.613881 106.101931) 632 | (xy 127.34904 106.007092) (xy 127.127002 106.128376) (xy 127.127002 106.037876) (xy 127.344485 105.994615) (xy 127.559413 105.905589) 633 | (xy 127.752843 105.776343) (xy 127.917342 105.611844) (xy 128.046588 105.418414) (xy 128.135614 105.203486) (xy 128.181 104.975319) 634 | (xy 128.181 104.742683) (xy 128.135614 104.514516) (xy 128.103134 104.436103) (xy 129.863413 102.675825) (xy 129.881764 102.660765) 635 | (xy 129.941872 102.587523) (xy 129.986536 102.503962) (xy 130.01404 102.413293) (xy 130.021 102.342627) (xy 130.021 102.342618) 636 | (xy 130.023326 102.319002) (xy 130.021 102.295386) (xy 130.021 102.1131) (xy 132.819228 102.1131) (xy 132.831488 102.237582) 637 | (xy 132.867798 102.35728) (xy 132.926763 102.467594) (xy 133.006115 102.564285) (xy 133.102806 102.643637) (xy 133.21312 102.702602) 638 | (xy 133.332818 102.738912) (xy 133.4573 102.751172) (xy 134.32155 102.7481) (xy 134.4803 102.58935) (xy 134.4803 100.2401) 639 | (xy 134.7343 100.2401) (xy 134.7343 102.58935) (xy 134.89305 102.7481) (xy 135.7573 102.751172) (xy 135.881782 102.738912) 640 | (xy 136.00148 102.702602) (xy 136.111794 102.643637) (xy 136.208485 102.564285) (xy 136.287837 102.467594) (xy 136.346802 102.35728) 641 | (xy 136.383112 102.237582) (xy 136.395372 102.1131) (xy 136.3923 100.39885) (xy 136.23355 100.2401) (xy 134.7343 100.2401) 642 | (xy 134.4803 100.2401) (xy 132.98105 100.2401) (xy 132.8223 100.39885) (xy 132.819228 102.1131) (xy 130.021 102.1131) 643 | (xy 130.021 99.424336) (xy 131.332236 98.1131) (xy 132.819228 98.1131) (xy 132.8223 99.82735) (xy 132.98105 99.9861) 644 | (xy 134.4803 99.9861) (xy 134.4803 97.63685) (xy 134.7343 97.63685) (xy 134.7343 99.9861) (xy 136.23355 99.9861) 645 | (xy 136.3923 99.82735) (xy 136.395372 98.1131) (xy 136.383112 97.988618) (xy 136.346802 97.86892) (xy 136.287837 97.758606) 646 | (xy 136.208485 97.661915) (xy 136.111794 97.582563) (xy 136.00148 97.523598) (xy 135.881782 97.487288) (xy 135.7573 97.475028) 647 | (xy 134.89305 97.4781) (xy 134.7343 97.63685) (xy 134.4803 97.63685) (xy 134.32155 97.4781) (xy 133.4573 97.475028) 648 | (xy 133.332818 97.487288) (xy 133.21312 97.523598) (xy 133.102806 97.582563) (xy 133.006115 97.661915) (xy 132.926763 97.758606) 649 | (xy 132.867798 97.86892) (xy 132.831488 97.988618) (xy 132.819228 98.1131) (xy 131.332236 98.1131) (xy 133.627846 95.817491) 650 | (xy 133.663999 95.999247) (xy 133.737949 96.177778) (xy 133.845307 96.338451) (xy 133.981949 96.475093) (xy 134.142622 96.582451) 651 | (xy 134.321153 96.656401) (xy 134.51068 96.6941) (xy 134.70392 96.6941) (xy 134.893447 96.656401) (xy 134.912878 96.648352) 652 | (xy 136.783004 96.648352) (xy 136.783004 96.772648) (xy 136.807253 96.894556) (xy 136.854819 97.009391) (xy 136.923874 97.112739) 653 | (xy 137.011765 97.20063) (xy 137.115113 97.269685) (xy 137.229948 97.317251) (xy 137.351856 97.3415) (xy 137.476152 97.3415) 654 | (xy 137.59806 97.317251) (xy 137.712895 97.269685) (xy 137.816243 97.20063) (xy 137.904134 97.112739) (xy 137.973189 97.009391) 655 | (xy 138.020755 96.894556) (xy 138.045004 96.772648) (xy 138.045004 96.759736) (xy 138.942817 95.861924) (xy 138.961169 95.846863) 656 | (xy 139.021277 95.773621) (xy 139.065941 95.69006) (xy 139.093445 95.599391) (xy 139.100405 95.528725) (xy 139.100405 95.528716) 657 | (xy 139.102731 95.5051) (xy 139.100405 95.481484) (xy 139.100405 88.180681) (xy 139.129999 88.109235) (xy 139.150405 88.006647) 658 | (xy 139.150405 87.902049) (xy 139.132531 87.81219) (xy 139.164328 87.82536) (xy 139.473006 88.134039) (xy 139.473007 96.299128) 659 | (xy 139.463876 96.308259) (xy 139.394821 96.411607) (xy 139.347255 96.526442) (xy 139.323006 96.64835) (xy 139.323006 96.772646) 660 | (xy 139.347255 96.894554) (xy 139.394821 97.009389) (xy 139.463876 97.112737) (xy 139.551767 97.200628) (xy 139.655115 97.269683) 661 | (xy 139.76995 97.317249) (xy 139.891858 97.341498) (xy 140.016154 97.341498) (xy 140.138062 97.317249) (xy 140.252897 97.269683) 662 | (xy 140.356245 97.200628) (xy 140.444136 97.112737) (xy 140.513191 97.009389) (xy 140.560757 96.894554) (xy 140.585006 96.772646) 663 | (xy 140.585006 96.64835) (xy 140.560757 96.526442) (xy 140.513191 96.411607) (xy 140.444136 96.308259) (xy 140.435006 96.299129) 664 | (xy 140.435006 87.958417) (xy 140.437332 87.934801) (xy 140.435006 87.911185) (xy 140.435006 87.911176) (xy 140.428046 87.84051) 665 | (xy 140.400542 87.749841) (xy 140.355878 87.66628) (xy 140.29577 87.593038) (xy 140.277417 87.577976) (xy 139.844564 87.145124) 666 | (xy 139.81497 87.073677) (xy 139.756858 86.986707) (xy 139.682897 86.912746) (xy 139.595927 86.854634) (xy 139.499291 86.814606) 667 | (xy 139.396703 86.7942) (xy 139.292105 86.7942) (xy 139.189517 86.814606) (xy 139.092881 86.854634) (xy 139.005911 86.912746) 668 | (xy 138.93195 86.986707) (xy 138.873838 87.073677) (xy 138.83381 87.170313) (xy 138.813404 87.272901) (xy 138.813404 87.377499) 669 | (xy 138.831278 87.467358) (xy 138.774292 87.443754) (xy 138.671704 87.423348) (xy 138.567106 87.423348) (xy 138.464518 87.443754) 670 | (xy 138.367882 87.483782) (xy 138.280912 87.541894) (xy 138.206951 87.615855) (xy 138.148839 87.702825) (xy 138.108811 87.799461) 671 | (xy 138.088405 87.902049) (xy 138.088405 88.006647) (xy 138.108811 88.109235) (xy 138.138405 88.180681) (xy 138.138406 95.305861) 672 | (xy 137.364768 96.0795) (xy 137.351856 96.0795) (xy 137.229948 96.103749) (xy 137.115113 96.151315) (xy 137.011765 96.22037) 673 | (xy 136.923874 96.308261) (xy 136.854819 96.411609) (xy 136.807253 96.526444) (xy 136.783004 96.648352) (xy 134.912878 96.648352) 674 | (xy 135.071978 96.582451) (xy 135.232651 96.475093) (xy 135.369293 96.338451) (xy 135.476651 96.177778) (xy 135.550601 95.999247) 675 | (xy 135.5883 95.80972) (xy 135.5883 95.61648) (xy 135.550601 95.426953) (xy 135.476651 95.248422) (xy 135.369293 95.087749) 676 | (xy 135.232651 94.951107) (xy 135.071978 94.843749) (xy 134.893447 94.769799) (xy 134.711691 94.733646) (xy 135.904977 93.54036) 677 | (xy 135.976423 93.510766) (xy 136.063393 93.452654) (xy 136.137354 93.378693) (xy 136.195466 93.291723) (xy 136.235494 93.195087) 678 | (xy 136.2559 93.092499) (xy 136.2559 92.987901) (xy 136.235494 92.885313) (xy 136.220085 92.848111) (xy 136.306623 92.812266) 679 | (xy 136.393593 92.754154) (xy 136.467554 92.680193) (xy 136.525666 92.593223) (xy 136.565694 92.496587) (xy 136.5861 92.393999) 680 | (xy 136.5861 92.289401) (xy 136.565694 92.186813) (xy 136.525666 92.090177) (xy 136.467554 92.003207) (xy 136.393593 91.929246) 681 | (xy 136.306623 91.871134) (xy 136.214013 91.832774) (xy 136.218724 91.809092) (xy 136.218724 91.704494) (xy 136.207629 91.648718) 682 | (xy 136.286187 91.633092) (xy 136.382823 91.593064) (xy 136.469793 91.534952) (xy 136.543754 91.460991) (xy 136.601866 91.374021) 683 | (xy 136.641894 91.277385) (xy 136.6623 91.174797) (xy 136.6623 91.070199) (xy 136.641894 90.967611) (xy 136.601866 90.870975) 684 | (xy 136.543754 90.784005) (xy 136.469793 90.710044) (xy 136.382823 90.651932) (xy 136.286187 90.611904) (xy 136.218821 90.598504) 685 | (xy 136.230498 90.539799) (xy 136.230498 90.435201) (xy 136.212492 90.344678) (xy 136.311519 90.32498) (xy 136.408155 90.284952) 686 | (xy 136.495125 90.22684) (xy 136.569086 90.152879) (xy 136.627198 90.065909) (xy 136.667226 89.969273) (xy 136.687632 89.866685) 687 | (xy 136.687632 89.762087) (xy 136.667226 89.659499) (xy 136.627198 89.562863) (xy 136.569086 89.475893) (xy 136.495125 89.401932) 688 | (xy 136.408155 89.34382) (xy 136.311519 89.303792) (xy 136.239294 89.289426) (xy 136.243198 89.269799) (xy 136.243198 89.165201) 689 | (xy 136.231521 89.106495) (xy 136.298893 89.093094) (xy 136.395529 89.053066) (xy 136.482499 88.994954) (xy 136.55646 88.920993) 690 | (xy 136.614572 88.834023) (xy 136.6546 88.737387) (xy 136.675006 88.634799) (xy 136.675006 88.530201) (xy 136.6546 88.427613) 691 | (xy 136.625006 88.356167) (xy 136.625006 87.869521) (xy 136.627332 87.845905) (xy 136.625006 87.822289) (xy 136.625006 87.82228) 692 | (xy 136.618046 87.751614) (xy 136.590542 87.660945) (xy 136.545878 87.577384) (xy 136.48577 87.504142) (xy 136.467417 87.48908) 693 | (xy 136.186299 87.207963) (xy 136.286187 87.188094) (xy 136.382823 87.148066) (xy 136.469793 87.089954) (xy 136.543754 87.015993) 694 | (xy 136.601866 86.929023) (xy 136.641894 86.832387) (xy 136.6623 86.729799) (xy 136.6623 86.625201) (xy 136.641894 86.522613) 695 | (xy 136.601866 86.425977) (xy 136.543754 86.339007) (xy 136.469793 86.265046) (xy 136.382823 86.206934) (xy 136.286187 86.166906) 696 | (xy 136.183599 86.1465) (xy 136.136853 86.1465) (xy 136.140143 86.1131) (xy 136.140143 82.1131) (xy 136.132787 82.038411) 697 | (xy 136.111001 81.966592) (xy 136.075622 81.900404) (xy 136.028011 81.842389) (xy 135.969996 81.794778) (xy 135.903808 81.759399) 698 | (xy 135.831989 81.737613) (xy 135.7573 81.730257) (xy 133.4573 81.730257) (xy 133.382611 81.737613) (xy 133.310792 81.759399) 699 | (xy 133.244604 81.794778) (xy 133.186589 81.842389) (xy 133.138978 81.900404) (xy 133.103599 81.966592) (xy 133.081813 82.038411) 700 | (xy 133.074457 82.1131) (xy 133.074457 83.772) (xy 130.859658 83.772) (xy 130.854891 83.768815) (xy 130.740056 83.721249) 701 | (xy 130.618148 83.697) (xy 130.493852 83.697) (xy 130.371944 83.721249) (xy 130.257109 83.768815) (xy 130.153761 83.83787) 702 | (xy 130.06587 83.925761) (xy 129.996815 84.029109) (xy 129.949249 84.143944) (xy 129.925 84.265852) (xy 129.925 84.390148) 703 | (xy 129.949249 84.512056) (xy 129.996815 84.626891) (xy 130.06587 84.730239) (xy 130.153761 84.81813) (xy 130.257109 84.887185) 704 | (xy 130.371944 84.934751) (xy 130.493852 84.959) (xy 130.618148 84.959) (xy 130.740056 84.934751) (xy 130.854891 84.887185) 705 | (xy 130.859658 84.884) (xy 133.074457 84.884) (xy 133.074457 86.1131) (xy 133.081813 86.187789) (xy 133.084455 86.1965) 706 | (xy 130.628237 86.1965) (xy 129.5765 85.144764) (xy 129.5765 81.578128) (xy 129.578827 81.554501) (xy 129.56954 81.460208) 707 | (xy 129.542036 81.369539) (xy 129.497371 81.285978) (xy 129.437264 81.212737) (xy 129.418906 81.197671) (xy 128.182843 79.961608) 708 | (xy 128.182843 78.659001) (xy 128.175487 78.584312) (xy 128.153701 78.512493) (xy 128.118322 78.446305) (xy 128.070711 78.38829) 709 | (xy 128.035021 78.359) (xy 133.249916 78.359) 710 | ) 711 | ) 712 | (filled_polygon 713 | (pts 714 | (xy 133.845307 87.587749) (xy 133.737949 87.748422) (xy 133.663999 87.926953) (xy 133.6263 88.11648) (xy 133.6263 88.30972) 715 | (xy 133.663999 88.499247) (xy 133.737949 88.677778) (xy 133.777186 88.7365) (xy 127.787684 88.7365) (xy 127.752843 88.701659) 716 | (xy 127.559413 88.572413) (xy 127.344485 88.483387) (xy 127.116318 88.438001) (xy 126.883682 88.438001) (xy 126.655515 88.483387) 717 | (xy 126.440587 88.572413) (xy 126.247157 88.701659) (xy 126.082658 88.866158) (xy 126.0475 88.918776) (xy 126.0475 87.779226) 718 | (xy 126.082658 87.831844) (xy 126.247157 87.996343) (xy 126.440587 88.125589) (xy 126.655515 88.214615) (xy 126.883682 88.260001) 719 | (xy 127.116318 88.260001) (xy 127.344485 88.214615) (xy 127.559413 88.125589) (xy 127.752843 87.996343) (xy 127.917342 87.831844) 720 | (xy 128.046588 87.638414) (xy 128.079068 87.560001) (xy 133.873055 87.560001) 721 | ) 722 | ) 723 | (filled_polygon 724 | (pts 725 | (xy 126.053492 80.612702) (xy 126.125311 80.634488) (xy 126.2 80.641844) (xy 127.502607 80.641844) (xy 128.6145 81.753737) 726 | (xy 128.614501 85.320364) (xy 128.612173 85.344) (xy 128.62146 85.438292) (xy 128.648965 85.528961) (xy 128.693629 85.612522) 727 | (xy 128.753737 85.685764) (xy 128.772089 85.700825) (xy 129.669264 86.598001) (xy 128.079068 86.598001) (xy 128.046588 86.519588) 728 | (xy 127.917342 86.326158) (xy 127.752843 86.161659) (xy 127.559413 86.032413) (xy 127.344485 85.943387) (xy 127.116318 85.898001) 729 | (xy 126.883682 85.898001) (xy 126.655515 85.943387) (xy 126.440587 86.032413) (xy 126.247157 86.161659) (xy 126.082658 86.326158) 730 | (xy 126.0475 86.378776) (xy 126.0475 85.239226) (xy 126.082658 85.291844) (xy 126.247157 85.456343) (xy 126.440587 85.585589) 731 | (xy 126.655515 85.674615) (xy 126.883682 85.720001) (xy 127.116318 85.720001) (xy 127.344485 85.674615) (xy 127.559413 85.585589) 732 | (xy 127.752843 85.456343) (xy 127.917342 85.291844) (xy 128.046588 85.098414) (xy 128.135614 84.883486) (xy 128.181 84.655319) 733 | (xy 128.181 84.422683) (xy 128.135614 84.194516) (xy 128.046588 83.979588) (xy 127.917342 83.786158) (xy 127.752843 83.621659) 734 | (xy 127.559413 83.492413) (xy 127.344485 83.403387) (xy 127.116318 83.358001) (xy 126.883682 83.358001) (xy 126.655515 83.403387) 735 | (xy 126.440587 83.492413) (xy 126.247157 83.621659) (xy 126.082658 83.786158) (xy 126.0475 83.838776) (xy 126.0475 82.699226) 736 | (xy 126.082658 82.751844) (xy 126.247157 82.916343) (xy 126.440587 83.045589) (xy 126.655515 83.134615) (xy 126.883682 83.180001) 737 | (xy 127.116318 83.180001) (xy 127.344485 83.134615) (xy 127.559413 83.045589) (xy 127.752843 82.916343) (xy 127.917342 82.751844) 738 | (xy 128.046588 82.558414) (xy 128.135614 82.343486) (xy 128.181 82.115319) (xy 128.181 81.882683) (xy 128.135614 81.654516) 739 | (xy 128.046588 81.439588) (xy 127.917342 81.246158) (xy 127.752843 81.081659) (xy 127.559413 80.952413) (xy 127.344485 80.863387) 740 | (xy 127.116318 80.818001) (xy 126.883682 80.818001) (xy 126.655515 80.863387) (xy 126.440587 80.952413) (xy 126.247157 81.081659) 741 | (xy 126.082658 81.246158) (xy 126.0475 81.298776) (xy 126.0475 80.609499) 742 | ) 743 | ) 744 | ) 745 | (zone (net 1) (net_name GND) (layer B.Cu) (tstamp 60BA817C) (hatch edge 0.508) 746 | (connect_pads (clearance 0.254)) 747 | (min_thickness 0.254) 748 | (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) 749 | (polygon 750 | (pts 751 | (xy 143.3195 108.712) (xy 125.9205 108.712) (xy 125.9205 78.232) (xy 143.3195 78.232) 752 | ) 753 | ) 754 | (filled_polygon 755 | (pts 756 | (xy 133.25881 78.392715) (xy 133.26082 78.398016) (xy 133.33259 78.583274) (xy 133.349168 78.616126) (xy 133.365285 78.649205) 757 | (xy 133.368287 78.654014) (xy 133.474673 78.821805) (xy 133.497349 78.850855) (xy 133.519552 78.88013) (xy 133.52343 78.884265) 758 | (xy 133.660382 79.028197) (xy 133.688226 79.052251) (xy 133.715734 79.076695) (xy 133.720342 79.079997) (xy 133.882641 79.194587) 759 | (xy 133.914663 79.212796) (xy 133.946361 79.23141) (xy 133.951523 79.233755) (xy 134.132989 79.314638) (xy 134.16792 79.326274) 760 | (xy 134.202644 79.338382) (xy 134.208162 79.339679) (xy 134.208165 79.33968) (xy 134.208168 79.33968) (xy 134.401883 79.383776) 761 | (xy 134.438406 79.388405) (xy 134.474827 79.393539) (xy 134.48049 79.39374) (xy 134.480493 79.39374) (xy 134.679088 79.399369) 762 | (xy 134.715799 79.396817) (xy 134.752537 79.394778) (xy 134.758133 79.393874) (xy 134.758137 79.393874) (xy 134.954041 79.360822) 763 | (xy 134.989596 79.351178) (xy 135.0252 79.342052) (xy 135.030511 79.34008) (xy 135.030515 79.340079) (xy 135.030518 79.340077) 764 | (xy 135.21627 79.269605) (xy 135.249251 79.25325) (xy 135.28243 79.23737) (xy 135.28726 79.234402) (xy 135.375721 79.179176) 765 | (xy 131.646168 82.908731) (xy 131.624947 82.926147) (xy 131.555466 83.010808) (xy 131.503838 83.1074) (xy 131.472045 83.212206) 766 | (xy 131.464 83.293889) (xy 131.464 83.293896) (xy 131.461311 83.3212) (xy 131.464 83.348505) (xy 131.464001 86.094657) 767 | (xy 131.4616 86.094657) (xy 131.386911 86.102013) (xy 131.315092 86.123799) (xy 131.248904 86.159178) (xy 131.190889 86.206789) 768 | (xy 131.143278 86.264804) (xy 131.112 86.32332) (xy 131.112 84.631658) (xy 131.115185 84.626891) (xy 131.162751 84.512056) 769 | (xy 131.187 84.390148) (xy 131.187 84.265852) (xy 131.162751 84.143944) (xy 131.115185 84.029109) (xy 131.04613 83.925761) 770 | (xy 130.958239 83.83787) (xy 130.854891 83.768815) (xy 130.740056 83.721249) (xy 130.618148 83.697) (xy 130.493852 83.697) 771 | (xy 130.371944 83.721249) (xy 130.257109 83.768815) (xy 130.153761 83.83787) (xy 130.06587 83.925761) (xy 129.996815 84.029109) 772 | (xy 129.949249 84.143944) (xy 129.925 84.265852) (xy 129.925 84.390148) (xy 129.949249 84.512056) (xy 129.996815 84.626891) 773 | (xy 130 84.631658) (xy 130.000001 88.872686) (xy 129.997311 88.9) (xy 130.008045 89.008994) (xy 130.035902 89.100822) 774 | (xy 130.039839 89.113801) (xy 130.091467 89.210392) (xy 130.160948 89.295053) (xy 130.182163 89.312464) (xy 130.461035 89.591337) 775 | (xy 130.478447 89.612553) (xy 130.563108 89.682034) (xy 130.659699 89.733662) (xy 130.764505 89.765455) (xy 130.846188 89.7735) 776 | (xy 130.846195 89.7735) (xy 130.8735 89.776189) (xy 130.900804 89.7735) (xy 131.078757 89.7735) (xy 131.078757 90.0525) 777 | (xy 131.086113 90.127189) (xy 131.0991 90.17) (xy 131.086113 90.212811) (xy 131.078757 90.2875) (xy 131.078757 90.6875) 778 | (xy 131.086113 90.762189) (xy 131.0991 90.805) (xy 131.086113 90.847811) (xy 131.078757 90.9225) (xy 131.078757 91.050677) 779 | (xy 131.018288 91.098577) (xy 130.937275 91.193881) (xy 130.876411 91.303159) (xy 130.838036 91.422211) (xy 130.8266 91.52575) 780 | (xy 130.98535 91.6845) (xy 131.34245 91.6845) (xy 131.386911 91.697987) (xy 131.4616 91.705343) (xy 132.2086 91.705343) 781 | (xy 132.2086 91.809657) (xy 131.4616 91.809657) (xy 131.386911 91.817013) (xy 131.34245 91.8305) (xy 130.98535 91.8305) 782 | (xy 130.8266 91.98925) (xy 130.838036 92.092789) (xy 130.876411 92.211841) (xy 130.937275 92.321119) (xy 131.018288 92.416423) 783 | (xy 131.078757 92.464323) (xy 131.078757 92.5925) (xy 131.086113 92.667189) (xy 131.0991 92.71) (xy 131.086113 92.752811) 784 | (xy 131.078757 92.8275) (xy 131.078757 93.2275) (xy 131.086113 93.302189) (xy 131.0991 93.345) (xy 131.086113 93.387811) 785 | (xy 131.078757 93.4625) (xy 131.078757 93.8625) (xy 131.086113 93.937189) (xy 131.107899 94.009008) (xy 131.143278 94.075196) 786 | (xy 131.190889 94.133211) (xy 131.248904 94.180822) (xy 131.315092 94.216201) (xy 131.386911 94.237987) (xy 131.4616 94.245343) 787 | (xy 131.539 94.245343) (xy 131.539001 102.341864) (xy 131.536673 102.3655) (xy 131.54596 102.459792) (xy 131.573465 102.550461) 788 | (xy 131.618129 102.634022) (xy 131.678237 102.707264) (xy 131.696589 102.722325) (xy 136.696676 107.722413) (xy 136.711737 107.740765) 789 | (xy 136.784979 107.800873) (xy 136.86854 107.845537) (xy 136.959209 107.873041) (xy 137.029875 107.880001) (xy 137.029876 107.880001) 790 | (xy 137.0535 107.882328) (xy 137.077124 107.880001) (xy 141.160932 107.880001) (xy 141.193412 107.958414) (xy 141.322658 108.151844) 791 | (xy 141.487157 108.316343) (xy 141.680587 108.445589) (xy 141.895515 108.534615) (xy 142.023132 108.56) (xy 127.840768 108.56) 792 | (xy 127.855131 108.551386) (xy 128.063519 108.362415) (xy 128.231037 108.136421) (xy 128.351246 107.882088) (xy 128.391904 107.74804) 793 | (xy 128.269915 107.526001) (xy 127.127 107.526001) (xy 127.127 107.546001) (xy 126.873 107.546001) (xy 126.873 107.526001) 794 | (xy 126.853 107.526001) (xy 126.853 107.272001) (xy 126.873 107.272001) (xy 126.873 107.252001) (xy 127.127 107.252001) 795 | (xy 127.127 107.272001) (xy 128.269915 107.272001) (xy 128.391904 107.049962) (xy 128.351246 106.915914) (xy 128.231037 106.661581) 796 | (xy 128.063519 106.435587) (xy 127.855131 106.246616) (xy 127.613881 106.101931) (xy 127.34904 106.007092) (xy 127.127002 106.128376) 797 | (xy 127.127002 106.037876) (xy 127.344485 105.994615) (xy 127.559413 105.905589) (xy 127.752843 105.776343) (xy 127.917342 105.611844) 798 | (xy 128.046588 105.418414) (xy 128.135614 105.203486) (xy 128.181 104.975319) (xy 128.181 104.742683) (xy 128.135614 104.514516) 799 | (xy 128.046588 104.299588) (xy 127.917342 104.106158) (xy 127.752843 103.941659) (xy 127.559413 103.812413) (xy 127.344485 103.723387) 800 | (xy 127.116318 103.678001) (xy 126.883682 103.678001) (xy 126.655515 103.723387) (xy 126.440587 103.812413) (xy 126.247157 103.941659) 801 | (xy 126.082658 104.106158) (xy 126.0475 104.158776) (xy 126.0475 103.019226) (xy 126.082658 103.071844) (xy 126.247157 103.236343) 802 | (xy 126.440587 103.365589) (xy 126.655515 103.454615) (xy 126.883682 103.500001) (xy 127.116318 103.500001) (xy 127.344485 103.454615) 803 | (xy 127.559413 103.365589) (xy 127.752843 103.236343) (xy 127.917342 103.071844) (xy 128.046588 102.878414) (xy 128.135614 102.663486) 804 | (xy 128.181 102.435319) (xy 128.181 102.202683) (xy 128.135614 101.974516) (xy 128.046588 101.759588) (xy 127.917342 101.566158) 805 | (xy 127.752843 101.401659) (xy 127.559413 101.272413) (xy 127.344485 101.183387) (xy 127.116318 101.138001) (xy 126.883682 101.138001) 806 | (xy 126.655515 101.183387) (xy 126.440587 101.272413) (xy 126.247157 101.401659) (xy 126.082658 101.566158) (xy 126.0475 101.618776) 807 | (xy 126.0475 100.479226) (xy 126.082658 100.531844) (xy 126.247157 100.696343) (xy 126.440587 100.825589) (xy 126.655515 100.914615) 808 | (xy 126.883682 100.960001) (xy 127.116318 100.960001) (xy 127.344485 100.914615) (xy 127.559413 100.825589) (xy 127.752843 100.696343) 809 | (xy 127.917342 100.531844) (xy 128.046588 100.338414) (xy 128.135614 100.123486) (xy 128.181 99.895319) (xy 128.181 99.662683) 810 | (xy 128.135614 99.434516) (xy 128.046588 99.219588) (xy 127.917342 99.026158) (xy 127.752843 98.861659) (xy 127.559413 98.732413) 811 | (xy 127.344485 98.643387) (xy 127.116318 98.598001) (xy 126.883682 98.598001) (xy 126.655515 98.643387) (xy 126.440587 98.732413) 812 | (xy 126.247157 98.861659) (xy 126.082658 99.026158) (xy 126.0475 99.078776) (xy 126.0475 97.939226) (xy 126.082658 97.991844) 813 | (xy 126.247157 98.156343) (xy 126.440587 98.285589) (xy 126.655515 98.374615) (xy 126.883682 98.420001) (xy 127.116318 98.420001) 814 | (xy 127.344485 98.374615) (xy 127.559413 98.285589) (xy 127.752843 98.156343) (xy 127.917342 97.991844) (xy 128.046588 97.798414) 815 | (xy 128.135614 97.583486) (xy 128.181 97.355319) (xy 128.181 97.122683) (xy 128.135614 96.894516) (xy 128.046588 96.679588) 816 | (xy 127.917342 96.486158) (xy 127.752843 96.321659) (xy 127.559413 96.192413) (xy 127.344485 96.103387) (xy 127.116318 96.058001) 817 | (xy 126.883682 96.058001) (xy 126.655515 96.103387) (xy 126.440587 96.192413) (xy 126.247157 96.321659) (xy 126.082658 96.486158) 818 | (xy 126.0475 96.538776) (xy 126.0475 95.399226) (xy 126.082658 95.451844) (xy 126.247157 95.616343) (xy 126.440587 95.745589) 819 | (xy 126.655515 95.834615) (xy 126.883682 95.880001) (xy 127.116318 95.880001) (xy 127.344485 95.834615) (xy 127.559413 95.745589) 820 | (xy 127.752843 95.616343) (xy 127.917342 95.451844) (xy 128.046588 95.258414) (xy 128.135614 95.043486) (xy 128.181 94.815319) 821 | (xy 128.181 94.582683) (xy 128.135614 94.354516) (xy 128.046588 94.139588) (xy 127.917342 93.946158) (xy 127.752843 93.781659) 822 | (xy 127.559413 93.652413) (xy 127.344485 93.563387) (xy 127.116318 93.518001) (xy 126.883682 93.518001) (xy 126.655515 93.563387) 823 | (xy 126.440587 93.652413) (xy 126.247157 93.781659) (xy 126.082658 93.946158) (xy 126.0475 93.998776) (xy 126.0475 92.859226) 824 | (xy 126.082658 92.911844) (xy 126.247157 93.076343) (xy 126.440587 93.205589) (xy 126.655515 93.294615) (xy 126.883682 93.340001) 825 | (xy 127.116318 93.340001) (xy 127.344485 93.294615) (xy 127.559413 93.205589) (xy 127.752843 93.076343) (xy 127.917342 92.911844) 826 | (xy 128.046588 92.718414) (xy 128.135614 92.503486) (xy 128.181 92.275319) (xy 128.181 92.042683) (xy 128.135614 91.814516) 827 | (xy 128.046588 91.599588) (xy 127.917342 91.406158) (xy 127.752843 91.241659) (xy 127.559413 91.112413) (xy 127.344485 91.023387) 828 | (xy 127.116318 90.978001) (xy 126.883682 90.978001) (xy 126.655515 91.023387) (xy 126.440587 91.112413) (xy 126.247157 91.241659) 829 | (xy 126.082658 91.406158) (xy 126.0475 91.458776) (xy 126.0475 90.319226) (xy 126.082658 90.371844) (xy 126.247157 90.536343) 830 | (xy 126.440587 90.665589) (xy 126.655515 90.754615) (xy 126.883682 90.800001) (xy 127.116318 90.800001) (xy 127.344485 90.754615) 831 | (xy 127.559413 90.665589) (xy 127.752843 90.536343) (xy 127.917342 90.371844) (xy 128.046588 90.178414) (xy 128.135614 89.963486) 832 | (xy 128.181 89.735319) (xy 128.181 89.502683) (xy 128.135614 89.274516) (xy 128.046588 89.059588) (xy 127.917342 88.866158) 833 | (xy 127.752843 88.701659) (xy 127.559413 88.572413) (xy 127.344485 88.483387) (xy 127.116318 88.438001) (xy 126.883682 88.438001) 834 | (xy 126.655515 88.483387) (xy 126.440587 88.572413) (xy 126.247157 88.701659) (xy 126.082658 88.866158) (xy 126.0475 88.918776) 835 | (xy 126.0475 87.779226) (xy 126.082658 87.831844) (xy 126.247157 87.996343) (xy 126.440587 88.125589) (xy 126.655515 88.214615) 836 | (xy 126.883682 88.260001) (xy 127.116318 88.260001) (xy 127.344485 88.214615) (xy 127.559413 88.125589) (xy 127.752843 87.996343) 837 | (xy 127.917342 87.831844) (xy 128.046588 87.638414) (xy 128.135614 87.423486) (xy 128.181 87.195319) (xy 128.181 86.962683) 838 | (xy 128.135614 86.734516) (xy 128.046588 86.519588) (xy 127.917342 86.326158) (xy 127.752843 86.161659) (xy 127.559413 86.032413) 839 | (xy 127.344485 85.943387) (xy 127.116318 85.898001) (xy 126.883682 85.898001) (xy 126.655515 85.943387) (xy 126.440587 86.032413) 840 | (xy 126.247157 86.161659) (xy 126.082658 86.326158) (xy 126.0475 86.378776) (xy 126.0475 85.239226) (xy 126.082658 85.291844) 841 | (xy 126.247157 85.456343) (xy 126.440587 85.585589) (xy 126.655515 85.674615) (xy 126.883682 85.720001) (xy 127.116318 85.720001) 842 | (xy 127.344485 85.674615) (xy 127.559413 85.585589) (xy 127.752843 85.456343) (xy 127.917342 85.291844) (xy 128.046588 85.098414) 843 | (xy 128.135614 84.883486) (xy 128.181 84.655319) (xy 128.181 84.422683) (xy 128.135614 84.194516) (xy 128.046588 83.979588) 844 | (xy 127.917342 83.786158) (xy 127.752843 83.621659) (xy 127.559413 83.492413) (xy 127.344485 83.403387) (xy 127.116318 83.358001) 845 | (xy 126.883682 83.358001) (xy 126.655515 83.403387) (xy 126.440587 83.492413) (xy 126.247157 83.621659) (xy 126.082658 83.786158) 846 | (xy 126.0475 83.838776) (xy 126.0475 82.699226) (xy 126.082658 82.751844) (xy 126.247157 82.916343) (xy 126.440587 83.045589) 847 | (xy 126.655515 83.134615) (xy 126.883682 83.180001) (xy 127.116318 83.180001) (xy 127.344485 83.134615) (xy 127.559413 83.045589) 848 | (xy 127.752843 82.916343) (xy 127.917342 82.751844) (xy 128.046588 82.558414) (xy 128.135614 82.343486) (xy 128.181 82.115319) 849 | (xy 128.181 81.882683) (xy 128.135614 81.654516) (xy 128.046588 81.439588) (xy 127.917342 81.246158) (xy 127.752843 81.081659) 850 | (xy 127.559413 80.952413) (xy 127.344485 80.863387) (xy 127.116318 80.818001) (xy 126.883682 80.818001) (xy 126.655515 80.863387) 851 | (xy 126.440587 80.952413) (xy 126.247157 81.081659) (xy 126.082658 81.246158) (xy 126.0475 81.298776) (xy 126.0475 80.609499) 852 | (xy 126.053492 80.612702) (xy 126.125311 80.634488) (xy 126.2 80.641844) (xy 127.8 80.641844) (xy 127.874689 80.634488) 853 | (xy 127.946508 80.612702) (xy 128.012696 80.577323) (xy 128.070711 80.529712) (xy 128.118322 80.471697) (xy 128.153701 80.405509) 854 | (xy 128.175487 80.33369) (xy 128.182843 80.259001) (xy 128.182843 78.659001) (xy 128.175487 78.584312) (xy 128.153701 78.512493) 855 | (xy 128.118322 78.446305) (xy 128.070711 78.38829) (xy 128.035021 78.359) (xy 133.249916 78.359) 856 | ) 857 | ) 858 | (filled_polygon 859 | (pts 860 | (xy 132.556458 96.945821) (xy 132.55413 96.969457) (xy 132.563417 97.063749) (xy 132.588942 97.14789) (xy 132.590922 97.154418) 861 | (xy 132.635586 97.237979) (xy 132.695694 97.311221) (xy 132.714046 97.326282) (xy 135.660175 100.272412) (xy 135.675236 100.290764) 862 | (xy 135.748478 100.350872) (xy 135.832039 100.395536) (xy 135.895203 100.414696) (xy 135.922707 100.42304) (xy 136.016999 100.432327) 863 | (xy 136.040626 100.43) (xy 138.992764 100.43) (xy 140.1715 101.608737) (xy 140.171501 103.247865) (xy 140.169173 103.271501) 864 | (xy 140.17846 103.365793) (xy 140.205405 103.454615) (xy 140.205965 103.456462) (xy 140.250629 103.540023) (xy 140.310737 103.613265) 865 | (xy 140.329089 103.628326) (xy 141.136866 104.436103) (xy 141.104386 104.514516) (xy 141.059 104.742683) (xy 141.059 104.975319) 866 | (xy 141.104386 105.203486) (xy 141.193412 105.418414) (xy 141.322658 105.611844) (xy 141.487157 105.776343) (xy 141.680587 105.905589) 867 | (xy 141.895515 105.994615) (xy 142.123682 106.040001) (xy 142.356318 106.040001) (xy 142.584485 105.994615) (xy 142.799413 105.905589) 868 | (xy 142.992843 105.776343) (xy 143.157342 105.611844) (xy 143.1925 105.559226) (xy 143.1925 106.698776) (xy 143.157342 106.646158) 869 | (xy 142.992843 106.481659) (xy 142.799413 106.352413) (xy 142.584485 106.263387) (xy 142.356318 106.218001) (xy 142.123682 106.218001) 870 | (xy 141.895515 106.263387) (xy 141.680587 106.352413) (xy 141.487157 106.481659) (xy 141.322658 106.646158) (xy 141.193412 106.839588) 871 | (xy 141.160932 106.918001) (xy 137.252738 106.918001) (xy 134.837737 104.503) (xy 135.593428 104.503) (xy 135.605688 104.627482) 872 | (xy 135.641998 104.74718) (xy 135.700963 104.857494) (xy 135.780315 104.954185) (xy 135.877006 105.033537) (xy 135.98732 105.092502) 873 | (xy 136.107018 105.128812) (xy 136.2315 105.141072) (xy 137.44575 105.138) (xy 137.6045 104.97925) (xy 137.6045 103.38) 874 | (xy 137.8585 103.38) (xy 137.8585 104.97925) (xy 138.01725 105.138) (xy 139.2315 105.141072) (xy 139.355982 105.128812) 875 | (xy 139.47568 105.092502) (xy 139.585994 105.033537) (xy 139.682685 104.954185) (xy 139.762037 104.857494) (xy 139.821002 104.74718) 876 | (xy 139.857312 104.627482) (xy 139.869572 104.503) (xy 139.8665 103.53875) (xy 139.70775 103.38) (xy 137.8585 103.38) 877 | (xy 137.6045 103.38) (xy 135.75525 103.38) (xy 135.5965 103.53875) (xy 135.593428 104.503) (xy 134.837737 104.503) 878 | (xy 132.501 102.166264) (xy 132.501 102.003) (xy 135.593428 102.003) (xy 135.5965 102.96725) (xy 135.75525 103.126) 879 | (xy 137.6045 103.126) (xy 137.6045 101.52675) (xy 137.8585 101.52675) (xy 137.8585 103.126) (xy 139.70775 103.126) 880 | (xy 139.8665 102.96725) (xy 139.869572 102.003) (xy 139.857312 101.878518) (xy 139.821002 101.75882) (xy 139.762037 101.648506) 881 | (xy 139.682685 101.551815) (xy 139.585994 101.472463) (xy 139.47568 101.413498) (xy 139.355982 101.377188) (xy 139.2315 101.364928) 882 | (xy 138.01725 101.368) (xy 137.8585 101.52675) (xy 137.6045 101.52675) (xy 137.44575 101.368) (xy 136.2315 101.364928) 883 | (xy 136.107018 101.377188) (xy 135.98732 101.413498) (xy 135.877006 101.472463) (xy 135.780315 101.551815) (xy 135.700963 101.648506) 884 | (xy 135.641998 101.75882) (xy 135.605688 101.878518) (xy 135.593428 102.003) (xy 132.501 102.003) (xy 132.501 94.245343) 885 | (xy 132.556457 94.245343) 886 | ) 887 | ) 888 | (filled_polygon 889 | (pts 890 | (xy 135.814992 95.549299) (xy 135.748804 95.584678) (xy 135.690789 95.632289) (xy 135.643178 95.690304) (xy 135.607799 95.756492) 891 | (xy 135.586013 95.828311) (xy 135.578657 95.903) (xy 135.578657 97.503) (xy 135.586013 97.577689) (xy 135.607799 97.649508) 892 | (xy 135.643178 97.715696) (xy 135.690789 97.773711) (xy 135.748804 97.821322) (xy 135.814992 97.856701) (xy 135.886811 97.878487) 893 | (xy 135.9615 97.885843) (xy 136.9615 97.885843) (xy 137.036189 97.878487) (xy 137.108008 97.856701) (xy 137.174196 97.821322) 894 | (xy 137.232211 97.773711) (xy 137.279822 97.715696) (xy 137.315201 97.649508) (xy 137.336987 97.577689) (xy 137.344343 97.503) 895 | (xy 137.344343 97.340006) (xy 137.351856 97.3415) (xy 137.476152 97.3415) (xy 137.59806 97.317251) (xy 137.712895 97.269685) 896 | (xy 137.816243 97.20063) (xy 137.904134 97.112739) (xy 137.973189 97.009391) (xy 138.020755 96.894556) (xy 138.045004 96.772648) 897 | (xy 138.045004 96.648352) (xy 138.020755 96.526444) (xy 137.973189 96.411609) (xy 137.904134 96.308261) (xy 137.816243 96.22037) 898 | (xy 137.712895 96.151315) (xy 137.59806 96.103749) (xy 137.476152 96.0795) (xy 137.351856 96.0795) (xy 137.344343 96.080994) 899 | (xy 137.344343 95.903) (xy 137.336987 95.828311) (xy 137.315201 95.756492) (xy 137.279822 95.690304) (xy 137.232211 95.632289) 900 | (xy 137.174196 95.584678) (xy 137.108008 95.549299) (xy 137.079002 95.5405) (xy 138.383998 95.5405) (xy 138.354992 95.549299) 901 | (xy 138.288804 95.584678) (xy 138.230789 95.632289) (xy 138.183178 95.690304) (xy 138.147799 95.756492) (xy 138.126013 95.828311) 902 | (xy 138.118657 95.903) (xy 138.118657 97.503) (xy 138.126013 97.577689) (xy 138.147799 97.649508) (xy 138.183178 97.715696) 903 | (xy 138.230789 97.773711) (xy 138.288804 97.821322) (xy 138.354992 97.856701) (xy 138.426811 97.878487) (xy 138.5015 97.885843) 904 | (xy 139.5015 97.885843) (xy 139.576189 97.878487) (xy 139.648008 97.856701) (xy 139.714196 97.821322) (xy 139.772211 97.773711) 905 | (xy 139.819822 97.715696) (xy 139.855201 97.649508) (xy 139.876987 97.577689) (xy 139.884343 97.503) (xy 139.884343 97.340003) 906 | (xy 139.891858 97.341498) (xy 140.016154 97.341498) (xy 140.138062 97.317249) (xy 140.252897 97.269683) (xy 140.356245 97.200628) 907 | (xy 140.444136 97.112737) (xy 140.513191 97.009389) (xy 140.560757 96.894554) (xy 140.585006 96.772646) (xy 140.585006 96.64835) 908 | (xy 140.560757 96.526442) (xy 140.513191 96.411607) (xy 140.444136 96.308259) (xy 140.356245 96.220368) (xy 140.252897 96.151313) 909 | (xy 140.138062 96.103747) (xy 140.016154 96.079498) (xy 139.891858 96.079498) (xy 139.884343 96.080993) (xy 139.884343 95.903) 910 | (xy 139.876987 95.828311) (xy 139.855201 95.756492) (xy 139.819822 95.690304) (xy 139.772211 95.632289) (xy 139.714196 95.584678) 911 | (xy 139.648008 95.549299) (xy 139.619002 95.5405) (xy 139.861263 95.5405) (xy 141.136866 96.816103) (xy 141.104386 96.894516) 912 | (xy 141.059 97.122683) (xy 141.059 97.355319) (xy 141.104386 97.583486) (xy 141.193412 97.798414) (xy 141.322658 97.991844) 913 | (xy 141.487157 98.156343) (xy 141.680587 98.285589) (xy 141.895515 98.374615) (xy 142.123682 98.420001) (xy 142.356318 98.420001) 914 | (xy 142.584485 98.374615) (xy 142.799413 98.285589) (xy 142.992843 98.156343) (xy 143.157342 97.991844) (xy 143.1925 97.939226) 915 | (xy 143.1925 99.078776) (xy 143.157342 99.026158) (xy 142.992843 98.861659) (xy 142.799413 98.732413) (xy 142.584485 98.643387) 916 | (xy 142.356318 98.598001) (xy 142.123682 98.598001) (xy 141.895515 98.643387) (xy 141.680587 98.732413) (xy 141.487157 98.861659) 917 | (xy 141.322658 99.026158) (xy 141.193412 99.219588) (xy 141.104386 99.434516) (xy 141.059 99.662683) (xy 141.059 99.895319) 918 | (xy 141.104386 100.123486) (xy 141.193412 100.338414) (xy 141.322658 100.531844) (xy 141.487157 100.696343) (xy 141.680587 100.825589) 919 | (xy 141.895515 100.914615) (xy 142.123682 100.960001) (xy 142.356318 100.960001) (xy 142.584485 100.914615) (xy 142.799413 100.825589) 920 | (xy 142.992843 100.696343) (xy 143.157342 100.531844) (xy 143.1925 100.479226) (xy 143.1925 101.618776) (xy 143.157342 101.566158) 921 | (xy 142.992843 101.401659) (xy 142.799413 101.272413) (xy 142.584485 101.183387) (xy 142.356318 101.138001) (xy 142.123682 101.138001) 922 | (xy 141.895515 101.183387) (xy 141.817102 101.215867) (xy 139.876818 99.275583) (xy 139.861752 99.257225) (xy 139.78851 99.197117) 923 | (xy 139.704949 99.152453) (xy 139.61428 99.124949) (xy 139.543614 99.117989) (xy 139.519988 99.115662) (xy 139.496362 99.117989) 924 | (xy 136.361216 99.117989) (xy 133.868468 96.625242) (xy 133.868468 96.361612) (xy 133.981949 96.475093) (xy 134.142622 96.582451) 925 | (xy 134.321153 96.656401) (xy 134.51068 96.6941) (xy 134.70392 96.6941) (xy 134.893447 96.656401) (xy 135.071978 96.582451) 926 | (xy 135.232651 96.475093) (xy 135.369293 96.338451) (xy 135.476651 96.177778) (xy 135.550601 95.999247) (xy 135.5883 95.80972) 927 | (xy 135.5883 95.61648) (xy 135.573187 95.5405) (xy 135.843998 95.5405) 928 | ) 929 | ) 930 | (filled_polygon 931 | (pts 932 | (xy 141.193412 82.558414) (xy 141.322658 82.751844) (xy 141.487157 82.916343) (xy 141.680587 83.045589) (xy 141.895515 83.134615) 933 | (xy 142.123682 83.180001) (xy 142.356318 83.180001) (xy 142.584485 83.134615) (xy 142.799413 83.045589) (xy 142.992843 82.916343) 934 | (xy 143.157342 82.751844) (xy 143.1925 82.699226) (xy 143.1925 83.838776) (xy 143.157342 83.786158) (xy 142.992843 83.621659) 935 | (xy 142.799413 83.492413) (xy 142.584485 83.403387) (xy 142.356318 83.358001) (xy 142.123682 83.358001) (xy 141.895515 83.403387) 936 | (xy 141.680587 83.492413) (xy 141.487157 83.621659) (xy 141.322658 83.786158) (xy 141.193412 83.979588) (xy 141.104386 84.194516) 937 | (xy 141.059 84.422683) (xy 141.059 84.655319) (xy 141.104386 84.883486) (xy 141.193412 85.098414) (xy 141.322658 85.291844) 938 | (xy 141.487157 85.456343) (xy 141.680587 85.585589) (xy 141.895515 85.674615) (xy 142.123682 85.720001) (xy 142.356318 85.720001) 939 | (xy 142.584485 85.674615) (xy 142.799413 85.585589) (xy 142.992843 85.456343) (xy 143.157342 85.291844) (xy 143.1925 85.239226) 940 | (xy 143.1925 86.378776) (xy 143.157342 86.326158) (xy 142.992843 86.161659) (xy 142.799413 86.032413) (xy 142.584485 85.943387) 941 | (xy 142.356318 85.898001) (xy 142.123682 85.898001) (xy 141.895515 85.943387) (xy 141.680587 86.032413) (xy 141.487157 86.161659) 942 | (xy 141.322658 86.326158) (xy 141.193412 86.519588) (xy 141.104386 86.734516) (xy 141.059 86.962683) (xy 141.059 87.195319) 943 | (xy 141.104386 87.423486) (xy 141.193412 87.638414) (xy 141.322658 87.831844) (xy 141.487157 87.996343) (xy 141.680587 88.125589) 944 | (xy 141.895515 88.214615) (xy 142.123682 88.260001) (xy 142.356318 88.260001) (xy 142.584485 88.214615) (xy 142.799413 88.125589) 945 | (xy 142.992843 87.996343) (xy 143.157342 87.831844) (xy 143.1925 87.779226) (xy 143.1925 88.918776) (xy 143.157342 88.866158) 946 | (xy 142.992843 88.701659) (xy 142.799413 88.572413) (xy 142.584485 88.483387) (xy 142.356318 88.438001) (xy 142.123682 88.438001) 947 | (xy 141.895515 88.483387) (xy 141.680587 88.572413) (xy 141.487157 88.701659) (xy 141.322658 88.866158) (xy 141.193412 89.059588) 948 | (xy 141.104386 89.274516) (xy 141.059 89.502683) (xy 141.059 89.735319) (xy 141.104386 89.963486) (xy 141.193412 90.178414) 949 | (xy 141.322658 90.371844) (xy 141.487157 90.536343) (xy 141.680587 90.665589) (xy 141.895515 90.754615) (xy 142.123682 90.800001) 950 | (xy 142.356318 90.800001) (xy 142.584485 90.754615) (xy 142.799413 90.665589) (xy 142.992843 90.536343) (xy 143.157342 90.371844) 951 | (xy 143.1925 90.319226) (xy 143.1925 91.458776) (xy 143.157342 91.406158) (xy 142.992843 91.241659) (xy 142.799413 91.112413) 952 | (xy 142.584485 91.023387) (xy 142.356318 90.978001) (xy 142.123682 90.978001) (xy 141.895515 91.023387) (xy 141.680587 91.112413) 953 | (xy 141.487157 91.241659) (xy 141.322658 91.406158) (xy 141.193412 91.599588) (xy 141.104386 91.814516) (xy 141.059 92.042683) 954 | (xy 141.059 92.275319) (xy 141.104386 92.503486) (xy 141.136866 92.581899) (xy 139.850775 93.86799) (xy 138.47034 93.86799) 955 | (xy 138.33785 93.7355) (xy 137.3886 93.7355) (xy 137.3886 93.8095) (xy 137.1346 93.8095) (xy 137.1346 93.7355) 956 | (xy 136.18535 93.7355) (xy 136.05286 93.86799) (xy 135.772427 93.86799) (xy 134.918498 93.014062) (xy 134.918498 91.255724) 957 | (xy 134.920825 91.232097) (xy 134.911538 91.137805) (xy 134.891073 91.070343) (xy 134.884034 91.047137) (xy 134.83937 90.963576) 958 | (xy 134.779262 90.890334) (xy 134.76091 90.875273) (xy 133.41473 89.529094) (xy 133.399664 89.510736) (xy 133.326422 89.450628) 959 | (xy 133.242861 89.405964) (xy 133.152192 89.37846) (xy 133.081526 89.3715) (xy 133.0579 89.369173) (xy 133.044443 89.370498) 960 | (xy 133.044443 89.0175) (xy 133.037087 88.942811) (xy 133.0241 88.9) (xy 133.037087 88.857189) (xy 133.044443 88.7825) 961 | (xy 133.044443 88.3825) (xy 133.037087 88.307811) (xy 133.0241 88.265) (xy 133.037087 88.222189) (xy 133.044443 88.1475) 962 | (xy 133.044443 87.857) (xy 133.580374 87.857) (xy 133.604 87.859327) (xy 133.627626 87.857) (xy 133.695754 87.85029) 963 | (xy 133.663999 87.926953) (xy 133.6263 88.11648) (xy 133.6263 88.30972) (xy 133.663999 88.499247) (xy 133.737949 88.677778) 964 | (xy 133.845307 88.838451) (xy 133.981949 88.975093) (xy 134.142622 89.082451) (xy 134.321153 89.156401) (xy 134.51068 89.1941) 965 | (xy 134.70392 89.1941) (xy 134.893447 89.156401) (xy 135.071978 89.082451) (xy 135.232651 88.975093) (xy 135.241537 88.966207) 966 | (xy 135.201604 89.062613) (xy 135.181198 89.165201) (xy 135.181198 89.269799) (xy 135.201604 89.372387) (xy 135.241632 89.469023) 967 | (xy 135.299744 89.555993) (xy 135.373705 89.629954) (xy 135.460675 89.688066) (xy 135.557311 89.728094) (xy 135.629536 89.74246) 968 | (xy 135.625632 89.762087) (xy 135.625632 89.866685) (xy 135.643638 89.957208) (xy 135.544611 89.976906) (xy 135.447975 90.016934) 969 | (xy 135.361005 90.075046) (xy 135.287044 90.149007) (xy 135.228932 90.235977) (xy 135.188904 90.332613) (xy 135.168498 90.435201) 970 | (xy 135.168498 90.539799) (xy 135.188904 90.642387) (xy 135.228932 90.739023) (xy 135.287044 90.825993) (xy 135.361005 90.899954) 971 | (xy 135.447975 90.958066) (xy 135.544611 90.998094) (xy 135.611977 91.011494) (xy 135.6003 91.070199) (xy 135.6003 91.174797) 972 | (xy 135.611395 91.230573) (xy 135.532837 91.246199) (xy 135.436201 91.286227) (xy 135.349231 91.344339) (xy 135.27527 91.4183) 973 | (xy 135.217158 91.50527) (xy 135.17713 91.601906) (xy 135.156724 91.704494) (xy 135.156724 91.809092) (xy 135.17713 91.91168) 974 | (xy 135.217158 92.008316) (xy 135.27527 92.095286) (xy 135.349231 92.169247) (xy 135.436201 92.227359) (xy 135.528811 92.265719) 975 | (xy 135.5241 92.289401) (xy 135.5241 92.393999) (xy 135.544506 92.496587) (xy 135.559915 92.533789) (xy 135.473377 92.569634) 976 | (xy 135.386407 92.627746) (xy 135.312446 92.701707) (xy 135.254334 92.788677) (xy 135.214306 92.885313) (xy 135.1939 92.987901) 977 | (xy 135.1939 93.092499) (xy 135.214306 93.195087) (xy 135.254334 93.291723) (xy 135.312446 93.378693) (xy 135.386407 93.452654) 978 | (xy 135.473377 93.510766) (xy 135.570013 93.550794) (xy 135.672601 93.5712) (xy 135.777199 93.5712) (xy 135.879787 93.550794) 979 | (xy 135.951233 93.5212) (xy 136.11705 93.5212) (xy 136.18535 93.5895) (xy 136.54245 93.5895) (xy 136.586911 93.602987) 980 | (xy 136.6616 93.610343) (xy 137.8616 93.610343) (xy 137.936289 93.602987) (xy 137.98075 93.5895) (xy 138.33785 93.5895) 981 | (xy 138.4966 93.43075) (xy 138.485164 93.327211) (xy 138.446789 93.208159) (xy 138.385925 93.098881) (xy 138.304912 93.003577) 982 | (xy 138.244443 92.955677) (xy 138.244443 92.8275) (xy 138.237087 92.752811) (xy 138.2241 92.71) (xy 138.237087 92.667189) 983 | (xy 138.244443 92.5925) (xy 138.244443 92.1925) (xy 138.237087 92.117811) (xy 138.2241 92.075) (xy 138.237087 92.032189) 984 | (xy 138.244443 91.9575) (xy 138.244443 91.5575) (xy 138.237087 91.482811) (xy 138.2241 91.44) (xy 138.237087 91.397189) 985 | (xy 138.244443 91.3225) (xy 138.244443 90.9225) (xy 138.237087 90.847811) (xy 138.2241 90.805) (xy 138.237087 90.762189) 986 | (xy 138.244443 90.6875) (xy 138.244443 90.2875) (xy 138.237087 90.212811) (xy 138.2241 90.17) (xy 138.237087 90.127189) 987 | (xy 138.244443 90.0525) (xy 138.244443 89.6525) (xy 138.237087 89.577811) (xy 138.2241 89.535) (xy 138.237087 89.492189) 988 | (xy 138.244443 89.4175) (xy 138.244443 89.0175) (xy 138.237087 88.942811) (xy 138.2241 88.9) (xy 138.237087 88.857189) 989 | (xy 138.244443 88.7825) (xy 138.244443 88.4285) (xy 138.376539 88.4285) (xy 138.464518 88.464942) (xy 138.567106 88.485348) 990 | (xy 138.671704 88.485348) (xy 138.774292 88.464942) (xy 138.870928 88.424914) (xy 138.957898 88.366802) (xy 139.031859 88.292841) 991 | (xy 139.089971 88.205871) (xy 139.129999 88.109235) (xy 139.150405 88.006647) (xy 139.150405 87.902049) (xy 139.132531 87.81219) 992 | (xy 139.189517 87.835794) (xy 139.292105 87.8562) (xy 139.396703 87.8562) (xy 139.499291 87.835794) (xy 139.595927 87.795766) 993 | (xy 139.682897 87.737654) (xy 139.756858 87.663693) (xy 139.81497 87.576723) (xy 139.854998 87.480087) (xy 139.875404 87.377499) 994 | (xy 139.875404 87.272901) (xy 139.854998 87.170313) (xy 139.81497 87.073677) (xy 139.756858 86.986707) (xy 139.682897 86.912746) 995 | (xy 139.595927 86.854634) (xy 139.499291 86.814606) (xy 139.396703 86.7942) (xy 139.292105 86.7942) (xy 139.189517 86.814606) 996 | (xy 139.148731 86.8315) (xy 138.244443 86.8315) (xy 138.244443 86.4775) (xy 138.237087 86.402811) (xy 138.215301 86.330992) 997 | (xy 138.179922 86.264804) (xy 138.132311 86.206789) (xy 138.074296 86.159178) (xy 138.008108 86.123799) (xy 137.936289 86.102013) 998 | (xy 137.8616 86.094657) (xy 136.6616 86.094657) (xy 136.586911 86.102013) (xy 136.515092 86.123799) (xy 136.448904 86.159178) 999 | (xy 136.403426 86.1965) (xy 136.357633 86.1965) (xy 136.286187 86.166906) (xy 136.183599 86.1465) (xy 136.079001 86.1465) 1000 | (xy 135.976413 86.166906) (xy 135.879777 86.206934) (xy 135.792807 86.265046) (xy 135.718846 86.339007) (xy 135.660734 86.425977) 1001 | (xy 135.620706 86.522613) (xy 135.6003 86.625201) (xy 135.6003 86.729799) (xy 135.620706 86.832387) (xy 135.660734 86.929023) 1002 | (xy 135.718846 87.015993) (xy 135.792807 87.089954) (xy 135.879777 87.148066) (xy 135.976413 87.188094) (xy 136.079001 87.2085) 1003 | (xy 136.183599 87.2085) (xy 136.278757 87.189572) (xy 136.278757 87.5125) (xy 136.286113 87.587189) (xy 136.2991 87.63) 1004 | (xy 136.286113 87.672811) (xy 136.278757 87.7475) (xy 136.278757 88.067901) (xy 136.196305 88.0515) (xy 136.091707 88.0515) 1005 | (xy 135.989119 88.071906) (xy 135.892483 88.111934) (xy 135.805513 88.170046) (xy 135.731552 88.244007) (xy 135.67344 88.330977) 1006 | (xy 135.633412 88.427613) (xy 135.613006 88.530201) (xy 135.613006 88.634799) (xy 135.624683 88.693505) (xy 135.557311 88.706906) 1007 | (xy 135.460675 88.746934) (xy 135.406058 88.783428) (xy 135.476651 88.677778) (xy 135.550601 88.499247) (xy 135.5883 88.30972) 1008 | (xy 135.5883 88.11648) (xy 135.550601 87.926953) (xy 135.476651 87.748422) (xy 135.369293 87.587749) (xy 135.232651 87.451107) 1009 | (xy 135.071978 87.343749) (xy 134.893447 87.269799) (xy 134.70392 87.2321) (xy 134.51068 87.2321) (xy 134.407641 87.252596) 1010 | (xy 134.943411 86.716825) (xy 134.961764 86.701764) (xy 135.021872 86.628522) (xy 135.066536 86.544961) (xy 135.09404 86.454292) 1011 | (xy 135.099111 86.402811) (xy 135.103327 86.36) (xy 135.101 86.336374) (xy 135.101 83.511236) (xy 136.132236 82.480001) 1012 | (xy 141.160932 82.480001) 1013 | ) 1014 | ) 1015 | (filled_polygon 1016 | (pts 1017 | (xy 141.193412 80.018414) (xy 141.322658 80.211844) (xy 141.487157 80.376343) (xy 141.680587 80.505589) (xy 141.895515 80.594615) 1018 | (xy 142.123682 80.640001) (xy 142.356318 80.640001) (xy 142.584485 80.594615) (xy 142.799413 80.505589) (xy 142.992843 80.376343) 1019 | (xy 143.157342 80.211844) (xy 143.1925 80.159226) (xy 143.1925 81.298776) (xy 143.157342 81.246158) (xy 142.992843 81.081659) 1020 | (xy 142.799413 80.952413) (xy 142.584485 80.863387) (xy 142.356318 80.818001) (xy 142.123682 80.818001) (xy 141.895515 80.863387) 1021 | (xy 141.680587 80.952413) (xy 141.487157 81.081659) (xy 141.322658 81.246158) (xy 141.193412 81.439588) (xy 141.160932 81.518001) 1022 | (xy 135.956625 81.518001) (xy 135.932999 81.515674) (xy 135.838706 81.524961) (xy 135.811202 81.533305) (xy 135.748038 81.552465) 1023 | (xy 135.664477 81.597129) (xy 135.591235 81.657237) (xy 135.576174 81.675589) (xy 134.296589 82.955175) (xy 134.278237 82.970236) 1024 | (xy 134.263176 82.988588) (xy 134.218129 83.043478) (xy 134.173465 83.127039) (xy 134.14596 83.217708) (xy 134.136673 83.312) 1025 | (xy 134.139001 83.335636) (xy 134.139 86.160763) (xy 133.404764 86.895) (xy 133.042719 86.895) (xy 133.044443 86.8775) 1026 | (xy 133.044443 86.4775) (xy 133.037087 86.402811) (xy 133.015301 86.330992) (xy 132.979922 86.264804) (xy 132.932311 86.206789) 1027 | (xy 132.874296 86.159178) (xy 132.808108 86.123799) (xy 132.736289 86.102013) (xy 132.6616 86.094657) (xy 132.576 86.094657) 1028 | (xy 132.576 83.551501) (xy 136.112502 80.015001) (xy 141.191998 80.015001) 1029 | ) 1030 | ) 1031 | ) 1032 | ) 1033 | -------------------------------------------------------------------------------- /kicad/nw12887.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # ds12887 5 | # 6 | DEF ds12887 U 0 40 Y Y 1 F N 7 | F0 "U" 0 200 50 H V C CNN 8 | F1 "ds12887" 0 100 50 H V C CNN 9 | F2 "" 0 50 50 H I C CNN 10 | F3 "" 0 50 50 H I C CNN 11 | DRAW 12 | S -300 0 300 -1200 0 1 0 f 13 | X MOT 1 -400 -50 100 R 50 50 1 1 I 14 | X AD6 10 -400 -950 100 R 50 50 1 1 I 15 | X AD7 11 -400 -1050 100 R 50 50 1 1 I 16 | X GND 12 -400 -1150 100 R 50 50 1 1 I 17 | X CS 13 400 -1150 100 L 50 50 1 1 I 18 | X AS 14 400 -1050 100 L 50 50 1 1 I 19 | X R/~W 15 400 -950 100 L 50 50 1 1 I 20 | X GND 16 400 -850 100 L 50 50 1 1 I 21 | X DS 17 400 -750 100 L 50 50 1 1 I 22 | X ~RST 18 400 -650 100 L 50 50 1 1 I 23 | X ~INT 19 400 -550 100 L 50 50 1 1 I 24 | X X1 2 -400 -150 100 R 50 50 1 1 I 25 | X BC 20 400 -450 100 L 50 50 1 1 I 26 | X ~RCL 21 400 -350 100 L 50 50 1 1 I 27 | X NC 22 400 -250 100 L 50 50 1 1 I 28 | X SQW 23 400 -150 100 L 50 50 1 1 I 29 | X VCC 24 400 -50 100 L 50 50 1 1 I 30 | X X2 3 -400 -250 100 R 50 50 1 1 I 31 | X AD0 4 -400 -350 100 R 50 50 1 1 I 32 | X AD1 5 -400 -450 100 R 50 50 1 1 I 33 | X AD2 6 -400 -550 100 R 50 50 1 1 I 34 | X AD3 7 -400 -650 100 R 50 50 1 1 I 35 | X AD4 8 -400 -750 100 R 50 50 1 1 I 36 | X AD5 9 -400 -850 100 R 50 50 1 1 I 37 | ENDDRAW 38 | ENDDEF 39 | # 40 | #End Library 41 | -------------------------------------------------------------------------------- /kicad/nw12887.pretty/BatteryHolder_CR1220.kicad_mod: -------------------------------------------------------------------------------- 1 | (module BatteryHolder_CR1220 (layer F.Cu) (tedit 60A7B985) 2 | (fp_text reference REF** (at 0 0) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value BatteryHolder_CR1220 (at 1 12) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start 5 7.9) (end 5 5.6) (layer F.SilkS) (width 0.12)) 9 | (fp_line (start -5 7.9) (end 5 7.9) (layer F.SilkS) (width 0.12)) 10 | (fp_line (start -5 5.6) (end -5 7.9) (layer F.SilkS) (width 0.12)) 11 | (fp_circle (center 0 0) (end 0.1 -7.5) (layer F.SilkS) (width 0.12)) 12 | (pad "" thru_hole circle (at 0 3.9) (size 1.2 1.2) (drill 1.2) (layers *.Cu F.SilkS)) 13 | (pad "" thru_hole circle (at 0 -3.6) (size 1.2 1.2) (drill 1.2) (layers *.Cu F.SilkS)) 14 | (pad 2 smd rect (at 0 -8) (size 2.3 4) (layers F.Cu F.Paste F.Mask)) 15 | (pad 1 smd rect (at 0 8) (size 2.3 4) (layers F.Cu F.Paste F.Mask)) 16 | ) 17 | -------------------------------------------------------------------------------- /kicad/nw12887.pro: -------------------------------------------------------------------------------- 1 | update=Fri 21 May 2021 19:11:09 CEST 2 | version=1 3 | last_client=kicad 4 | [general] 5 | version=1 6 | RootSch= 7 | BoardNm= 8 | [cvpcb] 9 | version=1 10 | NetIExt=net 11 | [eeschema] 12 | version=1 13 | LibDir= 14 | [eeschema/libraries] 15 | [pcbnew] 16 | version=1 17 | PageLayoutDescrFile= 18 | LastNetListRead= 19 | CopperLayerCount=2 20 | BoardThickness=1.6 21 | AllowMicroVias=1 22 | AllowBlindVias=0 23 | RequireCourtyardDefinitions=0 24 | ProhibitOverlappingCourtyards=1 25 | MinTrackWidth=0.2 26 | MinViaDiameter=0.4 27 | MinViaDrill=0.3 28 | MinMicroViaDiameter=0.2 29 | MinMicroViaDrill=0.09999999999999999 30 | MinHoleToHole=0.25 31 | TrackWidth1=0.2 32 | ViaDiameter1=0.5 33 | ViaDrill1=0.3 34 | dPairWidth1=0.2 35 | dPairGap1=0.25 36 | dPairViaGap1=0.25 37 | SilkLineWidth=0.12 38 | SilkTextSizeV=1 39 | SilkTextSizeH=1 40 | SilkTextSizeThickness=0.15 41 | SilkTextItalic=0 42 | SilkTextUpright=1 43 | CopperLineWidth=0.2 44 | CopperTextSizeV=1.5 45 | CopperTextSizeH=1.5 46 | CopperTextThickness=0.3 47 | CopperTextItalic=0 48 | CopperTextUpright=1 49 | EdgeCutLineWidth=0.05 50 | CourtyardLineWidth=0.05 51 | OthersLineWidth=0.15 52 | OthersTextSizeV=1 53 | OthersTextSizeH=1 54 | OthersTextSizeThickness=0.15 55 | OthersTextItalic=0 56 | OthersTextUpright=1 57 | SolderMaskClearance=0 58 | SolderMaskMinWidth=0 59 | SolderPasteClearance=0 60 | SolderPasteRatio=-0 61 | [pcbnew/Layer.F.Cu] 62 | Name=F.Cu 63 | Type=0 64 | Enabled=1 65 | [pcbnew/Layer.In1.Cu] 66 | Name=In1.Cu 67 | Type=0 68 | Enabled=0 69 | [pcbnew/Layer.In2.Cu] 70 | Name=In2.Cu 71 | Type=0 72 | Enabled=0 73 | [pcbnew/Layer.In3.Cu] 74 | Name=In3.Cu 75 | Type=0 76 | Enabled=0 77 | [pcbnew/Layer.In4.Cu] 78 | Name=In4.Cu 79 | Type=0 80 | Enabled=0 81 | [pcbnew/Layer.In5.Cu] 82 | Name=In5.Cu 83 | Type=0 84 | Enabled=0 85 | [pcbnew/Layer.In6.Cu] 86 | Name=In6.Cu 87 | Type=0 88 | Enabled=0 89 | [pcbnew/Layer.In7.Cu] 90 | Name=In7.Cu 91 | Type=0 92 | Enabled=0 93 | [pcbnew/Layer.In8.Cu] 94 | Name=In8.Cu 95 | Type=0 96 | Enabled=0 97 | [pcbnew/Layer.In9.Cu] 98 | Name=In9.Cu 99 | Type=0 100 | Enabled=0 101 | [pcbnew/Layer.In10.Cu] 102 | Name=In10.Cu 103 | Type=0 104 | Enabled=0 105 | [pcbnew/Layer.In11.Cu] 106 | Name=In11.Cu 107 | Type=0 108 | Enabled=0 109 | [pcbnew/Layer.In12.Cu] 110 | Name=In12.Cu 111 | Type=0 112 | Enabled=0 113 | [pcbnew/Layer.In13.Cu] 114 | Name=In13.Cu 115 | Type=0 116 | Enabled=0 117 | [pcbnew/Layer.In14.Cu] 118 | Name=In14.Cu 119 | Type=0 120 | Enabled=0 121 | [pcbnew/Layer.In15.Cu] 122 | Name=In15.Cu 123 | Type=0 124 | Enabled=0 125 | [pcbnew/Layer.In16.Cu] 126 | Name=In16.Cu 127 | Type=0 128 | Enabled=0 129 | [pcbnew/Layer.In17.Cu] 130 | Name=In17.Cu 131 | Type=0 132 | Enabled=0 133 | [pcbnew/Layer.In18.Cu] 134 | Name=In18.Cu 135 | Type=0 136 | Enabled=0 137 | [pcbnew/Layer.In19.Cu] 138 | Name=In19.Cu 139 | Type=0 140 | Enabled=0 141 | [pcbnew/Layer.In20.Cu] 142 | Name=In20.Cu 143 | Type=0 144 | Enabled=0 145 | [pcbnew/Layer.In21.Cu] 146 | Name=In21.Cu 147 | Type=0 148 | Enabled=0 149 | [pcbnew/Layer.In22.Cu] 150 | Name=In22.Cu 151 | Type=0 152 | Enabled=0 153 | [pcbnew/Layer.In23.Cu] 154 | Name=In23.Cu 155 | Type=0 156 | Enabled=0 157 | [pcbnew/Layer.In24.Cu] 158 | Name=In24.Cu 159 | Type=0 160 | Enabled=0 161 | [pcbnew/Layer.In25.Cu] 162 | Name=In25.Cu 163 | Type=0 164 | Enabled=0 165 | [pcbnew/Layer.In26.Cu] 166 | Name=In26.Cu 167 | Type=0 168 | Enabled=0 169 | [pcbnew/Layer.In27.Cu] 170 | Name=In27.Cu 171 | Type=0 172 | Enabled=0 173 | [pcbnew/Layer.In28.Cu] 174 | Name=In28.Cu 175 | Type=0 176 | Enabled=0 177 | [pcbnew/Layer.In29.Cu] 178 | Name=In29.Cu 179 | Type=0 180 | Enabled=0 181 | [pcbnew/Layer.In30.Cu] 182 | Name=In30.Cu 183 | Type=0 184 | Enabled=0 185 | [pcbnew/Layer.B.Cu] 186 | Name=B.Cu 187 | Type=0 188 | Enabled=1 189 | [pcbnew/Layer.B.Adhes] 190 | Enabled=1 191 | [pcbnew/Layer.F.Adhes] 192 | Enabled=1 193 | [pcbnew/Layer.B.Paste] 194 | Enabled=1 195 | [pcbnew/Layer.F.Paste] 196 | Enabled=1 197 | [pcbnew/Layer.B.SilkS] 198 | Enabled=1 199 | [pcbnew/Layer.F.SilkS] 200 | Enabled=1 201 | [pcbnew/Layer.B.Mask] 202 | Enabled=1 203 | [pcbnew/Layer.F.Mask] 204 | Enabled=1 205 | [pcbnew/Layer.Dwgs.User] 206 | Enabled=1 207 | [pcbnew/Layer.Cmts.User] 208 | Enabled=1 209 | [pcbnew/Layer.Eco1.User] 210 | Enabled=1 211 | [pcbnew/Layer.Eco2.User] 212 | Enabled=1 213 | [pcbnew/Layer.Edge.Cuts] 214 | Enabled=1 215 | [pcbnew/Layer.Margin] 216 | Enabled=1 217 | [pcbnew/Layer.B.CrtYd] 218 | Enabled=1 219 | [pcbnew/Layer.F.CrtYd] 220 | Enabled=1 221 | [pcbnew/Layer.B.Fab] 222 | Enabled=1 223 | [pcbnew/Layer.F.Fab] 224 | Enabled=1 225 | [pcbnew/Layer.Rescue] 226 | Enabled=0 227 | [pcbnew/Netclasses] 228 | [pcbnew/Netclasses/Default] 229 | Name=Default 230 | Clearance=0.15 231 | TrackWidth=0.2 232 | ViaDiameter=0.5 233 | ViaDrill=0.3 234 | uViaDiameter=0.3 235 | uViaDrill=0.1 236 | dPairWidth=0.2 237 | dPairGap=0.25 238 | dPairViaGap=0.25 239 | [pcbnew/Netclasses/1] 240 | Name=Power 241 | Clearance=0.2 242 | TrackWidth=0.35 243 | ViaDiameter=0.5 244 | ViaDrill=0.3 245 | uViaDiameter=0.3 246 | uViaDrill=0.1 247 | dPairWidth=0.2 248 | dPairGap=0.25 249 | dPairViaGap=0.25 250 | -------------------------------------------------------------------------------- /kicad/nw12887.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 1 1 7 | Title "NW12887" 8 | Date "2021-05-21" 9 | Rev "1" 10 | Comp "Necroware" 11 | Comment1 "by Scorp" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | $Comp 17 | L nw12887:ds12887 U2 18 | U 1 1 60A068FA 19 | P 3850 2300 20 | F 0 "U2" H 3850 2475 50 0000 C CNN 21 | F 1 "ds12887" H 3850 2384 50 0000 C CNN 22 | F 2 "Package_DIP:DIP-24_W15.24mm_Socket" H 3850 2350 50 0001 C CNN 23 | F 3 "" H 3850 2350 50 0001 C CNN 24 | 1 3850 2300 25 | 1 0 0 -1 26 | $EndComp 27 | $Comp 28 | L nw12887:ds12887 U1 29 | U 1 1 60A06FF2 30 | P 5350 2300 31 | F 0 "U1" H 5350 2475 50 0000 C CNN 32 | F 1 "ds12887" H 5350 2384 50 0000 C CNN 33 | F 2 "Package_SO:SSOP-24_3.9x8.7mm_P0.635mm" H 5350 2350 50 0001 C CNN 34 | F 3 "" H 5350 2350 50 0001 C CNN 35 | 1 5350 2300 36 | 1 0 0 -1 37 | $EndComp 38 | $Comp 39 | L Device:Crystal_GND3 Y1 40 | U 1 1 60A0ABAA 41 | P 5000 1650 42 | F 0 "Y1" V 5100 1750 50 0000 C CNN 43 | F 1 "Crystal_Small" H 5000 1516 50 0001 C CNN 44 | F 2 "Crystal:Crystal_SMD_FrontierElectronics_FM206" H 5000 1650 50 0001 C CNN 45 | F 3 "~" H 5000 1650 50 0001 C CNN 46 | 1 5000 1650 47 | 0 -1 -1 0 48 | $EndComp 49 | Text GLabel 4250 2350 2 50 Input ~ 0 50 | VCC 51 | Text GLabel 5750 2350 2 50 Input ~ 0 52 | VCC 53 | Text GLabel 4250 2450 2 50 Input ~ 0 54 | SQW 55 | Text GLabel 4250 2850 2 50 Input ~ 0 56 | INT 57 | Text GLabel 4250 2950 2 50 Input ~ 0 58 | RST 59 | Text GLabel 4250 3050 2 50 Input ~ 0 60 | DS 61 | Text GLabel 4250 3250 2 50 Input ~ 0 62 | RW 63 | Text GLabel 4250 3350 2 50 Input ~ 0 64 | AS 65 | Text GLabel 4250 3450 2 50 Input ~ 0 66 | CS 67 | Text GLabel 5750 2450 2 50 Input ~ 0 68 | SQW 69 | NoConn ~ 4250 2550 70 | NoConn ~ 5750 2550 71 | NoConn ~ 3450 2450 72 | NoConn ~ 3450 2550 73 | NoConn ~ 4250 2750 74 | NoConn ~ 4250 3150 75 | Text GLabel 5750 2850 2 50 Input ~ 0 76 | INT 77 | Text GLabel 5750 2950 2 50 Input ~ 0 78 | RST 79 | NoConn ~ 4250 2650 80 | NoConn ~ 5750 2650 81 | Text GLabel 5750 3050 2 50 Input ~ 0 82 | DS 83 | Text GLabel 5750 3250 2 50 Input ~ 0 84 | RW 85 | Text GLabel 5750 3350 2 50 Input ~ 0 86 | AS 87 | Text GLabel 5750 3450 2 50 Input ~ 0 88 | CS 89 | Text GLabel 5750 3150 2 50 Input ~ 0 90 | GND 91 | Text GLabel 3450 3450 0 50 Input ~ 0 92 | GND 93 | Text GLabel 4950 3450 0 50 Input ~ 0 94 | GND 95 | Text GLabel 3450 2350 0 50 Input ~ 0 96 | MOT 97 | Text GLabel 3450 2650 0 50 Input ~ 0 98 | AD0 99 | Text GLabel 3450 2750 0 50 Input ~ 0 100 | AD1 101 | Text GLabel 3450 2850 0 50 Input ~ 0 102 | AD2 103 | Text GLabel 3450 2950 0 50 Input ~ 0 104 | AD3 105 | Text GLabel 3450 3050 0 50 Input ~ 0 106 | AD4 107 | Text GLabel 3450 3150 0 50 Input ~ 0 108 | AD5 109 | Text GLabel 3450 3250 0 50 Input ~ 0 110 | AD6 111 | Text GLabel 3450 3350 0 50 Input ~ 0 112 | AD7 113 | Text GLabel 4950 2650 0 50 Input ~ 0 114 | AD0 115 | Text GLabel 4950 2750 0 50 Input ~ 0 116 | AD1 117 | Text GLabel 4950 2850 0 50 Input ~ 0 118 | AD2 119 | Text GLabel 4950 2950 0 50 Input ~ 0 120 | AD3 121 | Text GLabel 4950 3050 0 50 Input ~ 0 122 | AD4 123 | Text GLabel 4950 3150 0 50 Input ~ 0 124 | AD5 125 | Text GLabel 4950 3250 0 50 Input ~ 0 126 | AD6 127 | Text GLabel 4950 3350 0 50 Input ~ 0 128 | AD7 129 | Text GLabel 4950 2350 0 50 Input ~ 0 130 | MOT 131 | $Comp 132 | L Device:Battery_Cell BT1 133 | U 1 1 60A1174E 134 | P 6350 1700 135 | F 0 "BT1" H 6468 1796 50 0000 L CNN 136 | F 1 "Battery_Cell" H 6468 1705 50 0000 L CNN 137 | F 2 "nw12887:BatteryHolder_CR1220" V 6350 1760 50 0001 C CNN 138 | F 3 "~" V 6350 1760 50 0001 C CNN 139 | 1 6350 1700 140 | 1 0 0 -1 141 | $EndComp 142 | Text GLabel 5000 1800 3 50 Input ~ 0 143 | X1 144 | Text GLabel 5000 1500 1 50 Input ~ 0 145 | X2 146 | Text GLabel 4950 2550 0 50 Input ~ 0 147 | X2 148 | Text GLabel 4950 2450 0 50 Input ~ 0 149 | X1 150 | Text GLabel 5750 2750 2 50 Input ~ 0 151 | BC 152 | Text GLabel 6350 1500 1 50 Input ~ 0 153 | BC 154 | Text GLabel 6350 1800 3 50 Input ~ 0 155 | GND 156 | Text GLabel 5200 1650 2 50 Input ~ 0 157 | GND 158 | $EndSCHEMATC 159 | -------------------------------------------------------------------------------- /kicad/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name nw12887)(type Legacy)(uri ${KIPRJMOD}/nw12887.lib)(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necroware/nw12887/ee16698d1ecc4f8c255e0d7b1bd81d3150a934d9/photo.jpg --------------------------------------------------------------------------------