├── .gitignore ├── LICENSE.txt ├── README.md ├── dac.kicad_sch ├── fp-lib-table ├── io.kicad_sch ├── mixer.kicad_sch ├── plots ├── polykit-x-mainboard-B_Cu.gbr ├── polykit-x-mainboard-B_Mask.gbr ├── polykit-x-mainboard-B_Paste.gbr ├── polykit-x-mainboard-B_Silkscreen.gbr ├── polykit-x-mainboard-Edge_Cuts.gbr ├── polykit-x-mainboard-F_Cu.gbr ├── polykit-x-mainboard-F_Mask.gbr ├── polykit-x-mainboard-F_Paste.gbr ├── polykit-x-mainboard-F_Silkscreen.gbr ├── polykit-x-mainboard-NPTH.drl ├── polykit-x-mainboard-PTH.drl ├── polykit-x-mainboard-job.gbrjob └── polykit-x-mainboard-v0.0.2.zip ├── polykit-x-mainboard-rendering.jpg ├── polykit-x-mainboard.kicad_pcb ├── polykit-x-mainboard.kicad_pro ├── polykit-x-mainboard.kicad_sch ├── polykit-x-mainboard.pdf ├── psu.kicad_sch ├── sh_cv.kicad_sch ├── sh_fm.kicad_sch ├── sh_pitch.kicad_sch ├── sh_vca.kicad_sch ├── voice.kicad_sch └── voices.kicad_sch /.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *.kicad_sch-bak 10 | *.kicad_prl 11 | *.sch-bak 12 | *~ 13 | _autosave-* 14 | *.tmp 15 | *-save.pro 16 | *-save.kicad_pcb 17 | fp-info-cache 18 | *.log 19 | 20 | # Netlist files (exported from Eeschema) 21 | *.net 22 | 23 | # Autorouter files (exported from Pcbnew) 24 | *.dsn 25 | *.ses 26 | 27 | # Exported BOM files 28 | *.xml 29 | *.csv 30 | 31 | /polykit-x-mainboard-backups 32 | /#auto_saved_files# 33 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Attribution-NonCommercial-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International 58 | Public License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-NonCommercial-ShareAlike 4.0 International Public License 63 | ("Public License"). To the extent this Public License may be 64 | interpreted as a contract, You are granted the Licensed Rights in 65 | consideration of Your acceptance of these terms and conditions, and the 66 | Licensor grants You such rights in consideration of benefits the 67 | Licensor receives from making the Licensed Material available under 68 | these terms and conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-NC-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution, NonCommercial, and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. NonCommercial means not primarily intended for or directed towards 126 | commercial advantage or monetary compensation. For purposes of 127 | this Public License, the exchange of the Licensed Material for 128 | other material subject to Copyright and Similar Rights by digital 129 | file-sharing or similar means is NonCommercial provided there is 130 | no payment of monetary compensation in connection with the 131 | exchange. 132 | 133 | l. Share means to provide material to the public by any means or 134 | process that requires permission under the Licensed Rights, such 135 | as reproduction, public display, public performance, distribution, 136 | dissemination, communication, or importation, and to make material 137 | available to the public including in ways that members of the 138 | public may access the material from a place and at a time 139 | individually chosen by them. 140 | 141 | m. Sui Generis Database Rights means rights other than copyright 142 | resulting from Directive 96/9/EC of the European Parliament and of 143 | the Council of 11 March 1996 on the legal protection of databases, 144 | as amended and/or succeeded, as well as other essentially 145 | equivalent rights anywhere in the world. 146 | 147 | n. You means the individual or entity exercising the Licensed Rights 148 | under this Public License. Your has a corresponding meaning. 149 | 150 | 151 | Section 2 -- Scope. 152 | 153 | a. License grant. 154 | 155 | 1. Subject to the terms and conditions of this Public License, 156 | the Licensor hereby grants You a worldwide, royalty-free, 157 | non-sublicensable, non-exclusive, irrevocable license to 158 | exercise the Licensed Rights in the Licensed Material to: 159 | 160 | a. reproduce and Share the Licensed Material, in whole or 161 | in part, for NonCommercial purposes only; and 162 | 163 | b. produce, reproduce, and Share Adapted Material for 164 | NonCommercial purposes only. 165 | 166 | 2. Exceptions and Limitations. For the avoidance of doubt, where 167 | Exceptions and Limitations apply to Your use, this Public 168 | License does not apply, and You do not need to comply with 169 | its terms and conditions. 170 | 171 | 3. Term. The term of this Public License is specified in Section 172 | 6(a). 173 | 174 | 4. Media and formats; technical modifications allowed. The 175 | Licensor authorizes You to exercise the Licensed Rights in 176 | all media and formats whether now known or hereafter created, 177 | and to make technical modifications necessary to do so. The 178 | Licensor waives and/or agrees not to assert any right or 179 | authority to forbid You from making technical modifications 180 | necessary to exercise the Licensed Rights, including 181 | technical modifications necessary to circumvent Effective 182 | Technological Measures. For purposes of this Public License, 183 | simply making modifications authorized by this Section 2(a) 184 | (4) never produces Adapted Material. 185 | 186 | 5. Downstream recipients. 187 | 188 | a. Offer from the Licensor -- Licensed Material. Every 189 | recipient of the Licensed Material automatically 190 | receives an offer from the Licensor to exercise the 191 | Licensed Rights under the terms and conditions of this 192 | Public License. 193 | 194 | b. Additional offer from the Licensor -- Adapted Material. 195 | Every recipient of Adapted Material from You 196 | automatically receives an offer from the Licensor to 197 | exercise the Licensed Rights in the Adapted Material 198 | under the conditions of the Adapter's License You apply. 199 | 200 | c. No downstream restrictions. You may not offer or impose 201 | any additional or different terms or conditions on, or 202 | apply any Effective Technological Measures to, the 203 | Licensed Material if doing so restricts exercise of the 204 | Licensed Rights by any recipient of the Licensed 205 | Material. 206 | 207 | 6. No endorsement. Nothing in this Public License constitutes or 208 | may be construed as permission to assert or imply that You 209 | are, or that Your use of the Licensed Material is, connected 210 | with, or sponsored, endorsed, or granted official status by, 211 | the Licensor or others designated to receive attribution as 212 | provided in Section 3(a)(1)(A)(i). 213 | 214 | b. Other rights. 215 | 216 | 1. Moral rights, such as the right of integrity, are not 217 | licensed under this Public License, nor are publicity, 218 | privacy, and/or other similar personality rights; however, to 219 | the extent possible, the Licensor waives and/or agrees not to 220 | assert any such rights held by the Licensor to the limited 221 | extent necessary to allow You to exercise the Licensed 222 | Rights, but not otherwise. 223 | 224 | 2. Patent and trademark rights are not licensed under this 225 | Public License. 226 | 227 | 3. To the extent possible, the Licensor waives any right to 228 | collect royalties from You for the exercise of the Licensed 229 | Rights, whether directly or through a collecting society 230 | under any voluntary or waivable statutory or compulsory 231 | licensing scheme. In all other cases the Licensor expressly 232 | reserves any right to collect such royalties, including when 233 | the Licensed Material is used other than for NonCommercial 234 | purposes. 235 | 236 | 237 | Section 3 -- License Conditions. 238 | 239 | Your exercise of the Licensed Rights is expressly made subject to the 240 | following conditions. 241 | 242 | a. Attribution. 243 | 244 | 1. If You Share the Licensed Material (including in modified 245 | form), You must: 246 | 247 | a. retain the following if it is supplied by the Licensor 248 | with the Licensed Material: 249 | 250 | i. identification of the creator(s) of the Licensed 251 | Material and any others designated to receive 252 | attribution, in any reasonable manner requested by 253 | the Licensor (including by pseudonym if 254 | designated); 255 | 256 | ii. a copyright notice; 257 | 258 | iii. a notice that refers to this Public License; 259 | 260 | iv. a notice that refers to the disclaimer of 261 | warranties; 262 | 263 | v. a URI or hyperlink to the Licensed Material to the 264 | extent reasonably practicable; 265 | 266 | b. indicate if You modified the Licensed Material and 267 | retain an indication of any previous modifications; and 268 | 269 | c. indicate the Licensed Material is licensed under this 270 | Public License, and include the text of, or the URI or 271 | hyperlink to, this Public License. 272 | 273 | 2. You may satisfy the conditions in Section 3(a)(1) in any 274 | reasonable manner based on the medium, means, and context in 275 | which You Share the Licensed Material. For example, it may be 276 | reasonable to satisfy the conditions by providing a URI or 277 | hyperlink to a resource that includes the required 278 | information. 279 | 3. If requested by the Licensor, You must remove any of the 280 | information required by Section 3(a)(1)(A) to the extent 281 | reasonably practicable. 282 | 283 | b. ShareAlike. 284 | 285 | In addition to the conditions in Section 3(a), if You Share 286 | Adapted Material You produce, the following conditions also apply. 287 | 288 | 1. The Adapter's License You apply must be a Creative Commons 289 | license with the same License Elements, this version or 290 | later, or a BY-NC-SA Compatible License. 291 | 292 | 2. You must include the text of, or the URI or hyperlink to, the 293 | Adapter's License You apply. You may satisfy this condition 294 | in any reasonable manner based on the medium, means, and 295 | context in which You Share Adapted Material. 296 | 297 | 3. You may not offer or impose any additional or different terms 298 | or conditions on, or apply any Effective Technological 299 | Measures to, Adapted Material that restrict exercise of the 300 | rights granted under the Adapter's License You apply. 301 | 302 | 303 | Section 4 -- Sui Generis Database Rights. 304 | 305 | Where the Licensed Rights include Sui Generis Database Rights that 306 | apply to Your use of the Licensed Material: 307 | 308 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 309 | to extract, reuse, reproduce, and Share all or a substantial 310 | portion of the contents of the database for NonCommercial purposes 311 | only; 312 | 313 | b. if You include all or a substantial portion of the database 314 | contents in a database in which You have Sui Generis Database 315 | Rights, then the database in which You have Sui Generis Database 316 | Rights (but not its individual contents) is Adapted Material, 317 | including for purposes of Section 3(b); and 318 | 319 | c. You must comply with the conditions in Section 3(a) if You Share 320 | all or a substantial portion of the contents of the database. 321 | 322 | For the avoidance of doubt, this Section 4 supplements and does not 323 | replace Your obligations under this Public License where the Licensed 324 | Rights include other Copyright and Similar Rights. 325 | 326 | 327 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 328 | 329 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 330 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 331 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 332 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 333 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 334 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 335 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 336 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 337 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 338 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 339 | 340 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 341 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 342 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 343 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 344 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 345 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 346 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 347 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 348 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 349 | 350 | c. The disclaimer of warranties and limitation of liability provided 351 | above shall be interpreted in a manner that, to the extent 352 | possible, most closely approximates an absolute disclaimer and 353 | waiver of all liability. 354 | 355 | 356 | Section 6 -- Term and Termination. 357 | 358 | a. This Public License applies for the term of the Copyright and 359 | Similar Rights licensed here. However, if You fail to comply with 360 | this Public License, then Your rights under this Public License 361 | terminate automatically. 362 | 363 | b. Where Your right to use the Licensed Material has terminated under 364 | Section 6(a), it reinstates: 365 | 366 | 1. automatically as of the date the violation is cured, provided 367 | it is cured within 30 days of Your discovery of the 368 | violation; or 369 | 370 | 2. upon express reinstatement by the Licensor. 371 | 372 | For the avoidance of doubt, this Section 6(b) does not affect any 373 | right the Licensor may have to seek remedies for Your violations 374 | of this Public License. 375 | 376 | c. For the avoidance of doubt, the Licensor may also offer the 377 | Licensed Material under separate terms or conditions or stop 378 | distributing the Licensed Material at any time; however, doing so 379 | will not terminate this Public License. 380 | 381 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 382 | License. 383 | 384 | 385 | Section 7 -- Other Terms and Conditions. 386 | 387 | a. The Licensor shall not be bound by any additional or different 388 | terms or conditions communicated by You unless expressly agreed. 389 | 390 | b. Any arrangements, understandings, or agreements regarding the 391 | Licensed Material not stated herein are separate from and 392 | independent of the terms and conditions of this Public License. 393 | 394 | 395 | Section 8 -- Interpretation. 396 | 397 | a. For the avoidance of doubt, this Public License does not, and 398 | shall not be interpreted to, reduce, limit, restrict, or impose 399 | conditions on any use of the Licensed Material that could lawfully 400 | be made without permission under this Public License. 401 | 402 | b. To the extent possible, if any provision of this Public License is 403 | deemed unenforceable, it shall be automatically reformed to the 404 | minimum extent necessary to make it enforceable. If the provision 405 | cannot be reformed, it shall be severed from this Public License 406 | without affecting the enforceability of the remaining terms and 407 | conditions. 408 | 409 | c. No term or condition of this Public License will be waived and no 410 | failure to comply consented to unless expressly agreed to by the 411 | Licensor. 412 | 413 | d. Nothing in this Public License constitutes or may be interpreted 414 | as a limitation upon, or waiver of, any privileges and immunities 415 | that apply to the Licensor or You, including from the legal 416 | processes of any jurisdiction or authority. 417 | 418 | ======================================================================= 419 | 420 | Creative Commons is not a party to its public 421 | licenses. Notwithstanding, Creative Commons may elect to apply one of 422 | its public licenses to material it publishes and in those instances 423 | will be considered the “Licensor.” The text of the Creative Commons 424 | public licenses is dedicated to the public domain under the CC0 Public 425 | Domain Dedication. Except for the limited purpose of indicating that 426 | material is shared under a Creative Commons public license or as 427 | otherwise permitted by the Creative Commons policies published at 428 | creativecommons.org/policies, Creative Commons does not authorize the 429 | use of the trademark "Creative Commons" or any other trademark or logo 430 | of Creative Commons without its prior written consent including, 431 | without limitation, in connection with any unauthorized modifications 432 | to any of its public licenses or any other arrangements, 433 | understandings, or agreements concerning use of licensed material. For 434 | the avoidance of doubt, this paragraph does not form part of the 435 | public licenses. 436 | 437 | Creative Commons may be contacted at creativecommons.org. 438 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Polykit X8 Mainboard 2 | 3 | _THIS IS NOT A FINISHED PRODUCT IN ANY WAY AND STILL UNDER HEAVY DEVELOPMENT - USE AT YOUR OWN RISK!_ 4 | 5 | This repository contains Kicad schematics and PCB layout for a main board for a polyphonic synthesizer that is controlled by a micro controller. 6 | 7 | Key features: 8 | 9 | * 8 voice cards 10 | * 16-bit DAC 11 | * Atmel2560 micro controller 12 | * Eurorack powered 13 | * MIDI input/output 14 | 15 | All parameters of the voice cards are controlled by the DAC. That means patches can be stored and recalled. 16 | 17 | There is a video playlist on the design process https://makertube.net/w/p/3N2fRjXwT2SfAUv2VkMy3e 18 | 19 | ![Polykit X8 Main Board Rendering](polykit-x-mainboard-rendering.jpg) 20 | 21 | Related repositories: 22 | 23 | * Voice Card: https://github.com/polykit/polykit-x-voice-card 24 | * Control Board: https://github.com/polykit/polykit-x-controlboard 25 | * Input Board: _soon_ 26 | * Software: _soon_ 27 | * Power Supply: https://github.com/polykit/eurorack-psu 28 | 29 | ## BOM 30 | 31 | |Reference |Value |Footprint |Qty| 32 | |-------------------------------------------------------------|----------------|--------------------------------------------------------------|---| 33 | |C1, C2, C11-C18, C23-C25, C31-C34, C43-C47, C56-C59, C64, C65|100n ceramic |Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder |28 | 34 | |C3-C10, C19-C22, C26-C29, C35-C42, C48-C55 |10n film, PPS |Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder |32 | 35 | |C30 |10u |Capacitor_SMD:CP_Elec_5x5.9 |1 | 36 | |C60-C63 |100u |Capacitor_SMD:CP_Elec_6.3x7.7 |4 | 37 | |D1 |1N4148WS |Diode_SMD:D_SOD-323_HandSoldering |1 | 38 | |J1 |POWER |Connector_IDC:IDC-Header_2x08_P2.54mm_Vertical |1 | 39 | |J2 |OUTPUT |Connector_Molex:Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical|1 | 40 | |J3 |MIDI IN |Connector_Molex:Molex_KK-254_AE-6410-02A_1x02_P2.54mm_Vertical|1 | 41 | |J4 |MIDI_OUT |Connector_Molex:Molex_KK-254_AE-6410-02A_1x02_P2.54mm_Vertical|1 | 42 | |J5 |EXTERNAL_IN |Connector_Molex:Molex_KK-254_AE-6410-02A_1x02_P2.54mm_Vertical|1 | 43 | |J6 |I2C_1 |Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical |1 | 44 | |J7 |I2C_2 |Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical |1 | 45 | |J8 |SPI |Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical |1 | 46 | |J9 |EXT_ANALOG |Connector_IDC:IDC-Header_2x08_P2.54mm_Vertical |1 | 47 | |J10 |EXT_DIGITAL |Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical |1 | 48 | |R1-R7, R13-R41 |100k |Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder |36 | 49 | |R8, R42, R43 |1k |Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder |3 | 50 | |R9-R12, R47 |10k |Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder |5 | 51 | |R44-R46 |220R |Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder |3 | 52 | |U1 |Mega2560Pro_Mini|aga:Mega2560Pro_Embed_RobotDyn |1 | 53 | |U2, U5, U12, U15 |CD4051B |Package_SO:SO-16_5.3x10.2mm_P1.27mm |4 | 54 | |U3, U4, U6-U8, U13, U14, U16, U17, U19 |TL074 |Package_SO:SO-14_3.9x8.65mm_P1.27mm |10 | 55 | |U9 |LM4040AIM3-5.0 |Package_TO_SOT_SMD:SOT-23 |1 | 56 | |U10 |AD5676ARUZ |Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm |1 | 57 | |U11 |TL072 |Package_SO:SO-8_3.9x4.9mm_P1.27mm |1 | 58 | |U18 |L7905 |Package_TO_SOT_SMD:TO-263-2 |1 | 59 | |U20 |6N137 |Package_DIP:DIP-8_W7.62mm_SMDSocket_SmallPads |1 | 60 | |VOICE1-VOICE8 |VOICE |Connector_PinSocket_2.54mm:PinSocket_1x36_P2.54mm_Vertical |8 | 61 | 62 | 63 | ## Tweaks 64 | 65 | * If saw/triangle signal is not audible replace R38 with a 220k resistor on the voice cards 66 | 67 | ## References 68 | 69 | https://www.analog.com/media/en/technical-documentation/data-sheets/ad5676.pdf 70 | -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | ) 3 | -------------------------------------------------------------------------------- /plots/polykit-x-mainboard-B_Mask.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.10-7.0.10~ubuntu22.04.1*% 2 | %TF.CreationDate,2024-01-14T12:30:21+01:00*% 3 | %TF.ProjectId,polykit-x-mainboard,706f6c79-6b69-4742-9d78-2d6d61696e62,v0.0.2*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Bot*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.10-7.0.10~ubuntu22.04.1) date 2024-01-14 12:30:21* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | G04 Aperture macros list end* 32 | %ADD10R,1.700000X1.700000*% 33 | %ADD11O,1.700000X1.700000*% 34 | %ADD12RoundRect,0.250000X-0.600000X-0.600000X0.600000X-0.600000X0.600000X0.600000X-0.600000X0.600000X0*% 35 | %ADD13C,1.700000*% 36 | %ADD14RoundRect,0.250000X-0.620000X-0.845000X0.620000X-0.845000X0.620000X0.845000X-0.620000X0.845000X0*% 37 | %ADD15O,1.740000X2.190000*% 38 | %ADD16R,1.524000X1.524000*% 39 | %ADD17C,1.524000*% 40 | %ADD18RoundRect,0.250000X0.600000X-0.600000X0.600000X0.600000X-0.600000X0.600000X-0.600000X-0.600000X0*% 41 | G04 APERTURE END LIST* 42 | D10* 43 | %TO.C,VOICE2*% 44 | X230000000Y-175630000D03* 45 | D11* 46 | X230000000Y-173090000D03* 47 | X230000000Y-170550000D03* 48 | X230000000Y-168010000D03* 49 | X230000000Y-165470000D03* 50 | X230000000Y-162930000D03* 51 | X230000000Y-160390000D03* 52 | X230000000Y-157850000D03* 53 | X230000000Y-155310000D03* 54 | X230000000Y-152770000D03* 55 | X230000000Y-150230000D03* 56 | X230000000Y-147690000D03* 57 | X230000000Y-145150000D03* 58 | X230000000Y-142610000D03* 59 | X230000000Y-140070000D03* 60 | X230000000Y-137530000D03* 61 | X230000000Y-134990000D03* 62 | X230000000Y-132450000D03* 63 | X230000000Y-129910000D03* 64 | X230000000Y-127370000D03* 65 | X230000000Y-124830000D03* 66 | X230000000Y-122290000D03* 67 | X230000000Y-119750000D03* 68 | X230000000Y-117210000D03* 69 | X230000000Y-114670000D03* 70 | X230000000Y-112130000D03* 71 | X230000000Y-109590000D03* 72 | X230000000Y-107050000D03* 73 | X230000000Y-104510000D03* 74 | X230000000Y-101970000D03* 75 | X230000000Y-99430000D03* 76 | X230000000Y-96890000D03* 77 | X230000000Y-94350000D03* 78 | X230000000Y-91810000D03* 79 | X230000000Y-89270000D03* 80 | X230000000Y-86730000D03* 81 | %TD*% 82 | D12* 83 | %TO.C,J9*% 84 | X58747500Y-177910000D03* 85 | D13* 86 | X61287500Y-177910000D03* 87 | X58747500Y-180450000D03* 88 | X61287500Y-180450000D03* 89 | X58747500Y-182990000D03* 90 | X61287500Y-182990000D03* 91 | X58747500Y-185530000D03* 92 | X61287500Y-185530000D03* 93 | X58747500Y-188070000D03* 94 | X61287500Y-188070000D03* 95 | X58747500Y-190610000D03* 96 | X61287500Y-190610000D03* 97 | X58747500Y-193150000D03* 98 | X61287500Y-193150000D03* 99 | X58747500Y-195690000D03* 100 | X61287500Y-195690000D03* 101 | %TD*% 102 | D14* 103 | %TO.C,J5*% 104 | X172980000Y-31500000D03* 105 | D15* 106 | X175520000Y-31500000D03* 107 | %TD*% 108 | D10* 109 | %TO.C,VOICE6*% 110 | X290000000Y-175630000D03* 111 | D11* 112 | X290000000Y-173090000D03* 113 | X290000000Y-170550000D03* 114 | X290000000Y-168010000D03* 115 | X290000000Y-165470000D03* 116 | X290000000Y-162930000D03* 117 | X290000000Y-160390000D03* 118 | X290000000Y-157850000D03* 119 | X290000000Y-155310000D03* 120 | X290000000Y-152770000D03* 121 | X290000000Y-150230000D03* 122 | X290000000Y-147690000D03* 123 | X290000000Y-145150000D03* 124 | X290000000Y-142610000D03* 125 | X290000000Y-140070000D03* 126 | X290000000Y-137530000D03* 127 | X290000000Y-134990000D03* 128 | X290000000Y-132450000D03* 129 | X290000000Y-129910000D03* 130 | X290000000Y-127370000D03* 131 | X290000000Y-124830000D03* 132 | X290000000Y-122290000D03* 133 | X290000000Y-119750000D03* 134 | X290000000Y-117210000D03* 135 | X290000000Y-114670000D03* 136 | X290000000Y-112130000D03* 137 | X290000000Y-109590000D03* 138 | X290000000Y-107050000D03* 139 | X290000000Y-104510000D03* 140 | X290000000Y-101970000D03* 141 | X290000000Y-99430000D03* 142 | X290000000Y-96890000D03* 143 | X290000000Y-94350000D03* 144 | X290000000Y-91810000D03* 145 | X290000000Y-89270000D03* 146 | X290000000Y-86730000D03* 147 | %TD*% 148 | D12* 149 | %TO.C,J8*% 150 | X58747500Y-148130000D03* 151 | D13* 152 | X61287500Y-148130000D03* 153 | X58747500Y-150670000D03* 154 | X61287500Y-150670000D03* 155 | X58747500Y-153210000D03* 156 | X61287500Y-153210000D03* 157 | X58747500Y-155750000D03* 158 | X61287500Y-155750000D03* 159 | X58747500Y-158290000D03* 160 | X61287500Y-158290000D03* 161 | %TD*% 162 | D16* 163 | %TO.C,U1*% 164 | X78000000Y-149880000D03* 165 | D17* 166 | X78000000Y-147340000D03* 167 | X80540000Y-149880000D03* 168 | X80540000Y-147340000D03* 169 | X83080000Y-149880000D03* 170 | X83080000Y-147340000D03* 171 | X85620000Y-149880000D03* 172 | X85620000Y-147340000D03* 173 | X88160000Y-149880000D03* 174 | X88160000Y-147340000D03* 175 | X90700000Y-149880000D03* 176 | X90700000Y-147340000D03* 177 | X93240000Y-149880000D03* 178 | X93240000Y-147340000D03* 179 | X95780000Y-149880000D03* 180 | X95780000Y-147340000D03* 181 | X98320000Y-149880000D03* 182 | X98320000Y-147340000D03* 183 | X100860000Y-149880000D03* 184 | X100860000Y-147340000D03* 185 | X103400000Y-149880000D03* 186 | X103400000Y-147340000D03* 187 | X105940000Y-149880000D03* 188 | X105940000Y-147340000D03* 189 | X108480000Y-149880000D03* 190 | X108480000Y-147340000D03* 191 | X111020000Y-149880000D03* 192 | X111020000Y-147340000D03* 193 | X113560000Y-149880000D03* 194 | X113560000Y-147340000D03* 195 | X116100000Y-149880000D03* 196 | X116100000Y-147340000D03* 197 | X118640000Y-149880000D03* 198 | X118640000Y-147340000D03* 199 | X121180000Y-149880000D03* 200 | X121180000Y-147340000D03* 201 | X123720000Y-149880000D03* 202 | X123720000Y-147340000D03* 203 | X126260000Y-149880000D03* 204 | X126260000Y-147340000D03* 205 | X128800000Y-149880000D03* 206 | X128800000Y-147340000D03* 207 | X90700000Y-116860000D03* 208 | X90700000Y-114320000D03* 209 | X93240000Y-116860000D03* 210 | X93240000Y-114320000D03* 211 | X95780000Y-116860000D03* 212 | X95780000Y-114320000D03* 213 | X98320000Y-116860000D03* 214 | X98320000Y-114320000D03* 215 | X100860000Y-116860000D03* 216 | X100860000Y-114320000D03* 217 | X103400000Y-116860000D03* 218 | X103400000Y-114320000D03* 219 | X105940000Y-116860000D03* 220 | X105940000Y-114320000D03* 221 | X108480000Y-116860000D03* 222 | X108480000Y-114320000D03* 223 | X111020000Y-116860000D03* 224 | X111020000Y-114320000D03* 225 | X113560000Y-116860000D03* 226 | X113560000Y-114320000D03* 227 | X116100000Y-116860000D03* 228 | X116100000Y-114320000D03* 229 | X118640000Y-116860000D03* 230 | X118640000Y-114320000D03* 231 | X121180000Y-116860000D03* 232 | X121180000Y-114320000D03* 233 | X123720000Y-116860000D03* 234 | X123720000Y-114320000D03* 235 | X126260000Y-116860000D03* 236 | X126260000Y-114320000D03* 237 | X128800000Y-116860000D03* 238 | X128800000Y-114320000D03* 239 | X126260000Y-119400000D03* 240 | X128800000Y-119400000D03* 241 | X126260000Y-121940000D03* 242 | X128800000Y-121940000D03* 243 | X126260000Y-124480000D03* 244 | X128800000Y-124480000D03* 245 | X126260000Y-132100000D03* 246 | X128800000Y-132100000D03* 247 | X126260000Y-134640000D03* 248 | X128800000Y-134640000D03* 249 | X126260000Y-137180000D03* 250 | X128800000Y-137180000D03* 251 | %TD*% 252 | D12* 253 | %TO.C,J7*% 254 | X58747500Y-103020000D03* 255 | D13* 256 | X61287500Y-103020000D03* 257 | X58747500Y-105560000D03* 258 | X61287500Y-105560000D03* 259 | X58747500Y-108100000D03* 260 | X61287500Y-108100000D03* 261 | X58747500Y-110640000D03* 262 | X61287500Y-110640000D03* 263 | X58747500Y-113180000D03* 264 | X61287500Y-113180000D03* 265 | %TD*% 266 | D14* 267 | %TO.C,J4*% 268 | X125460000Y-31500000D03* 269 | D15* 270 | X128000000Y-31500000D03* 271 | %TD*% 272 | D18* 273 | %TO.C,J1*% 274 | X81110000Y-33485000D03* 275 | D13* 276 | X81110000Y-30945000D03* 277 | X83650000Y-33485000D03* 278 | X83650000Y-30945000D03* 279 | X86190000Y-33485000D03* 280 | X86190000Y-30945000D03* 281 | X88730000Y-33485000D03* 282 | X88730000Y-30945000D03* 283 | X91270000Y-33485000D03* 284 | X91270000Y-30945000D03* 285 | X93810000Y-33485000D03* 286 | X93810000Y-30945000D03* 287 | X96350000Y-33485000D03* 288 | X96350000Y-30945000D03* 289 | X98890000Y-33485000D03* 290 | X98890000Y-30945000D03* 291 | %TD*% 292 | D14* 293 | %TO.C,J2*% 294 | X156750000Y-31500000D03* 295 | D15* 296 | X159290000Y-31500000D03* 297 | X161830000Y-31500000D03* 298 | %TD*% 299 | D18* 300 | %TO.C,J6*% 301 | X113500000Y-233300000D03* 302 | D13* 303 | X113500000Y-230760000D03* 304 | X116040000Y-233300000D03* 305 | X116040000Y-230760000D03* 306 | X118580000Y-233300000D03* 307 | X118580000Y-230760000D03* 308 | X121120000Y-233300000D03* 309 | X121120000Y-230760000D03* 310 | X123660000Y-233300000D03* 311 | X123660000Y-230760000D03* 312 | %TD*% 313 | D10* 314 | %TO.C,VOICE3*% 315 | X245000000Y-175630000D03* 316 | D11* 317 | X245000000Y-173090000D03* 318 | X245000000Y-170550000D03* 319 | X245000000Y-168010000D03* 320 | X245000000Y-165470000D03* 321 | X245000000Y-162930000D03* 322 | X245000000Y-160390000D03* 323 | X245000000Y-157850000D03* 324 | X245000000Y-155310000D03* 325 | X245000000Y-152770000D03* 326 | X245000000Y-150230000D03* 327 | X245000000Y-147690000D03* 328 | X245000000Y-145150000D03* 329 | X245000000Y-142610000D03* 330 | X245000000Y-140070000D03* 331 | X245000000Y-137530000D03* 332 | X245000000Y-134990000D03* 333 | X245000000Y-132450000D03* 334 | X245000000Y-129910000D03* 335 | X245000000Y-127370000D03* 336 | X245000000Y-124830000D03* 337 | X245000000Y-122290000D03* 338 | X245000000Y-119750000D03* 339 | X245000000Y-117210000D03* 340 | X245000000Y-114670000D03* 341 | X245000000Y-112130000D03* 342 | X245000000Y-109590000D03* 343 | X245000000Y-107050000D03* 344 | X245000000Y-104510000D03* 345 | X245000000Y-101970000D03* 346 | X245000000Y-99430000D03* 347 | X245000000Y-96890000D03* 348 | X245000000Y-94350000D03* 349 | X245000000Y-91810000D03* 350 | X245000000Y-89270000D03* 351 | X245000000Y-86730000D03* 352 | %TD*% 353 | D14* 354 | %TO.C,J3*% 355 | X135480000Y-31500000D03* 356 | D15* 357 | X138020000Y-31500000D03* 358 | %TD*% 359 | D10* 360 | %TO.C,VOICE5*% 361 | X275000000Y-175630000D03* 362 | D11* 363 | X275000000Y-173090000D03* 364 | X275000000Y-170550000D03* 365 | X275000000Y-168010000D03* 366 | X275000000Y-165470000D03* 367 | X275000000Y-162930000D03* 368 | X275000000Y-160390000D03* 369 | X275000000Y-157850000D03* 370 | X275000000Y-155310000D03* 371 | X275000000Y-152770000D03* 372 | X275000000Y-150230000D03* 373 | X275000000Y-147690000D03* 374 | X275000000Y-145150000D03* 375 | X275000000Y-142610000D03* 376 | X275000000Y-140070000D03* 377 | X275000000Y-137530000D03* 378 | X275000000Y-134990000D03* 379 | X275000000Y-132450000D03* 380 | X275000000Y-129910000D03* 381 | X275000000Y-127370000D03* 382 | X275000000Y-124830000D03* 383 | X275000000Y-122290000D03* 384 | X275000000Y-119750000D03* 385 | X275000000Y-117210000D03* 386 | X275000000Y-114670000D03* 387 | X275000000Y-112130000D03* 388 | X275000000Y-109590000D03* 389 | X275000000Y-107050000D03* 390 | X275000000Y-104510000D03* 391 | X275000000Y-101970000D03* 392 | X275000000Y-99430000D03* 393 | X275000000Y-96890000D03* 394 | X275000000Y-94350000D03* 395 | X275000000Y-91810000D03* 396 | X275000000Y-89270000D03* 397 | X275000000Y-86730000D03* 398 | %TD*% 399 | D10* 400 | %TO.C,VOICE8*% 401 | X320000000Y-175630000D03* 402 | D11* 403 | X320000000Y-173090000D03* 404 | X320000000Y-170550000D03* 405 | X320000000Y-168010000D03* 406 | X320000000Y-165470000D03* 407 | X320000000Y-162930000D03* 408 | X320000000Y-160390000D03* 409 | X320000000Y-157850000D03* 410 | X320000000Y-155310000D03* 411 | X320000000Y-152770000D03* 412 | X320000000Y-150230000D03* 413 | X320000000Y-147690000D03* 414 | X320000000Y-145150000D03* 415 | X320000000Y-142610000D03* 416 | X320000000Y-140070000D03* 417 | X320000000Y-137530000D03* 418 | X320000000Y-134990000D03* 419 | X320000000Y-132450000D03* 420 | X320000000Y-129910000D03* 421 | X320000000Y-127370000D03* 422 | X320000000Y-124830000D03* 423 | X320000000Y-122290000D03* 424 | X320000000Y-119750000D03* 425 | X320000000Y-117210000D03* 426 | X320000000Y-114670000D03* 427 | X320000000Y-112130000D03* 428 | X320000000Y-109590000D03* 429 | X320000000Y-107050000D03* 430 | X320000000Y-104510000D03* 431 | X320000000Y-101970000D03* 432 | X320000000Y-99430000D03* 433 | X320000000Y-96890000D03* 434 | X320000000Y-94350000D03* 435 | X320000000Y-91810000D03* 436 | X320000000Y-89270000D03* 437 | X320000000Y-86730000D03* 438 | %TD*% 439 | D12* 440 | %TO.C,J10*% 441 | X58747500Y-212520000D03* 442 | D13* 443 | X61287500Y-212520000D03* 444 | X58747500Y-215060000D03* 445 | X61287500Y-215060000D03* 446 | X58747500Y-217600000D03* 447 | X61287500Y-217600000D03* 448 | X58747500Y-220140000D03* 449 | X61287500Y-220140000D03* 450 | X58747500Y-222680000D03* 451 | X61287500Y-222680000D03* 452 | %TD*% 453 | D10* 454 | %TO.C,VOICE4*% 455 | X260000000Y-175630000D03* 456 | D11* 457 | X260000000Y-173090000D03* 458 | X260000000Y-170550000D03* 459 | X260000000Y-168010000D03* 460 | X260000000Y-165470000D03* 461 | X260000000Y-162930000D03* 462 | X260000000Y-160390000D03* 463 | X260000000Y-157850000D03* 464 | X260000000Y-155310000D03* 465 | X260000000Y-152770000D03* 466 | X260000000Y-150230000D03* 467 | X260000000Y-147690000D03* 468 | X260000000Y-145150000D03* 469 | X260000000Y-142610000D03* 470 | X260000000Y-140070000D03* 471 | X260000000Y-137530000D03* 472 | X260000000Y-134990000D03* 473 | X260000000Y-132450000D03* 474 | X260000000Y-129910000D03* 475 | X260000000Y-127370000D03* 476 | X260000000Y-124830000D03* 477 | X260000000Y-122290000D03* 478 | X260000000Y-119750000D03* 479 | X260000000Y-117210000D03* 480 | X260000000Y-114670000D03* 481 | X260000000Y-112130000D03* 482 | X260000000Y-109590000D03* 483 | X260000000Y-107050000D03* 484 | X260000000Y-104510000D03* 485 | X260000000Y-101970000D03* 486 | X260000000Y-99430000D03* 487 | X260000000Y-96890000D03* 488 | X260000000Y-94350000D03* 489 | X260000000Y-91810000D03* 490 | X260000000Y-89270000D03* 491 | X260000000Y-86730000D03* 492 | %TD*% 493 | D10* 494 | %TO.C,VOICE1*% 495 | X215000000Y-175630000D03* 496 | D11* 497 | X215000000Y-173090000D03* 498 | X215000000Y-170550000D03* 499 | X215000000Y-168010000D03* 500 | X215000000Y-165470000D03* 501 | X215000000Y-162930000D03* 502 | X215000000Y-160390000D03* 503 | X215000000Y-157850000D03* 504 | X215000000Y-155310000D03* 505 | X215000000Y-152770000D03* 506 | X215000000Y-150230000D03* 507 | X215000000Y-147690000D03* 508 | X215000000Y-145150000D03* 509 | X215000000Y-142610000D03* 510 | X215000000Y-140070000D03* 511 | X215000000Y-137530000D03* 512 | X215000000Y-134990000D03* 513 | X215000000Y-132450000D03* 514 | X215000000Y-129910000D03* 515 | X215000000Y-127370000D03* 516 | X215000000Y-124830000D03* 517 | X215000000Y-122290000D03* 518 | X215000000Y-119750000D03* 519 | X215000000Y-117210000D03* 520 | X215000000Y-114670000D03* 521 | X215000000Y-112130000D03* 522 | X215000000Y-109590000D03* 523 | X215000000Y-107050000D03* 524 | X215000000Y-104510000D03* 525 | X215000000Y-101970000D03* 526 | X215000000Y-99430000D03* 527 | X215000000Y-96890000D03* 528 | X215000000Y-94350000D03* 529 | X215000000Y-91810000D03* 530 | X215000000Y-89270000D03* 531 | X215000000Y-86730000D03* 532 | %TD*% 533 | D10* 534 | %TO.C,VOICE7*% 535 | X305000000Y-175630000D03* 536 | D11* 537 | X305000000Y-173090000D03* 538 | X305000000Y-170550000D03* 539 | X305000000Y-168010000D03* 540 | X305000000Y-165470000D03* 541 | X305000000Y-162930000D03* 542 | X305000000Y-160390000D03* 543 | X305000000Y-157850000D03* 544 | X305000000Y-155310000D03* 545 | X305000000Y-152770000D03* 546 | X305000000Y-150230000D03* 547 | X305000000Y-147690000D03* 548 | X305000000Y-145150000D03* 549 | X305000000Y-142610000D03* 550 | X305000000Y-140070000D03* 551 | X305000000Y-137530000D03* 552 | X305000000Y-134990000D03* 553 | X305000000Y-132450000D03* 554 | X305000000Y-129910000D03* 555 | X305000000Y-127370000D03* 556 | X305000000Y-124830000D03* 557 | X305000000Y-122290000D03* 558 | X305000000Y-119750000D03* 559 | X305000000Y-117210000D03* 560 | X305000000Y-114670000D03* 561 | X305000000Y-112130000D03* 562 | X305000000Y-109590000D03* 563 | X305000000Y-107050000D03* 564 | X305000000Y-104510000D03* 565 | X305000000Y-101970000D03* 566 | X305000000Y-99430000D03* 567 | X305000000Y-96890000D03* 568 | X305000000Y-94350000D03* 569 | X305000000Y-91810000D03* 570 | X305000000Y-89270000D03* 571 | X305000000Y-86730000D03* 572 | %TD*% 573 | M02* 574 | -------------------------------------------------------------------------------- /plots/polykit-x-mainboard-B_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.10-7.0.10~ubuntu22.04.1*% 2 | %TF.CreationDate,2024-01-14T12:30:21+01:00*% 3 | %TF.ProjectId,polykit-x-mainboard,706f6c79-6b69-4742-9d78-2d6d61696e62,v0.0.2*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.10-7.0.10~ubuntu22.04.1) date 2024-01-14 12:30:21* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 APERTURE END LIST* 15 | M02* 16 | -------------------------------------------------------------------------------- /plots/polykit-x-mainboard-B_Silkscreen.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.10-7.0.10~ubuntu22.04.1*% 2 | %TF.CreationDate,2024-01-14T12:30:21+01:00*% 3 | %TF.ProjectId,polykit-x-mainboard,706f6c79-6b69-4742-9d78-2d6d61696e62,v0.0.2*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Legend,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.10-7.0.10~ubuntu22.04.1) date 2024-01-14 12:30:21* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10C,0.300000*% 15 | G04 APERTURE END LIST* 16 | D10* 17 | X277228571Y-234078328D02* 18 | X277228571Y-235149757D01* 19 | X277228571Y-235149757D02* 20 | X277300000Y-235364042D01* 21 | X277300000Y-235364042D02* 22 | X277442857Y-235506900D01* 23 | X277442857Y-235506900D02* 24 | X277657143Y-235578328D01* 25 | X277657143Y-235578328D02* 26 | X277800000Y-235578328D01* 27 | X275800000Y-235578328D02* 28 | X276514286Y-235578328D01* 29 | X276514286Y-235578328D02* 30 | X276514286Y-234078328D01* 31 | X274442857Y-235435471D02* 32 | X274514285Y-235506900D01* 33 | X274514285Y-235506900D02* 34 | X274728571Y-235578328D01* 35 | X274728571Y-235578328D02* 36 | X274871428Y-235578328D01* 37 | X274871428Y-235578328D02* 38 | X275085714Y-235506900D01* 39 | X275085714Y-235506900D02* 40 | X275228571Y-235364042D01* 41 | X275228571Y-235364042D02* 42 | X275300000Y-235221185D01* 43 | X275300000Y-235221185D02* 44 | X275371428Y-234935471D01* 45 | X275371428Y-234935471D02* 46 | X275371428Y-234721185D01* 47 | X275371428Y-234721185D02* 48 | X275300000Y-234435471D01* 49 | X275300000Y-234435471D02* 50 | X275228571Y-234292614D01* 51 | X275228571Y-234292614D02* 52 | X275085714Y-234149757D01* 53 | X275085714Y-234149757D02* 54 | X274871428Y-234078328D01* 55 | X274871428Y-234078328D02* 56 | X274728571Y-234078328D01* 57 | X274728571Y-234078328D02* 58 | X274514285Y-234149757D01* 59 | X274514285Y-234149757D02* 60 | X274442857Y-234221185D01* 61 | X273371428Y-234078328D02* 62 | X273371428Y-235149757D01* 63 | X273371428Y-235149757D02* 64 | X273442857Y-235364042D01* 65 | X273442857Y-235364042D02* 66 | X273585714Y-235506900D01* 67 | X273585714Y-235506900D02* 68 | X273800000Y-235578328D01* 69 | X273800000Y-235578328D02* 70 | X273942857Y-235578328D01* 71 | X271942857Y-235578328D02* 72 | X272657143Y-235578328D01* 73 | X272657143Y-235578328D02* 74 | X272657143Y-234078328D01* 75 | X270585714Y-235435471D02* 76 | X270657142Y-235506900D01* 77 | X270657142Y-235506900D02* 78 | X270871428Y-235578328D01* 79 | X270871428Y-235578328D02* 80 | X271014285Y-235578328D01* 81 | X271014285Y-235578328D02* 82 | X271228571Y-235506900D01* 83 | X271228571Y-235506900D02* 84 | X271371428Y-235364042D01* 85 | X271371428Y-235364042D02* 86 | X271442857Y-235221185D01* 87 | X271442857Y-235221185D02* 88 | X271514285Y-234935471D01* 89 | X271514285Y-234935471D02* 90 | X271514285Y-234721185D01* 91 | X271514285Y-234721185D02* 92 | X271442857Y-234435471D01* 93 | X271442857Y-234435471D02* 94 | X271371428Y-234292614D01* 95 | X271371428Y-234292614D02* 96 | X271228571Y-234149757D01* 97 | X271228571Y-234149757D02* 98 | X271014285Y-234078328D01* 99 | X271014285Y-234078328D02* 100 | X270871428Y-234078328D01* 101 | X270871428Y-234078328D02* 102 | X270657142Y-234149757D01* 103 | X270657142Y-234149757D02* 104 | X270585714Y-234221185D01* 105 | X269514285Y-234078328D02* 106 | X269514285Y-235149757D01* 107 | X269514285Y-235149757D02* 108 | X269585714Y-235364042D01* 109 | X269585714Y-235364042D02* 110 | X269728571Y-235506900D01* 111 | X269728571Y-235506900D02* 112 | X269942857Y-235578328D01* 113 | X269942857Y-235578328D02* 114 | X270085714Y-235578328D01* 115 | X268085714Y-235578328D02* 116 | X268800000Y-235578328D01* 117 | X268800000Y-235578328D02* 118 | X268800000Y-234078328D01* 119 | X266728571Y-235435471D02* 120 | X266799999Y-235506900D01* 121 | X266799999Y-235506900D02* 122 | X267014285Y-235578328D01* 123 | X267014285Y-235578328D02* 124 | X267157142Y-235578328D01* 125 | X267157142Y-235578328D02* 126 | X267371428Y-235506900D01* 127 | X267371428Y-235506900D02* 128 | X267514285Y-235364042D01* 129 | X267514285Y-235364042D02* 130 | X267585714Y-235221185D01* 131 | X267585714Y-235221185D02* 132 | X267657142Y-234935471D01* 133 | X267657142Y-234935471D02* 134 | X267657142Y-234721185D01* 135 | X267657142Y-234721185D02* 136 | X267585714Y-234435471D01* 137 | X267585714Y-234435471D02* 138 | X267514285Y-234292614D01* 139 | X267514285Y-234292614D02* 140 | X267371428Y-234149757D01* 141 | X267371428Y-234149757D02* 142 | X267157142Y-234078328D01* 143 | X267157142Y-234078328D02* 144 | X267014285Y-234078328D01* 145 | X267014285Y-234078328D02* 146 | X266799999Y-234149757D01* 147 | X266799999Y-234149757D02* 148 | X266728571Y-234221185D01* 149 | X265657142Y-234078328D02* 150 | X265657142Y-235149757D01* 151 | X265657142Y-235149757D02* 152 | X265728571Y-235364042D01* 153 | X265728571Y-235364042D02* 154 | X265871428Y-235506900D01* 155 | X265871428Y-235506900D02* 156 | X266085714Y-235578328D01* 157 | X266085714Y-235578328D02* 158 | X266228571Y-235578328D01* 159 | X264228571Y-235578328D02* 160 | X264942857Y-235578328D01* 161 | X264942857Y-235578328D02* 162 | X264942857Y-234078328D01* 163 | X262871428Y-235435471D02* 164 | X262942856Y-235506900D01* 165 | X262942856Y-235506900D02* 166 | X263157142Y-235578328D01* 167 | X263157142Y-235578328D02* 168 | X263299999Y-235578328D01* 169 | X263299999Y-235578328D02* 170 | X263514285Y-235506900D01* 171 | X263514285Y-235506900D02* 172 | X263657142Y-235364042D01* 173 | X263657142Y-235364042D02* 174 | X263728571Y-235221185D01* 175 | X263728571Y-235221185D02* 176 | X263799999Y-234935471D01* 177 | X263799999Y-234935471D02* 178 | X263799999Y-234721185D01* 179 | X263799999Y-234721185D02* 180 | X263728571Y-234435471D01* 181 | X263728571Y-234435471D02* 182 | X263657142Y-234292614D01* 183 | X263657142Y-234292614D02* 184 | X263514285Y-234149757D01* 185 | X263514285Y-234149757D02* 186 | X263299999Y-234078328D01* 187 | X263299999Y-234078328D02* 188 | X263157142Y-234078328D01* 189 | X263157142Y-234078328D02* 190 | X262942856Y-234149757D01* 191 | X262942856Y-234149757D02* 192 | X262871428Y-234221185D01* 193 | M02* 194 | -------------------------------------------------------------------------------- /plots/polykit-x-mainboard-Edge_Cuts.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.10-7.0.10~ubuntu22.04.1*% 2 | %TF.CreationDate,2024-01-14T12:30:21+01:00*% 3 | %TF.ProjectId,polykit-x-mainboard,706f6c79-6b69-4742-9d78-2d6d61696e62,v0.0.2*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Profile,NP*% 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW 7.0.10-7.0.10~ubuntu22.04.1) date 2024-01-14 12:30:21* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | %TA.AperFunction,Profile*% 14 | %ADD10C,0.100000*% 15 | %TD*% 16 | G04 APERTURE END LIST* 17 | D10* 18 | X47500000Y-20000000D02* 19 | X332500000Y-20000000D01* 20 | X47500000Y-242500000D02* 21 | X47500000Y-20000000D01* 22 | X332500000Y-20000000D02* 23 | X332500000Y-242500000D01* 24 | X332500000Y-242500000D02* 25 | X47500000Y-242500000D01* 26 | M02* 27 | -------------------------------------------------------------------------------- /plots/polykit-x-mainboard-F_Mask.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.10-7.0.10~ubuntu22.04.1*% 2 | %TF.CreationDate,2024-01-14T12:30:21+01:00*% 3 | %TF.ProjectId,polykit-x-mainboard,706f6c79-6b69-4742-9d78-2d6d61696e62,v0.0.2*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Top*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.10-7.0.10~ubuntu22.04.1) date 2024-01-14 12:30:21* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | G04 Aperture macros list end* 32 | %ADD10RoundRect,0.250000X-0.400000X-0.625000X0.400000X-0.625000X0.400000X0.625000X-0.400000X0.625000X0*% 33 | %ADD11RoundRect,0.250000X0.650000X-0.412500X0.650000X0.412500X-0.650000X0.412500X-0.650000X-0.412500X0*% 34 | %ADD12RoundRect,0.250000X-0.650000X0.412500X-0.650000X-0.412500X0.650000X-0.412500X0.650000X0.412500X0*% 35 | %ADD13R,1.700000X1.700000*% 36 | %ADD14O,1.700000X1.700000*% 37 | %ADD15RoundRect,0.150000X0.150000X-0.725000X0.150000X0.725000X-0.150000X0.725000X-0.150000X-0.725000X0*% 38 | %ADD16RoundRect,0.250000X-0.625000X0.400000X-0.625000X-0.400000X0.625000X-0.400000X0.625000X0.400000X0*% 39 | %ADD17RoundRect,0.250000X-0.600000X-0.600000X0.600000X-0.600000X0.600000X0.600000X-0.600000X0.600000X0*% 40 | %ADD18C,1.700000*% 41 | %ADD19RoundRect,0.250000X0.412500X0.650000X-0.412500X0.650000X-0.412500X-0.650000X0.412500X-0.650000X0*% 42 | %ADD20RoundRect,0.150000X-0.150000X0.837500X-0.150000X-0.837500X0.150000X-0.837500X0.150000X0.837500X0*% 43 | %ADD21RoundRect,0.250000X0.400000X0.625000X-0.400000X0.625000X-0.400000X-0.625000X0.400000X-0.625000X0*% 44 | %ADD22RoundRect,0.250000X-0.412500X-0.650000X0.412500X-0.650000X0.412500X0.650000X-0.412500X0.650000X0*% 45 | %ADD23RoundRect,0.250000X-0.620000X-0.845000X0.620000X-0.845000X0.620000X0.845000X-0.620000X0.845000X0*% 46 | %ADD24O,1.740000X2.190000*% 47 | %ADD25RoundRect,0.250000X-1.500000X-0.550000X1.500000X-0.550000X1.500000X0.550000X-1.500000X0.550000X0*% 48 | %ADD26RoundRect,0.150000X-0.825000X-0.150000X0.825000X-0.150000X0.825000X0.150000X-0.825000X0.150000X0*% 49 | %ADD27R,1.524000X1.524000*% 50 | %ADD28C,1.524000*% 51 | %ADD29RoundRect,0.150000X0.150000X-0.837500X0.150000X0.837500X-0.150000X0.837500X-0.150000X-0.837500X0*% 52 | %ADD30RoundRect,0.150000X0.150000X-0.825000X0.150000X0.825000X-0.150000X0.825000X-0.150000X-0.825000X0*% 53 | %ADD31R,1.600000X1.600000*% 54 | %ADD32RoundRect,0.250000X0.625000X-0.400000X0.625000X0.400000X-0.625000X0.400000X-0.625000X-0.400000X0*% 55 | %ADD33RoundRect,0.250000X0.600000X-0.600000X0.600000X0.600000X-0.600000X0.600000X-0.600000X-0.600000X0*% 56 | %ADD34R,1.000000X1.000000*% 57 | %ADD35RoundRect,0.250000X0.550000X-1.250000X0.550000X1.250000X-0.550000X1.250000X-0.550000X-1.250000X0*% 58 | %ADD36R,4.600000X1.100000*% 59 | %ADD37R,9.400000X10.800000*% 60 | %ADD38RoundRect,0.100000X-0.637500X-0.100000X0.637500X-0.100000X0.637500X0.100000X-0.637500X0.100000X0*% 61 | %ADD39RoundRect,0.150000X0.150000X-0.587500X0.150000X0.587500X-0.150000X0.587500X-0.150000X-0.587500X0*% 62 | G04 APERTURE END LIST* 63 | D10* 64 | %TO.C,R20*% 65 | X206050000Y-90500000D03* 66 | X209150000Y-90500000D03* 67 | %TD*% 68 | D11* 69 | %TO.C,C31*% 70 | X135900000Y-116262500D03* 71 | X135900000Y-113137500D03* 72 | %TD*% 73 | D12* 74 | %TO.C,C12*% 75 | X180400000Y-180737500D03* 76 | X180400000Y-183862500D03* 77 | %TD*% 78 | D13* 79 | %TO.C,VOICE2*% 80 | X230000000Y-175630000D03* 81 | D14* 82 | X230000000Y-173090000D03* 83 | X230000000Y-170550000D03* 84 | X230000000Y-168010000D03* 85 | X230000000Y-165470000D03* 86 | X230000000Y-162930000D03* 87 | X230000000Y-160390000D03* 88 | X230000000Y-157850000D03* 89 | X230000000Y-155310000D03* 90 | X230000000Y-152770000D03* 91 | X230000000Y-150230000D03* 92 | X230000000Y-147690000D03* 93 | X230000000Y-145150000D03* 94 | X230000000Y-142610000D03* 95 | X230000000Y-140070000D03* 96 | X230000000Y-137530000D03* 97 | X230000000Y-134990000D03* 98 | X230000000Y-132450000D03* 99 | X230000000Y-129910000D03* 100 | X230000000Y-127370000D03* 101 | X230000000Y-124830000D03* 102 | X230000000Y-122290000D03* 103 | X230000000Y-119750000D03* 104 | X230000000Y-117210000D03* 105 | X230000000Y-114670000D03* 106 | X230000000Y-112130000D03* 107 | X230000000Y-109590000D03* 108 | X230000000Y-107050000D03* 109 | X230000000Y-104510000D03* 110 | X230000000Y-101970000D03* 111 | X230000000Y-99430000D03* 112 | X230000000Y-96890000D03* 113 | X230000000Y-94350000D03* 114 | X230000000Y-91810000D03* 115 | X230000000Y-89270000D03* 116 | X230000000Y-86730000D03* 117 | %TD*% 118 | D12* 119 | %TO.C,C34*% 120 | X149600000Y-159037500D03* 121 | X149600000Y-162162500D03* 122 | %TD*% 123 | %TO.C,C1*% 124 | X161500000Y-195737500D03* 125 | X161500000Y-198862500D03* 126 | %TD*% 127 | D11* 128 | %TO.C,C33*% 129 | X177700000Y-111562500D03* 130 | X177700000Y-108437500D03* 131 | %TD*% 132 | D15* 133 | %TO.C,U11*% 134 | X168795000Y-112475000D03* 135 | X170065000Y-112475000D03* 136 | X171335000Y-112475000D03* 137 | X172605000Y-112475000D03* 138 | X172605000Y-107325000D03* 139 | X171335000Y-107325000D03* 140 | X170065000Y-107325000D03* 141 | X168795000Y-107325000D03* 142 | %TD*% 143 | D16* 144 | %TO.C,R45*% 145 | X125500000Y-40550000D03* 146 | X125500000Y-43650000D03* 147 | %TD*% 148 | %TO.C,R19*% 149 | X315700000Y-180500000D03* 150 | X315700000Y-183600000D03* 151 | %TD*% 152 | D17* 153 | %TO.C,J9*% 154 | X58747500Y-177910000D03* 155 | D18* 156 | X61287500Y-177910000D03* 157 | X58747500Y-180450000D03* 158 | X61287500Y-180450000D03* 159 | X58747500Y-182990000D03* 160 | X61287500Y-182990000D03* 161 | X58747500Y-185530000D03* 162 | X61287500Y-185530000D03* 163 | X58747500Y-188070000D03* 164 | X61287500Y-188070000D03* 165 | X58747500Y-190610000D03* 166 | X61287500Y-190610000D03* 167 | X58747500Y-193150000D03* 168 | X61287500Y-193150000D03* 169 | X58747500Y-195690000D03* 170 | X61287500Y-195690000D03* 171 | %TD*% 172 | D19* 173 | %TO.C,C65*% 174 | X186862500Y-59500000D03* 175 | X183737500Y-59500000D03* 176 | %TD*% 177 | D20* 178 | %TO.C,U15*% 179 | X163385000Y-86157500D03* 180 | X162115000Y-86157500D03* 181 | X160845000Y-86157500D03* 182 | X159575000Y-86157500D03* 183 | X158305000Y-86157500D03* 184 | X157035000Y-86157500D03* 185 | X155765000Y-86157500D03* 186 | X154495000Y-86157500D03* 187 | X154495000Y-93082500D03* 188 | X155765000Y-93082500D03* 189 | X157035000Y-93082500D03* 190 | X158305000Y-93082500D03* 191 | X159575000Y-93082500D03* 192 | X160845000Y-93082500D03* 193 | X162115000Y-93082500D03* 194 | X163385000Y-93082500D03* 195 | %TD*% 196 | D21* 197 | %TO.C,R25*% 198 | X284100000Y-90500000D03* 199 | X281000000Y-90500000D03* 200 | %TD*% 201 | D11* 202 | %TO.C,C2*% 203 | X153900000Y-180462500D03* 204 | X153900000Y-177337500D03* 205 | %TD*% 206 | D16* 207 | %TO.C,R16*% 208 | X270000000Y-180500000D03* 209 | X270000000Y-183600000D03* 210 | %TD*% 211 | D22* 212 | %TO.C,C22*% 213 | X156737500Y-132000000D03* 214 | X159862500Y-132000000D03* 215 | %TD*% 216 | D23* 217 | %TO.C,J5*% 218 | X172980000Y-31500000D03* 219 | D24* 220 | X175520000Y-31500000D03* 221 | %TD*% 222 | D13* 223 | %TO.C,VOICE6*% 224 | X290000000Y-175630000D03* 225 | D14* 226 | X290000000Y-173090000D03* 227 | X290000000Y-170550000D03* 228 | X290000000Y-168010000D03* 229 | X290000000Y-165470000D03* 230 | X290000000Y-162930000D03* 231 | X290000000Y-160390000D03* 232 | X290000000Y-157850000D03* 233 | X290000000Y-155310000D03* 234 | X290000000Y-152770000D03* 235 | X290000000Y-150230000D03* 236 | X290000000Y-147690000D03* 237 | X290000000Y-145150000D03* 238 | X290000000Y-142610000D03* 239 | X290000000Y-140070000D03* 240 | X290000000Y-137530000D03* 241 | X290000000Y-134990000D03* 242 | X290000000Y-132450000D03* 243 | X290000000Y-129910000D03* 244 | X290000000Y-127370000D03* 245 | X290000000Y-124830000D03* 246 | X290000000Y-122290000D03* 247 | X290000000Y-119750000D03* 248 | X290000000Y-117210000D03* 249 | X290000000Y-114670000D03* 250 | X290000000Y-112130000D03* 251 | X290000000Y-109590000D03* 252 | X290000000Y-107050000D03* 253 | X290000000Y-104510000D03* 254 | X290000000Y-101970000D03* 255 | X290000000Y-99430000D03* 256 | X290000000Y-96890000D03* 257 | X290000000Y-94350000D03* 258 | X290000000Y-91810000D03* 259 | X290000000Y-89270000D03* 260 | X290000000Y-86730000D03* 261 | %TD*% 262 | D10* 263 | %TO.C,R28*% 264 | X206100000Y-85500000D03* 265 | X209200000Y-85500000D03* 266 | %TD*% 267 | D20* 268 | %TO.C,U5*% 269 | X149145000Y-130137500D03* 270 | X147875000Y-130137500D03* 271 | X146605000Y-130137500D03* 272 | X145335000Y-130137500D03* 273 | X144065000Y-130137500D03* 274 | X142795000Y-130137500D03* 275 | X141525000Y-130137500D03* 276 | X140255000Y-130137500D03* 277 | X140255000Y-137062500D03* 278 | X141525000Y-137062500D03* 279 | X142795000Y-137062500D03* 280 | X144065000Y-137062500D03* 281 | X145335000Y-137062500D03* 282 | X146605000Y-137062500D03* 283 | X147875000Y-137062500D03* 284 | X149145000Y-137062500D03* 285 | %TD*% 286 | D22* 287 | %TO.C,C35*% 288 | X169737500Y-146600000D03* 289 | X172862500Y-146600000D03* 290 | %TD*% 291 | D25* 292 | %TO.C,C61*% 293 | X108900000Y-60000000D03* 294 | X114300000Y-60000000D03* 295 | %TD*% 296 | D11* 297 | %TO.C,C58*% 298 | X198402500Y-86277500D03* 299 | X198402500Y-83152500D03* 300 | %TD*% 301 | D26* 302 | %TO.C,U19*% 303 | X182825000Y-47190000D03* 304 | X182825000Y-48460000D03* 305 | X182825000Y-49730000D03* 306 | X182825000Y-51000000D03* 307 | X182825000Y-52270000D03* 308 | X182825000Y-53540000D03* 309 | X182825000Y-54810000D03* 310 | X187775000Y-54810000D03* 311 | X187775000Y-53540000D03* 312 | X187775000Y-52270000D03* 313 | X187775000Y-51000000D03* 314 | X187775000Y-49730000D03* 315 | X187775000Y-48460000D03* 316 | X187775000Y-47190000D03* 317 | %TD*% 318 | D25* 319 | %TO.C,C63*% 320 | X90900000Y-71600000D03* 321 | X96300000Y-71600000D03* 322 | %TD*% 323 | D17* 324 | %TO.C,J8*% 325 | X58747500Y-148130000D03* 326 | D18* 327 | X61287500Y-148130000D03* 328 | X58747500Y-150670000D03* 329 | X61287500Y-150670000D03* 330 | X58747500Y-153210000D03* 331 | X61287500Y-153210000D03* 332 | X58747500Y-155750000D03* 333 | X61287500Y-155750000D03* 334 | X58747500Y-158290000D03* 335 | X61287500Y-158290000D03* 336 | %TD*% 337 | D27* 338 | %TO.C,U1*% 339 | X78000000Y-149880000D03* 340 | D28* 341 | X78000000Y-147340000D03* 342 | X80540000Y-149880000D03* 343 | X80540000Y-147340000D03* 344 | X83080000Y-149880000D03* 345 | X83080000Y-147340000D03* 346 | X85620000Y-149880000D03* 347 | X85620000Y-147340000D03* 348 | X88160000Y-149880000D03* 349 | X88160000Y-147340000D03* 350 | X90700000Y-149880000D03* 351 | X90700000Y-147340000D03* 352 | X93240000Y-149880000D03* 353 | X93240000Y-147340000D03* 354 | X95780000Y-149880000D03* 355 | X95780000Y-147340000D03* 356 | X98320000Y-149880000D03* 357 | X98320000Y-147340000D03* 358 | X100860000Y-149880000D03* 359 | X100860000Y-147340000D03* 360 | X103400000Y-149880000D03* 361 | X103400000Y-147340000D03* 362 | X105940000Y-149880000D03* 363 | X105940000Y-147340000D03* 364 | X108480000Y-149880000D03* 365 | X108480000Y-147340000D03* 366 | X111020000Y-149880000D03* 367 | X111020000Y-147340000D03* 368 | X113560000Y-149880000D03* 369 | X113560000Y-147340000D03* 370 | X116100000Y-149880000D03* 371 | X116100000Y-147340000D03* 372 | X118640000Y-149880000D03* 373 | X118640000Y-147340000D03* 374 | X121180000Y-149880000D03* 375 | X121180000Y-147340000D03* 376 | X123720000Y-149880000D03* 377 | X123720000Y-147340000D03* 378 | X126260000Y-149880000D03* 379 | X126260000Y-147340000D03* 380 | X128800000Y-149880000D03* 381 | X128800000Y-147340000D03* 382 | X90700000Y-116860000D03* 383 | X90700000Y-114320000D03* 384 | X93240000Y-116860000D03* 385 | X93240000Y-114320000D03* 386 | X95780000Y-116860000D03* 387 | X95780000Y-114320000D03* 388 | X98320000Y-116860000D03* 389 | X98320000Y-114320000D03* 390 | X100860000Y-116860000D03* 391 | X100860000Y-114320000D03* 392 | X103400000Y-116860000D03* 393 | X103400000Y-114320000D03* 394 | X105940000Y-116860000D03* 395 | X105940000Y-114320000D03* 396 | X108480000Y-116860000D03* 397 | X108480000Y-114320000D03* 398 | X111020000Y-116860000D03* 399 | X111020000Y-114320000D03* 400 | X113560000Y-116860000D03* 401 | X113560000Y-114320000D03* 402 | X116100000Y-116860000D03* 403 | X116100000Y-114320000D03* 404 | X118640000Y-116860000D03* 405 | X118640000Y-114320000D03* 406 | X121180000Y-116860000D03* 407 | X121180000Y-114320000D03* 408 | X123720000Y-116860000D03* 409 | X123720000Y-114320000D03* 410 | X126260000Y-116860000D03* 411 | X126260000Y-114320000D03* 412 | X128800000Y-116860000D03* 413 | X128800000Y-114320000D03* 414 | X126260000Y-119400000D03* 415 | X128800000Y-119400000D03* 416 | X126260000Y-121940000D03* 417 | X128800000Y-121940000D03* 418 | X126260000Y-124480000D03* 419 | X128800000Y-124480000D03* 420 | X126260000Y-132100000D03* 421 | X128800000Y-132100000D03* 422 | X126260000Y-134640000D03* 423 | X128800000Y-134640000D03* 424 | X126260000Y-137180000D03* 425 | X128800000Y-137180000D03* 426 | %TD*% 427 | D22* 428 | %TO.C,C5*% 429 | X169700000Y-186400000D03* 430 | X172825000Y-186400000D03* 431 | %TD*% 432 | D17* 433 | %TO.C,J7*% 434 | X58747500Y-103020000D03* 435 | D18* 436 | X61287500Y-103020000D03* 437 | X58747500Y-105560000D03* 438 | X61287500Y-105560000D03* 439 | X58747500Y-108100000D03* 440 | X61287500Y-108100000D03* 441 | X58747500Y-110640000D03* 442 | X61287500Y-110640000D03* 443 | X58747500Y-113180000D03* 444 | X61287500Y-113180000D03* 445 | %TD*% 446 | D12* 447 | %TO.C,C14*% 448 | X180400000Y-192837500D03* 449 | X180400000Y-195962500D03* 450 | %TD*% 451 | D11* 452 | %TO.C,C24*% 453 | X203100000Y-145262500D03* 454 | X203100000Y-142137500D03* 455 | %TD*% 456 | D21* 457 | %TO.C,R31*% 458 | X254050000Y-85500000D03* 459 | X250950000Y-85500000D03* 460 | %TD*% 461 | %TO.C,R12*% 462 | X172250000Y-103500000D03* 463 | X169150000Y-103500000D03* 464 | %TD*% 465 | %TO.C,R24*% 466 | X269100000Y-90500000D03* 467 | X266000000Y-90500000D03* 468 | %TD*% 469 | D12* 470 | %TO.C,C44*% 471 | X180400000Y-152137500D03* 472 | X180400000Y-155262500D03* 473 | %TD*% 474 | D29* 475 | %TO.C,U2*% 476 | X153855000Y-191562500D03* 477 | X155125000Y-191562500D03* 478 | X156395000Y-191562500D03* 479 | X157665000Y-191562500D03* 480 | X158935000Y-191562500D03* 481 | X160205000Y-191562500D03* 482 | X161475000Y-191562500D03* 483 | X162745000Y-191562500D03* 484 | X162745000Y-184637500D03* 485 | X161475000Y-184637500D03* 486 | X160205000Y-184637500D03* 487 | X158935000Y-184637500D03* 488 | X157665000Y-184637500D03* 489 | X156395000Y-184637500D03* 490 | X155125000Y-184637500D03* 491 | X153855000Y-184637500D03* 492 | %TD*% 493 | D12* 494 | %TO.C,C46*% 495 | X180400000Y-164137500D03* 496 | X180400000Y-167262500D03* 497 | %TD*% 498 | D22* 499 | %TO.C,C48*% 500 | X169877500Y-94100000D03* 501 | X173002500Y-94100000D03* 502 | %TD*% 503 | D30* 504 | %TO.C,U3*% 505 | X185590000Y-184775000D03* 506 | X186860000Y-184775000D03* 507 | X188130000Y-184775000D03* 508 | X189400000Y-184775000D03* 509 | X190670000Y-184775000D03* 510 | X191940000Y-184775000D03* 511 | X193210000Y-184775000D03* 512 | X193210000Y-179825000D03* 513 | X191940000Y-179825000D03* 514 | X190670000Y-179825000D03* 515 | X189400000Y-179825000D03* 516 | X188130000Y-179825000D03* 517 | X186860000Y-179825000D03* 518 | X185590000Y-179825000D03* 519 | %TD*% 520 | D22* 521 | %TO.C,C10*% 522 | X169737500Y-197200000D03* 523 | X172862500Y-197200000D03* 524 | %TD*% 525 | %TO.C,C53*% 526 | X169877500Y-85120000D03* 527 | X173002500Y-85120000D03* 528 | %TD*% 529 | D31* 530 | %TO.C,U20*% 531 | X140610000Y-53890000D03* 532 | X138070000Y-53890000D03* 533 | X135530000Y-53890000D03* 534 | X132990000Y-53890000D03* 535 | X132990000Y-61510000D03* 536 | X135530000Y-61510000D03* 537 | X138070000Y-61510000D03* 538 | X140610000Y-61510000D03* 539 | %TD*% 540 | D32* 541 | %TO.C,R10*% 542 | X159000000Y-105050000D03* 543 | X159000000Y-101950000D03* 544 | %TD*% 545 | D16* 546 | %TO.C,R13*% 547 | X224600000Y-180500000D03* 548 | X224600000Y-183600000D03* 549 | %TD*% 550 | D22* 551 | %TO.C,C42*% 552 | X169737500Y-168900000D03* 553 | X172862500Y-168900000D03* 554 | %TD*% 555 | D12* 556 | %TO.C,C57*% 557 | X180362500Y-94132500D03* 558 | X180362500Y-97257500D03* 559 | %TD*% 560 | D22* 561 | %TO.C,C19*% 562 | X156737500Y-135000000D03* 563 | X159862500Y-135000000D03* 564 | %TD*% 565 | D12* 566 | %TO.C,C32*% 567 | X164000000Y-108437500D03* 568 | X164000000Y-111562500D03* 569 | %TD*% 570 | D22* 571 | %TO.C,C49*% 572 | X169877500Y-97120000D03* 573 | X173002500Y-97120000D03* 574 | %TD*% 575 | D23* 576 | %TO.C,J4*% 577 | X125460000Y-31500000D03* 578 | D24* 579 | X128000000Y-31500000D03* 580 | %TD*% 581 | D22* 582 | %TO.C,C26*% 583 | X156737500Y-121200000D03* 584 | X159862500Y-121200000D03* 585 | %TD*% 586 | D11* 587 | %TO.C,C16*% 588 | X184900000Y-135337500D03* 589 | X184900000Y-132212500D03* 590 | %TD*% 591 | D22* 592 | %TO.C,C21*% 593 | X156737500Y-128700000D03* 594 | X159862500Y-128700000D03* 595 | %TD*% 596 | D16* 597 | %TO.C,R2*% 598 | X172400000Y-139750000D03* 599 | X172400000Y-142850000D03* 600 | %TD*% 601 | D21* 602 | %TO.C,R11*% 603 | X172350000Y-116300000D03* 604 | X169250000Y-116300000D03* 605 | %TD*% 606 | %TO.C,R29*% 607 | X224100000Y-85500000D03* 608 | X221000000Y-85500000D03* 609 | %TD*% 610 | D33* 611 | %TO.C,J1*% 612 | X81110000Y-33485000D03* 613 | D18* 614 | X81110000Y-30945000D03* 615 | X83650000Y-33485000D03* 616 | X83650000Y-30945000D03* 617 | X86190000Y-33485000D03* 618 | X86190000Y-30945000D03* 619 | X88730000Y-33485000D03* 620 | X88730000Y-30945000D03* 621 | X91270000Y-33485000D03* 622 | X91270000Y-30945000D03* 623 | X93810000Y-33485000D03* 624 | X93810000Y-30945000D03* 625 | X96350000Y-33485000D03* 626 | X96350000Y-30945000D03* 627 | X98890000Y-33485000D03* 628 | X98890000Y-30945000D03* 629 | %TD*% 630 | D21* 631 | %TO.C,R35*% 632 | X314050000Y-85500000D03* 633 | X310950000Y-85500000D03* 634 | %TD*% 635 | D16* 636 | %TO.C,R38*% 637 | X172800000Y-49350000D03* 638 | X172800000Y-52450000D03* 639 | %TD*% 640 | D30* 641 | %TO.C,U16*% 642 | X185590000Y-98075000D03* 643 | X186860000Y-98075000D03* 644 | X188130000Y-98075000D03* 645 | X189400000Y-98075000D03* 646 | X190670000Y-98075000D03* 647 | X191940000Y-98075000D03* 648 | X193210000Y-98075000D03* 649 | X193210000Y-93125000D03* 650 | X191940000Y-93125000D03* 651 | X190670000Y-93125000D03* 652 | X189400000Y-93125000D03* 653 | X188130000Y-93125000D03* 654 | X186860000Y-93125000D03* 655 | X185590000Y-93125000D03* 656 | %TD*% 657 | D22* 658 | %TO.C,C40*% 659 | X169737500Y-165100000D03* 660 | X172862500Y-165100000D03* 661 | %TD*% 662 | D11* 663 | %TO.C,C56*% 664 | X198400000Y-97257500D03* 665 | X198400000Y-94132500D03* 666 | %TD*% 667 | D30* 668 | %TO.C,U7*% 669 | X190290000Y-126150000D03* 670 | X191560000Y-126150000D03* 671 | X192830000Y-126150000D03* 672 | X194100000Y-126150000D03* 673 | X195370000Y-126150000D03* 674 | X196640000Y-126150000D03* 675 | X197910000Y-126150000D03* 676 | X197910000Y-121200000D03* 677 | X196640000Y-121200000D03* 678 | X195370000Y-121200000D03* 679 | X194100000Y-121200000D03* 680 | X192830000Y-121200000D03* 681 | X191560000Y-121200000D03* 682 | X190290000Y-121200000D03* 683 | %TD*% 684 | D23* 685 | %TO.C,J2*% 686 | X156750000Y-31500000D03* 687 | D24* 688 | X159290000Y-31500000D03* 689 | X161830000Y-31500000D03* 690 | %TD*% 691 | D22* 692 | %TO.C,C51*% 693 | X169877500Y-91120000D03* 694 | X173002500Y-91120000D03* 695 | %TD*% 696 | D32* 697 | %TO.C,R36*% 698 | X178100000Y-49550000D03* 699 | X178100000Y-46450000D03* 700 | %TD*% 701 | D22* 702 | %TO.C,C36*% 703 | X169737500Y-150200000D03* 704 | X172862500Y-150200000D03* 705 | %TD*% 706 | D12* 707 | %TO.C,C25*% 708 | X185100000Y-142137500D03* 709 | X185100000Y-145262500D03* 710 | %TD*% 711 | D34* 712 | %TO.C,D1*% 713 | X138050000Y-47900000D03* 714 | X135550000Y-47900000D03* 715 | %TD*% 716 | D32* 717 | %TO.C,R43*% 718 | X169700000Y-43250000D03* 719 | X169700000Y-40150000D03* 720 | %TD*% 721 | D33* 722 | %TO.C,J6*% 723 | X113500000Y-233300000D03* 724 | D18* 725 | X113500000Y-230760000D03* 726 | X116040000Y-233300000D03* 727 | X116040000Y-230760000D03* 728 | X118580000Y-233300000D03* 729 | X118580000Y-230760000D03* 730 | X121120000Y-233300000D03* 731 | X121120000Y-230760000D03* 732 | X123660000Y-233300000D03* 733 | X123660000Y-230760000D03* 734 | %TD*% 735 | D16* 736 | %TO.C,R37*% 737 | X193100000Y-52350000D03* 738 | X193100000Y-55450000D03* 739 | %TD*% 740 | D21* 741 | %TO.C,R34*% 742 | X299050000Y-85500000D03* 743 | X295950000Y-85500000D03* 744 | %TD*% 745 | D22* 746 | %TO.C,C8*% 747 | X169737500Y-193500000D03* 748 | X172862500Y-193500000D03* 749 | %TD*% 750 | D12* 751 | %TO.C,C47*% 752 | X163400000Y-98137500D03* 753 | X163400000Y-101262500D03* 754 | %TD*% 755 | %TO.C,C17*% 756 | X167400000Y-132137500D03* 757 | X167400000Y-135262500D03* 758 | %TD*% 759 | D16* 760 | %TO.C,R15*% 761 | X255800000Y-180500000D03* 762 | X255800000Y-183600000D03* 763 | %TD*% 764 | D11* 765 | %TO.C,C43*% 766 | X198400000Y-155362500D03* 767 | X198400000Y-152237500D03* 768 | %TD*% 769 | D35* 770 | %TO.C,C30*% 771 | X142200000Y-111900000D03* 772 | X142200000Y-107500000D03* 773 | %TD*% 774 | D13* 775 | %TO.C,VOICE3*% 776 | X245000000Y-175630000D03* 777 | D14* 778 | X245000000Y-173090000D03* 779 | X245000000Y-170550000D03* 780 | X245000000Y-168010000D03* 781 | X245000000Y-165470000D03* 782 | X245000000Y-162930000D03* 783 | X245000000Y-160390000D03* 784 | X245000000Y-157850000D03* 785 | X245000000Y-155310000D03* 786 | X245000000Y-152770000D03* 787 | X245000000Y-150230000D03* 788 | X245000000Y-147690000D03* 789 | X245000000Y-145150000D03* 790 | X245000000Y-142610000D03* 791 | X245000000Y-140070000D03* 792 | X245000000Y-137530000D03* 793 | X245000000Y-134990000D03* 794 | X245000000Y-132450000D03* 795 | X245000000Y-129910000D03* 796 | X245000000Y-127370000D03* 797 | X245000000Y-124830000D03* 798 | X245000000Y-122290000D03* 799 | X245000000Y-119750000D03* 800 | X245000000Y-117210000D03* 801 | X245000000Y-114670000D03* 802 | X245000000Y-112130000D03* 803 | X245000000Y-109590000D03* 804 | X245000000Y-107050000D03* 805 | X245000000Y-104510000D03* 806 | X245000000Y-101970000D03* 807 | X245000000Y-99430000D03* 808 | X245000000Y-96890000D03* 809 | X245000000Y-94350000D03* 810 | X245000000Y-91810000D03* 811 | X245000000Y-89270000D03* 812 | X245000000Y-86730000D03* 813 | %TD*% 814 | D11* 815 | %TO.C,C13*% 816 | X198400000Y-195962500D03* 817 | X198400000Y-192837500D03* 818 | %TD*% 819 | D22* 820 | %TO.C,C64*% 821 | X183737500Y-42500000D03* 822 | X186862500Y-42500000D03* 823 | %TD*% 824 | D36* 825 | %TO.C,U18*% 826 | X74575000Y-60040000D03* 827 | D37* 828 | X65425000Y-57500000D03* 829 | D36* 830 | X74575000Y-54960000D03* 831 | %TD*% 832 | D30* 833 | %TO.C,U13*% 834 | X185590000Y-156375000D03* 835 | X186860000Y-156375000D03* 836 | X188130000Y-156375000D03* 837 | X189400000Y-156375000D03* 838 | X190670000Y-156375000D03* 839 | X191940000Y-156375000D03* 840 | X193210000Y-156375000D03* 841 | X193210000Y-151425000D03* 842 | X191940000Y-151425000D03* 843 | X190670000Y-151425000D03* 844 | X189400000Y-151425000D03* 845 | X188130000Y-151425000D03* 846 | X186860000Y-151425000D03* 847 | X185590000Y-151425000D03* 848 | %TD*% 849 | D10* 850 | %TO.C,R47*% 851 | X136550000Y-67700000D03* 852 | X139650000Y-67700000D03* 853 | %TD*% 854 | D30* 855 | %TO.C,U14*% 856 | X185590000Y-167975000D03* 857 | X186860000Y-167975000D03* 858 | X188130000Y-167975000D03* 859 | X189400000Y-167975000D03* 860 | X190670000Y-167975000D03* 861 | X191940000Y-167975000D03* 862 | X193210000Y-167975000D03* 863 | X193210000Y-163025000D03* 864 | X191940000Y-163025000D03* 865 | X190670000Y-163025000D03* 866 | X189400000Y-163025000D03* 867 | X188130000Y-163025000D03* 868 | X186860000Y-163025000D03* 869 | X185590000Y-163025000D03* 870 | %TD*% 871 | D10* 872 | %TO.C,R8*% 873 | X135250000Y-102400000D03* 874 | X138350000Y-102400000D03* 875 | %TD*% 876 | D11* 877 | %TO.C,C15*% 878 | X135200000Y-135162500D03* 879 | X135200000Y-132037500D03* 880 | %TD*% 881 | D22* 882 | %TO.C,C3*% 883 | X169737500Y-176100000D03* 884 | X172862500Y-176100000D03* 885 | %TD*% 886 | %TO.C,C37*% 887 | X169737500Y-157700000D03* 888 | X172862500Y-157700000D03* 889 | %TD*% 890 | D10* 891 | %TO.C,R6*% 892 | X195750000Y-136675000D03* 893 | X198850000Y-136675000D03* 894 | %TD*% 895 | D21* 896 | %TO.C,R23*% 897 | X254050000Y-90500000D03* 898 | X250950000Y-90500000D03* 899 | %TD*% 900 | D30* 901 | %TO.C,U17*% 902 | X185630000Y-87095000D03* 903 | X186900000Y-87095000D03* 904 | X188170000Y-87095000D03* 905 | X189440000Y-87095000D03* 906 | X190710000Y-87095000D03* 907 | X191980000Y-87095000D03* 908 | X193250000Y-87095000D03* 909 | X193250000Y-82145000D03* 910 | X191980000Y-82145000D03* 911 | X190710000Y-82145000D03* 912 | X189440000Y-82145000D03* 913 | X188170000Y-82145000D03* 914 | X186900000Y-82145000D03* 915 | X185630000Y-82145000D03* 916 | %TD*% 917 | D32* 918 | %TO.C,R42*% 919 | X164350000Y-43250000D03* 920 | X164350000Y-40150000D03* 921 | %TD*% 922 | D22* 923 | %TO.C,C52*% 924 | X169837500Y-82100000D03* 925 | X172962500Y-82100000D03* 926 | %TD*% 927 | D16* 928 | %TO.C,R3*% 929 | X178700000Y-139725000D03* 930 | X178700000Y-142825000D03* 931 | %TD*% 932 | D21* 933 | %TO.C,R22*% 934 | X239050000Y-90500000D03* 935 | X235950000Y-90500000D03* 936 | %TD*% 937 | D11* 938 | %TO.C,C18*% 939 | X203100000Y-125237500D03* 940 | X203100000Y-122112500D03* 941 | %TD*% 942 | D25* 943 | %TO.C,C62*% 944 | X90900000Y-60000000D03* 945 | X96300000Y-60000000D03* 946 | %TD*% 947 | %TO.C,C60*% 948 | X108900000Y-71500000D03* 949 | X114300000Y-71500000D03* 950 | %TD*% 951 | D22* 952 | %TO.C,C27*% 953 | X156737500Y-125000000D03* 954 | X159862500Y-125000000D03* 955 | %TD*% 956 | D16* 957 | %TO.C,R14*% 958 | X240500000Y-180500000D03* 959 | X240500000Y-183600000D03* 960 | %TD*% 961 | D21* 962 | %TO.C,R44*% 963 | X119150000Y-39300000D03* 964 | X116050000Y-39300000D03* 965 | %TD*% 966 | D30* 967 | %TO.C,U4*% 968 | X185590000Y-196775000D03* 969 | X186860000Y-196775000D03* 970 | X188130000Y-196775000D03* 971 | X189400000Y-196775000D03* 972 | X190670000Y-196775000D03* 973 | X191940000Y-196775000D03* 974 | X193210000Y-196775000D03* 975 | X193210000Y-191825000D03* 976 | X191940000Y-191825000D03* 977 | X190670000Y-191825000D03* 978 | X189400000Y-191825000D03* 979 | X188130000Y-191825000D03* 980 | X186860000Y-191825000D03* 981 | X185590000Y-191825000D03* 982 | %TD*% 983 | D11* 984 | %TO.C,C45*% 985 | X198400000Y-167162500D03* 986 | X198400000Y-164037500D03* 987 | %TD*% 988 | D23* 989 | %TO.C,J3*% 990 | X135480000Y-31500000D03* 991 | D24* 992 | X138020000Y-31500000D03* 993 | %TD*% 994 | D16* 995 | %TO.C,R17*% 996 | X285700000Y-180500000D03* 997 | X285700000Y-183600000D03* 998 | %TD*% 999 | D21* 1000 | %TO.C,R30*% 1001 | X239050000Y-85500000D03* 1002 | X235950000Y-85500000D03* 1003 | %TD*% 1004 | %TO.C,R32*% 1005 | X269050000Y-85500000D03* 1006 | X265950000Y-85500000D03* 1007 | %TD*% 1008 | %TO.C,R33*% 1009 | X284100000Y-85500000D03* 1010 | X281000000Y-85500000D03* 1011 | %TD*% 1012 | D13* 1013 | %TO.C,VOICE5*% 1014 | X275000000Y-175630000D03* 1015 | D14* 1016 | X275000000Y-173090000D03* 1017 | X275000000Y-170550000D03* 1018 | X275000000Y-168010000D03* 1019 | X275000000Y-165470000D03* 1020 | X275000000Y-162930000D03* 1021 | X275000000Y-160390000D03* 1022 | X275000000Y-157850000D03* 1023 | X275000000Y-155310000D03* 1024 | X275000000Y-152770000D03* 1025 | X275000000Y-150230000D03* 1026 | X275000000Y-147690000D03* 1027 | X275000000Y-145150000D03* 1028 | X275000000Y-142610000D03* 1029 | X275000000Y-140070000D03* 1030 | X275000000Y-137530000D03* 1031 | X275000000Y-134990000D03* 1032 | X275000000Y-132450000D03* 1033 | X275000000Y-129910000D03* 1034 | X275000000Y-127370000D03* 1035 | X275000000Y-124830000D03* 1036 | X275000000Y-122290000D03* 1037 | X275000000Y-119750000D03* 1038 | X275000000Y-117210000D03* 1039 | X275000000Y-114670000D03* 1040 | X275000000Y-112130000D03* 1041 | X275000000Y-109590000D03* 1042 | X275000000Y-107050000D03* 1043 | X275000000Y-104510000D03* 1044 | X275000000Y-101970000D03* 1045 | X275000000Y-99430000D03* 1046 | X275000000Y-96890000D03* 1047 | X275000000Y-94350000D03* 1048 | X275000000Y-91810000D03* 1049 | X275000000Y-89270000D03* 1050 | X275000000Y-86730000D03* 1051 | %TD*% 1052 | D22* 1053 | %TO.C,C55*% 1054 | X169877500Y-79120000D03* 1055 | X173002500Y-79120000D03* 1056 | %TD*% 1057 | %TO.C,C41*% 1058 | X169737500Y-172400000D03* 1059 | X172862500Y-172400000D03* 1060 | %TD*% 1061 | D10* 1062 | %TO.C,R4*% 1063 | X171650000Y-126775000D03* 1064 | X174750000Y-126775000D03* 1065 | %TD*% 1066 | D21* 1067 | %TO.C,R27*% 1068 | X314100000Y-90500000D03* 1069 | X311000000Y-90500000D03* 1070 | %TD*% 1071 | D22* 1072 | %TO.C,C28*% 1073 | X156737500Y-141875000D03* 1074 | X159862500Y-141875000D03* 1075 | %TD*% 1076 | %TO.C,C9*% 1077 | X169737500Y-201000000D03* 1078 | X172862500Y-201000000D03* 1079 | %TD*% 1080 | D12* 1081 | %TO.C,C23*% 1082 | X185100000Y-122037500D03* 1083 | X185100000Y-125162500D03* 1084 | %TD*% 1085 | D16* 1086 | %TO.C,R18*% 1087 | X300800000Y-180500000D03* 1088 | X300800000Y-183600000D03* 1089 | %TD*% 1090 | D21* 1091 | %TO.C,R5*% 1092 | X192550000Y-136675000D03* 1093 | X189450000Y-136675000D03* 1094 | %TD*% 1095 | D22* 1096 | %TO.C,C29*% 1097 | X156737500Y-145375000D03* 1098 | X159862500Y-145375000D03* 1099 | %TD*% 1100 | D32* 1101 | %TO.C,R39*% 1102 | X198200000Y-52550000D03* 1103 | X198200000Y-49450000D03* 1104 | %TD*% 1105 | D13* 1106 | %TO.C,VOICE8*% 1107 | X320000000Y-175630000D03* 1108 | D14* 1109 | X320000000Y-173090000D03* 1110 | X320000000Y-170550000D03* 1111 | X320000000Y-168010000D03* 1112 | X320000000Y-165470000D03* 1113 | X320000000Y-162930000D03* 1114 | X320000000Y-160390000D03* 1115 | X320000000Y-157850000D03* 1116 | X320000000Y-155310000D03* 1117 | X320000000Y-152770000D03* 1118 | X320000000Y-150230000D03* 1119 | X320000000Y-147690000D03* 1120 | X320000000Y-145150000D03* 1121 | X320000000Y-142610000D03* 1122 | X320000000Y-140070000D03* 1123 | X320000000Y-137530000D03* 1124 | X320000000Y-134990000D03* 1125 | X320000000Y-132450000D03* 1126 | X320000000Y-129910000D03* 1127 | X320000000Y-127370000D03* 1128 | X320000000Y-124830000D03* 1129 | X320000000Y-122290000D03* 1130 | X320000000Y-119750000D03* 1131 | X320000000Y-117210000D03* 1132 | X320000000Y-114670000D03* 1133 | X320000000Y-112130000D03* 1134 | X320000000Y-109590000D03* 1135 | X320000000Y-107050000D03* 1136 | X320000000Y-104510000D03* 1137 | X320000000Y-101970000D03* 1138 | X320000000Y-99430000D03* 1139 | X320000000Y-96890000D03* 1140 | X320000000Y-94350000D03* 1141 | X320000000Y-91810000D03* 1142 | X320000000Y-89270000D03* 1143 | X320000000Y-86730000D03* 1144 | %TD*% 1145 | D38* 1146 | %TO.C,U10*% 1147 | X146062500Y-117375000D03* 1148 | X146062500Y-118025000D03* 1149 | X146062500Y-118675000D03* 1150 | X146062500Y-119325000D03* 1151 | X146062500Y-119975000D03* 1152 | X146062500Y-120625000D03* 1153 | X146062500Y-121275000D03* 1154 | X146062500Y-121925000D03* 1155 | X146062500Y-122575000D03* 1156 | X146062500Y-123225000D03* 1157 | X140337500Y-123225000D03* 1158 | X140337500Y-122575000D03* 1159 | X140337500Y-121925000D03* 1160 | X140337500Y-121275000D03* 1161 | X140337500Y-120625000D03* 1162 | X140337500Y-119975000D03* 1163 | X140337500Y-119325000D03* 1164 | X140337500Y-118675000D03* 1165 | X140337500Y-118025000D03* 1166 | X140337500Y-117375000D03* 1167 | %TD*% 1168 | D22* 1169 | %TO.C,C54*% 1170 | X169877500Y-75800000D03* 1171 | X173002500Y-75800000D03* 1172 | %TD*% 1173 | D30* 1174 | %TO.C,U6*% 1175 | X172390000Y-136250000D03* 1176 | X173660000Y-136250000D03* 1177 | X174930000Y-136250000D03* 1178 | X176200000Y-136250000D03* 1179 | X177470000Y-136250000D03* 1180 | X178740000Y-136250000D03* 1181 | X180010000Y-136250000D03* 1182 | X180010000Y-131300000D03* 1183 | X178740000Y-131300000D03* 1184 | X177470000Y-131300000D03* 1185 | X176200000Y-131300000D03* 1186 | X174930000Y-131300000D03* 1187 | X173660000Y-131300000D03* 1188 | X172390000Y-131300000D03* 1189 | %TD*% 1190 | D17* 1191 | %TO.C,J10*% 1192 | X58747500Y-212520000D03* 1193 | D18* 1194 | X61287500Y-212520000D03* 1195 | X58747500Y-215060000D03* 1196 | X61287500Y-215060000D03* 1197 | X58747500Y-217600000D03* 1198 | X61287500Y-217600000D03* 1199 | X58747500Y-220140000D03* 1200 | X61287500Y-220140000D03* 1201 | X58747500Y-222680000D03* 1202 | X61287500Y-222680000D03* 1203 | %TD*% 1204 | D22* 1205 | %TO.C,C6*% 1206 | X169737500Y-183000000D03* 1207 | X172862500Y-183000000D03* 1208 | %TD*% 1209 | D13* 1210 | %TO.C,VOICE4*% 1211 | X260000000Y-175630000D03* 1212 | D14* 1213 | X260000000Y-173090000D03* 1214 | X260000000Y-170550000D03* 1215 | X260000000Y-168010000D03* 1216 | X260000000Y-165470000D03* 1217 | X260000000Y-162930000D03* 1218 | X260000000Y-160390000D03* 1219 | X260000000Y-157850000D03* 1220 | X260000000Y-155310000D03* 1221 | X260000000Y-152770000D03* 1222 | X260000000Y-150230000D03* 1223 | X260000000Y-147690000D03* 1224 | X260000000Y-145150000D03* 1225 | X260000000Y-142610000D03* 1226 | X260000000Y-140070000D03* 1227 | X260000000Y-137530000D03* 1228 | X260000000Y-134990000D03* 1229 | X260000000Y-132450000D03* 1230 | X260000000Y-129910000D03* 1231 | X260000000Y-127370000D03* 1232 | X260000000Y-124830000D03* 1233 | X260000000Y-122290000D03* 1234 | X260000000Y-119750000D03* 1235 | X260000000Y-117210000D03* 1236 | X260000000Y-114670000D03* 1237 | X260000000Y-112130000D03* 1238 | X260000000Y-109590000D03* 1239 | X260000000Y-107050000D03* 1240 | X260000000Y-104510000D03* 1241 | X260000000Y-101970000D03* 1242 | X260000000Y-99430000D03* 1243 | X260000000Y-96890000D03* 1244 | X260000000Y-94350000D03* 1245 | X260000000Y-91810000D03* 1246 | X260000000Y-89270000D03* 1247 | X260000000Y-86730000D03* 1248 | %TD*% 1249 | D22* 1250 | %TO.C,C50*% 1251 | X169837500Y-88200000D03* 1252 | X172962500Y-88200000D03* 1253 | %TD*% 1254 | D21* 1255 | %TO.C,R1*% 1256 | X190050000Y-175000000D03* 1257 | X186950000Y-175000000D03* 1258 | %TD*% 1259 | D16* 1260 | %TO.C,R46*% 1261 | X138100000Y-40550000D03* 1262 | X138100000Y-43650000D03* 1263 | %TD*% 1264 | D22* 1265 | %TO.C,C4*% 1266 | X169737500Y-179400000D03* 1267 | X172862500Y-179400000D03* 1268 | %TD*% 1269 | D39* 1270 | %TO.C,U9*% 1271 | X148950000Y-106437500D03* 1272 | X150850000Y-106437500D03* 1273 | X149900000Y-104562500D03* 1274 | %TD*% 1275 | D30* 1276 | %TO.C,U8*% 1277 | X190290000Y-146150000D03* 1278 | X191560000Y-146150000D03* 1279 | X192830000Y-146150000D03* 1280 | X194100000Y-146150000D03* 1281 | X195370000Y-146150000D03* 1282 | X196640000Y-146150000D03* 1283 | X197910000Y-146150000D03* 1284 | X197910000Y-141200000D03* 1285 | X196640000Y-141200000D03* 1286 | X195370000Y-141200000D03* 1287 | X194100000Y-141200000D03* 1288 | X192830000Y-141200000D03* 1289 | X191560000Y-141200000D03* 1290 | X190290000Y-141200000D03* 1291 | %TD*% 1292 | D22* 1293 | %TO.C,C39*% 1294 | X169737500Y-161300000D03* 1295 | X172862500Y-161300000D03* 1296 | %TD*% 1297 | D10* 1298 | %TO.C,R7*% 1299 | X195750000Y-131175000D03* 1300 | X198850000Y-131175000D03* 1301 | %TD*% 1302 | D13* 1303 | %TO.C,VOICE1*% 1304 | X215000000Y-175630000D03* 1305 | D14* 1306 | X215000000Y-173090000D03* 1307 | X215000000Y-170550000D03* 1308 | X215000000Y-168010000D03* 1309 | X215000000Y-165470000D03* 1310 | X215000000Y-162930000D03* 1311 | X215000000Y-160390000D03* 1312 | X215000000Y-157850000D03* 1313 | X215000000Y-155310000D03* 1314 | X215000000Y-152770000D03* 1315 | X215000000Y-150230000D03* 1316 | X215000000Y-147690000D03* 1317 | X215000000Y-145150000D03* 1318 | X215000000Y-142610000D03* 1319 | X215000000Y-140070000D03* 1320 | X215000000Y-137530000D03* 1321 | X215000000Y-134990000D03* 1322 | X215000000Y-132450000D03* 1323 | X215000000Y-129910000D03* 1324 | X215000000Y-127370000D03* 1325 | X215000000Y-124830000D03* 1326 | X215000000Y-122290000D03* 1327 | X215000000Y-119750000D03* 1328 | X215000000Y-117210000D03* 1329 | X215000000Y-114670000D03* 1330 | X215000000Y-112130000D03* 1331 | X215000000Y-109590000D03* 1332 | X215000000Y-107050000D03* 1333 | X215000000Y-104510000D03* 1334 | X215000000Y-101970000D03* 1335 | X215000000Y-99430000D03* 1336 | X215000000Y-96890000D03* 1337 | X215000000Y-94350000D03* 1338 | X215000000Y-91810000D03* 1339 | X215000000Y-89270000D03* 1340 | X215000000Y-86730000D03* 1341 | %TD*% 1342 | D22* 1343 | %TO.C,C7*% 1344 | X169737500Y-189900000D03* 1345 | X172862500Y-189900000D03* 1346 | %TD*% 1347 | %TO.C,C38*% 1348 | X169737500Y-154000000D03* 1349 | X172862500Y-154000000D03* 1350 | %TD*% 1351 | D21* 1352 | %TO.C,R26*% 1353 | X299100000Y-90500000D03* 1354 | X296000000Y-90500000D03* 1355 | %TD*% 1356 | D22* 1357 | %TO.C,C20*% 1358 | X156737500Y-138300000D03* 1359 | X159862500Y-138300000D03* 1360 | %TD*% 1361 | D21* 1362 | %TO.C,R21*% 1363 | X224050000Y-90500000D03* 1364 | X220950000Y-90500000D03* 1365 | %TD*% 1366 | D16* 1367 | %TO.C,R40*% 1368 | X178100000Y-52350000D03* 1369 | X178100000Y-55450000D03* 1370 | %TD*% 1371 | D11* 1372 | %TO.C,C11*% 1373 | X198400000Y-183862500D03* 1374 | X198400000Y-180737500D03* 1375 | %TD*% 1376 | D29* 1377 | %TO.C,U12*% 1378 | X154495000Y-164062500D03* 1379 | X155765000Y-164062500D03* 1380 | X157035000Y-164062500D03* 1381 | X158305000Y-164062500D03* 1382 | X159575000Y-164062500D03* 1383 | X160845000Y-164062500D03* 1384 | X162115000Y-164062500D03* 1385 | X163385000Y-164062500D03* 1386 | X163385000Y-157137500D03* 1387 | X162115000Y-157137500D03* 1388 | X160845000Y-157137500D03* 1389 | X159575000Y-157137500D03* 1390 | X158305000Y-157137500D03* 1391 | X157035000Y-157137500D03* 1392 | X155765000Y-157137500D03* 1393 | X154495000Y-157137500D03* 1394 | %TD*% 1395 | D13* 1396 | %TO.C,VOICE7*% 1397 | X305000000Y-175630000D03* 1398 | D14* 1399 | X305000000Y-173090000D03* 1400 | X305000000Y-170550000D03* 1401 | X305000000Y-168010000D03* 1402 | X305000000Y-165470000D03* 1403 | X305000000Y-162930000D03* 1404 | X305000000Y-160390000D03* 1405 | X305000000Y-157850000D03* 1406 | X305000000Y-155310000D03* 1407 | X305000000Y-152770000D03* 1408 | X305000000Y-150230000D03* 1409 | X305000000Y-147690000D03* 1410 | X305000000Y-145150000D03* 1411 | X305000000Y-142610000D03* 1412 | X305000000Y-140070000D03* 1413 | X305000000Y-137530000D03* 1414 | X305000000Y-134990000D03* 1415 | X305000000Y-132450000D03* 1416 | X305000000Y-129910000D03* 1417 | X305000000Y-127370000D03* 1418 | X305000000Y-124830000D03* 1419 | X305000000Y-122290000D03* 1420 | X305000000Y-119750000D03* 1421 | X305000000Y-117210000D03* 1422 | X305000000Y-114670000D03* 1423 | X305000000Y-112130000D03* 1424 | X305000000Y-109590000D03* 1425 | X305000000Y-107050000D03* 1426 | X305000000Y-104510000D03* 1427 | X305000000Y-101970000D03* 1428 | X305000000Y-99430000D03* 1429 | X305000000Y-96890000D03* 1430 | X305000000Y-94350000D03* 1431 | X305000000Y-91810000D03* 1432 | X305000000Y-89270000D03* 1433 | X305000000Y-86730000D03* 1434 | %TD*% 1435 | D12* 1436 | %TO.C,C59*% 1437 | X180362500Y-83152500D03* 1438 | X180362500Y-86277500D03* 1439 | %TD*% 1440 | D32* 1441 | %TO.C,R41*% 1442 | X193100000Y-49550000D03* 1443 | X193100000Y-46450000D03* 1444 | %TD*% 1445 | D16* 1446 | %TO.C,R9*% 1447 | X159000000Y-108450000D03* 1448 | X159000000Y-111550000D03* 1449 | %TD*% 1450 | M02* 1451 | -------------------------------------------------------------------------------- /plots/polykit-x-mainboard-F_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.10-7.0.10~ubuntu22.04.1*% 2 | %TF.CreationDate,2024-01-14T12:30:21+01:00*% 3 | %TF.ProjectId,polykit-x-mainboard,706f6c79-6b69-4742-9d78-2d6d61696e62,v0.0.2*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Top*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.10-7.0.10~ubuntu22.04.1) date 2024-01-14 12:30:21* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | G04 Aperture macros list end* 32 | %ADD10RoundRect,0.250000X-0.400000X-0.625000X0.400000X-0.625000X0.400000X0.625000X-0.400000X0.625000X0*% 33 | %ADD11RoundRect,0.250000X0.650000X-0.412500X0.650000X0.412500X-0.650000X0.412500X-0.650000X-0.412500X0*% 34 | %ADD12RoundRect,0.250000X-0.650000X0.412500X-0.650000X-0.412500X0.650000X-0.412500X0.650000X0.412500X0*% 35 | %ADD13RoundRect,0.150000X0.150000X-0.725000X0.150000X0.725000X-0.150000X0.725000X-0.150000X-0.725000X0*% 36 | %ADD14RoundRect,0.250000X-0.625000X0.400000X-0.625000X-0.400000X0.625000X-0.400000X0.625000X0.400000X0*% 37 | %ADD15RoundRect,0.250000X0.412500X0.650000X-0.412500X0.650000X-0.412500X-0.650000X0.412500X-0.650000X0*% 38 | %ADD16RoundRect,0.150000X-0.150000X0.837500X-0.150000X-0.837500X0.150000X-0.837500X0.150000X0.837500X0*% 39 | %ADD17RoundRect,0.250000X0.400000X0.625000X-0.400000X0.625000X-0.400000X-0.625000X0.400000X-0.625000X0*% 40 | %ADD18RoundRect,0.250000X-0.412500X-0.650000X0.412500X-0.650000X0.412500X0.650000X-0.412500X0.650000X0*% 41 | %ADD19RoundRect,0.250000X-1.500000X-0.550000X1.500000X-0.550000X1.500000X0.550000X-1.500000X0.550000X0*% 42 | %ADD20RoundRect,0.150000X-0.825000X-0.150000X0.825000X-0.150000X0.825000X0.150000X-0.825000X0.150000X0*% 43 | %ADD21RoundRect,0.150000X0.150000X-0.837500X0.150000X0.837500X-0.150000X0.837500X-0.150000X-0.837500X0*% 44 | %ADD22RoundRect,0.150000X0.150000X-0.825000X0.150000X0.825000X-0.150000X0.825000X-0.150000X-0.825000X0*% 45 | %ADD23R,1.600000X1.600000*% 46 | %ADD24RoundRect,0.250000X0.625000X-0.400000X0.625000X0.400000X-0.625000X0.400000X-0.625000X-0.400000X0*% 47 | %ADD25R,1.000000X1.000000*% 48 | %ADD26RoundRect,0.250000X0.550000X-1.250000X0.550000X1.250000X-0.550000X1.250000X-0.550000X-1.250000X0*% 49 | %ADD27R,4.550000X5.250000*% 50 | %ADD28R,4.600000X1.100000*% 51 | %ADD29RoundRect,0.100000X-0.637500X-0.100000X0.637500X-0.100000X0.637500X0.100000X-0.637500X0.100000X0*% 52 | %ADD30RoundRect,0.150000X0.150000X-0.587500X0.150000X0.587500X-0.150000X0.587500X-0.150000X-0.587500X0*% 53 | G04 APERTURE END LIST* 54 | D10* 55 | %TO.C,R20*% 56 | X206050000Y-90500000D03* 57 | X209150000Y-90500000D03* 58 | %TD*% 59 | D11* 60 | %TO.C,C31*% 61 | X135900000Y-116262500D03* 62 | X135900000Y-113137500D03* 63 | %TD*% 64 | D12* 65 | %TO.C,C12*% 66 | X180400000Y-180737500D03* 67 | X180400000Y-183862500D03* 68 | %TD*% 69 | %TO.C,C34*% 70 | X149600000Y-159037500D03* 71 | X149600000Y-162162500D03* 72 | %TD*% 73 | %TO.C,C1*% 74 | X161500000Y-195737500D03* 75 | X161500000Y-198862500D03* 76 | %TD*% 77 | D11* 78 | %TO.C,C33*% 79 | X177700000Y-111562500D03* 80 | X177700000Y-108437500D03* 81 | %TD*% 82 | D13* 83 | %TO.C,U11*% 84 | X168795000Y-112475000D03* 85 | X170065000Y-112475000D03* 86 | X171335000Y-112475000D03* 87 | X172605000Y-112475000D03* 88 | X172605000Y-107325000D03* 89 | X171335000Y-107325000D03* 90 | X170065000Y-107325000D03* 91 | X168795000Y-107325000D03* 92 | %TD*% 93 | D14* 94 | %TO.C,R45*% 95 | X125500000Y-40550000D03* 96 | X125500000Y-43650000D03* 97 | %TD*% 98 | %TO.C,R19*% 99 | X315700000Y-180500000D03* 100 | X315700000Y-183600000D03* 101 | %TD*% 102 | D15* 103 | %TO.C,C65*% 104 | X186862500Y-59500000D03* 105 | X183737500Y-59500000D03* 106 | %TD*% 107 | D16* 108 | %TO.C,U15*% 109 | X163385000Y-86157500D03* 110 | X162115000Y-86157500D03* 111 | X160845000Y-86157500D03* 112 | X159575000Y-86157500D03* 113 | X158305000Y-86157500D03* 114 | X157035000Y-86157500D03* 115 | X155765000Y-86157500D03* 116 | X154495000Y-86157500D03* 117 | X154495000Y-93082500D03* 118 | X155765000Y-93082500D03* 119 | X157035000Y-93082500D03* 120 | X158305000Y-93082500D03* 121 | X159575000Y-93082500D03* 122 | X160845000Y-93082500D03* 123 | X162115000Y-93082500D03* 124 | X163385000Y-93082500D03* 125 | %TD*% 126 | D17* 127 | %TO.C,R25*% 128 | X284100000Y-90500000D03* 129 | X281000000Y-90500000D03* 130 | %TD*% 131 | D11* 132 | %TO.C,C2*% 133 | X153900000Y-180462500D03* 134 | X153900000Y-177337500D03* 135 | %TD*% 136 | D14* 137 | %TO.C,R16*% 138 | X270000000Y-180500000D03* 139 | X270000000Y-183600000D03* 140 | %TD*% 141 | D18* 142 | %TO.C,C22*% 143 | X156737500Y-132000000D03* 144 | X159862500Y-132000000D03* 145 | %TD*% 146 | D10* 147 | %TO.C,R28*% 148 | X206100000Y-85500000D03* 149 | X209200000Y-85500000D03* 150 | %TD*% 151 | D16* 152 | %TO.C,U5*% 153 | X149145000Y-130137500D03* 154 | X147875000Y-130137500D03* 155 | X146605000Y-130137500D03* 156 | X145335000Y-130137500D03* 157 | X144065000Y-130137500D03* 158 | X142795000Y-130137500D03* 159 | X141525000Y-130137500D03* 160 | X140255000Y-130137500D03* 161 | X140255000Y-137062500D03* 162 | X141525000Y-137062500D03* 163 | X142795000Y-137062500D03* 164 | X144065000Y-137062500D03* 165 | X145335000Y-137062500D03* 166 | X146605000Y-137062500D03* 167 | X147875000Y-137062500D03* 168 | X149145000Y-137062500D03* 169 | %TD*% 170 | D18* 171 | %TO.C,C35*% 172 | X169737500Y-146600000D03* 173 | X172862500Y-146600000D03* 174 | %TD*% 175 | D19* 176 | %TO.C,C61*% 177 | X108900000Y-60000000D03* 178 | X114300000Y-60000000D03* 179 | %TD*% 180 | D11* 181 | %TO.C,C58*% 182 | X198402500Y-86277500D03* 183 | X198402500Y-83152500D03* 184 | %TD*% 185 | D20* 186 | %TO.C,U19*% 187 | X182825000Y-47190000D03* 188 | X182825000Y-48460000D03* 189 | X182825000Y-49730000D03* 190 | X182825000Y-51000000D03* 191 | X182825000Y-52270000D03* 192 | X182825000Y-53540000D03* 193 | X182825000Y-54810000D03* 194 | X187775000Y-54810000D03* 195 | X187775000Y-53540000D03* 196 | X187775000Y-52270000D03* 197 | X187775000Y-51000000D03* 198 | X187775000Y-49730000D03* 199 | X187775000Y-48460000D03* 200 | X187775000Y-47190000D03* 201 | %TD*% 202 | D19* 203 | %TO.C,C63*% 204 | X90900000Y-71600000D03* 205 | X96300000Y-71600000D03* 206 | %TD*% 207 | D18* 208 | %TO.C,C5*% 209 | X169700000Y-186400000D03* 210 | X172825000Y-186400000D03* 211 | %TD*% 212 | D12* 213 | %TO.C,C14*% 214 | X180400000Y-192837500D03* 215 | X180400000Y-195962500D03* 216 | %TD*% 217 | D11* 218 | %TO.C,C24*% 219 | X203100000Y-145262500D03* 220 | X203100000Y-142137500D03* 221 | %TD*% 222 | D17* 223 | %TO.C,R31*% 224 | X254050000Y-85500000D03* 225 | X250950000Y-85500000D03* 226 | %TD*% 227 | %TO.C,R12*% 228 | X172250000Y-103500000D03* 229 | X169150000Y-103500000D03* 230 | %TD*% 231 | %TO.C,R24*% 232 | X269100000Y-90500000D03* 233 | X266000000Y-90500000D03* 234 | %TD*% 235 | D12* 236 | %TO.C,C44*% 237 | X180400000Y-152137500D03* 238 | X180400000Y-155262500D03* 239 | %TD*% 240 | D21* 241 | %TO.C,U2*% 242 | X153855000Y-191562500D03* 243 | X155125000Y-191562500D03* 244 | X156395000Y-191562500D03* 245 | X157665000Y-191562500D03* 246 | X158935000Y-191562500D03* 247 | X160205000Y-191562500D03* 248 | X161475000Y-191562500D03* 249 | X162745000Y-191562500D03* 250 | X162745000Y-184637500D03* 251 | X161475000Y-184637500D03* 252 | X160205000Y-184637500D03* 253 | X158935000Y-184637500D03* 254 | X157665000Y-184637500D03* 255 | X156395000Y-184637500D03* 256 | X155125000Y-184637500D03* 257 | X153855000Y-184637500D03* 258 | %TD*% 259 | D12* 260 | %TO.C,C46*% 261 | X180400000Y-164137500D03* 262 | X180400000Y-167262500D03* 263 | %TD*% 264 | D18* 265 | %TO.C,C48*% 266 | X169877500Y-94100000D03* 267 | X173002500Y-94100000D03* 268 | %TD*% 269 | D22* 270 | %TO.C,U3*% 271 | X185590000Y-184775000D03* 272 | X186860000Y-184775000D03* 273 | X188130000Y-184775000D03* 274 | X189400000Y-184775000D03* 275 | X190670000Y-184775000D03* 276 | X191940000Y-184775000D03* 277 | X193210000Y-184775000D03* 278 | X193210000Y-179825000D03* 279 | X191940000Y-179825000D03* 280 | X190670000Y-179825000D03* 281 | X189400000Y-179825000D03* 282 | X188130000Y-179825000D03* 283 | X186860000Y-179825000D03* 284 | X185590000Y-179825000D03* 285 | %TD*% 286 | D18* 287 | %TO.C,C10*% 288 | X169737500Y-197200000D03* 289 | X172862500Y-197200000D03* 290 | %TD*% 291 | %TO.C,C53*% 292 | X169877500Y-85120000D03* 293 | X173002500Y-85120000D03* 294 | %TD*% 295 | D23* 296 | %TO.C,U20*% 297 | X140610000Y-53890000D03* 298 | X138070000Y-53890000D03* 299 | X135530000Y-53890000D03* 300 | X132990000Y-53890000D03* 301 | X132990000Y-61510000D03* 302 | X135530000Y-61510000D03* 303 | X138070000Y-61510000D03* 304 | X140610000Y-61510000D03* 305 | %TD*% 306 | D24* 307 | %TO.C,R10*% 308 | X159000000Y-105050000D03* 309 | X159000000Y-101950000D03* 310 | %TD*% 311 | D14* 312 | %TO.C,R13*% 313 | X224600000Y-180500000D03* 314 | X224600000Y-183600000D03* 315 | %TD*% 316 | D18* 317 | %TO.C,C42*% 318 | X169737500Y-168900000D03* 319 | X172862500Y-168900000D03* 320 | %TD*% 321 | D12* 322 | %TO.C,C57*% 323 | X180362500Y-94132500D03* 324 | X180362500Y-97257500D03* 325 | %TD*% 326 | D18* 327 | %TO.C,C19*% 328 | X156737500Y-135000000D03* 329 | X159862500Y-135000000D03* 330 | %TD*% 331 | D12* 332 | %TO.C,C32*% 333 | X164000000Y-108437500D03* 334 | X164000000Y-111562500D03* 335 | %TD*% 336 | D18* 337 | %TO.C,C49*% 338 | X169877500Y-97120000D03* 339 | X173002500Y-97120000D03* 340 | %TD*% 341 | %TO.C,C26*% 342 | X156737500Y-121200000D03* 343 | X159862500Y-121200000D03* 344 | %TD*% 345 | D11* 346 | %TO.C,C16*% 347 | X184900000Y-135337500D03* 348 | X184900000Y-132212500D03* 349 | %TD*% 350 | D18* 351 | %TO.C,C21*% 352 | X156737500Y-128700000D03* 353 | X159862500Y-128700000D03* 354 | %TD*% 355 | D14* 356 | %TO.C,R2*% 357 | X172400000Y-139750000D03* 358 | X172400000Y-142850000D03* 359 | %TD*% 360 | D17* 361 | %TO.C,R11*% 362 | X172350000Y-116300000D03* 363 | X169250000Y-116300000D03* 364 | %TD*% 365 | %TO.C,R29*% 366 | X224100000Y-85500000D03* 367 | X221000000Y-85500000D03* 368 | %TD*% 369 | %TO.C,R35*% 370 | X314050000Y-85500000D03* 371 | X310950000Y-85500000D03* 372 | %TD*% 373 | D14* 374 | %TO.C,R38*% 375 | X172800000Y-49350000D03* 376 | X172800000Y-52450000D03* 377 | %TD*% 378 | D22* 379 | %TO.C,U16*% 380 | X185590000Y-98075000D03* 381 | X186860000Y-98075000D03* 382 | X188130000Y-98075000D03* 383 | X189400000Y-98075000D03* 384 | X190670000Y-98075000D03* 385 | X191940000Y-98075000D03* 386 | X193210000Y-98075000D03* 387 | X193210000Y-93125000D03* 388 | X191940000Y-93125000D03* 389 | X190670000Y-93125000D03* 390 | X189400000Y-93125000D03* 391 | X188130000Y-93125000D03* 392 | X186860000Y-93125000D03* 393 | X185590000Y-93125000D03* 394 | %TD*% 395 | D18* 396 | %TO.C,C40*% 397 | X169737500Y-165100000D03* 398 | X172862500Y-165100000D03* 399 | %TD*% 400 | D11* 401 | %TO.C,C56*% 402 | X198400000Y-97257500D03* 403 | X198400000Y-94132500D03* 404 | %TD*% 405 | D22* 406 | %TO.C,U7*% 407 | X190290000Y-126150000D03* 408 | X191560000Y-126150000D03* 409 | X192830000Y-126150000D03* 410 | X194100000Y-126150000D03* 411 | X195370000Y-126150000D03* 412 | X196640000Y-126150000D03* 413 | X197910000Y-126150000D03* 414 | X197910000Y-121200000D03* 415 | X196640000Y-121200000D03* 416 | X195370000Y-121200000D03* 417 | X194100000Y-121200000D03* 418 | X192830000Y-121200000D03* 419 | X191560000Y-121200000D03* 420 | X190290000Y-121200000D03* 421 | %TD*% 422 | D18* 423 | %TO.C,C51*% 424 | X169877500Y-91120000D03* 425 | X173002500Y-91120000D03* 426 | %TD*% 427 | D24* 428 | %TO.C,R36*% 429 | X178100000Y-49550000D03* 430 | X178100000Y-46450000D03* 431 | %TD*% 432 | D18* 433 | %TO.C,C36*% 434 | X169737500Y-150200000D03* 435 | X172862500Y-150200000D03* 436 | %TD*% 437 | D12* 438 | %TO.C,C25*% 439 | X185100000Y-142137500D03* 440 | X185100000Y-145262500D03* 441 | %TD*% 442 | D25* 443 | %TO.C,D1*% 444 | X138050000Y-47900000D03* 445 | X135550000Y-47900000D03* 446 | %TD*% 447 | D24* 448 | %TO.C,R43*% 449 | X169700000Y-43250000D03* 450 | X169700000Y-40150000D03* 451 | %TD*% 452 | D14* 453 | %TO.C,R37*% 454 | X193100000Y-52350000D03* 455 | X193100000Y-55450000D03* 456 | %TD*% 457 | D17* 458 | %TO.C,R34*% 459 | X299050000Y-85500000D03* 460 | X295950000Y-85500000D03* 461 | %TD*% 462 | D18* 463 | %TO.C,C8*% 464 | X169737500Y-193500000D03* 465 | X172862500Y-193500000D03* 466 | %TD*% 467 | D12* 468 | %TO.C,C47*% 469 | X163400000Y-98137500D03* 470 | X163400000Y-101262500D03* 471 | %TD*% 472 | %TO.C,C17*% 473 | X167400000Y-132137500D03* 474 | X167400000Y-135262500D03* 475 | %TD*% 476 | D14* 477 | %TO.C,R15*% 478 | X255800000Y-180500000D03* 479 | X255800000Y-183600000D03* 480 | %TD*% 481 | D11* 482 | %TO.C,C43*% 483 | X198400000Y-155362500D03* 484 | X198400000Y-152237500D03* 485 | %TD*% 486 | D26* 487 | %TO.C,C30*% 488 | X142200000Y-111900000D03* 489 | X142200000Y-107500000D03* 490 | %TD*% 491 | D11* 492 | %TO.C,C13*% 493 | X198400000Y-195962500D03* 494 | X198400000Y-192837500D03* 495 | %TD*% 496 | D18* 497 | %TO.C,C64*% 498 | X183737500Y-42500000D03* 499 | X186862500Y-42500000D03* 500 | %TD*% 501 | D27* 502 | %TO.C,U18*% 503 | X63000000Y-54725000D03* 504 | X67850000Y-54725000D03* 505 | X67850000Y-60275000D03* 506 | X63000000Y-60275000D03* 507 | D28* 508 | X74575000Y-60040000D03* 509 | X74575000Y-54960000D03* 510 | %TD*% 511 | D22* 512 | %TO.C,U13*% 513 | X185590000Y-156375000D03* 514 | X186860000Y-156375000D03* 515 | X188130000Y-156375000D03* 516 | X189400000Y-156375000D03* 517 | X190670000Y-156375000D03* 518 | X191940000Y-156375000D03* 519 | X193210000Y-156375000D03* 520 | X193210000Y-151425000D03* 521 | X191940000Y-151425000D03* 522 | X190670000Y-151425000D03* 523 | X189400000Y-151425000D03* 524 | X188130000Y-151425000D03* 525 | X186860000Y-151425000D03* 526 | X185590000Y-151425000D03* 527 | %TD*% 528 | D10* 529 | %TO.C,R47*% 530 | X136550000Y-67700000D03* 531 | X139650000Y-67700000D03* 532 | %TD*% 533 | D22* 534 | %TO.C,U14*% 535 | X185590000Y-167975000D03* 536 | X186860000Y-167975000D03* 537 | X188130000Y-167975000D03* 538 | X189400000Y-167975000D03* 539 | X190670000Y-167975000D03* 540 | X191940000Y-167975000D03* 541 | X193210000Y-167975000D03* 542 | X193210000Y-163025000D03* 543 | X191940000Y-163025000D03* 544 | X190670000Y-163025000D03* 545 | X189400000Y-163025000D03* 546 | X188130000Y-163025000D03* 547 | X186860000Y-163025000D03* 548 | X185590000Y-163025000D03* 549 | %TD*% 550 | D10* 551 | %TO.C,R8*% 552 | X135250000Y-102400000D03* 553 | X138350000Y-102400000D03* 554 | %TD*% 555 | D11* 556 | %TO.C,C15*% 557 | X135200000Y-135162500D03* 558 | X135200000Y-132037500D03* 559 | %TD*% 560 | D18* 561 | %TO.C,C3*% 562 | X169737500Y-176100000D03* 563 | X172862500Y-176100000D03* 564 | %TD*% 565 | %TO.C,C37*% 566 | X169737500Y-157700000D03* 567 | X172862500Y-157700000D03* 568 | %TD*% 569 | D10* 570 | %TO.C,R6*% 571 | X195750000Y-136675000D03* 572 | X198850000Y-136675000D03* 573 | %TD*% 574 | D17* 575 | %TO.C,R23*% 576 | X254050000Y-90500000D03* 577 | X250950000Y-90500000D03* 578 | %TD*% 579 | D22* 580 | %TO.C,U17*% 581 | X185630000Y-87095000D03* 582 | X186900000Y-87095000D03* 583 | X188170000Y-87095000D03* 584 | X189440000Y-87095000D03* 585 | X190710000Y-87095000D03* 586 | X191980000Y-87095000D03* 587 | X193250000Y-87095000D03* 588 | X193250000Y-82145000D03* 589 | X191980000Y-82145000D03* 590 | X190710000Y-82145000D03* 591 | X189440000Y-82145000D03* 592 | X188170000Y-82145000D03* 593 | X186900000Y-82145000D03* 594 | X185630000Y-82145000D03* 595 | %TD*% 596 | D24* 597 | %TO.C,R42*% 598 | X164350000Y-43250000D03* 599 | X164350000Y-40150000D03* 600 | %TD*% 601 | D18* 602 | %TO.C,C52*% 603 | X169837500Y-82100000D03* 604 | X172962500Y-82100000D03* 605 | %TD*% 606 | D14* 607 | %TO.C,R3*% 608 | X178700000Y-139725000D03* 609 | X178700000Y-142825000D03* 610 | %TD*% 611 | D17* 612 | %TO.C,R22*% 613 | X239050000Y-90500000D03* 614 | X235950000Y-90500000D03* 615 | %TD*% 616 | D11* 617 | %TO.C,C18*% 618 | X203100000Y-125237500D03* 619 | X203100000Y-122112500D03* 620 | %TD*% 621 | D19* 622 | %TO.C,C62*% 623 | X90900000Y-60000000D03* 624 | X96300000Y-60000000D03* 625 | %TD*% 626 | %TO.C,C60*% 627 | X108900000Y-71500000D03* 628 | X114300000Y-71500000D03* 629 | %TD*% 630 | D18* 631 | %TO.C,C27*% 632 | X156737500Y-125000000D03* 633 | X159862500Y-125000000D03* 634 | %TD*% 635 | D14* 636 | %TO.C,R14*% 637 | X240500000Y-180500000D03* 638 | X240500000Y-183600000D03* 639 | %TD*% 640 | D17* 641 | %TO.C,R44*% 642 | X119150000Y-39300000D03* 643 | X116050000Y-39300000D03* 644 | %TD*% 645 | D22* 646 | %TO.C,U4*% 647 | X185590000Y-196775000D03* 648 | X186860000Y-196775000D03* 649 | X188130000Y-196775000D03* 650 | X189400000Y-196775000D03* 651 | X190670000Y-196775000D03* 652 | X191940000Y-196775000D03* 653 | X193210000Y-196775000D03* 654 | X193210000Y-191825000D03* 655 | X191940000Y-191825000D03* 656 | X190670000Y-191825000D03* 657 | X189400000Y-191825000D03* 658 | X188130000Y-191825000D03* 659 | X186860000Y-191825000D03* 660 | X185590000Y-191825000D03* 661 | %TD*% 662 | D11* 663 | %TO.C,C45*% 664 | X198400000Y-167162500D03* 665 | X198400000Y-164037500D03* 666 | %TD*% 667 | D14* 668 | %TO.C,R17*% 669 | X285700000Y-180500000D03* 670 | X285700000Y-183600000D03* 671 | %TD*% 672 | D17* 673 | %TO.C,R30*% 674 | X239050000Y-85500000D03* 675 | X235950000Y-85500000D03* 676 | %TD*% 677 | %TO.C,R32*% 678 | X269050000Y-85500000D03* 679 | X265950000Y-85500000D03* 680 | %TD*% 681 | %TO.C,R33*% 682 | X284100000Y-85500000D03* 683 | X281000000Y-85500000D03* 684 | %TD*% 685 | D18* 686 | %TO.C,C55*% 687 | X169877500Y-79120000D03* 688 | X173002500Y-79120000D03* 689 | %TD*% 690 | %TO.C,C41*% 691 | X169737500Y-172400000D03* 692 | X172862500Y-172400000D03* 693 | %TD*% 694 | D10* 695 | %TO.C,R4*% 696 | X171650000Y-126775000D03* 697 | X174750000Y-126775000D03* 698 | %TD*% 699 | D17* 700 | %TO.C,R27*% 701 | X314100000Y-90500000D03* 702 | X311000000Y-90500000D03* 703 | %TD*% 704 | D18* 705 | %TO.C,C28*% 706 | X156737500Y-141875000D03* 707 | X159862500Y-141875000D03* 708 | %TD*% 709 | %TO.C,C9*% 710 | X169737500Y-201000000D03* 711 | X172862500Y-201000000D03* 712 | %TD*% 713 | D12* 714 | %TO.C,C23*% 715 | X185100000Y-122037500D03* 716 | X185100000Y-125162500D03* 717 | %TD*% 718 | D14* 719 | %TO.C,R18*% 720 | X300800000Y-180500000D03* 721 | X300800000Y-183600000D03* 722 | %TD*% 723 | D17* 724 | %TO.C,R5*% 725 | X192550000Y-136675000D03* 726 | X189450000Y-136675000D03* 727 | %TD*% 728 | D18* 729 | %TO.C,C29*% 730 | X156737500Y-145375000D03* 731 | X159862500Y-145375000D03* 732 | %TD*% 733 | D24* 734 | %TO.C,R39*% 735 | X198200000Y-52550000D03* 736 | X198200000Y-49450000D03* 737 | %TD*% 738 | D29* 739 | %TO.C,U10*% 740 | X146062500Y-117375000D03* 741 | X146062500Y-118025000D03* 742 | X146062500Y-118675000D03* 743 | X146062500Y-119325000D03* 744 | X146062500Y-119975000D03* 745 | X146062500Y-120625000D03* 746 | X146062500Y-121275000D03* 747 | X146062500Y-121925000D03* 748 | X146062500Y-122575000D03* 749 | X146062500Y-123225000D03* 750 | X140337500Y-123225000D03* 751 | X140337500Y-122575000D03* 752 | X140337500Y-121925000D03* 753 | X140337500Y-121275000D03* 754 | X140337500Y-120625000D03* 755 | X140337500Y-119975000D03* 756 | X140337500Y-119325000D03* 757 | X140337500Y-118675000D03* 758 | X140337500Y-118025000D03* 759 | X140337500Y-117375000D03* 760 | %TD*% 761 | D18* 762 | %TO.C,C54*% 763 | X169877500Y-75800000D03* 764 | X173002500Y-75800000D03* 765 | %TD*% 766 | D22* 767 | %TO.C,U6*% 768 | X172390000Y-136250000D03* 769 | X173660000Y-136250000D03* 770 | X174930000Y-136250000D03* 771 | X176200000Y-136250000D03* 772 | X177470000Y-136250000D03* 773 | X178740000Y-136250000D03* 774 | X180010000Y-136250000D03* 775 | X180010000Y-131300000D03* 776 | X178740000Y-131300000D03* 777 | X177470000Y-131300000D03* 778 | X176200000Y-131300000D03* 779 | X174930000Y-131300000D03* 780 | X173660000Y-131300000D03* 781 | X172390000Y-131300000D03* 782 | %TD*% 783 | D18* 784 | %TO.C,C6*% 785 | X169737500Y-183000000D03* 786 | X172862500Y-183000000D03* 787 | %TD*% 788 | %TO.C,C50*% 789 | X169837500Y-88200000D03* 790 | X172962500Y-88200000D03* 791 | %TD*% 792 | D17* 793 | %TO.C,R1*% 794 | X190050000Y-175000000D03* 795 | X186950000Y-175000000D03* 796 | %TD*% 797 | D14* 798 | %TO.C,R46*% 799 | X138100000Y-40550000D03* 800 | X138100000Y-43650000D03* 801 | %TD*% 802 | D18* 803 | %TO.C,C4*% 804 | X169737500Y-179400000D03* 805 | X172862500Y-179400000D03* 806 | %TD*% 807 | D30* 808 | %TO.C,U9*% 809 | X148950000Y-106437500D03* 810 | X150850000Y-106437500D03* 811 | X149900000Y-104562500D03* 812 | %TD*% 813 | D22* 814 | %TO.C,U8*% 815 | X190290000Y-146150000D03* 816 | X191560000Y-146150000D03* 817 | X192830000Y-146150000D03* 818 | X194100000Y-146150000D03* 819 | X195370000Y-146150000D03* 820 | X196640000Y-146150000D03* 821 | X197910000Y-146150000D03* 822 | X197910000Y-141200000D03* 823 | X196640000Y-141200000D03* 824 | X195370000Y-141200000D03* 825 | X194100000Y-141200000D03* 826 | X192830000Y-141200000D03* 827 | X191560000Y-141200000D03* 828 | X190290000Y-141200000D03* 829 | %TD*% 830 | D18* 831 | %TO.C,C39*% 832 | X169737500Y-161300000D03* 833 | X172862500Y-161300000D03* 834 | %TD*% 835 | D10* 836 | %TO.C,R7*% 837 | X195750000Y-131175000D03* 838 | X198850000Y-131175000D03* 839 | %TD*% 840 | D18* 841 | %TO.C,C7*% 842 | X169737500Y-189900000D03* 843 | X172862500Y-189900000D03* 844 | %TD*% 845 | %TO.C,C38*% 846 | X169737500Y-154000000D03* 847 | X172862500Y-154000000D03* 848 | %TD*% 849 | D17* 850 | %TO.C,R26*% 851 | X299100000Y-90500000D03* 852 | X296000000Y-90500000D03* 853 | %TD*% 854 | D18* 855 | %TO.C,C20*% 856 | X156737500Y-138300000D03* 857 | X159862500Y-138300000D03* 858 | %TD*% 859 | D17* 860 | %TO.C,R21*% 861 | X224050000Y-90500000D03* 862 | X220950000Y-90500000D03* 863 | %TD*% 864 | D14* 865 | %TO.C,R40*% 866 | X178100000Y-52350000D03* 867 | X178100000Y-55450000D03* 868 | %TD*% 869 | D11* 870 | %TO.C,C11*% 871 | X198400000Y-183862500D03* 872 | X198400000Y-180737500D03* 873 | %TD*% 874 | D21* 875 | %TO.C,U12*% 876 | X154495000Y-164062500D03* 877 | X155765000Y-164062500D03* 878 | X157035000Y-164062500D03* 879 | X158305000Y-164062500D03* 880 | X159575000Y-164062500D03* 881 | X160845000Y-164062500D03* 882 | X162115000Y-164062500D03* 883 | X163385000Y-164062500D03* 884 | X163385000Y-157137500D03* 885 | X162115000Y-157137500D03* 886 | X160845000Y-157137500D03* 887 | X159575000Y-157137500D03* 888 | X158305000Y-157137500D03* 889 | X157035000Y-157137500D03* 890 | X155765000Y-157137500D03* 891 | X154495000Y-157137500D03* 892 | %TD*% 893 | D12* 894 | %TO.C,C59*% 895 | X180362500Y-83152500D03* 896 | X180362500Y-86277500D03* 897 | %TD*% 898 | D24* 899 | %TO.C,R41*% 900 | X193100000Y-49550000D03* 901 | X193100000Y-46450000D03* 902 | %TD*% 903 | D14* 904 | %TO.C,R9*% 905 | X159000000Y-108450000D03* 906 | X159000000Y-111550000D03* 907 | %TD*% 908 | M02* 909 | -------------------------------------------------------------------------------- /plots/polykit-x-mainboard-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad 7.0.10-7.0.10~ubuntu22.04.1} date So 14 Jan 2024 12:30:14 CET 3 | ; FORMAT={-:-/ absolute / inch / decimal} 4 | ; #@! TF.CreationDate,2024-01-14T12:30:14+01:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.10-7.0.10~ubuntu22.04.1 6 | ; #@! TF.FileFunction,NonPlated,1,2,NPTH 7 | FMAT,2 8 | INCH 9 | % 10 | G90 11 | G05 12 | M30 13 | -------------------------------------------------------------------------------- /plots/polykit-x-mainboard-PTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad 7.0.10-7.0.10~ubuntu22.04.1} date So 14 Jan 2024 12:30:14 CET 3 | ; FORMAT={-:-/ absolute / inch / decimal} 4 | ; #@! TF.CreationDate,2024-01-14T12:30:14+01:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.10-7.0.10~ubuntu22.04.1 6 | ; #@! TF.FileFunction,Plated,1,2,PTH 7 | FMAT,2 8 | INCH 9 | ; #@! TA.AperFunction,Plated,PTH,ViaDrill 10 | T1C0.0157 11 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 12 | T2C0.0300 13 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 14 | T3C0.0394 15 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 16 | T4C0.0469 17 | ; #@! TA.AperFunction,Plated,PTH,ViaDrill 18 | T5C0.1260 19 | % 20 | G90 21 | G05 22 | T1 23 | X2.0669Y-1.378 24 | X2.0669Y-1.5748 25 | X2.0669Y-1.7717 26 | X2.0669Y-1.9685 27 | X2.0669Y-2.1654 28 | X2.0669Y-2.3622 29 | X2.0669Y-2.5591 30 | X2.0669Y-2.7559 31 | X2.0669Y-2.9528 32 | X2.0669Y-3.1496 33 | X2.0669Y-3.3465 34 | X2.0669Y-3.5433 35 | X2.0669Y-6.1299 36 | X2.1654Y-1.4764 37 | X2.1654Y-1.6732 38 | X2.1654Y-1.8701 39 | X2.1654Y-2.0669 40 | X2.1654Y-2.2638 41 | X2.1654Y-2.4606 42 | X2.1654Y-2.6575 43 | X2.1654Y-2.8543 44 | X2.1654Y-3.0512 45 | X2.1654Y-3.248 46 | X2.1654Y-3.4449 47 | X2.1654Y-3.6417 48 | X2.2638Y-1.378 49 | X2.2638Y-1.5748 50 | X2.2638Y-1.7717 51 | X2.2638Y-1.9685 52 | X2.2638Y-2.1654 53 | X2.2638Y-2.3622 54 | X2.2638Y-2.5591 55 | X2.2638Y-2.7559 56 | X2.2638Y-2.9528 57 | X2.2638Y-3.1496 58 | X2.2638Y-3.3465 59 | X2.2638Y-3.5433 60 | X2.3622Y-1.4764 61 | X2.3622Y-1.6732 62 | X2.3622Y-1.8701 63 | X2.3622Y-2.0669 64 | X2.3622Y-2.1654 65 | X2.3622Y-2.2638 66 | X2.3622Y-2.3622 67 | X2.3622Y-2.4606 68 | X2.3622Y-2.6575 69 | X2.3622Y-2.8543 70 | X2.3622Y-3.0512 71 | X2.3622Y-3.248 72 | X2.3622Y-3.4449 73 | X2.3622Y-3.6417 74 | X2.4606Y-1.378 75 | X2.4606Y-1.5748 76 | X2.4606Y-1.7717 77 | X2.4606Y-1.9685 78 | X2.4606Y-2.0669 79 | X2.4606Y-2.1654 80 | X2.4606Y-2.2638 81 | X2.4606Y-2.3622 82 | X2.4606Y-2.4606 83 | X2.4606Y-2.5591 84 | X2.4606Y-2.7559 85 | X2.4606Y-2.9528 86 | X2.4606Y-3.1496 87 | X2.4606Y-3.3465 88 | X2.4606Y-3.5433 89 | X2.5591Y-1.4764 90 | X2.5591Y-1.6732 91 | X2.5591Y-1.8701 92 | X2.5591Y-2.0669 93 | X2.5591Y-2.1654 94 | X2.5591Y-2.2638 95 | X2.5591Y-2.3622 96 | X2.5591Y-2.4606 97 | X2.5591Y-2.6575 98 | X2.5591Y-2.8543 99 | X2.5591Y-3.0512 100 | X2.5591Y-3.248 101 | X2.5591Y-3.4449 102 | X2.5591Y-3.6417 103 | X2.6575Y-1.378 104 | X2.6575Y-1.5748 105 | X2.6575Y-1.7717 106 | X2.6575Y-1.9685 107 | X2.6575Y-2.0669 108 | X2.6575Y-2.1654 109 | X2.6575Y-2.2638 110 | X2.6575Y-2.3622 111 | X2.6575Y-2.4606 112 | X2.6575Y-2.5591 113 | X2.6575Y-2.7559 114 | X2.6575Y-2.9528 115 | X2.6575Y-3.1496 116 | X2.6575Y-3.3465 117 | X2.6575Y-3.5433 118 | X2.9197Y-8.6669 119 | X2.9291Y-4.4291 120 | X2.9291Y-4.5079 121 | X2.9882Y-7.5551 122 | X3.1398Y-2.1673 123 | X3.252Y-5.4921 124 | X3.252Y-5.5551 125 | X3.252Y-5.622 126 | X3.252Y-5.6929 127 | X3.6575Y-5.6024 128 | X3.6575Y-8.2008 129 | X3.7087Y-6.6378 130 | X3.748Y-7.3976 131 | X3.8858Y-5.3858 132 | X3.8858Y-5.4646 133 | X4.0472Y-0.9606 134 | X4.1496Y-9.2441 135 | X4.1752Y-1.0098 136 | X4.1811Y-8.1024 137 | X4.2362Y-8.7874 138 | X4.2677Y-7.0433 139 | X4.2756Y-6.4528 140 | X4.2874Y-3.1181 141 | X4.2992Y-7.5945 142 | X4.4724Y-4.7874 143 | X4.4724Y-5.2244 144 | X4.5157Y-7.4409 145 | X4.5197Y-6.3465 146 | X4.5197Y-8.7244 147 | X4.5295Y-0.9075 148 | X4.5709Y-5.3858 149 | X4.622Y-5.4685 150 | X4.626Y-6.2205 151 | X4.748Y-5.4449 152 | X4.8346Y-2.563 153 | X5.0197Y-4.1378 154 | X5.1181Y-4.122 155 | X5.2008Y-5.2598 156 | X5.2126Y-5.8543 157 | X5.2244Y-4.5669 158 | X5.2362Y-4.0315 159 | X5.248Y-4.6929 160 | X5.248Y-4.8425 161 | X5.2638Y-4.1575 162 | X5.3228Y-5.3898 163 | X5.3228Y-5.5276 164 | X5.3937Y-5.0472 165 | X5.4267Y-4.6722 166 | X5.437Y-5.5276 167 | X5.437Y-5.7638 168 | X5.438Y-4.8967 169 | X5.4488Y-4.8031 170 | X5.4646Y-5.8504 171 | X5.5Y-4.8976 172 | X5.5358Y-2.5587 173 | X5.5472Y-5.2283 174 | X5.5984Y-4.1063 175 | X5.6096Y-5.5 176 | X5.6096Y-6.2054 177 | X5.6585Y-4.6978 178 | X5.6654Y-4.5039 179 | X5.6654Y-4.6417 180 | X5.6719Y-5.3254 181 | X5.6772Y-5.5 182 | X5.6772Y-5.8504 183 | X5.6772Y-6.2087 184 | X5.7219Y-5.1943 185 | X5.7362Y-5.2638 186 | X5.7441Y-6.2087 187 | X5.7874Y-5.0433 188 | X5.7913Y-4.5039 189 | X5.8189Y-6.1969 190 | X5.8219Y-5.1998 191 | X5.8386Y-4.7008 192 | X5.8406Y-4.6156 193 | X5.8583Y-4.9291 194 | X5.8701Y-5.8504 195 | X5.8976Y-3.9764 196 | X5.9528Y-4.5039 197 | X5.9882Y-6.6654 198 | X6.0157Y-5.4882 199 | X6.0472Y-4.5669 200 | X6.0472Y-4.6457 201 | X6.0573Y-7.1829 202 | X6.0807Y-5.4902 203 | X6.0984Y-5.815 204 | X6.0984Y-5.8819 205 | X6.0984Y-5.9409 206 | X6.1339Y-4.189 207 | X6.1573Y-7.2006 208 | X6.1575Y-7.6417 209 | X6.1614Y-4.5197 210 | X6.1811Y-5.9291 211 | X6.1825Y-6.5537 212 | X6.2073Y-7.122 213 | X6.2325Y-5.8935 214 | X6.248Y-3.815 215 | X6.2795Y-7.6417 216 | X6.3327Y-3.4626 217 | X6.3543Y-4.0906 218 | X6.3573Y-7.6309 219 | X6.3819Y-3.3071 220 | X6.3819Y-3.7835 221 | X6.3858Y-4.7756 222 | X6.3858Y-4.9213 223 | X6.3858Y-5.0669 224 | X6.3898Y-4.5 225 | X6.3937Y-5.4409 226 | X6.4325Y-3.7407 227 | X6.4488Y-5.878 228 | X6.5197Y-5.9291 229 | X6.5276Y-3.2835 230 | X6.563Y-4.2087 231 | X6.563Y-4.5906 232 | X6.5748Y-6.9331 233 | X6.5748Y-7.063 234 | X6.5866Y-3.0394 235 | X6.5906Y-3.5197 236 | X6.6181Y-5.0945 237 | X6.6181Y-5.8346 238 | X6.6929Y-5.2441 239 | X6.7455Y-4.1482 240 | X6.8583Y-4.1535 241 | X6.874Y-5.8031 242 | X6.878Y-7.2047 243 | X6.8937Y-3.8543 244 | X6.8937Y-5.4528 245 | X6.8976Y-6.2087 246 | X6.8976Y-6.3504 247 | X6.8976Y-6.4961 248 | X6.8976Y-6.6457 249 | X6.8976Y-6.7874 250 | X6.8976Y-6.9291 251 | X6.8976Y-7.063 252 | X6.8976Y-7.3386 253 | X6.8976Y-7.4724 254 | X6.8976Y-7.6181 255 | X6.8976Y-7.7638 256 | X6.9016Y-7.9134 257 | X6.9055Y-3.2283 258 | X6.9055Y-3.4685 259 | X6.9055Y-3.5866 260 | X6.9094Y-3.3504 261 | X6.9094Y-3.7047 262 | X6.9606Y-5.9961 263 | X6.9921Y-4.5512 264 | X7.063Y-5.0748 265 | X7.0906Y-4.9409 266 | X7.1009Y-3.1836 267 | X7.1039Y-1.9079 268 | X7.122Y-7.3504 269 | X7.1496Y-5.7835 270 | X7.1575Y-6.1811 271 | X7.1614Y-4.7717 272 | X7.1772Y-5.2677 273 | X7.1772Y-5.3898 274 | X7.2087Y-3.7677 275 | X7.2087Y-4.185 276 | X7.2087Y-4.5039 277 | X7.2087Y-6.5197 278 | X7.2126Y-3.315 279 | X7.2126Y-7.1772 280 | X7.2126Y-7.6496 281 | X7.2362Y-2.8031 282 | X7.2402Y-6.2244 283 | X7.2874Y-5.5276 284 | X7.2913Y-2.2402 285 | X7.2953Y-1.4921 286 | X7.2953Y-1.7717 287 | X7.3386Y-0.8465 288 | X7.3386Y-0.8937 289 | X7.3386Y-1.4449 290 | X7.3425Y-5.5276 291 | X7.3567Y-3.9504 292 | X7.3583Y-3.1457 293 | X7.3583Y-3.4961 294 | X7.3583Y-3.5941 295 | X7.3583Y-6.2323 296 | X7.3583Y-6.3386 297 | X7.3583Y-6.7047 298 | X7.3583Y-7.3504 299 | X7.3622Y-7.8307 300 | X7.3819Y-4.5079 301 | X7.3976Y-4.8701 302 | X7.4134Y-5.2008 303 | X7.4173Y-5.4685 304 | X7.4173Y-5.8031 305 | X7.4921Y-7.3937 306 | X7.5276Y-4.5039 307 | X7.5417Y-4.6866 308 | X7.5417Y-5.8228 309 | X7.5591Y-3.1457 310 | X7.5591Y-3.5 311 | X7.5591Y-3.5906 312 | X7.5591Y-3.9921 313 | X7.5591Y-7.8307 314 | X7.6063Y-6.7047 315 | X7.6063Y-6.8937 316 | X7.6378Y-5.4685 317 | X7.6417Y-5.3819 318 | X7.6437Y-4.5846 319 | X7.685Y-6.4409 320 | X7.6969Y-3.3307 321 | X7.6969Y-3.7677 322 | X7.6969Y-4.2165 323 | X7.6969Y-6.0 324 | X7.7008Y-7.6496 325 | X7.7047Y-7.1811 326 | X7.7362Y-6.7126 327 | X7.7559Y-5.8583 328 | X7.7835Y-4.1969 329 | X7.8701Y-5.5354 330 | X7.878Y-4.5551 331 | X7.8858Y-4.8701 332 | X7.8937Y-5.8504 333 | X7.8976Y-5.0551 334 | X7.9213Y-3.4134 335 | X7.9567Y-6.2126 336 | X7.9961Y-5.7756 337 | X8.063Y-4.6614 338 | X8.1496Y-4.8622 339 | X8.1496Y-5.8465 340 | X8.1496Y-6.3031 341 | X8.1496Y-6.4996 342 | X8.1614Y-4.2244 343 | X8.1693Y-5.2283 344 | X8.2047Y-3.8031 345 | X8.2047Y-6.1614 346 | X8.2087Y-4.2717 347 | X8.2126Y-3.7165 348 | X8.2402Y-4.7677 349 | X8.2441Y-6.3189 350 | X8.2598Y-5.7244 351 | X8.2638Y-4.3307 352 | X8.2708Y-4.8583 353 | X8.3031Y-5.9634 354 | X8.3044Y-5.8634 355 | X8.3067Y-5.7634 356 | X8.3071Y-4.9646 357 | X8.3071Y-5.1657 358 | X8.3071Y-5.2657 359 | X8.3071Y-5.563 360 | X8.3071Y-5.6654 361 | X8.3071Y-6.063 362 | X8.3071Y-6.1614 363 | X8.3075Y-5.0634 364 | X8.3106Y-5.3657 365 | X8.311Y-5.4146 366 | X8.311Y-5.4724 367 | X8.3303Y-3.5634 368 | X8.3514Y-4.3278 369 | X8.3819Y-4.4646 370 | X8.6063Y-3.4646 371 | X9.185Y-3.3937 372 | X9.7717Y-3.3976 373 | X9.7835Y-7.0433 374 | X10.3543Y-7.0512 375 | X10.3661Y-3.3976 376 | X10.9449Y-7.0512 377 | X10.9528Y-3.3937 378 | X11.5354Y-7.0512 379 | X12.126Y-7.0512 380 | T2 381 | X3.0709Y-5.8008 382 | X3.0709Y-5.9008 383 | X3.1709Y-5.8008 384 | X3.1709Y-5.9008 385 | X3.2709Y-5.8008 386 | X3.2709Y-5.9008 387 | X3.3709Y-5.8008 388 | X3.3709Y-5.9008 389 | X3.4709Y-5.8008 390 | X3.4709Y-5.9008 391 | X3.5709Y-4.5008 392 | X3.5709Y-4.6008 393 | X3.5709Y-5.8008 394 | X3.5709Y-5.9008 395 | X3.6709Y-4.5008 396 | X3.6709Y-4.6008 397 | X3.6709Y-5.8008 398 | X3.6709Y-5.9008 399 | X3.7709Y-4.5008 400 | X3.7709Y-4.6008 401 | X3.7709Y-5.8008 402 | X3.7709Y-5.9008 403 | X3.8709Y-4.5008 404 | X3.8709Y-4.6008 405 | X3.8709Y-5.8008 406 | X3.8709Y-5.9008 407 | X3.9709Y-4.5008 408 | X3.9709Y-4.6008 409 | X3.9709Y-5.8008 410 | X3.9709Y-5.9008 411 | X4.0709Y-4.5008 412 | X4.0709Y-4.6008 413 | X4.0709Y-5.8008 414 | X4.0709Y-5.9008 415 | X4.1709Y-4.5008 416 | X4.1709Y-4.6008 417 | X4.1709Y-5.8008 418 | X4.1709Y-5.9008 419 | X4.2709Y-4.5008 420 | X4.2709Y-4.6008 421 | X4.2709Y-5.8008 422 | X4.2709Y-5.9008 423 | X4.3709Y-4.5008 424 | X4.3709Y-4.6008 425 | X4.3709Y-5.8008 426 | X4.3709Y-5.9008 427 | X4.4709Y-4.5008 428 | X4.4709Y-4.6008 429 | X4.4709Y-5.8008 430 | X4.4709Y-5.9008 431 | X4.5709Y-4.5008 432 | X4.5709Y-4.6008 433 | X4.5709Y-5.8008 434 | X4.5709Y-5.9008 435 | X4.6709Y-4.5008 436 | X4.6709Y-4.6008 437 | X4.6709Y-5.8008 438 | X4.6709Y-5.9008 439 | X4.7709Y-4.5008 440 | X4.7709Y-4.6008 441 | X4.7709Y-5.8008 442 | X4.7709Y-5.9008 443 | X4.8709Y-4.5008 444 | X4.8709Y-4.6008 445 | X4.8709Y-5.8008 446 | X4.8709Y-5.9008 447 | X4.9709Y-4.5008 448 | X4.9709Y-4.6008 449 | X4.9709Y-4.7008 450 | X4.9709Y-4.8008 451 | X4.9709Y-4.9008 452 | X4.9709Y-5.2008 453 | X4.9709Y-5.3008 454 | X4.9709Y-5.4008 455 | X4.9709Y-5.8008 456 | X4.9709Y-5.9008 457 | X5.0709Y-4.5008 458 | X5.0709Y-4.6008 459 | X5.0709Y-4.7008 460 | X5.0709Y-4.8008 461 | X5.0709Y-4.9008 462 | X5.0709Y-5.2008 463 | X5.0709Y-5.3008 464 | X5.0709Y-5.4008 465 | X5.0709Y-5.8008 466 | X5.0709Y-5.9008 467 | T3 468 | X2.3129Y-4.0559 469 | X2.3129Y-4.1559 470 | X2.3129Y-4.2559 471 | X2.3129Y-4.3559 472 | X2.3129Y-4.4559 473 | X2.3129Y-5.8319 474 | X2.3129Y-5.9319 475 | X2.3129Y-6.0319 476 | X2.3129Y-6.1319 477 | X2.3129Y-6.2319 478 | X2.3129Y-7.0043 479 | X2.3129Y-7.1043 480 | X2.3129Y-7.2043 481 | X2.3129Y-7.3043 482 | X2.3129Y-7.4043 483 | X2.3129Y-7.5043 484 | X2.3129Y-7.6043 485 | X2.3129Y-7.7043 486 | X2.3129Y-8.3669 487 | X2.3129Y-8.4669 488 | X2.3129Y-8.5669 489 | X2.3129Y-8.6669 490 | X2.3129Y-8.7669 491 | X2.4129Y-4.0559 492 | X2.4129Y-4.1559 493 | X2.4129Y-4.2559 494 | X2.4129Y-4.3559 495 | X2.4129Y-4.4559 496 | X2.4129Y-5.8319 497 | X2.4129Y-5.9319 498 | X2.4129Y-6.0319 499 | X2.4129Y-6.1319 500 | X2.4129Y-6.2319 501 | X2.4129Y-7.0043 502 | X2.4129Y-7.1043 503 | X2.4129Y-7.2043 504 | X2.4129Y-7.3043 505 | X2.4129Y-7.4043 506 | X2.4129Y-7.5043 507 | X2.4129Y-7.6043 508 | X2.4129Y-7.7043 509 | X2.4129Y-8.3669 510 | X2.4129Y-8.4669 511 | X2.4129Y-8.5669 512 | X2.4129Y-8.6669 513 | X2.4129Y-8.7669 514 | X3.1933Y-1.2183 515 | X3.1933Y-1.3183 516 | X3.2933Y-1.2183 517 | X3.2933Y-1.3183 518 | X3.3933Y-1.2183 519 | X3.3933Y-1.3183 520 | X3.4933Y-1.2183 521 | X3.4933Y-1.3183 522 | X3.5933Y-1.2183 523 | X3.5933Y-1.3183 524 | X3.6933Y-1.2183 525 | X3.6933Y-1.3183 526 | X3.7933Y-1.2183 527 | X3.7933Y-1.3183 528 | X3.8933Y-1.2183 529 | X3.8933Y-1.3183 530 | X4.4685Y-9.085 531 | X4.4685Y-9.185 532 | X4.5685Y-9.085 533 | X4.5685Y-9.185 534 | X4.6685Y-9.085 535 | X4.6685Y-9.185 536 | X4.7685Y-9.085 537 | X4.7685Y-9.185 538 | X4.8685Y-9.085 539 | X4.8685Y-9.185 540 | X8.4646Y-3.4146 541 | X8.4646Y-3.5146 542 | X8.4646Y-3.6146 543 | X8.4646Y-3.7146 544 | X8.4646Y-3.8146 545 | X8.4646Y-3.9146 546 | X8.4646Y-4.0146 547 | X8.4646Y-4.1146 548 | X8.4646Y-4.2146 549 | X8.4646Y-4.3146 550 | X8.4646Y-4.4146 551 | X8.4646Y-4.5146 552 | X8.4646Y-4.6146 553 | X8.4646Y-4.7146 554 | X8.4646Y-4.8146 555 | X8.4646Y-4.9146 556 | X8.4646Y-5.0146 557 | X8.4646Y-5.1146 558 | X8.4646Y-5.2146 559 | X8.4646Y-5.3146 560 | X8.4646Y-5.4146 561 | X8.4646Y-5.5146 562 | X8.4646Y-5.6146 563 | X8.4646Y-5.7146 564 | X8.4646Y-5.8146 565 | X8.4646Y-5.9146 566 | X8.4646Y-6.0146 567 | X8.4646Y-6.1146 568 | X8.4646Y-6.2146 569 | X8.4646Y-6.3146 570 | X8.4646Y-6.4146 571 | X8.4646Y-6.5146 572 | X8.4646Y-6.6146 573 | X8.4646Y-6.7146 574 | X8.4646Y-6.8146 575 | X8.4646Y-6.9146 576 | X9.0551Y-3.4146 577 | X9.0551Y-3.5146 578 | X9.0551Y-3.6146 579 | X9.0551Y-3.7146 580 | X9.0551Y-3.8146 581 | X9.0551Y-3.9146 582 | X9.0551Y-4.0146 583 | X9.0551Y-4.1146 584 | X9.0551Y-4.2146 585 | X9.0551Y-4.3146 586 | X9.0551Y-4.4146 587 | X9.0551Y-4.5146 588 | X9.0551Y-4.6146 589 | X9.0551Y-4.7146 590 | X9.0551Y-4.8146 591 | X9.0551Y-4.9146 592 | X9.0551Y-5.0146 593 | X9.0551Y-5.1146 594 | X9.0551Y-5.2146 595 | X9.0551Y-5.3146 596 | X9.0551Y-5.4146 597 | X9.0551Y-5.5146 598 | X9.0551Y-5.6146 599 | X9.0551Y-5.7146 600 | X9.0551Y-5.8146 601 | X9.0551Y-5.9146 602 | X9.0551Y-6.0146 603 | X9.0551Y-6.1146 604 | X9.0551Y-6.2146 605 | X9.0551Y-6.3146 606 | X9.0551Y-6.4146 607 | X9.0551Y-6.5146 608 | X9.0551Y-6.6146 609 | X9.0551Y-6.7146 610 | X9.0551Y-6.8146 611 | X9.0551Y-6.9146 612 | X9.6457Y-3.4146 613 | X9.6457Y-3.5146 614 | X9.6457Y-3.6146 615 | X9.6457Y-3.7146 616 | X9.6457Y-3.8146 617 | X9.6457Y-3.9146 618 | X9.6457Y-4.0146 619 | X9.6457Y-4.1146 620 | X9.6457Y-4.2146 621 | X9.6457Y-4.3146 622 | X9.6457Y-4.4146 623 | X9.6457Y-4.5146 624 | X9.6457Y-4.6146 625 | X9.6457Y-4.7146 626 | X9.6457Y-4.8146 627 | X9.6457Y-4.9146 628 | X9.6457Y-5.0146 629 | X9.6457Y-5.1146 630 | X9.6457Y-5.2146 631 | X9.6457Y-5.3146 632 | X9.6457Y-5.4146 633 | X9.6457Y-5.5146 634 | X9.6457Y-5.6146 635 | X9.6457Y-5.7146 636 | X9.6457Y-5.8146 637 | X9.6457Y-5.9146 638 | X9.6457Y-6.0146 639 | X9.6457Y-6.1146 640 | X9.6457Y-6.2146 641 | X9.6457Y-6.3146 642 | X9.6457Y-6.4146 643 | X9.6457Y-6.5146 644 | X9.6457Y-6.6146 645 | X9.6457Y-6.7146 646 | X9.6457Y-6.8146 647 | X9.6457Y-6.9146 648 | X10.2362Y-3.4146 649 | X10.2362Y-3.5146 650 | X10.2362Y-3.6146 651 | X10.2362Y-3.7146 652 | X10.2362Y-3.8146 653 | X10.2362Y-3.9146 654 | X10.2362Y-4.0146 655 | X10.2362Y-4.1146 656 | X10.2362Y-4.2146 657 | X10.2362Y-4.3146 658 | X10.2362Y-4.4146 659 | X10.2362Y-4.5146 660 | X10.2362Y-4.6146 661 | X10.2362Y-4.7146 662 | X10.2362Y-4.8146 663 | X10.2362Y-4.9146 664 | X10.2362Y-5.0146 665 | X10.2362Y-5.1146 666 | X10.2362Y-5.2146 667 | X10.2362Y-5.3146 668 | X10.2362Y-5.4146 669 | X10.2362Y-5.5146 670 | X10.2362Y-5.6146 671 | X10.2362Y-5.7146 672 | X10.2362Y-5.8146 673 | X10.2362Y-5.9146 674 | X10.2362Y-6.0146 675 | X10.2362Y-6.1146 676 | X10.2362Y-6.2146 677 | X10.2362Y-6.3146 678 | X10.2362Y-6.4146 679 | X10.2362Y-6.5146 680 | X10.2362Y-6.6146 681 | X10.2362Y-6.7146 682 | X10.2362Y-6.8146 683 | X10.2362Y-6.9146 684 | X10.8268Y-3.4146 685 | X10.8268Y-3.5146 686 | X10.8268Y-3.6146 687 | X10.8268Y-3.7146 688 | X10.8268Y-3.8146 689 | X10.8268Y-3.9146 690 | X10.8268Y-4.0146 691 | X10.8268Y-4.1146 692 | X10.8268Y-4.2146 693 | X10.8268Y-4.3146 694 | X10.8268Y-4.4146 695 | X10.8268Y-4.5146 696 | X10.8268Y-4.6146 697 | X10.8268Y-4.7146 698 | X10.8268Y-4.8146 699 | X10.8268Y-4.9146 700 | X10.8268Y-5.0146 701 | X10.8268Y-5.1146 702 | X10.8268Y-5.2146 703 | X10.8268Y-5.3146 704 | X10.8268Y-5.4146 705 | X10.8268Y-5.5146 706 | X10.8268Y-5.6146 707 | X10.8268Y-5.7146 708 | X10.8268Y-5.8146 709 | X10.8268Y-5.9146 710 | X10.8268Y-6.0146 711 | X10.8268Y-6.1146 712 | X10.8268Y-6.2146 713 | X10.8268Y-6.3146 714 | X10.8268Y-6.4146 715 | X10.8268Y-6.5146 716 | X10.8268Y-6.6146 717 | X10.8268Y-6.7146 718 | X10.8268Y-6.8146 719 | X10.8268Y-6.9146 720 | X11.4173Y-3.4146 721 | X11.4173Y-3.5146 722 | X11.4173Y-3.6146 723 | X11.4173Y-3.7146 724 | X11.4173Y-3.8146 725 | X11.4173Y-3.9146 726 | X11.4173Y-4.0146 727 | X11.4173Y-4.1146 728 | X11.4173Y-4.2146 729 | X11.4173Y-4.3146 730 | X11.4173Y-4.4146 731 | X11.4173Y-4.5146 732 | X11.4173Y-4.6146 733 | X11.4173Y-4.7146 734 | X11.4173Y-4.8146 735 | X11.4173Y-4.9146 736 | X11.4173Y-5.0146 737 | X11.4173Y-5.1146 738 | X11.4173Y-5.2146 739 | X11.4173Y-5.3146 740 | X11.4173Y-5.4146 741 | X11.4173Y-5.5146 742 | X11.4173Y-5.6146 743 | X11.4173Y-5.7146 744 | X11.4173Y-5.8146 745 | X11.4173Y-5.9146 746 | X11.4173Y-6.0146 747 | X11.4173Y-6.1146 748 | X11.4173Y-6.2146 749 | X11.4173Y-6.3146 750 | X11.4173Y-6.4146 751 | X11.4173Y-6.5146 752 | X11.4173Y-6.6146 753 | X11.4173Y-6.7146 754 | X11.4173Y-6.8146 755 | X11.4173Y-6.9146 756 | X12.0079Y-3.4146 757 | X12.0079Y-3.5146 758 | X12.0079Y-3.6146 759 | X12.0079Y-3.7146 760 | X12.0079Y-3.8146 761 | X12.0079Y-3.9146 762 | X12.0079Y-4.0146 763 | X12.0079Y-4.1146 764 | X12.0079Y-4.2146 765 | X12.0079Y-4.3146 766 | X12.0079Y-4.4146 767 | X12.0079Y-4.5146 768 | X12.0079Y-4.6146 769 | X12.0079Y-4.7146 770 | X12.0079Y-4.8146 771 | X12.0079Y-4.9146 772 | X12.0079Y-5.0146 773 | X12.0079Y-5.1146 774 | X12.0079Y-5.2146 775 | X12.0079Y-5.3146 776 | X12.0079Y-5.4146 777 | X12.0079Y-5.5146 778 | X12.0079Y-5.6146 779 | X12.0079Y-5.7146 780 | X12.0079Y-5.8146 781 | X12.0079Y-5.9146 782 | X12.0079Y-6.0146 783 | X12.0079Y-6.1146 784 | X12.0079Y-6.2146 785 | X12.0079Y-6.3146 786 | X12.0079Y-6.4146 787 | X12.0079Y-6.5146 788 | X12.0079Y-6.6146 789 | X12.0079Y-6.7146 790 | X12.0079Y-6.8146 791 | X12.0079Y-6.9146 792 | X12.5984Y-3.4146 793 | X12.5984Y-3.5146 794 | X12.5984Y-3.6146 795 | X12.5984Y-3.7146 796 | X12.5984Y-3.8146 797 | X12.5984Y-3.9146 798 | X12.5984Y-4.0146 799 | X12.5984Y-4.1146 800 | X12.5984Y-4.2146 801 | X12.5984Y-4.3146 802 | X12.5984Y-4.4146 803 | X12.5984Y-4.5146 804 | X12.5984Y-4.6146 805 | X12.5984Y-4.7146 806 | X12.5984Y-4.8146 807 | X12.5984Y-4.9146 808 | X12.5984Y-5.0146 809 | X12.5984Y-5.1146 810 | X12.5984Y-5.2146 811 | X12.5984Y-5.3146 812 | X12.5984Y-5.4146 813 | X12.5984Y-5.5146 814 | X12.5984Y-5.6146 815 | X12.5984Y-5.7146 816 | X12.5984Y-5.8146 817 | X12.5984Y-5.9146 818 | X12.5984Y-6.0146 819 | X12.5984Y-6.1146 820 | X12.5984Y-6.2146 821 | X12.5984Y-6.3146 822 | X12.5984Y-6.4146 823 | X12.5984Y-6.5146 824 | X12.5984Y-6.6146 825 | X12.5984Y-6.7146 826 | X12.5984Y-6.8146 827 | X12.5984Y-6.9146 828 | T4 829 | X4.9394Y-1.2402 830 | X5.0394Y-1.2402 831 | X5.3339Y-1.2402 832 | X5.4339Y-1.2402 833 | X6.1713Y-1.2402 834 | X6.2713Y-1.2402 835 | X6.3713Y-1.2402 836 | X6.8102Y-1.2402 837 | X6.9102Y-1.2402 838 | T5 839 | X2.1654Y-1.0827 840 | X2.1654Y-5.1673 841 | X2.1654Y-9.252 842 | X4.7244Y-5.1673 843 | X7.4803Y-1.0827 844 | X7.4803Y-9.252 845 | X9.3504Y-5.4429 846 | X12.7953Y-1.0827 847 | X12.7953Y-5.1673 848 | X12.7953Y-9.252 849 | M30 850 | -------------------------------------------------------------------------------- /plots/polykit-x-mainboard-job.gbrjob: -------------------------------------------------------------------------------- 1 | { 2 | "Header": { 3 | "GenerationSoftware": { 4 | "Vendor": "KiCad", 5 | "Application": "Pcbnew", 6 | "Version": "7.0.10-7.0.10~ubuntu22.04.1" 7 | }, 8 | "CreationDate": "2024-01-14T12:30:21+01:00" 9 | }, 10 | "GeneralSpecs": { 11 | "ProjectId": { 12 | "Name": "polykit-x-mainboard", 13 | "GUID": "706f6c79-6b69-4742-9d78-2d6d61696e62", 14 | "Revision": "v0.0.2" 15 | }, 16 | "Size": { 17 | "X": 285.1, 18 | "Y": 222.6 19 | }, 20 | "LayerNumber": 2, 21 | "BoardThickness": 1.6, 22 | "Finish": "None" 23 | }, 24 | "DesignRules": [ 25 | { 26 | "Layers": "Outer", 27 | "PadToPad": 0.0, 28 | "PadToTrack": 0.0, 29 | "TrackToTrack": 0.2, 30 | "MinLineWidth": 0.381, 31 | "TrackToRegion": 0.4, 32 | "RegionToRegion": 0.4 33 | } 34 | ], 35 | "FilesAttributes": [ 36 | { 37 | "Path": "polykit-x-mainboard-F_Cu.gbr", 38 | "FileFunction": "Copper,L1,Top", 39 | "FilePolarity": "Positive" 40 | }, 41 | { 42 | "Path": "polykit-x-mainboard-B_Cu.gbr", 43 | "FileFunction": "Copper,L2,Bot", 44 | "FilePolarity": "Positive" 45 | }, 46 | { 47 | "Path": "polykit-x-mainboard-F_Paste.gbr", 48 | "FileFunction": "SolderPaste,Top", 49 | "FilePolarity": "Positive" 50 | }, 51 | { 52 | "Path": "polykit-x-mainboard-B_Paste.gbr", 53 | "FileFunction": "SolderPaste,Bot", 54 | "FilePolarity": "Positive" 55 | }, 56 | { 57 | "Path": "polykit-x-mainboard-F_Silkscreen.gbr", 58 | "FileFunction": "Legend,Top", 59 | "FilePolarity": "Positive" 60 | }, 61 | { 62 | "Path": "polykit-x-mainboard-B_Silkscreen.gbr", 63 | "FileFunction": "Legend,Bot", 64 | "FilePolarity": "Positive" 65 | }, 66 | { 67 | "Path": "polykit-x-mainboard-F_Mask.gbr", 68 | "FileFunction": "SolderMask,Top", 69 | "FilePolarity": "Negative" 70 | }, 71 | { 72 | "Path": "polykit-x-mainboard-B_Mask.gbr", 73 | "FileFunction": "SolderMask,Bot", 74 | "FilePolarity": "Negative" 75 | }, 76 | { 77 | "Path": "polykit-x-mainboard-Edge_Cuts.gbr", 78 | "FileFunction": "Profile", 79 | "FilePolarity": "Positive" 80 | } 81 | ], 82 | "MaterialStackup": [ 83 | { 84 | "Type": "Legend", 85 | "Name": "Top Silk Screen" 86 | }, 87 | { 88 | "Type": "SolderPaste", 89 | "Name": "Top Solder Paste" 90 | }, 91 | { 92 | "Type": "SolderMask", 93 | "Thickness": 0.01, 94 | "Name": "Top Solder Mask" 95 | }, 96 | { 97 | "Type": "Copper", 98 | "Thickness": 0.035, 99 | "Name": "F.Cu" 100 | }, 101 | { 102 | "Type": "Dielectric", 103 | "Thickness": 1.51, 104 | "Material": "FR4", 105 | "Name": "F.Cu/B.Cu", 106 | "Notes": "Type: dielectric layer 1 (from F.Cu to B.Cu)" 107 | }, 108 | { 109 | "Type": "Copper", 110 | "Thickness": 0.035, 111 | "Name": "B.Cu" 112 | }, 113 | { 114 | "Type": "SolderMask", 115 | "Thickness": 0.01, 116 | "Name": "Bottom Solder Mask" 117 | }, 118 | { 119 | "Type": "SolderPaste", 120 | "Name": "Bottom Solder Paste" 121 | }, 122 | { 123 | "Type": "Legend", 124 | "Name": "Bottom Silk Screen" 125 | } 126 | ] 127 | } 128 | -------------------------------------------------------------------------------- /plots/polykit-x-mainboard-v0.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polykit/polykit-x-mainboard/5b2efd9dcd7ff055adf5bfd2606aebe1a667ecda/plots/polykit-x-mainboard-v0.0.2.zip -------------------------------------------------------------------------------- /polykit-x-mainboard-rendering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polykit/polykit-x-mainboard/5b2efd9dcd7ff055adf5bfd2606aebe1a667ecda/polykit-x-mainboard-rendering.jpg -------------------------------------------------------------------------------- /polykit-x-mainboard.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.09999999999999999, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.15, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 0.762, 38 | "height": 1.524, 39 | "width": 1.524 40 | }, 41 | "silk_line_width": 0.15, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 1.0, 44 | "silk_text_size_v": 1.0, 45 | "silk_text_thickness": 0.15, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "45_degree_only": false, 49 | "min_clearance": 0.39999999999999997 50 | } 51 | }, 52 | "diff_pair_dimensions": [ 53 | { 54 | "gap": 0.0, 55 | "via_gap": 0.0, 56 | "width": 0.0 57 | } 58 | ], 59 | "drc_exclusions": [], 60 | "meta": { 61 | "version": 2 62 | }, 63 | "rule_severities": { 64 | "annular_width": "error", 65 | "clearance": "error", 66 | "connection_width": "warning", 67 | "copper_edge_clearance": "error", 68 | "copper_sliver": "warning", 69 | "courtyards_overlap": "error", 70 | "diff_pair_gap_out_of_range": "error", 71 | "diff_pair_uncoupled_length_too_long": "error", 72 | "drill_out_of_range": "error", 73 | "duplicate_footprints": "warning", 74 | "extra_footprint": "warning", 75 | "footprint": "error", 76 | "footprint_type_mismatch": "error", 77 | "hole_clearance": "error", 78 | "hole_near_hole": "error", 79 | "invalid_outline": "error", 80 | "isolated_copper": "warning", 81 | "item_on_disabled_layer": "error", 82 | "items_not_allowed": "error", 83 | "length_out_of_range": "error", 84 | "lib_footprint_issues": "warning", 85 | "lib_footprint_mismatch": "warning", 86 | "malformed_courtyard": "error", 87 | "microvia_drill_out_of_range": "error", 88 | "missing_courtyard": "ignore", 89 | "missing_footprint": "warning", 90 | "net_conflict": "warning", 91 | "npth_inside_courtyard": "ignore", 92 | "padstack": "error", 93 | "pth_inside_courtyard": "ignore", 94 | "shorting_items": "error", 95 | "silk_edge_clearance": "warning", 96 | "silk_over_copper": "warning", 97 | "silk_overlap": "warning", 98 | "skew_out_of_range": "error", 99 | "solder_mask_bridge": "error", 100 | "starved_thermal": "error", 101 | "text_height": "warning", 102 | "text_thickness": "warning", 103 | "through_hole_pad_without_hole": "error", 104 | "too_many_vias": "error", 105 | "track_dangling": "warning", 106 | "track_width": "error", 107 | "tracks_crossing": "error", 108 | "unconnected_items": "error", 109 | "unresolved_variable": "error", 110 | "via_dangling": "warning", 111 | "zones_intersect": "error" 112 | }, 113 | "rules": { 114 | "allow_blind_buried_vias": false, 115 | "allow_microvias": false, 116 | "max_error": 0.005, 117 | "min_clearance": 0.0, 118 | "min_connection": 0.0, 119 | "min_copper_edge_clearance": 0.0, 120 | "min_hole_clearance": 0.25, 121 | "min_hole_to_hole": 0.25, 122 | "min_microvia_diameter": 0.19999999999999998, 123 | "min_microvia_drill": 0.09999999999999999, 124 | "min_resolved_spokes": 2, 125 | "min_silk_clearance": 0.0, 126 | "min_text_height": 0.7999999999999999, 127 | "min_text_thickness": 0.08, 128 | "min_through_hole_diameter": 0.3, 129 | "min_track_width": 0.19999999999999998, 130 | "min_via_annular_width": 0.049999999999999996, 131 | "min_via_diameter": 0.39999999999999997, 132 | "solder_mask_clearance": 0.0, 133 | "solder_mask_min_width": 0.0, 134 | "solder_mask_to_copper_clearance": 0.0, 135 | "use_height_for_length_calcs": true 136 | }, 137 | "teardrop_options": [ 138 | { 139 | "td_allow_use_two_tracks": true, 140 | "td_curve_segcount": 5, 141 | "td_on_pad_in_zone": false, 142 | "td_onpadsmd": true, 143 | "td_onroundshapesonly": false, 144 | "td_ontrackend": false, 145 | "td_onviapad": true 146 | } 147 | ], 148 | "teardrop_parameters": [ 149 | { 150 | "td_curve_segcount": 0, 151 | "td_height_ratio": 1.0, 152 | "td_length_ratio": 0.5, 153 | "td_maxheight": 2.0, 154 | "td_maxlen": 1.0, 155 | "td_target_name": "td_round_shape", 156 | "td_width_to_size_filter_ratio": 0.9 157 | }, 158 | { 159 | "td_curve_segcount": 0, 160 | "td_height_ratio": 1.0, 161 | "td_length_ratio": 0.5, 162 | "td_maxheight": 2.0, 163 | "td_maxlen": 1.0, 164 | "td_target_name": "td_rect_shape", 165 | "td_width_to_size_filter_ratio": 0.9 166 | }, 167 | { 168 | "td_curve_segcount": 0, 169 | "td_height_ratio": 1.0, 170 | "td_length_ratio": 0.5, 171 | "td_maxheight": 2.0, 172 | "td_maxlen": 1.0, 173 | "td_target_name": "td_track_end", 174 | "td_width_to_size_filter_ratio": 0.9 175 | } 176 | ], 177 | "track_widths": [ 178 | 0.0, 179 | 0.381, 180 | 0.508, 181 | 0.635 182 | ], 183 | "via_dimensions": [ 184 | { 185 | "diameter": 0.0, 186 | "drill": 0.0 187 | }, 188 | { 189 | "diameter": 3.5, 190 | "drill": 3.2 191 | } 192 | ], 193 | "zones_allow_external_fillets": false, 194 | "zones_use_no_outline": true 195 | }, 196 | "layer_presets": [], 197 | "viewports": [] 198 | }, 199 | "boards": [], 200 | "cvpcb": { 201 | "equivalence_files": [] 202 | }, 203 | "erc": { 204 | "erc_exclusions": [], 205 | "meta": { 206 | "version": 0 207 | }, 208 | "pin_map": [ 209 | [ 210 | 0, 211 | 0, 212 | 0, 213 | 0, 214 | 0, 215 | 0, 216 | 1, 217 | 0, 218 | 0, 219 | 0, 220 | 0, 221 | 2 222 | ], 223 | [ 224 | 0, 225 | 2, 226 | 0, 227 | 1, 228 | 0, 229 | 0, 230 | 1, 231 | 0, 232 | 2, 233 | 2, 234 | 2, 235 | 2 236 | ], 237 | [ 238 | 0, 239 | 0, 240 | 0, 241 | 0, 242 | 0, 243 | 0, 244 | 1, 245 | 0, 246 | 1, 247 | 0, 248 | 1, 249 | 2 250 | ], 251 | [ 252 | 0, 253 | 1, 254 | 0, 255 | 0, 256 | 0, 257 | 0, 258 | 1, 259 | 1, 260 | 2, 261 | 1, 262 | 1, 263 | 2 264 | ], 265 | [ 266 | 0, 267 | 0, 268 | 0, 269 | 0, 270 | 0, 271 | 0, 272 | 1, 273 | 0, 274 | 0, 275 | 0, 276 | 0, 277 | 2 278 | ], 279 | [ 280 | 0, 281 | 0, 282 | 0, 283 | 0, 284 | 0, 285 | 0, 286 | 0, 287 | 0, 288 | 0, 289 | 0, 290 | 0, 291 | 2 292 | ], 293 | [ 294 | 1, 295 | 1, 296 | 1, 297 | 1, 298 | 1, 299 | 0, 300 | 1, 301 | 1, 302 | 1, 303 | 1, 304 | 1, 305 | 2 306 | ], 307 | [ 308 | 0, 309 | 0, 310 | 0, 311 | 1, 312 | 0, 313 | 0, 314 | 1, 315 | 0, 316 | 0, 317 | 0, 318 | 0, 319 | 2 320 | ], 321 | [ 322 | 0, 323 | 2, 324 | 1, 325 | 2, 326 | 0, 327 | 0, 328 | 1, 329 | 0, 330 | 2, 331 | 2, 332 | 2, 333 | 2 334 | ], 335 | [ 336 | 0, 337 | 2, 338 | 0, 339 | 1, 340 | 0, 341 | 0, 342 | 1, 343 | 0, 344 | 2, 345 | 0, 346 | 0, 347 | 2 348 | ], 349 | [ 350 | 0, 351 | 2, 352 | 1, 353 | 1, 354 | 0, 355 | 0, 356 | 1, 357 | 0, 358 | 2, 359 | 0, 360 | 0, 361 | 2 362 | ], 363 | [ 364 | 2, 365 | 2, 366 | 2, 367 | 2, 368 | 2, 369 | 2, 370 | 2, 371 | 2, 372 | 2, 373 | 2, 374 | 2, 375 | 2 376 | ] 377 | ], 378 | "rule_severities": { 379 | "bus_definition_conflict": "error", 380 | "bus_entry_needed": "error", 381 | "bus_to_bus_conflict": "error", 382 | "bus_to_net_conflict": "error", 383 | "conflicting_netclasses": "error", 384 | "different_unit_footprint": "error", 385 | "different_unit_net": "error", 386 | "duplicate_reference": "error", 387 | "duplicate_sheet_names": "error", 388 | "endpoint_off_grid": "warning", 389 | "extra_units": "error", 390 | "global_label_dangling": "warning", 391 | "hier_label_mismatch": "error", 392 | "label_dangling": "error", 393 | "lib_symbol_issues": "warning", 394 | "missing_bidi_pin": "warning", 395 | "missing_input_pin": "warning", 396 | "missing_power_pin": "error", 397 | "missing_unit": "warning", 398 | "multiple_net_names": "warning", 399 | "net_not_bus_member": "warning", 400 | "no_connect_connected": "warning", 401 | "no_connect_dangling": "warning", 402 | "pin_not_connected": "error", 403 | "pin_not_driven": "error", 404 | "pin_to_pin": "warning", 405 | "power_pin_not_driven": "error", 406 | "similar_labels": "warning", 407 | "simulation_model_issue": "ignore", 408 | "unannotated": "error", 409 | "unit_value_mismatch": "error", 410 | "unresolved_variable": "error", 411 | "wire_dangling": "error" 412 | } 413 | }, 414 | "libraries": { 415 | "pinned_footprint_libs": [], 416 | "pinned_symbol_libs": [] 417 | }, 418 | "meta": { 419 | "filename": "polykit-x-mainboard.kicad_pro", 420 | "version": 1 421 | }, 422 | "net_settings": { 423 | "classes": [ 424 | { 425 | "bus_width": 12, 426 | "clearance": 0.2, 427 | "diff_pair_gap": 0.25, 428 | "diff_pair_via_gap": 0.25, 429 | "diff_pair_width": 0.2, 430 | "line_style": 0, 431 | "microvia_diameter": 0.3, 432 | "microvia_drill": 0.1, 433 | "name": "Default", 434 | "pcb_color": "rgba(0, 0, 0, 0.000)", 435 | "schematic_color": "rgba(0, 0, 0, 0.000)", 436 | "track_width": 0.25, 437 | "via_diameter": 0.8, 438 | "via_drill": 0.4, 439 | "wire_width": 6 440 | } 441 | ], 442 | "meta": { 443 | "version": 3 444 | }, 445 | "net_colors": null, 446 | "netclass_assignments": null, 447 | "netclass_patterns": [] 448 | }, 449 | "pcbnew": { 450 | "last_paths": { 451 | "gencad": "", 452 | "idf": "", 453 | "netlist": "", 454 | "specctra_dsn": "", 455 | "step": "", 456 | "vrml": "" 457 | }, 458 | "page_layout_descr_file": "" 459 | }, 460 | "schematic": { 461 | "annotate_start_num": 0, 462 | "drawing": { 463 | "dashed_lines_dash_length_ratio": 12.0, 464 | "dashed_lines_gap_length_ratio": 3.0, 465 | "default_line_thickness": 6.0, 466 | "default_text_size": 50.0, 467 | "field_names": [], 468 | "intersheets_ref_own_page": false, 469 | "intersheets_ref_prefix": "", 470 | "intersheets_ref_short": false, 471 | "intersheets_ref_show": false, 472 | "intersheets_ref_suffix": "", 473 | "junction_size_choice": 3, 474 | "label_size_ratio": 0.375, 475 | "pin_symbol_size": 25.0, 476 | "text_offset_ratio": 0.15 477 | }, 478 | "legacy_lib_dir": "", 479 | "legacy_lib_list": [], 480 | "meta": { 481 | "version": 1 482 | }, 483 | "net_format_name": "", 484 | "ngspice": { 485 | "fix_include_paths": true, 486 | "fix_passive_vals": false, 487 | "meta": { 488 | "version": 0 489 | }, 490 | "model_mode": 0, 491 | "workbook_filename": "" 492 | }, 493 | "page_layout_descr_file": "", 494 | "plot_directory": "", 495 | "spice_adjust_passive_values": false, 496 | "spice_current_sheet_as_root": false, 497 | "spice_external_command": "spice \"%I\"", 498 | "spice_model_current_sheet_as_root": true, 499 | "spice_save_all_currents": false, 500 | "spice_save_all_voltages": false, 501 | "subpart_first_id": 65, 502 | "subpart_id_separator": 0 503 | }, 504 | "sheets": [ 505 | [ 506 | "6d8ef847-91be-4f57-9e95-1d23c29552e6", 507 | "" 508 | ], 509 | [ 510 | "cfa4ee65-9b53-4ac0-b8e2-652498f5b0b8", 511 | "VOICE1" 512 | ], 513 | [ 514 | "070219c0-efc0-4554-849d-05fbdec32ecc", 515 | "S&H Pitch" 516 | ], 517 | [ 518 | "f88cf403-0249-4b26-bc3f-511e908638bd", 519 | "S&H CV" 520 | ], 521 | [ 522 | "e35e1dbf-cee5-44db-9b16-87157ea8961f", 523 | "DAC" 524 | ], 525 | [ 526 | "23848368-dbe8-42fa-b981-a883929a1ea0", 527 | "VOICES" 528 | ], 529 | [ 530 | "1e232836-810e-4d02-a8ba-04f9fdcca321", 531 | "S&H FM" 532 | ], 533 | [ 534 | "e2856626-c2f6-45da-a497-0de6601afd53", 535 | "S&H VCA" 536 | ], 537 | [ 538 | "66c32502-b767-42e0-a39c-13d884b5370b", 539 | "VOICE2" 540 | ], 541 | [ 542 | "77408434-0006-4de5-b105-1cc9b0672912", 543 | "VOICE3" 544 | ], 545 | [ 546 | "5e50ba16-a924-4fdf-99a4-0036b082afb9", 547 | "VOICE4" 548 | ], 549 | [ 550 | "5cdde54b-8d72-4386-9669-671d8ca9d282", 551 | "VOICE5" 552 | ], 553 | [ 554 | "89efaefe-f36e-4253-8439-a5696a2deaa3", 555 | "VOICE6" 556 | ], 557 | [ 558 | "d0246c43-aa25-4b5b-9d53-d966becd9519", 559 | "VOICE7" 560 | ], 561 | [ 562 | "0b2fbe69-3514-4a94-9481-98a5ef880150", 563 | "VOICE8" 564 | ], 565 | [ 566 | "251bd8ce-6d4e-4c9a-95b9-81b118ccf90a", 567 | "POWER SUPPLY" 568 | ], 569 | [ 570 | "a992ea11-b51a-448a-a0af-5f6f435e71b7", 571 | "OUTPUT MIXER" 572 | ], 573 | [ 574 | "ddf85734-aa9a-4fc1-9727-70d576b8a0f9", 575 | "IO" 576 | ] 577 | ], 578 | "text_variables": {} 579 | } 580 | -------------------------------------------------------------------------------- /polykit-x-mainboard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polykit/polykit-x-mainboard/5b2efd9dcd7ff055adf5bfd2606aebe1a667ecda/polykit-x-mainboard.pdf -------------------------------------------------------------------------------- /psu.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20230121) (generator eeschema) 2 | 3 | (uuid 7c054e27-cbac-47cc-ad7d-f769deffcd57) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "Polykit-X8 Mainboard") 9 | (date "2024-01-14") 10 | (rev "v0.0.2") 11 | (company "Jan Knipper") 12 | (comment 1 "github.com/polykit") 13 | ) 14 | 15 | (lib_symbols 16 | (symbol "Connector_Generic:Conn_02x08_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 17 | (property "Reference" "J" (at 1.27 10.16 0) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Value" "Conn_02x08_Odd_Even" (at 1.27 -12.7 0) 21 | (effects (font (size 1.27 1.27))) 22 | ) 23 | (property "Footprint" "" (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "Datasheet" "~" (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_keywords" "connector" (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_description" "Generic connector, double row, 02x08, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0) 36 | (effects (font (size 1.27 1.27)) hide) 37 | ) 38 | (symbol "Conn_02x08_Odd_Even_1_1" 39 | (rectangle (start -1.27 -10.033) (end 0 -10.287) 40 | (stroke (width 0.1524) (type default)) 41 | (fill (type none)) 42 | ) 43 | (rectangle (start -1.27 -7.493) (end 0 -7.747) 44 | (stroke (width 0.1524) (type default)) 45 | (fill (type none)) 46 | ) 47 | (rectangle (start -1.27 -4.953) (end 0 -5.207) 48 | (stroke (width 0.1524) (type default)) 49 | (fill (type none)) 50 | ) 51 | (rectangle (start -1.27 -2.413) (end 0 -2.667) 52 | (stroke (width 0.1524) (type default)) 53 | (fill (type none)) 54 | ) 55 | (rectangle (start -1.27 0.127) (end 0 -0.127) 56 | (stroke (width 0.1524) (type default)) 57 | (fill (type none)) 58 | ) 59 | (rectangle (start -1.27 2.667) (end 0 2.413) 60 | (stroke (width 0.1524) (type default)) 61 | (fill (type none)) 62 | ) 63 | (rectangle (start -1.27 5.207) (end 0 4.953) 64 | (stroke (width 0.1524) (type default)) 65 | (fill (type none)) 66 | ) 67 | (rectangle (start -1.27 7.747) (end 0 7.493) 68 | (stroke (width 0.1524) (type default)) 69 | (fill (type none)) 70 | ) 71 | (rectangle (start -1.27 8.89) (end 3.81 -11.43) 72 | (stroke (width 0.254) (type default)) 73 | (fill (type background)) 74 | ) 75 | (rectangle (start 3.81 -10.033) (end 2.54 -10.287) 76 | (stroke (width 0.1524) (type default)) 77 | (fill (type none)) 78 | ) 79 | (rectangle (start 3.81 -7.493) (end 2.54 -7.747) 80 | (stroke (width 0.1524) (type default)) 81 | (fill (type none)) 82 | ) 83 | (rectangle (start 3.81 -4.953) (end 2.54 -5.207) 84 | (stroke (width 0.1524) (type default)) 85 | (fill (type none)) 86 | ) 87 | (rectangle (start 3.81 -2.413) (end 2.54 -2.667) 88 | (stroke (width 0.1524) (type default)) 89 | (fill (type none)) 90 | ) 91 | (rectangle (start 3.81 0.127) (end 2.54 -0.127) 92 | (stroke (width 0.1524) (type default)) 93 | (fill (type none)) 94 | ) 95 | (rectangle (start 3.81 2.667) (end 2.54 2.413) 96 | (stroke (width 0.1524) (type default)) 97 | (fill (type none)) 98 | ) 99 | (rectangle (start 3.81 5.207) (end 2.54 4.953) 100 | (stroke (width 0.1524) (type default)) 101 | (fill (type none)) 102 | ) 103 | (rectangle (start 3.81 7.747) (end 2.54 7.493) 104 | (stroke (width 0.1524) (type default)) 105 | (fill (type none)) 106 | ) 107 | (pin passive line (at -5.08 7.62 0) (length 3.81) 108 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 109 | (number "1" (effects (font (size 1.27 1.27)))) 110 | ) 111 | (pin passive line (at 7.62 -2.54 180) (length 3.81) 112 | (name "Pin_10" (effects (font (size 1.27 1.27)))) 113 | (number "10" (effects (font (size 1.27 1.27)))) 114 | ) 115 | (pin passive line (at -5.08 -5.08 0) (length 3.81) 116 | (name "Pin_11" (effects (font (size 1.27 1.27)))) 117 | (number "11" (effects (font (size 1.27 1.27)))) 118 | ) 119 | (pin passive line (at 7.62 -5.08 180) (length 3.81) 120 | (name "Pin_12" (effects (font (size 1.27 1.27)))) 121 | (number "12" (effects (font (size 1.27 1.27)))) 122 | ) 123 | (pin passive line (at -5.08 -7.62 0) (length 3.81) 124 | (name "Pin_13" (effects (font (size 1.27 1.27)))) 125 | (number "13" (effects (font (size 1.27 1.27)))) 126 | ) 127 | (pin passive line (at 7.62 -7.62 180) (length 3.81) 128 | (name "Pin_14" (effects (font (size 1.27 1.27)))) 129 | (number "14" (effects (font (size 1.27 1.27)))) 130 | ) 131 | (pin passive line (at -5.08 -10.16 0) (length 3.81) 132 | (name "Pin_15" (effects (font (size 1.27 1.27)))) 133 | (number "15" (effects (font (size 1.27 1.27)))) 134 | ) 135 | (pin passive line (at 7.62 -10.16 180) (length 3.81) 136 | (name "Pin_16" (effects (font (size 1.27 1.27)))) 137 | (number "16" (effects (font (size 1.27 1.27)))) 138 | ) 139 | (pin passive line (at 7.62 7.62 180) (length 3.81) 140 | (name "Pin_2" (effects (font (size 1.27 1.27)))) 141 | (number "2" (effects (font (size 1.27 1.27)))) 142 | ) 143 | (pin passive line (at -5.08 5.08 0) (length 3.81) 144 | (name "Pin_3" (effects (font (size 1.27 1.27)))) 145 | (number "3" (effects (font (size 1.27 1.27)))) 146 | ) 147 | (pin passive line (at 7.62 5.08 180) (length 3.81) 148 | (name "Pin_4" (effects (font (size 1.27 1.27)))) 149 | (number "4" (effects (font (size 1.27 1.27)))) 150 | ) 151 | (pin passive line (at -5.08 2.54 0) (length 3.81) 152 | (name "Pin_5" (effects (font (size 1.27 1.27)))) 153 | (number "5" (effects (font (size 1.27 1.27)))) 154 | ) 155 | (pin passive line (at 7.62 2.54 180) (length 3.81) 156 | (name "Pin_6" (effects (font (size 1.27 1.27)))) 157 | (number "6" (effects (font (size 1.27 1.27)))) 158 | ) 159 | (pin passive line (at -5.08 0 0) (length 3.81) 160 | (name "Pin_7" (effects (font (size 1.27 1.27)))) 161 | (number "7" (effects (font (size 1.27 1.27)))) 162 | ) 163 | (pin passive line (at 7.62 0 180) (length 3.81) 164 | (name "Pin_8" (effects (font (size 1.27 1.27)))) 165 | (number "8" (effects (font (size 1.27 1.27)))) 166 | ) 167 | (pin passive line (at -5.08 -2.54 0) (length 3.81) 168 | (name "Pin_9" (effects (font (size 1.27 1.27)))) 169 | (number "9" (effects (font (size 1.27 1.27)))) 170 | ) 171 | ) 172 | ) 173 | (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 174 | (property "Reference" "C" (at 0.635 2.54 0) 175 | (effects (font (size 1.27 1.27)) (justify left)) 176 | ) 177 | (property "Value" "C_Polarized" (at 0.635 -2.54 0) 178 | (effects (font (size 1.27 1.27)) (justify left)) 179 | ) 180 | (property "Footprint" "" (at 0.9652 -3.81 0) 181 | (effects (font (size 1.27 1.27)) hide) 182 | ) 183 | (property "Datasheet" "~" (at 0 0 0) 184 | (effects (font (size 1.27 1.27)) hide) 185 | ) 186 | (property "ki_keywords" "cap capacitor" (at 0 0 0) 187 | (effects (font (size 1.27 1.27)) hide) 188 | ) 189 | (property "ki_description" "Polarized capacitor" (at 0 0 0) 190 | (effects (font (size 1.27 1.27)) hide) 191 | ) 192 | (property "ki_fp_filters" "CP_*" (at 0 0 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (symbol "C_Polarized_0_1" 196 | (rectangle (start -2.286 0.508) (end 2.286 1.016) 197 | (stroke (width 0) (type default)) 198 | (fill (type none)) 199 | ) 200 | (polyline 201 | (pts 202 | (xy -1.778 2.286) 203 | (xy -0.762 2.286) 204 | ) 205 | (stroke (width 0) (type default)) 206 | (fill (type none)) 207 | ) 208 | (polyline 209 | (pts 210 | (xy -1.27 2.794) 211 | (xy -1.27 1.778) 212 | ) 213 | (stroke (width 0) (type default)) 214 | (fill (type none)) 215 | ) 216 | (rectangle (start 2.286 -0.508) (end -2.286 -1.016) 217 | (stroke (width 0) (type default)) 218 | (fill (type outline)) 219 | ) 220 | ) 221 | (symbol "C_Polarized_1_1" 222 | (pin passive line (at 0 3.81 270) (length 2.794) 223 | (name "~" (effects (font (size 1.27 1.27)))) 224 | (number "1" (effects (font (size 1.27 1.27)))) 225 | ) 226 | (pin passive line (at 0 -3.81 90) (length 2.794) 227 | (name "~" (effects (font (size 1.27 1.27)))) 228 | (number "2" (effects (font (size 1.27 1.27)))) 229 | ) 230 | ) 231 | ) 232 | (symbol "Regulator_Linear:L7905" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 233 | (property "Reference" "U" (at -3.81 -3.175 0) 234 | (effects (font (size 1.27 1.27))) 235 | ) 236 | (property "Value" "L7905" (at 0 -3.175 0) 237 | (effects (font (size 1.27 1.27)) (justify left)) 238 | ) 239 | (property "Footprint" "" (at 0 -5.08 0) 240 | (effects (font (size 1.27 1.27) italic) hide) 241 | ) 242 | (property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/c9/16/86/41/c7/2b/45/f2/CD00000450.pdf/files/CD00000450.pdf/jcr:content/translations/en.CD00000450.pdf" (at 0 0 0) 243 | (effects (font (size 1.27 1.27)) hide) 244 | ) 245 | (property "ki_keywords" "Voltage Regulator 1.5A Negative" (at 0 0 0) 246 | (effects (font (size 1.27 1.27)) hide) 247 | ) 248 | (property "ki_description" "Negative 1.5A 35V Linear Regulator, Fixed Output -5V, TO-220/TO-263" (at 0 0 0) 249 | (effects (font (size 1.27 1.27)) hide) 250 | ) 251 | (property "ki_fp_filters" "TO?220* TO?263*" (at 0 0 0) 252 | (effects (font (size 1.27 1.27)) hide) 253 | ) 254 | (symbol "L7905_0_1" 255 | (rectangle (start -5.08 5.08) (end 5.08 -1.905) 256 | (stroke (width 0.254) (type default)) 257 | (fill (type background)) 258 | ) 259 | ) 260 | (symbol "L7905_1_1" 261 | (pin power_in line (at 0 7.62 270) (length 2.54) 262 | (name "GND" (effects (font (size 1.27 1.27)))) 263 | (number "1" (effects (font (size 1.27 1.27)))) 264 | ) 265 | (pin power_in line (at -7.62 0 0) (length 2.54) 266 | (name "VI" (effects (font (size 1.27 1.27)))) 267 | (number "2" (effects (font (size 1.27 1.27)))) 268 | ) 269 | (pin power_out line (at 7.62 0 180) (length 2.54) 270 | (name "VO" (effects (font (size 1.27 1.27)))) 271 | (number "3" (effects (font (size 1.27 1.27)))) 272 | ) 273 | ) 274 | ) 275 | (symbol "power:+12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 276 | (property "Reference" "#PWR" (at 0 -3.81 0) 277 | (effects (font (size 1.27 1.27)) hide) 278 | ) 279 | (property "Value" "+12V" (at 0 3.556 0) 280 | (effects (font (size 1.27 1.27))) 281 | ) 282 | (property "Footprint" "" (at 0 0 0) 283 | (effects (font (size 1.27 1.27)) hide) 284 | ) 285 | (property "Datasheet" "" (at 0 0 0) 286 | (effects (font (size 1.27 1.27)) hide) 287 | ) 288 | (property "ki_keywords" "global power" (at 0 0 0) 289 | (effects (font (size 1.27 1.27)) hide) 290 | ) 291 | (property "ki_description" "Power symbol creates a global label with name \"+12V\"" (at 0 0 0) 292 | (effects (font (size 1.27 1.27)) hide) 293 | ) 294 | (symbol "+12V_0_1" 295 | (polyline 296 | (pts 297 | (xy -0.762 1.27) 298 | (xy 0 2.54) 299 | ) 300 | (stroke (width 0) (type default)) 301 | (fill (type none)) 302 | ) 303 | (polyline 304 | (pts 305 | (xy 0 0) 306 | (xy 0 2.54) 307 | ) 308 | (stroke (width 0) (type default)) 309 | (fill (type none)) 310 | ) 311 | (polyline 312 | (pts 313 | (xy 0 2.54) 314 | (xy 0.762 1.27) 315 | ) 316 | (stroke (width 0) (type default)) 317 | (fill (type none)) 318 | ) 319 | ) 320 | (symbol "+12V_1_1" 321 | (pin power_in line (at 0 0 90) (length 0) hide 322 | (name "+12V" (effects (font (size 1.27 1.27)))) 323 | (number "1" (effects (font (size 1.27 1.27)))) 324 | ) 325 | ) 326 | ) 327 | (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 328 | (property "Reference" "#PWR" (at 0 -3.81 0) 329 | (effects (font (size 1.27 1.27)) hide) 330 | ) 331 | (property "Value" "+5V" (at 0 3.556 0) 332 | (effects (font (size 1.27 1.27))) 333 | ) 334 | (property "Footprint" "" (at 0 0 0) 335 | (effects (font (size 1.27 1.27)) hide) 336 | ) 337 | (property "Datasheet" "" (at 0 0 0) 338 | (effects (font (size 1.27 1.27)) hide) 339 | ) 340 | (property "ki_keywords" "global power" (at 0 0 0) 341 | (effects (font (size 1.27 1.27)) hide) 342 | ) 343 | (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0) 344 | (effects (font (size 1.27 1.27)) hide) 345 | ) 346 | (symbol "+5V_0_1" 347 | (polyline 348 | (pts 349 | (xy -0.762 1.27) 350 | (xy 0 2.54) 351 | ) 352 | (stroke (width 0) (type default)) 353 | (fill (type none)) 354 | ) 355 | (polyline 356 | (pts 357 | (xy 0 0) 358 | (xy 0 2.54) 359 | ) 360 | (stroke (width 0) (type default)) 361 | (fill (type none)) 362 | ) 363 | (polyline 364 | (pts 365 | (xy 0 2.54) 366 | (xy 0.762 1.27) 367 | ) 368 | (stroke (width 0) (type default)) 369 | (fill (type none)) 370 | ) 371 | ) 372 | (symbol "+5V_1_1" 373 | (pin power_in line (at 0 0 90) (length 0) hide 374 | (name "+5V" (effects (font (size 1.27 1.27)))) 375 | (number "1" (effects (font (size 1.27 1.27)))) 376 | ) 377 | ) 378 | ) 379 | (symbol "power:-12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 380 | (property "Reference" "#PWR" (at 0 2.54 0) 381 | (effects (font (size 1.27 1.27)) hide) 382 | ) 383 | (property "Value" "-12V" (at 0 3.81 0) 384 | (effects (font (size 1.27 1.27))) 385 | ) 386 | (property "Footprint" "" (at 0 0 0) 387 | (effects (font (size 1.27 1.27)) hide) 388 | ) 389 | (property "Datasheet" "" (at 0 0 0) 390 | (effects (font (size 1.27 1.27)) hide) 391 | ) 392 | (property "ki_keywords" "global power" (at 0 0 0) 393 | (effects (font (size 1.27 1.27)) hide) 394 | ) 395 | (property "ki_description" "Power symbol creates a global label with name \"-12V\"" (at 0 0 0) 396 | (effects (font (size 1.27 1.27)) hide) 397 | ) 398 | (symbol "-12V_0_0" 399 | (pin power_in line (at 0 0 90) (length 0) hide 400 | (name "-12V" (effects (font (size 1.27 1.27)))) 401 | (number "1" (effects (font (size 1.27 1.27)))) 402 | ) 403 | ) 404 | (symbol "-12V_0_1" 405 | (polyline 406 | (pts 407 | (xy 0 0) 408 | (xy 0 1.27) 409 | (xy 0.762 1.27) 410 | (xy 0 2.54) 411 | (xy -0.762 1.27) 412 | (xy 0 1.27) 413 | ) 414 | (stroke (width 0) (type default)) 415 | (fill (type outline)) 416 | ) 417 | ) 418 | ) 419 | (symbol "power:-5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 420 | (property "Reference" "#PWR" (at 0 2.54 0) 421 | (effects (font (size 1.27 1.27)) hide) 422 | ) 423 | (property "Value" "-5V" (at 0 3.81 0) 424 | (effects (font (size 1.27 1.27))) 425 | ) 426 | (property "Footprint" "" (at 0 0 0) 427 | (effects (font (size 1.27 1.27)) hide) 428 | ) 429 | (property "Datasheet" "" (at 0 0 0) 430 | (effects (font (size 1.27 1.27)) hide) 431 | ) 432 | (property "ki_keywords" "global power" (at 0 0 0) 433 | (effects (font (size 1.27 1.27)) hide) 434 | ) 435 | (property "ki_description" "Power symbol creates a global label with name \"-5V\"" (at 0 0 0) 436 | (effects (font (size 1.27 1.27)) hide) 437 | ) 438 | (symbol "-5V_0_0" 439 | (pin power_in line (at 0 0 90) (length 0) hide 440 | (name "-5V" (effects (font (size 1.27 1.27)))) 441 | (number "1" (effects (font (size 1.27 1.27)))) 442 | ) 443 | ) 444 | (symbol "-5V_0_1" 445 | (polyline 446 | (pts 447 | (xy 0 0) 448 | (xy 0 1.27) 449 | (xy 0.762 1.27) 450 | (xy 0 2.54) 451 | (xy -0.762 1.27) 452 | (xy 0 1.27) 453 | ) 454 | (stroke (width 0) (type default)) 455 | (fill (type outline)) 456 | ) 457 | ) 458 | ) 459 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 460 | (property "Reference" "#PWR" (at 0 -6.35 0) 461 | (effects (font (size 1.27 1.27)) hide) 462 | ) 463 | (property "Value" "GND" (at 0 -3.81 0) 464 | (effects (font (size 1.27 1.27))) 465 | ) 466 | (property "Footprint" "" (at 0 0 0) 467 | (effects (font (size 1.27 1.27)) hide) 468 | ) 469 | (property "Datasheet" "" (at 0 0 0) 470 | (effects (font (size 1.27 1.27)) hide) 471 | ) 472 | (property "ki_keywords" "global power" (at 0 0 0) 473 | (effects (font (size 1.27 1.27)) hide) 474 | ) 475 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) 476 | (effects (font (size 1.27 1.27)) hide) 477 | ) 478 | (symbol "GND_0_1" 479 | (polyline 480 | (pts 481 | (xy 0 0) 482 | (xy 0 -1.27) 483 | (xy 1.27 -1.27) 484 | (xy 0 -2.54) 485 | (xy -1.27 -1.27) 486 | (xy 0 -1.27) 487 | ) 488 | (stroke (width 0) (type default)) 489 | (fill (type none)) 490 | ) 491 | ) 492 | (symbol "GND_1_1" 493 | (pin power_in line (at 0 0 270) (length 0) hide 494 | (name "GND" (effects (font (size 1.27 1.27)))) 495 | (number "1" (effects (font (size 1.27 1.27)))) 496 | ) 497 | ) 498 | ) 499 | ) 500 | 501 | (junction (at 190.5 77.47) (diameter 0) (color 0 0 0 0) 502 | (uuid 10101abb-7395-4534-8fca-0dedc050f36d) 503 | ) 504 | (junction (at 80.01 77.47) (diameter 0) (color 0 0 0 0) 505 | (uuid 45cfc00e-84f2-4241-9e50-60f6e1ebe331) 506 | ) 507 | (junction (at 92.71 74.93) (diameter 0) (color 0 0 0 0) 508 | (uuid 465ae18f-b49e-41f7-98c1-108583095696) 509 | ) 510 | (junction (at 92.71 77.47) (diameter 0) (color 0 0 0 0) 511 | (uuid 516c317c-8354-4062-bd43-416a358fc88e) 512 | ) 513 | (junction (at 80.01 74.93) (diameter 0) (color 0 0 0 0) 514 | (uuid 85346758-74dd-4265-bbb0-7bac9aa3c285) 515 | ) 516 | (junction (at 92.71 80.01) (diameter 0) (color 0 0 0 0) 517 | (uuid 85f3800d-57b1-41e8-9aa5-f8944e217d14) 518 | ) 519 | (junction (at 80.01 69.85) (diameter 0) (color 0 0 0 0) 520 | (uuid 9f4f760d-e3e1-4ff1-8885-853f5625e6b0) 521 | ) 522 | (junction (at 80.01 80.01) (diameter 0) (color 0 0 0 0) 523 | (uuid a4416774-2cb0-452d-aabc-b9f21bcc5c33) 524 | ) 525 | (junction (at 100.33 90.17) (diameter 0) (color 0 0 0 0) 526 | (uuid a9880af6-10d3-4888-841b-5a1f7804b48f) 527 | ) 528 | (junction (at 92.71 82.55) (diameter 0) (color 0 0 0 0) 529 | (uuid c7ffa820-d21c-4435-a8e2-b06f9c6d8e58) 530 | ) 531 | (junction (at 80.01 72.39) (diameter 0) (color 0 0 0 0) 532 | (uuid c8410610-9ec5-46d4-97ab-d5936a778a93) 533 | ) 534 | (junction (at 66.04 72.39) (diameter 0) (color 0 0 0 0) 535 | (uuid e7d14932-a65a-4009-90e1-e9af1363a53b) 536 | ) 537 | (junction (at 72.39 69.85) (diameter 0) (color 0 0 0 0) 538 | (uuid f69ea4bf-6325-462d-a288-5080e58ed591) 539 | ) 540 | 541 | (wire (pts (xy 80.01 72.39) (xy 92.71 72.39)) 542 | (stroke (width 0) (type default)) 543 | (uuid 01e4ae7f-c6d2-44a3-a9fd-0ff881ffe6a1) 544 | ) 545 | (wire (pts (xy 190.5 87.63) (xy 190.5 91.44)) 546 | (stroke (width 0) (type default)) 547 | (uuid 0640645e-8206-43bb-a969-2ade3ebe37c2) 548 | ) 549 | (wire (pts (xy 66.04 72.39) (xy 66.04 93.98)) 550 | (stroke (width 0) (type default)) 551 | (uuid 069b0e8a-d486-46a8-8d81-36b222d41f1e) 552 | ) 553 | (wire (pts (xy 190.5 77.47) (xy 199.39 77.47)) 554 | (stroke (width 0) (type default)) 555 | (uuid 0776c91d-a3a8-4a00-b858-4f0f28984839) 556 | ) 557 | (wire (pts (xy 106.68 77.47) (xy 92.71 77.47)) 558 | (stroke (width 0) (type default)) 559 | (uuid 11311963-53d0-43f9-b842-af736d4f99df) 560 | ) 561 | (wire (pts (xy 100.33 90.17) (xy 91.44 90.17)) 562 | (stroke (width 0) (type default)) 563 | (uuid 21092d48-c5e9-465c-bb9b-6203efa0f97b) 564 | ) 565 | (wire (pts (xy 72.39 54.61) (xy 72.39 69.85)) 566 | (stroke (width 0) (type default)) 567 | (uuid 27c9efb2-e2ca-485b-baa2-5a7da298a618) 568 | ) 569 | (wire (pts (xy 72.39 69.85) (xy 72.39 93.98)) 570 | (stroke (width 0) (type default)) 571 | (uuid 328dcedb-57a8-410e-8876-68e0ff6ee8ee) 572 | ) 573 | (wire (pts (xy 66.04 72.39) (xy 80.01 72.39)) 574 | (stroke (width 0) (type default)) 575 | (uuid 362961dc-a1ed-4530-aa05-f6436c09efe9) 576 | ) 577 | (wire (pts (xy 80.01 74.93) (xy 92.71 74.93)) 578 | (stroke (width 0) (type default)) 579 | (uuid 3b0be088-6c99-456c-bf0f-4d6c0b08b795) 580 | ) 581 | (wire (pts (xy 66.04 54.61) (xy 66.04 72.39)) 582 | (stroke (width 0) (type default)) 583 | (uuid 42103e37-d16c-460e-8764-4a4eb16f5107) 584 | ) 585 | (wire (pts (xy 80.01 74.93) (xy 80.01 77.47)) 586 | (stroke (width 0) (type default)) 587 | (uuid 5a912a8a-b487-4417-9e3d-0e577388d31d) 588 | ) 589 | (wire (pts (xy 92.71 77.47) (xy 92.71 80.01)) 590 | (stroke (width 0) (type default)) 591 | (uuid 63e543d6-41bb-4254-966d-2ca47341f801) 592 | ) 593 | (wire (pts (xy 190.5 77.47) (xy 190.5 80.01)) 594 | (stroke (width 0) (type default)) 595 | (uuid 681630e8-6015-45ee-bc40-4cd9ab8fec22) 596 | ) 597 | (wire (pts (xy 106.68 77.47) (xy 106.68 105.41)) 598 | (stroke (width 0) (type default)) 599 | (uuid 69a7596a-5e2d-4a00-b366-1165a28ddd04) 600 | ) 601 | (wire (pts (xy 91.44 90.17) (xy 91.44 93.98)) 602 | (stroke (width 0) (type default)) 603 | (uuid 7eeb45c3-5b12-407b-b120-7a20ae1d1430) 604 | ) 605 | (wire (pts (xy 167.64 77.47) (xy 158.75 77.47)) 606 | (stroke (width 0) (type default)) 607 | (uuid 81196e3e-ff98-4e29-bcf8-b031357cb3ca) 608 | ) 609 | (wire (pts (xy 182.88 77.47) (xy 190.5 77.47)) 610 | (stroke (width 0) (type default)) 611 | (uuid 82a6bcac-14aa-4d4a-bbd3-a06c0154e3ac) 612 | ) 613 | (wire (pts (xy 80.01 80.01) (xy 80.01 77.47)) 614 | (stroke (width 0) (type default)) 615 | (uuid 892bbbbe-84d2-4c4a-9011-fc229b061889) 616 | ) 617 | (wire (pts (xy 175.26 85.09) (xy 175.26 91.44)) 618 | (stroke (width 0) (type default)) 619 | (uuid 8e7a098f-f1d7-49a6-bc95-9a478e95c5b2) 620 | ) 621 | (wire (pts (xy 66.04 101.6) (xy 66.04 105.41)) 622 | (stroke (width 0) (type default)) 623 | (uuid 931fc6bb-7c60-4ea3-8c9f-5a54f04f1f99) 624 | ) 625 | (wire (pts (xy 199.39 77.47) (xy 199.39 91.44)) 626 | (stroke (width 0) (type default)) 627 | (uuid 9b42c17c-b2cc-41b2-b09e-f2c12f58c12b) 628 | ) 629 | (wire (pts (xy 92.71 74.93) (xy 92.71 77.47)) 630 | (stroke (width 0) (type default)) 631 | (uuid aa166361-b3ed-4f1c-a8de-81c50e81d8bc) 632 | ) 633 | (wire (pts (xy 158.75 77.47) (xy 158.75 91.44)) 634 | (stroke (width 0) (type default)) 635 | (uuid b1153a0a-92a1-4000-b319-0833992498b1) 636 | ) 637 | (wire (pts (xy 92.71 82.55) (xy 100.33 82.55)) 638 | (stroke (width 0) (type default)) 639 | (uuid b82d3ae2-4013-4a45-a40d-6a2a89f9791c) 640 | ) 641 | (wire (pts (xy 100.33 82.55) (xy 100.33 90.17)) 642 | (stroke (width 0) (type default)) 643 | (uuid c47ad9ce-6324-4206-8f70-200e63a7a6d0) 644 | ) 645 | (wire (pts (xy 80.01 77.47) (xy 92.71 77.47)) 646 | (stroke (width 0) (type default)) 647 | (uuid de180cd1-0cc9-4f91-ad84-79ac0cd175dd) 648 | ) 649 | (wire (pts (xy 80.01 69.85) (xy 92.71 69.85)) 650 | (stroke (width 0) (type default)) 651 | (uuid e007eb7d-09c7-4126-9030-96e21944e912) 652 | ) 653 | (wire (pts (xy 80.01 80.01) (xy 92.71 80.01)) 654 | (stroke (width 0) (type default)) 655 | (uuid e0ccc7ec-1403-47c1-8405-a867675c5042) 656 | ) 657 | (wire (pts (xy 72.39 69.85) (xy 80.01 69.85)) 658 | (stroke (width 0) (type default)) 659 | (uuid e72b8d6e-0fb4-4863-af36-1ed752cbdd21) 660 | ) 661 | (wire (pts (xy 100.33 90.17) (xy 100.33 105.41)) 662 | (stroke (width 0) (type default)) 663 | (uuid ea918f96-8c47-4a33-911b-8e0fc12ebbd7) 664 | ) 665 | (wire (pts (xy 80.01 82.55) (xy 92.71 82.55)) 666 | (stroke (width 0) (type default)) 667 | (uuid f16ca636-f1cf-44f0-9d28-1a2c1768d0a3) 668 | ) 669 | (wire (pts (xy 91.44 101.6) (xy 91.44 105.41)) 670 | (stroke (width 0) (type default)) 671 | (uuid f86a99a2-1fd1-46a3-9896-738748bddcec) 672 | ) 673 | (wire (pts (xy 72.39 101.6) (xy 72.39 105.41)) 674 | (stroke (width 0) (type default)) 675 | (uuid ff52d7cb-4064-41dc-b27b-a219fe044b3e) 676 | ) 677 | 678 | (symbol (lib_id "power:GND") (at 106.68 105.41 0) (unit 1) 679 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 680 | (uuid 0297a87f-504d-49d8-886b-9a09c228528e) 681 | (property "Reference" "#PWR0150" (at 106.68 111.76 0) 682 | (effects (font (size 1.27 1.27)) hide) 683 | ) 684 | (property "Value" "GND" (at 106.68 110.49 0) 685 | (effects (font (size 1.27 1.27))) 686 | ) 687 | (property "Footprint" "" (at 106.68 105.41 0) 688 | (effects (font (size 1.27 1.27)) hide) 689 | ) 690 | (property "Datasheet" "" (at 106.68 105.41 0) 691 | (effects (font (size 1.27 1.27)) hide) 692 | ) 693 | (pin "1" (uuid 16be2466-24e6-45a3-a9be-1d14d3fde9a0)) 694 | (instances 695 | (project "polykit-x-mainboard" 696 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 697 | (reference "#PWR0150") (unit 1) 698 | ) 699 | ) 700 | ) 701 | ) 702 | 703 | (symbol (lib_id "power:+5V") (at 72.39 54.61 0) (unit 1) 704 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 705 | (uuid 0606f287-1fa2-4e02-8f1d-f6325892ef6d) 706 | (property "Reference" "#PWR0146" (at 72.39 58.42 0) 707 | (effects (font (size 1.27 1.27)) hide) 708 | ) 709 | (property "Value" "+5V" (at 72.39 49.53 0) 710 | (effects (font (size 1.27 1.27))) 711 | ) 712 | (property "Footprint" "" (at 72.39 54.61 0) 713 | (effects (font (size 1.27 1.27)) hide) 714 | ) 715 | (property "Datasheet" "" (at 72.39 54.61 0) 716 | (effects (font (size 1.27 1.27)) hide) 717 | ) 718 | (pin "1" (uuid a26a1174-9ace-491b-a080-757be20a51ec)) 719 | (instances 720 | (project "polykit-x-mainboard" 721 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 722 | (reference "#PWR0146") (unit 1) 723 | ) 724 | ) 725 | ) 726 | ) 727 | 728 | (symbol (lib_id "power:GND") (at 190.5 91.44 0) (unit 1) 729 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 730 | (uuid 13a53af9-e41e-40ba-81b4-b25331246142) 731 | (property "Reference" "#PWR0153" (at 190.5 97.79 0) 732 | (effects (font (size 1.27 1.27)) hide) 733 | ) 734 | (property "Value" "GND" (at 190.5 96.52 0) 735 | (effects (font (size 1.27 1.27))) 736 | ) 737 | (property "Footprint" "" (at 190.5 91.44 0) 738 | (effects (font (size 1.27 1.27)) hide) 739 | ) 740 | (property "Datasheet" "" (at 190.5 91.44 0) 741 | (effects (font (size 1.27 1.27)) hide) 742 | ) 743 | (pin "1" (uuid 76397b4a-20cd-4b15-aee6-33c7e2db6ff0)) 744 | (instances 745 | (project "polykit-x-mainboard" 746 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 747 | (reference "#PWR0153") (unit 1) 748 | ) 749 | ) 750 | ) 751 | ) 752 | 753 | (symbol (lib_id "Device:C_Polarized") (at 72.39 97.79 0) (unit 1) 754 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 755 | (uuid 2ba39f71-9d7b-4dc3-b34a-d5b444c7fdbe) 756 | (property "Reference" "C61" (at 76.2 95.6309 0) 757 | (effects (font (size 1.27 1.27)) (justify left)) 758 | ) 759 | (property "Value" "100u" (at 76.2 98.1709 0) 760 | (effects (font (size 1.27 1.27)) (justify left)) 761 | ) 762 | (property "Footprint" "Capacitor_SMD:CP_Elec_6.3x7.7" (at 73.3552 101.6 0) 763 | (effects (font (size 1.27 1.27)) hide) 764 | ) 765 | (property "Datasheet" "~" (at 72.39 97.79 0) 766 | (effects (font (size 1.27 1.27)) hide) 767 | ) 768 | (pin "1" (uuid 806b63d1-8dbe-48e6-a26b-6234f5f31a04)) 769 | (pin "2" (uuid 77ad229c-6053-4190-8ceb-b975f11ece35)) 770 | (instances 771 | (project "polykit-x-mainboard" 772 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 773 | (reference "C61") (unit 1) 774 | ) 775 | ) 776 | ) 777 | ) 778 | 779 | (symbol (lib_id "power:GND") (at 72.39 105.41 0) (unit 1) 780 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 781 | (uuid 3c3c0604-ae1c-4094-acf4-2ce364c81cc9) 782 | (property "Reference" "#PWR0147" (at 72.39 111.76 0) 783 | (effects (font (size 1.27 1.27)) hide) 784 | ) 785 | (property "Value" "GND" (at 72.39 110.49 0) 786 | (effects (font (size 1.27 1.27))) 787 | ) 788 | (property "Footprint" "" (at 72.39 105.41 0) 789 | (effects (font (size 1.27 1.27)) hide) 790 | ) 791 | (property "Datasheet" "" (at 72.39 105.41 0) 792 | (effects (font (size 1.27 1.27)) hide) 793 | ) 794 | (pin "1" (uuid 70e48f5a-7651-4270-af1b-7a5c6cc4cf04)) 795 | (instances 796 | (project "polykit-x-mainboard" 797 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 798 | (reference "#PWR0147") (unit 1) 799 | ) 800 | ) 801 | ) 802 | ) 803 | 804 | (symbol (lib_id "power:GND") (at 66.04 105.41 0) (unit 1) 805 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 806 | (uuid 4554ce18-c8d4-449c-afc3-fa9eed59d9c1) 807 | (property "Reference" "#PWR0145" (at 66.04 111.76 0) 808 | (effects (font (size 1.27 1.27)) hide) 809 | ) 810 | (property "Value" "GND" (at 66.04 110.49 0) 811 | (effects (font (size 1.27 1.27))) 812 | ) 813 | (property "Footprint" "" (at 66.04 105.41 0) 814 | (effects (font (size 1.27 1.27)) hide) 815 | ) 816 | (property "Datasheet" "" (at 66.04 105.41 0) 817 | (effects (font (size 1.27 1.27)) hide) 818 | ) 819 | (pin "1" (uuid 888712a5-7916-43dc-a193-1e8259d537fe)) 820 | (instances 821 | (project "polykit-x-mainboard" 822 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 823 | (reference "#PWR0145") (unit 1) 824 | ) 825 | ) 826 | ) 827 | ) 828 | 829 | (symbol (lib_id "Device:C_Polarized") (at 91.44 97.79 180) (unit 1) 830 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 831 | (uuid 4c56416b-407b-4c56-a7eb-1c64ec68ad4c) 832 | (property "Reference" "C62" (at 87.63 97.4089 0) 833 | (effects (font (size 1.27 1.27)) (justify left)) 834 | ) 835 | (property "Value" "100u" (at 87.63 99.9489 0) 836 | (effects (font (size 1.27 1.27)) (justify left)) 837 | ) 838 | (property "Footprint" "Capacitor_SMD:CP_Elec_6.3x7.7" (at 90.4748 93.98 0) 839 | (effects (font (size 1.27 1.27)) hide) 840 | ) 841 | (property "Datasheet" "~" (at 91.44 97.79 0) 842 | (effects (font (size 1.27 1.27)) hide) 843 | ) 844 | (pin "1" (uuid 7ec19a7e-0262-478d-a2bb-42a884a25a69)) 845 | (pin "2" (uuid 3f85e3be-9686-4126-bd9f-e6e8037cb9b5)) 846 | (instances 847 | (project "polykit-x-mainboard" 848 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 849 | (reference "C62") (unit 1) 850 | ) 851 | ) 852 | ) 853 | ) 854 | 855 | (symbol (lib_id "Device:C_Polarized") (at 190.5 83.82 180) (unit 1) 856 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 857 | (uuid 51d207b4-7d33-4fa9-bd32-bff68188d0e9) 858 | (property "Reference" "C63" (at 186.69 83.4389 0) 859 | (effects (font (size 1.27 1.27)) (justify left)) 860 | ) 861 | (property "Value" "100u" (at 186.69 85.9789 0) 862 | (effects (font (size 1.27 1.27)) (justify left)) 863 | ) 864 | (property "Footprint" "Capacitor_SMD:CP_Elec_6.3x7.7" (at 189.5348 80.01 0) 865 | (effects (font (size 1.27 1.27)) hide) 866 | ) 867 | (property "Datasheet" "~" (at 190.5 83.82 0) 868 | (effects (font (size 1.27 1.27)) hide) 869 | ) 870 | (pin "1" (uuid a3f97272-4118-4eed-8bc0-6790986d12f5)) 871 | (pin "2" (uuid 9012dca0-0f56-466d-ab6b-134a0f2a354c)) 872 | (instances 873 | (project "polykit-x-mainboard" 874 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 875 | (reference "C63") (unit 1) 876 | ) 877 | ) 878 | ) 879 | ) 880 | 881 | (symbol (lib_id "Regulator_Linear:L7905") (at 175.26 77.47 0) (mirror x) (unit 1) 882 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 883 | (uuid 7d42a807-aa9f-438b-b09b-f20cf4c5b555) 884 | (property "Reference" "U18" (at 175.26 69.85 0) 885 | (effects (font (size 1.27 1.27))) 886 | ) 887 | (property "Value" "L7905" (at 175.26 72.39 0) 888 | (effects (font (size 1.27 1.27))) 889 | ) 890 | (property "Footprint" "Package_TO_SOT_SMD:TO-263-2" (at 175.26 72.39 0) 891 | (effects (font (size 1.27 1.27) italic) hide) 892 | ) 893 | (property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/c9/16/86/41/c7/2b/45/f2/CD00000450.pdf/files/CD00000450.pdf/jcr:content/translations/en.CD00000450.pdf" (at 175.26 77.47 0) 894 | (effects (font (size 1.27 1.27)) hide) 895 | ) 896 | (pin "1" (uuid 602b1333-2c71-41fb-a704-5150691ccda5)) 897 | (pin "2" (uuid ffb74bf0-bce1-4f7a-93d1-59cf01181815)) 898 | (pin "3" (uuid 6e3915af-42d5-496d-aaa8-07e3a3f6d1e1)) 899 | (instances 900 | (project "polykit-x-mainboard" 901 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 902 | (reference "U18") (unit 1) 903 | ) 904 | ) 905 | ) 906 | ) 907 | 908 | (symbol (lib_id "power:-12V") (at 100.33 105.41 180) (unit 1) 909 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 910 | (uuid 7dc6bd40-b2c4-4b18-8625-cd8aeeae5d51) 911 | (property "Reference" "#PWR0149" (at 100.33 107.95 0) 912 | (effects (font (size 1.27 1.27)) hide) 913 | ) 914 | (property "Value" "-12V" (at 100.33 110.49 0) 915 | (effects (font (size 1.27 1.27))) 916 | ) 917 | (property "Footprint" "" (at 100.33 105.41 0) 918 | (effects (font (size 1.27 1.27)) hide) 919 | ) 920 | (property "Datasheet" "" (at 100.33 105.41 0) 921 | (effects (font (size 1.27 1.27)) hide) 922 | ) 923 | (pin "1" (uuid bba623d1-b069-4cb9-b174-d5110af96bfe)) 924 | (instances 925 | (project "polykit-x-mainboard" 926 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 927 | (reference "#PWR0149") (unit 1) 928 | ) 929 | ) 930 | ) 931 | ) 932 | 933 | (symbol (lib_id "power:-5V") (at 199.39 91.44 180) (unit 1) 934 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 935 | (uuid 829f6ddc-84c7-43b2-807d-8466cb4f84d2) 936 | (property "Reference" "#PWR0154" (at 199.39 93.98 0) 937 | (effects (font (size 1.27 1.27)) hide) 938 | ) 939 | (property "Value" "-5V" (at 199.39 96.52 0) 940 | (effects (font (size 1.27 1.27))) 941 | ) 942 | (property "Footprint" "" (at 199.39 91.44 0) 943 | (effects (font (size 1.27 1.27)) hide) 944 | ) 945 | (property "Datasheet" "" (at 199.39 91.44 0) 946 | (effects (font (size 1.27 1.27)) hide) 947 | ) 948 | (pin "1" (uuid 92b572cb-f75a-48f3-be67-960f479f29e5)) 949 | (instances 950 | (project "polykit-x-mainboard" 951 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 952 | (reference "#PWR0154") (unit 1) 953 | ) 954 | ) 955 | ) 956 | ) 957 | 958 | (symbol (lib_id "power:GND") (at 91.44 105.41 0) (unit 1) 959 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 960 | (uuid 87351ed8-f7a1-42d5-b24a-79ea9070cade) 961 | (property "Reference" "#PWR0148" (at 91.44 111.76 0) 962 | (effects (font (size 1.27 1.27)) hide) 963 | ) 964 | (property "Value" "GND" (at 91.44 110.49 0) 965 | (effects (font (size 1.27 1.27))) 966 | ) 967 | (property "Footprint" "" (at 91.44 105.41 0) 968 | (effects (font (size 1.27 1.27)) hide) 969 | ) 970 | (property "Datasheet" "" (at 91.44 105.41 0) 971 | (effects (font (size 1.27 1.27)) hide) 972 | ) 973 | (pin "1" (uuid 92c299f2-e265-4d8c-982b-9f3c50755bfe)) 974 | (instances 975 | (project "polykit-x-mainboard" 976 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 977 | (reference "#PWR0148") (unit 1) 978 | ) 979 | ) 980 | ) 981 | ) 982 | 983 | (symbol (lib_id "power:GND") (at 175.26 91.44 0) (unit 1) 984 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 985 | (uuid 8a0ce9d9-6979-4911-bef7-5ba62f335686) 986 | (property "Reference" "#PWR0152" (at 175.26 97.79 0) 987 | (effects (font (size 1.27 1.27)) hide) 988 | ) 989 | (property "Value" "GND" (at 175.26 96.52 0) 990 | (effects (font (size 1.27 1.27))) 991 | ) 992 | (property "Footprint" "" (at 175.26 91.44 0) 993 | (effects (font (size 1.27 1.27)) hide) 994 | ) 995 | (property "Datasheet" "" (at 175.26 91.44 0) 996 | (effects (font (size 1.27 1.27)) hide) 997 | ) 998 | (pin "1" (uuid 0f92e66e-7ccd-4933-82e4-5d8c739f8da2)) 999 | (instances 1000 | (project "polykit-x-mainboard" 1001 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 1002 | (reference "#PWR0152") (unit 1) 1003 | ) 1004 | ) 1005 | ) 1006 | ) 1007 | 1008 | (symbol (lib_id "Device:C_Polarized") (at 66.04 97.79 0) (unit 1) 1009 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 1010 | (uuid e0e9d35f-ae77-4fa7-ab5f-3466babdbb39) 1011 | (property "Reference" "C60" (at 62.23 95.6309 0) 1012 | (effects (font (size 1.27 1.27)) (justify right)) 1013 | ) 1014 | (property "Value" "100u" (at 62.23 98.1709 0) 1015 | (effects (font (size 1.27 1.27)) (justify right)) 1016 | ) 1017 | (property "Footprint" "Capacitor_SMD:CP_Elec_6.3x7.7" (at 67.0052 101.6 0) 1018 | (effects (font (size 1.27 1.27)) hide) 1019 | ) 1020 | (property "Datasheet" "~" (at 66.04 97.79 0) 1021 | (effects (font (size 1.27 1.27)) hide) 1022 | ) 1023 | (pin "1" (uuid 077d4fae-e6e1-48ac-a0de-f49696b8b7a1)) 1024 | (pin "2" (uuid 52167019-2b77-409c-88d3-e0b82921f2f6)) 1025 | (instances 1026 | (project "polykit-x-mainboard" 1027 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 1028 | (reference "C60") (unit 1) 1029 | ) 1030 | ) 1031 | ) 1032 | ) 1033 | 1034 | (symbol (lib_id "power:-12V") (at 158.75 91.44 180) (unit 1) 1035 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 1036 | (uuid ee166612-c7dd-4d50-9f62-79db43e1adb1) 1037 | (property "Reference" "#PWR0151" (at 158.75 93.98 0) 1038 | (effects (font (size 1.27 1.27)) hide) 1039 | ) 1040 | (property "Value" "-12V" (at 158.75 96.52 0) 1041 | (effects (font (size 1.27 1.27))) 1042 | ) 1043 | (property "Footprint" "" (at 158.75 91.44 0) 1044 | (effects (font (size 1.27 1.27)) hide) 1045 | ) 1046 | (property "Datasheet" "" (at 158.75 91.44 0) 1047 | (effects (font (size 1.27 1.27)) hide) 1048 | ) 1049 | (pin "1" (uuid ba376d39-affc-4eca-a328-9542983e7de3)) 1050 | (instances 1051 | (project "polykit-x-mainboard" 1052 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 1053 | (reference "#PWR0151") (unit 1) 1054 | ) 1055 | ) 1056 | ) 1057 | ) 1058 | 1059 | (symbol (lib_id "power:+12V") (at 66.04 54.61 0) (unit 1) 1060 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 1061 | (uuid f4fdbec8-8fe2-475c-a000-b6f8aeaf05c4) 1062 | (property "Reference" "#PWR0144" (at 66.04 58.42 0) 1063 | (effects (font (size 1.27 1.27)) hide) 1064 | ) 1065 | (property "Value" "+12V" (at 66.04 49.53 0) 1066 | (effects (font (size 1.27 1.27))) 1067 | ) 1068 | (property "Footprint" "" (at 66.04 54.61 0) 1069 | (effects (font (size 1.27 1.27)) hide) 1070 | ) 1071 | (property "Datasheet" "" (at 66.04 54.61 0) 1072 | (effects (font (size 1.27 1.27)) hide) 1073 | ) 1074 | (pin "1" (uuid 7257e95c-3506-4e6c-ac25-661bc9b5ecb9)) 1075 | (instances 1076 | (project "polykit-x-mainboard" 1077 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 1078 | (reference "#PWR0144") (unit 1) 1079 | ) 1080 | ) 1081 | ) 1082 | ) 1083 | 1084 | (symbol (lib_id "Connector_Generic:Conn_02x08_Odd_Even") (at 87.63 74.93 180) (unit 1) 1085 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 1086 | (uuid fe293510-1f79-4e62-a25c-480c097d93c5) 1087 | (property "Reference" "J1" (at 86.36 58.42 0) 1088 | (effects (font (size 1.27 1.27))) 1089 | ) 1090 | (property "Value" "POWER" (at 86.36 60.96 0) 1091 | (effects (font (size 1.27 1.27))) 1092 | ) 1093 | (property "Footprint" "Connector_IDC:IDC-Header_2x08_P2.54mm_Vertical" (at 87.63 74.93 0) 1094 | (effects (font (size 1.27 1.27)) hide) 1095 | ) 1096 | (property "Datasheet" "~" (at 87.63 74.93 0) 1097 | (effects (font (size 1.27 1.27)) hide) 1098 | ) 1099 | (pin "1" (uuid dc7ae3da-4c4b-4226-9d1a-ada555afc166)) 1100 | (pin "10" (uuid f5d74c33-3347-4218-a799-5845b1a4de19)) 1101 | (pin "11" (uuid 5ae5fed1-7caf-462b-9339-d485d551320c)) 1102 | (pin "12" (uuid 6486f84a-5dd5-45c5-a378-0de6af501530)) 1103 | (pin "13" (uuid 04648882-4127-4bef-95ed-32641c57eeb3)) 1104 | (pin "14" (uuid da160795-8edd-466a-b71d-391bf5563b17)) 1105 | (pin "15" (uuid 9762b8d2-1e1d-4640-96c5-da80c326656c)) 1106 | (pin "16" (uuid 768e4c0d-5c5e-4691-83c0-3e8c0ab67144)) 1107 | (pin "2" (uuid fa15291f-e890-45ca-87fe-a364de6117aa)) 1108 | (pin "3" (uuid f1b81a60-5b99-4d80-82fa-0353c497e2df)) 1109 | (pin "4" (uuid 59fef874-a1ff-4bb2-af5c-e1b2d74d5005)) 1110 | (pin "5" (uuid a02c4452-f59a-42f2-85c2-fee67713394c)) 1111 | (pin "6" (uuid 56e8bac2-32a8-4c09-acea-497600fbac0c)) 1112 | (pin "7" (uuid 23499058-c58c-47c8-8be3-3bb5f1d31820)) 1113 | (pin "8" (uuid 93ddee93-c163-4999-9097-67dfc748415b)) 1114 | (pin "9" (uuid afb76ee5-140b-4806-9a77-c625e2d9d383)) 1115 | (instances 1116 | (project "polykit-x-mainboard" 1117 | (path "/6d8ef847-91be-4f57-9e95-1d23c29552e6/251bd8ce-6d4e-4c9a-95b9-81b118ccf90a" 1118 | (reference "J1") (unit 1) 1119 | ) 1120 | ) 1121 | ) 1122 | ) 1123 | ) 1124 | --------------------------------------------------------------------------------