mainboard.s#2 268 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE eagle SYSTEM "eagle.dtd">
  3. <eagle version="7.2.0">
  4. <drawing>
  5. <settings>
  6. <setting alwaysvectorfont="no"/>
  7. <setting verticaltext="up"/>
  8. </settings>
  9. <grid distance="0.1" unitdist="inch" unit="inch" 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="no" active="no"/>
  12. <layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
  13. <layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
  14. <layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
  15. <layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
  16. <layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
  17. <layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
  18. <layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
  19. <layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
  20. <layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
  21. <layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
  22. <layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
  23. <layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
  24. <layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
  25. <layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
  26. <layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
  27. <layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
  28. <layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
  29. <layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
  30. <layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
  31. <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
  32. <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
  33. <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
  34. <layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
  35. <layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
  36. <layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
  37. <layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
  38. <layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
  39. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
  40. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
  41. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
  42. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
  43. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
  44. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
  45. <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
  46. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
  47. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
  48. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
  49. <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
  50. <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
  51. <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
  52. <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
  53. <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
  54. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
  55. <layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
  56. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
  57. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
  58. <layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
  59. <layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
  60. <layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
  61. <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
  62. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  63. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  64. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  65. <layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
  66. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  67. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  68. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  69. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  70. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  71. <layer number="99" name="SpiceOrder" color="5" fill="1" visible="yes" active="yes"/>
  72. </layers>
  73. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  74. <libraries>
  75. <library name="pinhead">
  76. <description>&lt;b&gt;Pin Header Connectors&lt;/b&gt;&lt;p&gt;
  77. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  78. <packages>
  79. <package name="1X08">
  80. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  81. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  82. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  83. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  84. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  85. <wire x1="2.54" y1="0.635" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  86. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  87. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  88. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  89. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  90. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  91. <wire x1="3.175" y1="-1.27" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  92. <wire x1="5.715" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  93. <wire x1="5.08" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  94. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  95. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  96. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  97. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  98. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  99. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  100. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  101. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  102. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  103. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  104. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  105. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  106. <wire x1="-5.08" y1="0.635" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
  107. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  108. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  109. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  110. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  111. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  112. <wire x1="-4.445" y1="-1.27" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  113. <wire x1="-1.905" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  114. <wire x1="-2.54" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  115. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  116. <wire x1="-9.525" y1="1.27" x2="-8.255" y2="1.27" width="0.1524" layer="21"/>
  117. <wire x1="-8.255" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  118. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  119. <wire x1="-7.62" y1="-0.635" x2="-8.255" y2="-1.27" width="0.1524" layer="21"/>
  120. <wire x1="-7.62" y1="0.635" x2="-6.985" y2="1.27" width="0.1524" layer="21"/>
  121. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  122. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  123. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  124. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  125. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  126. <wire x1="-6.985" y1="-1.27" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  127. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  128. <wire x1="-9.525" y1="1.27" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  129. <wire x1="-10.16" y1="-0.635" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  130. <wire x1="-8.255" y1="-1.27" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  131. <wire x1="8.255" y1="1.27" x2="9.525" y2="1.27" width="0.1524" layer="21"/>
  132. <wire x1="9.525" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  133. <wire x1="10.16" y1="0.635" x2="10.16" y2="-0.635" width="0.1524" layer="21"/>
  134. <wire x1="10.16" y1="-0.635" x2="9.525" y2="-1.27" width="0.1524" layer="21"/>
  135. <wire x1="8.255" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  136. <wire x1="7.62" y1="-0.635" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  137. <wire x1="9.525" y1="-1.27" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  138. <pad name="1" x="-8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  139. <pad name="2" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  140. <pad name="3" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  141. <pad name="4" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  142. <pad name="5" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  143. <pad name="6" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  144. <pad name="7" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  145. <pad name="8" x="8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  146. <text x="-10.2362" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  147. <text x="-10.16" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  148. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  149. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  150. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  151. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  152. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  153. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  154. <rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
  155. <rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
  156. </package>
  157. <package name="1X08/90">
  158. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  159. <wire x1="-10.16" y1="-1.905" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  160. <wire x1="-7.62" y1="-1.905" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  161. <wire x1="-7.62" y1="0.635" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  162. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-1.905" width="0.1524" layer="21"/>
  163. <wire x1="-8.89" y1="6.985" x2="-8.89" y2="1.27" width="0.762" layer="21"/>
  164. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  165. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  166. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  167. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  168. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  169. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  170. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  171. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  172. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  173. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  174. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  175. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  176. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  177. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  178. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  179. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  180. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  181. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  182. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  183. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  184. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  185. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  186. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  187. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  188. <wire x1="7.62" y1="-1.905" x2="10.16" y2="-1.905" width="0.1524" layer="21"/>
  189. <wire x1="10.16" y1="-1.905" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  190. <wire x1="10.16" y1="0.635" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  191. <wire x1="8.89" y1="6.985" x2="8.89" y2="1.27" width="0.762" layer="21"/>
  192. <pad name="1" x="-8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  193. <pad name="2" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  194. <pad name="3" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  195. <pad name="4" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  196. <pad name="5" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  197. <pad name="6" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  198. <pad name="7" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  199. <pad name="8" x="8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  200. <text x="-10.795" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  201. <text x="12.065" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  202. <rectangle x1="-9.271" y1="0.635" x2="-8.509" y2="1.143" layer="21"/>
  203. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  204. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  205. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  206. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  207. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  208. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  209. <rectangle x1="8.509" y1="0.635" x2="9.271" y2="1.143" layer="21"/>
  210. <rectangle x1="-9.271" y1="-2.921" x2="-8.509" y2="-1.905" layer="21"/>
  211. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  212. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  213. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  214. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  215. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  216. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  217. <rectangle x1="8.509" y1="-2.921" x2="9.271" y2="-1.905" layer="21"/>
  218. </package>
  219. <package name="1X10">
  220. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  221. <wire x1="7.62" y1="0.635" x2="8.255" y2="1.27" width="0.1524" layer="21"/>
  222. <wire x1="8.255" y1="1.27" x2="9.525" y2="1.27" width="0.1524" layer="21"/>
  223. <wire x1="9.525" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  224. <wire x1="10.16" y1="0.635" x2="10.16" y2="-0.635" width="0.1524" layer="21"/>
  225. <wire x1="10.16" y1="-0.635" x2="9.525" y2="-1.27" width="0.1524" layer="21"/>
  226. <wire x1="9.525" y1="-1.27" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  227. <wire x1="8.255" y1="-1.27" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  228. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  229. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  230. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  231. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  232. <wire x1="5.08" y1="0.635" x2="5.715" y2="1.27" width="0.1524" layer="21"/>
  233. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  234. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  235. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  236. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  237. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  238. <wire x1="5.715" y1="-1.27" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  239. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  240. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  241. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  242. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  243. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  244. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  245. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  246. <wire x1="3.175" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  247. <wire x1="2.54" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  248. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  249. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  250. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  251. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  252. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  253. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  254. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  255. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  256. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  257. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  258. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  259. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  260. <wire x1="-7.62" y1="0.635" x2="-6.985" y2="1.27" width="0.1524" layer="21"/>
  261. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  262. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  263. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  264. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  265. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  266. <wire x1="-6.985" y1="-1.27" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  267. <wire x1="-4.445" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  268. <wire x1="-5.08" y1="-0.635" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  269. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  270. <wire x1="-12.065" y1="1.27" x2="-10.795" y2="1.27" width="0.1524" layer="21"/>
  271. <wire x1="-10.795" y1="1.27" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  272. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  273. <wire x1="-10.16" y1="-0.635" x2="-10.795" y2="-1.27" width="0.1524" layer="21"/>
  274. <wire x1="-10.16" y1="0.635" x2="-9.525" y2="1.27" width="0.1524" layer="21"/>
  275. <wire x1="-9.525" y1="1.27" x2="-8.255" y2="1.27" width="0.1524" layer="21"/>
  276. <wire x1="-8.255" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  277. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  278. <wire x1="-7.62" y1="-0.635" x2="-8.255" y2="-1.27" width="0.1524" layer="21"/>
  279. <wire x1="-8.255" y1="-1.27" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  280. <wire x1="-9.525" y1="-1.27" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  281. <wire x1="-12.7" y1="0.635" x2="-12.7" y2="-0.635" width="0.1524" layer="21"/>
  282. <wire x1="-12.065" y1="1.27" x2="-12.7" y2="0.635" width="0.1524" layer="21"/>
  283. <wire x1="-12.7" y1="-0.635" x2="-12.065" y2="-1.27" width="0.1524" layer="21"/>
  284. <wire x1="-10.795" y1="-1.27" x2="-12.065" y2="-1.27" width="0.1524" layer="21"/>
  285. <wire x1="10.795" y1="1.27" x2="12.065" y2="1.27" width="0.1524" layer="21"/>
  286. <wire x1="12.065" y1="1.27" x2="12.7" y2="0.635" width="0.1524" layer="21"/>
  287. <wire x1="12.7" y1="0.635" x2="12.7" y2="-0.635" width="0.1524" layer="21"/>
  288. <wire x1="12.7" y1="-0.635" x2="12.065" y2="-1.27" width="0.1524" layer="21"/>
  289. <wire x1="10.795" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  290. <wire x1="10.16" y1="-0.635" x2="10.795" y2="-1.27" width="0.1524" layer="21"/>
  291. <wire x1="12.065" y1="-1.27" x2="10.795" y2="-1.27" width="0.1524" layer="21"/>
  292. <pad name="1" x="-11.43" y="0" drill="1.016" shape="long" rot="R90"/>
  293. <pad name="2" x="-8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  294. <pad name="3" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  295. <pad name="4" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  296. <pad name="5" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  297. <pad name="6" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  298. <pad name="7" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  299. <pad name="8" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  300. <pad name="9" x="8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  301. <pad name="10" x="11.43" y="0" drill="1.016" shape="long" rot="R90"/>
  302. <text x="-12.7762" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  303. <text x="-12.7" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  304. <rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
  305. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  306. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  307. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  308. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  309. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  310. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  311. <rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
  312. <rectangle x1="-11.684" y1="-0.254" x2="-11.176" y2="0.254" layer="51"/>
  313. <rectangle x1="11.176" y1="-0.254" x2="11.684" y2="0.254" layer="51"/>
  314. </package>
  315. <package name="1X10/90">
  316. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  317. <wire x1="-12.7" y1="-1.905" x2="-10.16" y2="-1.905" width="0.1524" layer="21"/>
  318. <wire x1="-10.16" y1="-1.905" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  319. <wire x1="-10.16" y1="0.635" x2="-12.7" y2="0.635" width="0.1524" layer="21"/>
  320. <wire x1="-12.7" y1="0.635" x2="-12.7" y2="-1.905" width="0.1524" layer="21"/>
  321. <wire x1="-11.43" y1="6.985" x2="-11.43" y2="1.27" width="0.762" layer="21"/>
  322. <wire x1="-10.16" y1="-1.905" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  323. <wire x1="-7.62" y1="-1.905" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  324. <wire x1="-7.62" y1="0.635" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  325. <wire x1="-8.89" y1="6.985" x2="-8.89" y2="1.27" width="0.762" layer="21"/>
  326. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  327. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  328. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  329. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  330. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  331. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  332. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  333. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  334. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  335. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  336. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  337. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  338. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  339. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  340. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  341. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  342. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  343. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  344. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  345. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  346. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  347. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  348. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  349. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  350. <wire x1="7.62" y1="-1.905" x2="10.16" y2="-1.905" width="0.1524" layer="21"/>
  351. <wire x1="10.16" y1="-1.905" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  352. <wire x1="10.16" y1="0.635" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  353. <wire x1="8.89" y1="6.985" x2="8.89" y2="1.27" width="0.762" layer="21"/>
  354. <wire x1="10.16" y1="-1.905" x2="12.7" y2="-1.905" width="0.1524" layer="21"/>
  355. <wire x1="12.7" y1="-1.905" x2="12.7" y2="0.635" width="0.1524" layer="21"/>
  356. <wire x1="12.7" y1="0.635" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  357. <wire x1="11.43" y1="6.985" x2="11.43" y2="1.27" width="0.762" layer="21"/>
  358. <pad name="1" x="-11.43" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  359. <pad name="2" x="-8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  360. <pad name="3" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  361. <pad name="4" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  362. <pad name="5" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  363. <pad name="6" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  364. <pad name="7" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  365. <pad name="8" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  366. <pad name="9" x="8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  367. <pad name="10" x="11.43" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  368. <text x="-13.335" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  369. <text x="14.605" y="-4.445" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  370. <rectangle x1="-11.811" y1="0.635" x2="-11.049" y2="1.143" layer="21"/>
  371. <rectangle x1="-9.271" y1="0.635" x2="-8.509" y2="1.143" layer="21"/>
  372. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  373. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  374. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  375. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  376. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  377. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  378. <rectangle x1="8.509" y1="0.635" x2="9.271" y2="1.143" layer="21"/>
  379. <rectangle x1="11.049" y1="0.635" x2="11.811" y2="1.143" layer="21"/>
  380. <rectangle x1="-11.811" y1="-2.921" x2="-11.049" y2="-1.905" layer="21"/>
  381. <rectangle x1="-9.271" y1="-2.921" x2="-8.509" y2="-1.905" layer="21"/>
  382. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  383. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  384. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  385. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  386. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  387. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  388. <rectangle x1="8.509" y1="-2.921" x2="9.271" y2="-1.905" layer="21"/>
  389. <rectangle x1="11.049" y1="-2.921" x2="11.811" y2="-1.905" layer="21"/>
  390. </package>
  391. <package name="1X04">
  392. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  393. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  394. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  395. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  396. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  397. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  398. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  399. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  400. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  401. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  402. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  403. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  404. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  405. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  406. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  407. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  408. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  409. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  410. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  411. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  412. <wire x1="-4.445" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  413. <wire x1="-5.08" y1="-0.635" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  414. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  415. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  416. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  417. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  418. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  419. <wire x1="3.175" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  420. <wire x1="2.54" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  421. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  422. <pad name="1" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  423. <pad name="2" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  424. <pad name="3" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  425. <pad name="4" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  426. <text x="-5.1562" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  427. <text x="-5.08" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  428. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  429. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  430. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  431. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  432. </package>
  433. <package name="1X04/90">
  434. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  435. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  436. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  437. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  438. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  439. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  440. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  441. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  442. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  443. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  444. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  445. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  446. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  447. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  448. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  449. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  450. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  451. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  452. <pad name="1" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  453. <pad name="2" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  454. <pad name="3" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  455. <pad name="4" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  456. <text x="-5.715" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  457. <text x="6.985" y="-4.445" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  458. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  459. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  460. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  461. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  462. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  463. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  464. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  465. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  466. </package>
  467. <package name="1X03">
  468. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  469. <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  470. <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  471. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  472. <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  473. <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  474. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  475. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  476. <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  477. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  478. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  479. <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  480. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  481. <wire x1="-3.175" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  482. <wire x1="-3.81" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  483. <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  484. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  485. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  486. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  487. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
  488. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  489. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  490. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  491. <pad name="1" x="-2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  492. <pad name="2" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  493. <pad name="3" x="2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  494. <text x="-3.8862" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  495. <text x="-3.81" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  496. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  497. <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
  498. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  499. </package>
  500. <package name="1X03/90">
  501. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  502. <wire x1="-3.81" y1="-1.905" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/>
  503. <wire x1="-1.27" y1="-1.905" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  504. <wire x1="-1.27" y1="0.635" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  505. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-1.905" width="0.1524" layer="21"/>
  506. <wire x1="-2.54" y1="6.985" x2="-2.54" y2="1.27" width="0.762" layer="21"/>
  507. <wire x1="-1.27" y1="-1.905" x2="1.27" y2="-1.905" width="0.1524" layer="21"/>
  508. <wire x1="1.27" y1="-1.905" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  509. <wire x1="1.27" y1="0.635" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  510. <wire x1="0" y1="6.985" x2="0" y2="1.27" width="0.762" layer="21"/>
  511. <wire x1="1.27" y1="-1.905" x2="3.81" y2="-1.905" width="0.1524" layer="21"/>
  512. <wire x1="3.81" y1="-1.905" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  513. <wire x1="3.81" y1="0.635" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  514. <wire x1="2.54" y1="6.985" x2="2.54" y2="1.27" width="0.762" layer="21"/>
  515. <pad name="1" x="-2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  516. <pad name="2" x="0" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  517. <pad name="3" x="2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  518. <text x="-4.445" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  519. <text x="5.715" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  520. <rectangle x1="-2.921" y1="0.635" x2="-2.159" y2="1.143" layer="21"/>
  521. <rectangle x1="-0.381" y1="0.635" x2="0.381" y2="1.143" layer="21"/>
  522. <rectangle x1="2.159" y1="0.635" x2="2.921" y2="1.143" layer="21"/>
  523. <rectangle x1="-2.921" y1="-2.921" x2="-2.159" y2="-1.905" layer="21"/>
  524. <rectangle x1="-0.381" y1="-2.921" x2="0.381" y2="-1.905" layer="21"/>
  525. <rectangle x1="2.159" y1="-2.921" x2="2.921" y2="-1.905" layer="21"/>
  526. </package>
  527. </packages>
  528. <symbols>
  529. <symbol name="PINHD8">
  530. <wire x1="-6.35" y1="-10.16" x2="1.27" y2="-10.16" width="0.4064" layer="94"/>
  531. <wire x1="1.27" y1="-10.16" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  532. <wire x1="1.27" y1="12.7" x2="-6.35" y2="12.7" width="0.4064" layer="94"/>
  533. <wire x1="-6.35" y1="12.7" x2="-6.35" y2="-10.16" width="0.4064" layer="94"/>
  534. <text x="-6.35" y="13.335" size="1.778" layer="95">&gt;NAME</text>
  535. <text x="-6.35" y="-12.7" size="1.778" layer="96">&gt;VALUE</text>
  536. <pin name="1" x="-2.54" y="10.16" visible="pad" length="short" direction="pas" function="dot"/>
  537. <pin name="2" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  538. <pin name="3" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  539. <pin name="4" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  540. <pin name="5" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  541. <pin name="6" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  542. <pin name="7" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  543. <pin name="8" x="-2.54" y="-7.62" visible="pad" length="short" direction="pas" function="dot"/>
  544. </symbol>
  545. <symbol name="PINHD10">
  546. <wire x1="-6.35" y1="-15.24" x2="1.27" y2="-15.24" width="0.4064" layer="94"/>
  547. <wire x1="1.27" y1="-15.24" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  548. <wire x1="1.27" y1="12.7" x2="-6.35" y2="12.7" width="0.4064" layer="94"/>
  549. <wire x1="-6.35" y1="12.7" x2="-6.35" y2="-15.24" width="0.4064" layer="94"/>
  550. <text x="-6.35" y="13.335" size="1.778" layer="95">&gt;NAME</text>
  551. <text x="-6.35" y="-17.78" size="1.778" layer="96">&gt;VALUE</text>
  552. <pin name="1" x="-2.54" y="10.16" visible="pad" length="short" direction="pas" function="dot"/>
  553. <pin name="2" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  554. <pin name="3" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  555. <pin name="4" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  556. <pin name="5" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  557. <pin name="6" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  558. <pin name="7" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  559. <pin name="8" x="-2.54" y="-7.62" visible="pad" length="short" direction="pas" function="dot"/>
  560. <pin name="9" x="-2.54" y="-10.16" visible="pad" length="short" direction="pas" function="dot"/>
  561. <pin name="10" x="-2.54" y="-12.7" visible="pad" length="short" direction="pas" function="dot"/>
  562. </symbol>
  563. <symbol name="PINHD4">
  564. <wire x1="-6.35" y1="-5.08" x2="1.27" y2="-5.08" width="0.4064" layer="94"/>
  565. <wire x1="1.27" y1="-5.08" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  566. <wire x1="1.27" y1="7.62" x2="-6.35" y2="7.62" width="0.4064" layer="94"/>
  567. <wire x1="-6.35" y1="7.62" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/>
  568. <text x="-6.35" y="8.255" size="1.778" layer="95">&gt;NAME</text>
  569. <text x="-6.35" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  570. <pin name="1" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  571. <pin name="2" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  572. <pin name="3" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  573. <pin name="4" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  574. </symbol>
  575. <symbol name="PINHD3">
  576. <wire x1="-6.35" y1="-5.08" x2="1.27" y2="-5.08" width="0.4064" layer="94"/>
  577. <wire x1="1.27" y1="-5.08" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  578. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  579. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/>
  580. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  581. <text x="-6.35" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  582. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  583. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  584. <pin name="3" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  585. </symbol>
  586. </symbols>
  587. <devicesets>
  588. <deviceset name="PINHD-1X8" prefix="JP" uservalue="yes">
  589. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  590. <gates>
  591. <gate name="A" symbol="PINHD8" x="0" y="0"/>
  592. </gates>
  593. <devices>
  594. <device name="" package="1X08">
  595. <connects>
  596. <connect gate="A" pin="1" pad="1"/>
  597. <connect gate="A" pin="2" pad="2"/>
  598. <connect gate="A" pin="3" pad="3"/>
  599. <connect gate="A" pin="4" pad="4"/>
  600. <connect gate="A" pin="5" pad="5"/>
  601. <connect gate="A" pin="6" pad="6"/>
  602. <connect gate="A" pin="7" pad="7"/>
  603. <connect gate="A" pin="8" pad="8"/>
  604. </connects>
  605. <technologies>
  606. <technology name=""/>
  607. </technologies>
  608. </device>
  609. <device name="/90" package="1X08/90">
  610. <connects>
  611. <connect gate="A" pin="1" pad="1"/>
  612. <connect gate="A" pin="2" pad="2"/>
  613. <connect gate="A" pin="3" pad="3"/>
  614. <connect gate="A" pin="4" pad="4"/>
  615. <connect gate="A" pin="5" pad="5"/>
  616. <connect gate="A" pin="6" pad="6"/>
  617. <connect gate="A" pin="7" pad="7"/>
  618. <connect gate="A" pin="8" pad="8"/>
  619. </connects>
  620. <technologies>
  621. <technology name=""/>
  622. </technologies>
  623. </device>
  624. </devices>
  625. </deviceset>
  626. <deviceset name="PINHD-1X10" prefix="JP" uservalue="yes">
  627. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  628. <gates>
  629. <gate name="A" symbol="PINHD10" x="0" y="0"/>
  630. </gates>
  631. <devices>
  632. <device name="" package="1X10">
  633. <connects>
  634. <connect gate="A" pin="1" pad="1"/>
  635. <connect gate="A" pin="10" pad="10"/>
  636. <connect gate="A" pin="2" pad="2"/>
  637. <connect gate="A" pin="3" pad="3"/>
  638. <connect gate="A" pin="4" pad="4"/>
  639. <connect gate="A" pin="5" pad="5"/>
  640. <connect gate="A" pin="6" pad="6"/>
  641. <connect gate="A" pin="7" pad="7"/>
  642. <connect gate="A" pin="8" pad="8"/>
  643. <connect gate="A" pin="9" pad="9"/>
  644. </connects>
  645. <technologies>
  646. <technology name=""/>
  647. </technologies>
  648. </device>
  649. <device name="/90" package="1X10/90">
  650. <connects>
  651. <connect gate="A" pin="1" pad="1"/>
  652. <connect gate="A" pin="10" pad="10"/>
  653. <connect gate="A" pin="2" pad="2"/>
  654. <connect gate="A" pin="3" pad="3"/>
  655. <connect gate="A" pin="4" pad="4"/>
  656. <connect gate="A" pin="5" pad="5"/>
  657. <connect gate="A" pin="6" pad="6"/>
  658. <connect gate="A" pin="7" pad="7"/>
  659. <connect gate="A" pin="8" pad="8"/>
  660. <connect gate="A" pin="9" pad="9"/>
  661. </connects>
  662. <technologies>
  663. <technology name=""/>
  664. </technologies>
  665. </device>
  666. </devices>
  667. </deviceset>
  668. <deviceset name="PINHD-1X4" prefix="JP" uservalue="yes">
  669. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  670. <gates>
  671. <gate name="A" symbol="PINHD4" x="0" y="0"/>
  672. </gates>
  673. <devices>
  674. <device name="" package="1X04">
  675. <connects>
  676. <connect gate="A" pin="1" pad="1"/>
  677. <connect gate="A" pin="2" pad="2"/>
  678. <connect gate="A" pin="3" pad="3"/>
  679. <connect gate="A" pin="4" pad="4"/>
  680. </connects>
  681. <technologies>
  682. <technology name=""/>
  683. </technologies>
  684. </device>
  685. <device name="/90" package="1X04/90">
  686. <connects>
  687. <connect gate="A" pin="1" pad="1"/>
  688. <connect gate="A" pin="2" pad="2"/>
  689. <connect gate="A" pin="3" pad="3"/>
  690. <connect gate="A" pin="4" pad="4"/>
  691. </connects>
  692. <technologies>
  693. <technology name=""/>
  694. </technologies>
  695. </device>
  696. </devices>
  697. </deviceset>
  698. <deviceset name="PINHD-1X3" prefix="JP" uservalue="yes">
  699. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  700. <gates>
  701. <gate name="A" symbol="PINHD3" x="0" y="0"/>
  702. </gates>
  703. <devices>
  704. <device name="" package="1X03">
  705. <connects>
  706. <connect gate="A" pin="1" pad="1"/>
  707. <connect gate="A" pin="2" pad="2"/>
  708. <connect gate="A" pin="3" pad="3"/>
  709. </connects>
  710. <technologies>
  711. <technology name=""/>
  712. </technologies>
  713. </device>
  714. <device name="/90" package="1X03/90">
  715. <connects>
  716. <connect gate="A" pin="1" pad="1"/>
  717. <connect gate="A" pin="2" pad="2"/>
  718. <connect gate="A" pin="3" pad="3"/>
  719. </connects>
  720. <technologies>
  721. <technology name=""/>
  722. </technologies>
  723. </device>
  724. </devices>
  725. </deviceset>
  726. </devicesets>
  727. </library>
  728. <library name="con-phoenix-3.81">
  729. <description>&lt;b&gt;Phoenix Connectors&lt;/b&gt; Grid 3.81 mm&lt;p&gt;
  730. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  731. <packages>
  732. <package name="1705566">
  733. <description>&lt;b&gt;MKDSD 1,5/ 4-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  734. Nennstrom: 8 A&lt;br&gt;
  735. Bemessungsspannung: 200 V&lt;br&gt;
  736. Raster: 3,81 mm&lt;br&gt;
  737. Polzahl: 4&lt;br&gt;
  738. Montageart: Löten&lt;br&gt;
  739. Anschlussart: Schraubanschluss&lt;br&gt;
  740. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  741. Source: http://eshop.phoenixcontact.com .. 1705566.pdf</description>
  742. <wire x1="-8.175" y1="-4.65" x2="-8.175" y2="-4.15" width="0.1016" layer="21"/>
  743. <wire x1="8.175" y1="4.65" x2="-8.175" y2="4.65" width="0.1016" layer="21"/>
  744. <wire x1="-8.175" y1="-4.15" x2="8.175" y2="-4.15" width="0.1016" layer="21"/>
  745. <wire x1="-8.175" y1="-4.15" x2="-8.175" y2="-4.05" width="0.1016" layer="21"/>
  746. <wire x1="-8.175" y1="2.7596" x2="-8.175" y2="4.65" width="0.1016" layer="21"/>
  747. <wire x1="8.175" y1="-3.25" x2="-8.175" y2="-3.25" width="0.1016" layer="21"/>
  748. <wire x1="8.175" y1="-3.05" x2="-8.175" y2="-3.05" width="0.1016" layer="21"/>
  749. <wire x1="8.175" y1="2.2824" x2="-8.175" y2="2.2824" width="0.1016" layer="21"/>
  750. <wire x1="8.175" y1="2.7596" x2="-8.175" y2="2.7596" width="0.1016" layer="21"/>
  751. <wire x1="-8.175" y1="-4.05" x2="-8.175" y2="-3.25" width="0.1016" layer="21"/>
  752. <wire x1="-8.175" y1="-3.25" x2="-8.175" y2="-3.05" width="0.1016" layer="21"/>
  753. <wire x1="-8.175" y1="-3.05" x2="-8.175" y2="2.2824" width="0.1016" layer="21"/>
  754. <wire x1="-8.175" y1="2.2824" x2="-8.175" y2="2.7596" width="0.1016" layer="21"/>
  755. <wire x1="-5.004" y1="1.856" x2="-6.921" y2="-0.061" width="0.1016" layer="21"/>
  756. <wire x1="-6.426" y1="-0.556" x2="-4.509" y2="1.361" width="0.1016" layer="21"/>
  757. <wire x1="-5.715" y1="-0.75" x2="-5.715" y2="-0.7" width="0.1016" layer="21"/>
  758. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-1.8" width="0.1016" layer="21"/>
  759. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-0.75" width="0.1016" layer="21"/>
  760. <wire x1="8.175" y1="-4.05" x2="-8.175" y2="-4.05" width="0.1016" layer="21"/>
  761. <wire x1="8.175" y1="-4.05" x2="8.175" y2="-3.25" width="0.1016" layer="21"/>
  762. <wire x1="8.175" y1="-3.25" x2="8.175" y2="-3.05" width="0.1016" layer="21"/>
  763. <wire x1="8.175" y1="-4.65" x2="-8.175" y2="-4.65" width="0.1016" layer="21"/>
  764. <wire x1="8.175" y1="-4.65" x2="8.175" y2="-4.15" width="0.1016" layer="21"/>
  765. <wire x1="8.175" y1="-4.15" x2="8.175" y2="-4.05" width="0.1016" layer="21"/>
  766. <wire x1="8.175" y1="2.2824" x2="8.175" y2="-3.05" width="0.1016" layer="21"/>
  767. <wire x1="8.175" y1="2.7596" x2="8.175" y2="2.2824" width="0.1016" layer="21"/>
  768. <wire x1="8.175" y1="2.7596" x2="8.175" y2="4.65" width="0.1016" layer="21"/>
  769. <wire x1="-1.194" y1="1.856" x2="-3.111" y2="-0.061" width="0.1016" layer="21"/>
  770. <wire x1="-2.616" y1="-0.556" x2="-0.699" y2="1.361" width="0.1016" layer="21"/>
  771. <wire x1="-1.905" y1="-0.75" x2="-1.905" y2="-0.7" width="0.1016" layer="21"/>
  772. <wire x1="-1.905" y1="-0.8" x2="-1.905" y2="-0.75" width="0.1016" layer="21"/>
  773. <wire x1="2.616" y1="1.856" x2="0.699" y2="-0.061" width="0.1016" layer="21"/>
  774. <wire x1="1.194" y1="-0.556" x2="3.111" y2="1.361" width="0.1016" layer="21"/>
  775. <wire x1="1.905" y1="-0.75" x2="1.905" y2="-0.7" width="0.1016" layer="21"/>
  776. <wire x1="1.905" y1="-0.8" x2="1.905" y2="-0.75" width="0.1016" layer="21"/>
  777. <wire x1="6.426" y1="1.856" x2="4.509" y2="-0.061" width="0.1016" layer="21"/>
  778. <wire x1="5.004" y1="-0.556" x2="6.921" y2="1.361" width="0.1016" layer="21"/>
  779. <wire x1="5.715" y1="-0.75" x2="5.715" y2="-0.7" width="0.1016" layer="21"/>
  780. <wire x1="5.715" y1="-0.8" x2="5.715" y2="-0.75" width="0.1016" layer="21"/>
  781. <circle x="-5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  782. <circle x="-1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  783. <circle x="1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  784. <circle x="5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  785. <pad name="1.1" x="-5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  786. <pad name="1.2" x="-5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  787. <pad name="2.1" x="-1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  788. <pad name="2.2" x="-1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  789. <pad name="3.1" x="1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  790. <pad name="3.2" x="1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  791. <pad name="4.1" x="5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  792. <pad name="4.2" x="5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  793. <text x="-8.89" y="-3.81" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  794. <text x="-6.985" y="5.08" size="1.27" layer="27">&gt;VALUE</text>
  795. <polygon width="0.1016" layer="21">
  796. <vertex x="-6.985" y="-1.27"/>
  797. <vertex x="-6.35" y="-2.54"/>
  798. <vertex x="-7.62" y="-2.54"/>
  799. </polygon>
  800. </package>
  801. <package name="1705605">
  802. <description>&lt;b&gt;MKDSD 1,5/ 8-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  803. Nennstrom: 8 A&lt;br&gt;
  804. Bemessungsspannung: 200 V&lt;br&gt;
  805. Raster: 3,81 mm&lt;br&gt;
  806. Polzahl: 8&lt;br&gt;
  807. Montageart: Löten&lt;br&gt;
  808. Anschlussart: Schraubanschluss&lt;br&gt;
  809. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  810. Source: http://eshop.phoenixcontact.com .. 1705605.pdf</description>
  811. <wire x1="-15.795" y1="-4.65" x2="-15.795" y2="-4.15" width="0.1016" layer="21"/>
  812. <wire x1="15.795" y1="4.65" x2="-15.795" y2="4.65" width="0.1016" layer="21"/>
  813. <wire x1="-15.795" y1="-4.15" x2="15.795" y2="-4.15" width="0.1016" layer="21"/>
  814. <wire x1="-15.795" y1="-4.15" x2="-15.795" y2="-4.05" width="0.1016" layer="21"/>
  815. <wire x1="-15.795" y1="2.7596" x2="-15.795" y2="4.65" width="0.1016" layer="21"/>
  816. <wire x1="15.795" y1="-3.25" x2="-15.795" y2="-3.25" width="0.1016" layer="21"/>
  817. <wire x1="15.795" y1="-3.05" x2="-15.795" y2="-3.05" width="0.1016" layer="21"/>
  818. <wire x1="15.795" y1="2.2824" x2="-15.795" y2="2.2824" width="0.1016" layer="21"/>
  819. <wire x1="15.795" y1="2.7596" x2="-15.795" y2="2.7596" width="0.1016" layer="21"/>
  820. <wire x1="-15.795" y1="-4.05" x2="-15.795" y2="-3.25" width="0.1016" layer="21"/>
  821. <wire x1="-15.795" y1="-3.25" x2="-15.795" y2="-3.05" width="0.1016" layer="21"/>
  822. <wire x1="-15.795" y1="-3.05" x2="-15.795" y2="2.2824" width="0.1016" layer="21"/>
  823. <wire x1="-15.795" y1="2.2824" x2="-15.795" y2="2.7596" width="0.1016" layer="21"/>
  824. <wire x1="-12.624" y1="1.856" x2="-14.541" y2="-0.061" width="0.1016" layer="21"/>
  825. <wire x1="-14.046" y1="-0.556" x2="-12.129" y2="1.361" width="0.1016" layer="21"/>
  826. <wire x1="-13.335" y1="-0.75" x2="-13.335" y2="-0.7" width="0.1016" layer="21"/>
  827. <wire x1="-13.335" y1="-0.8" x2="-13.335" y2="-1.8" width="0.1016" layer="21"/>
  828. <wire x1="-13.335" y1="-0.8" x2="-13.335" y2="-0.75" width="0.1016" layer="21"/>
  829. <wire x1="15.795" y1="-4.05" x2="-15.795" y2="-4.05" width="0.1016" layer="21"/>
  830. <wire x1="15.795" y1="-4.05" x2="15.795" y2="-3.25" width="0.1016" layer="21"/>
  831. <wire x1="15.795" y1="-3.25" x2="15.795" y2="-3.05" width="0.1016" layer="21"/>
  832. <wire x1="15.795" y1="-4.65" x2="-15.795" y2="-4.65" width="0.1016" layer="21"/>
  833. <wire x1="15.795" y1="-4.65" x2="15.795" y2="-4.15" width="0.1016" layer="21"/>
  834. <wire x1="15.795" y1="-4.15" x2="15.795" y2="-4.05" width="0.1016" layer="21"/>
  835. <wire x1="15.795" y1="2.2824" x2="15.795" y2="-3.05" width="0.1016" layer="21"/>
  836. <wire x1="15.795" y1="2.7596" x2="15.795" y2="2.2824" width="0.1016" layer="21"/>
  837. <wire x1="15.795" y1="2.7596" x2="15.795" y2="4.65" width="0.1016" layer="21"/>
  838. <wire x1="-8.814" y1="1.856" x2="-10.731" y2="-0.061" width="0.1016" layer="21"/>
  839. <wire x1="-10.236" y1="-0.556" x2="-8.319" y2="1.361" width="0.1016" layer="21"/>
  840. <wire x1="-9.525" y1="-0.75" x2="-9.525" y2="-0.7" width="0.1016" layer="21"/>
  841. <wire x1="-9.525" y1="-0.8" x2="-9.525" y2="-0.75" width="0.1016" layer="21"/>
  842. <wire x1="-5.004" y1="1.856" x2="-6.921" y2="-0.061" width="0.1016" layer="21"/>
  843. <wire x1="-6.426" y1="-0.556" x2="-4.509" y2="1.361" width="0.1016" layer="21"/>
  844. <wire x1="-5.715" y1="-0.75" x2="-5.715" y2="-0.7" width="0.1016" layer="21"/>
  845. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-0.75" width="0.1016" layer="21"/>
  846. <wire x1="-1.194" y1="1.856" x2="-3.111" y2="-0.061" width="0.1016" layer="21"/>
  847. <wire x1="-2.616" y1="-0.556" x2="-0.699" y2="1.361" width="0.1016" layer="21"/>
  848. <wire x1="-1.905" y1="-0.75" x2="-1.905" y2="-0.7" width="0.1016" layer="21"/>
  849. <wire x1="-1.905" y1="-0.8" x2="-1.905" y2="-0.75" width="0.1016" layer="21"/>
  850. <wire x1="2.616" y1="1.856" x2="0.699" y2="-0.061" width="0.1016" layer="21"/>
  851. <wire x1="1.194" y1="-0.556" x2="3.111" y2="1.361" width="0.1016" layer="21"/>
  852. <wire x1="1.905" y1="-0.75" x2="1.905" y2="-0.7" width="0.1016" layer="21"/>
  853. <wire x1="1.905" y1="-0.8" x2="1.905" y2="-0.75" width="0.1016" layer="21"/>
  854. <wire x1="6.426" y1="1.856" x2="4.509" y2="-0.061" width="0.1016" layer="21"/>
  855. <wire x1="5.004" y1="-0.556" x2="6.921" y2="1.361" width="0.1016" layer="21"/>
  856. <wire x1="5.715" y1="-0.75" x2="5.715" y2="-0.7" width="0.1016" layer="21"/>
  857. <wire x1="5.715" y1="-0.8" x2="5.715" y2="-0.75" width="0.1016" layer="21"/>
  858. <wire x1="10.236" y1="1.856" x2="8.319" y2="-0.061" width="0.1016" layer="21"/>
  859. <wire x1="8.814" y1="-0.556" x2="10.731" y2="1.361" width="0.1016" layer="21"/>
  860. <wire x1="9.525" y1="-0.75" x2="9.525" y2="-0.7" width="0.1016" layer="21"/>
  861. <wire x1="9.525" y1="-0.8" x2="9.525" y2="-0.75" width="0.1016" layer="21"/>
  862. <wire x1="14.046" y1="1.856" x2="12.129" y2="-0.061" width="0.1016" layer="21"/>
  863. <wire x1="12.624" y1="-0.556" x2="14.541" y2="1.361" width="0.1016" layer="21"/>
  864. <wire x1="13.335" y1="-0.75" x2="13.335" y2="-0.7" width="0.1016" layer="21"/>
  865. <wire x1="13.335" y1="-0.8" x2="13.335" y2="-0.75" width="0.1016" layer="21"/>
  866. <circle x="-13.335" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  867. <circle x="-9.525" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  868. <circle x="-5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  869. <circle x="-1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  870. <circle x="1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  871. <circle x="5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  872. <circle x="9.525" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  873. <circle x="13.335" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  874. <pad name="1.1" x="-13.335" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  875. <pad name="1.2" x="-13.335" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  876. <pad name="2.1" x="-9.525" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  877. <pad name="2.2" x="-9.525" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  878. <pad name="3.1" x="-5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  879. <pad name="3.2" x="-5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  880. <pad name="4.1" x="-1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  881. <pad name="4.2" x="-1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  882. <pad name="5.1" x="1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  883. <pad name="5.2" x="1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  884. <pad name="6.1" x="5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  885. <pad name="6.2" x="5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  886. <pad name="7.1" x="9.525" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  887. <pad name="7.2" x="9.525" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  888. <pad name="8.1" x="13.335" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  889. <pad name="8.2" x="13.335" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  890. <text x="-16.51" y="-3.81" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  891. <text x="-14.605" y="5.08" size="1.27" layer="27">&gt;VALUE</text>
  892. <polygon width="0.1016" layer="21">
  893. <vertex x="-14.605" y="-1.27"/>
  894. <vertex x="-13.97" y="-2.54"/>
  895. <vertex x="-15.24" y="-2.54"/>
  896. </polygon>
  897. </package>
  898. </packages>
  899. <symbols>
  900. <symbol name="SCHRAUBKLEMME_2">
  901. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.254" layer="94"/>
  902. <wire x1="-12.7" y1="1.27" x2="0" y2="1.27" width="0.254" layer="94"/>
  903. <wire x1="-12.7" y1="1.27" x2="-12.7" y2="-1.27" width="0.254" layer="94"/>
  904. <wire x1="0" y1="-1.27" x2="-12.7" y2="-1.27" width="0.254" layer="94"/>
  905. <circle x="-11.43" y="0" radius="0.6839" width="0.254" layer="94"/>
  906. <text x="-10.16" y="-0.889" size="1.778" layer="95">&gt;NAME</text>
  907. <text x="-12.7" y="-3.81" size="1.778" layer="96">&gt;VALUE</text>
  908. <pin name="1A" x="2.54" y="0" visible="off" length="short" direction="pas" rot="R180"/>
  909. </symbol>
  910. </symbols>
  911. <devicesets>
  912. <deviceset name="1705566" prefix="X">
  913. <description>&lt;b&gt;MKDSD 1,5/ 4-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  914. Nennstrom: 8 A&lt;br&gt;
  915. Bemessungsspannung: 200 V&lt;br&gt;
  916. Raster: 3,81 mm&lt;br&gt;
  917. Polzahl: 4&lt;br&gt;
  918. Montageart: Löten&lt;br&gt;
  919. Anschlussart: Schraubanschluss&lt;br&gt;
  920. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  921. Source: http://eshop.phoenixcontact.com .. 1705566.pdf</description>
  922. <gates>
  923. <gate name="-1" symbol="SCHRAUBKLEMME_2" x="0" y="0" addlevel="always"/>
  924. <gate name="-2" symbol="SCHRAUBKLEMME_2" x="0" y="-7.62" addlevel="always"/>
  925. <gate name="-3" symbol="SCHRAUBKLEMME_2" x="0" y="-15.24" addlevel="always"/>
  926. <gate name="-4" symbol="SCHRAUBKLEMME_2" x="0" y="-22.86" addlevel="always"/>
  927. </gates>
  928. <devices>
  929. <device name="" package="1705566">
  930. <connects>
  931. <connect gate="-1" pin="1A" pad="1.1 1.2" route="any"/>
  932. <connect gate="-2" pin="1A" pad="2.1 2.2" route="any"/>
  933. <connect gate="-3" pin="1A" pad="3.1 3.2" route="any"/>
  934. <connect gate="-4" pin="1A" pad="4.1 4.2" route="any"/>
  935. </connects>
  936. <technologies>
  937. <technology name="">
  938. <attribute name="MF" value="" constant="no"/>
  939. <attribute name="MPN" value="" constant="no"/>
  940. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  941. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  942. </technology>
  943. </technologies>
  944. </device>
  945. </devices>
  946. </deviceset>
  947. <deviceset name="1705605" prefix="X">
  948. <description>&lt;b&gt;MKDSD 1,5/10-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  949. Nennstrom: 8 A&lt;br&gt;
  950. Bemessungsspannung: 200 V&lt;br&gt;
  951. Raster: 3,81 mm&lt;br&gt;
  952. Polzahl: 12&lt;br&gt;
  953. Montageart: Löten&lt;br&gt;
  954. Anschlussart: Schraubanschluss&lt;br&gt;
  955. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  956. Source: http://eshop.phoenixcontact.com .. 1705605.pdf</description>
  957. <gates>
  958. <gate name="-1" symbol="SCHRAUBKLEMME_2" x="0" y="0" addlevel="always"/>
  959. <gate name="-2" symbol="SCHRAUBKLEMME_2" x="0" y="-7.62" addlevel="always"/>
  960. <gate name="-3" symbol="SCHRAUBKLEMME_2" x="0" y="-15.24" addlevel="always"/>
  961. <gate name="-4" symbol="SCHRAUBKLEMME_2" x="0" y="-22.86" addlevel="always"/>
  962. <gate name="-5" symbol="SCHRAUBKLEMME_2" x="0" y="-30.48" addlevel="always"/>
  963. <gate name="-6" symbol="SCHRAUBKLEMME_2" x="0" y="-38.1" addlevel="always"/>
  964. <gate name="-7" symbol="SCHRAUBKLEMME_2" x="0" y="-45.72" addlevel="always"/>
  965. <gate name="-8" symbol="SCHRAUBKLEMME_2" x="0" y="-53.34" addlevel="always"/>
  966. </gates>
  967. <devices>
  968. <device name="" package="1705605">
  969. <connects>
  970. <connect gate="-1" pin="1A" pad="1.1 1.2" route="any"/>
  971. <connect gate="-2" pin="1A" pad="2.1 2.2" route="any"/>
  972. <connect gate="-3" pin="1A" pad="3.1 3.2" route="any"/>
  973. <connect gate="-4" pin="1A" pad="4.1 4.2" route="any"/>
  974. <connect gate="-5" pin="1A" pad="5.1 5.2" route="any"/>
  975. <connect gate="-6" pin="1A" pad="6.1 6.2" route="any"/>
  976. <connect gate="-7" pin="1A" pad="7.1 7.2" route="any"/>
  977. <connect gate="-8" pin="1A" pad="8.1 8.2" route="any"/>
  978. </connects>
  979. <technologies>
  980. <technology name="">
  981. <attribute name="MF" value="" constant="no"/>
  982. <attribute name="MPN" value="" constant="no"/>
  983. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  984. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  985. </technology>
  986. </technologies>
  987. </device>
  988. </devices>
  989. </deviceset>
  990. </devicesets>
  991. </library>
  992. <library name="resistor">
  993. <description>&lt;b&gt;Resistors, Capacitors, Inductors&lt;/b&gt;&lt;p&gt;
  994. Based on the previous libraries:
  995. &lt;ul&gt;
  996. &lt;li&gt;r.lbr
  997. &lt;li&gt;cap.lbr
  998. &lt;li&gt;cap-fe.lbr
  999. &lt;li&gt;captant.lbr
  1000. &lt;li&gt;polcap.lbr
  1001. &lt;li&gt;ipc-smd.lbr
  1002. &lt;/ul&gt;
  1003. All SMD packages are defined according to the IPC specifications and CECC&lt;p&gt;
  1004. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;p&gt;
  1005. &lt;p&gt;
  1006. for Electrolyt Capacitors see also :&lt;p&gt;
  1007. www.bccomponents.com &lt;p&gt;
  1008. www.panasonic.com&lt;p&gt;
  1009. www.kemet.com&lt;p&gt;
  1010. &lt;p&gt;
  1011. for trimmer refence see : &lt;u&gt;www.electrospec-inc.com/cross_references/trimpotcrossref.asp&lt;/u&gt;&lt;p&gt;
  1012. &lt;map name="nav_main"&gt;
  1013. &lt;area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title=""&gt;
  1014. &lt;area shape="rect" coords="0,24,140,51" href="../about.asp" title=""&gt;
  1015. &lt;area shape="rect" coords="1,52,140,77" href="../rfq.asp" title=""&gt;
  1016. &lt;area shape="rect" coords="0,78,139,103" href="../products.asp" title=""&gt;
  1017. &lt;area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title=""&gt;
  1018. &lt;area shape="rect" coords="1,129,138,150" href="../edge.asp" title=""&gt;
  1019. &lt;area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title=""&gt;
  1020. &lt;area shape="rect" coords="0,179,139,201" href="../comments.asp" title=""&gt;
  1021. &lt;area shape="rect" coords="1,203,138,231" href="../directory.asp" title=""&gt;
  1022. &lt;area shape="default" nohref&gt;
  1023. &lt;/map&gt;
  1024. &lt;html&gt;
  1025. &lt;title&gt;&lt;/title&gt;
  1026. &lt;LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css"&gt;
  1027. &lt;body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"&gt;
  1028. &lt;table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%"&gt;
  1029. &lt;tr valign="top"&gt;
  1030. &lt;/td&gt;
  1031. &lt;! &lt;td width="10"&gt;&amp;nbsp;&lt;/td&gt;
  1032. &lt;td width="90%"&gt;
  1033. &lt;b&gt;&lt;font color="#0000FF" size="4"&gt;TRIM-POT CROSS REFERENCE&lt;/font&gt;&lt;/b&gt;
  1034. &lt;P&gt;
  1035. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2&gt;
  1036. &lt;TR&gt;
  1037. &lt;TD COLSPAN=8&gt;
  1038. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;RECTANGULAR MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1039. &lt;/TD&gt;
  1040. &lt;/TR&gt;
  1041. &lt;TR&gt;
  1042. &lt;TD ALIGN=CENTER&gt;
  1043. &lt;B&gt;
  1044. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BOURNS&lt;/FONT&gt;
  1045. &lt;/B&gt;
  1046. &lt;/TD&gt;
  1047. &lt;TD ALIGN=CENTER&gt;
  1048. &lt;B&gt;
  1049. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BI&amp;nbsp;TECH&lt;/FONT&gt;
  1050. &lt;/B&gt;
  1051. &lt;/TD&gt;
  1052. &lt;TD ALIGN=CENTER&gt;
  1053. &lt;B&gt;
  1054. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;DALE-VISHAY&lt;/FONT&gt;
  1055. &lt;/B&gt;
  1056. &lt;/TD&gt;
  1057. &lt;TD ALIGN=CENTER&gt;
  1058. &lt;B&gt;
  1059. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PHILIPS/MEPCO&lt;/FONT&gt;
  1060. &lt;/B&gt;
  1061. &lt;/TD&gt;
  1062. &lt;TD ALIGN=CENTER&gt;
  1063. &lt;B&gt;
  1064. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MURATA&lt;/FONT&gt;
  1065. &lt;/B&gt;
  1066. &lt;/TD&gt;
  1067. &lt;TD ALIGN=CENTER&gt;
  1068. &lt;B&gt;
  1069. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PANASONIC&lt;/FONT&gt;
  1070. &lt;/B&gt;
  1071. &lt;/TD&gt;
  1072. &lt;TD ALIGN=CENTER&gt;
  1073. &lt;B&gt;
  1074. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;SPECTROL&lt;/FONT&gt;
  1075. &lt;/B&gt;
  1076. &lt;/TD&gt;
  1077. &lt;TD ALIGN=CENTER&gt;
  1078. &lt;B&gt;
  1079. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MILSPEC&lt;/FONT&gt;
  1080. &lt;/B&gt;
  1081. &lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
  1082. &lt;/TR&gt;
  1083. &lt;TR&gt;
  1084. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3 &gt;
  1085. 3005P&lt;BR&gt;
  1086. 3006P&lt;BR&gt;
  1087. 3006W&lt;BR&gt;
  1088. 3006Y&lt;BR&gt;
  1089. 3009P&lt;BR&gt;
  1090. 3009W&lt;BR&gt;
  1091. 3009Y&lt;BR&gt;
  1092. 3057J&lt;BR&gt;
  1093. 3057L&lt;BR&gt;
  1094. 3057P&lt;BR&gt;
  1095. 3057Y&lt;BR&gt;
  1096. 3059J&lt;BR&gt;
  1097. 3059L&lt;BR&gt;
  1098. 3059P&lt;BR&gt;
  1099. 3059Y&lt;BR&gt;&lt;/FONT&gt;
  1100. &lt;/TD&gt;
  1101. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1102. -&lt;BR&gt;
  1103. 89P&lt;BR&gt;
  1104. 89W&lt;BR&gt;
  1105. 89X&lt;BR&gt;
  1106. 89PH&lt;BR&gt;
  1107. 76P&lt;BR&gt;
  1108. 89XH&lt;BR&gt;
  1109. 78SLT&lt;BR&gt;
  1110. 78L&amp;nbsp;ALT&lt;BR&gt;
  1111. 56P&amp;nbsp;ALT&lt;BR&gt;
  1112. 78P&amp;nbsp;ALT&lt;BR&gt;
  1113. T8S&lt;BR&gt;
  1114. 78L&lt;BR&gt;
  1115. 56P&lt;BR&gt;
  1116. 78P&lt;BR&gt;&lt;/FONT&gt;
  1117. &lt;/TD&gt;
  1118. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1119. -&lt;BR&gt;
  1120. T18/784&lt;BR&gt;
  1121. 783&lt;BR&gt;
  1122. 781&lt;BR&gt;
  1123. -&lt;BR&gt;
  1124. -&lt;BR&gt;
  1125. -&lt;BR&gt;
  1126. 2199&lt;BR&gt;
  1127. 1697/1897&lt;BR&gt;
  1128. 1680/1880&lt;BR&gt;
  1129. 2187&lt;BR&gt;
  1130. -&lt;BR&gt;
  1131. -&lt;BR&gt;
  1132. -&lt;BR&gt;
  1133. -&lt;BR&gt;&lt;/FONT&gt;
  1134. &lt;/TD&gt;
  1135. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1136. -&lt;BR&gt;
  1137. 8035EKP/CT20/RJ-20P&lt;BR&gt;
  1138. -&lt;BR&gt;
  1139. RJ-20X&lt;BR&gt;
  1140. -&lt;BR&gt;
  1141. -&lt;BR&gt;
  1142. -&lt;BR&gt;
  1143. 1211L&lt;BR&gt;
  1144. 8012EKQ&amp;nbsp;ALT&lt;BR&gt;
  1145. 8012EKR&amp;nbsp;ALT&lt;BR&gt;
  1146. 1211P&lt;BR&gt;
  1147. 8012EKJ&lt;BR&gt;
  1148. 8012EKL&lt;BR&gt;
  1149. 8012EKQ&lt;BR&gt;
  1150. 8012EKR&lt;BR&gt;&lt;/FONT&gt;
  1151. &lt;/TD&gt;
  1152. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1153. -&lt;BR&gt;
  1154. 2101P&lt;BR&gt;
  1155. 2101W&lt;BR&gt;
  1156. 2101Y&lt;BR&gt;
  1157. -&lt;BR&gt;
  1158. -&lt;BR&gt;
  1159. -&lt;BR&gt;
  1160. -&lt;BR&gt;
  1161. -&lt;BR&gt;
  1162. -&lt;BR&gt;
  1163. -&lt;BR&gt;
  1164. -&lt;BR&gt;
  1165. 2102L&lt;BR&gt;
  1166. 2102S&lt;BR&gt;
  1167. 2102Y&lt;BR&gt;&lt;/FONT&gt;
  1168. &lt;/TD&gt;
  1169. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1170. -&lt;BR&gt;
  1171. EVMCOG&lt;BR&gt;
  1172. -&lt;BR&gt;
  1173. -&lt;BR&gt;
  1174. -&lt;BR&gt;
  1175. -&lt;BR&gt;
  1176. -&lt;BR&gt;
  1177. -&lt;BR&gt;
  1178. -&lt;BR&gt;
  1179. -&lt;BR&gt;
  1180. -&lt;BR&gt;
  1181. -&lt;BR&gt;
  1182. -&lt;BR&gt;
  1183. -&lt;BR&gt;
  1184. -&lt;BR&gt;&lt;/FONT&gt;
  1185. &lt;/TD&gt;
  1186. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1187. -&lt;BR&gt;
  1188. 43P&lt;BR&gt;
  1189. 43W&lt;BR&gt;
  1190. 43Y&lt;BR&gt;
  1191. -&lt;BR&gt;
  1192. -&lt;BR&gt;
  1193. -&lt;BR&gt;
  1194. -&lt;BR&gt;
  1195. 40L&lt;BR&gt;
  1196. 40P&lt;BR&gt;
  1197. 40Y&lt;BR&gt;
  1198. 70Y-T602&lt;BR&gt;
  1199. 70L&lt;BR&gt;
  1200. 70P&lt;BR&gt;
  1201. 70Y&lt;BR&gt;&lt;/FONT&gt;
  1202. &lt;/TD&gt;
  1203. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1204. -&lt;BR&gt;
  1205. -&lt;BR&gt;
  1206. -&lt;BR&gt;
  1207. -&lt;BR&gt;
  1208. -&lt;BR&gt;
  1209. -&lt;BR&gt;
  1210. -&lt;BR&gt;
  1211. -&lt;BR&gt;
  1212. RT/RTR12&lt;BR&gt;
  1213. RT/RTR12&lt;BR&gt;
  1214. RT/RTR12&lt;BR&gt;
  1215. -&lt;BR&gt;
  1216. RJ/RJR12&lt;BR&gt;
  1217. RJ/RJR12&lt;BR&gt;
  1218. RJ/RJR12&lt;BR&gt;&lt;/FONT&gt;
  1219. &lt;/TD&gt;
  1220. &lt;/TR&gt;
  1221. &lt;TR&gt;
  1222. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1223. &lt;/TD&gt;
  1224. &lt;/TR&gt;
  1225. &lt;TR&gt;
  1226. &lt;TD COLSPAN=8&gt;
  1227. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SQUARE MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1228. &lt;/TD&gt;
  1229. &lt;/TR&gt;
  1230. &lt;TR&gt;
  1231. &lt;TD ALIGN=CENTER&gt;
  1232. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1233. &lt;/TD&gt;
  1234. &lt;TD ALIGN=CENTER&gt;
  1235. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1236. &lt;/TD&gt;
  1237. &lt;TD ALIGN=CENTER&gt;
  1238. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1239. &lt;/TD&gt;
  1240. &lt;TD ALIGN=CENTER&gt;
  1241. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1242. &lt;/TD&gt;
  1243. &lt;TD ALIGN=CENTER&gt;
  1244. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1245. &lt;/TD&gt;
  1246. &lt;TD ALIGN=CENTER&gt;
  1247. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1248. &lt;/TD&gt;
  1249. &lt;TD ALIGN=CENTER&gt;
  1250. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1251. &lt;/TD&gt;
  1252. &lt;TD ALIGN=CENTER&gt;
  1253. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1254. &lt;/TD&gt;
  1255. &lt;/TR&gt;
  1256. &lt;TR&gt;
  1257. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1258. 3250L&lt;BR&gt;
  1259. 3250P&lt;BR&gt;
  1260. 3250W&lt;BR&gt;
  1261. 3250X&lt;BR&gt;
  1262. 3252P&lt;BR&gt;
  1263. 3252W&lt;BR&gt;
  1264. 3252X&lt;BR&gt;
  1265. 3260P&lt;BR&gt;
  1266. 3260W&lt;BR&gt;
  1267. 3260X&lt;BR&gt;
  1268. 3262P&lt;BR&gt;
  1269. 3262W&lt;BR&gt;
  1270. 3262X&lt;BR&gt;
  1271. 3266P&lt;BR&gt;
  1272. 3266W&lt;BR&gt;
  1273. 3266X&lt;BR&gt;
  1274. 3290H&lt;BR&gt;
  1275. 3290P&lt;BR&gt;
  1276. 3290W&lt;BR&gt;
  1277. 3292P&lt;BR&gt;
  1278. 3292W&lt;BR&gt;
  1279. 3292X&lt;BR&gt;
  1280. 3296P&lt;BR&gt;
  1281. 3296W&lt;BR&gt;
  1282. 3296X&lt;BR&gt;
  1283. 3296Y&lt;BR&gt;
  1284. 3296Z&lt;BR&gt;
  1285. 3299P&lt;BR&gt;
  1286. 3299W&lt;BR&gt;
  1287. 3299X&lt;BR&gt;
  1288. 3299Y&lt;BR&gt;
  1289. 3299Z&lt;BR&gt;&lt;/FONT&gt;
  1290. &lt;/TD&gt;
  1291. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1292. -&lt;BR&gt;
  1293. 66P&amp;nbsp;ALT&lt;BR&gt;
  1294. 66W&amp;nbsp;ALT&lt;BR&gt;
  1295. 66X&amp;nbsp;ALT&lt;BR&gt;
  1296. 66P&amp;nbsp;ALT&lt;BR&gt;
  1297. 66W&amp;nbsp;ALT&lt;BR&gt;
  1298. 66X&amp;nbsp;ALT&lt;BR&gt;
  1299. -&lt;BR&gt;
  1300. 64W&amp;nbsp;ALT&lt;BR&gt;
  1301. -&lt;BR&gt;
  1302. 64P&amp;nbsp;ALT&lt;BR&gt;
  1303. 64W&amp;nbsp;ALT&lt;BR&gt;
  1304. 64X&amp;nbsp;ALT&lt;BR&gt;
  1305. 64P&lt;BR&gt;
  1306. 64W&lt;BR&gt;
  1307. 64X&lt;BR&gt;
  1308. 66X&amp;nbsp;ALT&lt;BR&gt;
  1309. 66P&amp;nbsp;ALT&lt;BR&gt;
  1310. 66W&amp;nbsp;ALT&lt;BR&gt;
  1311. 66P&lt;BR&gt;
  1312. 66W&lt;BR&gt;
  1313. 66X&lt;BR&gt;
  1314. 67P&lt;BR&gt;
  1315. 67W&lt;BR&gt;
  1316. 67X&lt;BR&gt;
  1317. 67Y&lt;BR&gt;
  1318. 67Z&lt;BR&gt;
  1319. 68P&lt;BR&gt;
  1320. 68W&lt;BR&gt;
  1321. 68X&lt;BR&gt;
  1322. 67Y&amp;nbsp;ALT&lt;BR&gt;
  1323. 67Z&amp;nbsp;ALT&lt;BR&gt;&lt;/FONT&gt;
  1324. &lt;/TD&gt;
  1325. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1326. 5050&lt;BR&gt;
  1327. 5091&lt;BR&gt;
  1328. 5080&lt;BR&gt;
  1329. 5087&lt;BR&gt;
  1330. -&lt;BR&gt;
  1331. -&lt;BR&gt;
  1332. -&lt;BR&gt;
  1333. -&lt;BR&gt;
  1334. -&lt;BR&gt;
  1335. -&lt;BR&gt;
  1336. -&lt;BR&gt;
  1337. T63YB&lt;BR&gt;
  1338. T63XB&lt;BR&gt;
  1339. -&lt;BR&gt;
  1340. -&lt;BR&gt;
  1341. -&lt;BR&gt;
  1342. 5887&lt;BR&gt;
  1343. 5891&lt;BR&gt;
  1344. 5880&lt;BR&gt;
  1345. -&lt;BR&gt;
  1346. -&lt;BR&gt;
  1347. -&lt;BR&gt;
  1348. T93Z&lt;BR&gt;
  1349. T93YA&lt;BR&gt;
  1350. T93XA&lt;BR&gt;
  1351. T93YB&lt;BR&gt;
  1352. T93XB&lt;BR&gt;
  1353. -&lt;BR&gt;
  1354. -&lt;BR&gt;
  1355. -&lt;BR&gt;
  1356. -&lt;BR&gt;
  1357. -&lt;BR&gt;&lt;/FONT&gt;
  1358. &lt;/TD&gt;
  1359. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1360. -&lt;BR&gt;
  1361. -&lt;BR&gt;
  1362. -&lt;BR&gt;
  1363. -&lt;BR&gt;
  1364. -&lt;BR&gt;
  1365. -&lt;BR&gt;
  1366. -&lt;BR&gt;
  1367. -&lt;BR&gt;
  1368. -&lt;BR&gt;
  1369. -&lt;BR&gt;
  1370. 8026EKP&lt;BR&gt;
  1371. 8026EKW&lt;BR&gt;
  1372. 8026EKM&lt;BR&gt;
  1373. 8026EKP&lt;BR&gt;
  1374. 8026EKB&lt;BR&gt;
  1375. 8026EKM&lt;BR&gt;
  1376. 1309X&lt;BR&gt;
  1377. 1309P&lt;BR&gt;
  1378. 1309W&lt;BR&gt;
  1379. 8024EKP&lt;BR&gt;
  1380. 8024EKW&lt;BR&gt;
  1381. 8024EKN&lt;BR&gt;
  1382. RJ-9P/CT9P&lt;BR&gt;
  1383. RJ-9W&lt;BR&gt;
  1384. RJ-9X&lt;BR&gt;
  1385. -&lt;BR&gt;
  1386. -&lt;BR&gt;
  1387. -&lt;BR&gt;
  1388. -&lt;BR&gt;
  1389. -&lt;BR&gt;
  1390. -&lt;BR&gt;
  1391. -&lt;BR&gt;&lt;/FONT&gt;
  1392. &lt;/TD&gt;
  1393. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1394. -&lt;BR&gt;
  1395. -&lt;BR&gt;
  1396. -&lt;BR&gt;
  1397. -&lt;BR&gt;
  1398. -&lt;BR&gt;
  1399. -&lt;BR&gt;
  1400. -&lt;BR&gt;
  1401. -&lt;BR&gt;
  1402. -&lt;BR&gt;
  1403. -&lt;BR&gt;
  1404. 3103P&lt;BR&gt;
  1405. 3103Y&lt;BR&gt;
  1406. 3103Z&lt;BR&gt;
  1407. 3103P&lt;BR&gt;
  1408. 3103Y&lt;BR&gt;
  1409. 3103Z&lt;BR&gt;
  1410. -&lt;BR&gt;
  1411. -&lt;BR&gt;
  1412. -&lt;BR&gt;
  1413. -&lt;BR&gt;
  1414. -&lt;BR&gt;
  1415. -&lt;BR&gt;
  1416. 3105P/3106P&lt;BR&gt;
  1417. 3105W/3106W&lt;BR&gt;
  1418. 3105X/3106X&lt;BR&gt;
  1419. 3105Y/3106Y&lt;BR&gt;
  1420. 3105Z/3105Z&lt;BR&gt;
  1421. 3102P&lt;BR&gt;
  1422. 3102W&lt;BR&gt;
  1423. 3102X&lt;BR&gt;
  1424. 3102Y&lt;BR&gt;
  1425. 3102Z&lt;BR&gt;&lt;/FONT&gt;
  1426. &lt;/TD&gt;
  1427. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1428. -&lt;BR&gt;
  1429. -&lt;BR&gt;
  1430. -&lt;BR&gt;
  1431. -&lt;BR&gt;
  1432. -&lt;BR&gt;
  1433. -&lt;BR&gt;
  1434. -&lt;BR&gt;
  1435. -&lt;BR&gt;
  1436. -&lt;BR&gt;
  1437. -&lt;BR&gt;
  1438. -&lt;BR&gt;
  1439. -&lt;BR&gt;
  1440. -&lt;BR&gt;
  1441. -&lt;BR&gt;
  1442. -&lt;BR&gt;
  1443. -&lt;BR&gt;
  1444. -&lt;BR&gt;
  1445. -&lt;BR&gt;
  1446. -&lt;BR&gt;
  1447. -&lt;BR&gt;
  1448. -&lt;BR&gt;
  1449. -&lt;BR&gt;
  1450. EVMCBG&lt;BR&gt;
  1451. EVMCCG&lt;BR&gt;
  1452. -&lt;BR&gt;
  1453. -&lt;BR&gt;
  1454. -&lt;BR&gt;
  1455. -&lt;BR&gt;
  1456. -&lt;BR&gt;
  1457. -&lt;BR&gt;
  1458. -&lt;BR&gt;
  1459. -&lt;BR&gt;&lt;/FONT&gt;
  1460. &lt;/TD&gt;
  1461. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1462. 55-1-X&lt;BR&gt;
  1463. 55-4-X&lt;BR&gt;
  1464. 55-3-X&lt;BR&gt;
  1465. 55-2-X&lt;BR&gt;
  1466. -&lt;BR&gt;
  1467. -&lt;BR&gt;
  1468. -&lt;BR&gt;
  1469. -&lt;BR&gt;
  1470. -&lt;BR&gt;
  1471. -&lt;BR&gt;
  1472. -&lt;BR&gt;
  1473. -&lt;BR&gt;
  1474. -&lt;BR&gt;
  1475. -&lt;BR&gt;
  1476. -&lt;BR&gt;
  1477. -&lt;BR&gt;
  1478. 50-2-X&lt;BR&gt;
  1479. 50-4-X&lt;BR&gt;
  1480. 50-3-X&lt;BR&gt;
  1481. -&lt;BR&gt;
  1482. -&lt;BR&gt;
  1483. -&lt;BR&gt;
  1484. 64P&lt;BR&gt;
  1485. 64W&lt;BR&gt;
  1486. 64X&lt;BR&gt;
  1487. 64Y&lt;BR&gt;
  1488. 64Z&lt;BR&gt;
  1489. -&lt;BR&gt;
  1490. -&lt;BR&gt;
  1491. -&lt;BR&gt;
  1492. -&lt;BR&gt;
  1493. -&lt;BR&gt;&lt;/FONT&gt;
  1494. &lt;/TD&gt;
  1495. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1496. RT/RTR22&lt;BR&gt;
  1497. RT/RTR22&lt;BR&gt;
  1498. RT/RTR22&lt;BR&gt;
  1499. RT/RTR22&lt;BR&gt;
  1500. RJ/RJR22&lt;BR&gt;
  1501. RJ/RJR22&lt;BR&gt;
  1502. RJ/RJR22&lt;BR&gt;
  1503. RT/RTR26&lt;BR&gt;
  1504. RT/RTR26&lt;BR&gt;
  1505. RT/RTR26&lt;BR&gt;
  1506. RJ/RJR26&lt;BR&gt;
  1507. RJ/RJR26&lt;BR&gt;
  1508. RJ/RJR26&lt;BR&gt;
  1509. RJ/RJR26&lt;BR&gt;
  1510. RJ/RJR26&lt;BR&gt;
  1511. RJ/RJR26&lt;BR&gt;
  1512. RT/RTR24&lt;BR&gt;
  1513. RT/RTR24&lt;BR&gt;
  1514. RT/RTR24&lt;BR&gt;
  1515. RJ/RJR24&lt;BR&gt;
  1516. RJ/RJR24&lt;BR&gt;
  1517. RJ/RJR24&lt;BR&gt;
  1518. RJ/RJR24&lt;BR&gt;
  1519. RJ/RJR24&lt;BR&gt;
  1520. RJ/RJR24&lt;BR&gt;
  1521. -&lt;BR&gt;
  1522. -&lt;BR&gt;
  1523. -&lt;BR&gt;
  1524. -&lt;BR&gt;
  1525. -&lt;BR&gt;
  1526. -&lt;BR&gt;
  1527. -&lt;BR&gt;&lt;/FONT&gt;
  1528. &lt;/TD&gt;
  1529. &lt;/TR&gt;
  1530. &lt;TR&gt;
  1531. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1532. &lt;/TD&gt;
  1533. &lt;/TR&gt;
  1534. &lt;TR&gt;
  1535. &lt;TD COLSPAN=8&gt;
  1536. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1537. &lt;/TD&gt;
  1538. &lt;/TR&gt;
  1539. &lt;TR&gt;
  1540. &lt;TD ALIGN=CENTER&gt;
  1541. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1542. &lt;/TD&gt;
  1543. &lt;TD ALIGN=CENTER&gt;
  1544. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1545. &lt;/TD&gt;
  1546. &lt;TD ALIGN=CENTER&gt;
  1547. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1548. &lt;/TD&gt;
  1549. &lt;TD ALIGN=CENTER&gt;
  1550. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1551. &lt;/TD&gt;
  1552. &lt;TD ALIGN=CENTER&gt;
  1553. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1554. &lt;/TD&gt;
  1555. &lt;TD ALIGN=CENTER&gt;
  1556. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1557. &lt;/TD&gt;
  1558. &lt;TD ALIGN=CENTER&gt;
  1559. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1560. &lt;/TD&gt;
  1561. &lt;TD ALIGN=CENTER&gt;
  1562. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1563. &lt;/TD&gt;
  1564. &lt;/TR&gt;
  1565. &lt;TR&gt;
  1566. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1567. 3323P&lt;BR&gt;
  1568. 3323S&lt;BR&gt;
  1569. 3323W&lt;BR&gt;
  1570. 3329H&lt;BR&gt;
  1571. 3329P&lt;BR&gt;
  1572. 3329W&lt;BR&gt;
  1573. 3339H&lt;BR&gt;
  1574. 3339P&lt;BR&gt;
  1575. 3339W&lt;BR&gt;
  1576. 3352E&lt;BR&gt;
  1577. 3352H&lt;BR&gt;
  1578. 3352K&lt;BR&gt;
  1579. 3352P&lt;BR&gt;
  1580. 3352T&lt;BR&gt;
  1581. 3352V&lt;BR&gt;
  1582. 3352W&lt;BR&gt;
  1583. 3362H&lt;BR&gt;
  1584. 3362M&lt;BR&gt;
  1585. 3362P&lt;BR&gt;
  1586. 3362R&lt;BR&gt;
  1587. 3362S&lt;BR&gt;
  1588. 3362U&lt;BR&gt;
  1589. 3362W&lt;BR&gt;
  1590. 3362X&lt;BR&gt;
  1591. 3386B&lt;BR&gt;
  1592. 3386C&lt;BR&gt;
  1593. 3386F&lt;BR&gt;
  1594. 3386H&lt;BR&gt;
  1595. 3386K&lt;BR&gt;
  1596. 3386M&lt;BR&gt;
  1597. 3386P&lt;BR&gt;
  1598. 3386S&lt;BR&gt;
  1599. 3386W&lt;BR&gt;
  1600. 3386X&lt;BR&gt;&lt;/FONT&gt;
  1601. &lt;/TD&gt;
  1602. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1603. 25P&lt;BR&gt;
  1604. 25S&lt;BR&gt;
  1605. 25RX&lt;BR&gt;
  1606. 82P&lt;BR&gt;
  1607. 82M&lt;BR&gt;
  1608. 82PA&lt;BR&gt;
  1609. -&lt;BR&gt;
  1610. -&lt;BR&gt;
  1611. -&lt;BR&gt;
  1612. 91E&lt;BR&gt;
  1613. 91X&lt;BR&gt;
  1614. 91T&lt;BR&gt;
  1615. 91B&lt;BR&gt;
  1616. 91A&lt;BR&gt;
  1617. 91V&lt;BR&gt;
  1618. 91W&lt;BR&gt;
  1619. 25W&lt;BR&gt;
  1620. 25V&lt;BR&gt;
  1621. 25P&lt;BR&gt;
  1622. -&lt;BR&gt;
  1623. 25S&lt;BR&gt;
  1624. 25U&lt;BR&gt;
  1625. 25RX&lt;BR&gt;
  1626. 25X&lt;BR&gt;
  1627. 72XW&lt;BR&gt;
  1628. 72XL&lt;BR&gt;
  1629. 72PM&lt;BR&gt;
  1630. 72RX&lt;BR&gt;
  1631. -&lt;BR&gt;
  1632. 72PX&lt;BR&gt;
  1633. 72P&lt;BR&gt;
  1634. 72RXW&lt;BR&gt;
  1635. 72RXL&lt;BR&gt;
  1636. 72X&lt;BR&gt;&lt;/FONT&gt;
  1637. &lt;/TD&gt;
  1638. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1639. -&lt;BR&gt;
  1640. -&lt;BR&gt;
  1641. -&lt;BR&gt;
  1642. T7YB&lt;BR&gt;
  1643. T7YA&lt;BR&gt;
  1644. -&lt;BR&gt;
  1645. -&lt;BR&gt;
  1646. -&lt;BR&gt;
  1647. -&lt;BR&gt;
  1648. -&lt;BR&gt;
  1649. -&lt;BR&gt;
  1650. -&lt;BR&gt;
  1651. -&lt;BR&gt;
  1652. -&lt;BR&gt;
  1653. -&lt;BR&gt;
  1654. -&lt;BR&gt;
  1655. -&lt;BR&gt;
  1656. TXD&lt;BR&gt;
  1657. TYA&lt;BR&gt;
  1658. TYP&lt;BR&gt;
  1659. -&lt;BR&gt;
  1660. TYD&lt;BR&gt;
  1661. TX&lt;BR&gt;
  1662. -&lt;BR&gt;
  1663. 150SX&lt;BR&gt;
  1664. 100SX&lt;BR&gt;
  1665. 102T&lt;BR&gt;
  1666. 101S&lt;BR&gt;
  1667. 190T&lt;BR&gt;
  1668. 150TX&lt;BR&gt;
  1669. 101&lt;BR&gt;
  1670. -&lt;BR&gt;
  1671. -&lt;BR&gt;
  1672. 101SX&lt;BR&gt;&lt;/FONT&gt;
  1673. &lt;/TD&gt;
  1674. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1675. ET6P&lt;BR&gt;
  1676. ET6S&lt;BR&gt;
  1677. ET6X&lt;BR&gt;
  1678. RJ-6W/8014EMW&lt;BR&gt;
  1679. RJ-6P/8014EMP&lt;BR&gt;
  1680. RJ-6X/8014EMX&lt;BR&gt;
  1681. TM7W&lt;BR&gt;
  1682. TM7P&lt;BR&gt;
  1683. TM7X&lt;BR&gt;
  1684. -&lt;BR&gt;
  1685. 8017SMS&lt;BR&gt;
  1686. -&lt;BR&gt;
  1687. 8017SMB&lt;BR&gt;
  1688. 8017SMA&lt;BR&gt;
  1689. -&lt;BR&gt;
  1690. -&lt;BR&gt;
  1691. CT-6W&lt;BR&gt;
  1692. CT-6H&lt;BR&gt;
  1693. CT-6P&lt;BR&gt;
  1694. CT-6R&lt;BR&gt;
  1695. -&lt;BR&gt;
  1696. CT-6V&lt;BR&gt;
  1697. CT-6X&lt;BR&gt;
  1698. -&lt;BR&gt;
  1699. -&lt;BR&gt;
  1700. 8038EKV&lt;BR&gt;
  1701. -&lt;BR&gt;
  1702. 8038EKX&lt;BR&gt;
  1703. -&lt;BR&gt;
  1704. -&lt;BR&gt;
  1705. 8038EKP&lt;BR&gt;
  1706. 8038EKZ&lt;BR&gt;
  1707. 8038EKW&lt;BR&gt;
  1708. -&lt;BR&gt;&lt;/FONT&gt;
  1709. &lt;/TD&gt;
  1710. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1711. -&lt;BR&gt;
  1712. -&lt;BR&gt;
  1713. -&lt;BR&gt;
  1714. 3321H&lt;BR&gt;
  1715. 3321P&lt;BR&gt;
  1716. 3321N&lt;BR&gt;
  1717. 1102H&lt;BR&gt;
  1718. 1102P&lt;BR&gt;
  1719. 1102T&lt;BR&gt;
  1720. RVA0911V304A&lt;BR&gt;
  1721. -&lt;BR&gt;
  1722. RVA0911H413A&lt;BR&gt;
  1723. RVG0707V100A&lt;BR&gt;
  1724. RVA0607V(H)306A&lt;BR&gt;
  1725. RVA1214H213A&lt;BR&gt;
  1726. -&lt;BR&gt;
  1727. -&lt;BR&gt;
  1728. -&lt;BR&gt;
  1729. -&lt;BR&gt;
  1730. -&lt;BR&gt;
  1731. -&lt;BR&gt;
  1732. -&lt;BR&gt;
  1733. -&lt;BR&gt;
  1734. -&lt;BR&gt;
  1735. 3104B&lt;BR&gt;
  1736. 3104C&lt;BR&gt;
  1737. 3104F&lt;BR&gt;
  1738. 3104H&lt;BR&gt;
  1739. -&lt;BR&gt;
  1740. 3104M&lt;BR&gt;
  1741. 3104P&lt;BR&gt;
  1742. 3104S&lt;BR&gt;
  1743. 3104W&lt;BR&gt;
  1744. 3104X&lt;BR&gt;&lt;/FONT&gt;
  1745. &lt;/TD&gt;
  1746. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1747. EVMQ0G&lt;BR&gt;
  1748. EVMQIG&lt;BR&gt;
  1749. EVMQ3G&lt;BR&gt;
  1750. EVMS0G&lt;BR&gt;
  1751. EVMQ0G&lt;BR&gt;
  1752. EVMG0G&lt;BR&gt;
  1753. -&lt;BR&gt;
  1754. -&lt;BR&gt;
  1755. -&lt;BR&gt;
  1756. EVMK4GA00B&lt;BR&gt;
  1757. EVM30GA00B&lt;BR&gt;
  1758. EVMK0GA00B&lt;BR&gt;
  1759. EVM38GA00B&lt;BR&gt;
  1760. EVMB6&lt;BR&gt;
  1761. EVLQ0&lt;BR&gt;
  1762. -&lt;BR&gt;
  1763. EVMMSG&lt;BR&gt;
  1764. EVMMBG&lt;BR&gt;
  1765. EVMMAG&lt;BR&gt;
  1766. -&lt;BR&gt;
  1767. -&lt;BR&gt;
  1768. EVMMCS&lt;BR&gt;
  1769. -&lt;BR&gt;
  1770. -&lt;BR&gt;
  1771. -&lt;BR&gt;
  1772. -&lt;BR&gt;
  1773. -&lt;BR&gt;
  1774. EVMM1&lt;BR&gt;
  1775. -&lt;BR&gt;
  1776. -&lt;BR&gt;
  1777. EVMM0&lt;BR&gt;
  1778. -&lt;BR&gt;
  1779. -&lt;BR&gt;
  1780. EVMM3&lt;BR&gt;&lt;/FONT&gt;
  1781. &lt;/TD&gt;
  1782. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1783. -&lt;BR&gt;
  1784. -&lt;BR&gt;
  1785. -&lt;BR&gt;
  1786. 62-3-1&lt;BR&gt;
  1787. 62-1-2&lt;BR&gt;
  1788. -&lt;BR&gt;
  1789. -&lt;BR&gt;
  1790. -&lt;BR&gt;
  1791. -&lt;BR&gt;
  1792. -&lt;BR&gt;
  1793. -&lt;BR&gt;
  1794. -&lt;BR&gt;
  1795. -&lt;BR&gt;
  1796. -&lt;BR&gt;
  1797. -&lt;BR&gt;
  1798. -&lt;BR&gt;
  1799. 67R&lt;BR&gt;
  1800. -&lt;BR&gt;
  1801. 67P&lt;BR&gt;
  1802. -&lt;BR&gt;
  1803. -&lt;BR&gt;
  1804. -&lt;BR&gt;
  1805. -&lt;BR&gt;
  1806. 67X&lt;BR&gt;
  1807. 63V&lt;BR&gt;
  1808. 63S&lt;BR&gt;
  1809. 63M&lt;BR&gt;
  1810. -&lt;BR&gt;
  1811. -&lt;BR&gt;
  1812. 63H&lt;BR&gt;
  1813. 63P&lt;BR&gt;
  1814. -&lt;BR&gt;
  1815. -&lt;BR&gt;
  1816. 63X&lt;BR&gt;&lt;/FONT&gt;
  1817. &lt;/TD&gt;
  1818. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1819. -&lt;BR&gt;
  1820. -&lt;BR&gt;
  1821. -&lt;BR&gt;
  1822. RJ/RJR50&lt;BR&gt;
  1823. RJ/RJR50&lt;BR&gt;
  1824. RJ/RJR50&lt;BR&gt;
  1825. -&lt;BR&gt;
  1826. -&lt;BR&gt;
  1827. -&lt;BR&gt;
  1828. -&lt;BR&gt;
  1829. -&lt;BR&gt;
  1830. -&lt;BR&gt;
  1831. -&lt;BR&gt;
  1832. -&lt;BR&gt;
  1833. -&lt;BR&gt;
  1834. -&lt;BR&gt;
  1835. -&lt;BR&gt;
  1836. -&lt;BR&gt;
  1837. -&lt;BR&gt;
  1838. -&lt;BR&gt;
  1839. -&lt;BR&gt;
  1840. -&lt;BR&gt;
  1841. -&lt;BR&gt;
  1842. -&lt;BR&gt;
  1843. -&lt;BR&gt;
  1844. -&lt;BR&gt;
  1845. -&lt;BR&gt;
  1846. -&lt;BR&gt;
  1847. -&lt;BR&gt;
  1848. -&lt;BR&gt;
  1849. -&lt;BR&gt;
  1850. -&lt;BR&gt;
  1851. -&lt;BR&gt;
  1852. -&lt;BR&gt;&lt;/FONT&gt;
  1853. &lt;/TD&gt;
  1854. &lt;/TR&gt;
  1855. &lt;/TABLE&gt;
  1856. &lt;P&gt;&amp;nbsp;&lt;P&gt;
  1857. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3&gt;
  1858. &lt;TR&gt;
  1859. &lt;TD COLSPAN=7&gt;
  1860. &lt;FONT color="#0000FF" SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SMD TRIM-POT CROSS REFERENCE&lt;/B&gt;&lt;/FONT&gt;
  1861. &lt;P&gt;
  1862. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1863. &lt;/TD&gt;
  1864. &lt;/TR&gt;
  1865. &lt;TR&gt;
  1866. &lt;TD&gt;
  1867. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1868. &lt;/TD&gt;
  1869. &lt;TD&gt;
  1870. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1871. &lt;/TD&gt;
  1872. &lt;TD&gt;
  1873. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1874. &lt;/TD&gt;
  1875. &lt;TD&gt;
  1876. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1877. &lt;/TD&gt;
  1878. &lt;TD&gt;
  1879. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1880. &lt;/TD&gt;
  1881. &lt;TD&gt;
  1882. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1883. &lt;/TD&gt;
  1884. &lt;TD&gt;
  1885. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1886. &lt;/TD&gt;
  1887. &lt;/TR&gt;
  1888. &lt;TR&gt;
  1889. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1890. 3224G&lt;BR&gt;
  1891. 3224J&lt;BR&gt;
  1892. 3224W&lt;BR&gt;
  1893. 3269P&lt;BR&gt;
  1894. 3269W&lt;BR&gt;
  1895. 3269X&lt;BR&gt;&lt;/FONT&gt;
  1896. &lt;/TD&gt;
  1897. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1898. 44G&lt;BR&gt;
  1899. 44J&lt;BR&gt;
  1900. 44W&lt;BR&gt;
  1901. 84P&lt;BR&gt;
  1902. 84W&lt;BR&gt;
  1903. 84X&lt;BR&gt;&lt;/FONT&gt;
  1904. &lt;/TD&gt;
  1905. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1906. -&lt;BR&gt;
  1907. -&lt;BR&gt;
  1908. -&lt;BR&gt;
  1909. ST63Z&lt;BR&gt;
  1910. ST63Y&lt;BR&gt;
  1911. -&lt;BR&gt;&lt;/FONT&gt;
  1912. &lt;/TD&gt;
  1913. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1914. -&lt;BR&gt;
  1915. -&lt;BR&gt;
  1916. -&lt;BR&gt;
  1917. ST5P&lt;BR&gt;
  1918. ST5W&lt;BR&gt;
  1919. ST5X&lt;BR&gt;&lt;/FONT&gt;
  1920. &lt;/TD&gt;
  1921. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1922. -&lt;BR&gt;
  1923. -&lt;BR&gt;
  1924. -&lt;BR&gt;
  1925. -&lt;BR&gt;
  1926. -&lt;BR&gt;
  1927. -&lt;BR&gt;&lt;/FONT&gt;
  1928. &lt;/TD&gt;
  1929. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1930. -&lt;BR&gt;
  1931. -&lt;BR&gt;
  1932. -&lt;BR&gt;
  1933. -&lt;BR&gt;
  1934. -&lt;BR&gt;
  1935. -&lt;BR&gt;&lt;/FONT&gt;
  1936. &lt;/TD&gt;
  1937. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1938. -&lt;BR&gt;
  1939. -&lt;BR&gt;
  1940. -&lt;BR&gt;
  1941. -&lt;BR&gt;
  1942. -&lt;BR&gt;
  1943. -&lt;BR&gt;&lt;/FONT&gt;
  1944. &lt;/TD&gt;
  1945. &lt;/TR&gt;
  1946. &lt;TR&gt;
  1947. &lt;TD COLSPAN=7&gt;&amp;nbsp;
  1948. &lt;/TD&gt;
  1949. &lt;/TR&gt;
  1950. &lt;TR&gt;
  1951. &lt;TD COLSPAN=7&gt;
  1952. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1953. &lt;/TD&gt;
  1954. &lt;/TR&gt;
  1955. &lt;TR&gt;
  1956. &lt;TD&gt;
  1957. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1958. &lt;/TD&gt;
  1959. &lt;TD&gt;
  1960. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1961. &lt;/TD&gt;
  1962. &lt;TD&gt;
  1963. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1964. &lt;/TD&gt;
  1965. &lt;TD&gt;
  1966. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1967. &lt;/TD&gt;
  1968. &lt;TD&gt;
  1969. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1970. &lt;/TD&gt;
  1971. &lt;TD&gt;
  1972. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1973. &lt;/TD&gt;
  1974. &lt;TD&gt;
  1975. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1976. &lt;/TD&gt;
  1977. &lt;/TR&gt;
  1978. &lt;TR&gt;
  1979. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1980. 3314G&lt;BR&gt;
  1981. 3314J&lt;BR&gt;
  1982. 3364A/B&lt;BR&gt;
  1983. 3364C/D&lt;BR&gt;
  1984. 3364W/X&lt;BR&gt;
  1985. 3313G&lt;BR&gt;
  1986. 3313J&lt;BR&gt;&lt;/FONT&gt;
  1987. &lt;/TD&gt;
  1988. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1989. 23B&lt;BR&gt;
  1990. 23A&lt;BR&gt;
  1991. 21X&lt;BR&gt;
  1992. 21W&lt;BR&gt;
  1993. -&lt;BR&gt;
  1994. 22B&lt;BR&gt;
  1995. 22A&lt;BR&gt;&lt;/FONT&gt;
  1996. &lt;/TD&gt;
  1997. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1998. ST5YL/ST53YL&lt;BR&gt;
  1999. ST5YJ/5T53YJ&lt;BR&gt;
  2000. ST-23A&lt;BR&gt;
  2001. ST-22B&lt;BR&gt;
  2002. ST-22&lt;BR&gt;
  2003. -&lt;BR&gt;
  2004. -&lt;BR&gt;&lt;/FONT&gt;
  2005. &lt;/TD&gt;
  2006. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2007. ST-4B&lt;BR&gt;
  2008. ST-4A&lt;BR&gt;
  2009. -&lt;BR&gt;
  2010. -&lt;BR&gt;
  2011. -&lt;BR&gt;
  2012. ST-3B&lt;BR&gt;
  2013. ST-3A&lt;BR&gt;&lt;/FONT&gt;
  2014. &lt;/TD&gt;
  2015. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2016. -&lt;BR&gt;
  2017. EVM-6YS&lt;BR&gt;
  2018. EVM-1E&lt;BR&gt;
  2019. EVM-1G&lt;BR&gt;
  2020. EVM-1D&lt;BR&gt;
  2021. -&lt;BR&gt;
  2022. -&lt;BR&gt;&lt;/FONT&gt;
  2023. &lt;/TD&gt;
  2024. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2025. G4B&lt;BR&gt;
  2026. G4A&lt;BR&gt;
  2027. TR04-3S1&lt;BR&gt;
  2028. TRG04-2S1&lt;BR&gt;
  2029. -&lt;BR&gt;
  2030. -&lt;BR&gt;
  2031. -&lt;BR&gt;&lt;/FONT&gt;
  2032. &lt;/TD&gt;
  2033. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2034. -&lt;BR&gt;
  2035. -&lt;BR&gt;
  2036. DVR-43A&lt;BR&gt;
  2037. CVR-42C&lt;BR&gt;
  2038. CVR-42A/C&lt;BR&gt;
  2039. -&lt;BR&gt;
  2040. -&lt;BR&gt;&lt;/FONT&gt;
  2041. &lt;/TD&gt;
  2042. &lt;/TR&gt;
  2043. &lt;/TABLE&gt;
  2044. &lt;P&gt;
  2045. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;ALT =&amp;nbsp;ALTERNATE&lt;/B&gt;&lt;/FONT&gt;
  2046. &lt;P&gt;
  2047. &amp;nbsp;
  2048. &lt;P&gt;
  2049. &lt;/td&gt;
  2050. &lt;/tr&gt;
  2051. &lt;/table&gt;
  2052. &lt;/BODY&gt;&lt;/HTML&gt;</description>
  2053. <packages>
  2054. <package name="R0402">
  2055. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2056. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  2057. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  2058. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  2059. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  2060. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  2061. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  2062. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  2063. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  2064. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  2065. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  2066. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  2067. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  2068. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  2069. </package>
  2070. <package name="R0603">
  2071. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2072. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  2073. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  2074. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  2075. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  2076. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  2077. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  2078. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  2079. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  2080. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  2081. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  2082. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  2083. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  2084. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  2085. </package>
  2086. <package name="R0805">
  2087. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  2088. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2089. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2090. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2091. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2092. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2093. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2094. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  2095. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  2096. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2097. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2098. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2099. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2100. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  2101. </package>
  2102. <package name="R0805W">
  2103. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;</description>
  2104. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2105. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2106. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2107. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2108. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2109. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2110. <smd name="1" x="-1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  2111. <smd name="2" x="1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  2112. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2113. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2114. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2115. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2116. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  2117. </package>
  2118. <package name="R1206">
  2119. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2120. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  2121. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  2122. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2123. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2124. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2125. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2126. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  2127. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  2128. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2129. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2130. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  2131. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  2132. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2133. </package>
  2134. <package name="R1206W">
  2135. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2136. wave soldering</description>
  2137. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2138. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2139. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2140. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2141. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2142. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2143. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2144. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2145. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2146. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2147. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2148. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2149. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2150. </package>
  2151. <package name="R1210">
  2152. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2153. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2154. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2155. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2156. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2157. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2158. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2159. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2160. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2161. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2162. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2163. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2164. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2165. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  2166. </package>
  2167. <package name="R1210W">
  2168. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2169. wave soldering</description>
  2170. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2171. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2172. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2173. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2174. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2175. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2176. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2177. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2178. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2179. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2180. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2181. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2182. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2183. </package>
  2184. <package name="R2010">
  2185. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2186. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2187. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2188. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2189. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2190. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2191. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2192. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2193. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2194. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2195. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2196. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2197. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2198. </package>
  2199. <package name="R2010W">
  2200. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2201. wave soldering</description>
  2202. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2203. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2204. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2205. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2206. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2207. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2208. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2209. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2210. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2211. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2212. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2213. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2214. </package>
  2215. <package name="R2012">
  2216. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2217. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2218. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2219. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2220. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2221. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2222. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2223. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  2224. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  2225. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2226. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2227. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2228. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2229. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  2230. </package>
  2231. <package name="R2012W">
  2232. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2233. wave soldering</description>
  2234. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2235. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2236. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2237. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2238. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2239. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2240. <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
  2241. <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
  2242. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2243. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2244. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2245. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2246. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  2247. </package>
  2248. <package name="R2512">
  2249. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2250. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2251. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2252. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2253. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2254. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2255. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2256. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2257. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2258. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2259. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2260. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2261. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2262. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2263. </package>
  2264. <package name="R2512W">
  2265. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2266. wave soldering</description>
  2267. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2268. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2269. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2270. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2271. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2272. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2273. <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
  2274. <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
  2275. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2276. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2277. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2278. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2279. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2280. </package>
  2281. <package name="R3216">
  2282. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2283. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2284. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2285. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2286. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2287. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2288. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2289. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2290. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2291. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2292. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2293. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2294. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2295. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2296. </package>
  2297. <package name="R3216W">
  2298. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2299. wave soldering</description>
  2300. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2301. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2302. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2303. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2304. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2305. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2306. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2307. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2308. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2309. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2310. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2311. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2312. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2313. </package>
  2314. <package name="R3225">
  2315. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2316. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2317. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2318. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2319. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2320. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2321. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2322. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2323. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2324. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2325. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2326. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2327. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2328. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2329. </package>
  2330. <package name="R3225W">
  2331. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2332. wave soldering</description>
  2333. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2334. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2335. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2336. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2337. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2338. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2339. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2340. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2341. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2342. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2343. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2344. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2345. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2346. </package>
  2347. <package name="R5025">
  2348. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2349. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2350. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2351. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2352. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2353. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2354. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2355. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2356. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2357. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2358. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2359. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2360. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2361. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2362. </package>
  2363. <package name="R5025W">
  2364. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2365. wave soldering</description>
  2366. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2367. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2368. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2369. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2370. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2371. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2372. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2373. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2374. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2375. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2376. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2377. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2378. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2379. </package>
  2380. <package name="R6332">
  2381. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2382. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2383. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2384. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2385. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2386. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2387. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2388. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2389. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2390. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2391. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2392. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2393. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2394. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2395. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2396. </package>
  2397. <package name="R6332W">
  2398. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;
  2399. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2400. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2401. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2402. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2403. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2404. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2405. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2406. <smd name="1" x="-3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2407. <smd name="2" x="3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2408. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2409. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2410. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2411. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2412. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2413. </package>
  2414. <package name="M0805">
  2415. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2416. MELF 0.10 W</description>
  2417. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2418. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2419. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2420. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2421. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2422. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2423. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2424. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2425. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2426. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2427. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2428. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2429. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2430. </package>
  2431. <package name="M1206">
  2432. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2433. MELF 0.25 W</description>
  2434. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2435. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2436. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2437. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2438. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2439. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2440. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2441. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2442. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2443. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2444. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2445. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2446. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2447. </package>
  2448. <package name="M1406">
  2449. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2450. MELF 0.12 W</description>
  2451. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2452. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2453. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2454. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2455. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2456. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2457. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2458. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2459. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2460. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2461. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2462. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2463. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2464. </package>
  2465. <package name="M2012">
  2466. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2467. MELF 0.10 W</description>
  2468. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2469. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2470. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2471. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2472. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2473. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2474. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2475. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2476. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2477. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2478. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2479. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2480. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2481. </package>
  2482. <package name="M2309">
  2483. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2484. MELF 0.25 W</description>
  2485. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2486. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2487. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2488. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2489. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2490. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2491. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2492. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2493. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2494. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2495. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2496. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2497. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2498. </package>
  2499. <package name="M3216">
  2500. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2501. MELF 0.25 W</description>
  2502. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2503. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2504. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2505. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2506. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2507. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2508. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2509. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2510. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2511. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2512. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2513. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2514. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2515. </package>
  2516. <package name="M3516">
  2517. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2518. MELF 0.12 W</description>
  2519. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2520. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2521. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2522. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2523. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2524. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2525. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2526. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2527. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2528. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2529. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2530. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2531. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  2532. </package>
  2533. <package name="M5923">
  2534. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2535. MELF 0.25 W</description>
  2536. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2537. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2538. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2539. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2540. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2541. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2542. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2543. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2544. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2545. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2546. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2547. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2548. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2549. </package>
  2550. <package name="0204/5">
  2551. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2552. type 0204, grid 5 mm</description>
  2553. <wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="51"/>
  2554. <wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="51"/>
  2555. <wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2556. <wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2557. <wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  2558. <wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  2559. <wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="51"/>
  2560. <wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2561. <wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2562. <wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2563. <wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2564. <wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2565. <wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
  2566. <wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2567. <wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
  2568. <wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2569. <wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2570. <wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="51"/>
  2571. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2572. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2573. <text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2574. <text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2575. <rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="51"/>
  2576. <rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="51"/>
  2577. </package>
  2578. <package name="0204/7">
  2579. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2580. type 0204, grid 7.5 mm</description>
  2581. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  2582. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  2583. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2584. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2585. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  2586. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  2587. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  2588. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2589. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2590. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2591. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2592. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2593. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  2594. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2595. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  2596. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2597. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2598. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  2599. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2600. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2601. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2602. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2603. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  2604. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  2605. </package>
  2606. <package name="0204V">
  2607. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2608. type 0204, grid 2.5 mm</description>
  2609. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="51"/>
  2610. <wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
  2611. <circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="51"/>
  2612. <circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="51"/>
  2613. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2614. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2615. <text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2616. <text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2617. </package>
  2618. <package name="0207/10">
  2619. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2620. type 0207, grid 10 mm</description>
  2621. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  2622. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  2623. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2624. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2625. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2626. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2627. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2628. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2629. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2630. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2631. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2632. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2633. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2634. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2635. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2636. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2637. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2638. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2639. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2640. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2641. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2642. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2643. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2644. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2645. </package>
  2646. <package name="0207/12">
  2647. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2648. type 0207, grid 12 mm</description>
  2649. <wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="51"/>
  2650. <wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="51"/>
  2651. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2652. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2653. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2654. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2655. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2656. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2657. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2658. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2659. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2660. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2661. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2662. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2663. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2664. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2665. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2666. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2667. <wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2668. <wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2669. <pad name="1" x="-6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2670. <pad name="2" x="6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2671. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2672. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2673. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2674. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2675. <rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
  2676. <rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  2677. </package>
  2678. <package name="0207/15">
  2679. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2680. type 0207, grid 15mm</description>
  2681. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="51"/>
  2682. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="51"/>
  2683. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2684. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2685. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2686. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2687. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2688. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2689. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2690. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2691. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2692. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2693. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2694. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2695. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2696. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2697. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2698. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2699. <wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2700. <wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2701. <pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
  2702. <pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
  2703. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2704. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2705. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2706. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2707. <rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
  2708. <rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
  2709. </package>
  2710. <package name="0207/2V">
  2711. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2712. type 0207, grid 2.5 mm</description>
  2713. <wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="51"/>
  2714. <wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
  2715. <wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="51"/>
  2716. <circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
  2717. <circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="51"/>
  2718. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2719. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2720. <text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2721. <text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2722. </package>
  2723. <package name="0207/5V">
  2724. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2725. type 0207, grid 5 mm</description>
  2726. <wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="51"/>
  2727. <wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
  2728. <wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="51"/>
  2729. <circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
  2730. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2731. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2732. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2733. <text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2734. <text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2735. </package>
  2736. <package name="0207/7">
  2737. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2738. type 0207, grid 7.5 mm</description>
  2739. <wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="51"/>
  2740. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2741. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2742. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2743. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2744. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="51"/>
  2745. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2746. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2747. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2748. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2749. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2750. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2751. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2752. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2753. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2754. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2755. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="51"/>
  2756. <wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="51"/>
  2757. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2758. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2759. <text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2760. <text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2761. <rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="51"/>
  2762. <rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="51"/>
  2763. </package>
  2764. <package name="0309/10">
  2765. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2766. type 0309, grid 10mm</description>
  2767. <wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2768. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2769. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2770. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2771. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2772. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="51"/>
  2773. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2774. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2775. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2776. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2777. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2778. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2779. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2780. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2781. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2782. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2783. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="51"/>
  2784. <wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="51"/>
  2785. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2786. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2787. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2788. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2789. <rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="51"/>
  2790. <rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="51"/>
  2791. </package>
  2792. <package name="0309/12">
  2793. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2794. type 0309, grid 12.5 mm</description>
  2795. <wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  2796. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2797. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2798. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2799. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2800. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2801. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
  2802. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2803. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2804. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2805. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2806. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2807. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2808. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2809. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2810. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2811. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2812. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
  2813. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  2814. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  2815. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2816. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2817. <rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
  2818. <rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
  2819. </package>
  2820. <package name="0309V">
  2821. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2822. type 0309, grid 2.5 mm</description>
  2823. <wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="51"/>
  2824. <wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="51"/>
  2825. <circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
  2826. <circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="51"/>
  2827. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2828. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2829. <text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2830. <text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2831. <rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="51"/>
  2832. <rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="51"/>
  2833. <rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
  2834. </package>
  2835. <package name="0411/12">
  2836. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2837. type 0411, grid 12.5 mm</description>
  2838. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="51"/>
  2839. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="51"/>
  2840. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2841. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2842. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2843. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2844. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2845. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2846. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2847. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2848. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2849. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2850. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2851. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2852. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2853. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2854. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2855. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2856. <pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
  2857. <pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
  2858. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2859. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2860. <rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2861. <rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
  2862. </package>
  2863. <package name="0411/15">
  2864. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2865. type 0411, grid 15 mm</description>
  2866. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2867. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2868. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2869. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2870. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2871. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2872. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2873. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2874. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2875. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2876. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2877. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2878. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2879. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2880. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2881. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2882. <wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="51"/>
  2883. <wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="51"/>
  2884. <pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
  2885. <pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
  2886. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2887. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2888. <rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
  2889. <rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2890. </package>
  2891. <package name="0411V">
  2892. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2893. type 0411, grid 3.81 mm</description>
  2894. <wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="51"/>
  2895. <wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="51"/>
  2896. <circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
  2897. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2898. <pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
  2899. <pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
  2900. <text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2901. <text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2902. <rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
  2903. </package>
  2904. <package name="0414/15">
  2905. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2906. type 0414, grid 15 mm</description>
  2907. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="51"/>
  2908. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="51"/>
  2909. <wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
  2910. <wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
  2911. <wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  2912. <wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  2913. <wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
  2914. <wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2915. <wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2916. <wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2917. <wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2918. <wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2919. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  2920. <wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2921. <wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
  2922. <wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2923. <wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2924. <wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
  2925. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2926. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2927. <text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2928. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2929. <rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
  2930. <rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
  2931. </package>
  2932. <package name="0414V">
  2933. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2934. type 0414, grid 5 mm</description>
  2935. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2936. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2937. <circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
  2938. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2939. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2940. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2941. <text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2942. <text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2943. <rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
  2944. </package>
  2945. <package name="0617/17">
  2946. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2947. type 0617, grid 17.5 mm</description>
  2948. <wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="51"/>
  2949. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2950. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2951. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2952. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2953. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2954. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2955. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2956. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2957. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2958. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2959. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
  2960. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="51"/>
  2961. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2962. <wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
  2963. <wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="51"/>
  2964. <wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2965. <wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="51"/>
  2966. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2967. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2968. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2969. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2970. <pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
  2971. <pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
  2972. <text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2973. <text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2974. <rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="51"/>
  2975. <rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="51"/>
  2976. </package>
  2977. <package name="0617/22">
  2978. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2979. type 0617, grid 22.5 mm</description>
  2980. <wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2981. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2982. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2983. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2984. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2985. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2986. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2987. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2988. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2989. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2990. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2991. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2992. <wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2993. <wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="51"/>
  2994. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2995. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2996. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2997. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2998. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2999. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  3000. <text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3001. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3002. <rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
  3003. <rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
  3004. </package>
  3005. <package name="0617V">
  3006. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3007. type 0617, grid 5 mm</description>
  3008. <wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="51"/>
  3009. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="51"/>
  3010. <circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
  3011. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  3012. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  3013. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3014. <text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3015. <text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3016. <rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  3017. </package>
  3018. <package name="0922/22">
  3019. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3020. type 0922, grid 22.5 mm</description>
  3021. <wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="51"/>
  3022. <wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="51"/>
  3023. <wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
  3024. <wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  3025. <wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  3026. <wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  3027. <wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  3028. <wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  3029. <wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
  3030. <wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  3031. <wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
  3032. <wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  3033. <wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  3034. <wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
  3035. <wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  3036. <wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  3037. <wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
  3038. <wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
  3039. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  3040. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  3041. <text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3042. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3043. <rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="51"/>
  3044. <rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  3045. <rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
  3046. <rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="51"/>
  3047. </package>
  3048. <package name="P0613V">
  3049. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3050. type 0613, grid 5 mm</description>
  3051. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  3052. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  3053. <circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
  3054. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  3055. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  3056. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3057. <text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3058. <text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3059. <rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  3060. </package>
  3061. <package name="P0613/15">
  3062. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3063. type 0613, grid 15 mm</description>
  3064. <wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="51"/>
  3065. <wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="51"/>
  3066. <wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3067. <wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3068. <wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3069. <wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3070. <wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  3071. <wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  3072. <wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  3073. <wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  3074. <wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  3075. <wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
  3076. <wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  3077. <wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
  3078. <wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  3079. <wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  3080. <wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
  3081. <wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="51"/>
  3082. <wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
  3083. <wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
  3084. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="51"/>
  3085. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
  3086. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  3087. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  3088. <text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3089. <text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3090. <rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="51"/>
  3091. <rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="51"/>
  3092. </package>
  3093. <package name="P0817/22">
  3094. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3095. type 0817, grid 22.5 mm</description>
  3096. <wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  3097. <wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
  3098. <wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  3099. <wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  3100. <wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  3101. <wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  3102. <wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  3103. <wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
  3104. <wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  3105. <wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
  3106. <wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  3107. <wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  3108. <wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
  3109. <wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="51"/>
  3110. <wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  3111. <wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  3112. <wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  3113. <wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  3114. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  3115. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  3116. <text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3117. <text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3118. <text x="6.604" y="-2.2606" size="1.27" layer="51" ratio="10" rot="R90">0817</text>
  3119. <rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  3120. <rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
  3121. </package>
  3122. <package name="P0817V">
  3123. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3124. type 0817, grid 6.35 mm</description>
  3125. <wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="51"/>
  3126. <wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="51"/>
  3127. <circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
  3128. <circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="51"/>
  3129. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3130. <pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
  3131. <text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3132. <text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3133. <text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
  3134. <rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
  3135. </package>
  3136. <package name="V234/12">
  3137. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3138. type V234, grid 12.5 mm</description>
  3139. <wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  3140. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3141. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3142. <wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  3143. <wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  3144. <wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
  3145. <wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
  3146. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  3147. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="51"/>
  3148. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="51"/>
  3149. <pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
  3150. <pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
  3151. <text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3152. <text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3153. <rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
  3154. <rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
  3155. </package>
  3156. <package name="V235/17">
  3157. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3158. type V235, grid 17.78 mm</description>
  3159. <wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
  3160. <wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
  3161. <wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
  3162. <wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
  3163. <wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="51"/>
  3164. <wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="51"/>
  3165. <wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
  3166. <wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3167. <wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3168. <wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
  3169. <pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
  3170. <pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
  3171. <text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3172. <text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3173. <rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
  3174. <rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
  3175. </package>
  3176. <package name="V526-0">
  3177. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3178. type V526-0, grid 2.5 mm</description>
  3179. <wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3180. <wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3181. <wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3182. <wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3183. <wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
  3184. <wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
  3185. <wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
  3186. <wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
  3187. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3188. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3189. <text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3190. <text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3191. </package>
  3192. <package name="MINI_MELF-0102R">
  3193. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;
  3194. source Beyschlag</description>
  3195. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  3196. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  3197. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  3198. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  3199. <smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  3200. <smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  3201. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3202. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3203. </package>
  3204. <package name="MINI_MELF-0102W">
  3205. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;
  3206. source Beyschlag</description>
  3207. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  3208. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  3209. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  3210. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  3211. <smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  3212. <smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  3213. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3214. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3215. </package>
  3216. <package name="MINI_MELF-0204R">
  3217. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;
  3218. source Beyschlag</description>
  3219. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  3220. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  3221. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  3222. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  3223. <wire x1="0.938" y1="0.6" x2="-0.938" y2="0.6" width="0.2032" layer="21"/>
  3224. <wire x1="-0.938" y1="-0.6" x2="0.938" y2="-0.6" width="0.2032" layer="21"/>
  3225. <smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  3226. <smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  3227. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3228. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3229. </package>
  3230. <package name="MINI_MELF-0204W">
  3231. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;
  3232. source Beyschlag</description>
  3233. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  3234. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  3235. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  3236. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  3237. <wire x1="0.684" y1="0.6" x2="-0.684" y2="0.6" width="0.2032" layer="21"/>
  3238. <wire x1="-0.684" y1="-0.6" x2="0.684" y2="-0.6" width="0.2032" layer="21"/>
  3239. <smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  3240. <smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  3241. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3242. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3243. </package>
  3244. <package name="MINI_MELF-0207R">
  3245. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;
  3246. source Beyschlag</description>
  3247. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  3248. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  3249. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  3250. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  3251. <wire x1="1.2125" y1="1" x2="-1.2125" y2="1" width="0.2032" layer="21"/>
  3252. <wire x1="-1.2125" y1="-1" x2="1.2125" y2="-1" width="0.2032" layer="21"/>
  3253. <smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  3254. <smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  3255. <text x="-2.2225" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  3256. <text x="-2.2225" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3257. </package>
  3258. <package name="MINI_MELF-0207W">
  3259. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;
  3260. source Beyschlag</description>
  3261. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  3262. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  3263. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  3264. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  3265. <wire x1="1.149" y1="1" x2="-1.149" y2="1" width="0.2032" layer="21"/>
  3266. <wire x1="-1.149" y1="-1" x2="1.149" y2="-1" width="0.2032" layer="21"/>
  3267. <smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  3268. <smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  3269. <text x="-2.54" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  3270. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3271. </package>
  3272. <package name="0922V">
  3273. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3274. type 0922, grid 7.5 mm</description>
  3275. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  3276. <wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="51"/>
  3277. <circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
  3278. <circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
  3279. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3280. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3281. <text x="-0.508" y="1.6764" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3282. <text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3283. <text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
  3284. <rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  3285. </package>
  3286. <package name="RDH/15">
  3287. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3288. type RDH, grid 15 mm</description>
  3289. <wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="51"/>
  3290. <wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  3291. <wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  3292. <wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  3293. <wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  3294. <wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  3295. <wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
  3296. <wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  3297. <wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
  3298. <wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  3299. <wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  3300. <wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
  3301. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="51"/>
  3302. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
  3303. <wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
  3304. <wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="51"/>
  3305. <wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
  3306. <wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="51"/>
  3307. <wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  3308. <wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  3309. <wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  3310. <wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  3311. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  3312. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  3313. <text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3314. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3315. <text x="4.572" y="-1.7272" size="1.27" layer="51" ratio="10" rot="R90">RDH</text>
  3316. <rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="51"/>
  3317. <rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="51"/>
  3318. </package>
  3319. <package name="MINI_MELF-0102AX">
  3320. <description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>
  3321. <circle x="0" y="0" radius="0.6" width="0" layer="51"/>
  3322. <circle x="0" y="0" radius="0.6" width="0" layer="52"/>
  3323. <smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
  3324. <smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
  3325. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3326. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3327. <hole x="0" y="0" drill="1.3"/>
  3328. </package>
  3329. <package name="R0201">
  3330. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  3331. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  3332. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  3333. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  3334. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3335. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3336. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  3337. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  3338. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  3339. </package>
  3340. <package name="VTA52">
  3341. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3342. MIL SIZE RBR52&lt;br&gt;
  3343. Source: VISHAY .. vta56.pdf</description>
  3344. <wire x1="-15.24" y1="0" x2="-13.97" y2="0" width="0.6096" layer="51"/>
  3345. <wire x1="12.6225" y1="0.025" x2="12.6225" y2="4.725" width="0.1524" layer="21"/>
  3346. <wire x1="12.6225" y1="4.725" x2="-12.6225" y2="4.725" width="0.1524" layer="21"/>
  3347. <wire x1="-12.6225" y1="4.725" x2="-12.6225" y2="0.025" width="0.1524" layer="21"/>
  3348. <wire x1="-12.6225" y1="0.025" x2="-12.6225" y2="-4.65" width="0.1524" layer="21"/>
  3349. <wire x1="-12.6225" y1="-4.65" x2="12.6225" y2="-4.65" width="0.1524" layer="21"/>
  3350. <wire x1="12.6225" y1="-4.65" x2="12.6225" y2="0.025" width="0.1524" layer="21"/>
  3351. <wire x1="13.97" y1="0" x2="15.24" y2="0" width="0.6096" layer="51"/>
  3352. <pad name="1" x="-15.24" y="0" drill="1.1" shape="octagon"/>
  3353. <pad name="2" x="15.24" y="0" drill="1.1" shape="octagon"/>
  3354. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3355. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3356. <rectangle x1="-13.97" y1="-0.3048" x2="-12.5675" y2="0.3048" layer="21"/>
  3357. <rectangle x1="12.5675" y1="-0.3048" x2="13.97" y2="0.3048" layer="21"/>
  3358. </package>
  3359. <package name="VTA53">
  3360. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3361. MIL SIZE RBR53&lt;br&gt;
  3362. Source: VISHAY .. vta56.pdf</description>
  3363. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  3364. <wire x1="9.8975" y1="0" x2="9.8975" y2="4.7" width="0.1524" layer="21"/>
  3365. <wire x1="9.8975" y1="4.7" x2="-9.8975" y2="4.7" width="0.1524" layer="21"/>
  3366. <wire x1="-9.8975" y1="4.7" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  3367. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-4.675" width="0.1524" layer="21"/>
  3368. <wire x1="-9.8975" y1="-4.675" x2="9.8975" y2="-4.675" width="0.1524" layer="21"/>
  3369. <wire x1="9.8975" y1="-4.675" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  3370. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  3371. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  3372. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  3373. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3374. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3375. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  3376. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  3377. </package>
  3378. <package name="VTA54">
  3379. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3380. MIL SIZE RBR54&lt;br&gt;
  3381. Source: VISHAY .. vta56.pdf</description>
  3382. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  3383. <wire x1="9.8975" y1="0" x2="9.8975" y2="3.3" width="0.1524" layer="21"/>
  3384. <wire x1="9.8975" y1="3.3" x2="-9.8975" y2="3.3" width="0.1524" layer="21"/>
  3385. <wire x1="-9.8975" y1="3.3" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  3386. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-3.3" width="0.1524" layer="21"/>
  3387. <wire x1="-9.8975" y1="-3.3" x2="9.8975" y2="-3.3" width="0.1524" layer="21"/>
  3388. <wire x1="9.8975" y1="-3.3" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  3389. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  3390. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  3391. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  3392. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3393. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3394. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  3395. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  3396. </package>
  3397. <package name="VTA55">
  3398. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3399. MIL SIZE RBR55&lt;br&gt;
  3400. Source: VISHAY .. vta56.pdf</description>
  3401. <wire x1="-8.255" y1="0" x2="-6.985" y2="0" width="0.6096" layer="51"/>
  3402. <wire x1="6.405" y1="0" x2="6.405" y2="3.3" width="0.1524" layer="21"/>
  3403. <wire x1="6.405" y1="3.3" x2="-6.405" y2="3.3" width="0.1524" layer="21"/>
  3404. <wire x1="-6.405" y1="3.3" x2="-6.405" y2="0" width="0.1524" layer="21"/>
  3405. <wire x1="-6.405" y1="0" x2="-6.405" y2="-3.3" width="0.1524" layer="21"/>
  3406. <wire x1="-6.405" y1="-3.3" x2="6.405" y2="-3.3" width="0.1524" layer="21"/>
  3407. <wire x1="6.405" y1="-3.3" x2="6.405" y2="0" width="0.1524" layer="21"/>
  3408. <wire x1="6.985" y1="0" x2="8.255" y2="0" width="0.6096" layer="51"/>
  3409. <pad name="1" x="-8.255" y="0" drill="1.1" shape="octagon"/>
  3410. <pad name="2" x="8.255" y="0" drill="1.1" shape="octagon"/>
  3411. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3412. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3413. <rectangle x1="-6.985" y1="-0.3048" x2="-6.35" y2="0.3048" layer="21"/>
  3414. <rectangle x1="6.35" y1="-0.3048" x2="6.985" y2="0.3048" layer="21"/>
  3415. </package>
  3416. <package name="VTA56">
  3417. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3418. MIL SIZE RBR56&lt;br&gt;
  3419. Source: VISHAY .. vta56.pdf</description>
  3420. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  3421. <wire x1="4.5" y1="0" x2="4.5" y2="3.3" width="0.1524" layer="21"/>
  3422. <wire x1="4.5" y1="3.3" x2="-4.5" y2="3.3" width="0.1524" layer="21"/>
  3423. <wire x1="-4.5" y1="3.3" x2="-4.5" y2="0" width="0.1524" layer="21"/>
  3424. <wire x1="-4.5" y1="0" x2="-4.5" y2="-3.3" width="0.1524" layer="21"/>
  3425. <wire x1="-4.5" y1="-3.3" x2="4.5" y2="-3.3" width="0.1524" layer="21"/>
  3426. <wire x1="4.5" y1="-3.3" x2="4.5" y2="0" width="0.1524" layer="21"/>
  3427. <wire x1="5.08" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3428. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3429. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3430. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3431. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3432. <rectangle x1="-5.08" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  3433. <rectangle x1="4.445" y1="-0.3048" x2="5.08" y2="0.3048" layer="21"/>
  3434. </package>
  3435. <package name="VMTA55">
  3436. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3437. MIL SIZE RNC55&lt;br&gt;
  3438. Source: VISHAY .. vta56.pdf</description>
  3439. <wire x1="-5.08" y1="0" x2="-4.26" y2="0" width="0.6096" layer="51"/>
  3440. <wire x1="3.3375" y1="-1.45" x2="3.3375" y2="1.45" width="0.1524" layer="21"/>
  3441. <wire x1="3.3375" y1="1.45" x2="-3.3625" y2="1.45" width="0.1524" layer="21"/>
  3442. <wire x1="-3.3625" y1="1.45" x2="-3.3625" y2="-1.45" width="0.1524" layer="21"/>
  3443. <wire x1="-3.3625" y1="-1.45" x2="3.3375" y2="-1.45" width="0.1524" layer="21"/>
  3444. <wire x1="4.235" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  3445. <pad name="1" x="-5.08" y="0" drill="1.1" shape="octagon"/>
  3446. <pad name="2" x="5.08" y="0" drill="1.1" shape="octagon"/>
  3447. <text x="-3.175" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3448. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3449. <rectangle x1="-4.26" y1="-0.3048" x2="-3.3075" y2="0.3048" layer="21"/>
  3450. <rectangle x1="3.2825" y1="-0.3048" x2="4.235" y2="0.3048" layer="21"/>
  3451. </package>
  3452. <package name="VMTB60">
  3453. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3454. MIL SIZE RNC60&lt;br&gt;
  3455. Source: VISHAY .. vta56.pdf</description>
  3456. <wire x1="-6.35" y1="0" x2="-5.585" y2="0" width="0.6096" layer="51"/>
  3457. <wire x1="4.6875" y1="-1.95" x2="4.6875" y2="1.95" width="0.1524" layer="21"/>
  3458. <wire x1="4.6875" y1="1.95" x2="-4.6875" y2="1.95" width="0.1524" layer="21"/>
  3459. <wire x1="-4.6875" y1="1.95" x2="-4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3460. <wire x1="-4.6875" y1="-1.95" x2="4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3461. <wire x1="5.585" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3462. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3463. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3464. <text x="-4.445" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3465. <text x="-4.445" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3466. <rectangle x1="-5.585" y1="-0.3048" x2="-4.6325" y2="0.3048" layer="21"/>
  3467. <rectangle x1="4.6325" y1="-0.3048" x2="5.585" y2="0.3048" layer="21"/>
  3468. </package>
  3469. <package name="R4527">
  3470. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  3471. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  3472. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  3473. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  3474. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  3475. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3476. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3477. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3478. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3479. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3480. </package>
  3481. <package name="WSC0001">
  3482. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3483. Source: VISHAY wscwsn.pdf</description>
  3484. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3485. <wire x1="-3.075" y1="-1.8" x2="3.075" y2="-1.8" width="0.2032" layer="21"/>
  3486. <wire x1="3.075" y1="-1.8" x2="3.075" y2="1.8" width="0.2032" layer="51"/>
  3487. <wire x1="3.075" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3488. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3489. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3490. <wire x1="3.075" y1="1.606" x2="3.075" y2="1.8" width="0.2032" layer="21"/>
  3491. <wire x1="3.075" y1="-1.8" x2="3.075" y2="-1.606" width="0.2032" layer="21"/>
  3492. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3493. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3494. <text x="-2.544" y="2.229" size="1.27" layer="25">&gt;NAME</text>
  3495. <text x="-2.544" y="-3.501" size="1.27" layer="27">&gt;VALUE</text>
  3496. </package>
  3497. <package name="WSC0002">
  3498. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3499. Source: VISHAY wscwsn.pdf</description>
  3500. <wire x1="-5.55" y1="3.375" x2="-5.55" y2="-3.375" width="0.2032" layer="51"/>
  3501. <wire x1="-5.55" y1="-3.375" x2="5.55" y2="-3.375" width="0.2032" layer="21"/>
  3502. <wire x1="5.55" y1="-3.375" x2="5.55" y2="3.375" width="0.2032" layer="51"/>
  3503. <wire x1="5.55" y1="3.375" x2="-5.55" y2="3.375" width="0.2032" layer="21"/>
  3504. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3505. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3506. <text x="-5.65" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3507. <text x="-5.65" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3508. </package>
  3509. <package name="WSC01/2">
  3510. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3511. Source: VISHAY wscwsn.pdf</description>
  3512. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="-1.475" width="0.2032" layer="51"/>
  3513. <wire x1="-2.45" y1="-1.475" x2="2.45" y2="-1.475" width="0.2032" layer="21"/>
  3514. <wire x1="2.45" y1="-1.475" x2="2.45" y2="1.475" width="0.2032" layer="51"/>
  3515. <wire x1="2.45" y1="1.475" x2="-2.45" y2="1.475" width="0.2032" layer="21"/>
  3516. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="1.106" width="0.2032" layer="21"/>
  3517. <wire x1="-2.45" y1="-1.106" x2="-2.45" y2="-1.475" width="0.2032" layer="21"/>
  3518. <wire x1="2.45" y1="1.106" x2="2.45" y2="1.475" width="0.2032" layer="21"/>
  3519. <wire x1="2.45" y1="-1.475" x2="2.45" y2="-1.106" width="0.2032" layer="21"/>
  3520. <smd name="1" x="-2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3521. <smd name="2" x="2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3522. <text x="-2.544" y="1.904" size="1.27" layer="25">&gt;NAME</text>
  3523. <text x="-2.544" y="-3.176" size="1.27" layer="27">&gt;VALUE</text>
  3524. </package>
  3525. <package name="WSC2515">
  3526. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3527. Source: VISHAY wscwsn.pdf</description>
  3528. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3529. <wire x1="-3.075" y1="-1.8" x2="3.05" y2="-1.8" width="0.2032" layer="21"/>
  3530. <wire x1="3.05" y1="-1.8" x2="3.05" y2="1.8" width="0.2032" layer="51"/>
  3531. <wire x1="3.05" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3532. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3533. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3534. <wire x1="3.05" y1="1.606" x2="3.05" y2="1.8" width="0.2032" layer="21"/>
  3535. <wire x1="3.05" y1="-1.8" x2="3.05" y2="-1.606" width="0.2032" layer="21"/>
  3536. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3537. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3538. <text x="-3.2" y="2.15" size="1.27" layer="25">&gt;NAME</text>
  3539. <text x="-3.2" y="-3.4" size="1.27" layer="27">&gt;VALUE</text>
  3540. </package>
  3541. <package name="WSC4527">
  3542. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3543. Source: VISHAY wscwsn.pdf</description>
  3544. <wire x1="-5.675" y1="3.4" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3545. <wire x1="-5.675" y1="-3.375" x2="5.675" y2="-3.375" width="0.2032" layer="21"/>
  3546. <wire x1="5.675" y1="-3.375" x2="5.675" y2="3.4" width="0.2032" layer="51"/>
  3547. <wire x1="5.675" y1="3.4" x2="-5.675" y2="3.4" width="0.2032" layer="21"/>
  3548. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3549. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3550. <text x="-5.775" y="3.925" size="1.27" layer="25">&gt;NAME</text>
  3551. <text x="-5.775" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3552. </package>
  3553. <package name="WSC6927">
  3554. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3555. Source: VISHAY wscwsn.pdf</description>
  3556. <wire x1="-8.65" y1="3.375" x2="-8.65" y2="-3.375" width="0.2032" layer="51"/>
  3557. <wire x1="-8.65" y1="-3.375" x2="8.65" y2="-3.375" width="0.2032" layer="21"/>
  3558. <wire x1="8.65" y1="-3.375" x2="8.65" y2="3.375" width="0.2032" layer="51"/>
  3559. <wire x1="8.65" y1="3.375" x2="-8.65" y2="3.375" width="0.2032" layer="21"/>
  3560. <smd name="1" x="-7.95" y="0.025" dx="3.94" dy="5.97" layer="1"/>
  3561. <smd name="2" x="7.95" y="0" dx="3.94" dy="5.97" layer="1"/>
  3562. <text x="-8.75" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3563. <text x="-8.75" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3564. </package>
  3565. <package name="R1218">
  3566. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  3567. Source: http://www.vishay.com .. dcrcw.pdf</description>
  3568. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  3569. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  3570. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3571. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3572. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3573. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3574. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  3575. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  3576. </package>
  3577. <package name="1812X7R">
  3578. <description>&lt;b&gt;Chip Monolithic Ceramic Capacitors&lt;/b&gt; Medium Voltage High Capacitance for General Use&lt;p&gt;
  3579. Source: http://www.murata.com .. GRM43DR72E224KW01.pdf</description>
  3580. <wire x1="-1.1" y1="1.5" x2="1.1" y2="1.5" width="0.2032" layer="51"/>
  3581. <wire x1="1.1" y1="-1.5" x2="-1.1" y2="-1.5" width="0.2032" layer="51"/>
  3582. <wire x1="-0.6" y1="1.5" x2="0.6" y2="1.5" width="0.2032" layer="21"/>
  3583. <wire x1="0.6" y1="-1.5" x2="-0.6" y2="-1.5" width="0.2032" layer="21"/>
  3584. <smd name="1" x="-1.425" y="0" dx="0.8" dy="3.5" layer="1"/>
  3585. <smd name="2" x="1.425" y="0" dx="0.8" dy="3.5" layer="1" rot="R180"/>
  3586. <text x="-1.9456" y="1.9958" size="1.27" layer="25">&gt;NAME</text>
  3587. <text x="-1.9456" y="-3.7738" size="1.27" layer="27">&gt;VALUE</text>
  3588. <rectangle x1="-1.4" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
  3589. <rectangle x1="1.1" y1="-1.6" x2="1.4" y2="1.6" layer="51" rot="R180"/>
  3590. </package>
  3591. <package name="PRL1632">
  3592. <description>&lt;b&gt;PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)&lt;/b&gt;&lt;p&gt;
  3593. Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf</description>
  3594. <wire x1="0.7275" y1="-1.5228" x2="-0.7277" y2="-1.5228" width="0.1524" layer="51"/>
  3595. <wire x1="0.7275" y1="1.5228" x2="-0.7152" y2="1.5228" width="0.1524" layer="51"/>
  3596. <smd name="2" x="0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3597. <smd name="1" x="-0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3598. <text x="-1.4" y="1.8" size="1.27" layer="25">&gt;NAME</text>
  3599. <text x="-1.4" y="-3" size="1.27" layer="27">&gt;VALUE</text>
  3600. <rectangle x1="-0.8" y1="-1.6" x2="-0.4" y2="1.6" layer="51"/>
  3601. <rectangle x1="0.4" y1="-1.6" x2="0.8" y2="1.6" layer="51"/>
  3602. </package>
  3603. <package name="R01005">
  3604. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3605. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3606. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  3607. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  3608. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  3609. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  3610. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  3611. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  3612. </package>
  3613. </packages>
  3614. <symbols>
  3615. <symbol name="R-EU-1">
  3616. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  3617. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3618. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  3619. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3620. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  3621. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  3622. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  3623. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  3624. </symbol>
  3625. </symbols>
  3626. <devicesets>
  3627. <deviceset name="R-EU_" prefix="R" uservalue="yes">
  3628. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  3629. <gates>
  3630. <gate name="G$1" symbol="R-EU-1" x="0" y="0"/>
  3631. </gates>
  3632. <devices>
  3633. <device name="R0402" package="R0402">
  3634. <connects>
  3635. <connect gate="G$1" pin="1" pad="1"/>
  3636. <connect gate="G$1" pin="2" pad="2"/>
  3637. </connects>
  3638. <technologies>
  3639. <technology name=""/>
  3640. </technologies>
  3641. </device>
  3642. <device name="R0603" package="R0603">
  3643. <connects>
  3644. <connect gate="G$1" pin="1" pad="1"/>
  3645. <connect gate="G$1" pin="2" pad="2"/>
  3646. </connects>
  3647. <technologies>
  3648. <technology name=""/>
  3649. </technologies>
  3650. </device>
  3651. <device name="R0805" package="R0805">
  3652. <connects>
  3653. <connect gate="G$1" pin="1" pad="1"/>
  3654. <connect gate="G$1" pin="2" pad="2"/>
  3655. </connects>
  3656. <technologies>
  3657. <technology name=""/>
  3658. </technologies>
  3659. </device>
  3660. <device name="R0805W" package="R0805W">
  3661. <connects>
  3662. <connect gate="G$1" pin="1" pad="1"/>
  3663. <connect gate="G$1" pin="2" pad="2"/>
  3664. </connects>
  3665. <technologies>
  3666. <technology name=""/>
  3667. </technologies>
  3668. </device>
  3669. <device name="R1206" package="R1206">
  3670. <connects>
  3671. <connect gate="G$1" pin="1" pad="1"/>
  3672. <connect gate="G$1" pin="2" pad="2"/>
  3673. </connects>
  3674. <technologies>
  3675. <technology name=""/>
  3676. </technologies>
  3677. </device>
  3678. <device name="R1206W" package="R1206W">
  3679. <connects>
  3680. <connect gate="G$1" pin="1" pad="1"/>
  3681. <connect gate="G$1" pin="2" pad="2"/>
  3682. </connects>
  3683. <technologies>
  3684. <technology name=""/>
  3685. </technologies>
  3686. </device>
  3687. <device name="R1210" package="R1210">
  3688. <connects>
  3689. <connect gate="G$1" pin="1" pad="1"/>
  3690. <connect gate="G$1" pin="2" pad="2"/>
  3691. </connects>
  3692. <technologies>
  3693. <technology name=""/>
  3694. </technologies>
  3695. </device>
  3696. <device name="R1210W" package="R1210W">
  3697. <connects>
  3698. <connect gate="G$1" pin="1" pad="1"/>
  3699. <connect gate="G$1" pin="2" pad="2"/>
  3700. </connects>
  3701. <technologies>
  3702. <technology name=""/>
  3703. </technologies>
  3704. </device>
  3705. <device name="R2010" package="R2010">
  3706. <connects>
  3707. <connect gate="G$1" pin="1" pad="1"/>
  3708. <connect gate="G$1" pin="2" pad="2"/>
  3709. </connects>
  3710. <technologies>
  3711. <technology name=""/>
  3712. </technologies>
  3713. </device>
  3714. <device name="R2010W" package="R2010W">
  3715. <connects>
  3716. <connect gate="G$1" pin="1" pad="1"/>
  3717. <connect gate="G$1" pin="2" pad="2"/>
  3718. </connects>
  3719. <technologies>
  3720. <technology name=""/>
  3721. </technologies>
  3722. </device>
  3723. <device name="R2012" package="R2012">
  3724. <connects>
  3725. <connect gate="G$1" pin="1" pad="1"/>
  3726. <connect gate="G$1" pin="2" pad="2"/>
  3727. </connects>
  3728. <technologies>
  3729. <technology name=""/>
  3730. </technologies>
  3731. </device>
  3732. <device name="R2012W" package="R2012W">
  3733. <connects>
  3734. <connect gate="G$1" pin="1" pad="1"/>
  3735. <connect gate="G$1" pin="2" pad="2"/>
  3736. </connects>
  3737. <technologies>
  3738. <technology name=""/>
  3739. </technologies>
  3740. </device>
  3741. <device name="R2512" package="R2512">
  3742. <connects>
  3743. <connect gate="G$1" pin="1" pad="1"/>
  3744. <connect gate="G$1" pin="2" pad="2"/>
  3745. </connects>
  3746. <technologies>
  3747. <technology name=""/>
  3748. </technologies>
  3749. </device>
  3750. <device name="R2512W" package="R2512W">
  3751. <connects>
  3752. <connect gate="G$1" pin="1" pad="1"/>
  3753. <connect gate="G$1" pin="2" pad="2"/>
  3754. </connects>
  3755. <technologies>
  3756. <technology name=""/>
  3757. </technologies>
  3758. </device>
  3759. <device name="R3216" package="R3216">
  3760. <connects>
  3761. <connect gate="G$1" pin="1" pad="1"/>
  3762. <connect gate="G$1" pin="2" pad="2"/>
  3763. </connects>
  3764. <technologies>
  3765. <technology name=""/>
  3766. </technologies>
  3767. </device>
  3768. <device name="R3216W" package="R3216W">
  3769. <connects>
  3770. <connect gate="G$1" pin="1" pad="1"/>
  3771. <connect gate="G$1" pin="2" pad="2"/>
  3772. </connects>
  3773. <technologies>
  3774. <technology name=""/>
  3775. </technologies>
  3776. </device>
  3777. <device name="R3225" package="R3225">
  3778. <connects>
  3779. <connect gate="G$1" pin="1" pad="1"/>
  3780. <connect gate="G$1" pin="2" pad="2"/>
  3781. </connects>
  3782. <technologies>
  3783. <technology name=""/>
  3784. </technologies>
  3785. </device>
  3786. <device name="R3225W" package="R3225W">
  3787. <connects>
  3788. <connect gate="G$1" pin="1" pad="1"/>
  3789. <connect gate="G$1" pin="2" pad="2"/>
  3790. </connects>
  3791. <technologies>
  3792. <technology name=""/>
  3793. </technologies>
  3794. </device>
  3795. <device name="R5025" package="R5025">
  3796. <connects>
  3797. <connect gate="G$1" pin="1" pad="1"/>
  3798. <connect gate="G$1" pin="2" pad="2"/>
  3799. </connects>
  3800. <technologies>
  3801. <technology name=""/>
  3802. </technologies>
  3803. </device>
  3804. <device name="R5025W" package="R5025W">
  3805. <connects>
  3806. <connect gate="G$1" pin="1" pad="1"/>
  3807. <connect gate="G$1" pin="2" pad="2"/>
  3808. </connects>
  3809. <technologies>
  3810. <technology name=""/>
  3811. </technologies>
  3812. </device>
  3813. <device name="R6332" package="R6332">
  3814. <connects>
  3815. <connect gate="G$1" pin="1" pad="1"/>
  3816. <connect gate="G$1" pin="2" pad="2"/>
  3817. </connects>
  3818. <technologies>
  3819. <technology name=""/>
  3820. </technologies>
  3821. </device>
  3822. <device name="R6332W" package="R6332W">
  3823. <connects>
  3824. <connect gate="G$1" pin="1" pad="1"/>
  3825. <connect gate="G$1" pin="2" pad="2"/>
  3826. </connects>
  3827. <technologies>
  3828. <technology name=""/>
  3829. </technologies>
  3830. </device>
  3831. <device name="M0805" package="M0805">
  3832. <connects>
  3833. <connect gate="G$1" pin="1" pad="1"/>
  3834. <connect gate="G$1" pin="2" pad="2"/>
  3835. </connects>
  3836. <technologies>
  3837. <technology name=""/>
  3838. </technologies>
  3839. </device>
  3840. <device name="M1206" package="M1206">
  3841. <connects>
  3842. <connect gate="G$1" pin="1" pad="1"/>
  3843. <connect gate="G$1" pin="2" pad="2"/>
  3844. </connects>
  3845. <technologies>
  3846. <technology name=""/>
  3847. </technologies>
  3848. </device>
  3849. <device name="M1406" package="M1406">
  3850. <connects>
  3851. <connect gate="G$1" pin="1" pad="1"/>
  3852. <connect gate="G$1" pin="2" pad="2"/>
  3853. </connects>
  3854. <technologies>
  3855. <technology name=""/>
  3856. </technologies>
  3857. </device>
  3858. <device name="M2012" package="M2012">
  3859. <connects>
  3860. <connect gate="G$1" pin="1" pad="1"/>
  3861. <connect gate="G$1" pin="2" pad="2"/>
  3862. </connects>
  3863. <technologies>
  3864. <technology name=""/>
  3865. </technologies>
  3866. </device>
  3867. <device name="M2309" package="M2309">
  3868. <connects>
  3869. <connect gate="G$1" pin="1" pad="1"/>
  3870. <connect gate="G$1" pin="2" pad="2"/>
  3871. </connects>
  3872. <technologies>
  3873. <technology name=""/>
  3874. </technologies>
  3875. </device>
  3876. <device name="M3216" package="M3216">
  3877. <connects>
  3878. <connect gate="G$1" pin="1" pad="1"/>
  3879. <connect gate="G$1" pin="2" pad="2"/>
  3880. </connects>
  3881. <technologies>
  3882. <technology name=""/>
  3883. </technologies>
  3884. </device>
  3885. <device name="M3516" package="M3516">
  3886. <connects>
  3887. <connect gate="G$1" pin="1" pad="1"/>
  3888. <connect gate="G$1" pin="2" pad="2"/>
  3889. </connects>
  3890. <technologies>
  3891. <technology name=""/>
  3892. </technologies>
  3893. </device>
  3894. <device name="M5923" package="M5923">
  3895. <connects>
  3896. <connect gate="G$1" pin="1" pad="1"/>
  3897. <connect gate="G$1" pin="2" pad="2"/>
  3898. </connects>
  3899. <technologies>
  3900. <technology name=""/>
  3901. </technologies>
  3902. </device>
  3903. <device name="0204/5" package="0204/5">
  3904. <connects>
  3905. <connect gate="G$1" pin="1" pad="1"/>
  3906. <connect gate="G$1" pin="2" pad="2"/>
  3907. </connects>
  3908. <technologies>
  3909. <technology name=""/>
  3910. </technologies>
  3911. </device>
  3912. <device name="0204/7" package="0204/7">
  3913. <connects>
  3914. <connect gate="G$1" pin="1" pad="1"/>
  3915. <connect gate="G$1" pin="2" pad="2"/>
  3916. </connects>
  3917. <technologies>
  3918. <technology name=""/>
  3919. </technologies>
  3920. </device>
  3921. <device name="0204/2V" package="0204V">
  3922. <connects>
  3923. <connect gate="G$1" pin="1" pad="1"/>
  3924. <connect gate="G$1" pin="2" pad="2"/>
  3925. </connects>
  3926. <technologies>
  3927. <technology name=""/>
  3928. </technologies>
  3929. </device>
  3930. <device name="0207/10" package="0207/10">
  3931. <connects>
  3932. <connect gate="G$1" pin="1" pad="1"/>
  3933. <connect gate="G$1" pin="2" pad="2"/>
  3934. </connects>
  3935. <technologies>
  3936. <technology name=""/>
  3937. </technologies>
  3938. </device>
  3939. <device name="0207/12" package="0207/12">
  3940. <connects>
  3941. <connect gate="G$1" pin="1" pad="1"/>
  3942. <connect gate="G$1" pin="2" pad="2"/>
  3943. </connects>
  3944. <technologies>
  3945. <technology name=""/>
  3946. </technologies>
  3947. </device>
  3948. <device name="0207/15" package="0207/15">
  3949. <connects>
  3950. <connect gate="G$1" pin="1" pad="1"/>
  3951. <connect gate="G$1" pin="2" pad="2"/>
  3952. </connects>
  3953. <technologies>
  3954. <technology name=""/>
  3955. </technologies>
  3956. </device>
  3957. <device name="0207/2V" package="0207/2V">
  3958. <connects>
  3959. <connect gate="G$1" pin="1" pad="1"/>
  3960. <connect gate="G$1" pin="2" pad="2"/>
  3961. </connects>
  3962. <technologies>
  3963. <technology name=""/>
  3964. </technologies>
  3965. </device>
  3966. <device name="0207/5V" package="0207/5V">
  3967. <connects>
  3968. <connect gate="G$1" pin="1" pad="1"/>
  3969. <connect gate="G$1" pin="2" pad="2"/>
  3970. </connects>
  3971. <technologies>
  3972. <technology name=""/>
  3973. </technologies>
  3974. </device>
  3975. <device name="0207/7" package="0207/7">
  3976. <connects>
  3977. <connect gate="G$1" pin="1" pad="1"/>
  3978. <connect gate="G$1" pin="2" pad="2"/>
  3979. </connects>
  3980. <technologies>
  3981. <technology name=""/>
  3982. </technologies>
  3983. </device>
  3984. <device name="0309/10" package="0309/10">
  3985. <connects>
  3986. <connect gate="G$1" pin="1" pad="1"/>
  3987. <connect gate="G$1" pin="2" pad="2"/>
  3988. </connects>
  3989. <technologies>
  3990. <technology name=""/>
  3991. </technologies>
  3992. </device>
  3993. <device name="0309/12" package="0309/12">
  3994. <connects>
  3995. <connect gate="G$1" pin="1" pad="1"/>
  3996. <connect gate="G$1" pin="2" pad="2"/>
  3997. </connects>
  3998. <technologies>
  3999. <technology name=""/>
  4000. </technologies>
  4001. </device>
  4002. <device name="0309/V" package="0309V">
  4003. <connects>
  4004. <connect gate="G$1" pin="1" pad="1"/>
  4005. <connect gate="G$1" pin="2" pad="2"/>
  4006. </connects>
  4007. <technologies>
  4008. <technology name=""/>
  4009. </technologies>
  4010. </device>
  4011. <device name="0411/12" package="0411/12">
  4012. <connects>
  4013. <connect gate="G$1" pin="1" pad="1"/>
  4014. <connect gate="G$1" pin="2" pad="2"/>
  4015. </connects>
  4016. <technologies>
  4017. <technology name=""/>
  4018. </technologies>
  4019. </device>
  4020. <device name="0411/15" package="0411/15">
  4021. <connects>
  4022. <connect gate="G$1" pin="1" pad="1"/>
  4023. <connect gate="G$1" pin="2" pad="2"/>
  4024. </connects>
  4025. <technologies>
  4026. <technology name=""/>
  4027. </technologies>
  4028. </device>
  4029. <device name="0411/3V" package="0411V">
  4030. <connects>
  4031. <connect gate="G$1" pin="1" pad="1"/>
  4032. <connect gate="G$1" pin="2" pad="2"/>
  4033. </connects>
  4034. <technologies>
  4035. <technology name=""/>
  4036. </technologies>
  4037. </device>
  4038. <device name="0414/15" package="0414/15">
  4039. <connects>
  4040. <connect gate="G$1" pin="1" pad="1"/>
  4041. <connect gate="G$1" pin="2" pad="2"/>
  4042. </connects>
  4043. <technologies>
  4044. <technology name=""/>
  4045. </technologies>
  4046. </device>
  4047. <device name="0414/5V" package="0414V">
  4048. <connects>
  4049. <connect gate="G$1" pin="1" pad="1"/>
  4050. <connect gate="G$1" pin="2" pad="2"/>
  4051. </connects>
  4052. <technologies>
  4053. <technology name=""/>
  4054. </technologies>
  4055. </device>
  4056. <device name="0617/17" package="0617/17">
  4057. <connects>
  4058. <connect gate="G$1" pin="1" pad="1"/>
  4059. <connect gate="G$1" pin="2" pad="2"/>
  4060. </connects>
  4061. <technologies>
  4062. <technology name=""/>
  4063. </technologies>
  4064. </device>
  4065. <device name="0617/22" package="0617/22">
  4066. <connects>
  4067. <connect gate="G$1" pin="1" pad="1"/>
  4068. <connect gate="G$1" pin="2" pad="2"/>
  4069. </connects>
  4070. <technologies>
  4071. <technology name=""/>
  4072. </technologies>
  4073. </device>
  4074. <device name="0617/5V" package="0617V">
  4075. <connects>
  4076. <connect gate="G$1" pin="1" pad="1"/>
  4077. <connect gate="G$1" pin="2" pad="2"/>
  4078. </connects>
  4079. <technologies>
  4080. <technology name=""/>
  4081. </technologies>
  4082. </device>
  4083. <device name="0922/22" package="0922/22">
  4084. <connects>
  4085. <connect gate="G$1" pin="1" pad="1"/>
  4086. <connect gate="G$1" pin="2" pad="2"/>
  4087. </connects>
  4088. <technologies>
  4089. <technology name=""/>
  4090. </technologies>
  4091. </device>
  4092. <device name="0613/5V" package="P0613V">
  4093. <connects>
  4094. <connect gate="G$1" pin="1" pad="1"/>
  4095. <connect gate="G$1" pin="2" pad="2"/>
  4096. </connects>
  4097. <technologies>
  4098. <technology name=""/>
  4099. </technologies>
  4100. </device>
  4101. <device name="0613/15" package="P0613/15">
  4102. <connects>
  4103. <connect gate="G$1" pin="1" pad="1"/>
  4104. <connect gate="G$1" pin="2" pad="2"/>
  4105. </connects>
  4106. <technologies>
  4107. <technology name=""/>
  4108. </technologies>
  4109. </device>
  4110. <device name="0817/22" package="P0817/22">
  4111. <connects>
  4112. <connect gate="G$1" pin="1" pad="1"/>
  4113. <connect gate="G$1" pin="2" pad="2"/>
  4114. </connects>
  4115. <technologies>
  4116. <technology name=""/>
  4117. </technologies>
  4118. </device>
  4119. <device name="0817/7V" package="P0817V">
  4120. <connects>
  4121. <connect gate="G$1" pin="1" pad="1"/>
  4122. <connect gate="G$1" pin="2" pad="2"/>
  4123. </connects>
  4124. <technologies>
  4125. <technology name=""/>
  4126. </technologies>
  4127. </device>
  4128. <device name="V234/12" package="V234/12">
  4129. <connects>
  4130. <connect gate="G$1" pin="1" pad="1"/>
  4131. <connect gate="G$1" pin="2" pad="2"/>
  4132. </connects>
  4133. <technologies>
  4134. <technology name=""/>
  4135. </technologies>
  4136. </device>
  4137. <device name="V235/17" package="V235/17">
  4138. <connects>
  4139. <connect gate="G$1" pin="1" pad="1"/>
  4140. <connect gate="G$1" pin="2" pad="2"/>
  4141. </connects>
  4142. <technologies>
  4143. <technology name=""/>
  4144. </technologies>
  4145. </device>
  4146. <device name="V526-0" package="V526-0">
  4147. <connects>
  4148. <connect gate="G$1" pin="1" pad="1"/>
  4149. <connect gate="G$1" pin="2" pad="2"/>
  4150. </connects>
  4151. <technologies>
  4152. <technology name=""/>
  4153. </technologies>
  4154. </device>
  4155. <device name="MELF0102R" package="MINI_MELF-0102R">
  4156. <connects>
  4157. <connect gate="G$1" pin="1" pad="1"/>
  4158. <connect gate="G$1" pin="2" pad="2"/>
  4159. </connects>
  4160. <technologies>
  4161. <technology name=""/>
  4162. </technologies>
  4163. </device>
  4164. <device name="MELF0102W" package="MINI_MELF-0102W">
  4165. <connects>
  4166. <connect gate="G$1" pin="1" pad="1"/>
  4167. <connect gate="G$1" pin="2" pad="2"/>
  4168. </connects>
  4169. <technologies>
  4170. <technology name=""/>
  4171. </technologies>
  4172. </device>
  4173. <device name="MELF0204R" package="MINI_MELF-0204R">
  4174. <connects>
  4175. <connect gate="G$1" pin="1" pad="1"/>
  4176. <connect gate="G$1" pin="2" pad="2"/>
  4177. </connects>
  4178. <technologies>
  4179. <technology name=""/>
  4180. </technologies>
  4181. </device>
  4182. <device name="MELF0204W" package="MINI_MELF-0204W">
  4183. <connects>
  4184. <connect gate="G$1" pin="1" pad="1"/>
  4185. <connect gate="G$1" pin="2" pad="2"/>
  4186. </connects>
  4187. <technologies>
  4188. <technology name=""/>
  4189. </technologies>
  4190. </device>
  4191. <device name="MELF0207R" package="MINI_MELF-0207R">
  4192. <connects>
  4193. <connect gate="G$1" pin="1" pad="1"/>
  4194. <connect gate="G$1" pin="2" pad="2"/>
  4195. </connects>
  4196. <technologies>
  4197. <technology name=""/>
  4198. </technologies>
  4199. </device>
  4200. <device name="MELF0207W" package="MINI_MELF-0207W">
  4201. <connects>
  4202. <connect gate="G$1" pin="1" pad="1"/>
  4203. <connect gate="G$1" pin="2" pad="2"/>
  4204. </connects>
  4205. <technologies>
  4206. <technology name=""/>
  4207. </technologies>
  4208. </device>
  4209. <device name="0922V" package="0922V">
  4210. <connects>
  4211. <connect gate="G$1" pin="1" pad="1"/>
  4212. <connect gate="G$1" pin="2" pad="2"/>
  4213. </connects>
  4214. <technologies>
  4215. <technology name=""/>
  4216. </technologies>
  4217. </device>
  4218. <device name="RDH/15" package="RDH/15">
  4219. <connects>
  4220. <connect gate="G$1" pin="1" pad="1"/>
  4221. <connect gate="G$1" pin="2" pad="2"/>
  4222. </connects>
  4223. <technologies>
  4224. <technology name=""/>
  4225. </technologies>
  4226. </device>
  4227. <device name="MELF0102AX" package="MINI_MELF-0102AX">
  4228. <connects>
  4229. <connect gate="G$1" pin="1" pad="1"/>
  4230. <connect gate="G$1" pin="2" pad="2"/>
  4231. </connects>
  4232. <technologies>
  4233. <technology name=""/>
  4234. </technologies>
  4235. </device>
  4236. <device name="R0201" package="R0201">
  4237. <connects>
  4238. <connect gate="G$1" pin="1" pad="1"/>
  4239. <connect gate="G$1" pin="2" pad="2"/>
  4240. </connects>
  4241. <technologies>
  4242. <technology name=""/>
  4243. </technologies>
  4244. </device>
  4245. <device name="VTA52" package="VTA52">
  4246. <connects>
  4247. <connect gate="G$1" pin="1" pad="1"/>
  4248. <connect gate="G$1" pin="2" pad="2"/>
  4249. </connects>
  4250. <technologies>
  4251. <technology name=""/>
  4252. </technologies>
  4253. </device>
  4254. <device name="VTA53" package="VTA53">
  4255. <connects>
  4256. <connect gate="G$1" pin="1" pad="1"/>
  4257. <connect gate="G$1" pin="2" pad="2"/>
  4258. </connects>
  4259. <technologies>
  4260. <technology name=""/>
  4261. </technologies>
  4262. </device>
  4263. <device name="VTA54" package="VTA54">
  4264. <connects>
  4265. <connect gate="G$1" pin="1" pad="1"/>
  4266. <connect gate="G$1" pin="2" pad="2"/>
  4267. </connects>
  4268. <technologies>
  4269. <technology name=""/>
  4270. </technologies>
  4271. </device>
  4272. <device name="VTA55" package="VTA55">
  4273. <connects>
  4274. <connect gate="G$1" pin="1" pad="1"/>
  4275. <connect gate="G$1" pin="2" pad="2"/>
  4276. </connects>
  4277. <technologies>
  4278. <technology name=""/>
  4279. </technologies>
  4280. </device>
  4281. <device name="VTA56" package="VTA56">
  4282. <connects>
  4283. <connect gate="G$1" pin="1" pad="1"/>
  4284. <connect gate="G$1" pin="2" pad="2"/>
  4285. </connects>
  4286. <technologies>
  4287. <technology name=""/>
  4288. </technologies>
  4289. </device>
  4290. <device name="VMTA55" package="VMTA55">
  4291. <connects>
  4292. <connect gate="G$1" pin="1" pad="1"/>
  4293. <connect gate="G$1" pin="2" pad="2"/>
  4294. </connects>
  4295. <technologies>
  4296. <technology name=""/>
  4297. </technologies>
  4298. </device>
  4299. <device name="VMTB60" package="VMTB60">
  4300. <connects>
  4301. <connect gate="G$1" pin="1" pad="1"/>
  4302. <connect gate="G$1" pin="2" pad="2"/>
  4303. </connects>
  4304. <technologies>
  4305. <technology name=""/>
  4306. </technologies>
  4307. </device>
  4308. <device name="R4527" package="R4527">
  4309. <connects>
  4310. <connect gate="G$1" pin="1" pad="1"/>
  4311. <connect gate="G$1" pin="2" pad="2"/>
  4312. </connects>
  4313. <technologies>
  4314. <technology name=""/>
  4315. </technologies>
  4316. </device>
  4317. <device name="WSC0001" package="WSC0001">
  4318. <connects>
  4319. <connect gate="G$1" pin="1" pad="1"/>
  4320. <connect gate="G$1" pin="2" pad="2"/>
  4321. </connects>
  4322. <technologies>
  4323. <technology name=""/>
  4324. </technologies>
  4325. </device>
  4326. <device name="WSC0002" package="WSC0002">
  4327. <connects>
  4328. <connect gate="G$1" pin="1" pad="1"/>
  4329. <connect gate="G$1" pin="2" pad="2"/>
  4330. </connects>
  4331. <technologies>
  4332. <technology name=""/>
  4333. </technologies>
  4334. </device>
  4335. <device name="WSC01/2" package="WSC01/2">
  4336. <connects>
  4337. <connect gate="G$1" pin="1" pad="1"/>
  4338. <connect gate="G$1" pin="2" pad="2"/>
  4339. </connects>
  4340. <technologies>
  4341. <technology name=""/>
  4342. </technologies>
  4343. </device>
  4344. <device name="WSC2515" package="WSC2515">
  4345. <connects>
  4346. <connect gate="G$1" pin="1" pad="1"/>
  4347. <connect gate="G$1" pin="2" pad="2"/>
  4348. </connects>
  4349. <technologies>
  4350. <technology name=""/>
  4351. </technologies>
  4352. </device>
  4353. <device name="WSC4527" package="WSC4527">
  4354. <connects>
  4355. <connect gate="G$1" pin="1" pad="1"/>
  4356. <connect gate="G$1" pin="2" pad="2"/>
  4357. </connects>
  4358. <technologies>
  4359. <technology name=""/>
  4360. </technologies>
  4361. </device>
  4362. <device name="WSC6927" package="WSC6927">
  4363. <connects>
  4364. <connect gate="G$1" pin="1" pad="1"/>
  4365. <connect gate="G$1" pin="2" pad="2"/>
  4366. </connects>
  4367. <technologies>
  4368. <technology name=""/>
  4369. </technologies>
  4370. </device>
  4371. <device name="R1218" package="R1218">
  4372. <connects>
  4373. <connect gate="G$1" pin="1" pad="1"/>
  4374. <connect gate="G$1" pin="2" pad="2"/>
  4375. </connects>
  4376. <technologies>
  4377. <technology name=""/>
  4378. </technologies>
  4379. </device>
  4380. <device name="1812X7R" package="1812X7R">
  4381. <connects>
  4382. <connect gate="G$1" pin="1" pad="1"/>
  4383. <connect gate="G$1" pin="2" pad="2"/>
  4384. </connects>
  4385. <technologies>
  4386. <technology name=""/>
  4387. </technologies>
  4388. </device>
  4389. <device name="PRL1632" package="PRL1632">
  4390. <connects>
  4391. <connect gate="G$1" pin="1" pad="1"/>
  4392. <connect gate="G$1" pin="2" pad="2"/>
  4393. </connects>
  4394. <technologies>
  4395. <technology name=""/>
  4396. </technologies>
  4397. </device>
  4398. <device name="01005" package="R01005">
  4399. <connects>
  4400. <connect gate="G$1" pin="1" pad="1"/>
  4401. <connect gate="G$1" pin="2" pad="2"/>
  4402. </connects>
  4403. <technologies>
  4404. <technology name=""/>
  4405. </technologies>
  4406. </device>
  4407. </devices>
  4408. </deviceset>
  4409. </devicesets>
  4410. </library>
  4411. <library name="optocoupler">
  4412. <description>&lt;b&gt;Opto Couplers&lt;/b&gt;&lt;p&gt;
  4413. Siemens, Hewlett-Packard, Texas Instuments, Sharp, Motorola&lt;p&gt;
  4414. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  4415. <packages>
  4416. <package name="DIL16">
  4417. <description>&lt;b&gt;Dual In Line Package&lt;/b&gt;</description>
  4418. <wire x1="10.16" y1="2.921" x2="-10.16" y2="2.921" width="0.1524" layer="21"/>
  4419. <wire x1="-10.16" y1="-2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  4420. <wire x1="10.16" y1="2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  4421. <wire x1="-10.16" y1="2.921" x2="-10.16" y2="1.016" width="0.1524" layer="21"/>
  4422. <wire x1="-10.16" y1="-2.921" x2="-10.16" y2="-1.016" width="0.1524" layer="21"/>
  4423. <wire x1="-10.16" y1="1.016" x2="-10.16" y2="-1.016" width="0.1524" layer="21" curve="-180"/>
  4424. <pad name="1" x="-8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4425. <pad name="2" x="-6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4426. <pad name="7" x="6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4427. <pad name="8" x="8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4428. <pad name="3" x="-3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4429. <pad name="4" x="-1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4430. <pad name="6" x="3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4431. <pad name="5" x="1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4432. <pad name="9" x="8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4433. <pad name="10" x="6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4434. <pad name="11" x="3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4435. <pad name="12" x="1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4436. <pad name="13" x="-1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4437. <pad name="14" x="-3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4438. <pad name="15" x="-6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4439. <pad name="16" x="-8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4440. <text x="-10.541" y="-2.921" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  4441. <text x="-7.493" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4442. </package>
  4443. </packages>
  4444. <symbols>
  4445. <symbol name="LTV847">
  4446. <description>LTV847 4-opto DIP16</description>
  4447. <wire x1="2.54" y1="0" x2="17.78" y2="0" width="0.254" layer="94"/>
  4448. <wire x1="17.78" y1="0" x2="17.78" y2="40.64" width="0.254" layer="94"/>
  4449. <wire x1="17.78" y1="40.64" x2="2.54" y2="40.64" width="0.254" layer="94"/>
  4450. <wire x1="2.54" y1="40.64" x2="2.54" y2="0" width="0.254" layer="94"/>
  4451. <pin name="P$1" x="-2.54" y="2.54" length="middle" direction="pas"/>
  4452. <pin name="P$2" x="-2.54" y="7.62" length="middle" direction="pas"/>
  4453. <pin name="P$3" x="-2.54" y="12.7" length="middle" direction="pas"/>
  4454. <pin name="P$4" x="-2.54" y="17.78" length="middle" direction="pas"/>
  4455. <pin name="P$5" x="-2.54" y="22.86" length="middle" direction="pas"/>
  4456. <pin name="P$6" x="-2.54" y="27.94" length="middle" direction="pas"/>
  4457. <pin name="P$7" x="-2.54" y="33.02" length="middle" direction="pas"/>
  4458. <pin name="P$8" x="-2.54" y="38.1" length="middle" direction="pas"/>
  4459. <pin name="P$9" x="22.86" y="2.54" length="middle" direction="pas" rot="R180"/>
  4460. <pin name="P$10" x="22.86" y="7.62" length="middle" direction="pas" rot="R180"/>
  4461. <pin name="P$11" x="22.86" y="12.7" length="middle" direction="pas" rot="R180"/>
  4462. <pin name="P$12" x="22.86" y="17.78" length="middle" direction="pas" rot="R180"/>
  4463. <pin name="P$13" x="22.86" y="22.86" length="middle" direction="pas" rot="R180"/>
  4464. <pin name="P$14" x="22.86" y="27.94" length="middle" direction="pas" rot="R180"/>
  4465. <pin name="P$15" x="22.86" y="33.02" length="middle" direction="pas" rot="R180"/>
  4466. <pin name="P$16" x="22.86" y="38.1" length="middle" direction="pas" rot="R180"/>
  4467. <wire x1="6.35" y1="35.56" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  4468. <wire x1="7.62" y1="35.56" x2="8.89" y2="35.56" width="0.254" layer="94"/>
  4469. <wire x1="7.62" y1="35.56" x2="6.35" y2="36.83" width="0.254" layer="94"/>
  4470. <wire x1="6.35" y1="36.83" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  4471. <wire x1="7.62" y1="36.83" x2="8.89" y2="36.83" width="0.254" layer="94"/>
  4472. <wire x1="8.89" y1="36.83" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  4473. <wire x1="3.81" y1="38.1" x2="7.62" y2="38.1" width="0.254" layer="94"/>
  4474. <wire x1="7.62" y1="38.1" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  4475. <wire x1="7.62" y1="35.56" x2="7.62" y2="33.02" width="0.254" layer="94"/>
  4476. <wire x1="7.62" y1="33.02" x2="3.81" y2="33.02" width="0.254" layer="94"/>
  4477. <wire x1="6.35" y1="25.4" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  4478. <wire x1="7.62" y1="25.4" x2="8.89" y2="25.4" width="0.254" layer="94"/>
  4479. <wire x1="7.62" y1="25.4" x2="6.35" y2="26.67" width="0.254" layer="94"/>
  4480. <wire x1="6.35" y1="26.67" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  4481. <wire x1="7.62" y1="26.67" x2="8.89" y2="26.67" width="0.254" layer="94"/>
  4482. <wire x1="8.89" y1="26.67" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  4483. <wire x1="3.81" y1="27.94" x2="7.62" y2="27.94" width="0.254" layer="94"/>
  4484. <wire x1="7.62" y1="27.94" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  4485. <wire x1="7.62" y1="25.4" x2="7.62" y2="22.86" width="0.254" layer="94"/>
  4486. <wire x1="7.62" y1="22.86" x2="3.81" y2="22.86" width="0.254" layer="94"/>
  4487. <wire x1="6.35" y1="15.24" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  4488. <wire x1="7.62" y1="15.24" x2="8.89" y2="15.24" width="0.254" layer="94"/>
  4489. <wire x1="7.62" y1="15.24" x2="6.35" y2="16.51" width="0.254" layer="94"/>
  4490. <wire x1="6.35" y1="16.51" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  4491. <wire x1="7.62" y1="16.51" x2="8.89" y2="16.51" width="0.254" layer="94"/>
  4492. <wire x1="8.89" y1="16.51" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  4493. <wire x1="3.81" y1="17.78" x2="7.62" y2="17.78" width="0.254" layer="94"/>
  4494. <wire x1="7.62" y1="17.78" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  4495. <wire x1="7.62" y1="15.24" x2="7.62" y2="12.7" width="0.254" layer="94"/>
  4496. <wire x1="7.62" y1="12.7" x2="3.81" y2="12.7" width="0.254" layer="94"/>
  4497. <wire x1="6.35" y1="5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  4498. <wire x1="7.62" y1="5.08" x2="8.89" y2="5.08" width="0.254" layer="94"/>
  4499. <wire x1="7.62" y1="5.08" x2="6.35" y2="6.35" width="0.254" layer="94"/>
  4500. <wire x1="6.35" y1="6.35" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  4501. <wire x1="7.62" y1="6.35" x2="8.89" y2="6.35" width="0.254" layer="94"/>
  4502. <wire x1="8.89" y1="6.35" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  4503. <wire x1="3.81" y1="7.62" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  4504. <wire x1="7.62" y1="7.62" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  4505. <wire x1="7.62" y1="5.08" x2="7.62" y2="2.54" width="0.254" layer="94"/>
  4506. <wire x1="7.62" y1="2.54" x2="3.81" y2="2.54" width="0.254" layer="94"/>
  4507. <wire x1="11.43" y1="36.83" x2="11.43" y2="35.56" width="0.254" layer="94"/>
  4508. <wire x1="11.43" y1="35.56" x2="11.43" y2="34.29" width="0.254" layer="94"/>
  4509. <wire x1="11.43" y1="35.56" x2="13.97" y2="38.1" width="0.254" layer="94"/>
  4510. <wire x1="11.43" y1="35.56" x2="13.97" y2="33.02" width="0.254" layer="94"/>
  4511. <wire x1="13.97" y1="33.02" x2="13.97" y2="34.29" width="0.254" layer="94"/>
  4512. <wire x1="13.97" y1="33.02" x2="12.7" y2="33.02" width="0.254" layer="94"/>
  4513. <wire x1="13.97" y1="38.1" x2="16.51" y2="38.1" width="0.254" layer="94"/>
  4514. <wire x1="13.97" y1="33.02" x2="16.51" y2="33.02" width="0.254" layer="94"/>
  4515. <wire x1="11.43" y1="26.67" x2="11.43" y2="25.4" width="0.254" layer="94"/>
  4516. <wire x1="11.43" y1="25.4" x2="11.43" y2="24.13" width="0.254" layer="94"/>
  4517. <wire x1="11.43" y1="25.4" x2="13.97" y2="27.94" width="0.254" layer="94"/>
  4518. <wire x1="11.43" y1="25.4" x2="13.97" y2="22.86" width="0.254" layer="94"/>
  4519. <wire x1="13.97" y1="22.86" x2="13.97" y2="24.13" width="0.254" layer="94"/>
  4520. <wire x1="13.97" y1="22.86" x2="12.7" y2="22.86" width="0.254" layer="94"/>
  4521. <wire x1="13.97" y1="27.94" x2="16.51" y2="27.94" width="0.254" layer="94"/>
  4522. <wire x1="13.97" y1="22.86" x2="16.51" y2="22.86" width="0.254" layer="94"/>
  4523. <wire x1="11.43" y1="16.51" x2="11.43" y2="15.24" width="0.254" layer="94"/>
  4524. <wire x1="11.43" y1="15.24" x2="11.43" y2="13.97" width="0.254" layer="94"/>
  4525. <wire x1="11.43" y1="15.24" x2="13.97" y2="17.78" width="0.254" layer="94"/>
  4526. <wire x1="11.43" y1="15.24" x2="13.97" y2="12.7" width="0.254" layer="94"/>
  4527. <wire x1="13.97" y1="12.7" x2="13.97" y2="13.97" width="0.254" layer="94"/>
  4528. <wire x1="13.97" y1="12.7" x2="12.7" y2="12.7" width="0.254" layer="94"/>
  4529. <wire x1="13.97" y1="17.78" x2="16.51" y2="17.78" width="0.254" layer="94"/>
  4530. <wire x1="13.97" y1="12.7" x2="16.51" y2="12.7" width="0.254" layer="94"/>
  4531. <wire x1="11.43" y1="6.35" x2="11.43" y2="5.08" width="0.254" layer="94"/>
  4532. <wire x1="11.43" y1="5.08" x2="11.43" y2="3.81" width="0.254" layer="94"/>
  4533. <wire x1="11.43" y1="5.08" x2="13.97" y2="7.62" width="0.254" layer="94"/>
  4534. <wire x1="11.43" y1="5.08" x2="13.97" y2="2.54" width="0.254" layer="94"/>
  4535. <wire x1="13.97" y1="2.54" x2="13.97" y2="3.81" width="0.254" layer="94"/>
  4536. <wire x1="13.97" y1="2.54" x2="12.7" y2="2.54" width="0.254" layer="94"/>
  4537. <wire x1="13.97" y1="7.62" x2="16.51" y2="7.62" width="0.254" layer="94"/>
  4538. <wire x1="13.97" y1="2.54" x2="16.51" y2="2.54" width="0.254" layer="94"/>
  4539. </symbol>
  4540. </symbols>
  4541. <devicesets>
  4542. <deviceset name="LTV847">
  4543. <description>LTV847 4-optocoupler DIP16</description>
  4544. <gates>
  4545. <gate name="G$1" symbol="LTV847" x="-10.16" y="-20.32"/>
  4546. </gates>
  4547. <devices>
  4548. <device name="" package="DIL16">
  4549. <connects>
  4550. <connect gate="G$1" pin="P$1" pad="8"/>
  4551. <connect gate="G$1" pin="P$10" pad="10"/>
  4552. <connect gate="G$1" pin="P$11" pad="11"/>
  4553. <connect gate="G$1" pin="P$12" pad="12"/>
  4554. <connect gate="G$1" pin="P$13" pad="13"/>
  4555. <connect gate="G$1" pin="P$14" pad="14"/>
  4556. <connect gate="G$1" pin="P$15" pad="15"/>
  4557. <connect gate="G$1" pin="P$16" pad="16"/>
  4558. <connect gate="G$1" pin="P$2" pad="7"/>
  4559. <connect gate="G$1" pin="P$3" pad="6"/>
  4560. <connect gate="G$1" pin="P$4" pad="5"/>
  4561. <connect gate="G$1" pin="P$5" pad="4"/>
  4562. <connect gate="G$1" pin="P$6" pad="3"/>
  4563. <connect gate="G$1" pin="P$7" pad="2"/>
  4564. <connect gate="G$1" pin="P$8" pad="1"/>
  4565. <connect gate="G$1" pin="P$9" pad="9"/>
  4566. </connects>
  4567. <technologies>
  4568. <technology name=""/>
  4569. </technologies>
  4570. </device>
  4571. </devices>
  4572. </deviceset>
  4573. </devicesets>
  4574. </library>
  4575. <library name="con-cypressindustries">
  4576. <description>&lt;b&gt;Connectors from Cypress Industries&lt;/b&gt;&lt;p&gt;
  4577. www.cypressindustries.com&lt;br&gt;
  4578. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  4579. <packages>
  4580. <package name="32005-201">
  4581. <description>&lt;b&gt;MINI USB-B R/A SMT W/ REAR&lt;/b&gt;&lt;p&gt;
  4582. Source: http://www.cypressindustries.com/pdf/32005-201.pdf</description>
  4583. <wire x1="-5.9182" y1="3.8416" x2="-3.6879" y2="3.8416" width="0.1016" layer="51"/>
  4584. <wire x1="-3.6879" y1="3.8416" x2="-3.6879" y2="4.8799" width="0.1016" layer="51"/>
  4585. <wire x1="-3.6879" y1="4.8799" x2="-3.3245" y2="4.8799" width="0.1016" layer="51"/>
  4586. <wire x1="-3.3245" y1="4.8799" x2="-3.3245" y2="4.4646" width="0.1016" layer="51"/>
  4587. <wire x1="-3.3245" y1="4.4646" x2="-2.7015" y2="4.4646" width="0.1016" layer="51"/>
  4588. <wire x1="-2.7015" y1="4.4646" x2="-2.7015" y2="4.8799" width="0.1016" layer="51"/>
  4589. <wire x1="-2.7015" y1="4.8799" x2="-2.3093" y2="4.8799" width="0.1016" layer="51"/>
  4590. <wire x1="-2.3093" y1="4.8799" x2="-2.3093" y2="3.8416" width="0.1016" layer="51"/>
  4591. <wire x1="-1.5825" y1="3.8416" x2="0.7266" y2="3.8416" width="0.1016" layer="21"/>
  4592. <wire x1="2.8032" y1="3.8416" x2="0.7266" y2="3.8416" width="0.1016" layer="51"/>
  4593. <wire x1="0.7266" y1="3.8416" x2="0.519" y2="4.0492" width="0.1016" layer="21" curve="-90"/>
  4594. <wire x1="0.519" y1="4.0492" x2="0.519" y2="4.205" width="0.1016" layer="21"/>
  4595. <wire x1="0.519" y1="4.205" x2="2.907" y2="4.205" width="0.1016" layer="51"/>
  4596. <wire x1="2.907" y1="4.205" x2="3.4781" y2="3.6339" width="0.1016" layer="51" curve="-90"/>
  4597. <wire x1="-5.9182" y1="-3.8415" x2="-5.9182" y2="-3.8414" width="0.1016" layer="21"/>
  4598. <wire x1="-5.9182" y1="-3.8414" x2="-5.9182" y2="3.8416" width="0.1016" layer="21"/>
  4599. <wire x1="-1.8171" y1="2.9591" x2="-4.5685" y2="2.7514" width="0.1016" layer="21"/>
  4600. <wire x1="-4.5685" y1="2.7514" x2="-4.828" y2="2.5438" width="0.1016" layer="21" curve="68.629849"/>
  4601. <wire x1="-4.828" y1="2.5438" x2="-4.828" y2="1.9727" width="0.1016" layer="21" curve="34.099487"/>
  4602. <wire x1="-4.828" y1="1.9727" x2="-4.5685" y2="1.7651" width="0.1016" layer="21" curve="68.629849"/>
  4603. <wire x1="-4.5685" y1="1.7651" x2="-1.8171" y2="1.5055" width="0.1016" layer="21"/>
  4604. <wire x1="-1.8171" y1="1.5055" x2="-1.8171" y2="1.7132" width="0.1016" layer="21"/>
  4605. <wire x1="-1.8171" y1="1.7132" x2="-4.2051" y2="1.9727" width="0.1016" layer="21"/>
  4606. <wire x1="-4.2051" y1="1.9727" x2="-4.2051" y2="2.4919" width="0.1016" layer="21"/>
  4607. <wire x1="-4.2051" y1="2.4919" x2="-1.8171" y2="2.7514" width="0.1016" layer="21"/>
  4608. <wire x1="-1.8171" y1="2.7514" x2="-1.8171" y2="2.9591" width="0.1016" layer="21"/>
  4609. <wire x1="2.8032" y1="3.8416" x2="3.0627" y2="3.5821" width="0.1016" layer="51" curve="-90"/>
  4610. <wire x1="3.0627" y1="3.5821" x2="3.0627" y2="3.011" width="0.1016" layer="51"/>
  4611. <wire x1="3.0627" y1="3.011" x2="3.4261" y2="3.011" width="0.1016" layer="21"/>
  4612. <wire x1="1.713" y1="4.2569" x2="1.713" y2="4.8799" width="0.1016" layer="51"/>
  4613. <wire x1="1.713" y1="4.8799" x2="2.1283" y2="4.8799" width="0.1016" layer="51"/>
  4614. <wire x1="2.1283" y1="4.8799" x2="2.1283" y2="4.4646" width="0.1016" layer="51"/>
  4615. <wire x1="2.1283" y1="4.4646" x2="2.6474" y2="4.4646" width="0.1016" layer="51"/>
  4616. <wire x1="2.6474" y1="4.4646" x2="2.6474" y2="4.8799" width="0.1016" layer="51"/>
  4617. <wire x1="2.6474" y1="4.8799" x2="3.0627" y2="4.8799" width="0.1016" layer="51"/>
  4618. <wire x1="3.0627" y1="4.8799" x2="3.0627" y2="4.2569" width="0.1016" layer="51"/>
  4619. <wire x1="0.5709" y1="1.7651" x2="0.5709" y2="-1.765" width="0.1016" layer="21"/>
  4620. <wire x1="1.0381" y1="-1.8169" x2="1.0381" y2="1.817" width="0.1016" layer="21"/>
  4621. <wire x1="1.0381" y1="1.817" x2="0.8305" y2="2.0246" width="0.1016" layer="21" curve="90.055225"/>
  4622. <wire x1="0.8305" y1="2.0246" x2="0.8304" y2="2.0246" width="0.1016" layer="21"/>
  4623. <wire x1="0.8304" y1="2.0246" x2="0.5709" y2="1.7651" width="0.1016" layer="21" curve="89.955858"/>
  4624. <wire x1="1.5573" y1="-2.0246" x2="3.4261" y2="-2.0246" width="0.1016" layer="21"/>
  4625. <wire x1="3.0627" y1="-1.9726" x2="3.0627" y2="1.9727" width="0.1016" layer="51"/>
  4626. <wire x1="-4.5684" y1="1.2459" x2="-0.5192" y2="1.0383" width="0.1016" layer="21"/>
  4627. <wire x1="-0.5192" y1="1.0383" x2="-0.3116" y2="0.8306" width="0.1016" layer="21" curve="-83.771817"/>
  4628. <wire x1="-4.5685" y1="1.2459" x2="-4.7761" y2="1.0383" width="0.1016" layer="21" curve="90"/>
  4629. <wire x1="-4.7761" y1="1.0383" x2="-4.7761" y2="1.0382" width="0.1016" layer="21"/>
  4630. <wire x1="-4.7761" y1="1.0382" x2="-4.5685" y2="0.8306" width="0.1016" layer="21" curve="90"/>
  4631. <wire x1="-4.5685" y1="0.8306" x2="-1.1422" y2="0.623" width="0.1016" layer="21"/>
  4632. <wire x1="-5.9182" y1="-3.8414" x2="-3.6879" y2="-3.8414" width="0.1016" layer="51"/>
  4633. <wire x1="-3.6879" y1="-3.8414" x2="-3.6879" y2="-4.8797" width="0.1016" layer="51"/>
  4634. <wire x1="-3.6879" y1="-4.8797" x2="-3.3245" y2="-4.8797" width="0.1016" layer="51"/>
  4635. <wire x1="-3.3245" y1="-4.8797" x2="-3.3245" y2="-4.4644" width="0.1016" layer="51"/>
  4636. <wire x1="-3.3245" y1="-4.4644" x2="-2.7015" y2="-4.4644" width="0.1016" layer="51"/>
  4637. <wire x1="-2.7015" y1="-4.4644" x2="-2.7015" y2="-4.8797" width="0.1016" layer="51"/>
  4638. <wire x1="-2.7015" y1="-4.8797" x2="-2.3093" y2="-4.8797" width="0.1016" layer="51"/>
  4639. <wire x1="-2.3093" y1="-4.8797" x2="-2.3093" y2="-3.8414" width="0.1016" layer="51"/>
  4640. <wire x1="-2.3093" y1="-3.8414" x2="2.8032" y2="-3.8414" width="0.1016" layer="51"/>
  4641. <wire x1="0.7266" y1="-3.8414" x2="0.519" y2="-4.049" width="0.1016" layer="21" curve="90"/>
  4642. <wire x1="0.519" y1="-4.049" x2="0.519" y2="-4.2048" width="0.1016" layer="21"/>
  4643. <wire x1="0.519" y1="-4.2048" x2="2.907" y2="-4.2048" width="0.1016" layer="51"/>
  4644. <wire x1="2.907" y1="-4.2048" x2="3.4781" y2="-3.6337" width="0.1016" layer="51" curve="90.020069"/>
  4645. <wire x1="-1.8171" y1="-2.9589" x2="-4.5685" y2="-2.7512" width="0.1016" layer="21"/>
  4646. <wire x1="-4.5685" y1="-2.7512" x2="-4.828" y2="-2.5436" width="0.1016" layer="21" curve="-68.629849"/>
  4647. <wire x1="-4.828" y1="-2.5436" x2="-4.828" y2="-1.9725" width="0.1016" layer="21" curve="-34.099487"/>
  4648. <wire x1="-4.828" y1="-1.9725" x2="-4.5685" y2="-1.7649" width="0.1016" layer="21" curve="-68.629849"/>
  4649. <wire x1="-4.5685" y1="-1.7649" x2="-1.8171" y2="-1.5053" width="0.1016" layer="21"/>
  4650. <wire x1="-1.8171" y1="-1.5053" x2="-1.8171" y2="-1.713" width="0.1016" layer="21"/>
  4651. <wire x1="-1.8171" y1="-1.713" x2="-4.2051" y2="-1.9725" width="0.1016" layer="21"/>
  4652. <wire x1="-4.2051" y1="-1.9725" x2="-4.2051" y2="-2.4917" width="0.1016" layer="21"/>
  4653. <wire x1="-4.2051" y1="-2.4917" x2="-1.8171" y2="-2.7512" width="0.1016" layer="21"/>
  4654. <wire x1="-1.8171" y1="-2.7512" x2="-1.8171" y2="-2.9589" width="0.1016" layer="21"/>
  4655. <wire x1="2.8032" y1="-3.8414" x2="3.0627" y2="-3.5819" width="0.1016" layer="51" curve="90.044176"/>
  4656. <wire x1="3.0627" y1="-3.5819" x2="3.0627" y2="-3.0108" width="0.1016" layer="51"/>
  4657. <wire x1="3.0627" y1="-3.0108" x2="3.4261" y2="-3.0108" width="0.1016" layer="21"/>
  4658. <wire x1="1.713" y1="-4.2567" x2="1.713" y2="-4.8797" width="0.1016" layer="51"/>
  4659. <wire x1="1.713" y1="-4.8797" x2="2.1283" y2="-4.8797" width="0.1016" layer="51"/>
  4660. <wire x1="2.1283" y1="-4.8797" x2="2.1283" y2="-4.4644" width="0.1016" layer="51"/>
  4661. <wire x1="2.1283" y1="-4.4644" x2="2.6474" y2="-4.4644" width="0.1016" layer="51"/>
  4662. <wire x1="2.6474" y1="-4.4644" x2="2.6474" y2="-4.8797" width="0.1016" layer="51"/>
  4663. <wire x1="2.6474" y1="-4.8797" x2="3.0627" y2="-4.8797" width="0.1016" layer="51"/>
  4664. <wire x1="3.0627" y1="-4.8797" x2="3.0627" y2="-4.2567" width="0.1016" layer="51"/>
  4665. <wire x1="1.0381" y1="-1.8168" x2="0.8305" y2="-2.0244" width="0.1016" layer="21" curve="-90.055225"/>
  4666. <wire x1="0.8304" y1="-2.0244" x2="0.5709" y2="-1.7649" width="0.1016" layer="21" curve="-89.867677"/>
  4667. <wire x1="1.5573" y1="-1.9725" x2="1.5573" y2="2.0248" width="0.1016" layer="51"/>
  4668. <wire x1="1.5573" y1="2.0248" x2="3.4261" y2="2.0248" width="0.1016" layer="21"/>
  4669. <wire x1="-4.5684" y1="-1.2457" x2="-0.5192" y2="-1.0381" width="0.1016" layer="21"/>
  4670. <wire x1="-0.5192" y1="-1.0381" x2="-0.3116" y2="-0.8304" width="0.1016" layer="21" curve="83.722654"/>
  4671. <wire x1="-0.3116" y1="-0.8304" x2="-0.3116" y2="0.8307" width="0.1016" layer="21"/>
  4672. <wire x1="-4.5685" y1="-1.2457" x2="-4.7761" y2="-1.0381" width="0.1016" layer="21" curve="-90"/>
  4673. <wire x1="-4.7761" y1="-1.038" x2="-4.5685" y2="-0.8304" width="0.1016" layer="21" curve="-90"/>
  4674. <wire x1="-4.5685" y1="-0.8304" x2="-1.1422" y2="-0.6228" width="0.1016" layer="21"/>
  4675. <wire x1="-1.1422" y1="-0.6228" x2="-1.1422" y2="0.6232" width="0.1016" layer="21"/>
  4676. <wire x1="-1.5826" y1="-3.8414" x2="0.7267" y2="-3.8415" width="0.1016" layer="21"/>
  4677. <wire x1="-5.9182" y1="-3.8414" x2="-4.4146" y2="-3.8414" width="0.1016" layer="21"/>
  4678. <wire x1="-5.9182" y1="3.8416" x2="-4.4147" y2="3.8415" width="0.1016" layer="21"/>
  4679. <wire x1="-2.3093" y1="3.8416" x2="0.7265" y2="3.8415" width="0.1016" layer="51"/>
  4680. <wire x1="3.4781" y1="-2.0245" x2="3.4781" y2="-3.0109" width="0.1016" layer="21"/>
  4681. <wire x1="3.4781" y1="3.634" x2="3.478" y2="-3.0109" width="0.1016" layer="51"/>
  4682. <wire x1="3.4782" y1="3.011" x2="3.4782" y2="2.0246" width="0.1016" layer="21"/>
  4683. <smd name="M1" x="-3" y="-4.45" dx="2.5" dy="2" layer="1"/>
  4684. <smd name="M2" x="-3" y="4.45" dx="2.5" dy="2" layer="1"/>
  4685. <smd name="M4" x="2.9" y="-4.45" dx="3.3" dy="2" layer="1"/>
  4686. <smd name="M3" x="2.9" y="4.45" dx="3.3" dy="2" layer="1"/>
  4687. <smd name="1" x="3" y="1.6" dx="3.1" dy="0.5" layer="1"/>
  4688. <smd name="2" x="3" y="0.8" dx="3.1" dy="0.5" layer="1"/>
  4689. <smd name="3" x="3" y="0" dx="3.1" dy="0.5" layer="1"/>
  4690. <smd name="4" x="3" y="-0.8" dx="3.1" dy="0.5" layer="1"/>
  4691. <smd name="5" x="3" y="-1.6" dx="3.1" dy="0.5" layer="1"/>
  4692. <text x="-4.445" y="5.715" size="1.27" layer="25">&gt;NAME</text>
  4693. <text x="-4.445" y="-6.985" size="1.27" layer="27">&gt;VALUE</text>
  4694. <hole x="0" y="2.2" drill="0.9"/>
  4695. <hole x="0" y="-2.2" drill="0.9"/>
  4696. </package>
  4697. <package name="32005-301">
  4698. <description>&lt;b&gt;MINI USB-B R/A SMT W/O REAR&lt;/b&gt;&lt;p&gt;
  4699. Source: http://www.cypressindustries.com/pdf/32005-301.pdf</description>
  4700. <wire x1="-5.9228" y1="3.8473" x2="3.1598" y2="3.8473" width="0.1016" layer="51"/>
  4701. <wire x1="2.9404" y1="3.7967" x2="2.9404" y2="2.5986" width="0.1016" layer="51"/>
  4702. <wire x1="2.9404" y1="2.5986" x2="1.8098" y2="2.5986" width="0.1016" layer="21"/>
  4703. <wire x1="1.8098" y1="3.7798" x2="1.8098" y2="-3.8473" width="0.1016" layer="51"/>
  4704. <wire x1="3.1597" y1="-3.8473" x2="-5.9228" y2="-3.8473" width="0.1016" layer="51"/>
  4705. <wire x1="-5.9228" y1="-3.8473" x2="-5.9228" y2="3.8473" width="0.1016" layer="21"/>
  4706. <wire x1="2.9573" y1="-3.8217" x2="2.9573" y2="-2.6998" width="0.1016" layer="51"/>
  4707. <wire x1="2.9573" y1="-2.6998" x2="1.8098" y2="-2.6998" width="0.1016" layer="21"/>
  4708. <wire x1="-5.9182" y1="3.8416" x2="-3.6879" y2="3.8416" width="0.1016" layer="51"/>
  4709. <wire x1="-3.6879" y1="3.8416" x2="-3.6879" y2="4.8799" width="0.1016" layer="51"/>
  4710. <wire x1="-3.6879" y1="4.8799" x2="-3.3245" y2="4.8799" width="0.1016" layer="51"/>
  4711. <wire x1="-3.3245" y1="4.8799" x2="-3.3245" y2="4.4646" width="0.1016" layer="51"/>
  4712. <wire x1="-3.3245" y1="4.4646" x2="-2.7015" y2="4.4646" width="0.1016" layer="51"/>
  4713. <wire x1="-2.7015" y1="4.4646" x2="-2.7015" y2="4.8799" width="0.1016" layer="51"/>
  4714. <wire x1="-2.7015" y1="4.8799" x2="-2.3093" y2="4.8799" width="0.1016" layer="51"/>
  4715. <wire x1="-2.3093" y1="4.8799" x2="-2.3093" y2="3.8416" width="0.1016" layer="51"/>
  4716. <wire x1="-5.9182" y1="-3.8415" x2="-5.9182" y2="-3.8414" width="0.1016" layer="21"/>
  4717. <wire x1="-5.9182" y1="-3.8414" x2="-5.9182" y2="3.8416" width="0.1016" layer="21"/>
  4718. <wire x1="-1.8171" y1="2.9591" x2="-4.5685" y2="2.7514" width="0.1016" layer="21"/>
  4719. <wire x1="-4.5685" y1="2.7514" x2="-4.828" y2="2.5438" width="0.1016" layer="21" curve="68.629849"/>
  4720. <wire x1="-4.828" y1="2.5438" x2="-4.828" y2="1.9727" width="0.1016" layer="21" curve="34.099487"/>
  4721. <wire x1="-4.828" y1="1.9727" x2="-4.5685" y2="1.7651" width="0.1016" layer="21" curve="68.629849"/>
  4722. <wire x1="-4.5685" y1="1.7651" x2="-1.8171" y2="1.5055" width="0.1016" layer="21"/>
  4723. <wire x1="-1.8171" y1="1.5055" x2="-1.8171" y2="1.7132" width="0.1016" layer="21"/>
  4724. <wire x1="-1.8171" y1="1.7132" x2="-4.2051" y2="1.9727" width="0.1016" layer="21"/>
  4725. <wire x1="-4.2051" y1="1.9727" x2="-4.2051" y2="2.4919" width="0.1016" layer="21"/>
  4726. <wire x1="-4.2051" y1="2.4919" x2="-1.8171" y2="2.7514" width="0.1016" layer="21"/>
  4727. <wire x1="-1.8171" y1="2.7514" x2="-1.8171" y2="2.9591" width="0.1016" layer="21"/>
  4728. <wire x1="1.713" y1="3.8856" x2="1.713" y2="4.8799" width="0.1016" layer="51"/>
  4729. <wire x1="1.713" y1="4.8799" x2="2.1283" y2="4.8799" width="0.1016" layer="51"/>
  4730. <wire x1="2.1283" y1="4.8799" x2="2.1283" y2="4.4646" width="0.1016" layer="51"/>
  4731. <wire x1="2.1283" y1="4.4646" x2="2.6474" y2="4.4646" width="0.1016" layer="51"/>
  4732. <wire x1="2.6474" y1="4.4646" x2="2.6474" y2="4.8799" width="0.1016" layer="51"/>
  4733. <wire x1="2.6474" y1="4.8799" x2="3.1639" y2="4.8799" width="0.1016" layer="51"/>
  4734. <wire x1="3.1639" y1="4.8799" x2="3.1639" y2="3.8519" width="0.1016" layer="51"/>
  4735. <wire x1="-4.5684" y1="1.2459" x2="-0.5192" y2="1.0383" width="0.1016" layer="21"/>
  4736. <wire x1="-0.5192" y1="1.0383" x2="-0.3116" y2="0.8306" width="0.1016" layer="21" curve="-83.771817"/>
  4737. <wire x1="-4.5685" y1="1.2459" x2="-4.7761" y2="1.0383" width="0.1016" layer="21" curve="90"/>
  4738. <wire x1="-4.7761" y1="1.0383" x2="-4.7761" y2="1.0382" width="0.1016" layer="21"/>
  4739. <wire x1="-4.7761" y1="1.0382" x2="-4.5685" y2="0.8306" width="0.1016" layer="21" curve="90"/>
  4740. <wire x1="-4.5685" y1="0.8306" x2="-1.1422" y2="0.623" width="0.1016" layer="21"/>
  4741. <wire x1="-5.9182" y1="-3.8414" x2="-3.6879" y2="-3.8414" width="0.1016" layer="51"/>
  4742. <wire x1="-3.6879" y1="-3.8414" x2="-3.6879" y2="-4.8797" width="0.1016" layer="51"/>
  4743. <wire x1="-3.6879" y1="-4.8797" x2="-3.3245" y2="-4.8797" width="0.1016" layer="51"/>
  4744. <wire x1="-3.3245" y1="-4.8797" x2="-3.3245" y2="-4.4644" width="0.1016" layer="51"/>
  4745. <wire x1="-3.3245" y1="-4.4644" x2="-2.7015" y2="-4.4644" width="0.1016" layer="51"/>
  4746. <wire x1="-2.7015" y1="-4.4644" x2="-2.7015" y2="-4.8797" width="0.1016" layer="51"/>
  4747. <wire x1="-2.7015" y1="-4.8797" x2="-2.3093" y2="-4.8797" width="0.1016" layer="51"/>
  4748. <wire x1="-2.3093" y1="-4.8797" x2="-2.3093" y2="-3.8414" width="0.1016" layer="51"/>
  4749. <wire x1="-1.8171" y1="-2.9589" x2="-4.5685" y2="-2.7512" width="0.1016" layer="21"/>
  4750. <wire x1="-4.5685" y1="-2.7512" x2="-4.828" y2="-2.5436" width="0.1016" layer="21" curve="-68.629849"/>
  4751. <wire x1="-4.828" y1="-2.5436" x2="-4.828" y2="-1.9725" width="0.1016" layer="21" curve="-34.099487"/>
  4752. <wire x1="-4.828" y1="-1.9725" x2="-4.5685" y2="-1.7649" width="0.1016" layer="21" curve="-68.629849"/>
  4753. <wire x1="-4.5685" y1="-1.7649" x2="-1.8171" y2="-1.5053" width="0.1016" layer="21"/>
  4754. <wire x1="-1.8171" y1="-1.5053" x2="-1.8171" y2="-1.713" width="0.1016" layer="21"/>
  4755. <wire x1="-1.8171" y1="-1.713" x2="-4.2051" y2="-1.9725" width="0.1016" layer="21"/>
  4756. <wire x1="-4.2051" y1="-1.9725" x2="-4.2051" y2="-2.4917" width="0.1016" layer="21"/>
  4757. <wire x1="-4.2051" y1="-2.4917" x2="-1.8171" y2="-2.7512" width="0.1016" layer="21"/>
  4758. <wire x1="-1.8171" y1="-2.7512" x2="-1.8171" y2="-2.9589" width="0.1016" layer="21"/>
  4759. <wire x1="1.713" y1="-3.8855" x2="1.713" y2="-4.8797" width="0.1016" layer="51"/>
  4760. <wire x1="1.713" y1="-4.8797" x2="2.1283" y2="-4.8797" width="0.1016" layer="51"/>
  4761. <wire x1="2.1283" y1="-4.8797" x2="2.1283" y2="-4.4644" width="0.1016" layer="51"/>
  4762. <wire x1="2.1283" y1="-4.4644" x2="2.6474" y2="-4.4644" width="0.1016" layer="51"/>
  4763. <wire x1="2.6474" y1="-4.4644" x2="2.6474" y2="-4.8797" width="0.1016" layer="51"/>
  4764. <wire x1="2.6474" y1="-4.8797" x2="3.1627" y2="-4.8797" width="0.1016" layer="51"/>
  4765. <wire x1="3.1627" y1="-4.8797" x2="3.1627" y2="-3.8518" width="0.1016" layer="51"/>
  4766. <wire x1="-4.5684" y1="-1.2457" x2="-0.5192" y2="-1.0381" width="0.1016" layer="21"/>
  4767. <wire x1="-0.5192" y1="-1.0381" x2="-0.3116" y2="-0.8304" width="0.1016" layer="21" curve="83.722654"/>
  4768. <wire x1="-0.3116" y1="-0.8304" x2="-0.3116" y2="0.8307" width="0.1016" layer="21"/>
  4769. <wire x1="-4.5685" y1="-1.2457" x2="-4.7761" y2="-1.0381" width="0.1016" layer="21" curve="-90"/>
  4770. <wire x1="-4.7761" y1="-1.038" x2="-4.5685" y2="-0.8304" width="0.1016" layer="21" curve="-90"/>
  4771. <wire x1="-4.5685" y1="-0.8304" x2="-1.1422" y2="-0.6228" width="0.1016" layer="21"/>
  4772. <wire x1="-1.1422" y1="-0.6228" x2="-1.1422" y2="0.6232" width="0.1016" layer="21"/>
  4773. <wire x1="-5.9182" y1="-3.8414" x2="-4.4146" y2="-3.8414" width="0.1016" layer="21"/>
  4774. <wire x1="-5.9182" y1="3.8416" x2="-4.4147" y2="3.8415" width="0.1016" layer="21"/>
  4775. <wire x1="1.0842" y1="-3.8472" x2="-1.6031" y2="-3.8472" width="0.1016" layer="21"/>
  4776. <wire x1="-1.5523" y1="3.8472" x2="0.9831" y2="3.8473" width="0.1016" layer="21"/>
  4777. <wire x1="2.9404" y1="3.3243" x2="2.9404" y2="2.5986" width="0.1016" layer="21"/>
  4778. <wire x1="1.8098" y1="2.5986" x2="1.8099" y2="3.3243" width="0.1016" layer="21"/>
  4779. <wire x1="1.8098" y1="-2.6999" x2="1.8098" y2="-3.3242" width="0.1016" layer="21"/>
  4780. <wire x1="2.9573" y1="-3.3324" x2="2.9573" y2="-2.6998" width="0.1016" layer="21"/>
  4781. <smd name="M1" x="-3" y="-4.45" dx="2.5" dy="2" layer="1"/>
  4782. <smd name="M2" x="-3" y="4.45" dx="2.5" dy="2" layer="1"/>
  4783. <smd name="M4" x="2.9" y="-4.45" dx="3.3" dy="2" layer="1"/>
  4784. <smd name="M3" x="2.9" y="4.45" dx="3.3" dy="2" layer="1"/>
  4785. <smd name="1" x="3" y="1.6" dx="3.1" dy="0.5" layer="1"/>
  4786. <smd name="2" x="3" y="0.8" dx="3.1" dy="0.5" layer="1"/>
  4787. <smd name="3" x="3" y="0" dx="3.1" dy="0.5" layer="1"/>
  4788. <smd name="4" x="3" y="-0.8" dx="3.1" dy="0.5" layer="1"/>
  4789. <smd name="5" x="3" y="-1.6" dx="3.1" dy="0.5" layer="1"/>
  4790. <text x="-4.445" y="5.715" size="1.27" layer="25">&gt;NAME</text>
  4791. <text x="-4.445" y="-6.985" size="1.27" layer="27">&gt;VALUE</text>
  4792. <hole x="0" y="2.2" drill="0.9"/>
  4793. <hole x="0" y="-2.2" drill="0.9"/>
  4794. </package>
  4795. </packages>
  4796. <symbols>
  4797. <symbol name="MINI-USB-5">
  4798. <wire x1="-2.54" y1="6.35" x2="-2.54" y2="-6.35" width="0.254" layer="94"/>
  4799. <wire x1="-2.54" y1="-6.35" x2="-1.27" y2="-7.62" width="0.254" layer="94" curve="90"/>
  4800. <wire x1="-1.27" y1="-7.62" x2="0" y2="-7.62" width="0.254" layer="94"/>
  4801. <wire x1="0" y1="-7.62" x2="1.016" y2="-8.128" width="0.254" layer="94" curve="-53.130102"/>
  4802. <wire x1="1.016" y1="-8.128" x2="2.54" y2="-8.89" width="0.254" layer="94" curve="53.130102"/>
  4803. <wire x1="2.54" y1="-8.89" x2="5.08" y2="-8.89" width="0.254" layer="94"/>
  4804. <wire x1="5.08" y1="-8.89" x2="6.35" y2="-7.62" width="0.254" layer="94" curve="90"/>
  4805. <wire x1="6.35" y1="-7.62" x2="6.35" y2="7.62" width="0.254" layer="94"/>
  4806. <wire x1="-2.54" y1="6.35" x2="-1.27" y2="7.62" width="0.254" layer="94" curve="-90"/>
  4807. <wire x1="-1.27" y1="7.62" x2="0" y2="7.62" width="0.254" layer="94"/>
  4808. <wire x1="0" y1="7.62" x2="1.016" y2="8.128" width="0.254" layer="94" curve="53.130102"/>
  4809. <wire x1="1.016" y1="8.128" x2="2.54" y2="8.89" width="0.254" layer="94" curve="-53.130102"/>
  4810. <wire x1="2.54" y1="8.89" x2="5.08" y2="8.89" width="0.254" layer="94"/>
  4811. <wire x1="5.08" y1="8.89" x2="6.35" y2="7.62" width="0.254" layer="94" curve="-90"/>
  4812. <wire x1="0" y1="5.08" x2="0" y2="-5.08" width="0.254" layer="94"/>
  4813. <wire x1="0" y1="-5.08" x2="1.27" y2="-6.35" width="0.254" layer="94"/>
  4814. <wire x1="1.27" y1="-6.35" x2="3.81" y2="-6.35" width="0.254" layer="94"/>
  4815. <wire x1="3.81" y1="-6.35" x2="3.81" y2="6.35" width="0.254" layer="94"/>
  4816. <wire x1="3.81" y1="6.35" x2="1.27" y2="6.35" width="0.254" layer="94"/>
  4817. <wire x1="1.27" y1="6.35" x2="0" y2="5.08" width="0.254" layer="94"/>
  4818. <text x="-2.54" y="11.43" size="1.778" layer="95">&gt;NAME</text>
  4819. <text x="10.16" y="-7.62" size="1.778" layer="96" rot="R90">&gt;VALUE</text>
  4820. <pin name="1" x="-5.08" y="5.08" visible="pin" direction="pas"/>
  4821. <pin name="2" x="-5.08" y="2.54" visible="pin" direction="pas"/>
  4822. <pin name="3" x="-5.08" y="0" visible="pin" direction="pas"/>
  4823. <pin name="4" x="-5.08" y="-2.54" visible="pin" direction="pas"/>
  4824. <pin name="5" x="-5.08" y="-5.08" visible="pin" direction="pas"/>
  4825. </symbol>
  4826. <symbol name="SHIELD_4">
  4827. <wire x1="-2.54" y1="0" x2="0" y2="0" width="0.254" layer="94" style="shortdash"/>
  4828. <wire x1="0" y1="0" x2="2.54" y2="0" width="0.254" layer="94" style="shortdash"/>
  4829. <wire x1="2.54" y1="0" x2="5.08" y2="0" width="0.254" layer="94" style="shortdash"/>
  4830. <wire x1="-2.54" y1="-1.27" x2="-2.54" y2="0" width="0.1524" layer="94"/>
  4831. <wire x1="0" y1="-1.27" x2="0" y2="0" width="0.1524" layer="94"/>
  4832. <wire x1="2.54" y1="-1.27" x2="2.54" y2="0" width="0.1524" layer="94"/>
  4833. <wire x1="5.08" y1="0" x2="7.62" y2="2.54" width="0.254" layer="94" style="shortdash" curve="90"/>
  4834. <wire x1="7.62" y1="2.54" x2="7.62" y2="17.78" width="0.254" layer="94" style="shortdash"/>
  4835. <wire x1="7.62" y1="17.78" x2="5.08" y2="20.32" width="0.254" layer="94" style="shortdash" curve="90"/>
  4836. <wire x1="5.08" y1="20.32" x2="0" y2="20.32" width="0.254" layer="94" style="shortdash"/>
  4837. <text x="7.62" y="-2.54" size="1.778" layer="95">&gt;NAME</text>
  4838. <pin name="S1" x="-2.54" y="-2.54" visible="off" length="short" direction="pas" rot="R90"/>
  4839. <pin name="S2" x="0" y="-2.54" visible="off" length="short" direction="pas" rot="R90"/>
  4840. <pin name="S3" x="2.54" y="-2.54" visible="off" length="short" direction="pas" rot="R90"/>
  4841. <pin name="S4" x="5.08" y="-2.54" visible="off" length="short" direction="pas" rot="R90"/>
  4842. </symbol>
  4843. </symbols>
  4844. <devicesets>
  4845. <deviceset name="MINI-USB-SCHIELD-" prefix="X">
  4846. <description>&lt;b&gt;MINI USB-B Conector&lt;/b&gt;&lt;p&gt;
  4847. Source: www.cypressindustries.com</description>
  4848. <gates>
  4849. <gate name="G$1" symbol="MINI-USB-5" x="0" y="0"/>
  4850. <gate name="S" symbol="SHIELD_4" x="0" y="-10.16" addlevel="always"/>
  4851. </gates>
  4852. <devices>
  4853. <device name="32005-201" package="32005-201">
  4854. <connects>
  4855. <connect gate="G$1" pin="1" pad="1"/>
  4856. <connect gate="G$1" pin="2" pad="2"/>
  4857. <connect gate="G$1" pin="3" pad="3"/>
  4858. <connect gate="G$1" pin="4" pad="4"/>
  4859. <connect gate="G$1" pin="5" pad="5"/>
  4860. <connect gate="S" pin="S1" pad="M1"/>
  4861. <connect gate="S" pin="S2" pad="M2"/>
  4862. <connect gate="S" pin="S3" pad="M3"/>
  4863. <connect gate="S" pin="S4" pad="M4"/>
  4864. </connects>
  4865. <technologies>
  4866. <technology name="">
  4867. <attribute name="MF" value="" constant="no"/>
  4868. <attribute name="MPN" value="" constant="no"/>
  4869. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  4870. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  4871. </technology>
  4872. </technologies>
  4873. </device>
  4874. <device name="32005-301" package="32005-301">
  4875. <connects>
  4876. <connect gate="G$1" pin="1" pad="1"/>
  4877. <connect gate="G$1" pin="2" pad="2"/>
  4878. <connect gate="G$1" pin="3" pad="3"/>
  4879. <connect gate="G$1" pin="4" pad="4"/>
  4880. <connect gate="G$1" pin="5" pad="5"/>
  4881. <connect gate="S" pin="S1" pad="M1"/>
  4882. <connect gate="S" pin="S2" pad="M2"/>
  4883. <connect gate="S" pin="S3" pad="M3"/>
  4884. <connect gate="S" pin="S4" pad="M4"/>
  4885. </connects>
  4886. <technologies>
  4887. <technology name="">
  4888. <attribute name="MF" value="" constant="no"/>
  4889. <attribute name="MPN" value="" constant="no"/>
  4890. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  4891. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  4892. </technology>
  4893. </technologies>
  4894. </device>
  4895. </devices>
  4896. </deviceset>
  4897. </devicesets>
  4898. </library>
  4899. </libraries>
  4900. <attributes>
  4901. </attributes>
  4902. <variantdefs>
  4903. </variantdefs>
  4904. <classes>
  4905. <class number="0" name="default" width="0" drill="0">
  4906. </class>
  4907. </classes>
  4908. <parts>
  4909. <part name="JP1" library="pinhead" deviceset="PINHD-1X8" device="" value="PORT1"/>
  4910. <part name="JP2" library="pinhead" deviceset="PINHD-1X10" device="" value="PORT2"/>
  4911. <part name="JP3" library="pinhead" deviceset="PINHD-1X8" device="" value="PORT3"/>
  4912. <part name="JP4" library="pinhead" deviceset="PINHD-1X8" device="" value="PORT4"/>
  4913. <part name="аналог" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  4914. <part name="JP5" library="pinhead" deviceset="PINHD-1X4" device="" value="SPI"/>
  4915. <part name="R1" library="resistor" deviceset="R-EU_" device="R1206" value="1K"/>
  4916. <part name="U$1" library="optocoupler" deviceset="LTV847" device=""/>
  4917. <part name="X3" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  4918. <part name="X4" library="con-cypressindustries" deviceset="MINI-USB-SCHIELD-" device="32005-301"/>
  4919. <part name="X2" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  4920. <part name="X5" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  4921. <part name="X6" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  4922. <part name="R2" library="resistor" deviceset="R-EU_" device="R1206" value="1K"/>
  4923. <part name="R3" library="resistor" deviceset="R-EU_" device="R1206" value="2K"/>
  4924. <part name="R4" library="resistor" deviceset="R-EU_" device="R1206" value="2K"/>
  4925. <part name="R5" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4926. <part name="R6" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4927. <part name="R7" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4928. <part name="R8" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4929. <part name="JP6" library="pinhead" deviceset="PINHD-1X3" device=""/>
  4930. <part name="U$2" library="optocoupler" deviceset="LTV847" device=""/>
  4931. <part name="R9" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4932. <part name="R10" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4933. <part name="R11" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4934. <part name="R12" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4935. <part name="X7" library="con-phoenix-3.81" deviceset="1705605" device=""/>
  4936. </parts>
  4937. <sheets>
  4938. <sheet>
  4939. <plain>
  4940. <text x="332.74" y="45.72" size="1.778" layer="91">+5V</text>
  4941. <text x="332.74" y="30.48" size="1.778" layer="91">+5V OPTO</text>
  4942. <text x="332.74" y="38.1" size="1.778" layer="91">GND</text>
  4943. <text x="332.74" y="53.34" size="1.778" layer="91">GND F</text>
  4944. </plain>
  4945. <instances>
  4946. <instance part="JP1" gate="A" x="15.24" y="43.18" rot="MR0"/>
  4947. <instance part="JP2" gate="A" x="127" y="53.34" rot="MR0"/>
  4948. <instance part="JP3" gate="A" x="124.46" y="-45.72" rot="MR0"/>
  4949. <instance part="JP4" gate="A" x="-2.54" y="-15.24" rot="MR0"/>
  4950. <instance part="аналог" gate="-1" x="78.74" y="55.88" rot="MR0"/>
  4951. <instance part="аналог" gate="-2" x="78.74" y="48.26" rot="MR0"/>
  4952. <instance part="аналог" gate="-3" x="78.74" y="40.64" rot="MR0"/>
  4953. <instance part="аналог" gate="-4" x="78.74" y="33.02" rot="MR0"/>
  4954. <instance part="JP5" gate="A" x="60.96" y="33.02"/>
  4955. <instance part="R1" gate="G$1" x="218.44" y="91.44"/>
  4956. <instance part="U$1" gate="G$1" x="203.2" y="10.16"/>
  4957. <instance part="X3" gate="-1" x="317.5" y="53.34" rot="MR0"/>
  4958. <instance part="X3" gate="-2" x="317.5" y="45.72" rot="MR0"/>
  4959. <instance part="X3" gate="-3" x="317.5" y="38.1" rot="MR0"/>
  4960. <instance part="X3" gate="-4" x="317.5" y="30.48" rot="MR0"/>
  4961. <instance part="X4" gate="G$1" x="266.7" y="-12.7"/>
  4962. <instance part="X4" gate="S" x="266.7" y="-22.86"/>
  4963. <instance part="X2" gate="-1" x="226.06" y="106.68" rot="MR0"/>
  4964. <instance part="X2" gate="-2" x="226.06" y="99.06" rot="MR0"/>
  4965. <instance part="X2" gate="-3" x="226.06" y="91.44" rot="MR0"/>
  4966. <instance part="X2" gate="-4" x="226.06" y="83.82" rot="MR0"/>
  4967. <instance part="X5" gate="-1" x="233.68" y="40.64" rot="MR0"/>
  4968. <instance part="X5" gate="-2" x="233.68" y="33.02" rot="MR0"/>
  4969. <instance part="X5" gate="-3" x="233.68" y="25.4" rot="MR0"/>
  4970. <instance part="X5" gate="-4" x="233.68" y="17.78" rot="MR0"/>
  4971. <instance part="X6" gate="-1" x="91.44" y="-5.08" rot="MR0"/>
  4972. <instance part="X6" gate="-2" x="91.44" y="-12.7" rot="MR0"/>
  4973. <instance part="X6" gate="-3" x="91.44" y="-20.32" rot="MR0"/>
  4974. <instance part="X6" gate="-4" x="91.44" y="-27.94" rot="MR0"/>
  4975. <instance part="R2" gate="G$1" x="218.44" y="83.82"/>
  4976. <instance part="R3" gate="G$1" x="248.92" y="83.82"/>
  4977. <instance part="R4" gate="G$1" x="248.92" y="91.44"/>
  4978. <instance part="R5" gate="G$1" x="177.8" y="48.26"/>
  4979. <instance part="R6" gate="G$1" x="180.34" y="38.1"/>
  4980. <instance part="R7" gate="G$1" x="180.34" y="25.4"/>
  4981. <instance part="R8" gate="G$1" x="177.8" y="20.32"/>
  4982. <instance part="JP6" gate="A" x="213.36" y="-20.32"/>
  4983. <instance part="U$2" gate="G$1" x="53.34" y="-38.1"/>
  4984. <instance part="R9" gate="G$1" x="27.94" y="2.54"/>
  4985. <instance part="R10" gate="G$1" x="27.94" y="-10.16"/>
  4986. <instance part="R11" gate="G$1" x="30.48" y="-20.32"/>
  4987. <instance part="R12" gate="G$1" x="30.48" y="-30.48"/>
  4988. <instance part="X7" gate="-1" x="289.56" y="165.1" rot="MR0"/>
  4989. <instance part="X7" gate="-2" x="289.56" y="157.48" rot="MR0"/>
  4990. <instance part="X7" gate="-3" x="289.56" y="149.86" rot="MR0"/>
  4991. <instance part="X7" gate="-4" x="289.56" y="142.24" rot="MR0"/>
  4992. <instance part="X7" gate="-5" x="289.56" y="134.62" rot="MR0"/>
  4993. <instance part="X7" gate="-6" x="289.56" y="127" rot="MR0"/>
  4994. <instance part="X7" gate="-7" x="289.56" y="119.38" rot="MR0"/>
  4995. <instance part="X7" gate="-8" x="289.56" y="111.76" rot="MR0"/>
  4996. </instances>
  4997. <busses>
  4998. </busses>
  4999. <nets>
  5000. <net name="N$1" class="0">
  5001. <segment>
  5002. <pinref part="JP1" gate="A" pin="1"/>
  5003. <wire x1="17.78" y1="53.34" x2="71.12" y2="53.34" width="0.1524" layer="91"/>
  5004. <wire x1="71.12" y1="53.34" x2="71.12" y2="55.88" width="0.1524" layer="91"/>
  5005. <pinref part="аналог" gate="-1" pin="1A"/>
  5006. <wire x1="71.12" y1="55.88" x2="76.2" y2="55.88" width="0.1524" layer="91"/>
  5007. </segment>
  5008. </net>
  5009. <net name="N$2" class="0">
  5010. <segment>
  5011. <pinref part="JP1" gate="A" pin="2"/>
  5012. <wire x1="17.78" y1="50.8" x2="71.12" y2="50.8" width="0.1524" layer="91"/>
  5013. <wire x1="71.12" y1="50.8" x2="71.12" y2="48.26" width="0.1524" layer="91"/>
  5014. <pinref part="аналог" gate="-2" pin="1A"/>
  5015. <wire x1="71.12" y1="48.26" x2="76.2" y2="48.26" width="0.1524" layer="91"/>
  5016. </segment>
  5017. </net>
  5018. <net name="N$3" class="0">
  5019. <segment>
  5020. <pinref part="JP1" gate="A" pin="3"/>
  5021. <wire x1="17.78" y1="48.26" x2="68.58" y2="48.26" width="0.1524" layer="91"/>
  5022. <wire x1="68.58" y1="48.26" x2="68.58" y2="40.64" width="0.1524" layer="91"/>
  5023. <pinref part="аналог" gate="-3" pin="1A"/>
  5024. <wire x1="68.58" y1="40.64" x2="76.2" y2="40.64" width="0.1524" layer="91"/>
  5025. </segment>
  5026. </net>
  5027. <net name="N$4" class="0">
  5028. <segment>
  5029. <pinref part="JP1" gate="A" pin="4"/>
  5030. <wire x1="17.78" y1="45.72" x2="66.04" y2="45.72" width="0.1524" layer="91"/>
  5031. <wire x1="66.04" y1="45.72" x2="66.04" y2="33.02" width="0.1524" layer="91"/>
  5032. <pinref part="аналог" gate="-4" pin="1A"/>
  5033. <wire x1="66.04" y1="33.02" x2="76.2" y2="33.02" width="0.1524" layer="91"/>
  5034. </segment>
  5035. </net>
  5036. <net name="N$5" class="0">
  5037. <segment>
  5038. <pinref part="JP1" gate="A" pin="5"/>
  5039. <wire x1="17.78" y1="43.18" x2="50.8" y2="43.18" width="0.1524" layer="91"/>
  5040. <wire x1="50.8" y1="43.18" x2="50.8" y2="38.1" width="0.1524" layer="91"/>
  5041. <pinref part="JP5" gate="A" pin="1"/>
  5042. <wire x1="50.8" y1="38.1" x2="58.42" y2="38.1" width="0.1524" layer="91"/>
  5043. </segment>
  5044. </net>
  5045. <net name="N$6" class="0">
  5046. <segment>
  5047. <pinref part="JP1" gate="A" pin="6"/>
  5048. <wire x1="17.78" y1="40.64" x2="48.26" y2="40.64" width="0.1524" layer="91"/>
  5049. <wire x1="48.26" y1="40.64" x2="48.26" y2="35.56" width="0.1524" layer="91"/>
  5050. <pinref part="JP5" gate="A" pin="2"/>
  5051. <wire x1="48.26" y1="35.56" x2="58.42" y2="35.56" width="0.1524" layer="91"/>
  5052. </segment>
  5053. </net>
  5054. <net name="N$7" class="0">
  5055. <segment>
  5056. <pinref part="JP1" gate="A" pin="7"/>
  5057. <wire x1="17.78" y1="38.1" x2="45.72" y2="38.1" width="0.1524" layer="91"/>
  5058. <wire x1="45.72" y1="38.1" x2="45.72" y2="33.02" width="0.1524" layer="91"/>
  5059. <pinref part="JP5" gate="A" pin="3"/>
  5060. <wire x1="45.72" y1="33.02" x2="58.42" y2="33.02" width="0.1524" layer="91"/>
  5061. </segment>
  5062. </net>
  5063. <net name="N$8" class="0">
  5064. <segment>
  5065. <pinref part="JP1" gate="A" pin="8"/>
  5066. <wire x1="17.78" y1="35.56" x2="40.64" y2="35.56" width="0.1524" layer="91"/>
  5067. <wire x1="40.64" y1="35.56" x2="40.64" y2="30.48" width="0.1524" layer="91"/>
  5068. <pinref part="JP5" gate="A" pin="4"/>
  5069. <wire x1="40.64" y1="30.48" x2="58.42" y2="30.48" width="0.1524" layer="91"/>
  5070. </segment>
  5071. </net>
  5072. <net name="N$33" class="0">
  5073. <segment>
  5074. <pinref part="JP3" gate="A" pin="8"/>
  5075. <wire x1="127" y1="-53.34" x2="304.8" y2="-53.34" width="0.1524" layer="91"/>
  5076. <wire x1="304.8" y1="-53.34" x2="304.8" y2="45.72" width="0.1524" layer="91"/>
  5077. <pinref part="X3" gate="-2" pin="1A"/>
  5078. <wire x1="314.96" y1="45.72" x2="304.8" y2="45.72" width="0.1524" layer="91"/>
  5079. </segment>
  5080. </net>
  5081. <net name="N$35" class="0">
  5082. <segment>
  5083. <pinref part="JP3" gate="A" pin="4"/>
  5084. <wire x1="127" y1="-43.18" x2="251.46" y2="-43.18" width="0.1524" layer="91"/>
  5085. <wire x1="251.46" y1="-43.18" x2="251.46" y2="-10.16" width="0.1524" layer="91"/>
  5086. <pinref part="X4" gate="G$1" pin="2"/>
  5087. <wire x1="251.46" y1="-10.16" x2="261.62" y2="-10.16" width="0.1524" layer="91"/>
  5088. </segment>
  5089. </net>
  5090. <net name="N$36" class="0">
  5091. <segment>
  5092. <pinref part="JP3" gate="A" pin="5"/>
  5093. <wire x1="127" y1="-45.72" x2="254" y2="-45.72" width="0.1524" layer="91"/>
  5094. <wire x1="254" y1="-45.72" x2="254" y2="-12.7" width="0.1524" layer="91"/>
  5095. <pinref part="X4" gate="G$1" pin="3"/>
  5096. <wire x1="254" y1="-12.7" x2="261.62" y2="-12.7" width="0.1524" layer="91"/>
  5097. </segment>
  5098. </net>
  5099. <net name="N$9" class="0">
  5100. <segment>
  5101. <pinref part="JP2" gate="A" pin="2"/>
  5102. <wire x1="129.54" y1="60.96" x2="167.64" y2="60.96" width="0.1524" layer="91"/>
  5103. <wire x1="167.64" y1="60.96" x2="167.64" y2="106.68" width="0.1524" layer="91"/>
  5104. <pinref part="X2" gate="-1" pin="1A"/>
  5105. <wire x1="167.64" y1="106.68" x2="223.52" y2="106.68" width="0.1524" layer="91"/>
  5106. </segment>
  5107. </net>
  5108. <net name="N$11" class="0">
  5109. <segment>
  5110. <pinref part="X2" gate="-3" pin="1A"/>
  5111. <pinref part="R1" gate="G$1" pin="2"/>
  5112. <wire x1="223.52" y1="91.44" x2="223.52" y2="93.98" width="0.1524" layer="91"/>
  5113. <junction x="223.52" y="91.44"/>
  5114. <pinref part="R4" gate="G$1" pin="1"/>
  5115. <wire x1="223.52" y1="93.98" x2="243.84" y2="93.98" width="0.1524" layer="91"/>
  5116. <wire x1="243.84" y1="93.98" x2="243.84" y2="91.44" width="0.1524" layer="91"/>
  5117. </segment>
  5118. </net>
  5119. <net name="N$12" class="0">
  5120. <segment>
  5121. <pinref part="X2" gate="-4" pin="1A"/>
  5122. <pinref part="R2" gate="G$1" pin="2"/>
  5123. <wire x1="223.52" y1="83.82" x2="223.52" y2="86.36" width="0.1524" layer="91"/>
  5124. <junction x="223.52" y="83.82"/>
  5125. <pinref part="R3" gate="G$1" pin="1"/>
  5126. <wire x1="223.52" y1="86.36" x2="243.84" y2="86.36" width="0.1524" layer="91"/>
  5127. <wire x1="243.84" y1="86.36" x2="243.84" y2="83.82" width="0.1524" layer="91"/>
  5128. </segment>
  5129. </net>
  5130. <net name="N$16" class="0">
  5131. <segment>
  5132. <pinref part="JP2" gate="A" pin="4"/>
  5133. <wire x1="129.54" y1="55.88" x2="172.72" y2="55.88" width="0.1524" layer="91"/>
  5134. <wire x1="172.72" y1="55.88" x2="172.72" y2="91.44" width="0.1524" layer="91"/>
  5135. <pinref part="R1" gate="G$1" pin="1"/>
  5136. <wire x1="172.72" y1="91.44" x2="213.36" y2="91.44" width="0.1524" layer="91"/>
  5137. </segment>
  5138. </net>
  5139. <net name="N$17" class="0">
  5140. <segment>
  5141. <pinref part="JP2" gate="A" pin="5"/>
  5142. <wire x1="129.54" y1="53.34" x2="175.26" y2="53.34" width="0.1524" layer="91"/>
  5143. <wire x1="175.26" y1="53.34" x2="175.26" y2="83.82" width="0.1524" layer="91"/>
  5144. <pinref part="R2" gate="G$1" pin="1"/>
  5145. <wire x1="175.26" y1="83.82" x2="213.36" y2="83.82" width="0.1524" layer="91"/>
  5146. </segment>
  5147. </net>
  5148. <net name="N$21" class="0">
  5149. <segment>
  5150. <pinref part="JP2" gate="A" pin="6"/>
  5151. <pinref part="R5" gate="G$1" pin="1"/>
  5152. <wire x1="129.54" y1="50.8" x2="172.72" y2="50.8" width="0.1524" layer="91"/>
  5153. <wire x1="172.72" y1="50.8" x2="172.72" y2="48.26" width="0.1524" layer="91"/>
  5154. </segment>
  5155. </net>
  5156. <net name="N$22" class="0">
  5157. <segment>
  5158. <pinref part="JP2" gate="A" pin="7"/>
  5159. <wire x1="129.54" y1="48.26" x2="170.18" y2="48.26" width="0.1524" layer="91"/>
  5160. <wire x1="170.18" y1="48.26" x2="170.18" y2="38.1" width="0.1524" layer="91"/>
  5161. <pinref part="R6" gate="G$1" pin="1"/>
  5162. <wire x1="170.18" y1="38.1" x2="175.26" y2="38.1" width="0.1524" layer="91"/>
  5163. </segment>
  5164. </net>
  5165. <net name="N$23" class="0">
  5166. <segment>
  5167. <pinref part="JP2" gate="A" pin="8"/>
  5168. <wire x1="129.54" y1="45.72" x2="167.64" y2="45.72" width="0.1524" layer="91"/>
  5169. <wire x1="167.64" y1="45.72" x2="167.64" y2="25.4" width="0.1524" layer="91"/>
  5170. <pinref part="R7" gate="G$1" pin="1"/>
  5171. <wire x1="167.64" y1="25.4" x2="175.26" y2="25.4" width="0.1524" layer="91"/>
  5172. </segment>
  5173. </net>
  5174. <net name="N$24" class="0">
  5175. <segment>
  5176. <pinref part="JP2" gate="A" pin="9"/>
  5177. <wire x1="129.54" y1="43.18" x2="165.1" y2="43.18" width="0.1524" layer="91"/>
  5178. <wire x1="165.1" y1="43.18" x2="165.1" y2="20.32" width="0.1524" layer="91"/>
  5179. <pinref part="R8" gate="G$1" pin="1"/>
  5180. <wire x1="165.1" y1="20.32" x2="172.72" y2="20.32" width="0.1524" layer="91"/>
  5181. </segment>
  5182. </net>
  5183. <net name="N$26" class="0">
  5184. <segment>
  5185. <pinref part="U$1" gate="G$1" pin="P$15"/>
  5186. <pinref part="X5" gate="-1" pin="1A"/>
  5187. <wire x1="226.06" y1="43.18" x2="231.14" y2="43.18" width="0.1524" layer="91"/>
  5188. <wire x1="231.14" y1="43.18" x2="231.14" y2="40.64" width="0.1524" layer="91"/>
  5189. </segment>
  5190. </net>
  5191. <net name="N$28" class="0">
  5192. <segment>
  5193. <pinref part="U$1" gate="G$1" pin="P$11"/>
  5194. <pinref part="X5" gate="-3" pin="1A"/>
  5195. <wire x1="226.06" y1="22.86" x2="231.14" y2="22.86" width="0.1524" layer="91"/>
  5196. <wire x1="231.14" y1="22.86" x2="231.14" y2="25.4" width="0.1524" layer="91"/>
  5197. </segment>
  5198. </net>
  5199. <net name="N$29" class="0">
  5200. <segment>
  5201. <pinref part="U$1" gate="G$1" pin="P$9"/>
  5202. <pinref part="X5" gate="-4" pin="1A"/>
  5203. <wire x1="226.06" y1="12.7" x2="231.14" y2="12.7" width="0.1524" layer="91"/>
  5204. <wire x1="231.14" y1="12.7" x2="231.14" y2="17.78" width="0.1524" layer="91"/>
  5205. </segment>
  5206. </net>
  5207. <net name="N$31" class="0">
  5208. <segment>
  5209. <pinref part="JP3" gate="A" pin="6"/>
  5210. <wire x1="127" y1="-48.26" x2="198.12" y2="-48.26" width="0.1524" layer="91"/>
  5211. <wire x1="198.12" y1="-48.26" x2="198.12" y2="-20.32" width="0.1524" layer="91"/>
  5212. <pinref part="JP6" gate="A" pin="2"/>
  5213. <wire x1="198.12" y1="-20.32" x2="210.82" y2="-20.32" width="0.1524" layer="91"/>
  5214. </segment>
  5215. </net>
  5216. <net name="N$32" class="0">
  5217. <segment>
  5218. <pinref part="JP3" gate="A" pin="7"/>
  5219. <wire x1="127" y1="-50.8" x2="200.66" y2="-50.8" width="0.1524" layer="91"/>
  5220. <wire x1="200.66" y1="-50.8" x2="200.66" y2="-22.86" width="0.1524" layer="91"/>
  5221. <pinref part="JP6" gate="A" pin="3"/>
  5222. <wire x1="200.66" y1="-22.86" x2="210.82" y2="-22.86" width="0.1524" layer="91"/>
  5223. </segment>
  5224. </net>
  5225. <net name="N$38" class="0">
  5226. <segment>
  5227. <pinref part="JP4" gate="A" pin="2"/>
  5228. <wire x1="0" y1="-7.62" x2="22.86" y2="-7.62" width="0.1524" layer="91"/>
  5229. <wire x1="22.86" y1="-7.62" x2="22.86" y2="2.54" width="0.1524" layer="91"/>
  5230. <pinref part="R9" gate="G$1" pin="1"/>
  5231. </segment>
  5232. </net>
  5233. <net name="N$39" class="0">
  5234. <segment>
  5235. <pinref part="JP4" gate="A" pin="3"/>
  5236. <pinref part="R10" gate="G$1" pin="1"/>
  5237. <wire x1="0" y1="-10.16" x2="22.86" y2="-10.16" width="0.1524" layer="91"/>
  5238. </segment>
  5239. </net>
  5240. <net name="N$40" class="0">
  5241. <segment>
  5242. <pinref part="JP4" gate="A" pin="4"/>
  5243. <pinref part="R11" gate="G$1" pin="1"/>
  5244. <wire x1="0" y1="-12.7" x2="25.4" y2="-12.7" width="0.1524" layer="91"/>
  5245. <wire x1="25.4" y1="-12.7" x2="25.4" y2="-20.32" width="0.1524" layer="91"/>
  5246. </segment>
  5247. </net>
  5248. <net name="N$41" class="0">
  5249. <segment>
  5250. <pinref part="JP4" gate="A" pin="5"/>
  5251. <wire x1="0" y1="-15.24" x2="22.86" y2="-15.24" width="0.1524" layer="91"/>
  5252. <wire x1="22.86" y1="-15.24" x2="22.86" y2="-30.48" width="0.1524" layer="91"/>
  5253. <pinref part="R12" gate="G$1" pin="1"/>
  5254. <wire x1="22.86" y1="-30.48" x2="25.4" y2="-30.48" width="0.1524" layer="91"/>
  5255. </segment>
  5256. </net>
  5257. <net name="N$42" class="0">
  5258. <segment>
  5259. <pinref part="U$2" gate="G$1" pin="P$1"/>
  5260. <wire x1="50.8" y1="-35.56" x2="50.8" y2="-48.26" width="0.1524" layer="91"/>
  5261. <wire x1="50.8" y1="-48.26" x2="111.76" y2="-48.26" width="0.1524" layer="91"/>
  5262. <wire x1="111.76" y1="-48.26" x2="111.76" y2="-27.94" width="0.1524" layer="91"/>
  5263. <wire x1="111.76" y1="-27.94" x2="134.62" y2="-27.94" width="0.1524" layer="91"/>
  5264. <pinref part="U$1" gate="G$1" pin="P$1"/>
  5265. <pinref part="R4" gate="G$1" pin="2"/>
  5266. <pinref part="R3" gate="G$1" pin="2"/>
  5267. <wire x1="254" y1="91.44" x2="254" y2="83.82" width="0.1524" layer="91"/>
  5268. <pinref part="JP3" gate="A" pin="1"/>
  5269. <wire x1="127" y1="-35.56" x2="134.62" y2="-35.56" width="0.1524" layer="91"/>
  5270. <wire x1="134.62" y1="-35.56" x2="195.58" y2="-35.56" width="0.1524" layer="91"/>
  5271. <wire x1="185.42" y1="-35.56" x2="195.58" y2="-35.56" width="0.1524" layer="91"/>
  5272. <wire x1="195.58" y1="-35.56" x2="256.54" y2="-35.56" width="0.1524" layer="91"/>
  5273. <wire x1="256.54" y1="-35.56" x2="302.26" y2="-35.56" width="0.1524" layer="91"/>
  5274. <wire x1="302.26" y1="-35.56" x2="302.26" y2="38.1" width="0.1524" layer="91"/>
  5275. <pinref part="X4" gate="G$1" pin="5"/>
  5276. <wire x1="261.62" y1="-17.78" x2="256.54" y2="-17.78" width="0.1524" layer="91"/>
  5277. <wire x1="256.54" y1="-17.78" x2="256.54" y2="-35.56" width="0.1524" layer="91"/>
  5278. <junction x="256.54" y="-35.56"/>
  5279. <wire x1="254" y1="83.82" x2="254" y2="38.1" width="0.1524" layer="91"/>
  5280. <wire x1="254" y1="38.1" x2="302.26" y2="38.1" width="0.1524" layer="91"/>
  5281. <junction x="254" y="83.82"/>
  5282. <wire x1="200.66" y1="12.7" x2="198.12" y2="12.7" width="0.1524" layer="91"/>
  5283. <wire x1="198.12" y1="12.7" x2="185.42" y2="12.7" width="0.1524" layer="91"/>
  5284. <wire x1="185.42" y1="12.7" x2="185.42" y2="-35.56" width="0.1524" layer="91"/>
  5285. <junction x="185.42" y="-35.56"/>
  5286. <pinref part="JP6" gate="A" pin="1"/>
  5287. <wire x1="210.82" y1="-17.78" x2="195.58" y2="-17.78" width="0.1524" layer="91"/>
  5288. <wire x1="195.58" y1="-17.78" x2="195.58" y2="-35.56" width="0.1524" layer="91"/>
  5289. <junction x="195.58" y="-35.56"/>
  5290. <wire x1="134.62" y1="-27.94" x2="134.62" y2="-35.56" width="0.1524" layer="91"/>
  5291. <junction x="134.62" y="-35.56"/>
  5292. <pinref part="U$1" gate="G$1" pin="P$7"/>
  5293. <wire x1="200.66" y1="43.18" x2="198.12" y2="43.18" width="0.1524" layer="91"/>
  5294. <wire x1="198.12" y1="43.18" x2="198.12" y2="33.02" width="0.1524" layer="91"/>
  5295. <junction x="198.12" y="12.7"/>
  5296. <pinref part="U$1" gate="G$1" pin="P$5"/>
  5297. <wire x1="198.12" y1="33.02" x2="198.12" y2="22.86" width="0.1524" layer="91"/>
  5298. <wire x1="198.12" y1="22.86" x2="198.12" y2="12.7" width="0.1524" layer="91"/>
  5299. <wire x1="200.66" y1="33.02" x2="198.12" y2="33.02" width="0.1524" layer="91"/>
  5300. <junction x="198.12" y="33.02"/>
  5301. <pinref part="U$1" gate="G$1" pin="P$3"/>
  5302. <wire x1="200.66" y1="22.86" x2="198.12" y2="22.86" width="0.1524" layer="91"/>
  5303. <wire x1="50.8" y1="-35.56" x2="48.26" y2="-35.56" width="0.1524" layer="91"/>
  5304. <wire x1="48.26" y1="-35.56" x2="48.26" y2="-25.4" width="0.1524" layer="91"/>
  5305. <junction x="50.8" y="-35.56"/>
  5306. <pinref part="U$2" gate="G$1" pin="P$3"/>
  5307. <wire x1="48.26" y1="-25.4" x2="50.8" y2="-25.4" width="0.1524" layer="91"/>
  5308. <pinref part="U$2" gate="G$1" pin="P$5"/>
  5309. <wire x1="48.26" y1="-25.4" x2="48.26" y2="-15.24" width="0.1524" layer="91"/>
  5310. <wire x1="48.26" y1="-15.24" x2="50.8" y2="-15.24" width="0.1524" layer="91"/>
  5311. <junction x="48.26" y="-25.4"/>
  5312. <pinref part="U$2" gate="G$1" pin="P$7"/>
  5313. <wire x1="48.26" y1="-15.24" x2="48.26" y2="-5.08" width="0.1524" layer="91"/>
  5314. <wire x1="48.26" y1="-5.08" x2="50.8" y2="-5.08" width="0.1524" layer="91"/>
  5315. <junction x="48.26" y="-15.24"/>
  5316. <pinref part="X3" gate="-3" pin="1A"/>
  5317. <wire x1="314.96" y1="38.1" x2="302.26" y2="38.1" width="0.1524" layer="91"/>
  5318. <junction x="302.26" y="38.1"/>
  5319. </segment>
  5320. </net>
  5321. <net name="N$43" class="0">
  5322. <segment>
  5323. <pinref part="U$2" gate="G$1" pin="P$15"/>
  5324. <pinref part="X6" gate="-1" pin="1A"/>
  5325. <wire x1="76.2" y1="-5.08" x2="88.9" y2="-5.08" width="0.1524" layer="91"/>
  5326. </segment>
  5327. </net>
  5328. <net name="N$44" class="0">
  5329. <segment>
  5330. <pinref part="U$2" gate="G$1" pin="P$13"/>
  5331. <wire x1="76.2" y1="-15.24" x2="78.74" y2="-15.24" width="0.1524" layer="91"/>
  5332. <wire x1="78.74" y1="-15.24" x2="78.74" y2="-12.7" width="0.1524" layer="91"/>
  5333. <pinref part="X6" gate="-2" pin="1A"/>
  5334. <wire x1="78.74" y1="-12.7" x2="88.9" y2="-12.7" width="0.1524" layer="91"/>
  5335. </segment>
  5336. </net>
  5337. <net name="N$45" class="0">
  5338. <segment>
  5339. <pinref part="U$2" gate="G$1" pin="P$11"/>
  5340. <wire x1="76.2" y1="-25.4" x2="81.28" y2="-25.4" width="0.1524" layer="91"/>
  5341. <wire x1="81.28" y1="-25.4" x2="81.28" y2="-20.32" width="0.1524" layer="91"/>
  5342. <pinref part="X6" gate="-3" pin="1A"/>
  5343. <wire x1="81.28" y1="-20.32" x2="88.9" y2="-20.32" width="0.1524" layer="91"/>
  5344. </segment>
  5345. </net>
  5346. <net name="N$46" class="0">
  5347. <segment>
  5348. <pinref part="U$2" gate="G$1" pin="P$9"/>
  5349. <wire x1="76.2" y1="-35.56" x2="83.82" y2="-35.56" width="0.1524" layer="91"/>
  5350. <wire x1="83.82" y1="-35.56" x2="83.82" y2="-27.94" width="0.1524" layer="91"/>
  5351. <pinref part="X6" gate="-4" pin="1A"/>
  5352. <wire x1="83.82" y1="-27.94" x2="88.9" y2="-27.94" width="0.1524" layer="91"/>
  5353. </segment>
  5354. </net>
  5355. <net name="N$47" class="0">
  5356. <segment>
  5357. <pinref part="U$2" gate="G$1" pin="P$10"/>
  5358. <pinref part="U$2" gate="G$1" pin="P$12"/>
  5359. <wire x1="76.2" y1="-30.48" x2="76.2" y2="-20.32" width="0.1524" layer="91"/>
  5360. <pinref part="U$2" gate="G$1" pin="P$14"/>
  5361. <wire x1="76.2" y1="-20.32" x2="76.2" y2="-10.16" width="0.1524" layer="91"/>
  5362. <junction x="76.2" y="-20.32"/>
  5363. <pinref part="U$2" gate="G$1" pin="P$16"/>
  5364. <wire x1="76.2" y1="-10.16" x2="76.2" y2="0" width="0.1524" layer="91"/>
  5365. <junction x="76.2" y="-10.16"/>
  5366. <wire x1="76.2" y1="0" x2="76.2" y2="2.54" width="0.1524" layer="91"/>
  5367. <wire x1="76.2" y1="2.54" x2="210.82" y2="2.54" width="0.1524" layer="91"/>
  5368. <junction x="76.2" y="0"/>
  5369. <wire x1="210.82" y1="7.62" x2="228.6" y2="7.62" width="0.1524" layer="91"/>
  5370. <wire x1="228.6" y1="7.62" x2="307.34" y2="7.62" width="0.1524" layer="91"/>
  5371. <wire x1="307.34" y1="7.62" x2="307.34" y2="30.48" width="0.1524" layer="91"/>
  5372. <wire x1="210.82" y1="2.54" x2="210.82" y2="7.62" width="0.1524" layer="91"/>
  5373. <pinref part="U$1" gate="G$1" pin="P$16"/>
  5374. <wire x1="228.6" y1="7.62" x2="228.6" y2="17.78" width="0.1524" layer="91"/>
  5375. <wire x1="228.6" y1="17.78" x2="228.6" y2="27.94" width="0.1524" layer="91"/>
  5376. <wire x1="228.6" y1="27.94" x2="228.6" y2="38.1" width="0.1524" layer="91"/>
  5377. <wire x1="228.6" y1="38.1" x2="228.6" y2="48.26" width="0.1524" layer="91"/>
  5378. <wire x1="228.6" y1="48.26" x2="226.06" y2="48.26" width="0.1524" layer="91"/>
  5379. <junction x="228.6" y="7.62"/>
  5380. <pinref part="U$1" gate="G$1" pin="P$14"/>
  5381. <wire x1="226.06" y1="38.1" x2="228.6" y2="38.1" width="0.1524" layer="91"/>
  5382. <junction x="228.6" y="38.1"/>
  5383. <pinref part="U$1" gate="G$1" pin="P$10"/>
  5384. <wire x1="226.06" y1="17.78" x2="228.6" y2="17.78" width="0.1524" layer="91"/>
  5385. <junction x="228.6" y="17.78"/>
  5386. <pinref part="U$1" gate="G$1" pin="P$12"/>
  5387. <wire x1="226.06" y1="27.94" x2="228.6" y2="27.94" width="0.1524" layer="91"/>
  5388. <junction x="228.6" y="27.94"/>
  5389. <pinref part="X3" gate="-4" pin="1A"/>
  5390. <wire x1="314.96" y1="30.48" x2="307.34" y2="30.48" width="0.1524" layer="91"/>
  5391. </segment>
  5392. </net>
  5393. <net name="N$48" class="0">
  5394. <segment>
  5395. <pinref part="JP2" gate="A" pin="1"/>
  5396. <wire x1="129.54" y1="63.5" x2="144.78" y2="63.5" width="0.1524" layer="91"/>
  5397. <wire x1="144.78" y1="63.5" x2="144.78" y2="165.1" width="0.1524" layer="91"/>
  5398. <pinref part="X7" gate="-1" pin="1A"/>
  5399. <wire x1="144.78" y1="165.1" x2="287.02" y2="165.1" width="0.1524" layer="91"/>
  5400. </segment>
  5401. </net>
  5402. <net name="N$49" class="0">
  5403. <segment>
  5404. <pinref part="JP2" gate="A" pin="10"/>
  5405. <wire x1="129.54" y1="40.64" x2="147.32" y2="40.64" width="0.1524" layer="91"/>
  5406. <wire x1="147.32" y1="40.64" x2="147.32" y2="157.48" width="0.1524" layer="91"/>
  5407. <pinref part="X7" gate="-2" pin="1A"/>
  5408. <wire x1="147.32" y1="157.48" x2="287.02" y2="157.48" width="0.1524" layer="91"/>
  5409. </segment>
  5410. </net>
  5411. <net name="N$50" class="0">
  5412. <segment>
  5413. <pinref part="JP3" gate="A" pin="2"/>
  5414. <wire x1="127" y1="-38.1" x2="149.86" y2="-38.1" width="0.1524" layer="91"/>
  5415. <wire x1="149.86" y1="-38.1" x2="149.86" y2="149.86" width="0.1524" layer="91"/>
  5416. <pinref part="X7" gate="-3" pin="1A"/>
  5417. <wire x1="149.86" y1="149.86" x2="287.02" y2="149.86" width="0.1524" layer="91"/>
  5418. </segment>
  5419. </net>
  5420. <net name="N$51" class="0">
  5421. <segment>
  5422. <pinref part="JP3" gate="A" pin="3"/>
  5423. <wire x1="127" y1="-40.64" x2="152.4" y2="-40.64" width="0.1524" layer="91"/>
  5424. <wire x1="152.4" y1="-40.64" x2="152.4" y2="142.24" width="0.1524" layer="91"/>
  5425. <pinref part="X7" gate="-4" pin="1A"/>
  5426. <wire x1="152.4" y1="142.24" x2="287.02" y2="142.24" width="0.1524" layer="91"/>
  5427. </segment>
  5428. </net>
  5429. <net name="N$52" class="0">
  5430. <segment>
  5431. <pinref part="JP4" gate="A" pin="1"/>
  5432. <wire x1="0" y1="-5.08" x2="12.7" y2="-5.08" width="0.1524" layer="91"/>
  5433. <wire x1="12.7" y1="-5.08" x2="12.7" y2="12.7" width="0.1524" layer="91"/>
  5434. <wire x1="12.7" y1="12.7" x2="154.94" y2="12.7" width="0.1524" layer="91"/>
  5435. <wire x1="154.94" y1="12.7" x2="154.94" y2="134.62" width="0.1524" layer="91"/>
  5436. <pinref part="X7" gate="-5" pin="1A"/>
  5437. <wire x1="154.94" y1="134.62" x2="287.02" y2="134.62" width="0.1524" layer="91"/>
  5438. </segment>
  5439. </net>
  5440. <net name="N$53" class="0">
  5441. <segment>
  5442. <pinref part="JP4" gate="A" pin="6"/>
  5443. <wire x1="0" y1="-17.78" x2="15.24" y2="-17.78" width="0.1524" layer="91"/>
  5444. <wire x1="15.24" y1="-17.78" x2="15.24" y2="10.16" width="0.1524" layer="91"/>
  5445. <wire x1="15.24" y1="10.16" x2="157.48" y2="10.16" width="0.1524" layer="91"/>
  5446. <pinref part="X7" gate="-6" pin="1A"/>
  5447. <wire x1="157.48" y1="10.16" x2="157.48" y2="127" width="0.1524" layer="91"/>
  5448. <wire x1="157.48" y1="127" x2="287.02" y2="127" width="0.1524" layer="91"/>
  5449. </segment>
  5450. </net>
  5451. <net name="N$54" class="0">
  5452. <segment>
  5453. <pinref part="JP4" gate="A" pin="7"/>
  5454. <wire x1="0" y1="-20.32" x2="17.78" y2="-20.32" width="0.1524" layer="91"/>
  5455. <wire x1="17.78" y1="-20.32" x2="17.78" y2="7.62" width="0.1524" layer="91"/>
  5456. <wire x1="17.78" y1="7.62" x2="160.02" y2="7.62" width="0.1524" layer="91"/>
  5457. <wire x1="160.02" y1="7.62" x2="160.02" y2="119.38" width="0.1524" layer="91"/>
  5458. <pinref part="X7" gate="-7" pin="1A"/>
  5459. <wire x1="160.02" y1="119.38" x2="287.02" y2="119.38" width="0.1524" layer="91"/>
  5460. </segment>
  5461. </net>
  5462. <net name="N$55" class="0">
  5463. <segment>
  5464. <wire x1="20.32" y1="-22.86" x2="20.32" y2="5.08" width="0.1524" layer="91"/>
  5465. <wire x1="20.32" y1="5.08" x2="162.56" y2="5.08" width="0.1524" layer="91"/>
  5466. <wire x1="162.56" y1="5.08" x2="162.56" y2="111.76" width="0.1524" layer="91"/>
  5467. <pinref part="JP4" gate="A" pin="8"/>
  5468. <wire x1="0" y1="-22.86" x2="20.32" y2="-22.86" width="0.1524" layer="91"/>
  5469. <pinref part="X7" gate="-8" pin="1A"/>
  5470. <wire x1="162.56" y1="111.76" x2="287.02" y2="111.76" width="0.1524" layer="91"/>
  5471. </segment>
  5472. </net>
  5473. <net name="N$25" class="0">
  5474. <segment>
  5475. <pinref part="U$1" gate="G$1" pin="P$13"/>
  5476. <pinref part="X5" gate="-2" pin="1A"/>
  5477. <wire x1="226.06" y1="33.02" x2="231.14" y2="33.02" width="0.1524" layer="91"/>
  5478. </segment>
  5479. </net>
  5480. <net name="N$14" class="0">
  5481. <segment>
  5482. <pinref part="R8" gate="G$1" pin="2"/>
  5483. <wire x1="182.88" y1="20.32" x2="195.58" y2="20.32" width="0.1524" layer="91"/>
  5484. <wire x1="195.58" y1="20.32" x2="195.58" y2="48.26" width="0.1524" layer="91"/>
  5485. <pinref part="U$1" gate="G$1" pin="P$8"/>
  5486. <wire x1="195.58" y1="48.26" x2="200.66" y2="48.26" width="0.1524" layer="91"/>
  5487. </segment>
  5488. </net>
  5489. <net name="N$18" class="0">
  5490. <segment>
  5491. <pinref part="R7" gate="G$1" pin="2"/>
  5492. <wire x1="185.42" y1="25.4" x2="193.04" y2="25.4" width="0.1524" layer="91"/>
  5493. <wire x1="193.04" y1="25.4" x2="193.04" y2="38.1" width="0.1524" layer="91"/>
  5494. <pinref part="U$1" gate="G$1" pin="P$6"/>
  5495. <wire x1="193.04" y1="38.1" x2="200.66" y2="38.1" width="0.1524" layer="91"/>
  5496. </segment>
  5497. </net>
  5498. <net name="N$19" class="0">
  5499. <segment>
  5500. <pinref part="R6" gate="G$1" pin="2"/>
  5501. <wire x1="185.42" y1="38.1" x2="190.5" y2="38.1" width="0.1524" layer="91"/>
  5502. <wire x1="190.5" y1="38.1" x2="190.5" y2="27.94" width="0.1524" layer="91"/>
  5503. <pinref part="U$1" gate="G$1" pin="P$4"/>
  5504. <wire x1="190.5" y1="27.94" x2="200.66" y2="27.94" width="0.1524" layer="91"/>
  5505. </segment>
  5506. </net>
  5507. <net name="N$20" class="0">
  5508. <segment>
  5509. <pinref part="R5" gate="G$1" pin="2"/>
  5510. <wire x1="182.88" y1="48.26" x2="187.96" y2="48.26" width="0.1524" layer="91"/>
  5511. <wire x1="187.96" y1="48.26" x2="187.96" y2="17.78" width="0.1524" layer="91"/>
  5512. <pinref part="U$1" gate="G$1" pin="P$2"/>
  5513. <wire x1="187.96" y1="17.78" x2="200.66" y2="17.78" width="0.1524" layer="91"/>
  5514. </segment>
  5515. </net>
  5516. <net name="N$10" class="0">
  5517. <segment>
  5518. <pinref part="JP2" gate="A" pin="3"/>
  5519. <wire x1="129.54" y1="58.42" x2="170.18" y2="58.42" width="0.1524" layer="91"/>
  5520. <wire x1="170.18" y1="58.42" x2="170.18" y2="99.06" width="0.1524" layer="91"/>
  5521. <pinref part="X2" gate="-2" pin="1A"/>
  5522. <wire x1="170.18" y1="99.06" x2="223.52" y2="99.06" width="0.1524" layer="91"/>
  5523. </segment>
  5524. </net>
  5525. <net name="N$13" class="0">
  5526. <segment>
  5527. <pinref part="R9" gate="G$1" pin="2"/>
  5528. <wire x1="33.02" y1="2.54" x2="45.72" y2="2.54" width="0.1524" layer="91"/>
  5529. <wire x1="45.72" y1="2.54" x2="45.72" y2="-30.48" width="0.1524" layer="91"/>
  5530. <pinref part="U$2" gate="G$1" pin="P$2"/>
  5531. <wire x1="45.72" y1="-30.48" x2="50.8" y2="-30.48" width="0.1524" layer="91"/>
  5532. </segment>
  5533. </net>
  5534. <net name="N$15" class="0">
  5535. <segment>
  5536. <pinref part="R10" gate="G$1" pin="2"/>
  5537. <wire x1="33.02" y1="-10.16" x2="33.02" y2="-15.24" width="0.1524" layer="91"/>
  5538. <wire x1="33.02" y1="-15.24" x2="43.18" y2="-15.24" width="0.1524" layer="91"/>
  5539. <wire x1="43.18" y1="-15.24" x2="43.18" y2="-20.32" width="0.1524" layer="91"/>
  5540. <pinref part="U$2" gate="G$1" pin="P$4"/>
  5541. <wire x1="43.18" y1="-20.32" x2="50.8" y2="-20.32" width="0.1524" layer="91"/>
  5542. </segment>
  5543. </net>
  5544. <net name="N$27" class="0">
  5545. <segment>
  5546. <pinref part="R11" gate="G$1" pin="2"/>
  5547. <wire x1="35.56" y1="-20.32" x2="40.64" y2="-20.32" width="0.1524" layer="91"/>
  5548. <wire x1="40.64" y1="-20.32" x2="40.64" y2="-10.16" width="0.1524" layer="91"/>
  5549. <pinref part="U$2" gate="G$1" pin="P$6"/>
  5550. <wire x1="40.64" y1="-10.16" x2="50.8" y2="-10.16" width="0.1524" layer="91"/>
  5551. </segment>
  5552. </net>
  5553. <net name="N$30" class="0">
  5554. <segment>
  5555. <pinref part="R12" gate="G$1" pin="2"/>
  5556. <wire x1="35.56" y1="-30.48" x2="38.1" y2="-30.48" width="0.1524" layer="91"/>
  5557. <wire x1="38.1" y1="-30.48" x2="38.1" y2="0" width="0.1524" layer="91"/>
  5558. <pinref part="U$2" gate="G$1" pin="P$8"/>
  5559. <wire x1="38.1" y1="0" x2="50.8" y2="0" width="0.1524" layer="91"/>
  5560. </segment>
  5561. </net>
  5562. </nets>
  5563. </sheet>
  5564. </sheets>
  5565. </schematic>
  5566. </drawing>
  5567. </eagle>