resistor.lbr 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE eagle SYSTEM "eagle.dtd">
  3. <eagle version="7.1.0">
  4. <drawing>
  5. <settings>
  6. <setting alwaysvectorfont="no"/>
  7. <setting verticaltext="up"/>
  8. </settings>
  9. <grid distance="1" unitdist="mic" unit="mic" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
  10. <layers>
  11. <layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
  12. <layer number="2" name="Route2" color="1" fill="3" visible="no" active="yes"/>
  13. <layer number="3" name="Route3" color="4" fill="3" visible="no" active="yes"/>
  14. <layer number="4" name="Route4" color="1" fill="4" visible="no" active="yes"/>
  15. <layer number="5" name="Route5" color="4" fill="4" visible="no" active="yes"/>
  16. <layer number="6" name="Route6" color="1" fill="8" visible="no" active="yes"/>
  17. <layer number="7" name="Route7" color="4" fill="8" visible="no" active="yes"/>
  18. <layer number="8" name="Route8" color="1" fill="2" visible="no" active="yes"/>
  19. <layer number="9" name="Route9" color="4" fill="2" visible="no" active="yes"/>
  20. <layer number="10" name="Route10" color="1" fill="7" visible="no" active="yes"/>
  21. <layer number="11" name="Route11" color="4" fill="7" visible="no" active="yes"/>
  22. <layer number="12" name="Route12" color="1" fill="5" visible="no" active="yes"/>
  23. <layer number="13" name="Route13" color="4" fill="5" visible="no" active="yes"/>
  24. <layer number="14" name="Route14" color="1" fill="6" visible="no" active="yes"/>
  25. <layer number="15" name="Route15" color="4" fill="6" visible="no" active="yes"/>
  26. <layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
  27. <layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
  28. <layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
  29. <layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
  30. <layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
  31. <layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
  32. <layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
  33. <layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
  34. <layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
  35. <layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
  36. <layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
  37. <layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/>
  38. <layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/>
  39. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="yes"/>
  40. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="yes"/>
  41. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/>
  42. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/>
  43. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
  44. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
  45. <layer number="35" name="tGlue" color="7" fill="4" visible="yes" active="yes"/>
  46. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
  47. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
  48. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
  49. <layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/>
  50. <layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/>
  51. <layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
  52. <layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
  53. <layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
  54. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
  55. <layer number="45" name="Holes" color="7" fill="1" visible="yes" active="yes"/>
  56. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
  57. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
  58. <layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/>
  59. <layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/>
  60. <layer number="50" name="dxf" color="7" fill="1" visible="yes" active="yes"/>
  61. <layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/>
  62. <layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/>
  63. <layer number="53" name="tGND_GNDA" color="7" fill="1" visible="yes" active="yes"/>
  64. <layer number="54" name="bGND_GNDA" color="7" fill="1" visible="yes" active="yes"/>
  65. <layer number="56" name="wert" color="7" fill="1" visible="yes" active="yes"/>
  66. <layer number="57" name="tCAD" color="7" fill="1" visible="yes" active="yes"/>
  67. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  68. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  69. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  70. <layer number="93" name="Pins" color="2" fill="1" visible="yes" active="yes"/>
  71. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  72. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  73. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  74. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  75. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  76. <layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/>
  77. <layer number="100" name="Muster" color="7" fill="1" visible="yes" active="yes"/>
  78. <layer number="101" name="Patch_Top" color="7" fill="1" visible="yes" active="yes"/>
  79. <layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
  80. <layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
  81. <layer number="104" name="Name" color="7" fill="1" visible="yes" active="yes"/>
  82. <layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
  83. <layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
  84. <layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
  85. <layer number="108" name="tplace-old" color="7" fill="1" visible="yes" active="yes"/>
  86. <layer number="109" name="ref-old" color="7" fill="1" visible="yes" active="yes"/>
  87. <layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
  88. <layer number="111" name="LPC17xx" color="7" fill="1" visible="yes" active="yes"/>
  89. <layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
  90. <layer number="113" name="IDFDebug" color="7" fill="1" visible="yes" active="yes"/>
  91. <layer number="116" name="Patch_BOT" color="7" fill="1" visible="yes" active="yes"/>
  92. <layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
  93. <layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
  94. <layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
  95. <layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
  96. <layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
  97. <layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
  98. <layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
  99. <layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
  100. <layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
  101. <layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
  102. <layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
  103. <layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/>
  104. <layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
  105. <layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
  106. <layer number="153" name="FabDoc1" color="7" fill="1" visible="yes" active="yes"/>
  107. <layer number="154" name="FabDoc2" color="7" fill="1" visible="yes" active="yes"/>
  108. <layer number="155" name="FabDoc3" color="7" fill="1" visible="yes" active="yes"/>
  109. <layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
  110. <layer number="200" name="200bmp" color="7" fill="1" visible="yes" active="yes"/>
  111. <layer number="201" name="201bmp" color="7" fill="1" visible="yes" active="yes"/>
  112. <layer number="202" name="202bmp" color="7" fill="1" visible="yes" active="yes"/>
  113. <layer number="203" name="203bmp" color="7" fill="1" visible="yes" active="yes"/>
  114. <layer number="204" name="204bmp" color="7" fill="1" visible="yes" active="yes"/>
  115. <layer number="205" name="205bmp" color="7" fill="1" visible="yes" active="yes"/>
  116. <layer number="206" name="206bmp" color="7" fill="1" visible="yes" active="yes"/>
  117. <layer number="207" name="207bmp" color="7" fill="1" visible="yes" active="yes"/>
  118. <layer number="208" name="208bmp" color="7" fill="1" visible="yes" active="yes"/>
  119. <layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
  120. <layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
  121. <layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
  122. <layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
  123. <layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
  124. <layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
  125. <layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
  126. <layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
  127. <layer number="217" name="217bmp" color="7" fill="1" visible="yes" active="yes"/>
  128. <layer number="218" name="218bmp" color="7" fill="1" visible="yes" active="yes"/>
  129. <layer number="219" name="219bmp" color="7" fill="1" visible="yes" active="yes"/>
  130. <layer number="220" name="220bmp" color="7" fill="1" visible="yes" active="yes"/>
  131. <layer number="221" name="221bmp" color="7" fill="1" visible="yes" active="yes"/>
  132. <layer number="222" name="222bmp" color="7" fill="1" visible="yes" active="yes"/>
  133. <layer number="223" name="223bmp" color="7" fill="1" visible="yes" active="yes"/>
  134. <layer number="224" name="224bmp" color="7" fill="1" visible="yes" active="yes"/>
  135. <layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
  136. <layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
  137. <layer number="250" name="Descript" color="7" fill="1" visible="yes" active="yes"/>
  138. <layer number="251" name="SMDround" color="7" fill="1" visible="yes" active="yes"/>
  139. <layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
  140. </layers>
  141. <library>
  142. <packages>
  143. <package name="0204/5">
  144. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  145. type 0204, grid 5 mm</description>
  146. <wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="51"/>
  147. <wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="51"/>
  148. <wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  149. <wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  150. <wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  151. <wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  152. <wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="51"/>
  153. <wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  154. <wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  155. <wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  156. <wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  157. <wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  158. <wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
  159. <wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  160. <wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
  161. <wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  162. <wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  163. <wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="51"/>
  164. <rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="51"/>
  165. <rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="51"/>
  166. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  167. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  168. <text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  169. <text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  170. </package>
  171. <package name="0204/7">
  172. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  173. type 0204, grid 7.5 mm</description>
  174. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  175. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  176. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  177. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  178. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  179. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  180. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  181. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  182. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  183. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  184. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  185. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  186. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  187. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  188. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  189. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  190. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  191. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  192. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  193. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  194. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  195. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  196. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  197. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  198. </package>
  199. <package name="0204V">
  200. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  201. type 0204, grid 2.5 mm</description>
  202. <circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="51"/>
  203. <circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="51"/>
  204. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="51"/>
  205. <wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
  206. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  207. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  208. <text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  209. <text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  210. </package>
  211. <package name="0207/2V">
  212. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  213. type 0207, grid 2.5 mm</description>
  214. <circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
  215. <circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="51"/>
  216. <wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="51"/>
  217. <wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
  218. <wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="51"/>
  219. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  220. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  221. <text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  222. <text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  223. </package>
  224. <package name="0207/5V">
  225. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  226. type 0207, grid 5 mm</description>
  227. <circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
  228. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  229. <wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="51"/>
  230. <wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
  231. <wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="51"/>
  232. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  233. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  234. <text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  235. <text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  236. </package>
  237. <package name="0207/7">
  238. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  239. type 0207, grid 7.5 mm</description>
  240. <wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="51"/>
  241. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  242. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  243. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  244. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  245. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="51"/>
  246. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  247. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  248. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  249. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  250. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  251. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  252. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  253. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  254. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  255. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  256. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="51"/>
  257. <wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="51"/>
  258. <rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="51"/>
  259. <rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="51"/>
  260. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  261. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  262. <text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  263. <text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  264. </package>
  265. <package name="0207/10">
  266. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  267. type 0207, grid 10 mm</description>
  268. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  269. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  270. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  271. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  272. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  273. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  274. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  275. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  276. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  277. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  278. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  279. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  280. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  281. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  282. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  283. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  284. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  285. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  286. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  287. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  288. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  289. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  290. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  291. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  292. </package>
  293. <package name="0207/12">
  294. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  295. type 0207, grid 12 mm</description>
  296. <wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="51"/>
  297. <wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="51"/>
  298. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  299. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  300. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  301. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  302. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  303. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  304. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  305. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  306. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  307. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  308. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  309. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  310. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  311. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  312. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  313. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  314. <wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  315. <wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  316. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  317. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  318. <rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
  319. <rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  320. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  321. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  322. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  323. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  324. </package>
  325. <package name="0207/15">
  326. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  327. type 0207, grid 15mm</description>
  328. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="51"/>
  329. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="51"/>
  330. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  331. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  332. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  333. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  334. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  335. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  336. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  337. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  338. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  339. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  340. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  341. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  342. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  343. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  344. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  345. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  346. <wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  347. <wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  348. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  349. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  350. <rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
  351. <rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
  352. <pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
  353. <pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
  354. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  355. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  356. </package>
  357. <package name="0309/10">
  358. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  359. type 0309, grid 10mm</description>
  360. <wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  361. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  362. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  363. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  364. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  365. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="51"/>
  366. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  367. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  368. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  369. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  370. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  371. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  372. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  373. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  374. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  375. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  376. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="51"/>
  377. <wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="51"/>
  378. <rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="51"/>
  379. <rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="51"/>
  380. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  381. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  382. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  383. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  384. </package>
  385. <package name="0309/12">
  386. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  387. type 0309, grid 12.5 mm</description>
  388. <wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  389. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  390. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  391. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  392. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  393. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  394. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
  395. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  396. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  397. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  398. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  399. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  400. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  401. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  402. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  403. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  404. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  405. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
  406. <rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
  407. <rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
  408. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  409. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  410. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  411. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  412. </package>
  413. <package name="0309V">
  414. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  415. type 0309, grid 2.5 mm</description>
  416. <circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
  417. <circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="51"/>
  418. <wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="51"/>
  419. <wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="51"/>
  420. <rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="51"/>
  421. <rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="51"/>
  422. <rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
  423. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  424. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  425. <text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  426. <text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  427. </package>
  428. <package name="0411/12">
  429. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  430. type 0411, grid 12.5 mm</description>
  431. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="51"/>
  432. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="51"/>
  433. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  434. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  435. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  436. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  437. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  438. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  439. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  440. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  441. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  442. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  443. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  444. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  445. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  446. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  447. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  448. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  449. <rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  450. <rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
  451. <pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
  452. <pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
  453. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  454. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  455. </package>
  456. <package name="0411/15">
  457. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  458. type 0411, grid 15 mm</description>
  459. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  460. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  461. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  462. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  463. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  464. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  465. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  466. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  467. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  468. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  469. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  470. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  471. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  472. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  473. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  474. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  475. <wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="51"/>
  476. <wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="51"/>
  477. <rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
  478. <rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  479. <pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
  480. <pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
  481. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  482. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  483. </package>
  484. <package name="0411V">
  485. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  486. type 0411, grid 3.81 mm</description>
  487. <circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
  488. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  489. <wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="51"/>
  490. <wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="51"/>
  491. <rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
  492. <pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
  493. <pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
  494. <text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  495. <text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  496. </package>
  497. <package name="0414/15">
  498. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  499. type 0414, grid 15 mm</description>
  500. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="51"/>
  501. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="51"/>
  502. <wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
  503. <wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
  504. <wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  505. <wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  506. <wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
  507. <wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  508. <wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  509. <wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  510. <wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  511. <wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  512. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  513. <wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  514. <wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
  515. <wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  516. <wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  517. <wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
  518. <rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
  519. <rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
  520. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  521. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  522. <text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  523. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  524. </package>
  525. <package name="0414V">
  526. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  527. type 0414, grid 5 mm</description>
  528. <circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
  529. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  530. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  531. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  532. <rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
  533. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  534. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  535. <text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  536. <text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  537. </package>
  538. <package name="0617/17">
  539. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  540. type 0617, grid 17.5 mm</description>
  541. <wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="51"/>
  542. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  543. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  544. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  545. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  546. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  547. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  548. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  549. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  550. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  551. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  552. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
  553. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="51"/>
  554. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  555. <wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
  556. <wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="51"/>
  557. <wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  558. <wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="51"/>
  559. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  560. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  561. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  562. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  563. <rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="51"/>
  564. <rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="51"/>
  565. <pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
  566. <pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
  567. <text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  568. <text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  569. </package>
  570. <package name="0617/22">
  571. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  572. type 0617, grid 22.5 mm</description>
  573. <wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  574. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  575. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  576. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  577. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  578. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  579. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  580. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  581. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  582. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  583. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  584. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  585. <wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  586. <wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="51"/>
  587. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  588. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  589. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  590. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  591. <rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
  592. <rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
  593. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  594. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  595. <text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  596. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  597. </package>
  598. <package name="0617V">
  599. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  600. type 0617, grid 5 mm</description>
  601. <circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
  602. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  603. <wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="51"/>
  604. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="51"/>
  605. <rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  606. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  607. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  608. <text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  609. <text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  610. </package>
  611. <package name="0922/22">
  612. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  613. type 0922, grid 22.5 mm</description>
  614. <wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="51"/>
  615. <wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="51"/>
  616. <wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
  617. <wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  618. <wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  619. <wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  620. <wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  621. <wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  622. <wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
  623. <wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  624. <wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
  625. <wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  626. <wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  627. <wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
  628. <wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  629. <wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  630. <wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
  631. <wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
  632. <rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="51"/>
  633. <rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  634. <rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
  635. <rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="51"/>
  636. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  637. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  638. <text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  639. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  640. </package>
  641. <package name="0922V">
  642. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  643. type 0922, grid 7.5 mm</description>
  644. <circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
  645. <circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
  646. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  647. <wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="51"/>
  648. <rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  649. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  650. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  651. <text x="-0.508" y="1.6764" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  652. <text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  653. <text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
  654. </package>
  655. <package name="M0805">
  656. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  657. MELF 0.10 W</description>
  658. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  659. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  660. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  661. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  662. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  663. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  664. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  665. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  666. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  667. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  668. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  669. <text x="-1.016" y="1.016" size="1.27" layer="25">&gt;NAME</text>
  670. <text x="-1.016" y="-2.286" size="1.27" layer="27">&gt;VALUE</text>
  671. </package>
  672. <package name="M1206">
  673. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  674. MELF 0.25 W</description>
  675. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  676. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  677. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  678. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  679. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  680. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  681. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  682. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  683. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  684. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  685. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  686. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  687. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  688. </package>
  689. <package name="M1406">
  690. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  691. MELF 0.12 W</description>
  692. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  693. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  694. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  695. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  696. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  697. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  698. <wire x1="0.6858" y1="0.762" x2="-0.6858" y2="0.762" width="0.1524" layer="21"/>
  699. <wire x1="0.6858" y1="-0.762" x2="-0.6858" y2="-0.762" width="0.1524" layer="21"/>
  700. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  701. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  702. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  703. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  704. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  705. <text x="-1.651" y="1.143" size="1.27" layer="25">&gt;NAME</text>
  706. <text x="-1.651" y="-2.413" size="1.27" layer="27">&gt;VALUE</text>
  707. </package>
  708. <package name="M2012">
  709. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  710. MELF 0.10 W</description>
  711. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  712. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  713. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  714. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  715. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  716. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  717. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  718. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  719. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  720. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  721. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  722. <text x="-1.016" y="1.016" size="1.27" layer="25">&gt;NAME</text>
  723. <text x="-1.016" y="-2.286" size="1.27" layer="27">&gt;VALUE</text>
  724. </package>
  725. <package name="M2309">
  726. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  727. MELF 0.25 W</description>
  728. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  729. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  730. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  731. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  732. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  733. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  734. <wire x1="1.651" y1="1.1684" x2="-1.6764" y2="1.1684" width="0.1524" layer="21"/>
  735. <wire x1="1.651" y1="-1.1684" x2="-1.651" y2="-1.1684" width="0.1524" layer="21"/>
  736. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  737. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  738. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  739. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  740. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  741. <text x="-2.794" y="1.651" size="1.27" layer="25">&gt;NAME</text>
  742. <text x="-2.794" y="-2.794" size="1.27" layer="27">&gt;VALUE</text>
  743. </package>
  744. <package name="M3216">
  745. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  746. MELF 0.25 W</description>
  747. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  748. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  749. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  750. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  751. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  752. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  753. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  754. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  755. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  756. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  757. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  758. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  759. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  760. </package>
  761. <package name="M3516">
  762. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  763. MELF 0.12 W</description>
  764. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  765. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  766. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  767. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  768. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  769. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  770. <wire x1="0.6858" y1="0.762" x2="-0.6858" y2="0.762" width="0.1524" layer="21"/>
  771. <wire x1="0.6858" y1="-0.762" x2="-0.6858" y2="-0.762" width="0.1524" layer="21"/>
  772. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  773. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  774. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  775. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  776. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  777. <text x="-1.651" y="1.143" size="1.27" layer="25">&gt;NAME</text>
  778. <text x="-1.651" y="-2.413" size="1.27" layer="27">&gt;VALUE</text>
  779. </package>
  780. <package name="M5923">
  781. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  782. MELF 0.25 W</description>
  783. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  784. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  785. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  786. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  787. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  788. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  789. <wire x1="1.651" y1="1.1684" x2="-1.6764" y2="1.1684" width="0.1524" layer="21"/>
  790. <wire x1="1.651" y1="-1.1684" x2="-1.651" y2="-1.1684" width="0.1524" layer="21"/>
  791. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  792. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  793. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  794. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  795. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  796. <text x="-2.794" y="1.651" size="1.27" layer="25">&gt;NAME</text>
  797. <text x="-2.794" y="-2.794" size="1.27" layer="27">&gt;VALUE</text>
  798. </package>
  799. <package name="MINI_MELF-0102AX">
  800. <description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>
  801. <circle x="0" y="0" radius="0.6" width="0" layer="51"/>
  802. <circle x="0" y="0" radius="0.6" width="0" layer="52"/>
  803. <smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
  804. <smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
  805. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  806. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  807. <hole x="0" y="0" drill="1.3"/>
  808. </package>
  809. <package name="MINI_MELF-0102R">
  810. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;
  811. source Beyschlag</description>
  812. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  813. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  814. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  815. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  816. <smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  817. <smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  818. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  819. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  820. </package>
  821. <package name="MINI_MELF-0102W">
  822. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;
  823. source Beyschlag</description>
  824. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  825. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  826. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  827. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  828. <smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  829. <smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  830. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  831. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  832. </package>
  833. <package name="MINI_MELF-0204R">
  834. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;
  835. source Beyschlag</description>
  836. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  837. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  838. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  839. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  840. <smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  841. <smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  842. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  843. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  844. </package>
  845. <package name="MINI_MELF-0204W">
  846. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;
  847. source Beyschlag</description>
  848. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  849. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  850. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  851. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  852. <smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  853. <smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  854. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  855. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  856. </package>
  857. <package name="MINI_MELF-0207R">
  858. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;
  859. source Beyschlag</description>
  860. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  861. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  862. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  863. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  864. <smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  865. <smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  866. <text x="-2.2225" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  867. <text x="-2.2225" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  868. </package>
  869. <package name="MINI_MELF-0207W">
  870. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;
  871. source Beyschlag</description>
  872. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  873. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  874. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  875. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  876. <smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  877. <smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  878. <text x="-2.54" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  879. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  880. </package>
  881. <package name="P0613/15">
  882. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  883. type 0613, grid 15 mm</description>
  884. <wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="51"/>
  885. <wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="51"/>
  886. <wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  887. <wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  888. <wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  889. <wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  890. <wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  891. <wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  892. <wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  893. <wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  894. <wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  895. <wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
  896. <wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  897. <wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
  898. <wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  899. <wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  900. <wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
  901. <wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="51"/>
  902. <wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
  903. <wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
  904. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="51"/>
  905. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
  906. <rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="51"/>
  907. <rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="51"/>
  908. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  909. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  910. <text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  911. <text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  912. </package>
  913. <package name="P0613V">
  914. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  915. type 0613, grid 5 mm</description>
  916. <circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
  917. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  918. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  919. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  920. <rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  921. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  922. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  923. <text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  924. <text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  925. </package>
  926. <package name="P0817/22">
  927. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  928. type 0817, grid 22.5 mm</description>
  929. <wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  930. <wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
  931. <wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  932. <wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  933. <wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  934. <wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  935. <wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  936. <wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
  937. <wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  938. <wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
  939. <wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  940. <wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  941. <wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
  942. <wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="51"/>
  943. <wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  944. <wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  945. <wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  946. <wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  947. <rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  948. <rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
  949. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  950. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  951. <text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  952. <text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  953. <text x="6.604" y="-2.2606" size="1.27" layer="51" ratio="10" rot="R90">0817</text>
  954. </package>
  955. <package name="P0817V">
  956. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  957. type 0817, grid 6.35 mm</description>
  958. <circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
  959. <circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="51"/>
  960. <wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="51"/>
  961. <wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="51"/>
  962. <rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
  963. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  964. <pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
  965. <text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  966. <text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  967. <text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
  968. </package>
  969. <package name="R0402">
  970. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  971. chip</description>
  972. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  973. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  974. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  975. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  976. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  977. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  978. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  979. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  980. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  981. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  982. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  983. <text x="-0.635" y="0.762" size="1.27" layer="25">&gt;NAME</text>
  984. <text x="-0.635" y="-2.032" size="1.27" layer="27">&gt;VALUE</text>
  985. </package>
  986. <package name="R0603">
  987. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  988. chip</description>
  989. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  990. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  991. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  992. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  993. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  994. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  995. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  996. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  997. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  998. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  999. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1000. <text x="-0.889" y="0.889" size="1.27" layer="25">&gt;NAME</text>
  1001. <text x="-0.889" y="-2.032" size="1.27" layer="27">&gt;VALUE</text>
  1002. </package>
  1003. <package name="R0805">
  1004. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1005. chip</description>
  1006. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1007. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1008. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1009. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1010. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1011. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1012. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1013. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1014. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1015. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1016. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1017. <text x="-0.762" y="1.016" size="1.27" layer="25">&gt;NAME</text>
  1018. <text x="-0.762" y="-2.286" size="1.27" layer="27">&gt;VALUE</text>
  1019. </package>
  1020. <package name="R0805W">
  1021. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1022. chip, wave soldering</description>
  1023. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1024. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1025. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1026. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1027. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1028. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1029. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1030. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1031. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1032. <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1033. <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1034. <text x="-0.635" y="1.016" size="1.27" layer="25">&gt;NAME</text>
  1035. <text x="-0.635" y="-2.159" size="1.27" layer="27">&gt;VALUE</text>
  1036. </package>
  1037. <package name="R1005">
  1038. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1039. chip</description>
  1040. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1041. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1042. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1043. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1044. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1045. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1046. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1047. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1048. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  1049. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1050. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1051. <text x="-0.635" y="0.762" size="1.27" layer="25">&gt;NAME</text>
  1052. <text x="-0.635" y="-2.032" size="1.27" layer="27">&gt;VALUE</text>
  1053. </package>
  1054. <package name="R1206">
  1055. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1056. chip</description>
  1057. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  1058. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  1059. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1060. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1061. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1062. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1063. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  1064. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  1065. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1066. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1067. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1068. <text x="-1.397" y="1.143" size="1.27" layer="25">&gt;NAME</text>
  1069. <text x="-1.397" y="-2.413" size="1.27" layer="27">&gt;VALUE</text>
  1070. </package>
  1071. <package name="R1206W">
  1072. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1073. chip, wave soldering</description>
  1074. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="21"/>
  1075. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="21"/>
  1076. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1077. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1078. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1079. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1080. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1081. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1082. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1083. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1084. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1085. <text x="-1.651" y="1.143" size="1.27" layer="25">&gt;NAME</text>
  1086. <text x="-1.651" y="-2.413" size="1.27" layer="27">&gt;VALUE</text>
  1087. </package>
  1088. <package name="R1210">
  1089. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1090. chip</description>
  1091. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1092. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1093. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1094. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1095. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1096. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1097. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1098. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1099. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  1100. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1101. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1102. <text x="-1.27" y="1.651" size="1.27" layer="25">&gt;NAME</text>
  1103. <text x="-1.27" y="-2.921" size="1.27" layer="27">&gt;VALUE</text>
  1104. </package>
  1105. <package name="R1210W">
  1106. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1107. chip, wave soldering</description>
  1108. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="21"/>
  1109. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="21"/>
  1110. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1111. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1112. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1113. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1114. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1115. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1116. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  1117. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1118. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1119. <text x="-1.651" y="1.524" size="1.27" layer="25">&gt;NAME</text>
  1120. <text x="-1.651" y="-2.794" size="1.27" layer="27">&gt;VALUE</text>
  1121. </package>
  1122. <package name="R2010">
  1123. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1124. chip</description>
  1125. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1126. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1127. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1128. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1129. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1130. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1131. <wire x1="-1.027" y1="1.245" x2="1.027" y2="1.245" width="0.1524" layer="21"/>
  1132. <wire x1="-1.002" y1="-1.245" x2="1.016" y2="-1.245" width="0.1524" layer="21"/>
  1133. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1134. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1135. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1136. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1137. <text x="-2.159" y="1.651" size="1.27" layer="25">&gt;NAME</text>
  1138. <text x="-2.159" y="-2.921" size="1.27" layer="27">&gt;VALUE</text>
  1139. </package>
  1140. <package name="R2010W">
  1141. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1142. chip, wave soldering</description>
  1143. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="21"/>
  1144. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="21"/>
  1145. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1146. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1147. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1148. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1149. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1150. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1151. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1152. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1153. <text x="-2.286" y="1.524" size="1.27" layer="25">&gt;NAME</text>
  1154. <text x="-2.286" y="-2.921" size="1.27" layer="27">&gt;VALUE</text>
  1155. </package>
  1156. <package name="R2012">
  1157. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1158. chip</description>
  1159. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1160. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1161. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1162. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1163. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1164. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1165. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1166. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1167. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1168. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1169. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1170. <text x="-0.762" y="1.016" size="1.27" layer="25">&gt;NAME</text>
  1171. <text x="-0.762" y="-2.286" size="1.27" layer="27">&gt;VALUE</text>
  1172. </package>
  1173. <package name="R2012W">
  1174. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1175. chip, wave soldering</description>
  1176. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1177. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1178. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1179. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1180. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1181. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1182. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1183. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1184. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1185. <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1186. <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1187. <text x="-0.635" y="1.016" size="1.27" layer="25">&gt;NAME</text>
  1188. <text x="-0.635" y="-2.286" size="1.27" layer="27">&gt;VALUE</text>
  1189. </package>
  1190. <package name="R2512">
  1191. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1192. chip</description>
  1193. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1194. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1195. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1196. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1197. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1198. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1199. <wire x1="-1.473" y1="1.473" x2="1.498" y2="1.473" width="0.1524" layer="21"/>
  1200. <wire x1="-1.473" y1="-1.473" x2="1.498" y2="-1.473" width="0.1524" layer="21"/>
  1201. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1202. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1203. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1204. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1205. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1206. <text x="-2.667" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1207. <text x="-2.667" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1208. </package>
  1209. <package name="R2512W">
  1210. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1211. chip, wave soldering</description>
  1212. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="21"/>
  1213. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="21"/>
  1214. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1215. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1216. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1217. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1218. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1219. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1220. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1221. <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1222. <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1223. <text x="-2.794" y="1.778" size="1.27" layer="25">&gt;NAME</text>
  1224. <text x="-2.794" y="-3.048" size="1.27" layer="27">&gt;VALUE</text>
  1225. </package>
  1226. <package name="R3216">
  1227. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1228. chip</description>
  1229. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1230. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1231. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1232. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1233. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1234. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1235. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1236. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1237. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1238. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1239. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1240. <text x="-1.397" y="1.143" size="1.27" layer="25">&gt;NAME</text>
  1241. <text x="-1.397" y="-2.413" size="1.27" layer="27">&gt;VALUE</text>
  1242. </package>
  1243. <package name="R3216W">
  1244. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1245. chip, wave soldering</description>
  1246. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="21"/>
  1247. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="21"/>
  1248. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1249. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1250. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1251. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1252. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1253. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1254. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1255. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1256. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1257. <text x="-1.524" y="1.143" size="1.27" layer="25">&gt;NAME</text>
  1258. <text x="-1.524" y="-2.413" size="1.27" layer="27">&gt;VALUE</text>
  1259. </package>
  1260. <package name="R3225">
  1261. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1262. chip</description>
  1263. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1264. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1265. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1266. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1267. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1268. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1269. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1270. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1271. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1272. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1273. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1274. <text x="-1.397" y="1.651" size="1.27" layer="25">&gt;NAME</text>
  1275. <text x="-1.397" y="-2.921" size="1.27" layer="27">&gt;VALUE</text>
  1276. </package>
  1277. <package name="R3225W">
  1278. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1279. chip, wave soldering</description>
  1280. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="21"/>
  1281. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="21"/>
  1282. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1283. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1284. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1285. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1286. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1287. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1288. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1289. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1290. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1291. <text x="-1.397" y="1.524" size="1.27" layer="25">&gt;NAME</text>
  1292. <text x="-1.397" y="-2.921" size="1.27" layer="27">&gt;VALUE</text>
  1293. </package>
  1294. <package name="R5025">
  1295. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1296. chip</description>
  1297. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1298. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1299. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1300. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1301. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1302. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1303. <wire x1="-0.9" y1="1.245" x2="0.9" y2="1.245" width="0.1524" layer="21"/>
  1304. <wire x1="-0.875" y1="-1.245" x2="0.925" y2="-1.245" width="0.1524" layer="21"/>
  1305. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1306. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1307. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1308. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1309. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1310. <text x="-2.159" y="1.651" size="1.27" layer="25">&gt;NAME</text>
  1311. <text x="-2.159" y="-2.921" size="1.27" layer="27">&gt;VALUE</text>
  1312. </package>
  1313. <package name="R5025W">
  1314. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1315. chip, wave soldering</description>
  1316. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="21"/>
  1317. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="21"/>
  1318. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1319. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1320. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1321. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1322. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1323. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1324. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1325. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1326. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1327. <text x="-2.286" y="1.651" size="1.27" layer="25">&gt;NAME</text>
  1328. <text x="-2.286" y="-2.921" size="1.27" layer="27">&gt;VALUE</text>
  1329. </package>
  1330. <package name="R6332">
  1331. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1332. chip</description>
  1333. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1334. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1335. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1336. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1337. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1338. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1339. <wire x1="-1.473" y1="1.473" x2="1.498" y2="1.473" width="0.1524" layer="21"/>
  1340. <wire x1="-1.473" y1="-1.473" x2="1.498" y2="-1.473" width="0.1524" layer="21"/>
  1341. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1342. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1343. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1344. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1345. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1346. <text x="-2.794" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1347. <text x="-2.794" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1348. </package>
  1349. <package name="R6332W">
  1350. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1351. chip, wave soldering</description>
  1352. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="21"/>
  1353. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="21"/>
  1354. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1355. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1356. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1357. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1358. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1359. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1360. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1361. <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1362. <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1363. <text x="-2.921" y="1.778" size="1.27" layer="25">&gt;NAME</text>
  1364. <text x="-2.921" y="-3.048" size="1.27" layer="27">&gt;VALUE</text>
  1365. </package>
  1366. <package name="RDH/15">
  1367. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1368. type RDH, grid 15 mm</description>
  1369. <wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="51"/>
  1370. <wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  1371. <wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  1372. <wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  1373. <wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  1374. <wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  1375. <wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
  1376. <wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  1377. <wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
  1378. <wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  1379. <wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  1380. <wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
  1381. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="51"/>
  1382. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
  1383. <wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
  1384. <wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="51"/>
  1385. <wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
  1386. <wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="51"/>
  1387. <wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  1388. <wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  1389. <wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  1390. <wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  1391. <rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="51"/>
  1392. <rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="51"/>
  1393. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  1394. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  1395. <text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1396. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1397. <text x="4.572" y="-1.7272" size="1.27" layer="51" ratio="10" rot="R90">RDH</text>
  1398. </package>
  1399. <package name="V234/12">
  1400. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1401. type V234, grid 12.5 mm</description>
  1402. <wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  1403. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  1404. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  1405. <wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  1406. <wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  1407. <wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
  1408. <wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
  1409. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  1410. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="51"/>
  1411. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="51"/>
  1412. <rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
  1413. <rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
  1414. <pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
  1415. <pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
  1416. <text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1417. <text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1418. </package>
  1419. <package name="V235/17">
  1420. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1421. type V235, grid 17.78 mm</description>
  1422. <wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
  1423. <wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
  1424. <wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
  1425. <wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
  1426. <wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="51"/>
  1427. <wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="51"/>
  1428. <wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
  1429. <wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  1430. <wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  1431. <wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
  1432. <rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
  1433. <rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
  1434. <pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
  1435. <pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
  1436. <text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1437. <text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1438. </package>
  1439. <package name="V526-0">
  1440. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1441. type V526-0, grid 2.5 mm</description>
  1442. <wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  1443. <wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  1444. <wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  1445. <wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  1446. <wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
  1447. <wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
  1448. <wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
  1449. <wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
  1450. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  1451. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  1452. <text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1453. <text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1454. </package>
  1455. </packages>
  1456. <symbols>
  1457. <symbol name="R-US">
  1458. <wire x1="-2.54" y1="0" x2="-2.159" y2="1.016" width="0.2032" layer="94"/>
  1459. <wire x1="-2.159" y1="1.016" x2="-1.524" y2="-1.016" width="0.2032" layer="94"/>
  1460. <wire x1="-1.524" y1="-1.016" x2="-0.889" y2="1.016" width="0.2032" layer="94"/>
  1461. <wire x1="-0.889" y1="1.016" x2="-0.254" y2="-1.016" width="0.2032" layer="94"/>
  1462. <wire x1="-0.254" y1="-1.016" x2="0.381" y2="1.016" width="0.2032" layer="94"/>
  1463. <wire x1="0.381" y1="1.016" x2="1.016" y2="-1.016" width="0.2032" layer="94"/>
  1464. <wire x1="1.016" y1="-1.016" x2="1.651" y2="1.016" width="0.2032" layer="94"/>
  1465. <wire x1="1.651" y1="1.016" x2="2.286" y2="-1.016" width="0.2032" layer="94"/>
  1466. <wire x1="2.286" y1="-1.016" x2="2.54" y2="0" width="0.2032" layer="94"/>
  1467. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  1468. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  1469. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  1470. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  1471. </symbol>
  1472. </symbols>
  1473. <devicesets>
  1474. <deviceset name="R-US_" prefix="R" uservalue="yes">
  1475. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, American symbol</description>
  1476. <gates>
  1477. <gate name="G$1" symbol="R-US" x="0" y="0"/>
  1478. </gates>
  1479. <devices>
  1480. <device name="0204/2V" package="0204V">
  1481. <connects>
  1482. <connect gate="G$1" pin="1" pad="1"/>
  1483. <connect gate="G$1" pin="2" pad="2"/>
  1484. </connects>
  1485. <technologies>
  1486. <technology name=""/>
  1487. </technologies>
  1488. </device>
  1489. <device name="0204/5" package="0204/5">
  1490. <connects>
  1491. <connect gate="G$1" pin="1" pad="1"/>
  1492. <connect gate="G$1" pin="2" pad="2"/>
  1493. </connects>
  1494. <technologies>
  1495. <technology name=""/>
  1496. </technologies>
  1497. </device>
  1498. <device name="0204/7" package="0204/7">
  1499. <connects>
  1500. <connect gate="G$1" pin="1" pad="1"/>
  1501. <connect gate="G$1" pin="2" pad="2"/>
  1502. </connects>
  1503. <technologies>
  1504. <technology name=""/>
  1505. </technologies>
  1506. </device>
  1507. <device name="0207/2V" package="0207/2V">
  1508. <connects>
  1509. <connect gate="G$1" pin="1" pad="1"/>
  1510. <connect gate="G$1" pin="2" pad="2"/>
  1511. </connects>
  1512. <technologies>
  1513. <technology name=""/>
  1514. </technologies>
  1515. </device>
  1516. <device name="0207/5V" package="0207/5V">
  1517. <connects>
  1518. <connect gate="G$1" pin="1" pad="1"/>
  1519. <connect gate="G$1" pin="2" pad="2"/>
  1520. </connects>
  1521. <technologies>
  1522. <technology name=""/>
  1523. </technologies>
  1524. </device>
  1525. <device name="0207/7" package="0207/7">
  1526. <connects>
  1527. <connect gate="G$1" pin="1" pad="1"/>
  1528. <connect gate="G$1" pin="2" pad="2"/>
  1529. </connects>
  1530. <technologies>
  1531. <technology name=""/>
  1532. </technologies>
  1533. </device>
  1534. <device name="0207/10" package="0207/10">
  1535. <connects>
  1536. <connect gate="G$1" pin="1" pad="1"/>
  1537. <connect gate="G$1" pin="2" pad="2"/>
  1538. </connects>
  1539. <technologies>
  1540. <technology name=""/>
  1541. </technologies>
  1542. </device>
  1543. <device name="0207/12" package="0207/12">
  1544. <connects>
  1545. <connect gate="G$1" pin="1" pad="1"/>
  1546. <connect gate="G$1" pin="2" pad="2"/>
  1547. </connects>
  1548. <technologies>
  1549. <technology name=""/>
  1550. </technologies>
  1551. </device>
  1552. <device name="0207/15" package="0207/15">
  1553. <connects>
  1554. <connect gate="G$1" pin="1" pad="1"/>
  1555. <connect gate="G$1" pin="2" pad="2"/>
  1556. </connects>
  1557. <technologies>
  1558. <technology name=""/>
  1559. </technologies>
  1560. </device>
  1561. <device name="0309/10" package="0309/10">
  1562. <connects>
  1563. <connect gate="G$1" pin="1" pad="1"/>
  1564. <connect gate="G$1" pin="2" pad="2"/>
  1565. </connects>
  1566. <technologies>
  1567. <technology name=""/>
  1568. </technologies>
  1569. </device>
  1570. <device name="0309/12" package="0309/12">
  1571. <connects>
  1572. <connect gate="G$1" pin="1" pad="1"/>
  1573. <connect gate="G$1" pin="2" pad="2"/>
  1574. </connects>
  1575. <technologies>
  1576. <technology name=""/>
  1577. </technologies>
  1578. </device>
  1579. <device name="0309/V" package="0309V">
  1580. <connects>
  1581. <connect gate="G$1" pin="1" pad="1"/>
  1582. <connect gate="G$1" pin="2" pad="2"/>
  1583. </connects>
  1584. <technologies>
  1585. <technology name=""/>
  1586. </technologies>
  1587. </device>
  1588. <device name="0411/3V" package="0411V">
  1589. <connects>
  1590. <connect gate="G$1" pin="1" pad="1"/>
  1591. <connect gate="G$1" pin="2" pad="2"/>
  1592. </connects>
  1593. <technologies>
  1594. <technology name=""/>
  1595. </technologies>
  1596. </device>
  1597. <device name="0411/12" package="0411/12">
  1598. <connects>
  1599. <connect gate="G$1" pin="1" pad="1"/>
  1600. <connect gate="G$1" pin="2" pad="2"/>
  1601. </connects>
  1602. <technologies>
  1603. <technology name=""/>
  1604. </technologies>
  1605. </device>
  1606. <device name="0411/15" package="0411/15">
  1607. <connects>
  1608. <connect gate="G$1" pin="1" pad="1"/>
  1609. <connect gate="G$1" pin="2" pad="2"/>
  1610. </connects>
  1611. <technologies>
  1612. <technology name=""/>
  1613. </technologies>
  1614. </device>
  1615. <device name="0414/5V" package="0414V">
  1616. <connects>
  1617. <connect gate="G$1" pin="1" pad="1"/>
  1618. <connect gate="G$1" pin="2" pad="2"/>
  1619. </connects>
  1620. <technologies>
  1621. <technology name=""/>
  1622. </technologies>
  1623. </device>
  1624. <device name="0414/15" package="0414/15">
  1625. <connects>
  1626. <connect gate="G$1" pin="1" pad="1"/>
  1627. <connect gate="G$1" pin="2" pad="2"/>
  1628. </connects>
  1629. <technologies>
  1630. <technology name=""/>
  1631. </technologies>
  1632. </device>
  1633. <device name="0613/5V" package="P0613V">
  1634. <connects>
  1635. <connect gate="G$1" pin="1" pad="1"/>
  1636. <connect gate="G$1" pin="2" pad="2"/>
  1637. </connects>
  1638. <technologies>
  1639. <technology name=""/>
  1640. </technologies>
  1641. </device>
  1642. <device name="0613/15" package="P0613/15">
  1643. <connects>
  1644. <connect gate="G$1" pin="1" pad="1"/>
  1645. <connect gate="G$1" pin="2" pad="2"/>
  1646. </connects>
  1647. <technologies>
  1648. <technology name=""/>
  1649. </technologies>
  1650. </device>
  1651. <device name="0617/5V" package="0617V">
  1652. <connects>
  1653. <connect gate="G$1" pin="1" pad="1"/>
  1654. <connect gate="G$1" pin="2" pad="2"/>
  1655. </connects>
  1656. <technologies>
  1657. <technology name=""/>
  1658. </technologies>
  1659. </device>
  1660. <device name="0617/17" package="0617/17">
  1661. <connects>
  1662. <connect gate="G$1" pin="1" pad="1"/>
  1663. <connect gate="G$1" pin="2" pad="2"/>
  1664. </connects>
  1665. <technologies>
  1666. <technology name=""/>
  1667. </technologies>
  1668. </device>
  1669. <device name="0617/22" package="0617/22">
  1670. <connects>
  1671. <connect gate="G$1" pin="1" pad="1"/>
  1672. <connect gate="G$1" pin="2" pad="2"/>
  1673. </connects>
  1674. <technologies>
  1675. <technology name=""/>
  1676. </technologies>
  1677. </device>
  1678. <device name="0817/7V" package="P0817V">
  1679. <connects>
  1680. <connect gate="G$1" pin="1" pad="1"/>
  1681. <connect gate="G$1" pin="2" pad="2"/>
  1682. </connects>
  1683. <technologies>
  1684. <technology name=""/>
  1685. </technologies>
  1686. </device>
  1687. <device name="0817/22" package="P0817/22">
  1688. <connects>
  1689. <connect gate="G$1" pin="1" pad="1"/>
  1690. <connect gate="G$1" pin="2" pad="2"/>
  1691. </connects>
  1692. <technologies>
  1693. <technology name=""/>
  1694. </technologies>
  1695. </device>
  1696. <device name="0922/22" package="0922/22">
  1697. <connects>
  1698. <connect gate="G$1" pin="1" pad="1"/>
  1699. <connect gate="G$1" pin="2" pad="2"/>
  1700. </connects>
  1701. <technologies>
  1702. <technology name=""/>
  1703. </technologies>
  1704. </device>
  1705. <device name="0922V" package="0922V">
  1706. <connects>
  1707. <connect gate="G$1" pin="1" pad="1"/>
  1708. <connect gate="G$1" pin="2" pad="2"/>
  1709. </connects>
  1710. <technologies>
  1711. <technology name=""/>
  1712. </technologies>
  1713. </device>
  1714. <device name="M0805" package="M0805">
  1715. <connects>
  1716. <connect gate="G$1" pin="1" pad="1"/>
  1717. <connect gate="G$1" pin="2" pad="2"/>
  1718. </connects>
  1719. <technologies>
  1720. <technology name=""/>
  1721. </technologies>
  1722. </device>
  1723. <device name="M1206" package="M1206">
  1724. <connects>
  1725. <connect gate="G$1" pin="1" pad="1"/>
  1726. <connect gate="G$1" pin="2" pad="2"/>
  1727. </connects>
  1728. <technologies>
  1729. <technology name=""/>
  1730. </technologies>
  1731. </device>
  1732. <device name="M1406" package="M1406">
  1733. <connects>
  1734. <connect gate="G$1" pin="1" pad="1"/>
  1735. <connect gate="G$1" pin="2" pad="2"/>
  1736. </connects>
  1737. <technologies>
  1738. <technology name=""/>
  1739. </technologies>
  1740. </device>
  1741. <device name="M2012" package="M2012">
  1742. <connects>
  1743. <connect gate="G$1" pin="1" pad="1"/>
  1744. <connect gate="G$1" pin="2" pad="2"/>
  1745. </connects>
  1746. <technologies>
  1747. <technology name=""/>
  1748. </technologies>
  1749. </device>
  1750. <device name="M2309" package="M2309">
  1751. <connects>
  1752. <connect gate="G$1" pin="1" pad="1"/>
  1753. <connect gate="G$1" pin="2" pad="2"/>
  1754. </connects>
  1755. <technologies>
  1756. <technology name=""/>
  1757. </technologies>
  1758. </device>
  1759. <device name="M3216" package="M3216">
  1760. <connects>
  1761. <connect gate="G$1" pin="1" pad="1"/>
  1762. <connect gate="G$1" pin="2" pad="2"/>
  1763. </connects>
  1764. <technologies>
  1765. <technology name=""/>
  1766. </technologies>
  1767. </device>
  1768. <device name="M3516" package="M3516">
  1769. <connects>
  1770. <connect gate="G$1" pin="1" pad="1"/>
  1771. <connect gate="G$1" pin="2" pad="2"/>
  1772. </connects>
  1773. <technologies>
  1774. <technology name=""/>
  1775. </technologies>
  1776. </device>
  1777. <device name="M5923" package="M5923">
  1778. <connects>
  1779. <connect gate="G$1" pin="1" pad="1"/>
  1780. <connect gate="G$1" pin="2" pad="2"/>
  1781. </connects>
  1782. <technologies>
  1783. <technology name=""/>
  1784. </technologies>
  1785. </device>
  1786. <device name="MELF0102AX" package="MINI_MELF-0102AX">
  1787. <connects>
  1788. <connect gate="G$1" pin="1" pad="1"/>
  1789. <connect gate="G$1" pin="2" pad="2"/>
  1790. </connects>
  1791. <technologies>
  1792. <technology name=""/>
  1793. </technologies>
  1794. </device>
  1795. <device name="MELF0102R" package="MINI_MELF-0102R">
  1796. <connects>
  1797. <connect gate="G$1" pin="1" pad="1"/>
  1798. <connect gate="G$1" pin="2" pad="2"/>
  1799. </connects>
  1800. <technologies>
  1801. <technology name=""/>
  1802. </technologies>
  1803. </device>
  1804. <device name="MELF0102W" package="MINI_MELF-0102W">
  1805. <connects>
  1806. <connect gate="G$1" pin="1" pad="1"/>
  1807. <connect gate="G$1" pin="2" pad="2"/>
  1808. </connects>
  1809. <technologies>
  1810. <technology name=""/>
  1811. </technologies>
  1812. </device>
  1813. <device name="MELF0204R" package="MINI_MELF-0204R">
  1814. <connects>
  1815. <connect gate="G$1" pin="1" pad="1"/>
  1816. <connect gate="G$1" pin="2" pad="2"/>
  1817. </connects>
  1818. <technologies>
  1819. <technology name=""/>
  1820. </technologies>
  1821. </device>
  1822. <device name="MELF0204W" package="MINI_MELF-0204W">
  1823. <connects>
  1824. <connect gate="G$1" pin="1" pad="1"/>
  1825. <connect gate="G$1" pin="2" pad="2"/>
  1826. </connects>
  1827. <technologies>
  1828. <technology name=""/>
  1829. </technologies>
  1830. </device>
  1831. <device name="MELF0207R" package="MINI_MELF-0207R">
  1832. <connects>
  1833. <connect gate="G$1" pin="1" pad="1"/>
  1834. <connect gate="G$1" pin="2" pad="2"/>
  1835. </connects>
  1836. <technologies>
  1837. <technology name=""/>
  1838. </technologies>
  1839. </device>
  1840. <device name="MELF0207W" package="MINI_MELF-0207W">
  1841. <connects>
  1842. <connect gate="G$1" pin="1" pad="1"/>
  1843. <connect gate="G$1" pin="2" pad="2"/>
  1844. </connects>
  1845. <technologies>
  1846. <technology name=""/>
  1847. </technologies>
  1848. </device>
  1849. <device name="R0402" package="R0402">
  1850. <connects>
  1851. <connect gate="G$1" pin="1" pad="1"/>
  1852. <connect gate="G$1" pin="2" pad="2"/>
  1853. </connects>
  1854. <technologies>
  1855. <technology name=""/>
  1856. </technologies>
  1857. </device>
  1858. <device name="R0603" package="R0603">
  1859. <connects>
  1860. <connect gate="G$1" pin="1" pad="1"/>
  1861. <connect gate="G$1" pin="2" pad="2"/>
  1862. </connects>
  1863. <technologies>
  1864. <technology name=""/>
  1865. </technologies>
  1866. </device>
  1867. <device name="R0805" package="R0805">
  1868. <connects>
  1869. <connect gate="G$1" pin="1" pad="1"/>
  1870. <connect gate="G$1" pin="2" pad="2"/>
  1871. </connects>
  1872. <technologies>
  1873. <technology name=""/>
  1874. </technologies>
  1875. </device>
  1876. <device name="R0805W" package="R0805W">
  1877. <connects>
  1878. <connect gate="G$1" pin="1" pad="1"/>
  1879. <connect gate="G$1" pin="2" pad="2"/>
  1880. </connects>
  1881. <technologies>
  1882. <technology name=""/>
  1883. </technologies>
  1884. </device>
  1885. <device name="R1005" package="R1005">
  1886. <connects>
  1887. <connect gate="G$1" pin="1" pad="1"/>
  1888. <connect gate="G$1" pin="2" pad="2"/>
  1889. </connects>
  1890. <technologies>
  1891. <technology name=""/>
  1892. </technologies>
  1893. </device>
  1894. <device name="R1206" package="R1206">
  1895. <connects>
  1896. <connect gate="G$1" pin="1" pad="1"/>
  1897. <connect gate="G$1" pin="2" pad="2"/>
  1898. </connects>
  1899. <technologies>
  1900. <technology name=""/>
  1901. </technologies>
  1902. </device>
  1903. <device name="R1206W" package="R1206W">
  1904. <connects>
  1905. <connect gate="G$1" pin="1" pad="1"/>
  1906. <connect gate="G$1" pin="2" pad="2"/>
  1907. </connects>
  1908. <technologies>
  1909. <technology name=""/>
  1910. </technologies>
  1911. </device>
  1912. <device name="R1210" package="R1210">
  1913. <connects>
  1914. <connect gate="G$1" pin="1" pad="1"/>
  1915. <connect gate="G$1" pin="2" pad="2"/>
  1916. </connects>
  1917. <technologies>
  1918. <technology name=""/>
  1919. </technologies>
  1920. </device>
  1921. <device name="R1210W" package="R1210W">
  1922. <connects>
  1923. <connect gate="G$1" pin="1" pad="1"/>
  1924. <connect gate="G$1" pin="2" pad="2"/>
  1925. </connects>
  1926. <technologies>
  1927. <technology name=""/>
  1928. </technologies>
  1929. </device>
  1930. <device name="R2010" package="R2010">
  1931. <connects>
  1932. <connect gate="G$1" pin="1" pad="1"/>
  1933. <connect gate="G$1" pin="2" pad="2"/>
  1934. </connects>
  1935. <technologies>
  1936. <technology name=""/>
  1937. </technologies>
  1938. </device>
  1939. <device name="R2010W" package="R2010W">
  1940. <connects>
  1941. <connect gate="G$1" pin="1" pad="1"/>
  1942. <connect gate="G$1" pin="2" pad="2"/>
  1943. </connects>
  1944. <technologies>
  1945. <technology name=""/>
  1946. </technologies>
  1947. </device>
  1948. <device name="R2012" package="R2012">
  1949. <connects>
  1950. <connect gate="G$1" pin="1" pad="1"/>
  1951. <connect gate="G$1" pin="2" pad="2"/>
  1952. </connects>
  1953. <technologies>
  1954. <technology name=""/>
  1955. </technologies>
  1956. </device>
  1957. <device name="R2012W" package="R2012W">
  1958. <connects>
  1959. <connect gate="G$1" pin="1" pad="1"/>
  1960. <connect gate="G$1" pin="2" pad="2"/>
  1961. </connects>
  1962. <technologies>
  1963. <technology name=""/>
  1964. </technologies>
  1965. </device>
  1966. <device name="R2512" package="R2512">
  1967. <connects>
  1968. <connect gate="G$1" pin="1" pad="1"/>
  1969. <connect gate="G$1" pin="2" pad="2"/>
  1970. </connects>
  1971. <technologies>
  1972. <technology name=""/>
  1973. </technologies>
  1974. </device>
  1975. <device name="R2512W" package="R2512W">
  1976. <connects>
  1977. <connect gate="G$1" pin="1" pad="1"/>
  1978. <connect gate="G$1" pin="2" pad="2"/>
  1979. </connects>
  1980. <technologies>
  1981. <technology name=""/>
  1982. </technologies>
  1983. </device>
  1984. <device name="R3216" package="R3216">
  1985. <connects>
  1986. <connect gate="G$1" pin="1" pad="1"/>
  1987. <connect gate="G$1" pin="2" pad="2"/>
  1988. </connects>
  1989. <technologies>
  1990. <technology name=""/>
  1991. </technologies>
  1992. </device>
  1993. <device name="R3216W" package="R3216W">
  1994. <connects>
  1995. <connect gate="G$1" pin="1" pad="1"/>
  1996. <connect gate="G$1" pin="2" pad="2"/>
  1997. </connects>
  1998. <technologies>
  1999. <technology name=""/>
  2000. </technologies>
  2001. </device>
  2002. <device name="R3225" package="R3225">
  2003. <connects>
  2004. <connect gate="G$1" pin="1" pad="1"/>
  2005. <connect gate="G$1" pin="2" pad="2"/>
  2006. </connects>
  2007. <technologies>
  2008. <technology name=""/>
  2009. </technologies>
  2010. </device>
  2011. <device name="R3225W" package="R3225W">
  2012. <connects>
  2013. <connect gate="G$1" pin="1" pad="1"/>
  2014. <connect gate="G$1" pin="2" pad="2"/>
  2015. </connects>
  2016. <technologies>
  2017. <technology name=""/>
  2018. </technologies>
  2019. </device>
  2020. <device name="R5025" package="R5025">
  2021. <connects>
  2022. <connect gate="G$1" pin="1" pad="1"/>
  2023. <connect gate="G$1" pin="2" pad="2"/>
  2024. </connects>
  2025. <technologies>
  2026. <technology name=""/>
  2027. </technologies>
  2028. </device>
  2029. <device name="R5025W" package="R5025W">
  2030. <connects>
  2031. <connect gate="G$1" pin="1" pad="1"/>
  2032. <connect gate="G$1" pin="2" pad="2"/>
  2033. </connects>
  2034. <technologies>
  2035. <technology name=""/>
  2036. </technologies>
  2037. </device>
  2038. <device name="R6332" package="R6332">
  2039. <connects>
  2040. <connect gate="G$1" pin="1" pad="1"/>
  2041. <connect gate="G$1" pin="2" pad="2"/>
  2042. </connects>
  2043. <technologies>
  2044. <technology name=""/>
  2045. </technologies>
  2046. </device>
  2047. <device name="R6332W" package="R6332W">
  2048. <connects>
  2049. <connect gate="G$1" pin="1" pad="1"/>
  2050. <connect gate="G$1" pin="2" pad="2"/>
  2051. </connects>
  2052. <technologies>
  2053. <technology name=""/>
  2054. </technologies>
  2055. </device>
  2056. <device name="RDH/15" package="RDH/15">
  2057. <connects>
  2058. <connect gate="G$1" pin="1" pad="1"/>
  2059. <connect gate="G$1" pin="2" pad="2"/>
  2060. </connects>
  2061. <technologies>
  2062. <technology name=""/>
  2063. </technologies>
  2064. </device>
  2065. <device name="V234/12" package="V234/12">
  2066. <connects>
  2067. <connect gate="G$1" pin="1" pad="1"/>
  2068. <connect gate="G$1" pin="2" pad="2"/>
  2069. </connects>
  2070. <technologies>
  2071. <technology name=""/>
  2072. </technologies>
  2073. </device>
  2074. <device name="V235/17" package="V235/17">
  2075. <connects>
  2076. <connect gate="G$1" pin="1" pad="1"/>
  2077. <connect gate="G$1" pin="2" pad="2"/>
  2078. </connects>
  2079. <technologies>
  2080. <technology name=""/>
  2081. </technologies>
  2082. </device>
  2083. <device name="V526-0" package="V526-0">
  2084. <connects>
  2085. <connect gate="G$1" pin="1" pad="1"/>
  2086. <connect gate="G$1" pin="2" pad="2"/>
  2087. </connects>
  2088. <technologies>
  2089. <technology name=""/>
  2090. </technologies>
  2091. </device>
  2092. </devices>
  2093. </deviceset>
  2094. </devicesets>
  2095. </library>
  2096. </drawing>
  2097. </eagle>