├── .gitignore ├── LICENSE ├── README.md ├── case ├── vga-adapter-base.stl ├── vga-adapter-fusion360.f3d └── vga-adapter-lid.stl ├── docs ├── Mac DB15 to VGA v1.0.png ├── datasheets │ ├── D1_D2_D3_D4_D5_D6_1N4148W.pdf │ ├── D1_D2_D3_D4_D5_D6_1N914_D-2309448.pdf │ ├── J1_ASS_4888_CO.pdf │ ├── J2_hdxx-sn-25-data-sheet.pdf │ ├── SWA1_SWB1_219.pdf │ └── SWA1_SWB1_ds04-254.pdf ├── discordbanner.png ├── manuals │ ├── MacView_1.png │ ├── MacView_2.png │ ├── MacView_3.png │ └── unimac_82D.jpeg └── tinker_different_sat_rev_600.png ├── gerbers ├── Mac DB15 to VGA MX v1.2.zip ├── Mac DB15 to VGA SM v1.2.zip ├── Mac DB15 to VGA TH v1.0.zip └── Mac DB15 to VGA TH v1.2.zip └── kicad ├── Mac DB15 to VGA MX v1.2.kicad_pcb ├── Mac DB15 to VGA MX v1.2.kicad_prl ├── Mac DB15 to VGA MX v1.2.kicad_pro ├── Mac DB15 to VGA MX v1.2.kicad_sch ├── Mac DB15 to VGA SM v1.2.kicad_pcb ├── Mac DB15 to VGA SM v1.2.kicad_prl ├── Mac DB15 to VGA SM v1.2.kicad_pro ├── Mac DB15 to VGA SM v1.2.kicad_sch ├── Mac DB15 to VGA TH v1.0.kicad_pcb ├── Mac DB15 to VGA TH v1.0.kicad_prl ├── Mac DB15 to VGA TH v1.0.kicad_pro ├── Mac DB15 to VGA TH v1.0.kicad_sch ├── Mac DB15 to VGA TH v1.1.kicad_pcb ├── Mac DB15 to VGA TH v1.1.kicad_prl ├── Mac DB15 to VGA TH v1.1.kicad_pro ├── Mac DB15 to VGA TH v1.1.kicad_sch ├── Mac DB15 to VGA TH v1.2.kicad_pcb ├── Mac DB15 to VGA TH v1.2.kicad_prl ├── Mac DB15 to VGA TH v1.2.kicad_pro ├── Mac DB15 to VGA TH v1.2.kicad_sch ├── fp-lib-table ├── project.pretty ├── SW_DIP_SPSTx08_Slide_9.78x22.5mm_W7.62mm_P2.54mm.kicad_mod ├── cc_by_nc_sa_front_silk_screen.kicad_mod ├── cc_by_nc_sa_small_9mm_front_silk_screen.kicad_mod ├── cc_by_nc_sa_small_front_silk_screen.kicad_mod ├── logo.kicad_mod ├── logo_7_back.kicad_mod ├── logo_7_back_copper.kicad_mod ├── logo_7_back_mask.kicad_mod ├── logo_7_front.kicad_mod ├── logo_7_front_copper.kicad_mod ├── logo_7_front_mask.kicad_mod └── qr_code_github.kicad_mod └── sym-lib-table /.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 | *.sch-bak 10 | *~ 11 | _autosave-* 12 | *.tmp 13 | *-save.pro 14 | *-save.kicad_pcb 15 | fp-info-cache 16 | 17 | # Netlist files (exported from Eeschema) 18 | *.net 19 | 20 | # Autorouter files (exported from Pcbnew) 21 | *.dsn 22 | *.ses 23 | 24 | # Exported BOM files 25 | *.xml 26 | *.csv 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License 2 | 3 | By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. 4 | 5 | 6 | 7 | Section 1 – Definitions. 8 | 9 | a. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. 10 | 11 | b. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. 12 | 13 | c. BY-NC-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License. 14 | 15 | d. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. 16 | 17 | e. Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. 18 | 19 | f. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. 20 | 21 | g. License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution, NonCommercial, and ShareAlike. 22 | 23 | h. Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. 24 | 25 | i. Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. 26 | 27 | j. Licensor means the individual(s) or entity(ies) granting rights under this Public License. 28 | 29 | k. NonCommercial means not primarily intended for or directed towards commercial advantage or monetary compensation. For purposes of this Public License, the exchange of the Licensed Material for other material subject to Copyright and Similar Rights by digital file-sharing or similar means is NonCommercial provided there is no payment of monetary compensation in connection with the exchange. 30 | 31 | l. Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. 32 | 33 | m. Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. 34 | 35 | n. You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. 36 | 37 | 38 | 39 | Section 2 – Scope. 40 | 41 | a. License grant. 42 | 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: 43 | A. reproduce and Share the Licensed Material, in whole or in part, for NonCommercial purposes only; and 44 | B. produce, reproduce, and Share Adapted Material for NonCommercial purposes only. 45 | 46 | 2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. 47 | 3. Term. The term of this Public License is specified in Section 6(a). 48 | 4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. 49 | 5. Downstream recipients. 50 | A. Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. 51 | B. Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply. 52 | C. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. 53 | 6. No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). 54 | 55 | b. Other rights. 56 | 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. 57 | 2. Patent and trademark rights are not licensed under this Public License. 58 | 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties, including when the Licensed Material is used other than for NonCommercial purposes. 59 | 60 | 61 | 62 | Section 3 – License Conditions. 63 | 64 | Your exercise of the Licensed Rights is expressly made subject to the following conditions. 65 | 66 | a. Attribution. 67 | 1. If You Share the Licensed Material (including in modified form), You must: 68 | A. retain the following if it is supplied by the Licensor with the Licensed Material: 69 | i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); 70 | ii. a copyright notice; 71 | iii. a notice that refers to this Public License; 72 | iv. a notice that refers to the disclaimer of warranties; 73 | v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable; 74 | B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and 75 | C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. 76 | 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. 77 | 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. 78 | 79 | b. ShareAlike. 80 | In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply. 81 | 1. The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-NC-SA Compatible License. 82 | 2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material. 83 | 3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply. 84 | 85 | 86 | 87 | Section 4 – Sui Generis Database Rights. 88 | 89 | Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: 90 | 91 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database for NonCommercial purposes only; 92 | 93 | b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and 94 | 95 | c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. 96 | 97 | For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. 98 | 99 | 100 | 101 | Section 5 – Disclaimer of Warranties and Limitation of Liability. 102 | 103 | a. Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. 104 | 105 | b. To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. 106 | 107 | c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. 108 | 109 | 110 | 111 | Section 6 – Term and Termination. 112 | 113 | a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. 114 | 115 | b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: 116 | 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or 117 | 2. upon express reinstatement by the Licensor. 118 | For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. 119 | c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. 120 | 121 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. 122 | 123 | 124 | 125 | Section 7 – Other Terms and Conditions. 126 | 127 | a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. 128 | 129 | b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. 130 | 131 | 132 | 133 | Section 8 – Interpretation. 134 | 135 | a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. 136 | 137 | b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. 138 | 139 | c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. 140 | 141 | d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. 142 | 143 | 144 | 145 | Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” The text of the Creative Commons public licenses is dedicated to the public domain under the CC0 Public Domain Dedication. Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. 146 | 147 | Creative Commons may be contacted at creativecommons.org. 148 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Mac DB15 to VGA v 1.0 2 | 3 | # Mac DB15 to VGA 4 | 5 | This is a classic Macintosh DB15 video out to VGA adapter. It's uses the same dip switch settings as the Sony MacView and Unimac 82D. 6 | 7 | [Dip Switch Settings](docs/manuals) 8 | 9 | 10 | 11 | The newest versions of the adapter, v1.2, come in 3 flavors now. 12 | 13 | **TH** is all through-hole components like v1.0. \ 14 | **MX** has SMD diodes. The rest are through-hole components. \ 15 | **SM** has SMD diodes and DIP switches. The rest are through-hole components. 16 | 17 | 18 | 19 | ## Bill of Materials 20 | 21 | ### v1.0 TH and v1.2 TH 22 | 23 | | Quantity | Description | Designators | Product Number | Datasheet | 24 | | :------- | -------------------------- | ---------------------- | ---------------- | ------------------------------------------------------------ | 25 | | 1 | DB15 | J1 | A-DS 15 A/KG-T4S | [pdf](docs/datasheets/J1_ASS_4888_CO.pdf) | 26 | | 1 | HD15 | J2 | HD15-SN-25 | [pdf](docs/datasheets/J2_hdxx-sn-25-data-sheet.pdf) | 27 | | 2 | Dip switch SPST 8 position | SWA1, SWB1 | DS04-254-1L-08BK | [pdf](docs/datasheets/SWA1_SWB1_ds04-254.pdf) | 28 | | 6 | Diode 1N4148 DO-35 | D1, D2, D3, D4, D5, D6 | 1N4148 | [pdf](docs/datasheets/D1_D2_D3_D4_D5_D6_1N914_D-2309448.pdf) | 29 | 30 | ### v1.2 MX 31 | 32 | | Quantity | Description | Designators | Product Number | Datasheet | 33 | | :------- | -------------------------- | ---------------------- | ---------------- | ---------------------------------------------------- | 34 | | 1 | DB15 | J1 | A-DS 15 A/KG-T4S | [pdf](docs/datasheets/J1_ASS_4888_CO.pdf) | 35 | | 1 | HD15 | J2 | HD15-SN-25 | [pdf](docs/datasheets/J2_hdxx-sn-25-data-sheet.pdf) | 36 | | 2 | Dip switch SPST 8 position | SWA1, SWB1 | DS04-254-1L-08BK | [pdf](docs/datasheets/SWA1_SWB1_ds04-254.pdf) | 37 | | 6 | Diode 1N4148 SOD-123 | D1, D2, D3, D4, D5, D6 | 1N4148W | [pdf](docs/datasheets/D1_D2_D3_D4_D5_D6_1N4148W.pdf) | 38 | 39 | ### v1.2 SM 40 | 41 | | Quantity | Description | Designators | Product Number | Datasheet | 42 | | :------- | ------------------------------ | ---------------------- | ---------------- | ---------------------------------------------------- | 43 | | 1 | DB15 | J1 | A-DS 15 A/KG-T4S | [pdf](docs/datasheets/J1_ASS_4888_CO.pdf) | 44 | | 1 | HD15 | J2 | HD15-SN-25 | [pdf](docs/datasheets/J2_hdxx-sn-25-data-sheet.pdf) | 45 | | 2 | Dip switch SPST 8 position SMD | SWA1, SWB1 | 219-8MST | [pdf](docs/datasheets/SWA1_SWB1_219.pdf) | 46 | | 6 | Diode 1N4148 SOD-123 | D1, D2, D3, D4, D5, D6 | 1N4148W | [pdf](docs/datasheets/D1_D2_D3_D4_D5_D6_1N4148W.pdf) | 47 | 48 | 49 | 50 | ## License 51 | 52 | Creative Commons License 53 | 54 | This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. 55 | 56 | 57 | 58 | ## Community 59 | 60 | For more great retro hardware projects and a great community check out: 61 | 62 | [Tinker Different](https://tinkerdifferent.com/) 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | Join us in #skunkworks on [Discord](https://discord.gg/GKcvtgU7P9) to help make retro solutions available to all. 73 | 74 | [Discord Open Retro SCSI skunkworks](https://discord.gg/GKcvtgU7P9) 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | ## Special Thanks 83 | 84 | [Drake](https://tinkerdifferent.com/members/drake.14/), [fehervaria](https://tinkerdifferent.com/members/fehervaria.16/), [Stephen](https://tinkerdifferent.com/members/stephen.12/) 85 | 86 | -------------------------------------------------------------------------------- /case/vga-adapter-base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/case/vga-adapter-base.stl -------------------------------------------------------------------------------- /case/vga-adapter-fusion360.f3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/case/vga-adapter-fusion360.f3d -------------------------------------------------------------------------------- /case/vga-adapter-lid.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/case/vga-adapter-lid.stl -------------------------------------------------------------------------------- /docs/Mac DB15 to VGA v1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/Mac DB15 to VGA v1.0.png -------------------------------------------------------------------------------- /docs/datasheets/D1_D2_D3_D4_D5_D6_1N4148W.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/datasheets/D1_D2_D3_D4_D5_D6_1N4148W.pdf -------------------------------------------------------------------------------- /docs/datasheets/D1_D2_D3_D4_D5_D6_1N914_D-2309448.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/datasheets/D1_D2_D3_D4_D5_D6_1N914_D-2309448.pdf -------------------------------------------------------------------------------- /docs/datasheets/J1_ASS_4888_CO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/datasheets/J1_ASS_4888_CO.pdf -------------------------------------------------------------------------------- /docs/datasheets/J2_hdxx-sn-25-data-sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/datasheets/J2_hdxx-sn-25-data-sheet.pdf -------------------------------------------------------------------------------- /docs/datasheets/SWA1_SWB1_219.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/datasheets/SWA1_SWB1_219.pdf -------------------------------------------------------------------------------- /docs/datasheets/SWA1_SWB1_ds04-254.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/datasheets/SWA1_SWB1_ds04-254.pdf -------------------------------------------------------------------------------- /docs/discordbanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/discordbanner.png -------------------------------------------------------------------------------- /docs/manuals/MacView_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/manuals/MacView_1.png -------------------------------------------------------------------------------- /docs/manuals/MacView_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/manuals/MacView_2.png -------------------------------------------------------------------------------- /docs/manuals/MacView_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/manuals/MacView_3.png -------------------------------------------------------------------------------- /docs/manuals/unimac_82D.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/manuals/unimac_82D.jpeg -------------------------------------------------------------------------------- /docs/tinker_different_sat_rev_600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/docs/tinker_different_sat_rev_600.png -------------------------------------------------------------------------------- /gerbers/Mac DB15 to VGA MX v1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/gerbers/Mac DB15 to VGA MX v1.2.zip -------------------------------------------------------------------------------- /gerbers/Mac DB15 to VGA SM v1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/gerbers/Mac DB15 to VGA SM v1.2.zip -------------------------------------------------------------------------------- /gerbers/Mac DB15 to VGA TH v1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/gerbers/Mac DB15 to VGA TH v1.0.zip -------------------------------------------------------------------------------- /gerbers/Mac DB15 to VGA TH v1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxlab-zone66x/Mac_DB15_to_VGA/5b731e18e525fe59d5c17c3a8f4318867e615523/gerbers/Mac DB15 to VGA TH v1.2.zip -------------------------------------------------------------------------------- /kicad/Mac DB15 to VGA MX v1.2.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 0, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 6, 37 | 7, 38 | 8, 39 | 9, 40 | 10, 41 | 11, 42 | 12, 43 | 13, 44 | 14, 45 | 15, 46 | 16, 47 | 17, 48 | 18, 49 | 19, 50 | 20, 51 | 21, 52 | 22, 53 | 23, 54 | 24, 55 | 25, 56 | 26, 57 | 27, 58 | 28, 59 | 29, 60 | 30, 61 | 32, 62 | 33, 63 | 34, 64 | 35, 65 | 36 66 | ], 67 | "visible_layers": "fffffff_ffffffff", 68 | "zone_display_mode": 0 69 | }, 70 | "meta": { 71 | "filename": "Mac DB15 to VGA MX v1.2.kicad_prl", 72 | "version": 3 73 | }, 74 | "project": { 75 | "files": [] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /kicad/Mac DB15 to VGA MX v1.2.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.127 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "filename": "board_design_settings.json", 55 | "version": 2 56 | }, 57 | "rule_severities": { 58 | "annular_width": "error", 59 | "clearance": "error", 60 | "copper_edge_clearance": "error", 61 | "courtyards_overlap": "error", 62 | "diff_pair_gap_out_of_range": "error", 63 | "diff_pair_uncoupled_length_too_long": "error", 64 | "drill_out_of_range": "error", 65 | "duplicate_footprints": "warning", 66 | "extra_footprint": "warning", 67 | "footprint_type_mismatch": "error", 68 | "hole_clearance": "error", 69 | "hole_near_hole": "error", 70 | "invalid_outline": "error", 71 | "item_on_disabled_layer": "error", 72 | "items_not_allowed": "error", 73 | "length_out_of_range": "error", 74 | "malformed_courtyard": "error", 75 | "microvia_drill_out_of_range": "error", 76 | "missing_courtyard": "ignore", 77 | "missing_footprint": "warning", 78 | "net_conflict": "warning", 79 | "npth_inside_courtyard": "ignore", 80 | "padstack": "error", 81 | "pth_inside_courtyard": "ignore", 82 | "shorting_items": "error", 83 | "silk_over_copper": "warning", 84 | "silk_overlap": "warning", 85 | "skew_out_of_range": "error", 86 | "through_hole_pad_without_hole": "error", 87 | "too_many_vias": "error", 88 | "track_dangling": "warning", 89 | "track_width": "error", 90 | "tracks_crossing": "error", 91 | "unconnected_items": "error", 92 | "unresolved_variable": "error", 93 | "via_dangling": "warning", 94 | "zone_has_empty_net": "error", 95 | "zones_intersect": "error" 96 | }, 97 | "rule_severitieslegacy_courtyards_overlap": false, 98 | "rule_severitieslegacy_no_courtyard_defined": false, 99 | "rules": { 100 | "allow_blind_buried_vias": false, 101 | "allow_microvias": false, 102 | "max_error": 0.005, 103 | "min_clearance": 0.0, 104 | "min_copper_edge_clearance": 0.024999999999999998, 105 | "min_hole_clearance": 0.25, 106 | "min_hole_to_hole": 0.25, 107 | "min_microvia_diameter": 0.19999999999999998, 108 | "min_microvia_drill": 0.09999999999999999, 109 | "min_silk_clearance": 0.0, 110 | "min_through_hole_diameter": 0.3, 111 | "min_track_width": 0.127, 112 | "min_via_annular_width": 0.049999999999999996, 113 | "min_via_diameter": 0.6, 114 | "use_height_for_length_calcs": true 115 | }, 116 | "track_widths": [ 117 | 0.0, 118 | 0.5 119 | ], 120 | "via_dimensions": [ 121 | { 122 | "diameter": 0.0, 123 | "drill": 0.0 124 | }, 125 | { 126 | "diameter": 0.6, 127 | "drill": 0.3 128 | } 129 | ], 130 | "zones_allow_external_fillets": false, 131 | "zones_use_no_outline": true 132 | }, 133 | "layer_presets": [] 134 | }, 135 | "boards": [], 136 | "cvpcb": { 137 | "equivalence_files": [] 138 | }, 139 | "erc": { 140 | "erc_exclusions": [], 141 | "meta": { 142 | "version": 0 143 | }, 144 | "pin_map": [ 145 | [ 146 | 0, 147 | 0, 148 | 0, 149 | 0, 150 | 0, 151 | 0, 152 | 1, 153 | 0, 154 | 0, 155 | 0, 156 | 0, 157 | 2 158 | ], 159 | [ 160 | 0, 161 | 2, 162 | 0, 163 | 1, 164 | 0, 165 | 0, 166 | 1, 167 | 0, 168 | 2, 169 | 2, 170 | 2, 171 | 2 172 | ], 173 | [ 174 | 0, 175 | 0, 176 | 0, 177 | 0, 178 | 0, 179 | 0, 180 | 1, 181 | 0, 182 | 1, 183 | 0, 184 | 1, 185 | 2 186 | ], 187 | [ 188 | 0, 189 | 1, 190 | 0, 191 | 0, 192 | 0, 193 | 0, 194 | 1, 195 | 1, 196 | 2, 197 | 1, 198 | 1, 199 | 2 200 | ], 201 | [ 202 | 0, 203 | 0, 204 | 0, 205 | 0, 206 | 0, 207 | 0, 208 | 1, 209 | 0, 210 | 0, 211 | 0, 212 | 0, 213 | 2 214 | ], 215 | [ 216 | 0, 217 | 0, 218 | 0, 219 | 0, 220 | 0, 221 | 0, 222 | 0, 223 | 0, 224 | 0, 225 | 0, 226 | 0, 227 | 2 228 | ], 229 | [ 230 | 1, 231 | 1, 232 | 1, 233 | 1, 234 | 1, 235 | 0, 236 | 1, 237 | 1, 238 | 1, 239 | 1, 240 | 1, 241 | 2 242 | ], 243 | [ 244 | 0, 245 | 0, 246 | 0, 247 | 1, 248 | 0, 249 | 0, 250 | 1, 251 | 0, 252 | 0, 253 | 0, 254 | 0, 255 | 2 256 | ], 257 | [ 258 | 0, 259 | 2, 260 | 1, 261 | 2, 262 | 0, 263 | 0, 264 | 1, 265 | 0, 266 | 2, 267 | 2, 268 | 2, 269 | 2 270 | ], 271 | [ 272 | 0, 273 | 2, 274 | 0, 275 | 1, 276 | 0, 277 | 0, 278 | 1, 279 | 0, 280 | 2, 281 | 0, 282 | 0, 283 | 2 284 | ], 285 | [ 286 | 0, 287 | 2, 288 | 1, 289 | 1, 290 | 0, 291 | 0, 292 | 1, 293 | 0, 294 | 2, 295 | 0, 296 | 0, 297 | 2 298 | ], 299 | [ 300 | 2, 301 | 2, 302 | 2, 303 | 2, 304 | 2, 305 | 2, 306 | 2, 307 | 2, 308 | 2, 309 | 2, 310 | 2, 311 | 2 312 | ] 313 | ], 314 | "rule_severities": { 315 | "bus_definition_conflict": "error", 316 | "bus_entry_needed": "error", 317 | "bus_label_syntax": "error", 318 | "bus_to_bus_conflict": "error", 319 | "bus_to_net_conflict": "error", 320 | "different_unit_footprint": "error", 321 | "different_unit_net": "error", 322 | "duplicate_reference": "error", 323 | "duplicate_sheet_names": "error", 324 | "extra_units": "error", 325 | "global_label_dangling": "warning", 326 | "hier_label_mismatch": "error", 327 | "label_dangling": "error", 328 | "lib_symbol_issues": "warning", 329 | "multiple_net_names": "warning", 330 | "net_not_bus_member": "warning", 331 | "no_connect_connected": "warning", 332 | "no_connect_dangling": "warning", 333 | "pin_not_connected": "error", 334 | "pin_not_driven": "error", 335 | "pin_to_pin": "warning", 336 | "power_pin_not_driven": "error", 337 | "similar_labels": "warning", 338 | "unannotated": "error", 339 | "unit_value_mismatch": "error", 340 | "unresolved_variable": "error", 341 | "wire_dangling": "error" 342 | } 343 | }, 344 | "libraries": { 345 | "pinned_footprint_libs": [], 346 | "pinned_symbol_libs": [] 347 | }, 348 | "meta": { 349 | "filename": "Mac DB15 to VGA MX v1.2.kicad_pro", 350 | "version": 1 351 | }, 352 | "net_settings": { 353 | "classes": [ 354 | { 355 | "bus_width": 12.0, 356 | "clearance": 0.127, 357 | "diff_pair_gap": 0.25, 358 | "diff_pair_via_gap": 0.25, 359 | "diff_pair_width": 0.2, 360 | "line_style": 0, 361 | "microvia_diameter": 0.3, 362 | "microvia_drill": 0.1, 363 | "name": "Default", 364 | "pcb_color": "rgba(0, 0, 0, 0.000)", 365 | "schematic_color": "rgba(0, 0, 0, 0.000)", 366 | "track_width": 0.127, 367 | "via_diameter": 0.6, 368 | "via_drill": 0.3, 369 | "wire_width": 6.0 370 | } 371 | ], 372 | "meta": { 373 | "version": 2 374 | }, 375 | "net_colors": null 376 | }, 377 | "pcbnew": { 378 | "last_paths": { 379 | "gencad": "", 380 | "idf": "", 381 | "netlist": "Mac DB-15 to VGA TH v1.0.net", 382 | "specctra_dsn": "", 383 | "step": "", 384 | "vrml": "" 385 | }, 386 | "page_layout_descr_file": "" 387 | }, 388 | "schematic": { 389 | "annotate_start_num": 0, 390 | "drawing": { 391 | "default_line_thickness": 6.0, 392 | "default_text_size": 50.0, 393 | "field_names": [], 394 | "intersheets_ref_own_page": false, 395 | "intersheets_ref_prefix": "", 396 | "intersheets_ref_short": false, 397 | "intersheets_ref_show": false, 398 | "intersheets_ref_suffix": "", 399 | "junction_size_choice": 3, 400 | "label_size_ratio": 0.25, 401 | "pin_symbol_size": 0.0, 402 | "text_offset_ratio": 0.08 403 | }, 404 | "legacy_lib_dir": "", 405 | "legacy_lib_list": [], 406 | "meta": { 407 | "version": 1 408 | }, 409 | "net_format_name": "Pcbnew", 410 | "ngspice": { 411 | "fix_include_paths": true, 412 | "fix_passive_vals": false, 413 | "meta": { 414 | "version": 0 415 | }, 416 | "model_mode": 0, 417 | "workbook_filename": "" 418 | }, 419 | "page_layout_descr_file": "", 420 | "plot_directory": "", 421 | "spice_adjust_passive_values": false, 422 | "spice_external_command": "spice \"%I\"", 423 | "subpart_first_id": 65, 424 | "subpart_id_separator": 0 425 | }, 426 | "sheets": [ 427 | [ 428 | "4de664de-51a8-454d-82b8-139124435893", 429 | "" 430 | ] 431 | ], 432 | "text_variables": {} 433 | } 434 | -------------------------------------------------------------------------------- /kicad/Mac DB15 to VGA SM v1.2.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 0, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 6, 37 | 7, 38 | 8, 39 | 9, 40 | 10, 41 | 11, 42 | 12, 43 | 13, 44 | 14, 45 | 15, 46 | 16, 47 | 17, 48 | 18, 49 | 19, 50 | 20, 51 | 21, 52 | 22, 53 | 23, 54 | 24, 55 | 25, 56 | 26, 57 | 27, 58 | 28, 59 | 29, 60 | 30, 61 | 32, 62 | 33, 63 | 34, 64 | 35, 65 | 36 66 | ], 67 | "visible_layers": "fffffff_ffffffff", 68 | "zone_display_mode": 0 69 | }, 70 | "meta": { 71 | "filename": "Mac DB15 to VGA SM v1.2.kicad_prl", 72 | "version": 3 73 | }, 74 | "project": { 75 | "files": [] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /kicad/Mac DB15 to VGA SM v1.2.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.127 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "filename": "board_design_settings.json", 55 | "version": 2 56 | }, 57 | "rule_severities": { 58 | "annular_width": "error", 59 | "clearance": "error", 60 | "copper_edge_clearance": "error", 61 | "courtyards_overlap": "error", 62 | "diff_pair_gap_out_of_range": "error", 63 | "diff_pair_uncoupled_length_too_long": "error", 64 | "drill_out_of_range": "error", 65 | "duplicate_footprints": "warning", 66 | "extra_footprint": "warning", 67 | "footprint_type_mismatch": "error", 68 | "hole_clearance": "error", 69 | "hole_near_hole": "error", 70 | "invalid_outline": "error", 71 | "item_on_disabled_layer": "error", 72 | "items_not_allowed": "error", 73 | "length_out_of_range": "error", 74 | "malformed_courtyard": "error", 75 | "microvia_drill_out_of_range": "error", 76 | "missing_courtyard": "ignore", 77 | "missing_footprint": "warning", 78 | "net_conflict": "warning", 79 | "npth_inside_courtyard": "ignore", 80 | "padstack": "error", 81 | "pth_inside_courtyard": "ignore", 82 | "shorting_items": "error", 83 | "silk_over_copper": "warning", 84 | "silk_overlap": "warning", 85 | "skew_out_of_range": "error", 86 | "through_hole_pad_without_hole": "error", 87 | "too_many_vias": "error", 88 | "track_dangling": "warning", 89 | "track_width": "error", 90 | "tracks_crossing": "error", 91 | "unconnected_items": "error", 92 | "unresolved_variable": "error", 93 | "via_dangling": "warning", 94 | "zone_has_empty_net": "error", 95 | "zones_intersect": "error" 96 | }, 97 | "rule_severitieslegacy_courtyards_overlap": false, 98 | "rule_severitieslegacy_no_courtyard_defined": false, 99 | "rules": { 100 | "allow_blind_buried_vias": false, 101 | "allow_microvias": false, 102 | "max_error": 0.005, 103 | "min_clearance": 0.0, 104 | "min_copper_edge_clearance": 0.024999999999999998, 105 | "min_hole_clearance": 0.25, 106 | "min_hole_to_hole": 0.25, 107 | "min_microvia_diameter": 0.19999999999999998, 108 | "min_microvia_drill": 0.09999999999999999, 109 | "min_silk_clearance": 0.0, 110 | "min_through_hole_diameter": 0.3, 111 | "min_track_width": 0.127, 112 | "min_via_annular_width": 0.049999999999999996, 113 | "min_via_diameter": 0.6, 114 | "use_height_for_length_calcs": true 115 | }, 116 | "track_widths": [ 117 | 0.0, 118 | 0.5 119 | ], 120 | "via_dimensions": [ 121 | { 122 | "diameter": 0.0, 123 | "drill": 0.0 124 | }, 125 | { 126 | "diameter": 0.6, 127 | "drill": 0.3 128 | } 129 | ], 130 | "zones_allow_external_fillets": false, 131 | "zones_use_no_outline": true 132 | }, 133 | "layer_presets": [] 134 | }, 135 | "boards": [], 136 | "cvpcb": { 137 | "equivalence_files": [] 138 | }, 139 | "erc": { 140 | "erc_exclusions": [], 141 | "meta": { 142 | "version": 0 143 | }, 144 | "pin_map": [ 145 | [ 146 | 0, 147 | 0, 148 | 0, 149 | 0, 150 | 0, 151 | 0, 152 | 1, 153 | 0, 154 | 0, 155 | 0, 156 | 0, 157 | 2 158 | ], 159 | [ 160 | 0, 161 | 2, 162 | 0, 163 | 1, 164 | 0, 165 | 0, 166 | 1, 167 | 0, 168 | 2, 169 | 2, 170 | 2, 171 | 2 172 | ], 173 | [ 174 | 0, 175 | 0, 176 | 0, 177 | 0, 178 | 0, 179 | 0, 180 | 1, 181 | 0, 182 | 1, 183 | 0, 184 | 1, 185 | 2 186 | ], 187 | [ 188 | 0, 189 | 1, 190 | 0, 191 | 0, 192 | 0, 193 | 0, 194 | 1, 195 | 1, 196 | 2, 197 | 1, 198 | 1, 199 | 2 200 | ], 201 | [ 202 | 0, 203 | 0, 204 | 0, 205 | 0, 206 | 0, 207 | 0, 208 | 1, 209 | 0, 210 | 0, 211 | 0, 212 | 0, 213 | 2 214 | ], 215 | [ 216 | 0, 217 | 0, 218 | 0, 219 | 0, 220 | 0, 221 | 0, 222 | 0, 223 | 0, 224 | 0, 225 | 0, 226 | 0, 227 | 2 228 | ], 229 | [ 230 | 1, 231 | 1, 232 | 1, 233 | 1, 234 | 1, 235 | 0, 236 | 1, 237 | 1, 238 | 1, 239 | 1, 240 | 1, 241 | 2 242 | ], 243 | [ 244 | 0, 245 | 0, 246 | 0, 247 | 1, 248 | 0, 249 | 0, 250 | 1, 251 | 0, 252 | 0, 253 | 0, 254 | 0, 255 | 2 256 | ], 257 | [ 258 | 0, 259 | 2, 260 | 1, 261 | 2, 262 | 0, 263 | 0, 264 | 1, 265 | 0, 266 | 2, 267 | 2, 268 | 2, 269 | 2 270 | ], 271 | [ 272 | 0, 273 | 2, 274 | 0, 275 | 1, 276 | 0, 277 | 0, 278 | 1, 279 | 0, 280 | 2, 281 | 0, 282 | 0, 283 | 2 284 | ], 285 | [ 286 | 0, 287 | 2, 288 | 1, 289 | 1, 290 | 0, 291 | 0, 292 | 1, 293 | 0, 294 | 2, 295 | 0, 296 | 0, 297 | 2 298 | ], 299 | [ 300 | 2, 301 | 2, 302 | 2, 303 | 2, 304 | 2, 305 | 2, 306 | 2, 307 | 2, 308 | 2, 309 | 2, 310 | 2, 311 | 2 312 | ] 313 | ], 314 | "rule_severities": { 315 | "bus_definition_conflict": "error", 316 | "bus_entry_needed": "error", 317 | "bus_label_syntax": "error", 318 | "bus_to_bus_conflict": "error", 319 | "bus_to_net_conflict": "error", 320 | "different_unit_footprint": "error", 321 | "different_unit_net": "error", 322 | "duplicate_reference": "error", 323 | "duplicate_sheet_names": "error", 324 | "extra_units": "error", 325 | "global_label_dangling": "warning", 326 | "hier_label_mismatch": "error", 327 | "label_dangling": "error", 328 | "lib_symbol_issues": "warning", 329 | "multiple_net_names": "warning", 330 | "net_not_bus_member": "warning", 331 | "no_connect_connected": "warning", 332 | "no_connect_dangling": "warning", 333 | "pin_not_connected": "error", 334 | "pin_not_driven": "error", 335 | "pin_to_pin": "warning", 336 | "power_pin_not_driven": "error", 337 | "similar_labels": "warning", 338 | "unannotated": "error", 339 | "unit_value_mismatch": "error", 340 | "unresolved_variable": "error", 341 | "wire_dangling": "error" 342 | } 343 | }, 344 | "libraries": { 345 | "pinned_footprint_libs": [], 346 | "pinned_symbol_libs": [] 347 | }, 348 | "meta": { 349 | "filename": "Mac DB15 to VGA SM v1.2.kicad_pro", 350 | "version": 1 351 | }, 352 | "net_settings": { 353 | "classes": [ 354 | { 355 | "bus_width": 12.0, 356 | "clearance": 0.127, 357 | "diff_pair_gap": 0.25, 358 | "diff_pair_via_gap": 0.25, 359 | "diff_pair_width": 0.2, 360 | "line_style": 0, 361 | "microvia_diameter": 0.3, 362 | "microvia_drill": 0.1, 363 | "name": "Default", 364 | "pcb_color": "rgba(0, 0, 0, 0.000)", 365 | "schematic_color": "rgba(0, 0, 0, 0.000)", 366 | "track_width": 0.127, 367 | "via_diameter": 0.6, 368 | "via_drill": 0.3, 369 | "wire_width": 6.0 370 | } 371 | ], 372 | "meta": { 373 | "version": 2 374 | }, 375 | "net_colors": null 376 | }, 377 | "pcbnew": { 378 | "last_paths": { 379 | "gencad": "", 380 | "idf": "", 381 | "netlist": "Mac DB-15 to VGA TH v1.0.net", 382 | "specctra_dsn": "", 383 | "step": "", 384 | "vrml": "" 385 | }, 386 | "page_layout_descr_file": "" 387 | }, 388 | "schematic": { 389 | "annotate_start_num": 0, 390 | "drawing": { 391 | "default_line_thickness": 6.0, 392 | "default_text_size": 50.0, 393 | "field_names": [], 394 | "intersheets_ref_own_page": false, 395 | "intersheets_ref_prefix": "", 396 | "intersheets_ref_short": false, 397 | "intersheets_ref_show": false, 398 | "intersheets_ref_suffix": "", 399 | "junction_size_choice": 3, 400 | "label_size_ratio": 0.25, 401 | "pin_symbol_size": 0.0, 402 | "text_offset_ratio": 0.08 403 | }, 404 | "legacy_lib_dir": "", 405 | "legacy_lib_list": [], 406 | "meta": { 407 | "version": 1 408 | }, 409 | "net_format_name": "Pcbnew", 410 | "ngspice": { 411 | "fix_include_paths": true, 412 | "fix_passive_vals": false, 413 | "meta": { 414 | "version": 0 415 | }, 416 | "model_mode": 0, 417 | "workbook_filename": "" 418 | }, 419 | "page_layout_descr_file": "", 420 | "plot_directory": "", 421 | "spice_adjust_passive_values": false, 422 | "spice_external_command": "spice \"%I\"", 423 | "subpart_first_id": 65, 424 | "subpart_id_separator": 0 425 | }, 426 | "sheets": [ 427 | [ 428 | "0ef8ba32-d4e8-4d2b-b6dd-ffa014de9e85", 429 | "" 430 | ] 431 | ], 432 | "text_variables": {} 433 | } 434 | -------------------------------------------------------------------------------- /kicad/Mac DB15 to VGA TH v1.0.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 0, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 6, 37 | 7, 38 | 8, 39 | 9, 40 | 10, 41 | 11, 42 | 12, 43 | 13, 44 | 14, 45 | 15, 46 | 16, 47 | 17, 48 | 18, 49 | 19, 50 | 20, 51 | 21, 52 | 22, 53 | 23, 54 | 24, 55 | 25, 56 | 26, 57 | 27, 58 | 28, 59 | 29, 60 | 30, 61 | 32, 62 | 33, 63 | 34, 64 | 35, 65 | 36 66 | ], 67 | "visible_layers": "fffffff_ffffffff", 68 | "zone_display_mode": 0 69 | }, 70 | "meta": { 71 | "filename": "Mac DB15 to VGA TH v1.0.kicad_prl", 72 | "version": 3 73 | }, 74 | "project": { 75 | "files": [] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /kicad/Mac DB15 to VGA TH v1.0.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.254 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [ 53 | "courtyards_overlap|115590001|106392001|00000000-0000-0000-0000-0000619533b2|00000000-0000-0000-0000-000061953672", 54 | "courtyards_overlap|118785949|106392001|00000000-0000-0000-0000-0000619533b2|00000000-0000-0000-0000-000061953618", 55 | "courtyards_overlap|127782001|106392001|00000000-0000-0000-0000-00006195532d|00000000-0000-0000-0000-000061955086", 56 | "courtyards_overlap|127782001|93692001|00000000-0000-0000-0000-00006195532d|00000000-0000-0000-0000-0000619550c4", 57 | "courtyards_overlap|130322001|93692001|00000000-0000-0000-0000-00006195532d|00000000-0000-0000-0000-0000619550e3", 58 | "courtyards_overlap|130977949|106392001|00000000-0000-0000-0000-00006195532d|00000000-0000-0000-0000-0000619550a5" 59 | ], 60 | "meta": { 61 | "filename": "board_design_settings.json", 62 | "version": 2 63 | }, 64 | "rule_severities": { 65 | "annular_width": "error", 66 | "clearance": "error", 67 | "copper_edge_clearance": "error", 68 | "courtyards_overlap": "error", 69 | "diff_pair_gap_out_of_range": "error", 70 | "diff_pair_uncoupled_length_too_long": "error", 71 | "drill_out_of_range": "error", 72 | "duplicate_footprints": "warning", 73 | "extra_footprint": "warning", 74 | "footprint_type_mismatch": "error", 75 | "hole_clearance": "error", 76 | "hole_near_hole": "error", 77 | "invalid_outline": "error", 78 | "item_on_disabled_layer": "error", 79 | "items_not_allowed": "error", 80 | "length_out_of_range": "error", 81 | "malformed_courtyard": "error", 82 | "microvia_drill_out_of_range": "error", 83 | "missing_courtyard": "ignore", 84 | "missing_footprint": "warning", 85 | "net_conflict": "warning", 86 | "npth_inside_courtyard": "ignore", 87 | "padstack": "error", 88 | "pth_inside_courtyard": "ignore", 89 | "shorting_items": "error", 90 | "silk_over_copper": "warning", 91 | "silk_overlap": "warning", 92 | "skew_out_of_range": "error", 93 | "through_hole_pad_without_hole": "error", 94 | "too_many_vias": "error", 95 | "track_dangling": "warning", 96 | "track_width": "error", 97 | "tracks_crossing": "error", 98 | "unconnected_items": "error", 99 | "unresolved_variable": "error", 100 | "via_dangling": "warning", 101 | "zone_has_empty_net": "error", 102 | "zones_intersect": "error" 103 | }, 104 | "rule_severitieslegacy_courtyards_overlap": true, 105 | "rule_severitieslegacy_no_courtyard_defined": false, 106 | "rules": { 107 | "allow_blind_buried_vias": false, 108 | "allow_microvias": false, 109 | "max_error": 0.005, 110 | "min_clearance": 0.0, 111 | "min_copper_edge_clearance": 0.024999999999999998, 112 | "min_hole_clearance": 0.25, 113 | "min_hole_to_hole": 0.25, 114 | "min_microvia_diameter": 0.19999999999999998, 115 | "min_microvia_drill": 0.09999999999999999, 116 | "min_silk_clearance": 0.0, 117 | "min_through_hole_diameter": 0.3, 118 | "min_track_width": 0.19999999999999998, 119 | "min_via_annular_width": 0.049999999999999996, 120 | "min_via_diameter": 0.39999999999999997, 121 | "use_height_for_length_calcs": true 122 | }, 123 | "track_widths": [ 124 | 0.0, 125 | 0.5 126 | ], 127 | "via_dimensions": [ 128 | { 129 | "diameter": 0.0, 130 | "drill": 0.0 131 | }, 132 | { 133 | "diameter": 0.6, 134 | "drill": 0.3 135 | } 136 | ], 137 | "zones_allow_external_fillets": false, 138 | "zones_use_no_outline": true 139 | }, 140 | "layer_presets": [] 141 | }, 142 | "boards": [], 143 | "cvpcb": { 144 | "equivalence_files": [] 145 | }, 146 | "erc": { 147 | "erc_exclusions": [], 148 | "meta": { 149 | "version": 0 150 | }, 151 | "pin_map": [ 152 | [ 153 | 0, 154 | 0, 155 | 0, 156 | 0, 157 | 0, 158 | 0, 159 | 1, 160 | 0, 161 | 0, 162 | 0, 163 | 0, 164 | 2 165 | ], 166 | [ 167 | 0, 168 | 2, 169 | 0, 170 | 1, 171 | 0, 172 | 0, 173 | 1, 174 | 0, 175 | 2, 176 | 2, 177 | 2, 178 | 2 179 | ], 180 | [ 181 | 0, 182 | 0, 183 | 0, 184 | 0, 185 | 0, 186 | 0, 187 | 1, 188 | 0, 189 | 1, 190 | 0, 191 | 1, 192 | 2 193 | ], 194 | [ 195 | 0, 196 | 1, 197 | 0, 198 | 0, 199 | 0, 200 | 0, 201 | 1, 202 | 1, 203 | 2, 204 | 1, 205 | 1, 206 | 2 207 | ], 208 | [ 209 | 0, 210 | 0, 211 | 0, 212 | 0, 213 | 0, 214 | 0, 215 | 1, 216 | 0, 217 | 0, 218 | 0, 219 | 0, 220 | 2 221 | ], 222 | [ 223 | 0, 224 | 0, 225 | 0, 226 | 0, 227 | 0, 228 | 0, 229 | 0, 230 | 0, 231 | 0, 232 | 0, 233 | 0, 234 | 2 235 | ], 236 | [ 237 | 1, 238 | 1, 239 | 1, 240 | 1, 241 | 1, 242 | 0, 243 | 1, 244 | 1, 245 | 1, 246 | 1, 247 | 1, 248 | 2 249 | ], 250 | [ 251 | 0, 252 | 0, 253 | 0, 254 | 1, 255 | 0, 256 | 0, 257 | 1, 258 | 0, 259 | 0, 260 | 0, 261 | 0, 262 | 2 263 | ], 264 | [ 265 | 0, 266 | 2, 267 | 1, 268 | 2, 269 | 0, 270 | 0, 271 | 1, 272 | 0, 273 | 2, 274 | 2, 275 | 2, 276 | 2 277 | ], 278 | [ 279 | 0, 280 | 2, 281 | 0, 282 | 1, 283 | 0, 284 | 0, 285 | 1, 286 | 0, 287 | 2, 288 | 0, 289 | 0, 290 | 2 291 | ], 292 | [ 293 | 0, 294 | 2, 295 | 1, 296 | 1, 297 | 0, 298 | 0, 299 | 1, 300 | 0, 301 | 2, 302 | 0, 303 | 0, 304 | 2 305 | ], 306 | [ 307 | 2, 308 | 2, 309 | 2, 310 | 2, 311 | 2, 312 | 2, 313 | 2, 314 | 2, 315 | 2, 316 | 2, 317 | 2, 318 | 2 319 | ] 320 | ], 321 | "rule_severities": { 322 | "bus_definition_conflict": "error", 323 | "bus_entry_needed": "error", 324 | "bus_label_syntax": "error", 325 | "bus_to_bus_conflict": "error", 326 | "bus_to_net_conflict": "error", 327 | "different_unit_footprint": "error", 328 | "different_unit_net": "error", 329 | "duplicate_reference": "error", 330 | "duplicate_sheet_names": "error", 331 | "extra_units": "error", 332 | "global_label_dangling": "warning", 333 | "hier_label_mismatch": "error", 334 | "label_dangling": "error", 335 | "lib_symbol_issues": "warning", 336 | "multiple_net_names": "warning", 337 | "net_not_bus_member": "warning", 338 | "no_connect_connected": "warning", 339 | "no_connect_dangling": "warning", 340 | "pin_not_connected": "error", 341 | "pin_not_driven": "error", 342 | "pin_to_pin": "warning", 343 | "power_pin_not_driven": "error", 344 | "similar_labels": "warning", 345 | "unannotated": "error", 346 | "unit_value_mismatch": "error", 347 | "unresolved_variable": "error", 348 | "wire_dangling": "error" 349 | } 350 | }, 351 | "libraries": { 352 | "pinned_footprint_libs": [], 353 | "pinned_symbol_libs": [] 354 | }, 355 | "meta": { 356 | "filename": "Mac DB15 to VGA TH v1.0.kicad_pro", 357 | "version": 1 358 | }, 359 | "net_settings": { 360 | "classes": [ 361 | { 362 | "bus_width": 12.0, 363 | "clearance": 0.2, 364 | "diff_pair_gap": 0.25, 365 | "diff_pair_via_gap": 0.25, 366 | "diff_pair_width": 0.2, 367 | "line_style": 0, 368 | "microvia_diameter": 0.3, 369 | "microvia_drill": 0.1, 370 | "name": "Default", 371 | "pcb_color": "rgba(0, 0, 0, 0.000)", 372 | "schematic_color": "rgba(0, 0, 0, 0.000)", 373 | "track_width": 0.25, 374 | "via_diameter": 0.8, 375 | "via_drill": 0.4, 376 | "wire_width": 6.0 377 | } 378 | ], 379 | "meta": { 380 | "version": 2 381 | }, 382 | "net_colors": null 383 | }, 384 | "pcbnew": { 385 | "last_paths": { 386 | "gencad": "", 387 | "idf": "", 388 | "netlist": "Mac DB-15 to VGA TH v1.0.net", 389 | "specctra_dsn": "", 390 | "step": "", 391 | "vrml": "" 392 | }, 393 | "page_layout_descr_file": "" 394 | }, 395 | "schematic": { 396 | "annotate_start_num": 0, 397 | "drawing": { 398 | "default_line_thickness": 6.0, 399 | "default_text_size": 50.0, 400 | "field_names": [], 401 | "intersheets_ref_own_page": false, 402 | "intersheets_ref_prefix": "", 403 | "intersheets_ref_short": false, 404 | "intersheets_ref_show": false, 405 | "intersheets_ref_suffix": "", 406 | "junction_size_choice": 3, 407 | "label_size_ratio": 0.25, 408 | "pin_symbol_size": 0.0, 409 | "text_offset_ratio": 0.08 410 | }, 411 | "legacy_lib_dir": "", 412 | "legacy_lib_list": [], 413 | "meta": { 414 | "version": 1 415 | }, 416 | "net_format_name": "Pcbnew", 417 | "ngspice": { 418 | "fix_include_paths": true, 419 | "fix_passive_vals": false, 420 | "meta": { 421 | "version": 0 422 | }, 423 | "model_mode": 0, 424 | "workbook_filename": "" 425 | }, 426 | "page_layout_descr_file": "", 427 | "plot_directory": "", 428 | "spice_adjust_passive_values": false, 429 | "spice_external_command": "spice \"%I\"", 430 | "subpart_first_id": 65, 431 | "subpart_id_separator": 0 432 | }, 433 | "sheets": [ 434 | [ 435 | "7f353085-cee5-40c7-a500-d14ad2361ace", 436 | "" 437 | ] 438 | ], 439 | "text_variables": {} 440 | } 441 | -------------------------------------------------------------------------------- /kicad/Mac DB15 to VGA TH v1.1.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 0, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 6, 37 | 7, 38 | 8, 39 | 9, 40 | 10, 41 | 11, 42 | 12, 43 | 13, 44 | 14, 45 | 15, 46 | 16, 47 | 17, 48 | 18, 49 | 19, 50 | 20, 51 | 21, 52 | 22, 53 | 23, 54 | 24, 55 | 25, 56 | 26, 57 | 27, 58 | 28, 59 | 29, 60 | 30, 61 | 32, 62 | 33, 63 | 34, 64 | 35, 65 | 36 66 | ], 67 | "visible_layers": "fffffff_ffffffff", 68 | "zone_display_mode": 0 69 | }, 70 | "meta": { 71 | "filename": "Mac DB15 to VGA TH v1.1.kicad_prl", 72 | "version": 3 73 | }, 74 | "project": { 75 | "files": [] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /kicad/Mac DB15 to VGA TH v1.1.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.127 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "filename": "board_design_settings.json", 55 | "version": 2 56 | }, 57 | "rule_severities": { 58 | "annular_width": "error", 59 | "clearance": "error", 60 | "copper_edge_clearance": "error", 61 | "courtyards_overlap": "error", 62 | "diff_pair_gap_out_of_range": "error", 63 | "diff_pair_uncoupled_length_too_long": "error", 64 | "drill_out_of_range": "error", 65 | "duplicate_footprints": "warning", 66 | "extra_footprint": "warning", 67 | "footprint_type_mismatch": "error", 68 | "hole_clearance": "error", 69 | "hole_near_hole": "error", 70 | "invalid_outline": "error", 71 | "item_on_disabled_layer": "error", 72 | "items_not_allowed": "error", 73 | "length_out_of_range": "error", 74 | "malformed_courtyard": "error", 75 | "microvia_drill_out_of_range": "error", 76 | "missing_courtyard": "ignore", 77 | "missing_footprint": "warning", 78 | "net_conflict": "warning", 79 | "npth_inside_courtyard": "ignore", 80 | "padstack": "error", 81 | "pth_inside_courtyard": "ignore", 82 | "shorting_items": "error", 83 | "silk_over_copper": "warning", 84 | "silk_overlap": "warning", 85 | "skew_out_of_range": "error", 86 | "through_hole_pad_without_hole": "error", 87 | "too_many_vias": "error", 88 | "track_dangling": "warning", 89 | "track_width": "error", 90 | "tracks_crossing": "error", 91 | "unconnected_items": "error", 92 | "unresolved_variable": "error", 93 | "via_dangling": "warning", 94 | "zone_has_empty_net": "error", 95 | "zones_intersect": "error" 96 | }, 97 | "rule_severitieslegacy_courtyards_overlap": false, 98 | "rule_severitieslegacy_no_courtyard_defined": false, 99 | "rules": { 100 | "allow_blind_buried_vias": false, 101 | "allow_microvias": false, 102 | "max_error": 0.005, 103 | "min_clearance": 0.0, 104 | "min_copper_edge_clearance": 0.024999999999999998, 105 | "min_hole_clearance": 0.25, 106 | "min_hole_to_hole": 0.25, 107 | "min_microvia_diameter": 0.19999999999999998, 108 | "min_microvia_drill": 0.09999999999999999, 109 | "min_silk_clearance": 0.0, 110 | "min_through_hole_diameter": 0.3, 111 | "min_track_width": 0.127, 112 | "min_via_annular_width": 0.049999999999999996, 113 | "min_via_diameter": 0.6, 114 | "use_height_for_length_calcs": true 115 | }, 116 | "track_widths": [ 117 | 0.0, 118 | 0.5 119 | ], 120 | "via_dimensions": [ 121 | { 122 | "diameter": 0.0, 123 | "drill": 0.0 124 | }, 125 | { 126 | "diameter": 0.6, 127 | "drill": 0.3 128 | } 129 | ], 130 | "zones_allow_external_fillets": false, 131 | "zones_use_no_outline": true 132 | }, 133 | "layer_presets": [] 134 | }, 135 | "boards": [], 136 | "cvpcb": { 137 | "equivalence_files": [] 138 | }, 139 | "erc": { 140 | "erc_exclusions": [], 141 | "meta": { 142 | "version": 0 143 | }, 144 | "pin_map": [ 145 | [ 146 | 0, 147 | 0, 148 | 0, 149 | 0, 150 | 0, 151 | 0, 152 | 1, 153 | 0, 154 | 0, 155 | 0, 156 | 0, 157 | 2 158 | ], 159 | [ 160 | 0, 161 | 2, 162 | 0, 163 | 1, 164 | 0, 165 | 0, 166 | 1, 167 | 0, 168 | 2, 169 | 2, 170 | 2, 171 | 2 172 | ], 173 | [ 174 | 0, 175 | 0, 176 | 0, 177 | 0, 178 | 0, 179 | 0, 180 | 1, 181 | 0, 182 | 1, 183 | 0, 184 | 1, 185 | 2 186 | ], 187 | [ 188 | 0, 189 | 1, 190 | 0, 191 | 0, 192 | 0, 193 | 0, 194 | 1, 195 | 1, 196 | 2, 197 | 1, 198 | 1, 199 | 2 200 | ], 201 | [ 202 | 0, 203 | 0, 204 | 0, 205 | 0, 206 | 0, 207 | 0, 208 | 1, 209 | 0, 210 | 0, 211 | 0, 212 | 0, 213 | 2 214 | ], 215 | [ 216 | 0, 217 | 0, 218 | 0, 219 | 0, 220 | 0, 221 | 0, 222 | 0, 223 | 0, 224 | 0, 225 | 0, 226 | 0, 227 | 2 228 | ], 229 | [ 230 | 1, 231 | 1, 232 | 1, 233 | 1, 234 | 1, 235 | 0, 236 | 1, 237 | 1, 238 | 1, 239 | 1, 240 | 1, 241 | 2 242 | ], 243 | [ 244 | 0, 245 | 0, 246 | 0, 247 | 1, 248 | 0, 249 | 0, 250 | 1, 251 | 0, 252 | 0, 253 | 0, 254 | 0, 255 | 2 256 | ], 257 | [ 258 | 0, 259 | 2, 260 | 1, 261 | 2, 262 | 0, 263 | 0, 264 | 1, 265 | 0, 266 | 2, 267 | 2, 268 | 2, 269 | 2 270 | ], 271 | [ 272 | 0, 273 | 2, 274 | 0, 275 | 1, 276 | 0, 277 | 0, 278 | 1, 279 | 0, 280 | 2, 281 | 0, 282 | 0, 283 | 2 284 | ], 285 | [ 286 | 0, 287 | 2, 288 | 1, 289 | 1, 290 | 0, 291 | 0, 292 | 1, 293 | 0, 294 | 2, 295 | 0, 296 | 0, 297 | 2 298 | ], 299 | [ 300 | 2, 301 | 2, 302 | 2, 303 | 2, 304 | 2, 305 | 2, 306 | 2, 307 | 2, 308 | 2, 309 | 2, 310 | 2, 311 | 2 312 | ] 313 | ], 314 | "rule_severities": { 315 | "bus_definition_conflict": "error", 316 | "bus_entry_needed": "error", 317 | "bus_label_syntax": "error", 318 | "bus_to_bus_conflict": "error", 319 | "bus_to_net_conflict": "error", 320 | "different_unit_footprint": "error", 321 | "different_unit_net": "error", 322 | "duplicate_reference": "error", 323 | "duplicate_sheet_names": "error", 324 | "extra_units": "error", 325 | "global_label_dangling": "warning", 326 | "hier_label_mismatch": "error", 327 | "label_dangling": "error", 328 | "lib_symbol_issues": "warning", 329 | "multiple_net_names": "warning", 330 | "net_not_bus_member": "warning", 331 | "no_connect_connected": "warning", 332 | "no_connect_dangling": "warning", 333 | "pin_not_connected": "error", 334 | "pin_not_driven": "error", 335 | "pin_to_pin": "warning", 336 | "power_pin_not_driven": "error", 337 | "similar_labels": "warning", 338 | "unannotated": "error", 339 | "unit_value_mismatch": "error", 340 | "unresolved_variable": "error", 341 | "wire_dangling": "error" 342 | } 343 | }, 344 | "libraries": { 345 | "pinned_footprint_libs": [], 346 | "pinned_symbol_libs": [] 347 | }, 348 | "meta": { 349 | "filename": "Mac DB15 to VGA TH v1.1.kicad_pro", 350 | "version": 1 351 | }, 352 | "net_settings": { 353 | "classes": [ 354 | { 355 | "bus_width": 12.0, 356 | "clearance": 0.127, 357 | "diff_pair_gap": 0.25, 358 | "diff_pair_via_gap": 0.25, 359 | "diff_pair_width": 0.2, 360 | "line_style": 0, 361 | "microvia_diameter": 0.3, 362 | "microvia_drill": 0.1, 363 | "name": "Default", 364 | "pcb_color": "rgba(0, 0, 0, 0.000)", 365 | "schematic_color": "rgba(0, 0, 0, 0.000)", 366 | "track_width": 0.127, 367 | "via_diameter": 0.6, 368 | "via_drill": 0.3, 369 | "wire_width": 6.0 370 | } 371 | ], 372 | "meta": { 373 | "version": 2 374 | }, 375 | "net_colors": null 376 | }, 377 | "pcbnew": { 378 | "last_paths": { 379 | "gencad": "", 380 | "idf": "", 381 | "netlist": "Mac DB-15 to VGA TH v1.0.net", 382 | "specctra_dsn": "", 383 | "step": "", 384 | "vrml": "" 385 | }, 386 | "page_layout_descr_file": "" 387 | }, 388 | "schematic": { 389 | "annotate_start_num": 0, 390 | "drawing": { 391 | "default_line_thickness": 6.0, 392 | "default_text_size": 50.0, 393 | "field_names": [], 394 | "intersheets_ref_own_page": false, 395 | "intersheets_ref_prefix": "", 396 | "intersheets_ref_short": false, 397 | "intersheets_ref_show": false, 398 | "intersheets_ref_suffix": "", 399 | "junction_size_choice": 3, 400 | "label_size_ratio": 0.25, 401 | "pin_symbol_size": 0.0, 402 | "text_offset_ratio": 0.08 403 | }, 404 | "legacy_lib_dir": "", 405 | "legacy_lib_list": [], 406 | "meta": { 407 | "version": 1 408 | }, 409 | "net_format_name": "Pcbnew", 410 | "ngspice": { 411 | "fix_include_paths": true, 412 | "fix_passive_vals": false, 413 | "meta": { 414 | "version": 0 415 | }, 416 | "model_mode": 0, 417 | "workbook_filename": "" 418 | }, 419 | "page_layout_descr_file": "", 420 | "plot_directory": "", 421 | "spice_adjust_passive_values": false, 422 | "spice_external_command": "spice \"%I\"", 423 | "subpart_first_id": 65, 424 | "subpart_id_separator": 0 425 | }, 426 | "sheets": [ 427 | [ 428 | "503d49cb-83fb-4006-a8b5-2a7346f5dcbc", 429 | "" 430 | ] 431 | ], 432 | "text_variables": {} 433 | } 434 | -------------------------------------------------------------------------------- /kicad/Mac DB15 to VGA TH v1.2.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 0, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 6, 37 | 7, 38 | 8, 39 | 9, 40 | 10, 41 | 11, 42 | 12, 43 | 13, 44 | 14, 45 | 15, 46 | 16, 47 | 17, 48 | 18, 49 | 19, 50 | 20, 51 | 21, 52 | 22, 53 | 23, 54 | 24, 55 | 25, 56 | 26, 57 | 27, 58 | 28, 59 | 29, 60 | 30, 61 | 32, 62 | 33, 63 | 34, 64 | 35, 65 | 36 66 | ], 67 | "visible_layers": "fffffff_ffffffff", 68 | "zone_display_mode": 0 69 | }, 70 | "meta": { 71 | "filename": "Mac DB15 to VGA TH v1.2.kicad_prl", 72 | "version": 3 73 | }, 74 | "project": { 75 | "files": [] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /kicad/Mac DB15 to VGA TH v1.2.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.127 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [ 53 | "courtyards_overlap|135161999|93292001|00000000-0000-0000-0000-0000619550c4|00000000-0000-0000-0000-00006195532d" 54 | ], 55 | "meta": { 56 | "filename": "board_design_settings.json", 57 | "version": 2 58 | }, 59 | "rule_severities": { 60 | "annular_width": "error", 61 | "clearance": "error", 62 | "copper_edge_clearance": "error", 63 | "courtyards_overlap": "error", 64 | "diff_pair_gap_out_of_range": "error", 65 | "diff_pair_uncoupled_length_too_long": "error", 66 | "drill_out_of_range": "error", 67 | "duplicate_footprints": "warning", 68 | "extra_footprint": "warning", 69 | "footprint_type_mismatch": "error", 70 | "hole_clearance": "error", 71 | "hole_near_hole": "error", 72 | "invalid_outline": "error", 73 | "item_on_disabled_layer": "error", 74 | "items_not_allowed": "error", 75 | "length_out_of_range": "error", 76 | "malformed_courtyard": "error", 77 | "microvia_drill_out_of_range": "error", 78 | "missing_courtyard": "ignore", 79 | "missing_footprint": "warning", 80 | "net_conflict": "warning", 81 | "npth_inside_courtyard": "ignore", 82 | "padstack": "error", 83 | "pth_inside_courtyard": "ignore", 84 | "shorting_items": "error", 85 | "silk_over_copper": "warning", 86 | "silk_overlap": "warning", 87 | "skew_out_of_range": "error", 88 | "through_hole_pad_without_hole": "error", 89 | "too_many_vias": "error", 90 | "track_dangling": "warning", 91 | "track_width": "error", 92 | "tracks_crossing": "error", 93 | "unconnected_items": "error", 94 | "unresolved_variable": "error", 95 | "via_dangling": "warning", 96 | "zone_has_empty_net": "error", 97 | "zones_intersect": "error" 98 | }, 99 | "rule_severitieslegacy_courtyards_overlap": false, 100 | "rule_severitieslegacy_no_courtyard_defined": false, 101 | "rules": { 102 | "allow_blind_buried_vias": false, 103 | "allow_microvias": false, 104 | "max_error": 0.005, 105 | "min_clearance": 0.0, 106 | "min_copper_edge_clearance": 0.024999999999999998, 107 | "min_hole_clearance": 0.25, 108 | "min_hole_to_hole": 0.25, 109 | "min_microvia_diameter": 0.19999999999999998, 110 | "min_microvia_drill": 0.09999999999999999, 111 | "min_silk_clearance": 0.0, 112 | "min_through_hole_diameter": 0.3, 113 | "min_track_width": 0.127, 114 | "min_via_annular_width": 0.049999999999999996, 115 | "min_via_diameter": 0.6, 116 | "use_height_for_length_calcs": true 117 | }, 118 | "track_widths": [ 119 | 0.0, 120 | 0.5 121 | ], 122 | "via_dimensions": [ 123 | { 124 | "diameter": 0.0, 125 | "drill": 0.0 126 | }, 127 | { 128 | "diameter": 0.6, 129 | "drill": 0.3 130 | } 131 | ], 132 | "zones_allow_external_fillets": false, 133 | "zones_use_no_outline": true 134 | }, 135 | "layer_presets": [] 136 | }, 137 | "boards": [], 138 | "cvpcb": { 139 | "equivalence_files": [] 140 | }, 141 | "erc": { 142 | "erc_exclusions": [], 143 | "meta": { 144 | "version": 0 145 | }, 146 | "pin_map": [ 147 | [ 148 | 0, 149 | 0, 150 | 0, 151 | 0, 152 | 0, 153 | 0, 154 | 1, 155 | 0, 156 | 0, 157 | 0, 158 | 0, 159 | 2 160 | ], 161 | [ 162 | 0, 163 | 2, 164 | 0, 165 | 1, 166 | 0, 167 | 0, 168 | 1, 169 | 0, 170 | 2, 171 | 2, 172 | 2, 173 | 2 174 | ], 175 | [ 176 | 0, 177 | 0, 178 | 0, 179 | 0, 180 | 0, 181 | 0, 182 | 1, 183 | 0, 184 | 1, 185 | 0, 186 | 1, 187 | 2 188 | ], 189 | [ 190 | 0, 191 | 1, 192 | 0, 193 | 0, 194 | 0, 195 | 0, 196 | 1, 197 | 1, 198 | 2, 199 | 1, 200 | 1, 201 | 2 202 | ], 203 | [ 204 | 0, 205 | 0, 206 | 0, 207 | 0, 208 | 0, 209 | 0, 210 | 1, 211 | 0, 212 | 0, 213 | 0, 214 | 0, 215 | 2 216 | ], 217 | [ 218 | 0, 219 | 0, 220 | 0, 221 | 0, 222 | 0, 223 | 0, 224 | 0, 225 | 0, 226 | 0, 227 | 0, 228 | 0, 229 | 2 230 | ], 231 | [ 232 | 1, 233 | 1, 234 | 1, 235 | 1, 236 | 1, 237 | 0, 238 | 1, 239 | 1, 240 | 1, 241 | 1, 242 | 1, 243 | 2 244 | ], 245 | [ 246 | 0, 247 | 0, 248 | 0, 249 | 1, 250 | 0, 251 | 0, 252 | 1, 253 | 0, 254 | 0, 255 | 0, 256 | 0, 257 | 2 258 | ], 259 | [ 260 | 0, 261 | 2, 262 | 1, 263 | 2, 264 | 0, 265 | 0, 266 | 1, 267 | 0, 268 | 2, 269 | 2, 270 | 2, 271 | 2 272 | ], 273 | [ 274 | 0, 275 | 2, 276 | 0, 277 | 1, 278 | 0, 279 | 0, 280 | 1, 281 | 0, 282 | 2, 283 | 0, 284 | 0, 285 | 2 286 | ], 287 | [ 288 | 0, 289 | 2, 290 | 1, 291 | 1, 292 | 0, 293 | 0, 294 | 1, 295 | 0, 296 | 2, 297 | 0, 298 | 0, 299 | 2 300 | ], 301 | [ 302 | 2, 303 | 2, 304 | 2, 305 | 2, 306 | 2, 307 | 2, 308 | 2, 309 | 2, 310 | 2, 311 | 2, 312 | 2, 313 | 2 314 | ] 315 | ], 316 | "rule_severities": { 317 | "bus_definition_conflict": "error", 318 | "bus_entry_needed": "error", 319 | "bus_label_syntax": "error", 320 | "bus_to_bus_conflict": "error", 321 | "bus_to_net_conflict": "error", 322 | "different_unit_footprint": "error", 323 | "different_unit_net": "error", 324 | "duplicate_reference": "error", 325 | "duplicate_sheet_names": "error", 326 | "extra_units": "error", 327 | "global_label_dangling": "warning", 328 | "hier_label_mismatch": "error", 329 | "label_dangling": "error", 330 | "lib_symbol_issues": "warning", 331 | "multiple_net_names": "warning", 332 | "net_not_bus_member": "warning", 333 | "no_connect_connected": "warning", 334 | "no_connect_dangling": "warning", 335 | "pin_not_connected": "error", 336 | "pin_not_driven": "error", 337 | "pin_to_pin": "warning", 338 | "power_pin_not_driven": "error", 339 | "similar_labels": "warning", 340 | "unannotated": "error", 341 | "unit_value_mismatch": "error", 342 | "unresolved_variable": "error", 343 | "wire_dangling": "error" 344 | } 345 | }, 346 | "libraries": { 347 | "pinned_footprint_libs": [], 348 | "pinned_symbol_libs": [] 349 | }, 350 | "meta": { 351 | "filename": "Mac DB15 to VGA TH v1.2.kicad_pro", 352 | "version": 1 353 | }, 354 | "net_settings": { 355 | "classes": [ 356 | { 357 | "bus_width": 12.0, 358 | "clearance": 0.127, 359 | "diff_pair_gap": 0.25, 360 | "diff_pair_via_gap": 0.25, 361 | "diff_pair_width": 0.2, 362 | "line_style": 0, 363 | "microvia_diameter": 0.3, 364 | "microvia_drill": 0.1, 365 | "name": "Default", 366 | "pcb_color": "rgba(0, 0, 0, 0.000)", 367 | "schematic_color": "rgba(0, 0, 0, 0.000)", 368 | "track_width": 0.127, 369 | "via_diameter": 0.6, 370 | "via_drill": 0.3, 371 | "wire_width": 6.0 372 | } 373 | ], 374 | "meta": { 375 | "version": 2 376 | }, 377 | "net_colors": null 378 | }, 379 | "pcbnew": { 380 | "last_paths": { 381 | "gencad": "", 382 | "idf": "", 383 | "netlist": "Mac DB-15 to VGA TH v1.0.net", 384 | "specctra_dsn": "", 385 | "step": "", 386 | "vrml": "" 387 | }, 388 | "page_layout_descr_file": "" 389 | }, 390 | "schematic": { 391 | "annotate_start_num": 0, 392 | "drawing": { 393 | "default_line_thickness": 6.0, 394 | "default_text_size": 50.0, 395 | "field_names": [], 396 | "intersheets_ref_own_page": false, 397 | "intersheets_ref_prefix": "", 398 | "intersheets_ref_short": false, 399 | "intersheets_ref_show": false, 400 | "intersheets_ref_suffix": "", 401 | "junction_size_choice": 3, 402 | "label_size_ratio": 0.25, 403 | "pin_symbol_size": 0.0, 404 | "text_offset_ratio": 0.08 405 | }, 406 | "legacy_lib_dir": "", 407 | "legacy_lib_list": [], 408 | "meta": { 409 | "version": 1 410 | }, 411 | "net_format_name": "Pcbnew", 412 | "ngspice": { 413 | "fix_include_paths": true, 414 | "fix_passive_vals": false, 415 | "meta": { 416 | "version": 0 417 | }, 418 | "model_mode": 0, 419 | "workbook_filename": "" 420 | }, 421 | "page_layout_descr_file": "", 422 | "plot_directory": "", 423 | "spice_adjust_passive_values": false, 424 | "spice_external_command": "spice \"%I\"", 425 | "subpart_first_id": 65, 426 | "subpart_id_separator": 0 427 | }, 428 | "sheets": [ 429 | [ 430 | "ddf22df6-5864-443b-8c42-4910cb155b55", 431 | "" 432 | ] 433 | ], 434 | "text_variables": {} 435 | } 436 | -------------------------------------------------------------------------------- /kicad/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "project")(type "KiCad")(uri "${KIPRJMOD}/project.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /kicad/project.pretty/SW_DIP_SPSTx08_Slide_9.78x22.5mm_W7.62mm_P2.54mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "SW_DIP_SPSTx08_Slide_9.78x22.5mm_W7.62mm_P2.54mm" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 6195ED7C) 4 | (descr "8x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x22.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf)") 5 | (tags "DIP Switch SPST Slide 7.62mm 300mil") 6 | (attr through_hole) 7 | (fp_text reference "REF**" (at 3.81 -3.42) (layer "F.SilkS") 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | (tstamp 58e9df79-4299-4e52-9d27-2aa7c9a712a7) 10 | ) 11 | (fp_text value "SW_DIP_SPSTx08_Slide_9.78x22.5mm_W7.62mm_P2.54mm" (at 3.81 21.2) (layer "F.Fab") 12 | (effects (font (size 1 1) (thickness 0.15))) 13 | (tstamp eca2cc80-8396-4807-8d81-b6ae643b650e) 14 | ) 15 | (fp_text user "on" (at 5.365 -1.4975) (layer "F.Fab") 16 | (effects (font (size 0.8 0.8) (thickness 0.12))) 17 | (tstamp 84a85ab7-e3c3-4814-b0fb-aa7605c88627) 18 | ) 19 | (fp_text user "${REFERENCE}" (at 7.27 8.89 90) (layer "F.Fab") 20 | (effects (font (size 0.8 0.8) (thickness 0.12))) 21 | (tstamp 8ca9c100-2905-4ba6-9f19-b2b0d84ab3c7) 22 | ) 23 | (fp_line (start -1.14 20.201) (end 8.76 20.201) (layer "F.SilkS") (width 0.12) (tstamp 601f70bc-038d-4872-8017-e6c5bc773214)) 24 | (fp_line (start -1.38 -2.66) (end -1.38 -1.277) (layer "F.SilkS") (width 0.12) (tstamp 659873c6-1d93-4121-a4f0-99767f157e75)) 25 | (fp_line (start -1.38 -2.66) (end 0.004 -2.66) (layer "F.SilkS") (width 0.12) (tstamp 88facf73-eded-468b-8827-0399dd56412d)) 26 | (fp_line (start -1.14 -2.42) (end 8.76 -2.42) (layer "F.SilkS") (width 0.12) (tstamp 985ad872-b9f3-4c0b-be89-750adb4eb4a3)) 27 | (fp_line (start 8.76 -2.42) (end 8.76 20.201) (layer "F.SilkS") (width 0.12) (tstamp b08f7f04-5160-400e-973a-0c421f7ce2c2)) 28 | (fp_line (start -1.14 -2.42) (end -1.14 20.201) (layer "F.SilkS") (width 0.12) (tstamp c7ccb1cf-5393-4907-8d03-a37a89b15ced)) 29 | (fp_line (start -1.35 20.5) (end 8.95 20.5) (layer "F.CrtYd") (width 0.05) (tstamp 23b4ff1a-bac9-4a4b-9fdc-42302e9dc289)) 30 | (fp_line (start 8.95 -2.7) (end -1.35 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 24123fe7-fe58-4c97-b7ff-111810eb2f46)) 31 | (fp_line (start -1.35 -2.7) (end -1.35 20.5) (layer "F.CrtYd") (width 0.05) (tstamp aca643ef-1a16-46e3-87f3-4e268021bd5e)) 32 | (fp_line (start 8.95 20.5) (end 8.95 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp d5f4e1c8-7cf4-444b-9ca9-8b515f279896)) 33 | (fp_line (start 8.7 20.14) (end -1.08 20.14) (layer "F.Fab") (width 0.1) (tstamp 0848f396-717b-45b9-b19f-7872624ffa12)) 34 | (fp_line (start -0.08 -2.36) (end 8.7 -2.36) (layer "F.Fab") (width 0.1) (tstamp 13e9ad94-8ffa-44c4-910c-524167604492)) 35 | (fp_line (start 8.7 -2.36) (end 8.7 20.14) (layer "F.Fab") (width 0.1) (tstamp 3df77bca-b5a5-44d4-addc-a4d34b03657e)) 36 | (fp_line (start -1.08 -1.36) (end -0.08 -2.36) (layer "F.Fab") (width 0.1) (tstamp 50e191e2-5c1a-4003-a449-e05e5906bd0c)) 37 | (fp_line (start -1.08 20.14) (end -1.08 -1.36) (layer "F.Fab") (width 0.1) (tstamp b78e03cf-9798-4e44-b7de-80158437790a)) 38 | (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 167641cc-1b40-4d18-a1c9-ede63a6806ca)) 39 | (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 51c071ca-bc78-403f-8e26-f8da98236823)) 40 | (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 24465d70-87b0-47c2-87be-11913bc4e949)) 41 | (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 882e8c85-de58-4afe-8dd7-362618d5e0e0)) 42 | (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp c4bdd94e-a46c-4c91-9da0-bdcf2474b5ae)) 43 | (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 5611500b-61ec-46d7-99ff-9cb8ce22ec03)) 44 | (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp c1e856a7-0eec-4fe1-8d4c-83abe44cbffb)) 45 | (pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp c943e0da-05a5-471f-8d2d-2ca3ac0ebd8b)) 46 | (pad "9" thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 987a4d42-c369-4582-9bf8-41e20ed9f282)) 47 | (pad "10" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 318c1037-e9d1-4da5-9ebb-1e7c5748ae23)) 48 | (pad "11" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp dd3bcfc7-ea59-4c2a-a9b2-dc4420572328)) 49 | (pad "12" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp fd8976b5-e43e-4ccd-a37f-a70565061e85)) 50 | (pad "13" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 9f5a92c7-a348-4978-96e4-b60bd392fe13)) 51 | (pad "14" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 6eeb324c-9858-4b1a-83a2-58f9cb8c9137)) 52 | (pad "15" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 5efc066c-b770-4b18-a5cd-4e78039e2d55)) 53 | (pad "16" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 656383d4-511b-49ef-a4f6-fa30e8d04dc6)) 54 | (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_DIP_SPSTx08_Slide_9.78x22.5mm_W7.62mm_P2.54mm.wrl" 55 | (offset (xyz 0 0 0)) 56 | (scale (xyz 1 1 1)) 57 | (rotate (xyz 0 0 90)) 58 | ) 59 | ) 60 | -------------------------------------------------------------------------------- /kicad/project.pretty/cc_by_nc_sa_front_silk_screen.kicad_mod: -------------------------------------------------------------------------------- 1 | (module LOGO (layer F.Cu) 2 | (at 0 0) 3 | (fp_text reference "G***" (at 0 0) (layer F.SilkS) hide 4 | (effects (font (thickness 0.3))) 5 | ) 6 | (fp_text value "LOGO" (at 0.75 0) (layer F.SilkS) hide 7 | (effects (font (thickness 0.3))) 8 | ) 9 | (fp_poly (pts (xy 0.386424 -1.484230) (xy 0.681610 -1.484015) (xy 0.973662 -1.483693) (xy 1.261218 -1.483264) (xy 1.542914 -1.482727) (xy 1.817387 -1.482084) (xy 2.083274 -1.481334) (xy 2.339211 -1.480477) 10 | (xy 2.583835 -1.479513) (xy 2.815782 -1.478443) (xy 3.033690 -1.477266) (xy 3.236196 -1.475982) (xy 3.421935 -1.474593) (xy 3.589545 -1.473097) (xy 3.737662 -1.471495) (xy 3.864924 -1.469787) 11 | (xy 3.969966 -1.467973) (xy 4.051426 -1.466053) (xy 4.107940 -1.464028) (xy 4.138145 -1.461897) (xy 4.142572 -1.461008) (xy 4.157094 -1.455317) (xy 4.169987 -1.450006) (xy 4.181345 -1.443458) 12 | (xy 4.191260 -1.434053) (xy 4.199823 -1.420173) (xy 4.207128 -1.400200) (xy 4.213268 -1.372515) (xy 4.218334 -1.335501) (xy 4.222419 -1.287538) (xy 4.225615 -1.227009) (xy 4.228016 -1.152294) 13 | (xy 4.229713 -1.061776) (xy 4.230799 -0.953836) (xy 4.231367 -0.826855) (xy 4.231509 -0.679216) (xy 4.231317 -0.509300) (xy 4.230884 -0.315488) (xy 4.230302 -0.096162) (xy 4.229874 0.066738) 14 | (xy 4.226278 1.474611) (xy 0.005903 1.478162) (xy -0.337451 1.478420) (xy -0.673497 1.478611) (xy -1.001140 1.478736) (xy -1.319284 1.478798) (xy -1.626834 1.478798) (xy -1.922695 1.478736) 15 | (xy -2.205769 1.478616) (xy -2.474963 1.478438) (xy -2.729179 1.478203) (xy -2.967323 1.477914) (xy -3.188299 1.477572) (xy -3.391010 1.477178) (xy -3.574362 1.476734) (xy -3.737259 1.476241) 16 | (xy -3.878605 1.475702) (xy -3.997304 1.475117) (xy -4.092262 1.474488) (xy -4.162381 1.473816) (xy -4.206566 1.473103) (xy -4.223723 1.472351) (xy -4.223903 1.472283) (xy -4.225221 1.457148) 17 | (xy -4.226484 1.415699) (xy -4.227680 1.349842) (xy -4.228796 1.261485) (xy -4.229819 1.152534) (xy -4.230736 1.024897) (xy -4.231536 0.880481) (xy -4.232204 0.721193) (xy -4.232730 0.548941) 18 | (xy -4.233099 0.365631) (xy -4.233300 0.173172) (xy -4.233333 0.053392) (xy -4.233362 -0.182988) (xy -4.233385 -0.392770) (xy -4.233382 -0.401697) (xy -4.162778 -0.401697) (xy -4.162778 0.592667) 19 | (xy -3.858534 0.592667) (xy -3.788406 0.700069) (xy -3.688665 0.828635) (xy -3.567069 0.945111) (xy -3.428631 1.046048) (xy -3.278363 1.127995) (xy -3.121277 1.187502) (xy -3.055056 1.204842) 20 | (xy -2.989873 1.219353) (xy -2.940124 1.229062) (xy -2.897225 1.234730) (xy -2.852596 1.237118) (xy -2.797655 1.236987) (xy -2.723818 1.235099) (xy -2.716389 1.234882) (xy -2.621223 1.230145) 21 | (xy -2.543027 1.221182) (xy -2.470675 1.206419) (xy -2.422926 1.193386) (xy -2.247010 1.128057) (xy -2.084694 1.040394) (xy -1.938696 0.932358) (xy -1.838488 0.832556) (xy -1.044222 0.832556) 22 | (xy -1.044222 1.055982) (xy -1.043656 1.132692) (xy -1.042094 1.199253) (xy -1.039737 1.250648) (xy -1.036789 1.281858) (xy -1.034815 1.288815) (xy -1.014198 1.295062) (xy -0.973117 1.298248) 23 | (xy -0.919134 1.298634) (xy -0.859810 1.296478) (xy -0.802709 1.292041) (xy -0.755391 1.285583) (xy -0.727405 1.278250) (xy -0.680196 1.248204) (xy -0.655205 1.204364) (xy -0.649111 1.153443) 24 | (xy -0.661437 1.101397) (xy -0.683565 1.073219) (xy -0.718019 1.040851) (xy -0.689149 1.001801) (xy -0.668710 0.961636) (xy -0.669923 0.918838) (xy -0.681517 0.884217) (xy -0.701527 0.860040) 25 | (xy -0.734430 0.844568) (xy -0.767610 0.838955) (xy -0.620889 0.838955) (xy -0.614021 0.852841) (xy -0.595351 0.885798) (xy -0.567779 0.932806) (xy -0.536222 0.985507) (xy -0.499417 1.047472) 26 | (xy -0.475145 1.092522) (xy -0.460820 1.127574) (xy -0.453858 1.159543) (xy -0.451672 1.195345) (xy -0.451556 1.211941) (xy -0.451556 1.298222) (xy -0.352778 1.298222) (xy -0.352778 1.206996) 27 | (xy -0.351825 1.164706) (xy -0.347180 1.130632) (xy -0.336165 1.097261) (xy -0.316103 1.057077) (xy -0.284315 1.002567) (xy -0.273573 0.984746) (xy -0.240725 0.930394) (xy -0.213291 0.884971) 28 | (xy -0.194560 0.853927) (xy -0.188073 0.843139) (xy -0.196467 0.836631) (xy -0.225037 0.832901) (xy -0.239404 0.832556) (xy 0.776111 0.832556) (xy 0.776111 1.298222) (xy 0.874889 1.298222) 29 | (xy 0.874889 1.147234) (xy 0.875781 1.076976) (xy 0.878629 1.032633) (xy 0.883687 1.011949) (xy 0.890253 1.011609) (xy 0.903610 1.029431) (xy 0.927832 1.065737) (xy 0.959206 1.114848) 30 | (xy 0.986671 1.159070) (xy 1.022931 1.217258) (xy 1.049131 1.255520) (xy 1.069538 1.278242) (xy 1.088422 1.289812) (xy 1.110052 1.294616) (xy 1.119473 1.295546) (xy 1.171222 1.299926) 31 | (xy 1.171222 1.064492) (xy 1.244805 1.064492) (xy 1.254791 1.138925) (xy 1.281998 1.197254) (xy 1.326624 1.250144) (xy 1.379996 1.288329) (xy 1.403611 1.297961) (xy 1.459931 1.305613) 32 | (xy 1.522697 1.300177) (xy 1.577683 1.283346) (xy 1.591701 1.275576) (xy 1.624127 1.245691) (xy 1.654063 1.204371) (xy 1.674419 1.162652) (xy 1.676403 1.152967) (xy 2.604593 1.152967) 33 | (xy 2.608055 1.176439) (xy 2.611375 1.188192) (xy 2.630184 1.233650) (xy 2.660164 1.264468) (xy 2.709271 1.288365) (xy 2.717843 1.291497) (xy 2.773909 1.307680) (xy 2.821707 1.309936) 34 | (xy 2.877162 1.298863) (xy 2.879497 1.298222) (xy 3.006078 1.298222) (xy 3.059482 1.298222) (xy 3.096041 1.295265) (xy 3.116096 1.281065) (xy 3.130745 1.248834) (xy 3.141620 1.221879) 35 | (xy 3.154697 1.207110) (xy 3.177833 1.200861) (xy 3.218886 1.199465) (xy 3.236578 1.199445) (xy 3.284821 1.200078) (xy 3.312698 1.204421) (xy 3.328067 1.216141) (xy 3.338785 1.238905) 36 | (xy 3.342412 1.248834) (xy 3.357937 1.282065) (xy 3.378761 1.295796) (xy 3.408747 1.298222) (xy 3.441154 1.295511) (xy 3.457221 1.288862) (xy 3.457588 1.287639) (xy 3.453073 1.271490) 37 | (xy 3.440340 1.233482) (xy 3.420995 1.178218) (xy 3.396641 1.110298) (xy 3.376449 1.054898) (xy 3.294944 0.832740) (xy 3.238500 0.832815) (xy 3.182055 0.832889) (xy 3.120088 0.998528) 38 | (xy 3.093460 1.069495) (xy 3.067744 1.137672) (xy 3.046000 1.194965) (xy 3.032099 1.231195) (xy 3.006078 1.298222) (xy 2.879497 1.298222) (xy 2.881552 1.297658) (xy 2.939412 1.268682) 39 | (xy 2.977002 1.221465) (xy 2.991480 1.159703) (xy 2.991555 1.154534) (xy 2.979846 1.099319) (xy 2.944133 1.056751) (xy 2.883542 1.025991) (xy 2.846185 1.015367) (xy 2.785049 0.999195) 40 | (xy 2.747524 0.983772) (xy 2.729212 0.966374) (xy 2.725718 0.944275) (xy 2.726116 0.940962) (xy 2.734293 0.920459) (xy 2.756396 0.909978) (xy 2.789642 0.905868) (xy 2.830280 0.905832) 41 | (xy 2.854900 0.916307) (xy 2.872404 0.937618) (xy 2.899760 0.964127) (xy 2.931716 0.975450) (xy 2.959953 0.971316) (xy 2.976155 0.951452) (xy 2.977444 0.941050) (xy 2.965244 0.901899) 42 | (xy 2.933803 0.863472) (xy 2.890860 0.834775) (xy 2.883448 0.831691) (xy 2.823257 0.818940) (xy 2.759743 0.821773) (xy 2.701292 0.838251) (xy 2.656290 0.866431) (xy 2.639196 0.888219) 43 | (xy 2.629059 0.921157) (xy 2.624671 0.963158) (xy 2.624667 0.964429) (xy 2.637910 1.015231) (xy 2.677176 1.056360) (xy 2.741765 1.087226) (xy 2.783693 1.098706) (xy 2.844388 1.116781) 44 | (xy 2.879458 1.139021) (xy 2.891409 1.167357) (xy 2.890278 1.180836) (xy 2.872733 1.208329) (xy 2.838950 1.222550) (xy 2.797434 1.223807) (xy 2.756687 1.212407) (xy 2.725213 1.188659) 45 | (xy 2.716570 1.174551) (xy 2.699152 1.152118) (xy 2.667770 1.143567) (xy 2.650528 1.143000) (xy 2.616630 1.144268) (xy 2.604593 1.152967) (xy 1.676403 1.152967) (xy 1.679169 1.139472) 46 | (xy 1.668009 1.120777) (xy 1.641346 1.112991) (xy 1.609559 1.115777) (xy 1.583030 1.128797) (xy 1.573415 1.142917) (xy 1.547084 1.185879) (xy 1.506045 1.209962) (xy 1.457801 1.213700) 47 | (xy 1.409857 1.195624) (xy 1.389303 1.178919) (xy 1.368237 1.152333) (xy 1.357780 1.120371) (xy 1.354695 1.072381) (xy 1.354667 1.064945) (xy 1.356763 1.015659) (xy 1.365668 0.982968) 48 | (xy 1.385311 0.955393) (xy 1.395914 0.944359) (xy 1.442827 0.910734) (xy 1.488561 0.905279) (xy 1.533732 0.927997) (xy 1.552222 0.945445) (xy 1.594490 0.978528) (xy 1.636446 0.987778) 49 | (xy 1.666593 0.985400) (xy 1.675314 0.974260) (xy 1.671648 0.956028) (xy 1.639154 0.890910) (xy 1.587405 0.845894) (xy 1.518035 0.822101) (xy 1.471536 0.818467) (xy 1.397799 0.831261) 50 | (xy 1.335287 0.866652) (xy 1.286971 0.920248) (xy 1.255820 0.987658) (xy 1.244805 1.064492) (xy 1.171222 1.064492) (xy 1.171222 0.832556) (xy 1.073432 0.832556) (xy 1.069410 0.975776) 51 | (xy 1.065389 1.118995) (xy 0.976306 0.975776) (xy 0.938403 0.915307) (xy 0.911308 0.874823) (xy 0.890974 0.850315) (xy 0.873352 0.837774) (xy 0.854393 0.833191) (xy 0.831668 0.832556) 52 | (xy 0.776111 0.832556) (xy -0.239404 0.832556) (xy -0.274466 0.834660) (xy -0.297834 0.845169) (xy -0.318846 0.870380) (xy -0.335486 0.897333) (xy -0.367107 0.950348) (xy -0.388528 0.980568) 53 | (xy -0.404854 0.988911) (xy -0.421190 0.976293) (xy -0.442641 0.943632) (xy -0.457388 0.919236) (xy -0.485784 0.874104) (xy -0.506736 0.848164) (xy -0.526840 0.836126) (xy -0.552691 0.832700) 54 | (xy -0.565466 0.832556) (xy -0.600451 0.834001) (xy -0.619638 0.837604) (xy -0.620889 0.838955) (xy -0.767610 0.838955) (xy -0.784701 0.836064) (xy -0.856818 0.832790) (xy -0.892140 0.832556) 55 | (xy -1.044222 0.832556) (xy -1.838488 0.832556) (xy -1.811735 0.805912) (xy -1.722402 0.687837) (xy -1.659748 0.592667) (xy 4.162778 0.592667) (xy 4.162778 -0.381000) (xy 4.162760 -0.570347) 56 | (xy 4.162669 -0.733492) (xy 4.162448 -0.872452) (xy 4.162039 -0.989247) (xy 4.161387 -1.085895) (xy 4.160434 -1.164416) (xy 4.159123 -1.226830) (xy 4.157398 -1.275153) (xy 4.155201 -1.311407) 57 | (xy 4.152476 -1.337609) (xy 4.149166 -1.355779) (xy 4.145214 -1.367936) (xy 4.140562 -1.376098) (xy 4.135155 -1.382285) (xy 4.134555 -1.382889) (xy 4.131561 -1.385658) (xy 4.127669 -1.388241) 58 | (xy 4.121916 -1.390642) (xy 4.113342 -1.392869) (xy 4.100984 -1.394929) (xy 4.083881 -1.396827) (xy 4.061070 -1.398571) (xy 4.031591 -1.400167) (xy 3.994482 -1.401621) (xy 3.948779 -1.402940) 59 | (xy 3.893523 -1.404131) (xy 3.827751 -1.405201) (xy 3.750502 -1.406155) (xy 3.660812 -1.407000) (xy 3.557722 -1.407744) (xy 3.440269 -1.408392) (xy 3.307491 -1.408950) (xy 3.158427 -1.409427) 60 | (xy 2.992115 -1.409828) (xy 2.807592 -1.410159) (xy 2.603898 -1.410428) (xy 2.380071 -1.410641) (xy 2.135148 -1.410804) (xy 1.868169 -1.410925) (xy 1.578170 -1.411008) (xy 1.264192 -1.411062) 61 | (xy 0.925271 -1.411093) (xy 0.560446 -1.411107) (xy 0.168755 -1.411111) (xy 0.000000 -1.411111) (xy -0.402995 -1.411109) (xy -0.778730 -1.411100) (xy -1.128166 -1.411077) (xy -1.452265 -1.411034) 62 | (xy -1.751989 -1.410963) (xy -2.028300 -1.410858) (xy -2.282158 -1.410714) (xy -2.514527 -1.410522) (xy -2.726368 -1.410277) (xy -2.918642 -1.409972) (xy -3.092312 -1.409600) (xy -3.248339 -1.409156) 63 | (xy -3.387684 -1.408631) (xy -3.511310 -1.408021) (xy -3.620179 -1.407317) (xy -3.715252 -1.406514) (xy -3.797490 -1.405606) (xy -3.867857 -1.404585) (xy -3.927312 -1.403444) (xy -3.976819 -1.402178) 64 | (xy -4.017339 -1.400780) (xy -4.049834 -1.399243) (xy -4.075265 -1.397561) (xy -4.094594 -1.395727) (xy -4.108783 -1.393735) (xy -4.118794 -1.391577) (xy -4.125588 -1.389248) (xy -4.130127 -1.386741) 65 | (xy -4.133374 -1.384049) (xy -4.134556 -1.382889) (xy -4.140044 -1.376790) (xy -4.144770 -1.368923) (xy -4.148791 -1.357270) (xy -4.152165 -1.339810) (xy -4.154947 -1.314525) (xy -4.157196 -1.279396) 66 | (xy -4.158967 -1.232403) (xy -4.160317 -1.171529) (xy -4.161304 -1.094754) (xy -4.161985 -1.000059) (xy -4.162416 -0.885424) (xy -4.162653 -0.748832) (xy -4.162755 -0.588263) (xy -4.162778 -0.401697) 67 | (xy -4.233382 -0.401697) (xy -4.233304 -0.577578) (xy -4.233017 -0.739036) (xy -4.232428 -0.878770) (xy -4.231436 -0.998402) (xy -4.229943 -1.099556) (xy -4.227851 -1.183858) (xy -4.225060 -1.252931) 68 | (xy -4.221472 -1.308400) (xy -4.216988 -1.351888) (xy -4.211508 -1.385020) (xy -4.204935 -1.409420) (xy -4.197169 -1.426711) (xy -4.188111 -1.438519) (xy -4.177663 -1.446468) (xy -4.165725 -1.452181) 69 | (xy -4.152199 -1.457282) (xy -4.141127 -1.461611) (xy -4.121917 -1.463782) (xy -4.075848 -1.465844) (xy -4.004283 -1.467795) (xy -3.908587 -1.469638) (xy -3.790121 -1.471372) (xy -3.650250 -1.472996) 70 | (xy -3.490336 -1.474511) (xy -3.311744 -1.475918) (xy -3.115835 -1.477216) (xy -2.903974 -1.478405) (xy -2.677524 -1.479485) (xy -2.437848 -1.480457) (xy -2.186309 -1.481320) (xy -1.924270 -1.482075) 71 | (xy -1.653096 -1.482722) (xy -1.374148 -1.483261) (xy -1.088791 -1.483692) (xy -0.798388 -1.484015) (xy -0.504301 -1.484230) (xy -0.207895 -1.484338) (xy 0.089468 -1.484338) (xy 0.386424 -1.484230) )(layer F.SilkS) (width 0.010000) 72 | ) 73 | (fp_poly (pts (xy -0.801212 1.094047) (xy -0.762778 1.115907) (xy -0.748006 1.151219) (xy -0.747889 1.155297) (xy -0.757170 1.186906) (xy -0.786850 1.205737) (xy -0.839685 1.213266) (xy -0.856545 1.213556) 74 | (xy -0.931333 1.213556) (xy -0.931333 1.086556) (xy -0.861786 1.086556) (xy -0.801212 1.094047) )(layer F.SilkS) (width 0.010000) 75 | ) 76 | (fp_poly (pts (xy -0.857250 0.920013) (xy -0.814164 0.923414) (xy -0.792185 0.930143) (xy -0.784218 0.944662) (xy -0.783167 0.966611) (xy -0.784778 0.991325) (xy -0.794339 1.004435) (xy -0.818945 1.010404) 77 | (xy -0.857250 1.013210) (xy -0.931333 1.017475) (xy -0.931333 0.915748) (xy -0.857250 0.920013) )(layer F.SilkS) (width 0.010000) 78 | ) 79 | (fp_poly (pts (xy 3.253739 0.993716) (xy 3.264775 1.023748) (xy 3.278072 1.064899) (xy 3.286428 1.094848) (xy 3.287889 1.103181) (xy 3.275373 1.110478) (xy 3.244149 1.114503) (xy 3.232070 1.114778) 80 | (xy 3.176252 1.114778) (xy 3.196295 1.057970) (xy 3.216036 1.004913) (xy 3.230327 0.977450) (xy 3.241962 0.974184) (xy 3.253739 0.993716) )(layer F.SilkS) (width 0.010000) 81 | ) 82 | (fp_poly (pts (xy -2.646970 -1.197405) (xy -2.531275 -1.182743) (xy -2.423307 -1.155770) (xy -2.343488 -1.127211) (xy -2.189666 -1.051252) (xy -2.052443 -0.953945) (xy -1.933280 -0.837760) (xy -1.833637 -0.705168) 83 | (xy -1.754975 -0.558638) (xy -1.698755 -0.400641) (xy -1.666438 -0.233647) (xy -1.659484 -0.060127) (xy -1.665086 0.020072) (xy -1.688239 0.168685) (xy -1.726370 0.299788) (xy -1.782394 0.419360) 84 | (xy -1.859224 0.533380) (xy -1.959775 0.647829) (xy -1.981964 0.670278) (xy -2.089460 0.768770) (xy -2.193752 0.845252) (xy -2.301863 0.904016) (xy -2.420813 0.949356) (xy -2.455333 0.959749) 85 | (xy -2.545004 0.978971) (xy -2.650778 0.991498) (xy -2.762442 0.996909) (xy -2.869783 0.994778) (xy -2.962588 0.984685) (xy -2.979472 0.981472) (xy -3.136977 0.936557) (xy -3.281064 0.869532) 86 | (xy -3.415621 0.778265) (xy -3.521019 0.684389) (xy -3.637179 0.556500) (xy -3.726923 0.427051) (xy -3.791950 0.292017) (xy -3.833960 0.147374) (xy -3.854651 -0.010904) (xy -3.857545 -0.112889) 87 | (xy -3.856759 -0.123213) (xy -3.664462 -0.123213) (xy -3.654288 0.028989) (xy -3.616421 0.182367) (xy -3.612611 0.193419) (xy -3.551088 0.327483) (xy -3.466173 0.451295) (xy -3.361742 0.561542) 88 | (xy -3.241673 0.654914) (xy -3.109845 0.728098) (xy -2.970134 0.777781) (xy -2.913945 0.790146) (xy -2.844533 0.797231) (xy -2.758751 0.798013) (xy -2.667596 0.793093) (xy -2.582063 0.783072) 89 | (xy -2.513146 0.768553) (xy -2.511778 0.768151) (xy -2.385915 0.718670) (xy -2.262150 0.647114) (xy -2.149542 0.558757) (xy -2.145107 0.554679) (xy -2.037002 0.439647) (xy -1.955620 0.318340) 90 | (xy -1.899665 0.187866) (xy -1.867843 0.045330) (xy -1.858824 -0.084666) (xy -1.861114 -0.192603) (xy -1.871931 -0.283816) (xy -1.893621 -0.369123) (xy -1.928531 -0.459337) (xy -1.950505 -0.507207) 91 | (xy -1.983659 -0.571346) (xy -2.018925 -0.625609) (xy -2.063022 -0.679132) (xy -2.121922 -0.740309) (xy -2.239343 -0.842306) (xy -2.361133 -0.917748) (xy -2.491330 -0.968300) (xy -2.633970 -0.995626) 92 | (xy -2.756122 -1.001889) (xy -2.917532 -0.990087) (xy -3.063903 -0.954561) (xy -3.195757 -0.895132) (xy -3.313618 -0.811618) (xy -3.317022 -0.808671) (xy -3.437991 -0.687167) (xy -3.533708 -0.556215) 93 | (xy -3.603684 -0.417469) (xy -3.647431 -0.272584) (xy -3.664462 -0.123213) (xy -3.856759 -0.123213) (xy -3.844190 -0.288167) (xy -3.805244 -0.452084) (xy -3.740108 -0.606285) (xy -3.648183 -0.752414) 94 | (xy -3.604312 -0.808330) (xy -3.480775 -0.936565) (xy -3.343927 -1.040104) (xy -3.194733 -1.118489) (xy -3.034155 -1.171261) (xy -2.863157 -1.197961) (xy -2.779889 -1.201370) (xy -2.646970 -1.197405) )(layer F.SilkS) (width 0.010000) 95 | ) 96 | (fp_poly (pts (xy -0.382279 -1.217938) (xy -0.248019 -1.172392) (xy -0.123493 -1.103776) (xy -0.011736 -1.012874) (xy 0.084219 -0.900469) (xy 0.096833 -0.882143) (xy 0.158928 -0.776504) (xy 0.200410 -0.672801) 97 | (xy 0.223868 -0.562243) (xy 0.231893 -0.436036) (xy 0.231946 -0.423333) (xy 0.223978 -0.287254) (xy 0.198884 -0.168243) (xy 0.154880 -0.059679) (xy 0.115798 0.007642) (xy 0.053748 0.088695) 98 | (xy -0.025212 0.170339) (xy -0.111479 0.243495) (xy -0.188229 0.295034) (xy -0.300724 0.345239) (xy -0.428370 0.377999) (xy -0.563204 0.392064) (xy -0.697263 0.386181) (xy -0.733778 0.380754) 99 | (xy -0.863157 0.344486) (xy -0.986708 0.283576) (xy -1.100697 0.201526) (xy -1.201391 0.101840) (xy -1.285053 -0.011981) (xy -1.347951 -0.136434) (xy -1.375987 -0.221589) (xy -1.390002 -0.302430) 100 | (xy -1.395953 -0.398398) (xy -1.395610 -0.414661) (xy -1.251306 -0.414661) (xy -1.238601 -0.290517) (xy -1.205263 -0.174009) (xy -1.172709 -0.105833) (xy -1.112371 -0.020522) (xy -1.033979 0.060483) 101 | (xy -0.944420 0.131753) (xy -0.850579 0.187858) (xy -0.759342 0.223366) (xy -0.753283 0.224927) (xy -0.715732 0.230424) (xy -0.658999 0.234217) (xy -0.592098 0.235836) (xy -0.549323 0.235540) 102 | (xy -0.480418 0.233544) (xy -0.430614 0.229498) (xy -0.390789 0.221427) (xy -0.351823 0.207358) (xy -0.304592 0.185316) (xy -0.294643 0.180416) (xy -0.186842 0.112994) (xy -0.089401 0.024702) 103 | (xy -0.008955 -0.077732) (xy 0.032081 -0.150818) (xy 0.051144 -0.192473) (xy 0.063978 -0.226968) (xy 0.071812 -0.261658) (xy 0.075876 -0.303899) (xy 0.077398 -0.361046) (xy 0.077611 -0.423333) 104 | (xy 0.077321 -0.497305) (xy 0.075543 -0.550575) (xy 0.070917 -0.590665) (xy 0.062084 -0.625094) (xy 0.047684 -0.661382) (xy 0.026355 -0.707052) (xy 0.026266 -0.707239) (xy -0.042877 -0.821779) 105 | (xy -0.129864 -0.917406) (xy -0.231254 -0.993230) (xy -0.343606 -1.048364) (xy -0.463480 -1.081918) (xy -0.587433 -1.093004) (xy -0.712025 -1.080733) (xy -0.833816 -1.044217) (xy -0.949364 -0.982567) 106 | (xy -0.973703 -0.965471) (xy -1.055285 -0.893285) (xy -1.129057 -0.805325) (xy -1.187716 -0.711067) (xy -1.212609 -0.655456) (xy -1.242826 -0.538841) (xy -1.251306 -0.414661) (xy -1.395610 -0.414661) 107 | (xy -1.393858 -0.497582) (xy -1.383731 -0.588067) (xy -1.375433 -0.627206) (xy -1.331648 -0.748428) (xy -1.266490 -0.865658) (xy -1.184432 -0.973278) (xy -1.089950 -1.065673) (xy -0.987518 -1.137225) 108 | (xy -0.955953 -1.153764) (xy -0.813109 -1.208327) (xy -0.667859 -1.236688) (xy -0.523237 -1.239631) (xy -0.382279 -1.217938) )(layer F.SilkS) (width 0.010000) 109 | ) 110 | (fp_poly (pts (xy 1.443818 -1.221704) (xy 1.578683 -1.181143) (xy 1.663032 -1.140738) (xy 1.736253 -1.090835) (xy 1.812611 -1.024341) (xy 1.884947 -0.948705) (xy 1.946103 -0.871379) (xy 1.987314 -0.803168) 111 | (xy 2.041613 -0.661225) (xy 2.070465 -0.513563) (xy 2.073829 -0.364416) (xy 2.051662 -0.218015) (xy 2.003924 -0.078590) (xy 1.994644 -0.058724) (xy 1.930359 0.045847) (xy 1.844053 0.144624) 112 | (xy 1.741925 0.232300) (xy 1.630172 0.303569) (xy 1.514992 0.353125) (xy 1.512795 0.353827) (xy 1.417491 0.375908) (xy 1.309175 0.387921) (xy 1.199615 0.389304) (xy 1.100578 0.379496) 113 | (xy 1.076335 0.374667) (xy 0.948175 0.331823) (xy 0.825523 0.264709) (xy 0.713252 0.177271) (xy 0.616239 0.073454) (xy 0.539357 -0.042796) (xy 0.524504 -0.071978) (xy 0.468917 -0.216826) 114 | (xy 0.441543 -0.361154) (xy 0.442071 -0.452052) (xy 0.593859 -0.452052) (xy 0.596362 -0.366158) (xy 0.606076 -0.284313) (xy 0.619401 -0.227061) (xy 0.670667 -0.108214) (xy 0.745235 -0.000183) 115 | (xy 0.838975 0.092847) (xy 0.947758 0.166697) (xy 1.053817 0.212881) (xy 1.140131 0.231931) (xy 1.239397 0.239031) (xy 1.341794 0.234602) (xy 1.437501 0.219068) (xy 1.516398 0.192989) 116 | (xy 1.576574 0.161184) (xy 1.639919 0.121731) (xy 1.673768 0.097543) (xy 1.717725 0.060043) (xy 1.760436 0.017536) (xy 1.797710 -0.024939) (xy 1.825356 -0.062340) (xy 1.839183 -0.089627) 117 | (xy 1.838194 -0.100215) (xy 1.821543 -0.109823) (xy 1.784751 -0.127884) (xy 1.733580 -0.151645) (xy 1.684590 -0.173603) (xy 1.541791 -0.236644) (xy 1.519681 -0.190280) (xy 1.481541 -0.137322) 118 | (xy 1.426336 -0.092848) (xy 1.365222 -0.065587) (xy 1.358194 -0.063924) (xy 1.329695 -0.055709) (xy 1.316384 -0.041163) (xy 1.312520 -0.011260) (xy 1.312333 0.008177) (xy 1.311047 0.046780) 119 | (xy 1.303693 0.064897) (xy 1.285030 0.070251) (xy 1.270000 0.070556) (xy 1.243699 0.068626) (xy 1.231426 0.057659) (xy 1.227855 0.029893) (xy 1.227667 0.008859) (xy 1.226386 -0.029644) 120 | (xy 1.217559 -0.048919) (xy 1.193709 -0.057956) (xy 1.168497 -0.062299) (xy 1.120463 -0.075058) (xy 1.065659 -0.096712) (xy 1.040799 -0.109058) (xy 0.972271 -0.146356) (xy 1.085631 -0.259716) 121 | (xy 1.140931 -0.228636) (xy 1.194622 -0.207248) (xy 1.252403 -0.197930) (xy 1.305064 -0.201043) (xy 1.343392 -0.216950) (xy 1.347369 -0.220496) (xy 1.363507 -0.251635) (xy 1.366016 -0.280156) 122 | (xy 1.362909 -0.291737) (xy 1.354531 -0.303487) (xy 1.338090 -0.316919) (xy 1.310790 -0.333546) (xy 1.269840 -0.354882) (xy 1.212443 -0.382442) (xy 1.135807 -0.417738) (xy 1.037138 -0.462284) 123 | (xy 0.994833 -0.481258) (xy 0.627944 -0.645642) (xy 0.611390 -0.594460) (xy 0.598792 -0.531613) (xy 0.593859 -0.452052) (xy 0.442071 -0.452052) (xy 0.442381 -0.505183) (xy 0.471431 -0.649135) 124 | (xy 0.524457 -0.784567) (xy 0.530318 -0.794354) (xy 0.705575 -0.794354) (xy 0.717714 -0.784602) (xy 0.750723 -0.766396) (xy 0.799518 -0.742365) (xy 0.857204 -0.715941) (xy 0.929048 -0.685369) 125 | (xy 0.978001 -0.667681) (xy 1.005967 -0.662280) (xy 1.014557 -0.666552) (xy 1.034619 -0.697414) (xy 1.071512 -0.731957) (xy 1.116027 -0.762990) (xy 1.158951 -0.783323) (xy 1.167052 -0.785596) 126 | (xy 1.201114 -0.795829) (xy 1.217395 -0.811602) (xy 1.223727 -0.842668) (xy 1.224950 -0.857706) (xy 1.229372 -0.895231) (xy 1.239340 -0.912402) (xy 1.260912 -0.917079) (xy 1.270811 -0.917222) 127 | (xy 1.296620 -0.915217) (xy 1.308660 -0.904030) (xy 1.312155 -0.875901) (xy 1.312333 -0.855568) (xy 1.313815 -0.816954) (xy 1.322381 -0.797712) (xy 1.344213 -0.789010) (xy 1.361001 -0.786017) 128 | (xy 1.401100 -0.776154) (xy 1.444248 -0.760641) (xy 1.481968 -0.743190) (xy 1.505784 -0.727512) (xy 1.509889 -0.720827) (xy 1.500602 -0.706072) (xy 1.477054 -0.679754) (xy 1.462187 -0.664858) 129 | (xy 1.414486 -0.618624) (xy 1.346994 -0.641538) (xy 1.294842 -0.654360) (xy 1.249511 -0.657072) (xy 1.239356 -0.655635) (xy 1.208339 -0.641298) (xy 1.184186 -0.617912) (xy 1.173665 -0.593698) 130 | (xy 1.177825 -0.580875) (xy 1.193020 -0.572384) (xy 1.229957 -0.554383) (xy 1.284539 -0.528718) (xy 1.352672 -0.497233) (xy 1.430259 -0.461774) (xy 1.513205 -0.424186) (xy 1.597414 -0.386313) 131 | (xy 1.678790 -0.350002) (xy 1.753239 -0.317097) (xy 1.816663 -0.289444) (xy 1.864968 -0.268887) (xy 1.894058 -0.257272) (xy 1.900349 -0.255366) (xy 1.911182 -0.267916) (xy 1.920876 -0.304792) 132 | (xy 1.926861 -0.347343) (xy 1.927910 -0.484663) (xy 1.901837 -0.616257) (xy 1.849568 -0.739518) (xy 1.772028 -0.851842) (xy 1.731986 -0.895293) (xy 1.638152 -0.976476) (xy 1.539933 -1.034245) 133 | (xy 1.429051 -1.073142) (xy 1.391724 -1.081884) (xy 1.264399 -1.095423) (xy 1.136034 -1.084037) (xy 1.013074 -1.048955) (xy 0.901962 -0.991406) (xy 0.896055 -0.987431) (xy 0.862068 -0.961004) 134 | (xy 0.821722 -0.924976) (xy 0.780462 -0.884868) (xy 0.743734 -0.846197) (xy 0.716982 -0.814485) (xy 0.705653 -0.795250) (xy 0.705575 -0.794354) (xy 0.530318 -0.794354) (xy 0.571553 -0.863200) 135 | (xy 0.636494 -0.945850) (xy 0.712385 -1.025433) (xy 0.792333 -1.094861) (xy 0.869444 -1.147048) (xy 0.885327 -1.155503) (xy 1.016561 -1.206533) (xy 1.157135 -1.234506) (xy 1.301428 -1.239527) 136 | (xy 1.443818 -1.221704) )(layer F.SilkS) (width 0.010000) 137 | ) 138 | (fp_poly (pts (xy 3.143733 -1.238197) (xy 3.272684 -1.223405) (xy 3.386246 -1.192699) (xy 3.494048 -1.143233) (xy 3.524690 -1.125526) (xy 3.642549 -1.038881) (xy 3.740606 -0.934727) (xy 3.818028 -0.816450) 139 | (xy 3.873986 -0.687434) (xy 3.907646 -0.551066) (xy 3.918177 -0.410731) (xy 3.904749 -0.269815) (xy 3.866529 -0.131703) (xy 3.802686 0.000219) (xy 3.801613 0.001994) (xy 3.750661 0.071969) 140 | (xy 3.682436 0.146056) (xy 3.605203 0.216353) (xy 3.527229 0.274960) (xy 3.495470 0.294634) (xy 3.376501 0.347682) (xy 3.244180 0.380484) (xy 3.105675 0.392173) (xy 2.968153 0.381879) 141 | (xy 2.897674 0.367097) (xy 2.800976 0.337076) (xy 2.717983 0.299527) (xy 2.640724 0.249694) (xy 2.561226 0.182821) (xy 2.516070 0.139451) (xy 2.421028 0.026991) (xy 2.351453 -0.096840) 142 | (xy 2.306964 -0.232993) (xy 2.287178 -0.382419) (xy 2.286000 -0.431867) (xy 2.286032 -0.432290) (xy 2.430655 -0.432290) (xy 2.439807 -0.310927) (xy 2.471257 -0.193600) (xy 2.524277 -0.083336) 143 | (xy 2.598137 0.016838) (xy 2.692108 0.103894) (xy 2.805459 0.174805) (xy 2.899649 0.214506) (xy 2.971456 0.230893) (xy 3.059607 0.238392) (xy 3.153626 0.236910) (xy 3.243037 0.226350) 144 | (xy 3.281396 0.217989) (xy 3.365916 0.189626) (xy 3.443325 0.148613) (xy 3.522007 0.090077) (xy 3.562206 0.054766) (xy 3.651654 -0.044444) (xy 3.715541 -0.155408) (xy 3.754079 -0.278623) 145 | (xy 3.767483 -0.414585) (xy 3.767499 -0.421063) (xy 3.756449 -0.555826) (xy 3.722604 -0.676172) (xy 3.664260 -0.786166) (xy 3.579709 -0.889874) (xy 3.564129 -0.905666) (xy 3.460195 -0.989997) 146 | (xy 3.345601 -1.049993) (xy 3.223929 -1.085685) (xy 3.098759 -1.097104) (xy 2.973673 -1.084283) (xy 2.852251 -1.047251) (xy 2.738075 -0.986040) (xy 2.634725 -0.900682) (xy 2.631636 -0.897551) 147 | (xy 2.544294 -0.790319) (xy 2.482169 -0.675013) (xy 2.444533 -0.554661) (xy 2.430655 -0.432290) (xy 2.286032 -0.432290) (xy 2.296987 -0.576195) (xy 2.330934 -0.707659) (xy 2.389320 -0.829725) 148 | (xy 2.473621 -0.945858) (xy 2.532277 -1.009167) (xy 2.643710 -1.104925) (xy 2.761850 -1.174367) (xy 2.889490 -1.218538) (xy 3.029422 -1.238484) (xy 3.143733 -1.238197) )(layer F.SilkS) (width 0.010000) 149 | ) 150 | (fp_poly (pts (xy -2.973747 -0.430169) (xy -2.941611 -0.423150) (xy -2.906505 -0.406461) (xy -2.865620 -0.379884) (xy -2.826162 -0.349130) (xy -2.795338 -0.319909) (xy -2.780352 -0.297935) (xy -2.779889 -0.294962) 151 | (xy -2.791422 -0.282257) (xy -2.821019 -0.262789) (xy -2.846410 -0.248956) (xy -2.912931 -0.215149) (xy -2.950849 -0.255741) (xy -2.998738 -0.289187) (xy -3.052337 -0.299073) (xy -3.104446 -0.286643) 152 | (xy -3.147865 -0.253140) (xy -3.169139 -0.218039) (xy -3.186952 -0.149953) (xy -3.187747 -0.079033) (xy -3.173175 -0.012355) (xy -3.144884 0.043006) (xy -3.104521 0.079973) (xy -3.099038 0.082793) 153 | (xy -3.048861 0.092871) (xy -2.994271 0.083359) (xy -2.946921 0.057464) (xy -2.926859 0.035432) (xy -2.904609 0.001475) (xy -2.842249 0.031771) (xy -2.806072 0.052275) (xy -2.783570 0.070663) 154 | (xy -2.779889 0.077744) (xy -2.790266 0.099470) (xy -2.816747 0.130614) (xy -2.852357 0.164350) (xy -2.890122 0.193852) (xy -2.912449 0.207487) (xy -2.964446 0.224633) (xy -3.031461 0.233858) 155 | (xy -3.101245 0.234521) (xy -3.161551 0.225983) (xy -3.176622 0.221287) (xy -3.259265 0.178906) (xy -3.319579 0.121147) (xy -3.358621 0.046342) (xy -3.377446 -0.047174) (xy -3.379611 -0.099154) 156 | (xy -3.369731 -0.200860) (xy -3.339281 -0.284673) (xy -3.287050 -0.353235) (xy -3.248268 -0.385642) (xy -3.208142 -0.411115) (xy -3.168857 -0.425689) (xy -3.118446 -0.433115) (xy -3.090806 -0.435021) 157 | (xy -3.030021 -0.435289) (xy -2.973747 -0.430169) )(layer F.SilkS) (width 0.010000) 158 | ) 159 | (fp_poly (pts (xy -2.364334 -0.434383) (xy -2.281417 -0.412317) (xy -2.210815 -0.371679) (xy -2.194666 -0.357429) (xy -2.165699 -0.326821) (xy -2.147751 -0.303092) (xy -2.144889 -0.295924) (xy -2.156435 -0.282669) 160 | (xy -2.186064 -0.262836) (xy -2.211410 -0.248956) (xy -2.277931 -0.215149) (xy -2.315849 -0.255741) (xy -2.363304 -0.287408) (xy -2.420732 -0.297585) (xy -2.478206 -0.284789) (xy -2.485678 -0.281086) 161 | (xy -2.517582 -0.249492) (xy -2.540009 -0.198695) (xy -2.551808 -0.136461) (xy -2.551829 -0.070553) (xy -2.538924 -0.008735) (xy -2.529395 0.014095) (xy -2.492559 0.061674) (xy -2.444021 0.088973) 162 | (xy -2.390631 0.095141) (xy -2.339238 0.079329) (xy -2.298200 0.042767) (xy -2.268184 0.002167) (xy -2.206536 0.032118) (xy -2.166265 0.053465) (xy -2.148857 0.071082) (xy -2.151177 0.092216) 163 | (xy -2.168058 0.121019) (xy -2.214093 0.168044) (xy -2.279367 0.204372) (xy -2.356270 0.228004) (xy -2.437190 0.236940) (xy -2.514518 0.229181) (xy -2.545119 0.220085) (xy -2.622903 0.176975) 164 | (xy -2.682355 0.113500) (xy -2.722193 0.031783) (xy -2.741137 -0.066054) (xy -2.742590 -0.107222) (xy -2.733111 -0.205642) (xy -2.704553 -0.285361) (xy -2.655284 -0.349865) (xy -2.612722 -0.384363) 165 | (xy -2.537413 -0.420885) (xy -2.452142 -0.437398) (xy -2.364334 -0.434383) )(layer F.SilkS) (width 0.010000) 166 | ) 167 | (fp_poly (pts (xy -0.569562 -0.674214) (xy -0.373945 -0.670278) (xy -0.370007 -0.483305) (xy -0.366070 -0.296333) (xy -0.451556 -0.296333) (xy -0.451556 0.098778) (xy -0.705556 0.098778) (xy -0.705556 -0.296333) 168 | (xy -0.804333 -0.296333) (xy -0.804333 -0.470994) (xy -0.803467 -0.550553) (xy -0.800601 -0.605855) (xy -0.795332 -0.640821) (xy -0.787259 -0.659372) (xy -0.784756 -0.661903) (xy -0.761077 -0.669354) 169 | (xy -0.711275 -0.673706) (xy -0.634620 -0.675001) (xy -0.569562 -0.674214) )(layer F.SilkS) (width 0.010000) 170 | ) 171 | (fp_poly (pts (xy -0.531919 -0.934167) (xy -0.494308 -0.904783) (xy -0.473246 -0.863967) (xy -0.472077 -0.818391) (xy -0.494142 -0.774730) (xy -0.496113 -0.772498) (xy -0.539463 -0.736928) (xy -0.584290 -0.727687) 172 | (xy -0.629361 -0.739932) (xy -0.669704 -0.769725) (xy -0.689555 -0.810339) (xy -0.690458 -0.854967) (xy -0.673957 -0.896800) (xy -0.641597 -0.929028) (xy -0.594923 -0.944844) (xy -0.582737 -0.945444) 173 | (xy -0.531919 -0.934167) )(layer F.SilkS) (width 0.010000) 174 | ) 175 | (fp_poly (pts (xy 3.212579 -0.835820) (xy 3.308079 -0.799392) (xy 3.388062 -0.739591) (xy 3.451667 -0.656959) (xy 3.474093 -0.613833) (xy 3.496199 -0.542928) (xy 3.507259 -0.457479) (xy 3.507198 -0.367908) 176 | (xy 3.495944 -0.284634) (xy 3.476826 -0.225061) (xy 3.419969 -0.133601) (xy 3.344760 -0.061429) (xy 3.255165 -0.010562) (xy 3.155155 0.016983) (xy 3.048696 0.019188) (xy 3.008266 0.013138) 177 | (xy 2.920013 -0.018059) (xy 2.843162 -0.072496) (xy 2.782889 -0.145889) (xy 2.758200 -0.193927) (xy 2.739873 -0.243163) (xy 2.737401 -0.273520) (xy 2.754123 -0.289489) (xy 2.793376 -0.295563) 178 | (xy 2.834292 -0.296333) (xy 2.885364 -0.295833) (xy 2.915263 -0.292427) (xy 2.931034 -0.283254) (xy 2.939726 -0.265455) (xy 2.943769 -0.251908) (xy 2.972319 -0.199241) (xy 3.021192 -0.164812) 179 | (xy 3.087929 -0.150200) (xy 3.102724 -0.149795) (xy 3.175650 -0.160780) (xy 3.231798 -0.193925) (xy 3.271376 -0.249515) (xy 3.294596 -0.327836) (xy 3.301690 -0.420259) (xy 3.296017 -0.509557) 180 | (xy 3.277393 -0.577697) (xy 3.244326 -0.629309) (xy 3.229735 -0.643731) (xy 3.174043 -0.675880) (xy 3.110393 -0.685209) (xy 3.046407 -0.672432) (xy 2.989705 -0.638262) (xy 2.971419 -0.619540) 181 | (xy 2.942824 -0.578248) (xy 2.937313 -0.550445) (xy 2.954948 -0.537212) (xy 2.966708 -0.536222) (xy 2.979736 -0.533647) (xy 2.979141 -0.523528) (xy 2.962734 -0.502272) (xy 2.928324 -0.466288) 182 | (xy 2.917319 -0.455237) (xy 2.836333 -0.374251) (xy 2.755348 -0.455237) (xy 2.716263 -0.495527) (xy 2.695999 -0.520227) (xy 2.692441 -0.532677) (xy 2.703477 -0.536218) (xy 2.704125 -0.536222) 183 | (xy 2.725193 -0.542797) (xy 2.740764 -0.566657) (xy 2.751537 -0.599260) (xy 2.790022 -0.688841) (xy 2.848972 -0.760085) (xy 2.926119 -0.811384) (xy 3.019200 -0.841129) (xy 3.102425 -0.848330) 184 | (xy 3.212579 -0.835820) )(layer F.SilkS) (width 0.010000) 185 | ) 186 | ) 187 | -------------------------------------------------------------------------------- /kicad/project.pretty/cc_by_nc_sa_small_9mm_front_silk_screen.kicad_mod: -------------------------------------------------------------------------------- 1 | (module LOGO (layer F.Cu) 2 | (at 0 0) 3 | (fp_text reference "G***" (at 0 0) (layer F.SilkS) hide 4 | (effects (font (thickness 0.3))) 5 | ) 6 | (fp_text value "LOGO" (at 0.75 0) (layer F.SilkS) hide 7 | (effects (font (thickness 0.3))) 8 | ) 9 | (fp_poly (pts (xy 4.618182 0.877455) (xy -4.618181 0.877455) (xy -4.618181 -0.738909) (xy -4.502727 -0.738909) (xy -4.502727 0.762000) (xy 4.502728 0.762000) (xy 4.502728 -0.738909) (xy -4.502727 -0.738909) 10 | (xy -4.618181 -0.738909) (xy -4.618181 -0.854363) (xy 4.618182 -0.854363) (xy 4.618182 0.877455) )(layer F.SilkS) (width 0.010000) 11 | ) 12 | (fp_poly (pts (xy -3.557706 -0.558063) (xy -3.699855 -0.443869) (xy -3.802092 -0.307781) (xy -3.863228 -0.151883) (xy -3.882159 0.010503) (xy -3.860075 0.181607) (xy -3.796161 0.338347) (xy -3.693922 0.475158) 13 | (xy -3.556864 0.586475) (xy -3.498272 0.619961) (xy -3.405909 0.667595) (xy -3.565731 0.668616) (xy -3.650758 0.668004) (xy -3.705921 0.660599) (xy -3.747535 0.640070) (xy -3.791914 0.600084) 14 | (xy -3.821737 0.569253) (xy -3.913703 0.461301) (xy -3.975343 0.355647) (xy -4.011588 0.239038) (xy -4.027364 0.098220) (xy -4.029115 0.011546) (xy -4.027648 -0.099921) (xy -4.021908 -0.178965) 15 | (xy -4.009457 -0.239311) (xy -3.987858 -0.294681) (xy -3.967590 -0.334818) (xy -3.915574 -0.420211) (xy -3.853825 -0.504590) (xy -3.826179 -0.536863) (xy -3.779012 -0.584483) (xy -3.738362 -0.610413) 16 | (xy -3.687116 -0.621215) (xy -3.608162 -0.623449) (xy -3.600319 -0.623454) (xy -3.454595 -0.623454) (xy -3.557706 -0.558063) )(layer F.SilkS) (width 0.010000) 17 | ) 18 | (fp_poly (pts (xy -2.637616 -0.621804) (xy -2.584692 -0.614087) (xy -2.546016 -0.592938) (xy -2.505622 -0.551913) (xy -2.484182 -0.527063) (xy -2.392358 -0.403516) (xy -2.333283 -0.279826) (xy -2.300828 -0.140048) 19 | (xy -2.290636 -0.023422) (xy -2.296144 0.157300) (xy -2.333292 0.312057) (xy -2.405720 0.451607) (xy -2.485653 0.553065) (xy -2.590461 0.669637) (xy -2.895405 0.669637) (xy -2.792748 0.604242) 20 | (xy -2.682391 0.519452) (xy -2.582404 0.416341) (xy -2.505825 0.309295) (xy -2.481019 0.260287) (xy -2.450456 0.143995) (xy -2.442961 0.007019) (xy -2.458118 -0.131557) (xy -2.492004 -0.244736) 21 | (xy -2.555573 -0.353669) (xy -2.646315 -0.460943) (xy -2.748811 -0.549814) (xy -2.805545 -0.585275) (xy -2.874818 -0.621605) (xy -2.720754 -0.622530) (xy -2.637616 -0.621804) )(layer F.SilkS) (width 0.010000) 22 | ) 23 | (fp_poly (pts (xy 4.387273 0.669637) (xy 1.166091 0.669637) (xy 0.784361 0.669561) (xy 0.415511 0.669340) (xy 0.062158 0.668983) (xy -0.273080 0.668497) (xy -0.587586 0.667893) (xy -0.878742 0.667178) 24 | (xy -1.143931 0.666362) (xy -1.380535 0.665453) (xy -1.585938 0.664459) (xy -1.757521 0.663390) (xy -1.892667 0.662254) (xy -1.988759 0.661061) (xy -2.043180 0.659818) (xy -2.055091 0.658893) 25 | (xy -2.043714 0.635113) (xy -2.014330 0.584900) (xy -1.984990 0.537666) (xy -1.887549 0.346125) (xy -1.836149 0.151184) (xy -1.830789 -0.047195) (xy -1.871472 -0.249051) (xy -1.893063 -0.300182) 26 | (xy -1.547091 -0.300182) (xy -1.547091 0.346364) (xy -1.361622 0.346364) (xy -1.252491 0.341864) (xy -1.157818 0.329726) (xy -1.097935 0.313682) (xy -1.019495 0.262547) (xy -0.977318 0.195277) 27 | (xy -0.973960 0.121093) (xy -1.011974 0.049214) (xy -1.021772 0.038835) (xy -1.055702 0.001192) (xy -1.057848 -0.023949) (xy -1.033318 -0.052479) (xy -0.997085 -0.114647) (xy -1.005686 -0.182563) 28 | (xy -1.049586 -0.243504) (xy -1.079810 -0.270071) (xy -1.113347 -0.286750) (xy -1.118797 -0.287780) (xy -0.969818 -0.287780) (xy -0.957418 -0.264549) (xy -0.924303 -0.213118) (xy -0.876598 -0.142870) 29 | (xy -0.854363 -0.110977) (xy -0.797467 -0.027284) (xy -0.763056 0.033950) (xy -0.745569 0.086955) (xy -0.739447 0.145963) (xy -0.738909 0.184500) (xy -0.736389 0.258656) (xy -0.729888 0.312767) 30 | (xy -0.723515 0.330970) (xy -0.691826 0.341536) (xy -0.635723 0.346337) (xy -0.631151 0.346364) (xy -0.554181 0.346364) (xy -0.554181 0.212978) (xy -0.552254 0.147842) (xy -0.543046 0.095448) 31 | (xy -0.537004 0.080818) (xy -0.392545 0.080818) (xy -0.389913 0.111850) (xy -0.375062 0.129134) (xy -0.337558 0.136684) (xy -0.266968 0.138512) (xy -0.242454 0.138546) (xy -0.161772 0.137533) 32 | (xy -0.116833 0.131821) (xy -0.097203 0.117397) (xy -0.092450 0.090247) (xy -0.092363 0.080818) (xy -0.094995 0.049787) (xy -0.109846 0.032502) (xy -0.147350 0.024953) (xy -0.217941 0.023124) 33 | (xy -0.242454 0.023091) (xy -0.323137 0.024103) (xy -0.368076 0.029815) (xy -0.387705 0.044240) (xy -0.392459 0.071390) (xy -0.392545 0.080818) (xy -0.537004 0.080818) (xy -0.521422 0.043091) 34 | (xy -0.482246 -0.021934) (xy -0.425829 -0.104522) (xy -0.297477 -0.288636) (xy -0.385132 -0.296130) (xy -0.443432 -0.294706) (xy -0.491517 -0.274197) (xy -0.539404 -0.227368) (xy -0.597108 -0.146983) 35 | (xy -0.602136 -0.139361) (xy -0.638546 -0.083961) (xy -0.712927 -0.192071) (xy -0.759202 -0.254536) (xy -0.796796 -0.286897) (xy -0.840515 -0.298818) (xy -0.878564 -0.300182) (xy 0.046182 -0.300182) 36 | (xy 0.046182 0.346364) (xy 0.206146 0.346364) (xy 0.219364 -0.098992) (xy 0.342255 0.123686) (xy 0.465147 0.346364) (xy 0.669637 0.346364) (xy 2.540674 0.346364) (xy 2.633272 0.346364) 37 | (xy 2.696751 0.341355) (xy 2.730935 0.320847) (xy 2.747819 0.288637) (xy 2.764301 0.256428) (xy 2.790893 0.239085) (xy 2.840238 0.232091) (xy 2.909455 0.230909) (xy 2.988058 0.232660) 38 | (xy 3.033167 0.240925) (xy 3.057427 0.260218) (xy 3.071091 0.288637) (xy 3.096647 0.329400) (xy 3.141788 0.344994) (xy 3.174429 0.346364) (xy 3.228077 0.340838) (xy 3.255060 0.327238) 39 | (xy 3.255819 0.324221) (xy 3.247702 0.295753) (xy 3.225423 0.232868) (xy 3.192091 0.143978) (xy 3.150815 0.037499) (xy 3.136382 0.000949) (xy 3.016946 -0.300182) (xy 2.798847 -0.300182) 40 | (xy 2.713176 -0.086591) (xy 2.670573 0.019774) (xy 2.629035 0.123738) (xy 2.595147 0.208809) (xy 2.584089 0.236682) (xy 2.540674 0.346364) (xy 0.669637 0.346364) (xy 0.669637 0.008429) 41 | (xy 0.804334 0.008429) (xy 0.823470 0.132072) (xy 0.878485 0.232549) (xy 0.965789 0.303434) (xy 0.970604 0.305919) (xy 1.047389 0.330957) (xy 1.143531 0.344088) (xy 1.240372 0.344476) 42 | (xy 1.319252 0.331288) (xy 1.340791 0.322460) (xy 1.377122 0.280127) (xy 1.385455 0.240086) (xy 1.379910 0.199016) (xy 1.354670 0.193788) (xy 1.333500 0.200490) (xy 1.277409 0.212322) 43 | (xy 1.202074 0.218429) (xy 1.180812 0.218675) (xy 1.087809 0.202154) (xy 1.026913 0.153138) (xy 1.000671 0.080818) (xy 1.524000 0.080818) (xy 1.526934 0.112812) (xy 1.542964 0.130085) 44 | (xy 1.582934 0.137156) (xy 1.657690 0.138544) (xy 1.662546 0.138546) (xy 1.739329 0.137323) (xy 1.780785 0.130644) (xy 1.797756 0.113990) (xy 1.801088 0.082842) (xy 1.801091 0.080818) 45 | (xy 1.798158 0.048825) (xy 1.782128 0.031552) (xy 1.742157 0.024481) (xy 1.667402 0.023092) (xy 1.662546 0.023091) (xy 1.585762 0.024313) (xy 1.544307 0.030992) (xy 1.527335 0.047647) 46 | (xy 1.524003 0.078795) (xy 1.524000 0.080818) (xy 1.000671 0.080818) (xy 0.996818 0.070202) (xy 0.992909 0.013342) (xy 1.007941 -0.084395) (xy 1.022742 -0.104863) (xy 1.931329 -0.104863) 47 | (xy 1.953721 -0.025077) (xy 1.989347 0.016437) (xy 2.028381 0.036404) (xy 2.095221 0.059918) (xy 2.147575 0.074647) (xy 2.231885 0.102081) (xy 2.274931 0.132177) (xy 2.282459 0.148756) 48 | (xy 2.273547 0.195953) (xy 2.229382 0.222715) (xy 2.156747 0.227740) (xy 2.062421 0.209724) (xy 2.026228 0.197980) (xy 1.939637 0.167078) (xy 1.939637 0.243570) (xy 1.943004 0.285985) 49 | (xy 1.958584 0.313673) (xy 1.994598 0.330078) (xy 2.059262 0.338643) (xy 2.160798 0.342813) (xy 2.177465 0.343219) (xy 2.273444 0.338566) (xy 2.353156 0.322161) (xy 2.376712 0.312581) 50 | (xy 2.435472 0.270030) (xy 2.464125 0.211565) (xy 2.470728 0.136657) (xy 2.453644 0.063723) (xy 2.400428 0.006134) (xy 2.308128 -0.038101) (xy 2.173796 -0.070969) (xy 2.159000 -0.073529) 51 | (xy 2.117736 -0.101459) (xy 2.105014 -0.136257) (xy 2.102880 -0.164650) (xy 2.112940 -0.180183) (xy 2.144683 -0.185487) (xy 2.207597 -0.183196) (xy 2.260878 -0.179513) (xy 2.424546 -0.167802) 52 | (xy 2.424546 -0.232331) (xy 2.421297 -0.269389) (xy 2.404131 -0.290802) (xy 2.361917 -0.303514) (xy 2.295204 -0.313019) (xy 2.154614 -0.317660) (xy 2.047365 -0.292630) (xy 1.974565 -0.238304) 53 | (xy 1.949544 -0.195914) (xy 1.931329 -0.104863) (xy 1.022742 -0.104863) (xy 1.054186 -0.148345) (xy 1.133372 -0.180232) (xy 1.191600 -0.184727) (xy 1.266097 -0.179544) (xy 1.327012 -0.166559) 54 | (xy 1.340791 -0.160824) (xy 1.372141 -0.149649) (xy 1.383962 -0.169338) (xy 1.385455 -0.205215) (xy 1.378378 -0.253475) (xy 1.348530 -0.282506) (xy 1.301899 -0.301085) (xy 1.176437 -0.322716) 55 | (xy 1.057757 -0.307444) (xy 0.953559 -0.260059) (xy 0.871542 -0.185351) (xy 0.819405 -0.088109) (xy 0.804334 0.008429) (xy 0.669637 0.008429) (xy 0.669637 -0.300182) (xy 0.484909 -0.300182) 56 | (xy 0.484346 -0.098136) (xy 0.483782 0.103909) (xy 0.367028 -0.098136) (xy 0.250274 -0.300182) (xy 0.046182 -0.300182) (xy -0.878564 -0.300182) (xy -0.936017 -0.297397) (xy -0.967673 -0.290451) 57 | (xy -0.969818 -0.287780) (xy -1.118797 -0.287780) (xy -1.161305 -0.295812) (xy -1.234789 -0.299528) (xy -1.326677 -0.300182) (xy -1.547091 -0.300182) (xy -1.893063 -0.300182) (xy -1.958197 -0.454422) 58 | (xy -2.007936 -0.541063) (xy -2.058857 -0.623454) (xy 4.387273 -0.623454) (xy 4.387273 0.669637) )(layer F.SilkS) (width 0.010000) 59 | ) 60 | (fp_poly (pts (xy -3.331718 -0.222226) (xy -3.258037 -0.199752) (xy -3.205363 -0.168848) (xy -3.186545 -0.136702) (xy -3.204527 -0.111807) (xy -3.234648 -0.091335) (xy -3.282036 -0.078461) (xy -3.323057 -0.102069) 61 | (xy -3.382789 -0.132727) (xy -3.439718 -0.123562) (xy -3.484616 -0.080482) (xy -3.508251 -0.009396) (xy -3.509818 0.017487) (xy -3.492687 0.092907) (xy -3.448689 0.143024) (xy -3.388913 0.161977) 62 | (xy -3.324450 0.143907) (xy -3.302205 0.127186) (xy -3.265644 0.104939) (xy -3.228570 0.118878) (xy -3.221813 0.123683) (xy -3.194140 0.160868) (xy -3.212233 0.198782) (xy -3.276274 0.237734) 63 | (xy -3.292531 0.244811) (xy -3.375395 0.271396) (xy -3.446838 0.270179) (xy -3.528000 0.242302) (xy -3.601723 0.187573) (xy -3.646669 0.107478) (xy -3.661187 0.014030) (xy -3.643625 -0.080758) 64 | (xy -3.592331 -0.164875) (xy -3.585051 -0.172469) (xy -3.535040 -0.210957) (xy -3.474525 -0.228023) (xy -3.413493 -0.230909) (xy -3.331718 -0.222226) )(layer F.SilkS) (width 0.010000) 65 | ) 66 | (fp_poly (pts (xy -2.809395 -0.221819) (xy -2.737623 -0.198133) (xy -2.690391 -0.165225) (xy -2.678545 -0.138048) (xy -2.696565 -0.112072) (xy -2.726648 -0.091335) (xy -2.774036 -0.078461) (xy -2.815057 -0.102069) 67 | (xy -2.875497 -0.135445) (xy -2.931001 -0.123068) (xy -2.965872 -0.087226) (xy -2.996426 -0.014074) (xy -2.996862 0.062510) (xy -2.967210 0.123629) (xy -2.965532 0.125351) (xy -2.908809 0.156237) 68 | (xy -2.844577 0.156844) (xy -2.794402 0.127485) (xy -2.758457 0.105711) (xy -2.722302 0.116752) (xy -2.684924 0.147041) (xy -2.688722 0.179620) (xy -2.735040 0.219409) (xy -2.753591 0.231162) 69 | (xy -2.847841 0.270048) (xy -2.943884 0.268068) (xy -3.017318 0.243430) (xy -3.085491 0.200311) (xy -3.124445 0.137703) (xy -3.139629 0.045326) (xy -3.140363 0.011287) (xy -3.133899 -0.066541) 70 | (xy -3.108461 -0.122734) (xy -3.072867 -0.163412) (xy -3.019994 -0.207089) (xy -2.963456 -0.226780) (xy -2.893277 -0.230909) (xy -2.809395 -0.221819) )(layer F.SilkS) (width 0.010000) 71 | ) 72 | (fp_poly (pts (xy -1.264426 0.073718) (xy -1.197762 0.083940) (xy -1.165469 0.105604) (xy -1.158006 0.125474) (xy -1.169047 0.175514) (xy -1.215230 0.213288) (xy -1.285697 0.230588) (xy -1.297504 0.230909) 73 | (xy -1.340908 0.226035) (xy -1.358893 0.202207) (xy -1.362363 0.148763) (xy -1.362363 0.066618) (xy -1.264426 0.073718) )(layer F.SilkS) (width 0.010000) 74 | ) 75 | (fp_poly (pts (xy -1.283188 -0.180946) (xy -1.275772 -0.180348) (xy -1.216848 -0.170172) (xy -1.192269 -0.148116) (xy -1.189181 -0.127000) (xy -1.199119 -0.094751) (xy -1.236659 -0.078535) (xy -1.275772 -0.073651) 76 | (xy -1.332470 -0.071989) (xy -1.356864 -0.085295) (xy -1.362341 -0.121819) (xy -1.362363 -0.127000) (xy -1.358028 -0.166265) (xy -1.336099 -0.181498) (xy -1.283188 -0.180946) )(layer F.SilkS) (width 0.010000) 77 | ) 78 | (fp_poly (pts (xy 2.922071 -0.095757) (xy 2.945606 -0.045667) (xy 2.958730 -0.011545) (xy 2.996095 0.092364) (xy 2.819894 0.092364) (xy 2.855300 -0.011545) (xy 2.878947 -0.072375) (xy 2.899116 -0.109781) 79 | (xy 2.906035 -0.115454) (xy 2.922071 -0.095757) )(layer F.SilkS) (width 0.010000) 80 | ) 81 | ) 82 | -------------------------------------------------------------------------------- /kicad/project.pretty/cc_by_nc_sa_small_front_silk_screen.kicad_mod: -------------------------------------------------------------------------------- 1 | (module LOGO (layer F.Cu) 2 | (at 0 0) 3 | (fp_text reference "G***" (at 0 0) (layer F.SilkS) hide 4 | (effects (font (thickness 0.3))) 5 | ) 6 | (fp_text value "LOGO" (at 0.75 0) (layer F.SilkS) hide 7 | (effects (font (thickness 0.3))) 8 | ) 9 | (fp_poly (pts (xy 2.822222 0.536222) (xy -2.822222 0.536222) (xy -2.822222 -0.451556) (xy -2.751667 -0.451556) (xy -2.751667 0.465666) (xy 2.751666 0.465666) (xy 2.751666 -0.451556) (xy -2.751667 -0.451556) 10 | (xy -2.822222 -0.451556) (xy -2.822222 -0.522111) (xy 2.822222 -0.522111) (xy 2.822222 0.536222) )(layer F.SilkS) (width 0.010000) 11 | ) 12 | (fp_poly (pts (xy -2.174154 -0.341039) (xy -2.261023 -0.271254) (xy -2.323501 -0.188089) (xy -2.360862 -0.092818) (xy -2.372431 0.006418) (xy -2.358935 0.110981) (xy -2.319877 0.206767) (xy -2.257397 0.290374) 13 | (xy -2.173639 0.358401) (xy -2.137834 0.378864) (xy -2.081389 0.407975) (xy -2.179058 0.408598) (xy -2.231019 0.408224) (xy -2.264730 0.403699) (xy -2.290161 0.391153) (xy -2.317281 0.366717) 14 | (xy -2.335506 0.347876) (xy -2.391708 0.281905) (xy -2.429377 0.217339) (xy -2.451526 0.146079) (xy -2.461167 0.060023) (xy -2.462237 0.007055) (xy -2.461341 -0.061063) (xy -2.457833 -0.109368) 15 | (xy -2.450224 -0.146246) (xy -2.437025 -0.180083) (xy -2.424639 -0.204611) (xy -2.392851 -0.256796) (xy -2.355116 -0.308361) (xy -2.338221 -0.328084) (xy -2.309397 -0.357184) (xy -2.284555 -0.373031) 16 | (xy -2.253238 -0.379632) (xy -2.204988 -0.380997) (xy -2.200196 -0.381000) (xy -2.111142 -0.381000) (xy -2.174154 -0.341039) )(layer F.SilkS) (width 0.010000) 17 | ) 18 | (fp_poly (pts (xy -1.611877 -0.379992) (xy -1.579535 -0.375276) (xy -1.555899 -0.362352) (xy -1.531214 -0.337281) (xy -1.518112 -0.322095) (xy -1.461997 -0.246594) (xy -1.425896 -0.171005) (xy -1.406062 -0.085586) 19 | (xy -1.399834 -0.014314) (xy -1.403200 0.096128) (xy -1.425901 0.190701) (xy -1.470163 0.275982) (xy -1.519011 0.337984) (xy -1.583060 0.409222) (xy -1.769415 0.409222) (xy -1.706680 0.369258) 20 | (xy -1.639239 0.317442) (xy -1.578136 0.254430) (xy -1.531338 0.189013) (xy -1.516178 0.159064) (xy -1.497502 0.087996) (xy -1.492921 0.004289) (xy -1.502184 -0.080397) (xy -1.522892 -0.149562) 21 | (xy -1.561740 -0.216132) (xy -1.617193 -0.281688) (xy -1.679829 -0.335998) (xy -1.714500 -0.357668) (xy -1.756834 -0.379870) (xy -1.662683 -0.380435) (xy -1.611877 -0.379992) )(layer F.SilkS) (width 0.010000) 22 | ) 23 | (fp_poly (pts (xy 2.681111 0.409222) (xy 0.712611 0.409222) (xy 0.479331 0.409176) (xy 0.253923 0.409041) (xy 0.037985 0.408822) (xy -0.166883 0.408526) (xy -0.359081 0.408156) (xy -0.537009 0.407720) 24 | (xy -0.699069 0.407221) (xy -0.843661 0.406665) (xy -0.969185 0.406058) (xy -1.074041 0.405405) (xy -1.156630 0.404710) (xy -1.215353 0.403981) (xy -1.248610 0.403221) (xy -1.255889 0.402656) 25 | (xy -1.248937 0.388124) (xy -1.230980 0.357438) (xy -1.213050 0.328573) (xy -1.153503 0.211520) (xy -1.122091 0.092390) (xy -1.118816 -0.028842) (xy -1.143678 -0.152198) (xy -1.156872 -0.183445) 26 | (xy -0.945445 -0.183445) (xy -0.945445 0.211666) (xy -0.832103 0.211666) (xy -0.765412 0.208916) (xy -0.707556 0.201498) (xy -0.670961 0.191694) (xy -0.623025 0.160445) (xy -0.597251 0.119336) 27 | (xy -0.595198 0.074001) (xy -0.618429 0.030075) (xy -0.624417 0.023732) (xy -0.645152 0.000728) (xy -0.646463 -0.014636) (xy -0.631472 -0.032071) (xy -0.609330 -0.070063) (xy -0.614586 -0.111567) 28 | (xy -0.641414 -0.148808) (xy -0.659884 -0.165044) (xy -0.680379 -0.175237) (xy -0.683708 -0.175866) (xy -0.592667 -0.175866) (xy -0.585089 -0.161669) (xy -0.564852 -0.130239) (xy -0.535699 -0.087310) 29 | (xy -0.522111 -0.067820) (xy -0.487341 -0.016674) (xy -0.466312 0.020747) (xy -0.455626 0.053139) (xy -0.451885 0.089199) (xy -0.451556 0.112750) (xy -0.450016 0.158067) (xy -0.446043 0.191135) 30 | (xy -0.442148 0.202259) (xy -0.422783 0.208716) (xy -0.388498 0.211650) (xy -0.385704 0.211666) (xy -0.338667 0.211666) (xy -0.338667 0.130152) (xy -0.337489 0.090347) (xy -0.331862 0.058329) 31 | (xy -0.328170 0.049389) (xy -0.239889 0.049389) (xy -0.238281 0.068352) (xy -0.229205 0.078915) (xy -0.206286 0.083529) (xy -0.163147 0.084646) (xy -0.148167 0.084666) (xy -0.098861 0.084048) 32 | (xy -0.071398 0.080557) (xy -0.059402 0.071742) (xy -0.056498 0.055150) (xy -0.056445 0.049389) (xy -0.058053 0.030425) (xy -0.067129 0.019862) (xy -0.090048 0.015248) (xy -0.133187 0.014131) 33 | (xy -0.148167 0.014111) (xy -0.197473 0.014729) (xy -0.224936 0.018220) (xy -0.236931 0.027035) (xy -0.239836 0.043627) (xy -0.239889 0.049389) (xy -0.328170 0.049389) (xy -0.318647 0.026333) 34 | (xy -0.294706 -0.013405) (xy -0.260229 -0.063875) (xy -0.181792 -0.176389) (xy -0.235359 -0.180969) (xy -0.270987 -0.180098) (xy -0.300372 -0.167566) (xy -0.329636 -0.138948) (xy -0.364900 -0.089823) 35 | (xy -0.367973 -0.085166) (xy -0.390223 -0.051310) (xy -0.435678 -0.117377) (xy -0.463957 -0.155550) (xy -0.486931 -0.175327) (xy -0.513648 -0.182611) (xy -0.536900 -0.183445) (xy 0.028222 -0.183445) 36 | (xy 0.028222 0.211666) (xy 0.125978 0.211666) (xy 0.130017 0.075585) (xy 0.134055 -0.060495) (xy 0.209156 0.075585) (xy 0.284256 0.211666) (xy 0.409222 0.211666) (xy 1.552634 0.211666) 37 | (xy 1.609222 0.211666) (xy 1.648014 0.208605) (xy 1.668904 0.196073) (xy 1.679222 0.176389) (xy 1.689295 0.156706) (xy 1.705545 0.146107) (xy 1.735701 0.141833) (xy 1.778000 0.141111) 38 | (xy 1.826035 0.142181) (xy 1.853602 0.147231) (xy 1.868427 0.159022) (xy 1.876778 0.176389) (xy 1.892395 0.201299) (xy 1.919981 0.210829) (xy 1.939928 0.211666) (xy 1.972713 0.208289) 39 | (xy 1.989203 0.199979) (xy 1.989666 0.198135) (xy 1.984706 0.180738) (xy 1.971091 0.142308) (xy 1.950722 0.087986) (xy 1.925497 0.022915) (xy 1.916678 0.000579) (xy 1.843689 -0.183445) 40 | (xy 1.710406 -0.183445) (xy 1.658051 -0.052917) (xy 1.632016 0.012084) (xy 1.606632 0.075617) (xy 1.585923 0.127605) (xy 1.579165 0.144639) (xy 1.552634 0.211666) (xy 0.409222 0.211666) 41 | (xy 0.409222 0.005151) (xy 0.491537 0.005151) (xy 0.503231 0.080710) (xy 0.536851 0.142113) (xy 0.590204 0.185432) (xy 0.593146 0.186950) (xy 0.640071 0.202251) (xy 0.698824 0.210275) 42 | (xy 0.758004 0.210512) (xy 0.806209 0.202453) (xy 0.819372 0.197059) (xy 0.841574 0.171188) (xy 0.846666 0.146719) (xy 0.843278 0.121620) (xy 0.827853 0.118426) (xy 0.814916 0.122521) 43 | (xy 0.780638 0.129752) (xy 0.734600 0.133484) (xy 0.721607 0.133634) (xy 0.664772 0.123538) (xy 0.627557 0.093584) (xy 0.611521 0.049389) (xy 0.931333 0.049389) (xy 0.933126 0.068940) 44 | (xy 0.942922 0.079496) (xy 0.967348 0.083817) (xy 1.013032 0.084665) (xy 1.016000 0.084666) (xy 1.062923 0.083919) (xy 1.088257 0.079838) (xy 1.098628 0.069660) (xy 1.100665 0.050625) 45 | (xy 1.100666 0.049389) (xy 1.098874 0.029837) (xy 1.089078 0.019281) (xy 1.064651 0.014960) (xy 1.018967 0.014112) (xy 1.016000 0.014111) (xy 0.969076 0.014858) (xy 0.943742 0.018939) 46 | (xy 0.933371 0.029117) (xy 0.931335 0.048152) (xy 0.931333 0.049389) (xy 0.611521 0.049389) (xy 0.609166 0.042901) (xy 0.606778 0.008153) (xy 0.615963 -0.051575) (xy 0.625008 -0.064084) 47 | (xy 1.180256 -0.064084) (xy 1.193940 -0.015325) (xy 1.215711 0.010045) (xy 1.239566 0.022246) (xy 1.280412 0.036616) (xy 1.312407 0.045617) (xy 1.363929 0.062382) (xy 1.390235 0.080774) 48 | (xy 1.394836 0.090906) (xy 1.389389 0.119749) (xy 1.362400 0.136103) (xy 1.318012 0.139174) (xy 1.260368 0.128164) (xy 1.238250 0.120988) (xy 1.185333 0.102103) (xy 1.185333 0.148848) 49 | (xy 1.187391 0.174768) (xy 1.196912 0.191689) (xy 1.218920 0.201714) (xy 1.258438 0.206948) (xy 1.320487 0.209496) (xy 1.330673 0.209745) (xy 1.389326 0.206901) (xy 1.438039 0.196876) 50 | (xy 1.452435 0.191022) (xy 1.488343 0.165018) (xy 1.505854 0.129290) (xy 1.509889 0.083512) (xy 1.499449 0.038942) (xy 1.466928 0.003748) (xy 1.410522 -0.023284) (xy 1.328430 -0.043370) 51 | (xy 1.319389 -0.044935) (xy 1.294171 -0.062003) (xy 1.286397 -0.083268) (xy 1.285093 -0.100620) (xy 1.291241 -0.110112) (xy 1.310639 -0.113354) (xy 1.349086 -0.111954) (xy 1.381647 -0.109703) 52 | (xy 1.481666 -0.102546) (xy 1.481666 -0.141980) (xy 1.479681 -0.164627) (xy 1.469191 -0.177713) (xy 1.443393 -0.185482) (xy 1.402624 -0.191290) (xy 1.316708 -0.194126) (xy 1.251167 -0.178830) 53 | (xy 1.206678 -0.145631) (xy 1.191388 -0.119726) (xy 1.180256 -0.064084) (xy 0.625008 -0.064084) (xy 0.644224 -0.090656) (xy 0.692616 -0.110143) (xy 0.728199 -0.112889) (xy 0.773725 -0.109722) 54 | (xy 0.810951 -0.101787) (xy 0.819372 -0.098282) (xy 0.838530 -0.091453) (xy 0.845754 -0.103485) (xy 0.846666 -0.125410) (xy 0.842341 -0.154902) (xy 0.824101 -0.172643) (xy 0.795604 -0.183997) 55 | (xy 0.718933 -0.197216) (xy 0.646407 -0.187883) (xy 0.582730 -0.158925) (xy 0.532608 -0.113270) (xy 0.500747 -0.053845) (xy 0.491537 0.005151) (xy 0.409222 0.005151) (xy 0.409222 -0.183445) 56 | (xy 0.296333 -0.183445) (xy 0.295989 -0.059973) (xy 0.295644 0.063500) (xy 0.224294 -0.059973) (xy 0.152945 -0.183445) (xy 0.028222 -0.183445) (xy -0.536900 -0.183445) (xy -0.572011 -0.181743) 57 | (xy -0.591356 -0.177498) (xy -0.592667 -0.175866) (xy -0.683708 -0.175866) (xy -0.709687 -0.180774) (xy -0.754594 -0.183046) (xy -0.810748 -0.183445) (xy -0.945445 -0.183445) (xy -1.156872 -0.183445) 58 | (xy -1.196676 -0.277703) (xy -1.227073 -0.330650) (xy -1.258191 -0.381000) (xy 2.681111 -0.381000) (xy 2.681111 0.409222) )(layer F.SilkS) (width 0.010000) 59 | ) 60 | (fp_poly (pts (xy -2.036050 -0.135805) (xy -1.991023 -0.122071) (xy -1.958834 -0.103185) (xy -1.947334 -0.083541) (xy -1.958323 -0.068327) (xy -1.976730 -0.055817) (xy -2.005689 -0.047949) (xy -2.030757 -0.062376) 61 | (xy -2.067260 -0.081111) (xy -2.102051 -0.075511) (xy -2.129488 -0.049184) (xy -2.143932 -0.005743) (xy -2.144889 0.010686) (xy -2.134420 0.056776) (xy -2.107532 0.087403) (xy -2.071003 0.098986) 62 | (xy -2.031609 0.087943) (xy -2.018014 0.077724) (xy -1.995672 0.064129) (xy -1.973015 0.072647) (xy -1.968886 0.075583) (xy -1.951975 0.098308) (xy -1.963032 0.121477) (xy -2.002168 0.145281) 63 | (xy -2.012103 0.149606) (xy -2.062742 0.165852) (xy -2.106401 0.165109) (xy -2.156001 0.148073) (xy -2.201053 0.114627) (xy -2.228520 0.065681) (xy -2.237393 0.008574) (xy -2.226660 -0.049353) 64 | (xy -2.195314 -0.100757) (xy -2.190865 -0.105398) (xy -2.160303 -0.128918) (xy -2.123321 -0.139348) (xy -2.086024 -0.141111) (xy -2.036050 -0.135805) )(layer F.SilkS) (width 0.010000) 65 | ) 66 | (fp_poly (pts (xy -1.716853 -0.135557) (xy -1.672992 -0.121082) (xy -1.644128 -0.100972) (xy -1.636889 -0.084363) (xy -1.647901 -0.068489) (xy -1.666285 -0.055817) (xy -1.695245 -0.047949) (xy -1.720313 -0.062376) 67 | (xy -1.757249 -0.082772) (xy -1.791168 -0.075208) (xy -1.812478 -0.053305) (xy -1.831150 -0.008601) (xy -1.831416 0.038200) (xy -1.813295 0.075550) (xy -1.812270 0.076603) (xy -1.777606 0.095478) 68 | (xy -1.738353 0.095849) (xy -1.707691 0.077907) (xy -1.685724 0.064601) (xy -1.663630 0.071348) (xy -1.640787 0.089858) (xy -1.643108 0.109768) (xy -1.671414 0.134083) (xy -1.682750 0.141265) 69 | (xy -1.740348 0.165029) (xy -1.799040 0.163819) (xy -1.843917 0.148762) (xy -1.885578 0.122412) (xy -1.909384 0.084151) (xy -1.918662 0.027699) (xy -1.919111 0.006897) (xy -1.915161 -0.040665) 70 | (xy -1.899616 -0.075005) (xy -1.877864 -0.099864) (xy -1.845553 -0.126555) (xy -1.811002 -0.138588) (xy -1.768114 -0.141112) (xy -1.716853 -0.135557) )(layer F.SilkS) (width 0.010000) 71 | ) 72 | (fp_poly (pts (xy -0.772705 0.045049) (xy -0.731966 0.051296) (xy -0.712231 0.064535) (xy -0.707671 0.076678) (xy -0.714418 0.107258) (xy -0.742641 0.130342) (xy -0.785704 0.140914) (xy -0.792920 0.141111) 73 | (xy -0.819444 0.138132) (xy -0.830435 0.123571) (xy -0.832556 0.090910) (xy -0.832556 0.040710) (xy -0.772705 0.045049) )(layer F.SilkS) (width 0.010000) 74 | ) 75 | (fp_poly (pts (xy -0.784171 -0.110579) (xy -0.779639 -0.110213) (xy -0.743630 -0.103994) (xy -0.728609 -0.090516) (xy -0.726722 -0.077611) (xy -0.732795 -0.057904) (xy -0.755736 -0.047994) (xy -0.779639 -0.045010) 76 | (xy -0.814287 -0.043993) (xy -0.829195 -0.052125) (xy -0.832542 -0.074446) (xy -0.832556 -0.077611) (xy -0.829907 -0.101607) (xy -0.816505 -0.110916) (xy -0.784171 -0.110579) )(layer F.SilkS) (width 0.010000) 77 | ) 78 | (fp_poly (pts (xy 1.785710 -0.058518) (xy 1.800092 -0.027908) (xy 1.808112 -0.007056) (xy 1.830947 0.056444) (xy 1.723268 0.056444) (xy 1.744905 -0.007056) (xy 1.759356 -0.044230) (xy 1.771682 -0.067089) 79 | (xy 1.775910 -0.070556) (xy 1.785710 -0.058518) )(layer F.SilkS) (width 0.010000) 80 | ) 81 | ) 82 | -------------------------------------------------------------------------------- /kicad/project.pretty/qr_code_github.kicad_mod: -------------------------------------------------------------------------------- 1 | (module LOGO (layer F.Cu) 2 | (at 0 0) 3 | (fp_text reference "G***" (at 0 0) (layer F.SilkS) hide 4 | (effects (font (thickness 0.3))) 5 | ) 6 | (fp_text value "LOGO" (at 0.75 0) (layer F.SilkS) hide 7 | (effects (font (thickness 0.3))) 8 | ) 9 | (fp_poly (pts (xy -1.905000 3.683000) (xy -3.683000 3.683000) (xy -3.683000 2.159000) (xy -3.429000 2.159000) (xy -3.429000 3.429000) (xy -2.159000 3.429000) (xy -2.159000 2.159000) (xy -3.429000 2.159000) 10 | (xy -3.683000 2.159000) (xy -3.683000 1.905000) (xy -1.905000 1.905000) (xy -1.905000 3.683000) )(layer F.SilkS) (width 0.010000) 11 | ) 12 | (fp_poly (pts (xy -0.762000 -2.921000) (xy -0.851954 -2.931490) (xy -0.885109 -2.980970) (xy -0.889000 -3.048000) (xy -0.878511 -3.137954) (xy -0.829030 -3.171109) (xy -0.762000 -3.175000) (xy -0.672046 -3.164511) 13 | (xy -0.638891 -3.115030) (xy -0.635000 -3.048000) (xy -0.635000 -2.921000) (xy -0.762000 -2.921000) )(layer F.SilkS) (width 0.010000) 14 | ) 15 | (fp_poly (pts (xy -1.397000 -2.413000) (xy -1.397000 -2.921000) (xy -1.524000 -2.921000) (xy -1.613954 -2.931490) (xy -1.647109 -2.980970) (xy -1.651000 -3.048000) (xy -1.640511 -3.137954) (xy -1.591030 -3.171109) 16 | (xy -1.524000 -3.175000) (xy -1.434046 -3.185490) (xy -1.400891 -3.234970) (xy -1.397000 -3.302000) (xy -1.386511 -3.391954) (xy -1.337030 -3.425109) (xy -1.270000 -3.429000) (xy -1.180046 -3.439490) 17 | (xy -1.146891 -3.488970) (xy -1.143000 -3.556000) (xy -1.132511 -3.645954) (xy -1.083030 -3.679109) (xy -1.016000 -3.683000) (xy -0.926046 -3.672511) (xy -0.892891 -3.623030) (xy -0.889000 -3.556000) 18 | (xy -0.899490 -3.466046) (xy -0.948970 -3.432891) (xy -1.016000 -3.429000) (xy -1.105954 -3.418511) (xy -1.139109 -3.369030) (xy -1.143000 -3.302000) (xy -1.153490 -3.212046) (xy -1.202970 -3.178891) 19 | (xy -1.270000 -3.175000) (xy -1.359954 -3.164511) (xy -1.393109 -3.115030) (xy -1.397000 -3.048000) (xy -1.386511 -2.958046) (xy -1.337030 -2.924891) (xy -1.270000 -2.921000) (xy -1.143000 -2.921000) 20 | (xy -1.143000 -2.413000) (xy -1.397000 -2.413000) )(layer F.SilkS) (width 0.010000) 21 | ) 22 | (fp_poly (pts (xy -0.127000 0.000000) (xy -0.137490 0.089954) (xy -0.186970 0.123109) (xy -0.254000 0.127000) (xy -0.343954 0.116510) (xy -0.377109 0.067030) (xy -0.381000 0.000000) (xy -0.370511 -0.089954) 23 | (xy -0.321030 -0.123109) (xy -0.254000 -0.127000) (xy -0.127000 -0.127000) (xy -0.127000 0.000000) )(layer F.SilkS) (width 0.010000) 24 | ) 25 | (fp_poly (pts (xy 1.397000 -3.175000) (xy 1.651000 -3.175000) (xy 1.651000 -2.667000) (xy 1.397000 -2.667000) (xy 1.397000 -3.175000) )(layer F.SilkS) (width 0.010000) 26 | ) 27 | (fp_poly (pts (xy 1.397000 -2.159000) (xy 1.651000 -2.159000) (xy 1.651000 -1.651000) (xy 2.159000 -1.651000) (xy 2.159000 -0.889000) (xy 2.286000 -0.889000) (xy 2.375954 -0.899490) (xy 2.409109 -0.948970) 28 | (xy 2.413000 -1.016000) (xy 2.423489 -1.105954) (xy 2.472970 -1.139109) (xy 2.540000 -1.143000) (xy 2.667000 -1.143000) (xy 2.667000 -0.635000) (xy 2.921000 -0.635000) (xy 2.921000 0.635000) 29 | (xy 3.048000 0.635000) (xy 3.137954 0.645489) (xy 3.171109 0.694970) (xy 3.175000 0.762000) (xy 3.185489 0.851954) (xy 3.234970 0.885109) (xy 3.302000 0.889000) (xy 3.391954 0.878510) 30 | (xy 3.425109 0.829030) (xy 3.429000 0.762000) (xy 3.418510 0.672046) (xy 3.369030 0.638891) (xy 3.302000 0.635000) (xy 3.175000 0.635000) (xy 3.175000 -0.127000) (xy 3.302000 -0.127000) 31 | (xy 3.391954 -0.137490) (xy 3.425109 -0.186970) (xy 3.429000 -0.254000) (xy 3.418510 -0.343954) (xy 3.369030 -0.377109) (xy 3.302000 -0.381000) (xy 3.175000 -0.381000) (xy 3.175000 -0.889000) 32 | (xy 3.048000 -0.889000) (xy 2.958046 -0.899490) (xy 2.924891 -0.948970) (xy 2.921000 -1.016000) (xy 2.910510 -1.105954) (xy 2.861030 -1.139109) (xy 2.794000 -1.143000) (xy 2.667000 -1.143000) 33 | (xy 2.540000 -1.143000) (xy 2.629954 -1.153490) (xy 2.663109 -1.202970) (xy 2.667000 -1.270000) (xy 2.677489 -1.359954) (xy 2.726970 -1.393109) (xy 2.794000 -1.397000) (xy 2.883954 -1.407490) 34 | (xy 2.917109 -1.456970) (xy 2.921000 -1.524000) (xy 2.931489 -1.613954) (xy 2.980970 -1.647109) (xy 3.048000 -1.651000) (xy 3.137954 -1.640511) (xy 3.171109 -1.591030) (xy 3.175000 -1.524000) 35 | (xy 3.164510 -1.434046) (xy 3.115030 -1.400891) (xy 3.048000 -1.397000) (xy 2.958046 -1.386511) (xy 2.924891 -1.337030) (xy 2.921000 -1.270000) (xy 2.921000 -1.143000) (xy 3.429000 -1.143000) 36 | (xy 3.429000 -1.270000) (xy 3.439489 -1.359954) (xy 3.488970 -1.393109) (xy 3.556000 -1.397000) (xy 3.683000 -1.397000) (xy 3.683000 -0.889000) (xy 3.556000 -0.889000) (xy 3.466046 -0.878511) 37 | (xy 3.432891 -0.829030) (xy 3.429000 -0.762000) (xy 3.439489 -0.672046) (xy 3.488970 -0.638891) (xy 3.556000 -0.635000) (xy 3.683000 -0.635000) (xy 3.683000 0.127000) (xy 3.556000 0.127000) 38 | (xy 3.466046 0.137489) (xy 3.432891 0.186970) (xy 3.429000 0.254000) (xy 3.439489 0.343954) (xy 3.488970 0.377109) (xy 3.556000 0.381000) (xy 3.683000 0.381000) (xy 3.683000 1.143000) 39 | (xy 3.556000 1.143000) (xy 3.466046 1.153489) (xy 3.432891 1.202970) (xy 3.429000 1.270000) (xy 3.418510 1.359954) (xy 3.369030 1.393109) (xy 3.302000 1.397000) (xy 3.175000 1.397000) 40 | (xy 3.175000 0.889000) (xy 2.667000 0.889000) (xy 2.667000 1.016000) (xy 2.677489 1.105954) (xy 2.726970 1.139109) (xy 2.794000 1.143000) (xy 2.883954 1.153489) (xy 2.917109 1.202970) 41 | (xy 2.921000 1.270000) (xy 2.910510 1.359954) (xy 2.861030 1.393109) (xy 2.794000 1.397000) (xy 2.667000 1.397000) (xy 2.667000 1.905000) (xy 2.794000 1.905000) (xy 2.883954 1.894510) 42 | (xy 2.917109 1.845030) (xy 2.921000 1.778000) (xy 2.921000 1.651000) (xy 3.683000 1.651000) (xy 3.683000 2.159000) (xy 3.175000 2.159000) (xy 3.175000 2.032000) (xy 3.164510 1.942046) 43 | (xy 3.115030 1.908891) (xy 3.048000 1.905000) (xy 2.921000 1.905000) (xy 2.921000 2.413000) (xy 2.667000 2.413000) (xy 2.667000 2.921000) (xy 2.794000 2.921000) (xy 2.883954 2.910510) 44 | (xy 2.917109 2.861030) (xy 2.921000 2.794000) (xy 2.921000 2.667000) (xy 3.429000 2.667000) (xy 3.429000 2.540000) (xy 3.439489 2.450046) (xy 3.488970 2.416891) (xy 3.556000 2.413000) 45 | (xy 3.683000 2.413000) (xy 3.683000 3.175000) (xy 3.556000 3.175000) (xy 3.466046 3.185489) (xy 3.432891 3.234970) (xy 3.429000 3.302000) (xy 3.439489 3.391954) (xy 3.488970 3.425109) 46 | (xy 3.556000 3.429000) (xy 3.645954 3.439489) (xy 3.679109 3.488970) (xy 3.683000 3.556000) (xy 3.683000 3.683000) (xy 3.175000 3.683000) (xy 3.175000 3.175000) (xy 3.302000 3.175000) 47 | (xy 3.391954 3.164510) (xy 3.425109 3.115030) (xy 3.429000 3.048000) (xy 3.429000 2.921000) (xy 2.921000 2.921000) (xy 2.921000 3.048000) (xy 2.910510 3.137954) (xy 2.861030 3.171109) 48 | (xy 2.794000 3.175000) (xy 2.667000 3.175000) (xy 2.667000 3.683000) (xy 2.159000 3.683000) (xy 2.159000 3.556000) (xy 2.169489 3.466046) (xy 2.218970 3.432891) (xy 2.286000 3.429000) 49 | (xy 2.375954 3.418510) (xy 2.409109 3.369030) (xy 2.413000 3.302000) (xy 2.402510 3.212046) (xy 2.353030 3.178891) (xy 2.286000 3.175000) (xy 2.159000 3.175000) (xy 2.159000 2.667000) 50 | (xy 1.651000 2.667000) (xy 1.651000 2.794000) (xy 1.640510 2.883954) (xy 1.591030 2.917109) (xy 1.524000 2.921000) (xy 1.434046 2.931489) (xy 1.400891 2.980970) (xy 1.397000 3.048000) 51 | (xy 1.397000 3.175000) (xy 1.905000 3.175000) (xy 1.905000 3.683000) (xy 1.143000 3.683000) (xy 1.143000 2.921000) (xy 1.397000 2.921000) (xy 1.397000 2.159000) (xy 1.270000 2.159000) 52 | (xy 1.180046 2.169489) (xy 1.146891 2.218970) (xy 1.143000 2.286000) (xy 1.132510 2.375954) (xy 1.083030 2.409109) (xy 1.016000 2.413000) (xy 0.926046 2.423489) (xy 0.892891 2.472970) 53 | (xy 0.889000 2.540000) (xy 0.878510 2.629954) (xy 0.829030 2.663109) (xy 0.762000 2.667000) (xy 0.672046 2.656510) (xy 0.638891 2.607030) (xy 0.635000 2.540000) (xy 0.624510 2.450046) 54 | (xy 0.575030 2.416891) (xy 0.508000 2.413000) (xy 0.381000 2.413000) (xy 0.381000 1.905000) (xy 0.889000 1.905000) (xy 0.889000 2.032000) (xy 0.899489 2.121954) (xy 0.948970 2.155109) 55 | (xy 1.016000 2.159000) (xy 1.143000 2.159000) (xy 1.143000 1.651000) (xy 1.651000 1.651000) (xy 1.651000 2.413000) (xy 2.413000 2.413000) (xy 2.413000 1.651000) (xy 1.651000 1.651000) 56 | (xy 1.143000 1.651000) (xy 1.143000 1.143000) (xy 0.889000 1.143000) (xy 0.889000 1.651000) (xy 0.762000 1.651000) (xy 0.672046 1.640510) (xy 0.638891 1.591030) (xy 0.635000 1.524000) 57 | (xy 0.624510 1.434046) (xy 0.575030 1.400891) (xy 0.508000 1.397000) (xy 0.381000 1.397000) (xy 0.381000 0.635000) (xy 0.127000 0.635000) (xy 0.127000 0.127000) (xy 0.254000 0.127000) 58 | (xy 0.343954 0.116510) (xy 0.377109 0.067030) (xy 0.381000 0.000000) (xy 0.381000 -0.127000) (xy -0.127000 -0.127000) (xy -0.127000 -0.381000) (xy 0.381000 -0.381000) (xy 0.381000 -0.254000) 59 | (xy 0.391489 -0.164046) (xy 0.440970 -0.130891) (xy 0.508000 -0.127000) (xy 0.597954 -0.116511) (xy 0.631109 -0.067030) (xy 0.635000 0.000000) (xy 0.624510 0.089954) (xy 0.575030 0.123109) 60 | (xy 0.508000 0.127000) (xy 0.381000 0.127000) (xy 0.381000 0.635000) (xy 0.508000 0.635000) (xy 0.597954 0.645489) (xy 0.631109 0.694970) (xy 0.635000 0.762000) (xy 0.645489 0.851954) 61 | (xy 0.694970 0.885109) (xy 0.762000 0.889000) (xy 0.851954 0.878510) (xy 0.885109 0.829030) (xy 0.889000 0.762000) (xy 0.899489 0.672046) (xy 0.948970 0.638891) (xy 1.016000 0.635000) 62 | (xy 1.143000 0.635000) (xy 1.143000 1.143000) (xy 1.651000 1.143000) (xy 1.651000 1.016000) (xy 1.905000 1.016000) (xy 1.915489 1.105954) (xy 1.964970 1.139109) (xy 2.032000 1.143000) 63 | (xy 2.121954 1.132510) (xy 2.155109 1.083030) (xy 2.159000 1.016000) (xy 2.159000 0.889000) (xy 2.667000 0.889000) (xy 2.667000 0.127000) (xy 2.540000 0.127000) (xy 2.450046 0.116510) 64 | (xy 2.416891 0.067030) (xy 2.413000 0.000000) (xy 2.423489 -0.089954) (xy 2.472970 -0.123109) (xy 2.540000 -0.127000) (xy 2.667000 -0.127000) (xy 2.667000 -0.635000) (xy 2.159000 -0.635000) 65 | (xy 2.159000 0.381000) (xy 2.286000 0.381000) (xy 2.375954 0.391489) (xy 2.409109 0.440970) (xy 2.413000 0.508000) (xy 2.402510 0.597954) (xy 2.353030 0.631109) (xy 2.286000 0.635000) 66 | (xy 2.196046 0.645489) (xy 2.162891 0.694970) (xy 2.159000 0.762000) (xy 2.148510 0.851954) (xy 2.099030 0.885109) (xy 2.032000 0.889000) (xy 1.942046 0.899489) (xy 1.908891 0.948970) 67 | (xy 1.905000 1.016000) (xy 1.651000 1.016000) (xy 1.651000 0.635000) (xy 1.143000 0.635000) (xy 1.143000 0.508000) (xy 1.651000 0.508000) (xy 1.651000 0.635000) (xy 1.778000 0.635000) 68 | (xy 1.867954 0.624510) (xy 1.901109 0.575030) (xy 1.905000 0.508000) (xy 1.894510 0.418046) (xy 1.845030 0.384891) (xy 1.778000 0.381000) (xy 1.688046 0.391489) (xy 1.654891 0.440970) 69 | (xy 1.651000 0.508000) (xy 1.143000 0.508000) (xy 1.153489 0.418046) (xy 1.202970 0.384891) (xy 1.270000 0.381000) (xy 1.359954 0.370510) (xy 1.393109 0.321030) (xy 1.397000 0.254000) 70 | (xy 1.397000 0.127000) (xy 1.905000 0.127000) (xy 1.905000 -0.127000) (xy 1.397000 -0.127000) (xy 1.397000 -0.635000) (xy 2.159000 -0.635000) (xy 2.159000 -0.889000) (xy 1.651000 -0.889000) 71 | (xy 1.651000 -1.016000) (xy 1.661489 -1.105954) (xy 1.710970 -1.139109) (xy 1.778000 -1.143000) (xy 1.867954 -1.153490) (xy 1.901109 -1.202970) (xy 1.905000 -1.270000) (xy 1.894510 -1.359954) 72 | (xy 1.845030 -1.393109) (xy 1.778000 -1.397000) (xy 1.688046 -1.386511) (xy 1.654891 -1.337030) (xy 1.651000 -1.270000) (xy 1.640510 -1.180046) (xy 1.591030 -1.146891) (xy 1.524000 -1.143000) 73 | (xy 1.434046 -1.153490) (xy 1.400891 -1.202970) (xy 1.397000 -1.270000) (xy 1.386510 -1.359954) (xy 1.337030 -1.393109) (xy 1.270000 -1.397000) (xy 1.180046 -1.407490) (xy 1.146891 -1.456970) 74 | (xy 1.143000 -1.524000) (xy 1.132510 -1.613954) (xy 1.083030 -1.647109) (xy 1.016000 -1.651000) (xy 0.889000 -1.651000) (xy 0.889000 -1.143000) (xy 1.016000 -1.143000) (xy 1.105954 -1.132511) 75 | (xy 1.139109 -1.083030) (xy 1.143000 -1.016000) (xy 1.132510 -0.926046) (xy 1.083030 -0.892891) (xy 1.016000 -0.889000) (xy 0.926046 -0.878511) (xy 0.892891 -0.829030) (xy 0.889000 -0.762000) 76 | (xy 0.899489 -0.672046) (xy 0.948970 -0.638891) (xy 1.016000 -0.635000) (xy 1.105954 -0.624511) (xy 1.139109 -0.575030) (xy 1.143000 -0.508000) (xy 1.143000 -0.381000) (xy 0.381000 -0.381000) 77 | (xy -0.127000 -0.381000) (xy -0.127000 -0.635000) (xy -0.635000 -0.635000) (xy -0.635000 -0.127000) (xy -0.762000 -0.127000) (xy -0.851954 -0.116511) (xy -0.885109 -0.067030) (xy -0.889000 0.000000) 78 | (xy -0.878511 0.089954) (xy -0.829030 0.123109) (xy -0.762000 0.127000) (xy -0.672046 0.137489) (xy -0.638891 0.186970) (xy -0.635000 0.254000) (xy -0.624511 0.343954) (xy -0.575030 0.377109) 79 | (xy -0.508000 0.381000) (xy -0.418046 0.391489) (xy -0.384891 0.440970) (xy -0.381000 0.508000) (xy -0.370511 0.597954) (xy -0.321030 0.631109) (xy -0.254000 0.635000) (xy -0.164046 0.645489) 80 | (xy -0.130891 0.694970) (xy -0.127000 0.762000) (xy -0.116511 0.851954) (xy -0.067030 0.885109) (xy 0.000000 0.889000) (xy 0.127000 0.889000) (xy 0.127000 1.905000) (xy 0.000000 1.905000) 81 | (xy -0.089954 1.915489) (xy -0.123109 1.964970) (xy -0.127000 2.032000) (xy -0.137490 2.121954) (xy -0.186970 2.155109) (xy -0.254000 2.159000) (xy -0.343954 2.148510) (xy -0.377109 2.099030) 82 | (xy -0.381000 2.032000) (xy -0.370511 1.942046) (xy -0.321030 1.908891) (xy -0.254000 1.905000) (xy -0.127000 1.905000) (xy -0.127000 1.397000) (xy -0.635000 1.397000) (xy -0.635000 1.905000) 83 | (xy -0.762000 1.905000) (xy -0.851954 1.894510) (xy -0.885109 1.845030) (xy -0.889000 1.778000) (xy -0.899490 1.688046) (xy -0.948970 1.654891) (xy -1.016000 1.651000) (xy -1.143000 1.651000) 84 | (xy -1.143000 3.175000) (xy -1.397000 3.175000) (xy -1.397000 3.683000) (xy -1.651000 3.683000) (xy -1.651000 2.921000) (xy -1.524000 2.921000) (xy -1.434046 2.910510) (xy -1.400891 2.861030) 85 | (xy -1.397000 2.794000) (xy -1.407490 2.704046) (xy -1.456970 2.670891) (xy -1.524000 2.667000) (xy -1.651000 2.667000) (xy -1.651000 1.524000) (xy -1.397000 1.524000) (xy -1.386511 1.613954) 86 | (xy -1.337030 1.647109) (xy -1.270000 1.651000) (xy -1.180046 1.640510) (xy -1.146891 1.591030) (xy -1.143000 1.524000) (xy -1.153490 1.434046) (xy -1.202970 1.400891) (xy -1.270000 1.397000) 87 | (xy -1.359954 1.407489) (xy -1.393109 1.456970) (xy -1.397000 1.524000) (xy -1.651000 1.524000) (xy -1.651000 1.397000) (xy -1.778000 1.397000) (xy -1.867954 1.407489) (xy -1.901109 1.456970) 88 | (xy -1.905000 1.524000) (xy -1.915490 1.613954) (xy -1.964970 1.647109) (xy -2.032000 1.651000) (xy -2.121954 1.640510) (xy -2.155109 1.591030) (xy -2.159000 1.524000) (xy -2.148511 1.434046) 89 | (xy -2.099030 1.400891) (xy -2.032000 1.397000) (xy -1.942046 1.386510) (xy -1.908891 1.337030) (xy -1.905000 1.270000) (xy -1.915490 1.180046) (xy -1.964970 1.146891) (xy -2.032000 1.143000) 90 | (xy -2.121954 1.132510) (xy -2.155109 1.083030) (xy -2.159000 1.016000) (xy -2.148511 0.926046) (xy -2.099030 0.892891) (xy -2.032000 0.889000) (xy -1.942046 0.899489) (xy -1.908891 0.948970) 91 | (xy -1.905000 1.016000) (xy -1.894511 1.105954) (xy -1.845030 1.139109) (xy -1.778000 1.143000) (xy -1.688046 1.153489) (xy -1.654891 1.202970) (xy -1.651000 1.270000) (xy -1.640511 1.359954) 92 | (xy -1.591030 1.393109) (xy -1.524000 1.397000) (xy -1.397000 1.397000) (xy -1.397000 1.270000) (xy -0.889000 1.270000) (xy -0.878511 1.359954) (xy -0.829030 1.393109) (xy -0.762000 1.397000) 93 | (xy -0.672046 1.386510) (xy -0.638891 1.337030) (xy -0.635000 1.270000) (xy -0.645490 1.180046) (xy -0.694970 1.146891) (xy -0.762000 1.143000) (xy -0.851954 1.153489) (xy -0.885109 1.202970) 94 | (xy -0.889000 1.270000) (xy -1.397000 1.270000) (xy -1.397000 1.016000) (xy -0.381000 1.016000) (xy -0.370511 1.105954) (xy -0.321030 1.139109) (xy -0.254000 1.143000) (xy -0.164046 1.132510) 95 | (xy -0.130891 1.083030) (xy -0.127000 1.016000) (xy -0.137490 0.926046) (xy -0.186970 0.892891) (xy -0.254000 0.889000) (xy -0.343954 0.899489) (xy -0.377109 0.948970) (xy -0.381000 1.016000) 96 | (xy -1.397000 1.016000) (xy -1.397000 0.889000) (xy -1.524000 0.889000) (xy -1.613954 0.878510) (xy -1.647109 0.829030) (xy -1.651000 0.762000) (xy -1.651000 0.635000) (xy -1.143000 0.635000) 97 | (xy -1.143000 0.381000) (xy -1.905000 0.381000) (xy -1.905000 0.635000) (xy -2.413000 0.635000) (xy -2.413000 1.651000) (xy -3.175000 1.651000) (xy -3.175000 1.524000) (xy -3.185490 1.434046) 98 | (xy -3.234970 1.400891) (xy -3.302000 1.397000) (xy -3.391954 1.407489) (xy -3.425109 1.456970) (xy -3.429000 1.524000) (xy -3.439490 1.613954) (xy -3.488970 1.647109) (xy -3.556000 1.651000) 99 | (xy -3.645954 1.640510) (xy -3.679109 1.591030) (xy -3.683000 1.524000) (xy -3.672511 1.434046) (xy -3.623030 1.400891) (xy -3.556000 1.397000) (xy -3.466046 1.386510) (xy -3.432891 1.337030) 100 | (xy -3.429000 1.270000) (xy -3.439490 1.180046) (xy -3.488970 1.146891) (xy -3.556000 1.143000) (xy -3.645954 1.132510) (xy -3.679109 1.083030) (xy -3.683000 1.016000) (xy -3.672511 0.926046) 101 | (xy -3.623030 0.892891) (xy -3.556000 0.889000) (xy -3.429000 0.889000) (xy -3.429000 0.381000) (xy -3.556000 0.381000) (xy -3.645954 0.370510) (xy -3.679109 0.321030) (xy -3.683000 0.254000) 102 | (xy -3.672511 0.164046) (xy -3.623030 0.130891) (xy -3.556000 0.127000) (xy -3.429000 0.127000) (xy -3.429000 -0.381000) (xy -3.683000 -0.381000) (xy -3.683000 -0.508000) (xy -3.429000 -0.508000) 103 | (xy -3.418511 -0.418046) (xy -3.369030 -0.384891) (xy -3.302000 -0.381000) (xy -3.175000 -0.381000) (xy -3.175000 0.127000) (xy -3.302000 0.127000) (xy -3.391954 0.137489) (xy -3.425109 0.186970) 104 | (xy -3.429000 0.254000) (xy -3.429000 0.381000) (xy -2.921000 0.381000) (xy -2.921000 0.508000) (xy -2.931490 0.597954) (xy -2.980970 0.631109) (xy -3.048000 0.635000) (xy -3.137954 0.645489) 105 | (xy -3.171109 0.694970) (xy -3.175000 0.762000) (xy -3.185490 0.851954) (xy -3.234970 0.885109) (xy -3.302000 0.889000) (xy -3.391954 0.899489) (xy -3.425109 0.948970) (xy -3.429000 1.016000) 106 | (xy -3.418511 1.105954) (xy -3.369030 1.139109) (xy -3.302000 1.143000) (xy -3.212046 1.132510) (xy -3.178891 1.083030) (xy -3.175000 1.016000) (xy -3.164511 0.926046) (xy -3.115030 0.892891) 107 | (xy -3.048000 0.889000) (xy -2.958046 0.899489) (xy -2.924891 0.948970) (xy -2.921000 1.016000) (xy -2.910511 1.105954) (xy -2.861030 1.139109) (xy -2.794000 1.143000) (xy -2.704046 1.132510) 108 | (xy -2.670891 1.083030) (xy -2.667000 1.016000) (xy -2.677490 0.926046) (xy -2.726970 0.892891) (xy -2.794000 0.889000) (xy -2.883954 0.878510) (xy -2.917109 0.829030) (xy -2.921000 0.762000) 109 | (xy -2.910511 0.672046) (xy -2.861030 0.638891) (xy -2.794000 0.635000) (xy -2.704046 0.624510) (xy -2.670891 0.575030) (xy -2.667000 0.508000) (xy -2.667000 0.381000) (xy -1.905000 0.381000) 110 | (xy -1.905000 0.254000) (xy -1.894511 0.164046) (xy -1.845030 0.130891) (xy -1.778000 0.127000) (xy -1.688046 0.116510) (xy -1.654891 0.067030) (xy -1.651000 0.000000) (xy -1.640511 -0.089954) 111 | (xy -1.591030 -0.123109) (xy -1.524000 -0.127000) (xy -1.434046 -0.116511) (xy -1.400891 -0.067030) (xy -1.397000 0.000000) (xy -1.386511 0.089954) (xy -1.337030 0.123109) (xy -1.270000 0.127000) 112 | (xy -1.180046 0.137489) (xy -1.146891 0.186970) (xy -1.143000 0.254000) (xy -1.132511 0.343954) (xy -1.083030 0.377109) (xy -1.016000 0.381000) (xy -0.926046 0.391489) (xy -0.892891 0.440970) 113 | (xy -0.889000 0.508000) (xy -0.899490 0.597954) (xy -0.948970 0.631109) (xy -1.016000 0.635000) (xy -1.105954 0.645489) (xy -1.139109 0.694970) (xy -1.143000 0.762000) (xy -1.132511 0.851954) 114 | (xy -1.083030 0.885109) (xy -1.016000 0.889000) (xy -0.926046 0.878510) (xy -0.892891 0.829030) (xy -0.889000 0.762000) (xy -0.878511 0.672046) (xy -0.829030 0.638891) (xy -0.762000 0.635000) 115 | (xy -0.672046 0.624510) (xy -0.638891 0.575030) (xy -0.635000 0.508000) (xy -0.645490 0.418046) (xy -0.694970 0.384891) (xy -0.762000 0.381000) (xy -0.851954 0.370510) (xy -0.885109 0.321030) 116 | (xy -0.889000 0.254000) (xy -0.899490 0.164046) (xy -0.948970 0.130891) (xy -1.016000 0.127000) (xy -1.105954 0.116510) (xy -1.139109 0.067030) (xy -1.143000 0.000000) (xy -1.153490 -0.089954) 117 | (xy -1.202970 -0.123109) (xy -1.270000 -0.127000) (xy -1.359954 -0.137490) (xy -1.393109 -0.186970) (xy -1.397000 -0.254000) (xy -1.386511 -0.343954) (xy -1.337030 -0.377109) (xy -1.270000 -0.381000) 118 | (xy -1.180046 -0.391490) (xy -1.146891 -0.440970) (xy -1.143000 -0.508000) (xy -1.153490 -0.597954) (xy -1.202970 -0.631109) (xy -1.270000 -0.635000) (xy -1.359954 -0.645490) (xy -1.393109 -0.694970) 119 | (xy -1.397000 -0.762000) (xy -0.889000 -0.762000) (xy -0.878511 -0.672046) (xy -0.829030 -0.638891) (xy -0.762000 -0.635000) (xy -0.672046 -0.645490) (xy -0.638891 -0.694970) (xy -0.635000 -0.762000) 120 | (xy 0.127000 -0.762000) (xy 0.137489 -0.672046) (xy 0.186970 -0.638891) (xy 0.254000 -0.635000) (xy 0.343954 -0.645490) (xy 0.377109 -0.694970) (xy 0.381000 -0.762000) (xy 0.370510 -0.851954) 121 | (xy 0.321030 -0.885109) (xy 0.254000 -0.889000) (xy 0.164046 -0.878511) (xy 0.130891 -0.829030) (xy 0.127000 -0.762000) (xy -0.635000 -0.762000) (xy -0.645490 -0.851954) (xy -0.694970 -0.885109) 122 | (xy -0.762000 -0.889000) (xy -0.851954 -0.878511) (xy -0.885109 -0.829030) (xy -0.889000 -0.762000) (xy -1.397000 -0.762000) (xy -1.386511 -0.851954) (xy -1.337030 -0.885109) (xy -1.270000 -0.889000) 123 | (xy -1.180046 -0.899490) (xy -1.146891 -0.948970) (xy -1.143000 -1.016000) (xy -1.153490 -1.105954) (xy -1.202970 -1.139109) (xy -1.270000 -1.143000) (xy -1.359954 -1.132511) (xy -1.393109 -1.083030) 124 | (xy -1.397000 -1.016000) (xy -1.397000 -0.889000) (xy -2.159000 -0.889000) (xy -2.159000 -0.635000) (xy -1.397000 -0.635000) (xy -1.397000 -0.381000) (xy -2.159000 -0.381000) (xy -2.159000 -0.254000) 125 | (xy -2.148511 -0.164046) (xy -2.099030 -0.130891) (xy -2.032000 -0.127000) (xy -1.942046 -0.116511) (xy -1.908891 -0.067030) (xy -1.905000 0.000000) (xy -1.905000 0.127000) (xy -2.413000 0.127000) 126 | (xy -2.413000 -0.127000) (xy -2.921000 -0.127000) (xy -2.921000 -0.254000) (xy -2.910511 -0.343954) (xy -2.861030 -0.377109) (xy -2.794000 -0.381000) (xy -2.704046 -0.391490) (xy -2.670891 -0.440970) 127 | (xy -2.667000 -0.508000) (xy -2.677490 -0.597954) (xy -2.726970 -0.631109) (xy -2.794000 -0.635000) (xy -2.883954 -0.624511) (xy -2.917109 -0.575030) (xy -2.921000 -0.508000) (xy -2.931490 -0.418046) 128 | (xy -2.980970 -0.384891) (xy -3.048000 -0.381000) (xy -3.137954 -0.391490) (xy -3.171109 -0.440970) (xy -3.175000 -0.508000) (xy -3.185490 -0.597954) (xy -3.234970 -0.631109) (xy -3.302000 -0.635000) 129 | (xy -3.391954 -0.624511) (xy -3.425109 -0.575030) (xy -3.429000 -0.508000) (xy -3.683000 -0.508000) (xy -3.683000 -1.143000) (xy -3.175000 -1.143000) (xy -3.175000 -0.635000) (xy -2.921000 -0.635000) 130 | (xy -2.921000 -1.016000) (xy -2.667000 -1.016000) (xy -2.656511 -0.926046) (xy -2.607030 -0.892891) (xy -2.540000 -0.889000) (xy -2.450046 -0.899490) (xy -2.416891 -0.948970) (xy -2.413000 -1.016000) 131 | (xy -2.423490 -1.105954) (xy -2.472970 -1.139109) (xy -2.540000 -1.143000) (xy -2.629954 -1.132511) (xy -2.663109 -1.083030) (xy -2.667000 -1.016000) (xy -2.921000 -1.016000) (xy -2.921000 -1.270000) 132 | (xy -2.159000 -1.270000) (xy -2.148511 -1.180046) (xy -2.099030 -1.146891) (xy -2.032000 -1.143000) (xy -1.942046 -1.153490) (xy -1.908891 -1.202970) (xy -1.905000 -1.270000) (xy -1.915490 -1.359954) 133 | (xy -1.964970 -1.393109) (xy -2.032000 -1.397000) (xy -2.121954 -1.386511) (xy -2.155109 -1.337030) (xy -2.159000 -1.270000) (xy -2.921000 -1.270000) (xy -2.921000 -1.397000) (xy -3.683000 -1.397000) 134 | (xy -3.683000 -1.651000) (xy -2.921000 -1.651000) (xy -2.921000 -1.524000) (xy -2.910511 -1.434046) (xy -2.861030 -1.400891) (xy -2.794000 -1.397000) (xy -2.704046 -1.407490) (xy -2.670891 -1.456970) 135 | (xy -2.667000 -1.524000) (xy -2.667000 -1.651000) (xy -1.651000 -1.651000) (xy -1.651000 -2.159000) (xy -1.397000 -2.159000) (xy -1.397000 -1.397000) (xy -1.270000 -1.397000) (xy -1.180046 -1.386511) 136 | (xy -1.146891 -1.337030) (xy -1.143000 -1.270000) (xy -1.132511 -1.180046) (xy -1.083030 -1.146891) (xy -1.016000 -1.143000) (xy -0.926046 -1.153490) (xy -0.892891 -1.202970) (xy -0.889000 -1.270000) 137 | (xy -0.878511 -1.359954) (xy -0.829030 -1.393109) (xy -0.762000 -1.397000) (xy -0.672046 -1.407490) (xy -0.638891 -1.456970) (xy -0.635000 -1.524000) (xy -0.645490 -1.613954) (xy -0.694970 -1.647109) 138 | (xy -0.762000 -1.651000) (xy -0.851954 -1.661490) (xy -0.885109 -1.710970) (xy -0.889000 -1.778000) (xy -0.899490 -1.867954) (xy -0.948970 -1.901109) (xy -1.016000 -1.905000) (xy -1.143000 -1.905000) 139 | (xy -1.143000 -2.032000) (xy -0.889000 -2.032000) (xy -0.878511 -1.942046) (xy -0.829030 -1.908891) (xy -0.762000 -1.905000) (xy -0.672046 -1.894511) (xy -0.638891 -1.845030) (xy -0.635000 -1.778000) 140 | (xy -0.624511 -1.688046) (xy -0.575030 -1.654891) (xy -0.508000 -1.651000) (xy -0.418046 -1.640511) (xy -0.384891 -1.591030) (xy -0.381000 -1.524000) (xy -0.370511 -1.434046) (xy -0.321030 -1.400891) 141 | (xy -0.254000 -1.397000) (xy -0.164046 -1.386511) (xy -0.130891 -1.337030) (xy -0.127000 -1.270000) (xy -0.137490 -1.180046) (xy -0.186970 -1.146891) (xy -0.254000 -1.143000) (xy -0.343954 -1.132511) 142 | (xy -0.377109 -1.083030) (xy -0.381000 -1.016000) (xy -0.370511 -0.926046) (xy -0.321030 -0.892891) (xy -0.254000 -0.889000) (xy -0.164046 -0.899490) (xy -0.130891 -0.948970) (xy -0.127000 -1.016000) 143 | (xy -0.116511 -1.105954) (xy -0.067030 -1.139109) (xy 0.000000 -1.143000) (xy 0.089954 -1.153490) (xy 0.123109 -1.202970) (xy 0.127000 -1.270000) (xy 0.137489 -1.359954) (xy 0.186970 -1.393109) 144 | (xy 0.254000 -1.397000) (xy 0.343954 -1.407490) (xy 0.377109 -1.456970) (xy 0.381000 -1.524000) (xy 0.391489 -1.613954) (xy 0.440970 -1.647109) (xy 0.508000 -1.651000) (xy 0.597954 -1.661490) 145 | (xy 0.631109 -1.710970) (xy 0.635000 -1.778000) (xy 0.645489 -1.867954) (xy 0.694970 -1.901109) (xy 0.762000 -1.905000) (xy 0.851954 -1.915490) (xy 0.885109 -1.964970) (xy 0.889000 -2.032000) 146 | (xy 0.899489 -2.121954) (xy 0.948970 -2.155109) (xy 1.016000 -2.159000) (xy 1.105954 -2.148511) (xy 1.139109 -2.099030) (xy 1.143000 -2.032000) (xy 1.153489 -1.942046) (xy 1.202970 -1.908891) 147 | (xy 1.270000 -1.905000) (xy 1.359954 -1.915490) (xy 1.393109 -1.964970) (xy 1.397000 -2.032000) (xy 1.386510 -2.121954) (xy 1.337030 -2.155109) (xy 1.270000 -2.159000) (xy 1.180046 -2.169490) 148 | (xy 1.146891 -2.218970) (xy 1.143000 -2.286000) (xy 1.132510 -2.375954) (xy 1.083030 -2.409109) (xy 1.016000 -2.413000) (xy 0.926046 -2.402511) (xy 0.892891 -2.353030) (xy 0.889000 -2.286000) 149 | (xy 0.878510 -2.196046) (xy 0.829030 -2.162891) (xy 0.762000 -2.159000) (xy 0.672046 -2.148511) (xy 0.638891 -2.099030) (xy 0.635000 -2.032000) (xy 0.624510 -1.942046) (xy 0.575030 -1.908891) 150 | (xy 0.508000 -1.905000) (xy 0.418046 -1.915490) (xy 0.384891 -1.964970) (xy 0.381000 -2.032000) (xy 0.370510 -2.121954) (xy 0.321030 -2.155109) (xy 0.254000 -2.159000) (xy 0.164046 -2.148511) 151 | (xy 0.130891 -2.099030) (xy 0.127000 -2.032000) (xy 0.116510 -1.942046) (xy 0.067030 -1.908891) (xy 0.000000 -1.905000) (xy -0.127000 -1.905000) (xy -0.127000 -2.413000) (xy -0.381000 -2.413000) 152 | (xy -0.381000 -1.905000) (xy -0.508000 -1.905000) (xy -0.597954 -1.915490) (xy -0.631109 -1.964970) (xy -0.635000 -2.032000) (xy -0.645490 -2.121954) (xy -0.694970 -2.155109) (xy -0.762000 -2.159000) 153 | (xy -0.851954 -2.148511) (xy -0.885109 -2.099030) (xy -0.889000 -2.032000) (xy -1.143000 -2.032000) (xy -1.143000 -2.413000) (xy -0.635000 -2.413000) (xy -0.635000 -2.921000) (xy -0.127000 -2.921000) 154 | (xy -0.127000 -2.413000) (xy 0.381000 -2.413000) (xy 0.381000 -2.921000) (xy 0.254000 -2.921000) (xy 0.164046 -2.931490) (xy 0.130891 -2.980970) (xy 0.127000 -3.048000) (xy 0.137489 -3.137954) 155 | (xy 0.186970 -3.171109) (xy 0.254000 -3.175000) (xy 0.343954 -3.164511) (xy 0.377109 -3.115030) (xy 0.381000 -3.048000) (xy 0.391489 -2.958046) (xy 0.440970 -2.924891) (xy 0.508000 -2.921000) 156 | (xy 0.635000 -2.921000) (xy 0.635000 -2.413000) (xy 0.889000 -2.413000) (xy 0.889000 -3.175000) (xy 0.635000 -3.175000) (xy 0.635000 -3.683000) (xy 1.397000 -3.683000) (xy 1.397000 -3.175000) 157 | (xy 1.143000 -3.175000) (xy 1.143000 -2.667000) (xy 1.397000 -2.667000) (xy 1.397000 -2.159000) )(layer F.SilkS) (width 0.010000) 158 | ) 159 | (fp_poly (pts (xy -0.672046 2.169489) (xy -0.638891 2.218970) (xy -0.635000 2.286000) (xy -0.624511 2.375954) (xy -0.575030 2.409109) (xy -0.508000 2.413000) (xy -0.418046 2.423489) (xy -0.384891 2.472970) 160 | (xy -0.381000 2.540000) (xy -0.370511 2.629954) (xy -0.321030 2.663109) (xy -0.254000 2.667000) (xy -0.164046 2.677489) (xy -0.130891 2.726970) (xy -0.127000 2.794000) (xy -0.116511 2.883954) 161 | (xy -0.067030 2.917109) (xy 0.000000 2.921000) (xy 0.089954 2.931489) (xy 0.123109 2.980970) (xy 0.127000 3.048000) (xy 0.127000 3.175000) (xy 0.635000 3.175000) (xy 0.635000 3.048000) 162 | (xy 0.645489 2.958046) (xy 0.694970 2.924891) (xy 0.762000 2.921000) (xy 0.889000 2.921000) (xy 0.889000 3.683000) (xy 0.381000 3.683000) (xy 0.381000 3.556000) (xy 0.370510 3.466046) 163 | (xy 0.321030 3.432891) (xy 0.254000 3.429000) (xy 0.164046 3.439489) (xy 0.130891 3.488970) (xy 0.127000 3.556000) (xy 0.116510 3.645954) (xy 0.067030 3.679109) (xy 0.000000 3.683000) 164 | (xy -0.089954 3.672510) (xy -0.123109 3.623030) (xy -0.127000 3.556000) (xy -0.127000 3.429000) (xy -0.635000 3.429000) (xy -0.635000 3.556000) (xy -0.645490 3.645954) (xy -0.694970 3.679109) 165 | (xy -0.762000 3.683000) (xy -0.851954 3.672510) (xy -0.885109 3.623030) (xy -0.889000 3.556000) (xy -0.878511 3.466046) (xy -0.829030 3.432891) (xy -0.762000 3.429000) (xy -0.672046 3.418510) 166 | (xy -0.638891 3.369030) (xy -0.635000 3.302000) (xy -0.645490 3.212046) (xy -0.694970 3.178891) (xy -0.762000 3.175000) (xy -0.889000 3.175000) (xy -0.889000 3.048000) (xy -0.381000 3.048000) 167 | (xy -0.370511 3.137954) (xy -0.321030 3.171109) (xy -0.254000 3.175000) (xy -0.164046 3.164510) (xy -0.130891 3.115030) (xy -0.127000 3.048000) (xy -0.137490 2.958046) (xy -0.186970 2.924891) 168 | (xy -0.254000 2.921000) (xy -0.343954 2.931489) (xy -0.377109 2.980970) (xy -0.381000 3.048000) (xy -0.889000 3.048000) (xy -0.889000 2.667000) (xy -0.762000 2.667000) (xy -0.672046 2.656510) 169 | (xy -0.638891 2.607030) (xy -0.635000 2.540000) (xy -0.645490 2.450046) (xy -0.694970 2.416891) (xy -0.762000 2.413000) (xy -0.851954 2.402510) (xy -0.885109 2.353030) (xy -0.889000 2.286000) 170 | (xy -0.878511 2.196046) (xy -0.829030 2.162891) (xy -0.762000 2.159000) (xy -0.672046 2.169489) )(layer F.SilkS) (width 0.010000) 171 | ) 172 | (fp_poly (pts (xy -1.905000 -1.905000) (xy -3.683000 -1.905000) (xy -3.683000 -3.429000) (xy -3.429000 -3.429000) (xy -3.429000 -2.159000) (xy -2.159000 -2.159000) (xy -2.159000 -3.429000) (xy -3.429000 -3.429000) 173 | (xy -3.683000 -3.429000) (xy -3.683000 -3.683000) (xy -1.905000 -3.683000) (xy -1.905000 -1.905000) )(layer F.SilkS) (width 0.010000) 174 | ) 175 | (fp_poly (pts (xy 3.683000 -1.905000) (xy 1.905000 -1.905000) (xy 1.905000 -3.429000) (xy 2.159000 -3.429000) (xy 2.159000 -2.159000) (xy 3.429000 -2.159000) (xy 3.429000 -3.429000) (xy 2.159000 -3.429000) 176 | (xy 1.905000 -3.429000) (xy 1.905000 -3.683000) (xy 3.683000 -3.683000) (xy 3.683000 -1.905000) )(layer F.SilkS) (width 0.010000) 177 | ) 178 | (fp_poly (pts (xy 0.089954 -3.672511) (xy 0.123109 -3.623030) (xy 0.127000 -3.556000) (xy 0.116510 -3.466046) (xy 0.067030 -3.432891) (xy 0.000000 -3.429000) (xy -0.089954 -3.418511) (xy -0.123109 -3.369030) 179 | (xy -0.127000 -3.302000) (xy -0.137490 -3.212046) (xy -0.186970 -3.178891) (xy -0.254000 -3.175000) (xy -0.343954 -3.185490) (xy -0.377109 -3.234970) (xy -0.381000 -3.302000) (xy -0.370511 -3.391954) 180 | (xy -0.321030 -3.425109) (xy -0.254000 -3.429000) (xy -0.164046 -3.439490) (xy -0.130891 -3.488970) (xy -0.127000 -3.556000) (xy -0.116511 -3.645954) (xy -0.067030 -3.679109) (xy 0.000000 -3.683000) 181 | (xy 0.089954 -3.672511) )(layer F.SilkS) (width 0.010000) 182 | ) 183 | (fp_poly (pts (xy -2.413000 3.175000) (xy -3.175000 3.175000) (xy -3.175000 2.413000) (xy -2.413000 2.413000) (xy -2.413000 3.175000) )(layer F.SilkS) (width 0.010000) 184 | ) 185 | (fp_poly (pts (xy 2.121954 1.915489) (xy 2.155109 1.964970) (xy 2.159000 2.032000) (xy 2.148510 2.121954) (xy 2.099030 2.155109) (xy 2.032000 2.159000) (xy 1.942046 2.148510) (xy 1.908891 2.099030) 186 | (xy 1.905000 2.032000) (xy 1.915489 1.942046) (xy 1.964970 1.908891) (xy 2.032000 1.905000) (xy 2.121954 1.915489) )(layer F.SilkS) (width 0.010000) 187 | ) 188 | (fp_poly (pts (xy 1.143000 0.254000) (xy 1.132510 0.343954) (xy 1.083030 0.377109) (xy 1.016000 0.381000) (xy 0.926046 0.391489) (xy 0.892891 0.440970) (xy 0.889000 0.508000) (xy 0.878510 0.597954) 189 | (xy 0.829030 0.631109) (xy 0.762000 0.635000) (xy 0.635000 0.635000) (xy 0.635000 0.127000) (xy 1.143000 0.127000) (xy 1.143000 0.254000) )(layer F.SilkS) (width 0.010000) 190 | ) 191 | (fp_poly (pts (xy 1.359954 -0.878511) (xy 1.393109 -0.829030) (xy 1.397000 -0.762000) (xy 1.386510 -0.672046) (xy 1.337030 -0.638891) (xy 1.270000 -0.635000) (xy 1.180046 -0.645490) (xy 1.146891 -0.694970) 192 | (xy 1.143000 -0.762000) (xy 1.153489 -0.851954) (xy 1.202970 -0.885109) (xy 1.270000 -0.889000) (xy 1.359954 -0.878511) )(layer F.SilkS) (width 0.010000) 193 | ) 194 | (fp_poly (pts (xy 0.343954 -1.894511) (xy 0.377109 -1.845030) (xy 0.381000 -1.778000) (xy 0.370510 -1.688046) (xy 0.321030 -1.654891) (xy 0.254000 -1.651000) (xy 0.164046 -1.661490) (xy 0.130891 -1.710970) 195 | (xy 0.127000 -1.778000) (xy 0.137489 -1.867954) (xy 0.186970 -1.901109) (xy 0.254000 -1.905000) (xy 0.343954 -1.894511) )(layer F.SilkS) (width 0.010000) 196 | ) 197 | (fp_poly (pts (xy -2.413000 -2.413000) (xy -3.175000 -2.413000) (xy -3.175000 -3.175000) (xy -2.413000 -3.175000) (xy -2.413000 -2.413000) )(layer F.SilkS) (width 0.010000) 198 | ) 199 | (fp_poly (pts (xy 3.175000 -2.413000) (xy 2.413000 -2.413000) (xy 2.413000 -3.175000) (xy 3.175000 -3.175000) (xy 3.175000 -2.413000) )(layer F.SilkS) (width 0.010000) 200 | ) 201 | ) 202 | -------------------------------------------------------------------------------- /kicad/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "project")(type "KiCad")(uri "${KIPRJMOD}/project.kicad_sym")(options "")(descr "")) 3 | ) 4 | --------------------------------------------------------------------------------