ADC.sch 336 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951
  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="yes" active="no"/>
  12. <layer number="2" name="Route2" color="1" fill="3" visible="yes" active="no"/>
  13. <layer number="3" name="Route3" color="4" fill="3" visible="yes" active="no"/>
  14. <layer number="4" name="Route4" color="1" fill="4" visible="yes" active="no"/>
  15. <layer number="5" name="Route5" color="4" fill="4" visible="yes" active="no"/>
  16. <layer number="6" name="Route6" color="1" fill="8" visible="yes" active="no"/>
  17. <layer number="7" name="Route7" color="4" fill="8" visible="yes" active="no"/>
  18. <layer number="8" name="Route8" color="1" fill="2" visible="yes" active="no"/>
  19. <layer number="9" name="Route9" color="4" fill="2" visible="yes" active="no"/>
  20. <layer number="10" name="Route10" color="1" fill="7" visible="yes" active="no"/>
  21. <layer number="11" name="Route11" color="4" fill="7" visible="yes" active="no"/>
  22. <layer number="12" name="Route12" color="1" fill="5" visible="yes" active="no"/>
  23. <layer number="13" name="Route13" color="4" fill="5" visible="yes" active="no"/>
  24. <layer number="14" name="Route14" color="1" fill="6" visible="yes" active="no"/>
  25. <layer number="15" name="Route15" color="4" fill="6" visible="yes" active="no"/>
  26. <layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="no"/>
  27. <layer number="17" name="Pads" color="2" fill="1" visible="yes" active="no"/>
  28. <layer number="18" name="Vias" color="2" fill="1" visible="yes" active="no"/>
  29. <layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="no"/>
  30. <layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="no"/>
  31. <layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="no"/>
  32. <layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="no"/>
  33. <layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="no"/>
  34. <layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="no"/>
  35. <layer number="25" name="tNames" color="7" fill="1" visible="yes" active="no"/>
  36. <layer number="26" name="bNames" color="7" fill="1" visible="yes" active="no"/>
  37. <layer number="27" name="tValues" color="7" fill="1" visible="yes" active="no"/>
  38. <layer number="28" name="bValues" color="7" fill="1" visible="yes" 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="yes" active="no"/>
  48. <layer number="38" name="bTest" color="7" fill="1" visible="yes" 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="yes" active="no"/>
  57. <layer number="47" name="Measures" color="7" fill="1" visible="yes" active="no"/>
  58. <layer number="48" name="Document" color="7" fill="1" visible="yes" active="no"/>
  59. <layer number="49" name="Reference" color="7" fill="1" visible="yes" active="no"/>
  60. <layer number="50" name="dxf" color="7" fill="1" visible="yes" active="no"/>
  61. <layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="no"/>
  62. <layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="no"/>
  63. <layer number="53" name="tGND_GNDA" color="7" fill="9" visible="yes" active="no"/>
  64. <layer number="54" name="bGND_GNDA" color="1" fill="9" visible="yes" active="no"/>
  65. <layer number="56" name="wert" color="7" fill="1" visible="yes" active="no"/>
  66. <layer number="57" name="tCAD" color="7" fill="1" visible="yes" active="no"/>
  67. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  68. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  69. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  70. <layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
  71. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  72. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  73. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  74. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  75. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  76. <layer number="99" name="SpiceOrder" color="5" fill="1" visible="yes" active="yes"/>
  77. <layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
  78. <layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/>
  79. <layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/>
  80. <layer number="103" name="fp3" color="7" fill="1" visible="no" active="yes"/>
  81. <layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/>
  82. <layer number="105" name="Beschreib" color="9" fill="1" visible="no" active="yes"/>
  83. <layer number="106" name="BGA-Top" color="4" fill="1" visible="no" active="yes"/>
  84. <layer number="107" name="BD-Top" color="5" fill="1" visible="no" active="yes"/>
  85. <layer number="108" name="fp8" color="7" fill="1" visible="no" active="yes"/>
  86. <layer number="109" name="fp9" color="7" fill="1" visible="no" active="yes"/>
  87. <layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/>
  88. <layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/>
  89. <layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/>
  90. <layer number="113" name="ReferenceLS" color="7" fill="1" visible="no" active="no"/>
  91. <layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/>
  92. <layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="no"/>
  93. <layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/>
  94. <layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/>
  95. <layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/>
  96. <layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/>
  97. <layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/>
  98. <layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/>
  99. <layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/>
  100. <layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/>
  101. <layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/>
  102. <layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/>
  103. <layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/>
  104. <layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/>
  105. <layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/>
  106. <layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/>
  107. <layer number="153" name="FabDoc1" color="6" fill="1" visible="no" active="no"/>
  108. <layer number="154" name="FabDoc2" color="2" fill="1" visible="no" active="no"/>
  109. <layer number="155" name="FabDoc3" color="7" fill="15" visible="no" active="no"/>
  110. <layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/>
  111. <layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/>
  112. <layer number="201" name="201bmp" color="2" fill="1" visible="no" active="no"/>
  113. <layer number="202" name="202bmp" color="3" fill="1" visible="no" active="no"/>
  114. <layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/>
  115. <layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/>
  116. <layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/>
  117. <layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/>
  118. <layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/>
  119. <layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/>
  120. <layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/>
  121. <layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/>
  122. <layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/>
  123. <layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/>
  124. <layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/>
  125. <layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/>
  126. <layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/>
  127. <layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/>
  128. <layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
  129. <layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
  130. <layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
  131. <layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
  132. <layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
  133. <layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
  134. <layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
  135. <layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
  136. <layer number="231" name="Eagle3D_PG1" color="7" fill="1" visible="no" active="no"/>
  137. <layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="no"/>
  138. <layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="no"/>
  139. <layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/>
  140. <layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/>
  141. <layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
  142. <layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
  143. <layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/>
  144. </layers>
  145. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  146. <libraries>
  147. <library name="pinhead">
  148. <description>&lt;b&gt;Pin Header Connectors&lt;/b&gt;&lt;p&gt;
  149. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  150. <packages>
  151. <package name="1X02">
  152. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  153. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  154. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  155. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  156. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  157. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  158. <wire x1="-1.905" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  159. <wire x1="-2.54" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  160. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  161. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  162. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  163. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  164. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  165. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  166. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  167. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  168. <pad name="1" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  169. <pad name="2" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  170. <text x="-2.6162" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  171. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  172. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  173. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  174. </package>
  175. <package name="1X02/90">
  176. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  177. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  178. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  179. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  180. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  181. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  182. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  183. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  184. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  185. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  186. <pad name="1" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  187. <pad name="2" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  188. <text x="-3.175" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  189. <text x="4.445" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  190. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  191. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  192. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  193. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  194. </package>
  195. <package name="1X06">
  196. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  197. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  198. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  199. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  200. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  201. <wire x1="2.54" y1="0.635" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  202. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  203. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  204. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  205. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  206. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  207. <wire x1="3.175" y1="-1.27" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  208. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  209. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  210. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  211. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  212. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  213. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  214. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  215. <wire x1="0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  216. <wire x1="0" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  217. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  218. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  219. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  220. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  221. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  222. <wire x1="-5.08" y1="0.635" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
  223. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  224. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  225. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  226. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  227. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  228. <wire x1="-4.445" y1="-1.27" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  229. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  230. <wire x1="-6.985" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  231. <wire x1="-7.62" y1="-0.635" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  232. <wire x1="-5.715" y1="-1.27" x2="-6.985" 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="5.715" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  238. <wire x1="5.08" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  239. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  240. <pad name="1" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  241. <pad name="2" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  242. <pad name="3" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  243. <pad name="4" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  244. <pad name="5" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  245. <pad name="6" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  246. <text x="-7.6962" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  247. <text x="-7.62" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  248. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  249. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  250. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  251. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  252. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  253. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  254. </package>
  255. <package name="1X06/90">
  256. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  257. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  258. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  259. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  260. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  261. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  262. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  263. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  264. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  265. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  266. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  267. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  268. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  269. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  270. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  271. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  272. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  273. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  274. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  275. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  276. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  277. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  278. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  279. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  280. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  281. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  282. <pad name="1" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  283. <pad name="2" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  284. <pad name="3" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  285. <pad name="4" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  286. <pad name="5" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  287. <pad name="6" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  288. <text x="-8.255" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  289. <text x="9.525" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  290. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  291. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  292. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  293. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  294. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  295. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  296. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  297. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  298. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  299. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  300. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  301. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  302. </package>
  303. <package name="1X08">
  304. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  305. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  306. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  307. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  308. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  309. <wire x1="2.54" y1="0.635" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  310. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  311. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  312. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  313. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  314. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  315. <wire x1="3.175" y1="-1.27" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  316. <wire x1="5.715" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  317. <wire x1="5.08" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  318. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  319. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  320. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  321. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  322. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  323. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  324. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  325. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  326. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  327. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  328. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  329. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  330. <wire x1="-5.08" y1="0.635" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
  331. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  332. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  333. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  334. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  335. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  336. <wire x1="-4.445" y1="-1.27" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  337. <wire x1="-1.905" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  338. <wire x1="-2.54" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  339. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  340. <wire x1="-9.525" y1="1.27" x2="-8.255" y2="1.27" width="0.1524" layer="21"/>
  341. <wire x1="-8.255" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  342. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  343. <wire x1="-7.62" y1="-0.635" x2="-8.255" y2="-1.27" width="0.1524" layer="21"/>
  344. <wire x1="-7.62" y1="0.635" x2="-6.985" y2="1.27" width="0.1524" layer="21"/>
  345. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  346. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  347. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  348. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  349. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  350. <wire x1="-6.985" y1="-1.27" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  351. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  352. <wire x1="-9.525" y1="1.27" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  353. <wire x1="-10.16" y1="-0.635" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  354. <wire x1="-8.255" y1="-1.27" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  355. <wire x1="8.255" y1="1.27" x2="9.525" y2="1.27" width="0.1524" layer="21"/>
  356. <wire x1="9.525" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  357. <wire x1="10.16" y1="0.635" x2="10.16" y2="-0.635" width="0.1524" layer="21"/>
  358. <wire x1="10.16" y1="-0.635" x2="9.525" y2="-1.27" width="0.1524" layer="21"/>
  359. <wire x1="8.255" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  360. <wire x1="7.62" y1="-0.635" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  361. <wire x1="9.525" y1="-1.27" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  362. <pad name="1" x="-8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  363. <pad name="2" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  364. <pad name="3" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  365. <pad name="4" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  366. <pad name="5" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  367. <pad name="6" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  368. <pad name="7" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  369. <pad name="8" x="8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  370. <text x="-10.2362" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  371. <text x="-10.16" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  372. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  373. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  374. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  375. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  376. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  377. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  378. <rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
  379. <rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
  380. </package>
  381. <package name="1X08/90">
  382. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  383. <wire x1="-10.16" y1="-1.905" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  384. <wire x1="-7.62" y1="-1.905" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  385. <wire x1="-7.62" y1="0.635" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  386. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-1.905" width="0.1524" layer="21"/>
  387. <wire x1="-8.89" y1="6.985" x2="-8.89" y2="1.27" width="0.762" layer="21"/>
  388. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  389. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  390. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  391. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  392. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  393. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  394. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  395. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  396. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  397. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  398. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  399. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  400. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  401. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  402. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  403. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  404. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  405. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  406. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  407. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  408. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  409. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  410. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  411. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  412. <wire x1="7.62" y1="-1.905" x2="10.16" y2="-1.905" width="0.1524" layer="21"/>
  413. <wire x1="10.16" y1="-1.905" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  414. <wire x1="10.16" y1="0.635" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  415. <wire x1="8.89" y1="6.985" x2="8.89" y2="1.27" width="0.762" layer="21"/>
  416. <pad name="1" x="-8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  417. <pad name="2" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  418. <pad name="3" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  419. <pad name="4" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  420. <pad name="5" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  421. <pad name="6" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  422. <pad name="7" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  423. <pad name="8" x="8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  424. <text x="-10.795" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  425. <text x="12.065" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  426. <rectangle x1="-9.271" y1="0.635" x2="-8.509" y2="1.143" layer="21"/>
  427. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  428. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  429. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  430. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  431. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  432. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  433. <rectangle x1="8.509" y1="0.635" x2="9.271" y2="1.143" layer="21"/>
  434. <rectangle x1="-9.271" y1="-2.921" x2="-8.509" y2="-1.905" layer="21"/>
  435. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  436. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  437. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  438. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  439. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  440. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  441. <rectangle x1="8.509" y1="-2.921" x2="9.271" y2="-1.905" layer="21"/>
  442. </package>
  443. </packages>
  444. <symbols>
  445. <symbol name="PINHD2">
  446. <wire x1="-6.35" y1="-2.54" x2="1.27" y2="-2.54" width="0.4064" layer="94"/>
  447. <wire x1="1.27" y1="-2.54" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  448. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  449. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-2.54" width="0.4064" layer="94"/>
  450. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  451. <text x="-6.35" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  452. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  453. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  454. </symbol>
  455. <symbol name="PINHD6">
  456. <wire x1="-6.35" y1="-7.62" x2="1.27" y2="-7.62" width="0.4064" layer="94"/>
  457. <wire x1="1.27" y1="-7.62" x2="1.27" y2="10.16" width="0.4064" layer="94"/>
  458. <wire x1="1.27" y1="10.16" x2="-6.35" y2="10.16" width="0.4064" layer="94"/>
  459. <wire x1="-6.35" y1="10.16" x2="-6.35" y2="-7.62" width="0.4064" layer="94"/>
  460. <text x="-6.35" y="10.795" size="1.778" layer="95">&gt;NAME</text>
  461. <text x="-6.35" y="-10.16" size="1.778" layer="96">&gt;VALUE</text>
  462. <pin name="1" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  463. <pin name="2" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  464. <pin name="3" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  465. <pin name="4" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  466. <pin name="5" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  467. <pin name="6" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  468. </symbol>
  469. <symbol name="PINHD8">
  470. <wire x1="-6.35" y1="-10.16" x2="1.27" y2="-10.16" width="0.4064" layer="94"/>
  471. <wire x1="1.27" y1="-10.16" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  472. <wire x1="1.27" y1="12.7" x2="-6.35" y2="12.7" width="0.4064" layer="94"/>
  473. <wire x1="-6.35" y1="12.7" x2="-6.35" y2="-10.16" width="0.4064" layer="94"/>
  474. <text x="-6.35" y="13.335" size="1.778" layer="95">&gt;NAME</text>
  475. <text x="-6.35" y="-12.7" size="1.778" layer="96">&gt;VALUE</text>
  476. <pin name="1" x="-2.54" y="10.16" visible="pad" length="short" direction="pas" function="dot"/>
  477. <pin name="2" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  478. <pin name="3" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  479. <pin name="4" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  480. <pin name="5" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  481. <pin name="6" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  482. <pin name="7" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  483. <pin name="8" x="-2.54" y="-7.62" visible="pad" length="short" direction="pas" function="dot"/>
  484. </symbol>
  485. </symbols>
  486. <devicesets>
  487. <deviceset name="PINHD-1X2" prefix="JP" uservalue="yes">
  488. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  489. <gates>
  490. <gate name="G$1" symbol="PINHD2" x="0" y="0"/>
  491. </gates>
  492. <devices>
  493. <device name="" package="1X02">
  494. <connects>
  495. <connect gate="G$1" pin="1" pad="1"/>
  496. <connect gate="G$1" pin="2" pad="2"/>
  497. </connects>
  498. <technologies>
  499. <technology name=""/>
  500. </technologies>
  501. </device>
  502. <device name="/90" package="1X02/90">
  503. <connects>
  504. <connect gate="G$1" pin="1" pad="1"/>
  505. <connect gate="G$1" pin="2" pad="2"/>
  506. </connects>
  507. <technologies>
  508. <technology name=""/>
  509. </technologies>
  510. </device>
  511. </devices>
  512. </deviceset>
  513. <deviceset name="PINHD-1X6" prefix="JP" uservalue="yes">
  514. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  515. <gates>
  516. <gate name="A" symbol="PINHD6" x="0" y="-2.54"/>
  517. </gates>
  518. <devices>
  519. <device name="" package="1X06">
  520. <connects>
  521. <connect gate="A" pin="1" pad="1"/>
  522. <connect gate="A" pin="2" pad="2"/>
  523. <connect gate="A" pin="3" pad="3"/>
  524. <connect gate="A" pin="4" pad="4"/>
  525. <connect gate="A" pin="5" pad="5"/>
  526. <connect gate="A" pin="6" pad="6"/>
  527. </connects>
  528. <technologies>
  529. <technology name=""/>
  530. </technologies>
  531. </device>
  532. <device name="/90" package="1X06/90">
  533. <connects>
  534. <connect gate="A" pin="1" pad="1"/>
  535. <connect gate="A" pin="2" pad="2"/>
  536. <connect gate="A" pin="3" pad="3"/>
  537. <connect gate="A" pin="4" pad="4"/>
  538. <connect gate="A" pin="5" pad="5"/>
  539. <connect gate="A" pin="6" pad="6"/>
  540. </connects>
  541. <technologies>
  542. <technology name=""/>
  543. </technologies>
  544. </device>
  545. </devices>
  546. </deviceset>
  547. <deviceset name="PINHD-1X8" prefix="JP" uservalue="yes">
  548. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  549. <gates>
  550. <gate name="A" symbol="PINHD8" x="0" y="0"/>
  551. </gates>
  552. <devices>
  553. <device name="" package="1X08">
  554. <connects>
  555. <connect gate="A" pin="1" pad="1"/>
  556. <connect gate="A" pin="2" pad="2"/>
  557. <connect gate="A" pin="3" pad="3"/>
  558. <connect gate="A" pin="4" pad="4"/>
  559. <connect gate="A" pin="5" pad="5"/>
  560. <connect gate="A" pin="6" pad="6"/>
  561. <connect gate="A" pin="7" pad="7"/>
  562. <connect gate="A" pin="8" pad="8"/>
  563. </connects>
  564. <technologies>
  565. <technology name=""/>
  566. </technologies>
  567. </device>
  568. <device name="/90" package="1X08/90">
  569. <connects>
  570. <connect gate="A" pin="1" pad="1"/>
  571. <connect gate="A" pin="2" pad="2"/>
  572. <connect gate="A" pin="3" pad="3"/>
  573. <connect gate="A" pin="4" pad="4"/>
  574. <connect gate="A" pin="5" pad="5"/>
  575. <connect gate="A" pin="6" pad="6"/>
  576. <connect gate="A" pin="7" pad="7"/>
  577. <connect gate="A" pin="8" pad="8"/>
  578. </connects>
  579. <technologies>
  580. <technology name=""/>
  581. </technologies>
  582. </device>
  583. </devices>
  584. </deviceset>
  585. </devicesets>
  586. </library>
  587. <library name="resistor">
  588. <description>&lt;b&gt;Resistors, Capacitors, Inductors&lt;/b&gt;&lt;p&gt;
  589. Based on the previous libraries:
  590. &lt;ul&gt;
  591. &lt;li&gt;r.lbr
  592. &lt;li&gt;cap.lbr
  593. &lt;li&gt;cap-fe.lbr
  594. &lt;li&gt;captant.lbr
  595. &lt;li&gt;polcap.lbr
  596. &lt;li&gt;ipc-smd.lbr
  597. &lt;/ul&gt;
  598. All SMD packages are defined according to the IPC specifications and CECC&lt;p&gt;
  599. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;p&gt;
  600. &lt;p&gt;
  601. for Electrolyt Capacitors see also :&lt;p&gt;
  602. www.bccomponents.com &lt;p&gt;
  603. www.panasonic.com&lt;p&gt;
  604. www.kemet.com&lt;p&gt;
  605. &lt;p&gt;
  606. for trimmer refence see : &lt;u&gt;www.electrospec-inc.com/cross_references/trimpotcrossref.asp&lt;/u&gt;&lt;p&gt;
  607. &lt;map name="nav_main"&gt;
  608. &lt;area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title=""&gt;
  609. &lt;area shape="rect" coords="0,24,140,51" href="../about.asp" title=""&gt;
  610. &lt;area shape="rect" coords="1,52,140,77" href="../rfq.asp" title=""&gt;
  611. &lt;area shape="rect" coords="0,78,139,103" href="../products.asp" title=""&gt;
  612. &lt;area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title=""&gt;
  613. &lt;area shape="rect" coords="1,129,138,150" href="../edge.asp" title=""&gt;
  614. &lt;area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title=""&gt;
  615. &lt;area shape="rect" coords="0,179,139,201" href="../comments.asp" title=""&gt;
  616. &lt;area shape="rect" coords="1,203,138,231" href="../directory.asp" title=""&gt;
  617. &lt;area shape="default" nohref&gt;
  618. &lt;/map&gt;
  619. &lt;html&gt;
  620. &lt;title&gt;&lt;/title&gt;
  621. &lt;LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css"&gt;
  622. &lt;body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"&gt;
  623. &lt;table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%"&gt;
  624. &lt;tr valign="top"&gt;
  625. &lt;/td&gt;
  626. &lt;! &lt;td width="10"&gt;&amp;nbsp;&lt;/td&gt;
  627. &lt;td width="90%"&gt;
  628. &lt;b&gt;&lt;font color="#0000FF" size="4"&gt;TRIM-POT CROSS REFERENCE&lt;/font&gt;&lt;/b&gt;
  629. &lt;P&gt;
  630. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2&gt;
  631. &lt;TR&gt;
  632. &lt;TD COLSPAN=8&gt;
  633. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;RECTANGULAR MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  634. &lt;/TD&gt;
  635. &lt;/TR&gt;
  636. &lt;TR&gt;
  637. &lt;TD ALIGN=CENTER&gt;
  638. &lt;B&gt;
  639. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BOURNS&lt;/FONT&gt;
  640. &lt;/B&gt;
  641. &lt;/TD&gt;
  642. &lt;TD ALIGN=CENTER&gt;
  643. &lt;B&gt;
  644. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BI&amp;nbsp;TECH&lt;/FONT&gt;
  645. &lt;/B&gt;
  646. &lt;/TD&gt;
  647. &lt;TD ALIGN=CENTER&gt;
  648. &lt;B&gt;
  649. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;DALE-VISHAY&lt;/FONT&gt;
  650. &lt;/B&gt;
  651. &lt;/TD&gt;
  652. &lt;TD ALIGN=CENTER&gt;
  653. &lt;B&gt;
  654. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PHILIPS/MEPCO&lt;/FONT&gt;
  655. &lt;/B&gt;
  656. &lt;/TD&gt;
  657. &lt;TD ALIGN=CENTER&gt;
  658. &lt;B&gt;
  659. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MURATA&lt;/FONT&gt;
  660. &lt;/B&gt;
  661. &lt;/TD&gt;
  662. &lt;TD ALIGN=CENTER&gt;
  663. &lt;B&gt;
  664. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PANASONIC&lt;/FONT&gt;
  665. &lt;/B&gt;
  666. &lt;/TD&gt;
  667. &lt;TD ALIGN=CENTER&gt;
  668. &lt;B&gt;
  669. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;SPECTROL&lt;/FONT&gt;
  670. &lt;/B&gt;
  671. &lt;/TD&gt;
  672. &lt;TD ALIGN=CENTER&gt;
  673. &lt;B&gt;
  674. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MILSPEC&lt;/FONT&gt;
  675. &lt;/B&gt;
  676. &lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
  677. &lt;/TR&gt;
  678. &lt;TR&gt;
  679. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3 &gt;
  680. 3005P&lt;BR&gt;
  681. 3006P&lt;BR&gt;
  682. 3006W&lt;BR&gt;
  683. 3006Y&lt;BR&gt;
  684. 3009P&lt;BR&gt;
  685. 3009W&lt;BR&gt;
  686. 3009Y&lt;BR&gt;
  687. 3057J&lt;BR&gt;
  688. 3057L&lt;BR&gt;
  689. 3057P&lt;BR&gt;
  690. 3057Y&lt;BR&gt;
  691. 3059J&lt;BR&gt;
  692. 3059L&lt;BR&gt;
  693. 3059P&lt;BR&gt;
  694. 3059Y&lt;BR&gt;&lt;/FONT&gt;
  695. &lt;/TD&gt;
  696. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  697. -&lt;BR&gt;
  698. 89P&lt;BR&gt;
  699. 89W&lt;BR&gt;
  700. 89X&lt;BR&gt;
  701. 89PH&lt;BR&gt;
  702. 76P&lt;BR&gt;
  703. 89XH&lt;BR&gt;
  704. 78SLT&lt;BR&gt;
  705. 78L&amp;nbsp;ALT&lt;BR&gt;
  706. 56P&amp;nbsp;ALT&lt;BR&gt;
  707. 78P&amp;nbsp;ALT&lt;BR&gt;
  708. T8S&lt;BR&gt;
  709. 78L&lt;BR&gt;
  710. 56P&lt;BR&gt;
  711. 78P&lt;BR&gt;&lt;/FONT&gt;
  712. &lt;/TD&gt;
  713. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  714. -&lt;BR&gt;
  715. T18/784&lt;BR&gt;
  716. 783&lt;BR&gt;
  717. 781&lt;BR&gt;
  718. -&lt;BR&gt;
  719. -&lt;BR&gt;
  720. -&lt;BR&gt;
  721. 2199&lt;BR&gt;
  722. 1697/1897&lt;BR&gt;
  723. 1680/1880&lt;BR&gt;
  724. 2187&lt;BR&gt;
  725. -&lt;BR&gt;
  726. -&lt;BR&gt;
  727. -&lt;BR&gt;
  728. -&lt;BR&gt;&lt;/FONT&gt;
  729. &lt;/TD&gt;
  730. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  731. -&lt;BR&gt;
  732. 8035EKP/CT20/RJ-20P&lt;BR&gt;
  733. -&lt;BR&gt;
  734. RJ-20X&lt;BR&gt;
  735. -&lt;BR&gt;
  736. -&lt;BR&gt;
  737. -&lt;BR&gt;
  738. 1211L&lt;BR&gt;
  739. 8012EKQ&amp;nbsp;ALT&lt;BR&gt;
  740. 8012EKR&amp;nbsp;ALT&lt;BR&gt;
  741. 1211P&lt;BR&gt;
  742. 8012EKJ&lt;BR&gt;
  743. 8012EKL&lt;BR&gt;
  744. 8012EKQ&lt;BR&gt;
  745. 8012EKR&lt;BR&gt;&lt;/FONT&gt;
  746. &lt;/TD&gt;
  747. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  748. -&lt;BR&gt;
  749. 2101P&lt;BR&gt;
  750. 2101W&lt;BR&gt;
  751. 2101Y&lt;BR&gt;
  752. -&lt;BR&gt;
  753. -&lt;BR&gt;
  754. -&lt;BR&gt;
  755. -&lt;BR&gt;
  756. -&lt;BR&gt;
  757. -&lt;BR&gt;
  758. -&lt;BR&gt;
  759. -&lt;BR&gt;
  760. 2102L&lt;BR&gt;
  761. 2102S&lt;BR&gt;
  762. 2102Y&lt;BR&gt;&lt;/FONT&gt;
  763. &lt;/TD&gt;
  764. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  765. -&lt;BR&gt;
  766. EVMCOG&lt;BR&gt;
  767. -&lt;BR&gt;
  768. -&lt;BR&gt;
  769. -&lt;BR&gt;
  770. -&lt;BR&gt;
  771. -&lt;BR&gt;
  772. -&lt;BR&gt;
  773. -&lt;BR&gt;
  774. -&lt;BR&gt;
  775. -&lt;BR&gt;
  776. -&lt;BR&gt;
  777. -&lt;BR&gt;
  778. -&lt;BR&gt;
  779. -&lt;BR&gt;&lt;/FONT&gt;
  780. &lt;/TD&gt;
  781. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  782. -&lt;BR&gt;
  783. 43P&lt;BR&gt;
  784. 43W&lt;BR&gt;
  785. 43Y&lt;BR&gt;
  786. -&lt;BR&gt;
  787. -&lt;BR&gt;
  788. -&lt;BR&gt;
  789. -&lt;BR&gt;
  790. 40L&lt;BR&gt;
  791. 40P&lt;BR&gt;
  792. 40Y&lt;BR&gt;
  793. 70Y-T602&lt;BR&gt;
  794. 70L&lt;BR&gt;
  795. 70P&lt;BR&gt;
  796. 70Y&lt;BR&gt;&lt;/FONT&gt;
  797. &lt;/TD&gt;
  798. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  799. -&lt;BR&gt;
  800. -&lt;BR&gt;
  801. -&lt;BR&gt;
  802. -&lt;BR&gt;
  803. -&lt;BR&gt;
  804. -&lt;BR&gt;
  805. -&lt;BR&gt;
  806. -&lt;BR&gt;
  807. RT/RTR12&lt;BR&gt;
  808. RT/RTR12&lt;BR&gt;
  809. RT/RTR12&lt;BR&gt;
  810. -&lt;BR&gt;
  811. RJ/RJR12&lt;BR&gt;
  812. RJ/RJR12&lt;BR&gt;
  813. RJ/RJR12&lt;BR&gt;&lt;/FONT&gt;
  814. &lt;/TD&gt;
  815. &lt;/TR&gt;
  816. &lt;TR&gt;
  817. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  818. &lt;/TD&gt;
  819. &lt;/TR&gt;
  820. &lt;TR&gt;
  821. &lt;TD COLSPAN=8&gt;
  822. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SQUARE MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  823. &lt;/TD&gt;
  824. &lt;/TR&gt;
  825. &lt;TR&gt;
  826. &lt;TD ALIGN=CENTER&gt;
  827. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  828. &lt;/TD&gt;
  829. &lt;TD ALIGN=CENTER&gt;
  830. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  831. &lt;/TD&gt;
  832. &lt;TD ALIGN=CENTER&gt;
  833. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  834. &lt;/TD&gt;
  835. &lt;TD ALIGN=CENTER&gt;
  836. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  837. &lt;/TD&gt;
  838. &lt;TD ALIGN=CENTER&gt;
  839. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  840. &lt;/TD&gt;
  841. &lt;TD ALIGN=CENTER&gt;
  842. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  843. &lt;/TD&gt;
  844. &lt;TD ALIGN=CENTER&gt;
  845. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  846. &lt;/TD&gt;
  847. &lt;TD ALIGN=CENTER&gt;
  848. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  849. &lt;/TD&gt;
  850. &lt;/TR&gt;
  851. &lt;TR&gt;
  852. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  853. 3250L&lt;BR&gt;
  854. 3250P&lt;BR&gt;
  855. 3250W&lt;BR&gt;
  856. 3250X&lt;BR&gt;
  857. 3252P&lt;BR&gt;
  858. 3252W&lt;BR&gt;
  859. 3252X&lt;BR&gt;
  860. 3260P&lt;BR&gt;
  861. 3260W&lt;BR&gt;
  862. 3260X&lt;BR&gt;
  863. 3262P&lt;BR&gt;
  864. 3262W&lt;BR&gt;
  865. 3262X&lt;BR&gt;
  866. 3266P&lt;BR&gt;
  867. 3266W&lt;BR&gt;
  868. 3266X&lt;BR&gt;
  869. 3290H&lt;BR&gt;
  870. 3290P&lt;BR&gt;
  871. 3290W&lt;BR&gt;
  872. 3292P&lt;BR&gt;
  873. 3292W&lt;BR&gt;
  874. 3292X&lt;BR&gt;
  875. 3296P&lt;BR&gt;
  876. 3296W&lt;BR&gt;
  877. 3296X&lt;BR&gt;
  878. 3296Y&lt;BR&gt;
  879. 3296Z&lt;BR&gt;
  880. 3299P&lt;BR&gt;
  881. 3299W&lt;BR&gt;
  882. 3299X&lt;BR&gt;
  883. 3299Y&lt;BR&gt;
  884. 3299Z&lt;BR&gt;&lt;/FONT&gt;
  885. &lt;/TD&gt;
  886. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  887. -&lt;BR&gt;
  888. 66P&amp;nbsp;ALT&lt;BR&gt;
  889. 66W&amp;nbsp;ALT&lt;BR&gt;
  890. 66X&amp;nbsp;ALT&lt;BR&gt;
  891. 66P&amp;nbsp;ALT&lt;BR&gt;
  892. 66W&amp;nbsp;ALT&lt;BR&gt;
  893. 66X&amp;nbsp;ALT&lt;BR&gt;
  894. -&lt;BR&gt;
  895. 64W&amp;nbsp;ALT&lt;BR&gt;
  896. -&lt;BR&gt;
  897. 64P&amp;nbsp;ALT&lt;BR&gt;
  898. 64W&amp;nbsp;ALT&lt;BR&gt;
  899. 64X&amp;nbsp;ALT&lt;BR&gt;
  900. 64P&lt;BR&gt;
  901. 64W&lt;BR&gt;
  902. 64X&lt;BR&gt;
  903. 66X&amp;nbsp;ALT&lt;BR&gt;
  904. 66P&amp;nbsp;ALT&lt;BR&gt;
  905. 66W&amp;nbsp;ALT&lt;BR&gt;
  906. 66P&lt;BR&gt;
  907. 66W&lt;BR&gt;
  908. 66X&lt;BR&gt;
  909. 67P&lt;BR&gt;
  910. 67W&lt;BR&gt;
  911. 67X&lt;BR&gt;
  912. 67Y&lt;BR&gt;
  913. 67Z&lt;BR&gt;
  914. 68P&lt;BR&gt;
  915. 68W&lt;BR&gt;
  916. 68X&lt;BR&gt;
  917. 67Y&amp;nbsp;ALT&lt;BR&gt;
  918. 67Z&amp;nbsp;ALT&lt;BR&gt;&lt;/FONT&gt;
  919. &lt;/TD&gt;
  920. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  921. 5050&lt;BR&gt;
  922. 5091&lt;BR&gt;
  923. 5080&lt;BR&gt;
  924. 5087&lt;BR&gt;
  925. -&lt;BR&gt;
  926. -&lt;BR&gt;
  927. -&lt;BR&gt;
  928. -&lt;BR&gt;
  929. -&lt;BR&gt;
  930. -&lt;BR&gt;
  931. -&lt;BR&gt;
  932. T63YB&lt;BR&gt;
  933. T63XB&lt;BR&gt;
  934. -&lt;BR&gt;
  935. -&lt;BR&gt;
  936. -&lt;BR&gt;
  937. 5887&lt;BR&gt;
  938. 5891&lt;BR&gt;
  939. 5880&lt;BR&gt;
  940. -&lt;BR&gt;
  941. -&lt;BR&gt;
  942. -&lt;BR&gt;
  943. T93Z&lt;BR&gt;
  944. T93YA&lt;BR&gt;
  945. T93XA&lt;BR&gt;
  946. T93YB&lt;BR&gt;
  947. T93XB&lt;BR&gt;
  948. -&lt;BR&gt;
  949. -&lt;BR&gt;
  950. -&lt;BR&gt;
  951. -&lt;BR&gt;
  952. -&lt;BR&gt;&lt;/FONT&gt;
  953. &lt;/TD&gt;
  954. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  955. -&lt;BR&gt;
  956. -&lt;BR&gt;
  957. -&lt;BR&gt;
  958. -&lt;BR&gt;
  959. -&lt;BR&gt;
  960. -&lt;BR&gt;
  961. -&lt;BR&gt;
  962. -&lt;BR&gt;
  963. -&lt;BR&gt;
  964. -&lt;BR&gt;
  965. 8026EKP&lt;BR&gt;
  966. 8026EKW&lt;BR&gt;
  967. 8026EKM&lt;BR&gt;
  968. 8026EKP&lt;BR&gt;
  969. 8026EKB&lt;BR&gt;
  970. 8026EKM&lt;BR&gt;
  971. 1309X&lt;BR&gt;
  972. 1309P&lt;BR&gt;
  973. 1309W&lt;BR&gt;
  974. 8024EKP&lt;BR&gt;
  975. 8024EKW&lt;BR&gt;
  976. 8024EKN&lt;BR&gt;
  977. RJ-9P/CT9P&lt;BR&gt;
  978. RJ-9W&lt;BR&gt;
  979. RJ-9X&lt;BR&gt;
  980. -&lt;BR&gt;
  981. -&lt;BR&gt;
  982. -&lt;BR&gt;
  983. -&lt;BR&gt;
  984. -&lt;BR&gt;
  985. -&lt;BR&gt;
  986. -&lt;BR&gt;&lt;/FONT&gt;
  987. &lt;/TD&gt;
  988. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  989. -&lt;BR&gt;
  990. -&lt;BR&gt;
  991. -&lt;BR&gt;
  992. -&lt;BR&gt;
  993. -&lt;BR&gt;
  994. -&lt;BR&gt;
  995. -&lt;BR&gt;
  996. -&lt;BR&gt;
  997. -&lt;BR&gt;
  998. -&lt;BR&gt;
  999. 3103P&lt;BR&gt;
  1000. 3103Y&lt;BR&gt;
  1001. 3103Z&lt;BR&gt;
  1002. 3103P&lt;BR&gt;
  1003. 3103Y&lt;BR&gt;
  1004. 3103Z&lt;BR&gt;
  1005. -&lt;BR&gt;
  1006. -&lt;BR&gt;
  1007. -&lt;BR&gt;
  1008. -&lt;BR&gt;
  1009. -&lt;BR&gt;
  1010. -&lt;BR&gt;
  1011. 3105P/3106P&lt;BR&gt;
  1012. 3105W/3106W&lt;BR&gt;
  1013. 3105X/3106X&lt;BR&gt;
  1014. 3105Y/3106Y&lt;BR&gt;
  1015. 3105Z/3105Z&lt;BR&gt;
  1016. 3102P&lt;BR&gt;
  1017. 3102W&lt;BR&gt;
  1018. 3102X&lt;BR&gt;
  1019. 3102Y&lt;BR&gt;
  1020. 3102Z&lt;BR&gt;&lt;/FONT&gt;
  1021. &lt;/TD&gt;
  1022. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1023. -&lt;BR&gt;
  1024. -&lt;BR&gt;
  1025. -&lt;BR&gt;
  1026. -&lt;BR&gt;
  1027. -&lt;BR&gt;
  1028. -&lt;BR&gt;
  1029. -&lt;BR&gt;
  1030. -&lt;BR&gt;
  1031. -&lt;BR&gt;
  1032. -&lt;BR&gt;
  1033. -&lt;BR&gt;
  1034. -&lt;BR&gt;
  1035. -&lt;BR&gt;
  1036. -&lt;BR&gt;
  1037. -&lt;BR&gt;
  1038. -&lt;BR&gt;
  1039. -&lt;BR&gt;
  1040. -&lt;BR&gt;
  1041. -&lt;BR&gt;
  1042. -&lt;BR&gt;
  1043. -&lt;BR&gt;
  1044. -&lt;BR&gt;
  1045. EVMCBG&lt;BR&gt;
  1046. EVMCCG&lt;BR&gt;
  1047. -&lt;BR&gt;
  1048. -&lt;BR&gt;
  1049. -&lt;BR&gt;
  1050. -&lt;BR&gt;
  1051. -&lt;BR&gt;
  1052. -&lt;BR&gt;
  1053. -&lt;BR&gt;
  1054. -&lt;BR&gt;&lt;/FONT&gt;
  1055. &lt;/TD&gt;
  1056. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1057. 55-1-X&lt;BR&gt;
  1058. 55-4-X&lt;BR&gt;
  1059. 55-3-X&lt;BR&gt;
  1060. 55-2-X&lt;BR&gt;
  1061. -&lt;BR&gt;
  1062. -&lt;BR&gt;
  1063. -&lt;BR&gt;
  1064. -&lt;BR&gt;
  1065. -&lt;BR&gt;
  1066. -&lt;BR&gt;
  1067. -&lt;BR&gt;
  1068. -&lt;BR&gt;
  1069. -&lt;BR&gt;
  1070. -&lt;BR&gt;
  1071. -&lt;BR&gt;
  1072. -&lt;BR&gt;
  1073. 50-2-X&lt;BR&gt;
  1074. 50-4-X&lt;BR&gt;
  1075. 50-3-X&lt;BR&gt;
  1076. -&lt;BR&gt;
  1077. -&lt;BR&gt;
  1078. -&lt;BR&gt;
  1079. 64P&lt;BR&gt;
  1080. 64W&lt;BR&gt;
  1081. 64X&lt;BR&gt;
  1082. 64Y&lt;BR&gt;
  1083. 64Z&lt;BR&gt;
  1084. -&lt;BR&gt;
  1085. -&lt;BR&gt;
  1086. -&lt;BR&gt;
  1087. -&lt;BR&gt;
  1088. -&lt;BR&gt;&lt;/FONT&gt;
  1089. &lt;/TD&gt;
  1090. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1091. RT/RTR22&lt;BR&gt;
  1092. RT/RTR22&lt;BR&gt;
  1093. RT/RTR22&lt;BR&gt;
  1094. RT/RTR22&lt;BR&gt;
  1095. RJ/RJR22&lt;BR&gt;
  1096. RJ/RJR22&lt;BR&gt;
  1097. RJ/RJR22&lt;BR&gt;
  1098. RT/RTR26&lt;BR&gt;
  1099. RT/RTR26&lt;BR&gt;
  1100. RT/RTR26&lt;BR&gt;
  1101. RJ/RJR26&lt;BR&gt;
  1102. RJ/RJR26&lt;BR&gt;
  1103. RJ/RJR26&lt;BR&gt;
  1104. RJ/RJR26&lt;BR&gt;
  1105. RJ/RJR26&lt;BR&gt;
  1106. RJ/RJR26&lt;BR&gt;
  1107. RT/RTR24&lt;BR&gt;
  1108. RT/RTR24&lt;BR&gt;
  1109. RT/RTR24&lt;BR&gt;
  1110. RJ/RJR24&lt;BR&gt;
  1111. RJ/RJR24&lt;BR&gt;
  1112. RJ/RJR24&lt;BR&gt;
  1113. RJ/RJR24&lt;BR&gt;
  1114. RJ/RJR24&lt;BR&gt;
  1115. RJ/RJR24&lt;BR&gt;
  1116. -&lt;BR&gt;
  1117. -&lt;BR&gt;
  1118. -&lt;BR&gt;
  1119. -&lt;BR&gt;
  1120. -&lt;BR&gt;
  1121. -&lt;BR&gt;
  1122. -&lt;BR&gt;&lt;/FONT&gt;
  1123. &lt;/TD&gt;
  1124. &lt;/TR&gt;
  1125. &lt;TR&gt;
  1126. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1127. &lt;/TD&gt;
  1128. &lt;/TR&gt;
  1129. &lt;TR&gt;
  1130. &lt;TD COLSPAN=8&gt;
  1131. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1132. &lt;/TD&gt;
  1133. &lt;/TR&gt;
  1134. &lt;TR&gt;
  1135. &lt;TD ALIGN=CENTER&gt;
  1136. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1137. &lt;/TD&gt;
  1138. &lt;TD ALIGN=CENTER&gt;
  1139. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1140. &lt;/TD&gt;
  1141. &lt;TD ALIGN=CENTER&gt;
  1142. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1143. &lt;/TD&gt;
  1144. &lt;TD ALIGN=CENTER&gt;
  1145. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1146. &lt;/TD&gt;
  1147. &lt;TD ALIGN=CENTER&gt;
  1148. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1149. &lt;/TD&gt;
  1150. &lt;TD ALIGN=CENTER&gt;
  1151. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1152. &lt;/TD&gt;
  1153. &lt;TD ALIGN=CENTER&gt;
  1154. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1155. &lt;/TD&gt;
  1156. &lt;TD ALIGN=CENTER&gt;
  1157. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1158. &lt;/TD&gt;
  1159. &lt;/TR&gt;
  1160. &lt;TR&gt;
  1161. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1162. 3323P&lt;BR&gt;
  1163. 3323S&lt;BR&gt;
  1164. 3323W&lt;BR&gt;
  1165. 3329H&lt;BR&gt;
  1166. 3329P&lt;BR&gt;
  1167. 3329W&lt;BR&gt;
  1168. 3339H&lt;BR&gt;
  1169. 3339P&lt;BR&gt;
  1170. 3339W&lt;BR&gt;
  1171. 3352E&lt;BR&gt;
  1172. 3352H&lt;BR&gt;
  1173. 3352K&lt;BR&gt;
  1174. 3352P&lt;BR&gt;
  1175. 3352T&lt;BR&gt;
  1176. 3352V&lt;BR&gt;
  1177. 3352W&lt;BR&gt;
  1178. 3362H&lt;BR&gt;
  1179. 3362M&lt;BR&gt;
  1180. 3362P&lt;BR&gt;
  1181. 3362R&lt;BR&gt;
  1182. 3362S&lt;BR&gt;
  1183. 3362U&lt;BR&gt;
  1184. 3362W&lt;BR&gt;
  1185. 3362X&lt;BR&gt;
  1186. 3386B&lt;BR&gt;
  1187. 3386C&lt;BR&gt;
  1188. 3386F&lt;BR&gt;
  1189. 3386H&lt;BR&gt;
  1190. 3386K&lt;BR&gt;
  1191. 3386M&lt;BR&gt;
  1192. 3386P&lt;BR&gt;
  1193. 3386S&lt;BR&gt;
  1194. 3386W&lt;BR&gt;
  1195. 3386X&lt;BR&gt;&lt;/FONT&gt;
  1196. &lt;/TD&gt;
  1197. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1198. 25P&lt;BR&gt;
  1199. 25S&lt;BR&gt;
  1200. 25RX&lt;BR&gt;
  1201. 82P&lt;BR&gt;
  1202. 82M&lt;BR&gt;
  1203. 82PA&lt;BR&gt;
  1204. -&lt;BR&gt;
  1205. -&lt;BR&gt;
  1206. -&lt;BR&gt;
  1207. 91E&lt;BR&gt;
  1208. 91X&lt;BR&gt;
  1209. 91T&lt;BR&gt;
  1210. 91B&lt;BR&gt;
  1211. 91A&lt;BR&gt;
  1212. 91V&lt;BR&gt;
  1213. 91W&lt;BR&gt;
  1214. 25W&lt;BR&gt;
  1215. 25V&lt;BR&gt;
  1216. 25P&lt;BR&gt;
  1217. -&lt;BR&gt;
  1218. 25S&lt;BR&gt;
  1219. 25U&lt;BR&gt;
  1220. 25RX&lt;BR&gt;
  1221. 25X&lt;BR&gt;
  1222. 72XW&lt;BR&gt;
  1223. 72XL&lt;BR&gt;
  1224. 72PM&lt;BR&gt;
  1225. 72RX&lt;BR&gt;
  1226. -&lt;BR&gt;
  1227. 72PX&lt;BR&gt;
  1228. 72P&lt;BR&gt;
  1229. 72RXW&lt;BR&gt;
  1230. 72RXL&lt;BR&gt;
  1231. 72X&lt;BR&gt;&lt;/FONT&gt;
  1232. &lt;/TD&gt;
  1233. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1234. -&lt;BR&gt;
  1235. -&lt;BR&gt;
  1236. -&lt;BR&gt;
  1237. T7YB&lt;BR&gt;
  1238. T7YA&lt;BR&gt;
  1239. -&lt;BR&gt;
  1240. -&lt;BR&gt;
  1241. -&lt;BR&gt;
  1242. -&lt;BR&gt;
  1243. -&lt;BR&gt;
  1244. -&lt;BR&gt;
  1245. -&lt;BR&gt;
  1246. -&lt;BR&gt;
  1247. -&lt;BR&gt;
  1248. -&lt;BR&gt;
  1249. -&lt;BR&gt;
  1250. -&lt;BR&gt;
  1251. TXD&lt;BR&gt;
  1252. TYA&lt;BR&gt;
  1253. TYP&lt;BR&gt;
  1254. -&lt;BR&gt;
  1255. TYD&lt;BR&gt;
  1256. TX&lt;BR&gt;
  1257. -&lt;BR&gt;
  1258. 150SX&lt;BR&gt;
  1259. 100SX&lt;BR&gt;
  1260. 102T&lt;BR&gt;
  1261. 101S&lt;BR&gt;
  1262. 190T&lt;BR&gt;
  1263. 150TX&lt;BR&gt;
  1264. 101&lt;BR&gt;
  1265. -&lt;BR&gt;
  1266. -&lt;BR&gt;
  1267. 101SX&lt;BR&gt;&lt;/FONT&gt;
  1268. &lt;/TD&gt;
  1269. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1270. ET6P&lt;BR&gt;
  1271. ET6S&lt;BR&gt;
  1272. ET6X&lt;BR&gt;
  1273. RJ-6W/8014EMW&lt;BR&gt;
  1274. RJ-6P/8014EMP&lt;BR&gt;
  1275. RJ-6X/8014EMX&lt;BR&gt;
  1276. TM7W&lt;BR&gt;
  1277. TM7P&lt;BR&gt;
  1278. TM7X&lt;BR&gt;
  1279. -&lt;BR&gt;
  1280. 8017SMS&lt;BR&gt;
  1281. -&lt;BR&gt;
  1282. 8017SMB&lt;BR&gt;
  1283. 8017SMA&lt;BR&gt;
  1284. -&lt;BR&gt;
  1285. -&lt;BR&gt;
  1286. CT-6W&lt;BR&gt;
  1287. CT-6H&lt;BR&gt;
  1288. CT-6P&lt;BR&gt;
  1289. CT-6R&lt;BR&gt;
  1290. -&lt;BR&gt;
  1291. CT-6V&lt;BR&gt;
  1292. CT-6X&lt;BR&gt;
  1293. -&lt;BR&gt;
  1294. -&lt;BR&gt;
  1295. 8038EKV&lt;BR&gt;
  1296. -&lt;BR&gt;
  1297. 8038EKX&lt;BR&gt;
  1298. -&lt;BR&gt;
  1299. -&lt;BR&gt;
  1300. 8038EKP&lt;BR&gt;
  1301. 8038EKZ&lt;BR&gt;
  1302. 8038EKW&lt;BR&gt;
  1303. -&lt;BR&gt;&lt;/FONT&gt;
  1304. &lt;/TD&gt;
  1305. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1306. -&lt;BR&gt;
  1307. -&lt;BR&gt;
  1308. -&lt;BR&gt;
  1309. 3321H&lt;BR&gt;
  1310. 3321P&lt;BR&gt;
  1311. 3321N&lt;BR&gt;
  1312. 1102H&lt;BR&gt;
  1313. 1102P&lt;BR&gt;
  1314. 1102T&lt;BR&gt;
  1315. RVA0911V304A&lt;BR&gt;
  1316. -&lt;BR&gt;
  1317. RVA0911H413A&lt;BR&gt;
  1318. RVG0707V100A&lt;BR&gt;
  1319. RVA0607V(H)306A&lt;BR&gt;
  1320. RVA1214H213A&lt;BR&gt;
  1321. -&lt;BR&gt;
  1322. -&lt;BR&gt;
  1323. -&lt;BR&gt;
  1324. -&lt;BR&gt;
  1325. -&lt;BR&gt;
  1326. -&lt;BR&gt;
  1327. -&lt;BR&gt;
  1328. -&lt;BR&gt;
  1329. -&lt;BR&gt;
  1330. 3104B&lt;BR&gt;
  1331. 3104C&lt;BR&gt;
  1332. 3104F&lt;BR&gt;
  1333. 3104H&lt;BR&gt;
  1334. -&lt;BR&gt;
  1335. 3104M&lt;BR&gt;
  1336. 3104P&lt;BR&gt;
  1337. 3104S&lt;BR&gt;
  1338. 3104W&lt;BR&gt;
  1339. 3104X&lt;BR&gt;&lt;/FONT&gt;
  1340. &lt;/TD&gt;
  1341. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1342. EVMQ0G&lt;BR&gt;
  1343. EVMQIG&lt;BR&gt;
  1344. EVMQ3G&lt;BR&gt;
  1345. EVMS0G&lt;BR&gt;
  1346. EVMQ0G&lt;BR&gt;
  1347. EVMG0G&lt;BR&gt;
  1348. -&lt;BR&gt;
  1349. -&lt;BR&gt;
  1350. -&lt;BR&gt;
  1351. EVMK4GA00B&lt;BR&gt;
  1352. EVM30GA00B&lt;BR&gt;
  1353. EVMK0GA00B&lt;BR&gt;
  1354. EVM38GA00B&lt;BR&gt;
  1355. EVMB6&lt;BR&gt;
  1356. EVLQ0&lt;BR&gt;
  1357. -&lt;BR&gt;
  1358. EVMMSG&lt;BR&gt;
  1359. EVMMBG&lt;BR&gt;
  1360. EVMMAG&lt;BR&gt;
  1361. -&lt;BR&gt;
  1362. -&lt;BR&gt;
  1363. EVMMCS&lt;BR&gt;
  1364. -&lt;BR&gt;
  1365. -&lt;BR&gt;
  1366. -&lt;BR&gt;
  1367. -&lt;BR&gt;
  1368. -&lt;BR&gt;
  1369. EVMM1&lt;BR&gt;
  1370. -&lt;BR&gt;
  1371. -&lt;BR&gt;
  1372. EVMM0&lt;BR&gt;
  1373. -&lt;BR&gt;
  1374. -&lt;BR&gt;
  1375. EVMM3&lt;BR&gt;&lt;/FONT&gt;
  1376. &lt;/TD&gt;
  1377. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1378. -&lt;BR&gt;
  1379. -&lt;BR&gt;
  1380. -&lt;BR&gt;
  1381. 62-3-1&lt;BR&gt;
  1382. 62-1-2&lt;BR&gt;
  1383. -&lt;BR&gt;
  1384. -&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;
  1392. -&lt;BR&gt;
  1393. -&lt;BR&gt;
  1394. 67R&lt;BR&gt;
  1395. -&lt;BR&gt;
  1396. 67P&lt;BR&gt;
  1397. -&lt;BR&gt;
  1398. -&lt;BR&gt;
  1399. -&lt;BR&gt;
  1400. -&lt;BR&gt;
  1401. 67X&lt;BR&gt;
  1402. 63V&lt;BR&gt;
  1403. 63S&lt;BR&gt;
  1404. 63M&lt;BR&gt;
  1405. -&lt;BR&gt;
  1406. -&lt;BR&gt;
  1407. 63H&lt;BR&gt;
  1408. 63P&lt;BR&gt;
  1409. -&lt;BR&gt;
  1410. -&lt;BR&gt;
  1411. 63X&lt;BR&gt;&lt;/FONT&gt;
  1412. &lt;/TD&gt;
  1413. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1414. -&lt;BR&gt;
  1415. -&lt;BR&gt;
  1416. -&lt;BR&gt;
  1417. RJ/RJR50&lt;BR&gt;
  1418. RJ/RJR50&lt;BR&gt;
  1419. RJ/RJR50&lt;BR&gt;
  1420. -&lt;BR&gt;
  1421. -&lt;BR&gt;
  1422. -&lt;BR&gt;
  1423. -&lt;BR&gt;
  1424. -&lt;BR&gt;
  1425. -&lt;BR&gt;
  1426. -&lt;BR&gt;
  1427. -&lt;BR&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;&lt;/FONT&gt;
  1448. &lt;/TD&gt;
  1449. &lt;/TR&gt;
  1450. &lt;/TABLE&gt;
  1451. &lt;P&gt;&amp;nbsp;&lt;P&gt;
  1452. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3&gt;
  1453. &lt;TR&gt;
  1454. &lt;TD COLSPAN=7&gt;
  1455. &lt;FONT color="#0000FF" SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SMD TRIM-POT CROSS REFERENCE&lt;/B&gt;&lt;/FONT&gt;
  1456. &lt;P&gt;
  1457. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1458. &lt;/TD&gt;
  1459. &lt;/TR&gt;
  1460. &lt;TR&gt;
  1461. &lt;TD&gt;
  1462. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1463. &lt;/TD&gt;
  1464. &lt;TD&gt;
  1465. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1466. &lt;/TD&gt;
  1467. &lt;TD&gt;
  1468. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1469. &lt;/TD&gt;
  1470. &lt;TD&gt;
  1471. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1472. &lt;/TD&gt;
  1473. &lt;TD&gt;
  1474. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1475. &lt;/TD&gt;
  1476. &lt;TD&gt;
  1477. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1478. &lt;/TD&gt;
  1479. &lt;TD&gt;
  1480. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1481. &lt;/TD&gt;
  1482. &lt;/TR&gt;
  1483. &lt;TR&gt;
  1484. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1485. 3224G&lt;BR&gt;
  1486. 3224J&lt;BR&gt;
  1487. 3224W&lt;BR&gt;
  1488. 3269P&lt;BR&gt;
  1489. 3269W&lt;BR&gt;
  1490. 3269X&lt;BR&gt;&lt;/FONT&gt;
  1491. &lt;/TD&gt;
  1492. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1493. 44G&lt;BR&gt;
  1494. 44J&lt;BR&gt;
  1495. 44W&lt;BR&gt;
  1496. 84P&lt;BR&gt;
  1497. 84W&lt;BR&gt;
  1498. 84X&lt;BR&gt;&lt;/FONT&gt;
  1499. &lt;/TD&gt;
  1500. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1501. -&lt;BR&gt;
  1502. -&lt;BR&gt;
  1503. -&lt;BR&gt;
  1504. ST63Z&lt;BR&gt;
  1505. ST63Y&lt;BR&gt;
  1506. -&lt;BR&gt;&lt;/FONT&gt;
  1507. &lt;/TD&gt;
  1508. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1509. -&lt;BR&gt;
  1510. -&lt;BR&gt;
  1511. -&lt;BR&gt;
  1512. ST5P&lt;BR&gt;
  1513. ST5W&lt;BR&gt;
  1514. ST5X&lt;BR&gt;&lt;/FONT&gt;
  1515. &lt;/TD&gt;
  1516. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1517. -&lt;BR&gt;
  1518. -&lt;BR&gt;
  1519. -&lt;BR&gt;
  1520. -&lt;BR&gt;
  1521. -&lt;BR&gt;
  1522. -&lt;BR&gt;&lt;/FONT&gt;
  1523. &lt;/TD&gt;
  1524. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1525. -&lt;BR&gt;
  1526. -&lt;BR&gt;
  1527. -&lt;BR&gt;
  1528. -&lt;BR&gt;
  1529. -&lt;BR&gt;
  1530. -&lt;BR&gt;&lt;/FONT&gt;
  1531. &lt;/TD&gt;
  1532. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1533. -&lt;BR&gt;
  1534. -&lt;BR&gt;
  1535. -&lt;BR&gt;
  1536. -&lt;BR&gt;
  1537. -&lt;BR&gt;
  1538. -&lt;BR&gt;&lt;/FONT&gt;
  1539. &lt;/TD&gt;
  1540. &lt;/TR&gt;
  1541. &lt;TR&gt;
  1542. &lt;TD COLSPAN=7&gt;&amp;nbsp;
  1543. &lt;/TD&gt;
  1544. &lt;/TR&gt;
  1545. &lt;TR&gt;
  1546. &lt;TD COLSPAN=7&gt;
  1547. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1548. &lt;/TD&gt;
  1549. &lt;/TR&gt;
  1550. &lt;TR&gt;
  1551. &lt;TD&gt;
  1552. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1553. &lt;/TD&gt;
  1554. &lt;TD&gt;
  1555. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1556. &lt;/TD&gt;
  1557. &lt;TD&gt;
  1558. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1559. &lt;/TD&gt;
  1560. &lt;TD&gt;
  1561. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1562. &lt;/TD&gt;
  1563. &lt;TD&gt;
  1564. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1565. &lt;/TD&gt;
  1566. &lt;TD&gt;
  1567. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1568. &lt;/TD&gt;
  1569. &lt;TD&gt;
  1570. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1571. &lt;/TD&gt;
  1572. &lt;/TR&gt;
  1573. &lt;TR&gt;
  1574. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1575. 3314G&lt;BR&gt;
  1576. 3314J&lt;BR&gt;
  1577. 3364A/B&lt;BR&gt;
  1578. 3364C/D&lt;BR&gt;
  1579. 3364W/X&lt;BR&gt;
  1580. 3313G&lt;BR&gt;
  1581. 3313J&lt;BR&gt;&lt;/FONT&gt;
  1582. &lt;/TD&gt;
  1583. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1584. 23B&lt;BR&gt;
  1585. 23A&lt;BR&gt;
  1586. 21X&lt;BR&gt;
  1587. 21W&lt;BR&gt;
  1588. -&lt;BR&gt;
  1589. 22B&lt;BR&gt;
  1590. 22A&lt;BR&gt;&lt;/FONT&gt;
  1591. &lt;/TD&gt;
  1592. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1593. ST5YL/ST53YL&lt;BR&gt;
  1594. ST5YJ/5T53YJ&lt;BR&gt;
  1595. ST-23A&lt;BR&gt;
  1596. ST-22B&lt;BR&gt;
  1597. ST-22&lt;BR&gt;
  1598. -&lt;BR&gt;
  1599. -&lt;BR&gt;&lt;/FONT&gt;
  1600. &lt;/TD&gt;
  1601. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1602. ST-4B&lt;BR&gt;
  1603. ST-4A&lt;BR&gt;
  1604. -&lt;BR&gt;
  1605. -&lt;BR&gt;
  1606. -&lt;BR&gt;
  1607. ST-3B&lt;BR&gt;
  1608. ST-3A&lt;BR&gt;&lt;/FONT&gt;
  1609. &lt;/TD&gt;
  1610. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1611. -&lt;BR&gt;
  1612. EVM-6YS&lt;BR&gt;
  1613. EVM-1E&lt;BR&gt;
  1614. EVM-1G&lt;BR&gt;
  1615. EVM-1D&lt;BR&gt;
  1616. -&lt;BR&gt;
  1617. -&lt;BR&gt;&lt;/FONT&gt;
  1618. &lt;/TD&gt;
  1619. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1620. G4B&lt;BR&gt;
  1621. G4A&lt;BR&gt;
  1622. TR04-3S1&lt;BR&gt;
  1623. TRG04-2S1&lt;BR&gt;
  1624. -&lt;BR&gt;
  1625. -&lt;BR&gt;
  1626. -&lt;BR&gt;&lt;/FONT&gt;
  1627. &lt;/TD&gt;
  1628. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1629. -&lt;BR&gt;
  1630. -&lt;BR&gt;
  1631. DVR-43A&lt;BR&gt;
  1632. CVR-42C&lt;BR&gt;
  1633. CVR-42A/C&lt;BR&gt;
  1634. -&lt;BR&gt;
  1635. -&lt;BR&gt;&lt;/FONT&gt;
  1636. &lt;/TD&gt;
  1637. &lt;/TR&gt;
  1638. &lt;/TABLE&gt;
  1639. &lt;P&gt;
  1640. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;ALT =&amp;nbsp;ALTERNATE&lt;/B&gt;&lt;/FONT&gt;
  1641. &lt;P&gt;
  1642. &amp;nbsp;
  1643. &lt;P&gt;
  1644. &lt;/td&gt;
  1645. &lt;/tr&gt;
  1646. &lt;/table&gt;
  1647. &lt;/BODY&gt;&lt;/HTML&gt;</description>
  1648. <packages>
  1649. <package name="R0402">
  1650. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1651. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1652. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1653. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1654. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1655. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1656. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1657. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1658. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1659. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1660. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1661. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1662. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1663. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1664. </package>
  1665. <package name="R0603">
  1666. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1667. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  1668. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  1669. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  1670. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  1671. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  1672. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  1673. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1674. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1675. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1676. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1677. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  1678. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  1679. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1680. </package>
  1681. <package name="R0805">
  1682. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  1683. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1684. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1685. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1686. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1687. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1688. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1689. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1690. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1691. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1692. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1693. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1694. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1695. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1696. </package>
  1697. <package name="R0805W">
  1698. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;</description>
  1699. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1700. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1701. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1702. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1703. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1704. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1705. <smd name="1" x="-1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1706. <smd name="2" x="1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1707. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1708. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1709. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1710. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1711. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1712. </package>
  1713. <package name="R1206">
  1714. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1715. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  1716. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  1717. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1718. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1719. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1720. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1721. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1722. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1723. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1724. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1725. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  1726. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  1727. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1728. </package>
  1729. <package name="R1206W">
  1730. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1731. wave soldering</description>
  1732. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1733. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1734. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1735. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1736. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1737. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1738. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1739. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1740. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1741. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1742. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1743. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1744. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1745. </package>
  1746. <package name="R1210">
  1747. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1748. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1749. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1750. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1751. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1752. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1753. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1754. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1755. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1756. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1757. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1758. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1759. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1760. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  1761. </package>
  1762. <package name="R1210W">
  1763. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1764. wave soldering</description>
  1765. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1766. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1767. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1768. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1769. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1770. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1771. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1772. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1773. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1774. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1775. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1776. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1777. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  1778. </package>
  1779. <package name="R2010">
  1780. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1781. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1782. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1783. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1784. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1785. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1786. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1787. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1788. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1789. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1790. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1791. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1792. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1793. </package>
  1794. <package name="R2010W">
  1795. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1796. wave soldering</description>
  1797. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1798. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1799. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1800. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1801. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1802. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1803. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1804. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1805. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1806. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1807. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1808. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1809. </package>
  1810. <package name="R2012">
  1811. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1812. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1813. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1814. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1815. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1816. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1817. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1818. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1819. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1820. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1821. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1822. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1823. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1824. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1825. </package>
  1826. <package name="R2012W">
  1827. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1828. wave soldering</description>
  1829. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1830. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1831. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1832. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1833. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1834. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1835. <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1836. <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1837. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1838. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1839. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1840. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1841. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1842. </package>
  1843. <package name="R2512">
  1844. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1845. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1846. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1847. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1848. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1849. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1850. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1851. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1852. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1853. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1854. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1855. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1856. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1857. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1858. </package>
  1859. <package name="R2512W">
  1860. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1861. wave soldering</description>
  1862. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1863. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1864. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1865. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1866. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1867. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1868. <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1869. <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1870. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1871. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1872. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1873. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1874. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1875. </package>
  1876. <package name="R3216">
  1877. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1878. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1879. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1880. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1881. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1882. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1883. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1884. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1885. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1886. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1887. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1888. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1889. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1890. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1891. </package>
  1892. <package name="R3216W">
  1893. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1894. wave soldering</description>
  1895. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1896. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1897. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1898. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1899. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1900. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1901. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1902. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1903. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1904. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1905. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1906. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1907. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1908. </package>
  1909. <package name="R3225">
  1910. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1911. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1912. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1913. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1914. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1915. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1916. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1917. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1918. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1919. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1920. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1921. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1922. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1923. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1924. </package>
  1925. <package name="R3225W">
  1926. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1927. wave soldering</description>
  1928. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1929. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1930. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1931. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1932. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1933. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1934. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1935. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1936. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1937. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1938. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1939. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1940. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1941. </package>
  1942. <package name="R5025">
  1943. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1944. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1945. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1946. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1947. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1948. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1949. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1950. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1951. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1952. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1953. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1954. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1955. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1956. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1957. </package>
  1958. <package name="R5025W">
  1959. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1960. wave soldering</description>
  1961. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1962. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1963. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1964. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1965. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1966. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1967. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1968. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1969. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1970. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1971. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1972. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1973. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1974. </package>
  1975. <package name="R6332">
  1976. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1977. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  1978. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1979. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1980. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1981. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1982. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1983. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1984. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1985. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1986. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1987. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1988. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1989. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1990. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1991. </package>
  1992. <package name="R6332W">
  1993. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;
  1994. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  1995. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1996. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1997. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1998. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1999. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2000. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2001. <smd name="1" x="-3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2002. <smd name="2" x="3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2003. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2004. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2005. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2006. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2007. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2008. </package>
  2009. <package name="M0805">
  2010. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2011. MELF 0.10 W</description>
  2012. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2013. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2014. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2015. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2016. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2017. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2018. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2019. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2020. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2021. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2022. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2023. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2024. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2025. </package>
  2026. <package name="M1206">
  2027. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2028. MELF 0.25 W</description>
  2029. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2030. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2031. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2032. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2033. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2034. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2035. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2036. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2037. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2038. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2039. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2040. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2041. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2042. </package>
  2043. <package name="M1406">
  2044. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2045. MELF 0.12 W</description>
  2046. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2047. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2048. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2049. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2050. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2051. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2052. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2053. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2054. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2055. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2056. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2057. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2058. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2059. </package>
  2060. <package name="M2012">
  2061. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2062. MELF 0.10 W</description>
  2063. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2064. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2065. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2066. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2067. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2068. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2069. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2070. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2071. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2072. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2073. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2074. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2075. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2076. </package>
  2077. <package name="M2309">
  2078. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2079. MELF 0.25 W</description>
  2080. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2081. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2082. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2083. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2084. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2085. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2086. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2087. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2088. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2089. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2090. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2091. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2092. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2093. </package>
  2094. <package name="M3216">
  2095. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2096. MELF 0.25 W</description>
  2097. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2098. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2099. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2100. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2101. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2102. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2103. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2104. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2105. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2106. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2107. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2108. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2109. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2110. </package>
  2111. <package name="M3516">
  2112. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2113. MELF 0.12 W</description>
  2114. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2115. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2116. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2117. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2118. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2119. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2120. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2121. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2122. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2123. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2124. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2125. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2126. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  2127. </package>
  2128. <package name="M5923">
  2129. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2130. MELF 0.25 W</description>
  2131. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2132. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2133. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2134. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2135. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2136. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2137. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2138. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2139. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2140. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2141. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2142. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2143. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2144. </package>
  2145. <package name="0204/5">
  2146. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2147. type 0204, grid 5 mm</description>
  2148. <wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="51"/>
  2149. <wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="51"/>
  2150. <wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2151. <wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2152. <wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  2153. <wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  2154. <wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="51"/>
  2155. <wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2156. <wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2157. <wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2158. <wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2159. <wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2160. <wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
  2161. <wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2162. <wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
  2163. <wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2164. <wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2165. <wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="51"/>
  2166. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2167. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2168. <text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2169. <text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2170. <rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="51"/>
  2171. <rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="51"/>
  2172. </package>
  2173. <package name="0204/7">
  2174. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2175. type 0204, grid 7.5 mm</description>
  2176. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  2177. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  2178. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2179. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2180. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  2181. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  2182. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  2183. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2184. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2185. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2186. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2187. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2188. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  2189. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2190. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  2191. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2192. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2193. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  2194. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2195. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2196. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2197. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2198. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  2199. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  2200. </package>
  2201. <package name="0204V">
  2202. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2203. type 0204, grid 2.5 mm</description>
  2204. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="51"/>
  2205. <wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
  2206. <circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="51"/>
  2207. <circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="51"/>
  2208. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2209. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2210. <text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2211. <text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2212. </package>
  2213. <package name="0207/10">
  2214. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2215. type 0207, grid 10 mm</description>
  2216. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  2217. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  2218. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2219. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2220. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2221. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2222. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2223. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2224. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2225. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2226. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2227. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2228. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2229. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2230. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2231. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2232. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2233. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2234. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2235. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2236. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2237. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2238. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2239. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2240. </package>
  2241. <package name="0207/12">
  2242. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2243. type 0207, grid 12 mm</description>
  2244. <wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="51"/>
  2245. <wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="51"/>
  2246. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2247. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2248. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2249. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2250. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2251. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2252. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2253. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2254. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2255. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2256. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2257. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2258. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2259. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2260. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2261. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2262. <wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2263. <wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2264. <pad name="1" x="-6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2265. <pad name="2" x="6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2266. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2267. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2268. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2269. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2270. <rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
  2271. <rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  2272. </package>
  2273. <package name="0207/15">
  2274. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2275. type 0207, grid 15mm</description>
  2276. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="51"/>
  2277. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="51"/>
  2278. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2279. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2280. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2281. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2282. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2283. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2284. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2285. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2286. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2287. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2288. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2289. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2290. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2291. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2292. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2293. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2294. <wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2295. <wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2296. <pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
  2297. <pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
  2298. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2299. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2300. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2301. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2302. <rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
  2303. <rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
  2304. </package>
  2305. <package name="0207/2V">
  2306. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2307. type 0207, grid 2.5 mm</description>
  2308. <wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="51"/>
  2309. <wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
  2310. <wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="51"/>
  2311. <circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
  2312. <circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="51"/>
  2313. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2314. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2315. <text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2316. <text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2317. </package>
  2318. <package name="0207/5V">
  2319. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2320. type 0207, grid 5 mm</description>
  2321. <wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="51"/>
  2322. <wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
  2323. <wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="51"/>
  2324. <circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
  2325. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2326. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2327. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2328. <text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2329. <text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2330. </package>
  2331. <package name="0207/7">
  2332. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2333. type 0207, grid 7.5 mm</description>
  2334. <wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="51"/>
  2335. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2336. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2337. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2338. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2339. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="51"/>
  2340. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2341. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2342. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2343. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2344. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2345. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2346. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2347. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2348. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2349. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2350. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="51"/>
  2351. <wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="51"/>
  2352. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2353. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2354. <text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2355. <text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2356. <rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="51"/>
  2357. <rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="51"/>
  2358. </package>
  2359. <package name="0309/10">
  2360. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2361. type 0309, grid 10mm</description>
  2362. <wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2363. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2364. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2365. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2366. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2367. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="51"/>
  2368. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2369. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2370. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2371. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2372. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2373. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2374. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2375. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2376. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2377. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2378. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="51"/>
  2379. <wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="51"/>
  2380. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2381. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2382. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2383. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2384. <rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="51"/>
  2385. <rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="51"/>
  2386. </package>
  2387. <package name="0309/12">
  2388. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2389. type 0309, grid 12.5 mm</description>
  2390. <wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  2391. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2392. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2393. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2394. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2395. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2396. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
  2397. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2398. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2399. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2400. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2401. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2402. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2403. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2404. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2405. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2406. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2407. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
  2408. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  2409. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  2410. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2411. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2412. <rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
  2413. <rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
  2414. </package>
  2415. <package name="0309V">
  2416. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2417. type 0309, grid 2.5 mm</description>
  2418. <wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="51"/>
  2419. <wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="51"/>
  2420. <circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
  2421. <circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="51"/>
  2422. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2423. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2424. <text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2425. <text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2426. <rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="51"/>
  2427. <rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="51"/>
  2428. <rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
  2429. </package>
  2430. <package name="0411/12">
  2431. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2432. type 0411, grid 12.5 mm</description>
  2433. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="51"/>
  2434. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="51"/>
  2435. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2436. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2437. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2438. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2439. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2440. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2441. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2442. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2443. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2444. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2445. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2446. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2447. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2448. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2449. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2450. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2451. <pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
  2452. <pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
  2453. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2454. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2455. <rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2456. <rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
  2457. </package>
  2458. <package name="0411/15">
  2459. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2460. type 0411, grid 15 mm</description>
  2461. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2462. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2463. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2464. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2465. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2466. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2467. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2468. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2469. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2470. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2471. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2472. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2473. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2474. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2475. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2476. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2477. <wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="51"/>
  2478. <wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="51"/>
  2479. <pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
  2480. <pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
  2481. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2482. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2483. <rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
  2484. <rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2485. </package>
  2486. <package name="0411V">
  2487. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2488. type 0411, grid 3.81 mm</description>
  2489. <wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="51"/>
  2490. <wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="51"/>
  2491. <circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
  2492. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2493. <pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
  2494. <pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
  2495. <text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2496. <text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2497. <rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
  2498. </package>
  2499. <package name="0414/15">
  2500. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2501. type 0414, grid 15 mm</description>
  2502. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="51"/>
  2503. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="51"/>
  2504. <wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
  2505. <wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
  2506. <wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  2507. <wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  2508. <wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
  2509. <wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2510. <wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2511. <wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2512. <wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2513. <wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2514. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  2515. <wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2516. <wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
  2517. <wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2518. <wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2519. <wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
  2520. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2521. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2522. <text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2523. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2524. <rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
  2525. <rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
  2526. </package>
  2527. <package name="0414V">
  2528. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2529. type 0414, grid 5 mm</description>
  2530. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2531. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2532. <circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
  2533. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2534. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2535. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2536. <text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2537. <text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2538. <rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
  2539. </package>
  2540. <package name="0617/17">
  2541. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2542. type 0617, grid 17.5 mm</description>
  2543. <wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="51"/>
  2544. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2545. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2546. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2547. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2548. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2549. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2550. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2551. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2552. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2553. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2554. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
  2555. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="51"/>
  2556. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2557. <wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
  2558. <wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="51"/>
  2559. <wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2560. <wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="51"/>
  2561. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2562. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2563. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2564. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2565. <pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
  2566. <pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
  2567. <text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2568. <text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2569. <rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="51"/>
  2570. <rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="51"/>
  2571. </package>
  2572. <package name="0617/22">
  2573. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2574. type 0617, grid 22.5 mm</description>
  2575. <wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2576. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2577. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2578. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2579. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2580. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2581. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2582. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2583. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2584. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2585. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2586. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2587. <wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2588. <wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="51"/>
  2589. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2590. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2591. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2592. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2593. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2594. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2595. <text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2596. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2597. <rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
  2598. <rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
  2599. </package>
  2600. <package name="0617V">
  2601. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2602. type 0617, grid 5 mm</description>
  2603. <wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="51"/>
  2604. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="51"/>
  2605. <circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
  2606. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2607. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2608. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2609. <text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2610. <text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2611. <rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2612. </package>
  2613. <package name="0922/22">
  2614. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2615. type 0922, grid 22.5 mm</description>
  2616. <wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="51"/>
  2617. <wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="51"/>
  2618. <wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
  2619. <wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2620. <wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2621. <wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2622. <wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2623. <wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2624. <wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
  2625. <wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2626. <wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
  2627. <wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2628. <wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2629. <wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
  2630. <wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  2631. <wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  2632. <wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
  2633. <wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
  2634. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2635. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2636. <text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2637. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2638. <rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="51"/>
  2639. <rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2640. <rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
  2641. <rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="51"/>
  2642. </package>
  2643. <package name="P0613V">
  2644. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2645. type 0613, grid 5 mm</description>
  2646. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2647. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2648. <circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
  2649. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2650. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2651. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2652. <text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2653. <text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2654. <rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2655. </package>
  2656. <package name="P0613/15">
  2657. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2658. type 0613, grid 15 mm</description>
  2659. <wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="51"/>
  2660. <wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="51"/>
  2661. <wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  2662. <wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  2663. <wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2664. <wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2665. <wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2666. <wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2667. <wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2668. <wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2669. <wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2670. <wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
  2671. <wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2672. <wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
  2673. <wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2674. <wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2675. <wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
  2676. <wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="51"/>
  2677. <wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
  2678. <wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
  2679. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="51"/>
  2680. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
  2681. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2682. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2683. <text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2684. <text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2685. <rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="51"/>
  2686. <rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="51"/>
  2687. </package>
  2688. <package name="P0817/22">
  2689. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2690. type 0817, grid 22.5 mm</description>
  2691. <wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2692. <wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
  2693. <wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2694. <wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2695. <wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2696. <wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2697. <wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2698. <wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
  2699. <wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2700. <wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
  2701. <wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2702. <wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2703. <wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
  2704. <wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="51"/>
  2705. <wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  2706. <wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  2707. <wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  2708. <wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  2709. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2710. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2711. <text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2712. <text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2713. <text x="6.604" y="-2.2606" size="1.27" layer="51" ratio="10" rot="R90">0817</text>
  2714. <rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2715. <rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
  2716. </package>
  2717. <package name="P0817V">
  2718. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2719. type 0817, grid 6.35 mm</description>
  2720. <wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="51"/>
  2721. <wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="51"/>
  2722. <circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
  2723. <circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="51"/>
  2724. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  2725. <pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
  2726. <text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2727. <text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2728. <text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
  2729. <rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
  2730. </package>
  2731. <package name="V234/12">
  2732. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2733. type V234, grid 12.5 mm</description>
  2734. <wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  2735. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2736. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2737. <wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  2738. <wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  2739. <wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
  2740. <wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
  2741. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  2742. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="51"/>
  2743. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="51"/>
  2744. <pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
  2745. <pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
  2746. <text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2747. <text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2748. <rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
  2749. <rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
  2750. </package>
  2751. <package name="V235/17">
  2752. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2753. type V235, grid 17.78 mm</description>
  2754. <wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
  2755. <wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
  2756. <wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
  2757. <wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
  2758. <wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="51"/>
  2759. <wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="51"/>
  2760. <wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
  2761. <wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  2762. <wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  2763. <wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
  2764. <pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
  2765. <pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
  2766. <text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2767. <text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2768. <rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
  2769. <rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
  2770. </package>
  2771. <package name="V526-0">
  2772. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2773. type V526-0, grid 2.5 mm</description>
  2774. <wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2775. <wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2776. <wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2777. <wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2778. <wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
  2779. <wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
  2780. <wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
  2781. <wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
  2782. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2783. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2784. <text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2785. <text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2786. </package>
  2787. <package name="MINI_MELF-0102R">
  2788. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2789. source Beyschlag</description>
  2790. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2791. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2792. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2793. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2794. <smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2795. <smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2796. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2797. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2798. </package>
  2799. <package name="MINI_MELF-0102W">
  2800. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;
  2801. source Beyschlag</description>
  2802. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2803. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2804. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2805. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2806. <smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2807. <smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2808. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2809. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2810. </package>
  2811. <package name="MINI_MELF-0204R">
  2812. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2813. source Beyschlag</description>
  2814. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2815. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2816. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2817. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2818. <wire x1="0.938" y1="0.6" x2="-0.938" y2="0.6" width="0.2032" layer="21"/>
  2819. <wire x1="-0.938" y1="-0.6" x2="0.938" y2="-0.6" width="0.2032" layer="21"/>
  2820. <smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2821. <smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2822. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2823. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2824. </package>
  2825. <package name="MINI_MELF-0204W">
  2826. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;
  2827. source Beyschlag</description>
  2828. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2829. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2830. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2831. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2832. <wire x1="0.684" y1="0.6" x2="-0.684" y2="0.6" width="0.2032" layer="21"/>
  2833. <wire x1="-0.684" y1="-0.6" x2="0.684" y2="-0.6" width="0.2032" layer="21"/>
  2834. <smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2835. <smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2836. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2837. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2838. </package>
  2839. <package name="MINI_MELF-0207R">
  2840. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2841. source Beyschlag</description>
  2842. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  2843. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  2844. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  2845. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  2846. <wire x1="1.2125" y1="1" x2="-1.2125" y2="1" width="0.2032" layer="21"/>
  2847. <wire x1="-1.2125" y1="-1" x2="1.2125" y2="-1" width="0.2032" layer="21"/>
  2848. <smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2849. <smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2850. <text x="-2.2225" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  2851. <text x="-2.2225" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2852. </package>
  2853. <package name="MINI_MELF-0207W">
  2854. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;
  2855. source Beyschlag</description>
  2856. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  2857. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  2858. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  2859. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  2860. <wire x1="1.149" y1="1" x2="-1.149" y2="1" width="0.2032" layer="21"/>
  2861. <wire x1="-1.149" y1="-1" x2="1.149" y2="-1" width="0.2032" layer="21"/>
  2862. <smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  2863. <smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  2864. <text x="-2.54" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  2865. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2866. </package>
  2867. <package name="0922V">
  2868. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2869. type 0922, grid 7.5 mm</description>
  2870. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2871. <wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="51"/>
  2872. <circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
  2873. <circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
  2874. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  2875. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2876. <text x="-0.508" y="1.6764" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2877. <text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2878. <text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
  2879. <rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2880. </package>
  2881. <package name="RDH/15">
  2882. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2883. type RDH, grid 15 mm</description>
  2884. <wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="51"/>
  2885. <wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  2886. <wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  2887. <wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  2888. <wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  2889. <wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  2890. <wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
  2891. <wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  2892. <wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
  2893. <wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  2894. <wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  2895. <wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
  2896. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="51"/>
  2897. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
  2898. <wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
  2899. <wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="51"/>
  2900. <wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
  2901. <wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="51"/>
  2902. <wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2903. <wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2904. <wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2905. <wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2906. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2907. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2908. <text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2909. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2910. <text x="4.572" y="-1.7272" size="1.27" layer="51" ratio="10" rot="R90">RDH</text>
  2911. <rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="51"/>
  2912. <rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="51"/>
  2913. </package>
  2914. <package name="MINI_MELF-0102AX">
  2915. <description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>
  2916. <circle x="0" y="0" radius="0.6" width="0" layer="51"/>
  2917. <circle x="0" y="0" radius="0.6" width="0" layer="52"/>
  2918. <smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
  2919. <smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
  2920. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2921. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2922. <hole x="0" y="0" drill="1.3"/>
  2923. </package>
  2924. <package name="R0201">
  2925. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  2926. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  2927. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  2928. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  2929. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  2930. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  2931. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  2932. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  2933. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  2934. </package>
  2935. <package name="VTA52">
  2936. <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;
  2937. MIL SIZE RBR52&lt;br&gt;
  2938. Source: VISHAY .. vta56.pdf</description>
  2939. <wire x1="-15.24" y1="0" x2="-13.97" y2="0" width="0.6096" layer="51"/>
  2940. <wire x1="12.6225" y1="0.025" x2="12.6225" y2="4.725" width="0.1524" layer="21"/>
  2941. <wire x1="12.6225" y1="4.725" x2="-12.6225" y2="4.725" width="0.1524" layer="21"/>
  2942. <wire x1="-12.6225" y1="4.725" x2="-12.6225" y2="0.025" width="0.1524" layer="21"/>
  2943. <wire x1="-12.6225" y1="0.025" x2="-12.6225" y2="-4.65" width="0.1524" layer="21"/>
  2944. <wire x1="-12.6225" y1="-4.65" x2="12.6225" y2="-4.65" width="0.1524" layer="21"/>
  2945. <wire x1="12.6225" y1="-4.65" x2="12.6225" y2="0.025" width="0.1524" layer="21"/>
  2946. <wire x1="13.97" y1="0" x2="15.24" y2="0" width="0.6096" layer="51"/>
  2947. <pad name="1" x="-15.24" y="0" drill="1.1" shape="octagon"/>
  2948. <pad name="2" x="15.24" y="0" drill="1.1" shape="octagon"/>
  2949. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2950. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2951. <rectangle x1="-13.97" y1="-0.3048" x2="-12.5675" y2="0.3048" layer="21"/>
  2952. <rectangle x1="12.5675" y1="-0.3048" x2="13.97" y2="0.3048" layer="21"/>
  2953. </package>
  2954. <package name="VTA53">
  2955. <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;
  2956. MIL SIZE RBR53&lt;br&gt;
  2957. Source: VISHAY .. vta56.pdf</description>
  2958. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  2959. <wire x1="9.8975" y1="0" x2="9.8975" y2="4.7" width="0.1524" layer="21"/>
  2960. <wire x1="9.8975" y1="4.7" x2="-9.8975" y2="4.7" width="0.1524" layer="21"/>
  2961. <wire x1="-9.8975" y1="4.7" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  2962. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-4.675" width="0.1524" layer="21"/>
  2963. <wire x1="-9.8975" y1="-4.675" x2="9.8975" y2="-4.675" width="0.1524" layer="21"/>
  2964. <wire x1="9.8975" y1="-4.675" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  2965. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  2966. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  2967. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  2968. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2969. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2970. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  2971. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  2972. </package>
  2973. <package name="VTA54">
  2974. <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;
  2975. MIL SIZE RBR54&lt;br&gt;
  2976. Source: VISHAY .. vta56.pdf</description>
  2977. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  2978. <wire x1="9.8975" y1="0" x2="9.8975" y2="3.3" width="0.1524" layer="21"/>
  2979. <wire x1="9.8975" y1="3.3" x2="-9.8975" y2="3.3" width="0.1524" layer="21"/>
  2980. <wire x1="-9.8975" y1="3.3" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  2981. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-3.3" width="0.1524" layer="21"/>
  2982. <wire x1="-9.8975" y1="-3.3" x2="9.8975" y2="-3.3" width="0.1524" layer="21"/>
  2983. <wire x1="9.8975" y1="-3.3" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  2984. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  2985. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  2986. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  2987. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2988. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2989. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  2990. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  2991. </package>
  2992. <package name="VTA55">
  2993. <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;
  2994. MIL SIZE RBR55&lt;br&gt;
  2995. Source: VISHAY .. vta56.pdf</description>
  2996. <wire x1="-8.255" y1="0" x2="-6.985" y2="0" width="0.6096" layer="51"/>
  2997. <wire x1="6.405" y1="0" x2="6.405" y2="3.3" width="0.1524" layer="21"/>
  2998. <wire x1="6.405" y1="3.3" x2="-6.405" y2="3.3" width="0.1524" layer="21"/>
  2999. <wire x1="-6.405" y1="3.3" x2="-6.405" y2="0" width="0.1524" layer="21"/>
  3000. <wire x1="-6.405" y1="0" x2="-6.405" y2="-3.3" width="0.1524" layer="21"/>
  3001. <wire x1="-6.405" y1="-3.3" x2="6.405" y2="-3.3" width="0.1524" layer="21"/>
  3002. <wire x1="6.405" y1="-3.3" x2="6.405" y2="0" width="0.1524" layer="21"/>
  3003. <wire x1="6.985" y1="0" x2="8.255" y2="0" width="0.6096" layer="51"/>
  3004. <pad name="1" x="-8.255" y="0" drill="1.1" shape="octagon"/>
  3005. <pad name="2" x="8.255" y="0" drill="1.1" shape="octagon"/>
  3006. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3007. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3008. <rectangle x1="-6.985" y1="-0.3048" x2="-6.35" y2="0.3048" layer="21"/>
  3009. <rectangle x1="6.35" y1="-0.3048" x2="6.985" y2="0.3048" layer="21"/>
  3010. </package>
  3011. <package name="VTA56">
  3012. <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;
  3013. MIL SIZE RBR56&lt;br&gt;
  3014. Source: VISHAY .. vta56.pdf</description>
  3015. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  3016. <wire x1="4.5" y1="0" x2="4.5" y2="3.3" width="0.1524" layer="21"/>
  3017. <wire x1="4.5" y1="3.3" x2="-4.5" y2="3.3" width="0.1524" layer="21"/>
  3018. <wire x1="-4.5" y1="3.3" x2="-4.5" y2="0" width="0.1524" layer="21"/>
  3019. <wire x1="-4.5" y1="0" x2="-4.5" y2="-3.3" width="0.1524" layer="21"/>
  3020. <wire x1="-4.5" y1="-3.3" x2="4.5" y2="-3.3" width="0.1524" layer="21"/>
  3021. <wire x1="4.5" y1="-3.3" x2="4.5" y2="0" width="0.1524" layer="21"/>
  3022. <wire x1="5.08" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3023. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3024. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3025. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3026. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3027. <rectangle x1="-5.08" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  3028. <rectangle x1="4.445" y1="-0.3048" x2="5.08" y2="0.3048" layer="21"/>
  3029. </package>
  3030. <package name="VMTA55">
  3031. <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;
  3032. MIL SIZE RNC55&lt;br&gt;
  3033. Source: VISHAY .. vta56.pdf</description>
  3034. <wire x1="-5.08" y1="0" x2="-4.26" y2="0" width="0.6096" layer="51"/>
  3035. <wire x1="3.3375" y1="-1.45" x2="3.3375" y2="1.45" width="0.1524" layer="21"/>
  3036. <wire x1="3.3375" y1="1.45" x2="-3.3625" y2="1.45" width="0.1524" layer="21"/>
  3037. <wire x1="-3.3625" y1="1.45" x2="-3.3625" y2="-1.45" width="0.1524" layer="21"/>
  3038. <wire x1="-3.3625" y1="-1.45" x2="3.3375" y2="-1.45" width="0.1524" layer="21"/>
  3039. <wire x1="4.235" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  3040. <pad name="1" x="-5.08" y="0" drill="1.1" shape="octagon"/>
  3041. <pad name="2" x="5.08" y="0" drill="1.1" shape="octagon"/>
  3042. <text x="-3.175" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3043. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3044. <rectangle x1="-4.26" y1="-0.3048" x2="-3.3075" y2="0.3048" layer="21"/>
  3045. <rectangle x1="3.2825" y1="-0.3048" x2="4.235" y2="0.3048" layer="21"/>
  3046. </package>
  3047. <package name="VMTB60">
  3048. <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;
  3049. MIL SIZE RNC60&lt;br&gt;
  3050. Source: VISHAY .. vta56.pdf</description>
  3051. <wire x1="-6.35" y1="0" x2="-5.585" y2="0" width="0.6096" layer="51"/>
  3052. <wire x1="4.6875" y1="-1.95" x2="4.6875" y2="1.95" width="0.1524" layer="21"/>
  3053. <wire x1="4.6875" y1="1.95" x2="-4.6875" y2="1.95" width="0.1524" layer="21"/>
  3054. <wire x1="-4.6875" y1="1.95" x2="-4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3055. <wire x1="-4.6875" y1="-1.95" x2="4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3056. <wire x1="5.585" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3057. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3058. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3059. <text x="-4.445" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3060. <text x="-4.445" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3061. <rectangle x1="-5.585" y1="-0.3048" x2="-4.6325" y2="0.3048" layer="21"/>
  3062. <rectangle x1="4.6325" y1="-0.3048" x2="5.585" y2="0.3048" layer="21"/>
  3063. </package>
  3064. <package name="R4527">
  3065. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  3066. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  3067. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  3068. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  3069. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  3070. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3071. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3072. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3073. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3074. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3075. </package>
  3076. <package name="WSC0001">
  3077. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3078. Source: VISHAY wscwsn.pdf</description>
  3079. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3080. <wire x1="-3.075" y1="-1.8" x2="3.075" y2="-1.8" width="0.2032" layer="21"/>
  3081. <wire x1="3.075" y1="-1.8" x2="3.075" y2="1.8" width="0.2032" layer="51"/>
  3082. <wire x1="3.075" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3083. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3084. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3085. <wire x1="3.075" y1="1.606" x2="3.075" y2="1.8" width="0.2032" layer="21"/>
  3086. <wire x1="3.075" y1="-1.8" x2="3.075" y2="-1.606" width="0.2032" layer="21"/>
  3087. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3088. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3089. <text x="-2.544" y="2.229" size="1.27" layer="25">&gt;NAME</text>
  3090. <text x="-2.544" y="-3.501" size="1.27" layer="27">&gt;VALUE</text>
  3091. </package>
  3092. <package name="WSC0002">
  3093. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3094. Source: VISHAY wscwsn.pdf</description>
  3095. <wire x1="-5.55" y1="3.375" x2="-5.55" y2="-3.375" width="0.2032" layer="51"/>
  3096. <wire x1="-5.55" y1="-3.375" x2="5.55" y2="-3.375" width="0.2032" layer="21"/>
  3097. <wire x1="5.55" y1="-3.375" x2="5.55" y2="3.375" width="0.2032" layer="51"/>
  3098. <wire x1="5.55" y1="3.375" x2="-5.55" y2="3.375" width="0.2032" layer="21"/>
  3099. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3100. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3101. <text x="-5.65" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3102. <text x="-5.65" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3103. </package>
  3104. <package name="WSC01/2">
  3105. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3106. Source: VISHAY wscwsn.pdf</description>
  3107. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="-1.475" width="0.2032" layer="51"/>
  3108. <wire x1="-2.45" y1="-1.475" x2="2.45" y2="-1.475" width="0.2032" layer="21"/>
  3109. <wire x1="2.45" y1="-1.475" x2="2.45" y2="1.475" width="0.2032" layer="51"/>
  3110. <wire x1="2.45" y1="1.475" x2="-2.45" y2="1.475" width="0.2032" layer="21"/>
  3111. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="1.106" width="0.2032" layer="21"/>
  3112. <wire x1="-2.45" y1="-1.106" x2="-2.45" y2="-1.475" width="0.2032" layer="21"/>
  3113. <wire x1="2.45" y1="1.106" x2="2.45" y2="1.475" width="0.2032" layer="21"/>
  3114. <wire x1="2.45" y1="-1.475" x2="2.45" y2="-1.106" width="0.2032" layer="21"/>
  3115. <smd name="1" x="-2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3116. <smd name="2" x="2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3117. <text x="-2.544" y="1.904" size="1.27" layer="25">&gt;NAME</text>
  3118. <text x="-2.544" y="-3.176" size="1.27" layer="27">&gt;VALUE</text>
  3119. </package>
  3120. <package name="WSC2515">
  3121. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3122. Source: VISHAY wscwsn.pdf</description>
  3123. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3124. <wire x1="-3.075" y1="-1.8" x2="3.05" y2="-1.8" width="0.2032" layer="21"/>
  3125. <wire x1="3.05" y1="-1.8" x2="3.05" y2="1.8" width="0.2032" layer="51"/>
  3126. <wire x1="3.05" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3127. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3128. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3129. <wire x1="3.05" y1="1.606" x2="3.05" y2="1.8" width="0.2032" layer="21"/>
  3130. <wire x1="3.05" y1="-1.8" x2="3.05" y2="-1.606" width="0.2032" layer="21"/>
  3131. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3132. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3133. <text x="-3.2" y="2.15" size="1.27" layer="25">&gt;NAME</text>
  3134. <text x="-3.2" y="-3.4" size="1.27" layer="27">&gt;VALUE</text>
  3135. </package>
  3136. <package name="WSC4527">
  3137. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3138. Source: VISHAY wscwsn.pdf</description>
  3139. <wire x1="-5.675" y1="3.4" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3140. <wire x1="-5.675" y1="-3.375" x2="5.675" y2="-3.375" width="0.2032" layer="21"/>
  3141. <wire x1="5.675" y1="-3.375" x2="5.675" y2="3.4" width="0.2032" layer="51"/>
  3142. <wire x1="5.675" y1="3.4" x2="-5.675" y2="3.4" width="0.2032" layer="21"/>
  3143. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3144. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3145. <text x="-5.775" y="3.925" size="1.27" layer="25">&gt;NAME</text>
  3146. <text x="-5.775" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3147. </package>
  3148. <package name="WSC6927">
  3149. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3150. Source: VISHAY wscwsn.pdf</description>
  3151. <wire x1="-8.65" y1="3.375" x2="-8.65" y2="-3.375" width="0.2032" layer="51"/>
  3152. <wire x1="-8.65" y1="-3.375" x2="8.65" y2="-3.375" width="0.2032" layer="21"/>
  3153. <wire x1="8.65" y1="-3.375" x2="8.65" y2="3.375" width="0.2032" layer="51"/>
  3154. <wire x1="8.65" y1="3.375" x2="-8.65" y2="3.375" width="0.2032" layer="21"/>
  3155. <smd name="1" x="-7.95" y="0.025" dx="3.94" dy="5.97" layer="1"/>
  3156. <smd name="2" x="7.95" y="0" dx="3.94" dy="5.97" layer="1"/>
  3157. <text x="-8.75" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3158. <text x="-8.75" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3159. </package>
  3160. <package name="R1218">
  3161. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  3162. Source: http://www.vishay.com .. dcrcw.pdf</description>
  3163. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  3164. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  3165. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3166. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3167. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3168. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3169. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  3170. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  3171. </package>
  3172. <package name="1812X7R">
  3173. <description>&lt;b&gt;Chip Monolithic Ceramic Capacitors&lt;/b&gt; Medium Voltage High Capacitance for General Use&lt;p&gt;
  3174. Source: http://www.murata.com .. GRM43DR72E224KW01.pdf</description>
  3175. <wire x1="-1.1" y1="1.5" x2="1.1" y2="1.5" width="0.2032" layer="51"/>
  3176. <wire x1="1.1" y1="-1.5" x2="-1.1" y2="-1.5" width="0.2032" layer="51"/>
  3177. <wire x1="-0.6" y1="1.5" x2="0.6" y2="1.5" width="0.2032" layer="21"/>
  3178. <wire x1="0.6" y1="-1.5" x2="-0.6" y2="-1.5" width="0.2032" layer="21"/>
  3179. <smd name="1" x="-1.425" y="0" dx="0.8" dy="3.5" layer="1"/>
  3180. <smd name="2" x="1.425" y="0" dx="0.8" dy="3.5" layer="1" rot="R180"/>
  3181. <text x="-1.9456" y="1.9958" size="1.27" layer="25">&gt;NAME</text>
  3182. <text x="-1.9456" y="-3.7738" size="1.27" layer="27">&gt;VALUE</text>
  3183. <rectangle x1="-1.4" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
  3184. <rectangle x1="1.1" y1="-1.6" x2="1.4" y2="1.6" layer="51" rot="R180"/>
  3185. </package>
  3186. <package name="PRL1632">
  3187. <description>&lt;b&gt;PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)&lt;/b&gt;&lt;p&gt;
  3188. Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf</description>
  3189. <wire x1="0.7275" y1="-1.5228" x2="-0.7277" y2="-1.5228" width="0.1524" layer="51"/>
  3190. <wire x1="0.7275" y1="1.5228" x2="-0.7152" y2="1.5228" width="0.1524" layer="51"/>
  3191. <smd name="2" x="0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3192. <smd name="1" x="-0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3193. <text x="-1.4" y="1.8" size="1.27" layer="25">&gt;NAME</text>
  3194. <text x="-1.4" y="-3" size="1.27" layer="27">&gt;VALUE</text>
  3195. <rectangle x1="-0.8" y1="-1.6" x2="-0.4" y2="1.6" layer="51"/>
  3196. <rectangle x1="0.4" y1="-1.6" x2="0.8" y2="1.6" layer="51"/>
  3197. </package>
  3198. <package name="R01005">
  3199. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3200. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3201. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  3202. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  3203. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  3204. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  3205. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  3206. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  3207. </package>
  3208. </packages>
  3209. <symbols>
  3210. <symbol name="R-EU-1">
  3211. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  3212. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3213. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  3214. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3215. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  3216. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  3217. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  3218. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  3219. </symbol>
  3220. </symbols>
  3221. <devicesets>
  3222. <deviceset name="R-EU_" prefix="R" uservalue="yes">
  3223. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  3224. <gates>
  3225. <gate name="G$1" symbol="R-EU-1" x="0" y="0"/>
  3226. </gates>
  3227. <devices>
  3228. <device name="R0402" package="R0402">
  3229. <connects>
  3230. <connect gate="G$1" pin="1" pad="1"/>
  3231. <connect gate="G$1" pin="2" pad="2"/>
  3232. </connects>
  3233. <technologies>
  3234. <technology name=""/>
  3235. </technologies>
  3236. </device>
  3237. <device name="R0603" package="R0603">
  3238. <connects>
  3239. <connect gate="G$1" pin="1" pad="1"/>
  3240. <connect gate="G$1" pin="2" pad="2"/>
  3241. </connects>
  3242. <technologies>
  3243. <technology name=""/>
  3244. </technologies>
  3245. </device>
  3246. <device name="R0805" package="R0805">
  3247. <connects>
  3248. <connect gate="G$1" pin="1" pad="1"/>
  3249. <connect gate="G$1" pin="2" pad="2"/>
  3250. </connects>
  3251. <technologies>
  3252. <technology name=""/>
  3253. </technologies>
  3254. </device>
  3255. <device name="R0805W" package="R0805W">
  3256. <connects>
  3257. <connect gate="G$1" pin="1" pad="1"/>
  3258. <connect gate="G$1" pin="2" pad="2"/>
  3259. </connects>
  3260. <technologies>
  3261. <technology name=""/>
  3262. </technologies>
  3263. </device>
  3264. <device name="R1206" package="R1206">
  3265. <connects>
  3266. <connect gate="G$1" pin="1" pad="1"/>
  3267. <connect gate="G$1" pin="2" pad="2"/>
  3268. </connects>
  3269. <technologies>
  3270. <technology name=""/>
  3271. </technologies>
  3272. </device>
  3273. <device name="R1206W" package="R1206W">
  3274. <connects>
  3275. <connect gate="G$1" pin="1" pad="1"/>
  3276. <connect gate="G$1" pin="2" pad="2"/>
  3277. </connects>
  3278. <technologies>
  3279. <technology name=""/>
  3280. </technologies>
  3281. </device>
  3282. <device name="R1210" package="R1210">
  3283. <connects>
  3284. <connect gate="G$1" pin="1" pad="1"/>
  3285. <connect gate="G$1" pin="2" pad="2"/>
  3286. </connects>
  3287. <technologies>
  3288. <technology name=""/>
  3289. </technologies>
  3290. </device>
  3291. <device name="R1210W" package="R1210W">
  3292. <connects>
  3293. <connect gate="G$1" pin="1" pad="1"/>
  3294. <connect gate="G$1" pin="2" pad="2"/>
  3295. </connects>
  3296. <technologies>
  3297. <technology name=""/>
  3298. </technologies>
  3299. </device>
  3300. <device name="R2010" package="R2010">
  3301. <connects>
  3302. <connect gate="G$1" pin="1" pad="1"/>
  3303. <connect gate="G$1" pin="2" pad="2"/>
  3304. </connects>
  3305. <technologies>
  3306. <technology name=""/>
  3307. </technologies>
  3308. </device>
  3309. <device name="R2010W" package="R2010W">
  3310. <connects>
  3311. <connect gate="G$1" pin="1" pad="1"/>
  3312. <connect gate="G$1" pin="2" pad="2"/>
  3313. </connects>
  3314. <technologies>
  3315. <technology name=""/>
  3316. </technologies>
  3317. </device>
  3318. <device name="R2012" package="R2012">
  3319. <connects>
  3320. <connect gate="G$1" pin="1" pad="1"/>
  3321. <connect gate="G$1" pin="2" pad="2"/>
  3322. </connects>
  3323. <technologies>
  3324. <technology name=""/>
  3325. </technologies>
  3326. </device>
  3327. <device name="R2012W" package="R2012W">
  3328. <connects>
  3329. <connect gate="G$1" pin="1" pad="1"/>
  3330. <connect gate="G$1" pin="2" pad="2"/>
  3331. </connects>
  3332. <technologies>
  3333. <technology name=""/>
  3334. </technologies>
  3335. </device>
  3336. <device name="R2512" package="R2512">
  3337. <connects>
  3338. <connect gate="G$1" pin="1" pad="1"/>
  3339. <connect gate="G$1" pin="2" pad="2"/>
  3340. </connects>
  3341. <technologies>
  3342. <technology name=""/>
  3343. </technologies>
  3344. </device>
  3345. <device name="R2512W" package="R2512W">
  3346. <connects>
  3347. <connect gate="G$1" pin="1" pad="1"/>
  3348. <connect gate="G$1" pin="2" pad="2"/>
  3349. </connects>
  3350. <technologies>
  3351. <technology name=""/>
  3352. </technologies>
  3353. </device>
  3354. <device name="R3216" package="R3216">
  3355. <connects>
  3356. <connect gate="G$1" pin="1" pad="1"/>
  3357. <connect gate="G$1" pin="2" pad="2"/>
  3358. </connects>
  3359. <technologies>
  3360. <technology name=""/>
  3361. </technologies>
  3362. </device>
  3363. <device name="R3216W" package="R3216W">
  3364. <connects>
  3365. <connect gate="G$1" pin="1" pad="1"/>
  3366. <connect gate="G$1" pin="2" pad="2"/>
  3367. </connects>
  3368. <technologies>
  3369. <technology name=""/>
  3370. </technologies>
  3371. </device>
  3372. <device name="R3225" package="R3225">
  3373. <connects>
  3374. <connect gate="G$1" pin="1" pad="1"/>
  3375. <connect gate="G$1" pin="2" pad="2"/>
  3376. </connects>
  3377. <technologies>
  3378. <technology name=""/>
  3379. </technologies>
  3380. </device>
  3381. <device name="R3225W" package="R3225W">
  3382. <connects>
  3383. <connect gate="G$1" pin="1" pad="1"/>
  3384. <connect gate="G$1" pin="2" pad="2"/>
  3385. </connects>
  3386. <technologies>
  3387. <technology name=""/>
  3388. </technologies>
  3389. </device>
  3390. <device name="R5025" package="R5025">
  3391. <connects>
  3392. <connect gate="G$1" pin="1" pad="1"/>
  3393. <connect gate="G$1" pin="2" pad="2"/>
  3394. </connects>
  3395. <technologies>
  3396. <technology name=""/>
  3397. </technologies>
  3398. </device>
  3399. <device name="R5025W" package="R5025W">
  3400. <connects>
  3401. <connect gate="G$1" pin="1" pad="1"/>
  3402. <connect gate="G$1" pin="2" pad="2"/>
  3403. </connects>
  3404. <technologies>
  3405. <technology name=""/>
  3406. </technologies>
  3407. </device>
  3408. <device name="R6332" package="R6332">
  3409. <connects>
  3410. <connect gate="G$1" pin="1" pad="1"/>
  3411. <connect gate="G$1" pin="2" pad="2"/>
  3412. </connects>
  3413. <technologies>
  3414. <technology name=""/>
  3415. </technologies>
  3416. </device>
  3417. <device name="R6332W" package="R6332W">
  3418. <connects>
  3419. <connect gate="G$1" pin="1" pad="1"/>
  3420. <connect gate="G$1" pin="2" pad="2"/>
  3421. </connects>
  3422. <technologies>
  3423. <technology name=""/>
  3424. </technologies>
  3425. </device>
  3426. <device name="M0805" package="M0805">
  3427. <connects>
  3428. <connect gate="G$1" pin="1" pad="1"/>
  3429. <connect gate="G$1" pin="2" pad="2"/>
  3430. </connects>
  3431. <technologies>
  3432. <technology name=""/>
  3433. </technologies>
  3434. </device>
  3435. <device name="M1206" package="M1206">
  3436. <connects>
  3437. <connect gate="G$1" pin="1" pad="1"/>
  3438. <connect gate="G$1" pin="2" pad="2"/>
  3439. </connects>
  3440. <technologies>
  3441. <technology name=""/>
  3442. </technologies>
  3443. </device>
  3444. <device name="M1406" package="M1406">
  3445. <connects>
  3446. <connect gate="G$1" pin="1" pad="1"/>
  3447. <connect gate="G$1" pin="2" pad="2"/>
  3448. </connects>
  3449. <technologies>
  3450. <technology name=""/>
  3451. </technologies>
  3452. </device>
  3453. <device name="M2012" package="M2012">
  3454. <connects>
  3455. <connect gate="G$1" pin="1" pad="1"/>
  3456. <connect gate="G$1" pin="2" pad="2"/>
  3457. </connects>
  3458. <technologies>
  3459. <technology name=""/>
  3460. </technologies>
  3461. </device>
  3462. <device name="M2309" package="M2309">
  3463. <connects>
  3464. <connect gate="G$1" pin="1" pad="1"/>
  3465. <connect gate="G$1" pin="2" pad="2"/>
  3466. </connects>
  3467. <technologies>
  3468. <technology name=""/>
  3469. </technologies>
  3470. </device>
  3471. <device name="M3216" package="M3216">
  3472. <connects>
  3473. <connect gate="G$1" pin="1" pad="1"/>
  3474. <connect gate="G$1" pin="2" pad="2"/>
  3475. </connects>
  3476. <technologies>
  3477. <technology name=""/>
  3478. </technologies>
  3479. </device>
  3480. <device name="M3516" package="M3516">
  3481. <connects>
  3482. <connect gate="G$1" pin="1" pad="1"/>
  3483. <connect gate="G$1" pin="2" pad="2"/>
  3484. </connects>
  3485. <technologies>
  3486. <technology name=""/>
  3487. </technologies>
  3488. </device>
  3489. <device name="M5923" package="M5923">
  3490. <connects>
  3491. <connect gate="G$1" pin="1" pad="1"/>
  3492. <connect gate="G$1" pin="2" pad="2"/>
  3493. </connects>
  3494. <technologies>
  3495. <technology name=""/>
  3496. </technologies>
  3497. </device>
  3498. <device name="0204/5" package="0204/5">
  3499. <connects>
  3500. <connect gate="G$1" pin="1" pad="1"/>
  3501. <connect gate="G$1" pin="2" pad="2"/>
  3502. </connects>
  3503. <technologies>
  3504. <technology name=""/>
  3505. </technologies>
  3506. </device>
  3507. <device name="0204/7" package="0204/7">
  3508. <connects>
  3509. <connect gate="G$1" pin="1" pad="1"/>
  3510. <connect gate="G$1" pin="2" pad="2"/>
  3511. </connects>
  3512. <technologies>
  3513. <technology name=""/>
  3514. </technologies>
  3515. </device>
  3516. <device name="0204/2V" package="0204V">
  3517. <connects>
  3518. <connect gate="G$1" pin="1" pad="1"/>
  3519. <connect gate="G$1" pin="2" pad="2"/>
  3520. </connects>
  3521. <technologies>
  3522. <technology name=""/>
  3523. </technologies>
  3524. </device>
  3525. <device name="0207/10" package="0207/10">
  3526. <connects>
  3527. <connect gate="G$1" pin="1" pad="1"/>
  3528. <connect gate="G$1" pin="2" pad="2"/>
  3529. </connects>
  3530. <technologies>
  3531. <technology name=""/>
  3532. </technologies>
  3533. </device>
  3534. <device name="0207/12" package="0207/12">
  3535. <connects>
  3536. <connect gate="G$1" pin="1" pad="1"/>
  3537. <connect gate="G$1" pin="2" pad="2"/>
  3538. </connects>
  3539. <technologies>
  3540. <technology name=""/>
  3541. </technologies>
  3542. </device>
  3543. <device name="0207/15" package="0207/15">
  3544. <connects>
  3545. <connect gate="G$1" pin="1" pad="1"/>
  3546. <connect gate="G$1" pin="2" pad="2"/>
  3547. </connects>
  3548. <technologies>
  3549. <technology name=""/>
  3550. </technologies>
  3551. </device>
  3552. <device name="0207/2V" package="0207/2V">
  3553. <connects>
  3554. <connect gate="G$1" pin="1" pad="1"/>
  3555. <connect gate="G$1" pin="2" pad="2"/>
  3556. </connects>
  3557. <technologies>
  3558. <technology name=""/>
  3559. </technologies>
  3560. </device>
  3561. <device name="0207/5V" package="0207/5V">
  3562. <connects>
  3563. <connect gate="G$1" pin="1" pad="1"/>
  3564. <connect gate="G$1" pin="2" pad="2"/>
  3565. </connects>
  3566. <technologies>
  3567. <technology name=""/>
  3568. </technologies>
  3569. </device>
  3570. <device name="0207/7" package="0207/7">
  3571. <connects>
  3572. <connect gate="G$1" pin="1" pad="1"/>
  3573. <connect gate="G$1" pin="2" pad="2"/>
  3574. </connects>
  3575. <technologies>
  3576. <technology name=""/>
  3577. </technologies>
  3578. </device>
  3579. <device name="0309/10" package="0309/10">
  3580. <connects>
  3581. <connect gate="G$1" pin="1" pad="1"/>
  3582. <connect gate="G$1" pin="2" pad="2"/>
  3583. </connects>
  3584. <technologies>
  3585. <technology name=""/>
  3586. </technologies>
  3587. </device>
  3588. <device name="0309/12" package="0309/12">
  3589. <connects>
  3590. <connect gate="G$1" pin="1" pad="1"/>
  3591. <connect gate="G$1" pin="2" pad="2"/>
  3592. </connects>
  3593. <technologies>
  3594. <technology name=""/>
  3595. </technologies>
  3596. </device>
  3597. <device name="0309/V" package="0309V">
  3598. <connects>
  3599. <connect gate="G$1" pin="1" pad="1"/>
  3600. <connect gate="G$1" pin="2" pad="2"/>
  3601. </connects>
  3602. <technologies>
  3603. <technology name=""/>
  3604. </technologies>
  3605. </device>
  3606. <device name="0411/12" package="0411/12">
  3607. <connects>
  3608. <connect gate="G$1" pin="1" pad="1"/>
  3609. <connect gate="G$1" pin="2" pad="2"/>
  3610. </connects>
  3611. <technologies>
  3612. <technology name=""/>
  3613. </technologies>
  3614. </device>
  3615. <device name="0411/15" package="0411/15">
  3616. <connects>
  3617. <connect gate="G$1" pin="1" pad="1"/>
  3618. <connect gate="G$1" pin="2" pad="2"/>
  3619. </connects>
  3620. <technologies>
  3621. <technology name=""/>
  3622. </technologies>
  3623. </device>
  3624. <device name="0411/3V" package="0411V">
  3625. <connects>
  3626. <connect gate="G$1" pin="1" pad="1"/>
  3627. <connect gate="G$1" pin="2" pad="2"/>
  3628. </connects>
  3629. <technologies>
  3630. <technology name=""/>
  3631. </technologies>
  3632. </device>
  3633. <device name="0414/15" package="0414/15">
  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="0414/5V" package="0414V">
  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="0617/17" package="0617/17">
  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="0617/22" package="0617/22">
  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="0617/5V" package="0617V">
  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="0922/22" package="0922/22">
  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="0613/5V" package="P0613V">
  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="0613/15" package="P0613/15">
  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="0817/22" package="P0817/22">
  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="0817/7V" package="P0817V">
  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="V234/12" package="V234/12">
  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="V235/17" package="V235/17">
  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="V526-0" package="V526-0">
  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="MELF0102R" package="MINI_MELF-0102R">
  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="MELF0102W" package="MINI_MELF-0102W">
  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="MELF0204R" package="MINI_MELF-0204R">
  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="MELF0204W" package="MINI_MELF-0204W">
  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="MELF0207R" package="MINI_MELF-0207R">
  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="MELF0207W" package="MINI_MELF-0207W">
  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="0922V" package="0922V">
  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="RDH/15" package="RDH/15">
  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="MELF0102AX" package="MINI_MELF-0102AX">
  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="R0201" package="R0201">
  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="VTA52" package="VTA52">
  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="VTA53" package="VTA53">
  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="VTA54" package="VTA54">
  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="VTA55" package="VTA55">
  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="VTA56" package="VTA56">
  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="VMTA55" package="VMTA55">
  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="VMTB60" package="VMTB60">
  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="R4527" package="R4527">
  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="WSC0001" package="WSC0001">
  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="WSC0002" package="WSC0002">
  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="WSC01/2" package="WSC01/2">
  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="WSC2515" package="WSC2515">
  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="WSC4527" package="WSC4527">
  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="WSC6927" package="WSC6927">
  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="R1218" package="R1218">
  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="1812X7R" package="1812X7R">
  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="PRL1632" package="PRL1632">
  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="01005" package="R01005">
  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. </devices>
  4003. </deviceset>
  4004. </devicesets>
  4005. </library>
  4006. <library name="analog-devices">
  4007. <description>&lt;b&gt;Analog Devices Components&lt;/b&gt;&lt;p&gt;
  4008. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  4009. <packages>
  4010. <package name="TSSOP24">
  4011. <description>&lt;b&gt;24-Lead Thin Shrink Small Outline Package TSSOP&lt;/b&gt; (RU-24)&lt;p&gt;
  4012. Source: http://www.analog.com/UploadedFiles/Data_Sheets/39677768AD7714_c.pdf</description>
  4013. <wire x1="-3.875" y1="-2.175" x2="3.875" y2="-2.175" width="0.1524" layer="21"/>
  4014. <wire x1="3.875" y1="2.175" x2="3.875" y2="-2.175" width="0.1524" layer="21"/>
  4015. <wire x1="3.875" y1="2.175" x2="-3.875" y2="2.175" width="0.1524" layer="21"/>
  4016. <wire x1="-3.875" y1="-2.175" x2="-3.875" y2="2.175" width="0.1524" layer="21"/>
  4017. <circle x="-3.1506" y="-1.4692" radius="0.2773" width="0.1524" layer="21"/>
  4018. <smd name="1" x="-3.575" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4019. <smd name="2" x="-2.925" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4020. <smd name="3" x="-2.275" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4021. <smd name="4" x="-1.625" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4022. <smd name="5" x="-0.975" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4023. <smd name="6" x="-0.325" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4024. <smd name="7" x="0.325" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4025. <smd name="8" x="0.975" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4026. <smd name="9" x="1.625" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4027. <smd name="10" x="2.275" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4028. <smd name="11" x="2.925" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4029. <smd name="12" x="3.575" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4030. <smd name="13" x="3.575" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4031. <smd name="14" x="2.925" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4032. <smd name="15" x="2.275" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4033. <smd name="16" x="1.625" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4034. <smd name="17" x="0.975" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4035. <smd name="18" x="0.325" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4036. <smd name="19" x="-0.325" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4037. <smd name="20" x="-0.975" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4038. <smd name="21" x="-1.625" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4039. <smd name="22" x="-2.275" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4040. <smd name="23" x="-2.925" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4041. <smd name="24" x="-3.575" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  4042. <text x="-4.1956" y="-2.0828" size="1.016" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  4043. <text x="5.1862" y="-2.0828" size="1.016" layer="27" ratio="10" rot="R90">&gt;VALUE</text>
  4044. <rectangle x1="-3.6766" y1="-3.121" x2="-3.4734" y2="-2.25" layer="51"/>
  4045. <rectangle x1="-3.0266" y1="-3.121" x2="-2.8234" y2="-2.25" layer="51"/>
  4046. <rectangle x1="-2.3766" y1="-3.121" x2="-2.1734" y2="-2.25" layer="51"/>
  4047. <rectangle x1="-1.7266" y1="-3.121" x2="-1.5234" y2="-2.25" layer="51"/>
  4048. <rectangle x1="-1.0766" y1="-3.121" x2="-0.8734" y2="-2.25" layer="51"/>
  4049. <rectangle x1="-0.4266" y1="-3.121" x2="-0.2234" y2="-2.25" layer="51"/>
  4050. <rectangle x1="0.2234" y1="-3.121" x2="0.4266" y2="-2.25" layer="51"/>
  4051. <rectangle x1="0.8734" y1="-3.121" x2="1.0766" y2="-2.25" layer="51"/>
  4052. <rectangle x1="1.5234" y1="-3.121" x2="1.7266" y2="-2.25" layer="51"/>
  4053. <rectangle x1="2.1734" y1="-3.121" x2="2.3766" y2="-2.25" layer="51"/>
  4054. <rectangle x1="2.8234" y1="-3.121" x2="3.0266" y2="-2.25" layer="51"/>
  4055. <rectangle x1="3.4734" y1="-3.121" x2="3.6766" y2="-2.25" layer="51"/>
  4056. <rectangle x1="3.4734" y1="2.25" x2="3.6766" y2="3.121" layer="51"/>
  4057. <rectangle x1="2.8234" y1="2.25" x2="3.0266" y2="3.121" layer="51"/>
  4058. <rectangle x1="2.1734" y1="2.25" x2="2.3766" y2="3.121" layer="51"/>
  4059. <rectangle x1="1.5234" y1="2.25" x2="1.7266" y2="3.121" layer="51"/>
  4060. <rectangle x1="0.8734" y1="2.25" x2="1.0766" y2="3.121" layer="51"/>
  4061. <rectangle x1="0.2234" y1="2.25" x2="0.4266" y2="3.121" layer="51"/>
  4062. <rectangle x1="-0.4266" y1="2.25" x2="-0.2234" y2="3.121" layer="51"/>
  4063. <rectangle x1="-1.0766" y1="2.25" x2="-0.8734" y2="3.121" layer="51"/>
  4064. <rectangle x1="-1.7266" y1="2.25" x2="-1.5234" y2="3.121" layer="51"/>
  4065. <rectangle x1="-2.3766" y1="2.25" x2="-2.1734" y2="3.121" layer="51"/>
  4066. <rectangle x1="-3.0266" y1="2.25" x2="-2.8234" y2="3.121" layer="51"/>
  4067. <rectangle x1="-3.6766" y1="2.25" x2="-3.4734" y2="3.121" layer="51"/>
  4068. </package>
  4069. </packages>
  4070. <symbols>
  4071. <symbol name="AD7190">
  4072. <description>&lt;h3&gt;AD7190 - 4.8 kHz Ultralow Noise 24-Bit
  4073. Sigma-Delta ADC with PGA&lt;/h3&gt;
  4074. RMS noise: 8.5 nV @ 4.7 Hz (gain = 128)&lt;br&gt;
  4075. 16 noise free bits @ 2.4 kHz (gain = 128)&lt;br&gt;
  4076. Up to 22.5 noise free bits (gain = 1)&lt;br&gt;
  4077. Offset drift: 5 nV/°C&lt;br&gt;
  4078. Gain drift: 1 ppm/°C&lt;br&gt;
  4079. Specified drift over time&lt;br&gt;
  4080. 2 differential/4 pseudo differential input channels&lt;br&gt;
  4081. Automatic channel sequencer&lt;br&gt;
  4082. Programmable gain (1 to 128)&lt;br&gt;
  4083. Output data rate: 4.7 Hz to 4.8 kHz&lt;br&gt;
  4084. Internal or external clock&lt;br&gt;
  4085. Simultaneous 50 Hz/60 Hz rejection&lt;br&gt;
  4086. 4 general-purpose digital outputs&lt;br&gt;
  4087. Power supply&lt;br&gt;
  4088. AV DD : 4.75 V to 5.25 V&lt;br&gt;
  4089. DV DD : 2.7 V to 5.25 V&lt;br&gt;
  4090. Current: 6 mA&lt;br&gt;
  4091. Temperature range: –40°C to +105°C&lt;br&gt;
  4092. Interface&lt;br&gt;
  4093. 3-wire serial&lt;br&gt;
  4094. SPI, QSPITM, MICROWIRETM, and DSP compatible&lt;br&gt;
  4095. Schmitt trigger on SCLK&lt;br&gt;
  4096. Qualified for automotive applications</description>
  4097. <pin name="MCLK1" x="-43.18" y="25.4" length="middle" direction="in" function="clk"/>
  4098. <pin name="MCLK2" x="-43.18" y="20.32" length="middle" direction="in" function="clk"/>
  4099. <pin name="SCLK" x="-43.18" y="15.24" length="middle" function="clk"/>
  4100. <pin name="NCS" x="-43.18" y="10.16" length="middle"/>
  4101. <pin name="P3" x="-43.18" y="5.08" length="middle"/>
  4102. <pin name="P2" x="-43.18" y="0" length="middle"/>
  4103. <pin name="P1/REFIN2+" x="-43.18" y="-5.08" length="middle"/>
  4104. <pin name="P0/REFIN2-" x="-43.18" y="-10.16" length="middle"/>
  4105. <pin name="NC" x="-43.18" y="-15.24" length="middle" direction="nc"/>
  4106. <pin name="AINCOM" x="-43.18" y="-20.32" length="middle" direction="in"/>
  4107. <pin name="AIN1" x="-43.18" y="-25.4" length="middle" direction="in"/>
  4108. <pin name="AIN2" x="-43.18" y="-30.48" length="middle" direction="in"/>
  4109. <pin name="AIN3" x="-7.62" y="-30.48" length="middle" direction="in" rot="R180"/>
  4110. <pin name="AIN4" x="-7.62" y="-25.4" length="middle" direction="in" rot="R180"/>
  4111. <pin name="REFIN1+" x="-7.62" y="-20.32" length="middle" rot="R180"/>
  4112. <pin name="REFIN1-" x="-7.62" y="-15.24" length="middle" rot="R180"/>
  4113. <pin name="BPDSW" x="-7.62" y="-10.16" length="middle" rot="R180"/>
  4114. <pin name="AGND" x="-7.62" y="-5.08" length="middle" direction="pwr" rot="R180"/>
  4115. <pin name="DGND" x="-7.62" y="0" length="middle" direction="pwr" rot="R180"/>
  4116. <pin name="AVDD" x="-7.62" y="5.08" length="middle" direction="pwr" rot="R180"/>
  4117. <pin name="DVDD" x="-7.62" y="10.16" length="middle" direction="pwr" rot="R180"/>
  4118. <pin name="NSYNC" x="-7.62" y="15.24" length="middle" rot="R180"/>
  4119. <pin name="DOUT/NRDY" x="-7.62" y="20.32" length="middle" rot="R180"/>
  4120. <pin name="DIN" x="-7.62" y="25.4" length="middle" rot="R180"/>
  4121. <wire x1="-14.49605" y1="-35.56" x2="-36.09195625" y2="-35.56" width="0.254" layer="97"/>
  4122. <wire x1="-36.09195625" y1="-35.56" x2="-38.1" y2="-33.55195625" width="0.254" layer="97" curve="-90"/>
  4123. <wire x1="-38.1" y1="-33.55195625" x2="-38.1" y2="29.21" width="0.254" layer="97"/>
  4124. <wire x1="-38.1" y1="29.21" x2="-36.83" y2="30.48" width="0.254" layer="97" curve="-90"/>
  4125. <wire x1="-36.83" y1="30.48" x2="-14.119903125" y2="30.48" width="0.254" layer="97"/>
  4126. <wire x1="-14.119903125" y1="30.48" x2="-12.7" y2="29.060096875" width="0.254" layer="97" curve="-90"/>
  4127. <wire x1="-12.7" y1="29.060096875" x2="-12.7" y2="-33.76395" width="0.254" layer="97"/>
  4128. <wire x1="-12.7" y1="-33.76395" x2="-14.49605" y2="-35.56" width="0.254" layer="97" curve="-90"/>
  4129. <circle x="-36.195" y="28.575" radius="0.635" width="0.254" layer="97"/>
  4130. </symbol>
  4131. </symbols>
  4132. <devicesets>
  4133. <deviceset name="AD7190">
  4134. <description>&lt;h3&gt;AD7190 - 4.8 kHz Ultralow Noise 24-Bit
  4135. Sigma-Delta ADC with PGA&lt;/h3&gt;
  4136. RMS noise: 8.5 nV @ 4.7 Hz (gain = 128)&lt;br&gt;
  4137. 16 noise free bits @ 2.4 kHz (gain = 128)&lt;br&gt;
  4138. Up to 22.5 noise free bits (gain = 1)&lt;br&gt;
  4139. Offset drift: 5 nV/°C&lt;br&gt;
  4140. Gain drift: 1 ppm/°C&lt;br&gt;
  4141. Specified drift over time&lt;br&gt;
  4142. 2 differential/4 pseudo differential input channels&lt;br&gt;
  4143. Automatic channel sequencer&lt;br&gt;
  4144. Programmable gain (1 to 128)&lt;br&gt;
  4145. Output data rate: 4.7 Hz to 4.8 kHz&lt;br&gt;
  4146. Internal or external clock&lt;br&gt;
  4147. Simultaneous 50 Hz/60 Hz rejection&lt;br&gt;
  4148. 4 general-purpose digital outputs&lt;br&gt;
  4149. Power supply&lt;br&gt;
  4150. AV DD : 4.75 V to 5.25 V&lt;br&gt;
  4151. DV DD : 2.7 V to 5.25 V&lt;br&gt;
  4152. Current: 6 mA&lt;br&gt;
  4153. Temperature range: –40°C to +105°C&lt;br&gt;
  4154. Interface: 3-wire serial SPI, QSPITM, MICROWIRETM, and DSP compatible&lt;br&gt;
  4155. Schmitt trigger on SCLK&lt;br&gt;
  4156. Qualified for automotive applications</description>
  4157. <gates>
  4158. <gate name="G$1" symbol="AD7190" x="35.56" y="5.08"/>
  4159. </gates>
  4160. <devices>
  4161. <device name="" package="TSSOP24">
  4162. <connects>
  4163. <connect gate="G$1" pin="AGND" pad="18"/>
  4164. <connect gate="G$1" pin="AIN1" pad="11"/>
  4165. <connect gate="G$1" pin="AIN2" pad="12"/>
  4166. <connect gate="G$1" pin="AIN3" pad="13"/>
  4167. <connect gate="G$1" pin="AIN4" pad="14"/>
  4168. <connect gate="G$1" pin="AINCOM" pad="10"/>
  4169. <connect gate="G$1" pin="AVDD" pad="20"/>
  4170. <connect gate="G$1" pin="BPDSW" pad="17"/>
  4171. <connect gate="G$1" pin="DGND" pad="19"/>
  4172. <connect gate="G$1" pin="DIN" pad="24"/>
  4173. <connect gate="G$1" pin="DOUT/NRDY" pad="23"/>
  4174. <connect gate="G$1" pin="DVDD" pad="21"/>
  4175. <connect gate="G$1" pin="MCLK1" pad="1"/>
  4176. <connect gate="G$1" pin="MCLK2" pad="2"/>
  4177. <connect gate="G$1" pin="NC" pad="9"/>
  4178. <connect gate="G$1" pin="NCS" pad="4"/>
  4179. <connect gate="G$1" pin="NSYNC" pad="22"/>
  4180. <connect gate="G$1" pin="P0/REFIN2-" pad="8"/>
  4181. <connect gate="G$1" pin="P1/REFIN2+" pad="7"/>
  4182. <connect gate="G$1" pin="P2" pad="6"/>
  4183. <connect gate="G$1" pin="P3" pad="5"/>
  4184. <connect gate="G$1" pin="REFIN1+" pad="15"/>
  4185. <connect gate="G$1" pin="REFIN1-" pad="16"/>
  4186. <connect gate="G$1" pin="SCLK" pad="3"/>
  4187. </connects>
  4188. <technologies>
  4189. <technology name=""/>
  4190. </technologies>
  4191. </device>
  4192. </devices>
  4193. </deviceset>
  4194. </devicesets>
  4195. </library>
  4196. <library name="LP2985">
  4197. <description>LP2985-N Micropower 150 mA Low-Noise Ultra Low-Dropout Regulator</description>
  4198. <packages>
  4199. <package name="SOT25">
  4200. <description>&lt;b&gt;Small Outline Transistor&lt;/b&gt;&lt;p&gt;
  4201. TSC [Taiwan Semiconductor Company, Ltd]&lt;br&gt;
  4202. Source: http://www.taiwansemi.com .. 5205_0409c.pdf</description>
  4203. <wire x1="1.422" y1="0.785" x2="1.422" y2="-0.785" width="0.1524" layer="21"/>
  4204. <wire x1="1.422" y1="-0.785" x2="-1.422" y2="-0.785" width="0.1524" layer="51"/>
  4205. <wire x1="-1.422" y1="-0.785" x2="-1.422" y2="0.785" width="0.1524" layer="21"/>
  4206. <wire x1="-1.422" y1="0.785" x2="1.422" y2="0.785" width="0.1524" layer="51"/>
  4207. <wire x1="-0.522" y1="0.785" x2="0.522" y2="0.785" width="0.1524" layer="21"/>
  4208. <wire x1="-0.428" y1="-0.785" x2="-0.522" y2="-0.785" width="0.1524" layer="21"/>
  4209. <wire x1="0.522" y1="-0.785" x2="0.428" y2="-0.785" width="0.1524" layer="21"/>
  4210. <wire x1="-1.328" y1="-0.785" x2="-1.422" y2="-0.785" width="0.1524" layer="21"/>
  4211. <wire x1="1.422" y1="-0.785" x2="1.328" y2="-0.785" width="0.1524" layer="21"/>
  4212. <wire x1="1.328" y1="0.785" x2="1.422" y2="0.785" width="0.1524" layer="21"/>
  4213. <wire x1="-1.422" y1="0.785" x2="-1.328" y2="0.785" width="0.1524" layer="21"/>
  4214. <smd name="1" x="-0.95" y="-1.3" dx="0.55" dy="1.2" layer="1"/>
  4215. <smd name="2" x="0" y="-1.3" dx="0.55" dy="1.2" layer="1"/>
  4216. <smd name="3" x="0.95" y="-1.3" dx="0.55" dy="1.2" layer="1"/>
  4217. <smd name="4" x="0.95" y="1.3" dx="0.55" dy="1.2" layer="1"/>
  4218. <smd name="5" x="-0.95" y="1.3" dx="0.55" dy="1.2" layer="1"/>
  4219. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  4220. <text x="-1.905" y="-3.429" size="1.27" layer="27">&gt;VALUE</text>
  4221. <rectangle x1="-1.2" y1="-1.5" x2="-0.7" y2="-0.85" layer="51"/>
  4222. <rectangle x1="-0.25" y1="-1.5" x2="0.25" y2="-0.85" layer="51"/>
  4223. <rectangle x1="0.7" y1="-1.5" x2="1.2" y2="-0.85" layer="51"/>
  4224. <rectangle x1="0.7" y1="0.85" x2="1.2" y2="1.5" layer="51"/>
  4225. <rectangle x1="-1.2" y1="0.85" x2="-0.7" y2="1.5" layer="51"/>
  4226. </package>
  4227. </packages>
  4228. <symbols>
  4229. <symbol name="LP2985">
  4230. <description>LP2985-N Micropower 150 mA Low-Noise Ultra Low-Dropout Regulator</description>
  4231. <pin name="VIN" x="-12.7" y="5.08" length="middle" direction="pwr"/>
  4232. <pin name="GND" x="-12.7" y="-5.08" length="middle" direction="pwr"/>
  4233. <pin name="ON/OFF" x="-12.7" y="0" length="middle" direction="in"/>
  4234. <pin name="BYPASS" x="12.7" y="-2.54" length="middle" direction="sup" rot="R180"/>
  4235. <pin name="VOUT" x="12.7" y="5.08" length="middle" direction="pwr" rot="R180"/>
  4236. <wire x1="-7.62" y1="7.62" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  4237. <wire x1="7.62" y1="7.62" x2="7.62" y2="-7.62" width="0.254" layer="94"/>
  4238. <wire x1="7.62" y1="-7.62" x2="-7.62" y2="-7.62" width="0.254" layer="94"/>
  4239. <wire x1="-7.62" y1="-7.62" x2="-7.62" y2="7.62" width="0.254" layer="94"/>
  4240. <text x="-7.366" y="8.128" size="1.778" layer="95">&gt;NAME</text>
  4241. <text x="-7.366" y="-9.906" size="1.778" layer="95">LP2985</text>
  4242. </symbol>
  4243. </symbols>
  4244. <devicesets>
  4245. <deviceset name="LP2985">
  4246. <description>LP2985-N Micropower 150 mA Low-Noise Ultra Low-Dropout Regulator</description>
  4247. <gates>
  4248. <gate name="G$1" symbol="LP2985" x="10.16" y="-15.24"/>
  4249. </gates>
  4250. <devices>
  4251. <device name="AIM5-3.3" package="SOT25">
  4252. <connects>
  4253. <connect gate="G$1" pin="BYPASS" pad="4"/>
  4254. <connect gate="G$1" pin="GND" pad="2"/>
  4255. <connect gate="G$1" pin="ON/OFF" pad="3"/>
  4256. <connect gate="G$1" pin="VIN" pad="1"/>
  4257. <connect gate="G$1" pin="VOUT" pad="5"/>
  4258. </connects>
  4259. <technologies>
  4260. <technology name=""/>
  4261. </technologies>
  4262. </device>
  4263. </devices>
  4264. </deviceset>
  4265. </devicesets>
  4266. </library>
  4267. <library name="adafruit">
  4268. <packages>
  4269. <package name="C0402">
  4270. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4271. chip</description>
  4272. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  4273. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  4274. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  4275. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  4276. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  4277. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  4278. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  4279. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  4280. <text x="-0.635" y="0.762" size="1.27" layer="25">&gt;NAME</text>
  4281. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  4282. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  4283. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  4284. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  4285. </package>
  4286. <package name="C0504">
  4287. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4288. chip</description>
  4289. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  4290. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  4291. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  4292. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  4293. <wire x1="-0.294" y1="0.559" x2="0.294" y2="0.559" width="0.1016" layer="51"/>
  4294. <wire x1="-0.294" y1="-0.559" x2="0.294" y2="-0.559" width="0.1016" layer="51"/>
  4295. <smd name="1" x="-0.7" y="0" dx="1" dy="1.3" layer="1"/>
  4296. <smd name="2" x="0.7" y="0" dx="1" dy="1.3" layer="1"/>
  4297. <text x="-0.635" y="0.889" size="1.27" layer="25">&gt;NAME</text>
  4298. <text x="-0.635" y="-2.159" size="1.27" layer="27">&gt;VALUE</text>
  4299. <rectangle x1="-0.6604" y1="-0.6223" x2="-0.2804" y2="0.6276" layer="51"/>
  4300. <rectangle x1="0.2794" y1="-0.6223" x2="0.6594" y2="0.6276" layer="51"/>
  4301. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  4302. </package>
  4303. <package name="C0603">
  4304. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4305. chip</description>
  4306. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  4307. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  4308. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  4309. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  4310. <wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
  4311. <wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
  4312. <smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
  4313. <smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
  4314. <text x="-0.889" y="0.762" size="1.27" layer="25">&gt;NAME</text>
  4315. <text x="-0.889" y="-2.032" size="1.27" layer="27">&gt;VALUE</text>
  4316. <rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
  4317. <rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
  4318. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  4319. </package>
  4320. <package name="C0805">
  4321. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4322. chip</description>
  4323. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  4324. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  4325. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  4326. <wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
  4327. <wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
  4328. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  4329. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  4330. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  4331. <text x="-0.889" y="1.016" size="1.27" layer="25">&gt;NAME</text>
  4332. <text x="-0.889" y="-2.286" size="1.27" layer="27">&gt;VALUE</text>
  4333. <rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
  4334. <rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
  4335. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  4336. </package>
  4337. <package name="C1005">
  4338. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4339. chip</description>
  4340. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  4341. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  4342. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  4343. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  4344. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  4345. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  4346. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  4347. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  4348. <text x="-0.635" y="0.762" size="1.27" layer="25">&gt;NAME</text>
  4349. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  4350. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  4351. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  4352. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  4353. </package>
  4354. <package name="C1206">
  4355. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4356. chip</description>
  4357. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  4358. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  4359. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  4360. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  4361. <wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
  4362. <wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
  4363. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  4364. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  4365. <text x="-1.27" y="1.143" size="1.27" layer="25">&gt;NAME</text>
  4366. <text x="-1.27" y="-2.413" size="1.27" layer="27">&gt;VALUE</text>
  4367. <rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
  4368. <rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
  4369. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  4370. </package>
  4371. <package name="C1210">
  4372. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4373. chip</description>
  4374. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  4375. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  4376. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  4377. <wire x1="-0.9652" y1="1.2446" x2="0.9652" y2="1.2446" width="0.1016" layer="51"/>
  4378. <wire x1="-0.9652" y1="-1.2446" x2="0.9652" y2="-1.2446" width="0.1016" layer="51"/>
  4379. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  4380. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  4381. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  4382. <text x="-1.397" y="1.651" size="1.27" layer="25">&gt;NAME</text>
  4383. <text x="-1.397" y="-2.921" size="1.27" layer="27">&gt;VALUE</text>
  4384. <rectangle x1="-1.7018" y1="-1.2954" x2="-0.9517" y2="1.3045" layer="51"/>
  4385. <rectangle x1="0.9517" y1="-1.3045" x2="1.7018" y2="1.2954" layer="51"/>
  4386. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  4387. </package>
  4388. <package name="C1310">
  4389. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4390. chip</description>
  4391. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  4392. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  4393. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  4394. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  4395. <wire x1="-0.294" y1="0.559" x2="0.294" y2="0.559" width="0.1016" layer="51"/>
  4396. <wire x1="-0.294" y1="-0.559" x2="0.294" y2="-0.559" width="0.1016" layer="51"/>
  4397. <smd name="1" x="-0.7" y="0" dx="1" dy="1.3" layer="1"/>
  4398. <smd name="2" x="0.7" y="0" dx="1" dy="1.3" layer="1"/>
  4399. <text x="-0.635" y="0.889" size="1.27" layer="25">&gt;NAME</text>
  4400. <text x="-0.635" y="-2.159" size="1.27" layer="27">&gt;VALUE</text>
  4401. <rectangle x1="-0.6604" y1="-0.6223" x2="-0.2804" y2="0.6276" layer="51"/>
  4402. <rectangle x1="0.2794" y1="-0.6223" x2="0.6594" y2="0.6276" layer="51"/>
  4403. <rectangle x1="-0.1001" y1="-0.3" x2="0.1001" y2="0.3" layer="35"/>
  4404. </package>
  4405. <package name="C1608">
  4406. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4407. chip</description>
  4408. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  4409. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  4410. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  4411. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  4412. <wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
  4413. <wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
  4414. <smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
  4415. <smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
  4416. <text x="-0.635" y="0.762" size="1.27" layer="25">&gt;NAME</text>
  4417. <text x="-0.635" y="-2.032" size="1.27" layer="27">&gt;VALUE</text>
  4418. <rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
  4419. <rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
  4420. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  4421. </package>
  4422. <package name="C1812">
  4423. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4424. chip</description>
  4425. <wire x1="-2.973" y1="1.983" x2="2.973" y2="1.983" width="0.0508" layer="39"/>
  4426. <wire x1="2.973" y1="-1.983" x2="-2.973" y2="-1.983" width="0.0508" layer="39"/>
  4427. <wire x1="-2.973" y1="-1.983" x2="-2.973" y2="1.983" width="0.0508" layer="39"/>
  4428. <wire x1="-1.4732" y1="1.6002" x2="1.4732" y2="1.6002" width="0.1016" layer="51"/>
  4429. <wire x1="-1.4478" y1="-1.6002" x2="1.4732" y2="-1.6002" width="0.1016" layer="51"/>
  4430. <wire x1="2.973" y1="1.983" x2="2.973" y2="-1.983" width="0.0508" layer="39"/>
  4431. <smd name="1" x="-1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  4432. <smd name="2" x="1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  4433. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  4434. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  4435. <rectangle x1="-2.3876" y1="-1.651" x2="-1.4376" y2="1.649" layer="51"/>
  4436. <rectangle x1="1.4478" y1="-1.651" x2="2.3978" y2="1.649" layer="51"/>
  4437. <rectangle x1="-0.3" y1="-0.4001" x2="0.3" y2="0.4001" layer="35"/>
  4438. </package>
  4439. <package name="C1825">
  4440. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4441. chip</description>
  4442. <wire x1="-2.973" y1="3.483" x2="2.973" y2="3.483" width="0.0508" layer="39"/>
  4443. <wire x1="2.973" y1="-3.483" x2="-2.973" y2="-3.483" width="0.0508" layer="39"/>
  4444. <wire x1="-2.973" y1="-3.483" x2="-2.973" y2="3.483" width="0.0508" layer="39"/>
  4445. <wire x1="-1.4986" y1="3.2766" x2="1.4732" y2="3.2766" width="0.1016" layer="51"/>
  4446. <wire x1="-1.4732" y1="-3.2766" x2="1.4986" y2="-3.2766" width="0.1016" layer="51"/>
  4447. <wire x1="2.973" y1="3.483" x2="2.973" y2="-3.483" width="0.0508" layer="39"/>
  4448. <smd name="1" x="-1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  4449. <smd name="2" x="1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  4450. <text x="-1.905" y="3.683" size="1.27" layer="25">&gt;NAME</text>
  4451. <text x="-1.905" y="-4.826" size="1.27" layer="27">&gt;VALUE</text>
  4452. <rectangle x1="-2.413" y1="-3.3528" x2="-1.463" y2="3.3472" layer="51"/>
  4453. <rectangle x1="1.4478" y1="-3.3528" x2="2.3978" y2="3.3472" layer="51"/>
  4454. <rectangle x1="-0.7" y1="-0.7" x2="0.7" y2="0.7" layer="35"/>
  4455. </package>
  4456. <package name="C2012">
  4457. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4458. chip</description>
  4459. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  4460. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  4461. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  4462. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  4463. <wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
  4464. <wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
  4465. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  4466. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  4467. <text x="-0.889" y="1.016" size="1.27" layer="25">&gt;NAME</text>
  4468. <text x="-0.889" y="-2.286" size="1.27" layer="27">&gt;VALUE</text>
  4469. <rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
  4470. <rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
  4471. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  4472. </package>
  4473. <package name="C3216">
  4474. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4475. chip</description>
  4476. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  4477. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  4478. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  4479. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  4480. <wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
  4481. <wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
  4482. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  4483. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  4484. <text x="-1.27" y="1.143" size="1.27" layer="25">&gt;NAME</text>
  4485. <text x="-1.27" y="-2.413" size="1.27" layer="27">&gt;VALUE</text>
  4486. <rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
  4487. <rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
  4488. <rectangle x1="-0.3" y1="-0.5001" x2="0.3" y2="0.5001" layer="35"/>
  4489. </package>
  4490. <package name="C3225">
  4491. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4492. chip</description>
  4493. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  4494. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  4495. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  4496. <wire x1="-0.9652" y1="1.2446" x2="0.9652" y2="1.2446" width="0.1016" layer="51"/>
  4497. <wire x1="-0.9652" y1="-1.2446" x2="0.9652" y2="-1.2446" width="0.1016" layer="51"/>
  4498. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  4499. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  4500. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  4501. <text x="-1.397" y="1.651" size="1.27" layer="25">&gt;NAME</text>
  4502. <text x="-1.397" y="-2.921" size="1.27" layer="27">&gt;VALUE</text>
  4503. <rectangle x1="-1.7018" y1="-1.2954" x2="-0.9517" y2="1.3045" layer="51"/>
  4504. <rectangle x1="0.9517" y1="-1.3045" x2="1.7018" y2="1.2954" layer="51"/>
  4505. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  4506. </package>
  4507. <package name="C4532">
  4508. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4509. chip</description>
  4510. <wire x1="-2.973" y1="1.983" x2="2.973" y2="1.983" width="0.0508" layer="39"/>
  4511. <wire x1="2.973" y1="-1.983" x2="-2.973" y2="-1.983" width="0.0508" layer="39"/>
  4512. <wire x1="-2.973" y1="-1.983" x2="-2.973" y2="1.983" width="0.0508" layer="39"/>
  4513. <wire x1="-1.4732" y1="1.6002" x2="1.4732" y2="1.6002" width="0.1016" layer="51"/>
  4514. <wire x1="-1.4478" y1="-1.6002" x2="1.4732" y2="-1.6002" width="0.1016" layer="51"/>
  4515. <wire x1="2.973" y1="1.983" x2="2.973" y2="-1.983" width="0.0508" layer="39"/>
  4516. <smd name="1" x="-1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  4517. <smd name="2" x="1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  4518. <text x="-1.905" y="2.032" size="1.27" layer="25">&gt;NAME</text>
  4519. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  4520. <rectangle x1="-2.3876" y1="-1.651" x2="-1.4376" y2="1.649" layer="51"/>
  4521. <rectangle x1="1.4478" y1="-1.651" x2="2.3978" y2="1.649" layer="51"/>
  4522. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  4523. </package>
  4524. <package name="C4564">
  4525. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4526. chip</description>
  4527. <wire x1="-2.973" y1="3.483" x2="2.973" y2="3.483" width="0.0508" layer="39"/>
  4528. <wire x1="2.973" y1="-3.483" x2="-2.973" y2="-3.483" width="0.0508" layer="39"/>
  4529. <wire x1="-2.973" y1="-3.483" x2="-2.973" y2="3.483" width="0.0508" layer="39"/>
  4530. <wire x1="-1.4986" y1="3.2766" x2="1.4732" y2="3.2766" width="0.1016" layer="51"/>
  4531. <wire x1="-1.4732" y1="-3.2766" x2="1.4986" y2="-3.2766" width="0.1016" layer="51"/>
  4532. <wire x1="2.973" y1="3.483" x2="2.973" y2="-3.483" width="0.0508" layer="39"/>
  4533. <smd name="1" x="-1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  4534. <smd name="2" x="1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  4535. <text x="-1.905" y="3.683" size="1.27" layer="25">&gt;NAME</text>
  4536. <text x="-1.905" y="-4.826" size="1.27" layer="27">&gt;VALUE</text>
  4537. <rectangle x1="-2.413" y1="-3.3528" x2="-1.463" y2="3.3472" layer="51"/>
  4538. <rectangle x1="1.4478" y1="-3.3528" x2="2.3978" y2="3.3472" layer="51"/>
  4539. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  4540. </package>
  4541. <package name="C025-024X044">
  4542. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4543. grid 2.5 mm, outline 2.4 x 4.4 mm</description>
  4544. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="21"/>
  4545. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  4546. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  4547. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  4548. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="21"/>
  4549. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  4550. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  4551. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  4552. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  4553. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  4554. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="51"/>
  4555. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="51"/>
  4556. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.4224" shape="octagon"/>
  4557. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.4224" shape="octagon"/>
  4558. <text x="-1.778" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4559. <text x="-1.778" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4560. </package>
  4561. <package name="C025-025X050">
  4562. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4563. grid 2.5 mm, outline 2.5 x 5 mm</description>
  4564. <wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
  4565. <wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
  4566. <wire x1="2.413" y1="1.016" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
  4567. <wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  4568. <wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  4569. <wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  4570. <wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  4571. <wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  4572. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4573. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4574. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4575. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4576. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4577. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4578. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4579. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  4580. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6764" shape="octagon"/>
  4581. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6764" shape="octagon"/>
  4582. <text x="-2.286" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4583. <text x="-2.286" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4584. </package>
  4585. <package name="C025-030X050">
  4586. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4587. grid 2.5 mm, outline 3 x 5 mm</description>
  4588. <wire x1="-2.159" y1="1.524" x2="2.159" y2="1.524" width="0.1524" layer="21"/>
  4589. <wire x1="2.159" y1="-1.524" x2="-2.159" y2="-1.524" width="0.1524" layer="21"/>
  4590. <wire x1="2.413" y1="1.27" x2="2.413" y2="-1.27" width="0.1524" layer="21"/>
  4591. <wire x1="-2.413" y1="1.27" x2="-2.413" y2="-1.27" width="0.1524" layer="21"/>
  4592. <wire x1="2.159" y1="1.524" x2="2.413" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  4593. <wire x1="-2.413" y1="1.27" x2="-2.159" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4594. <wire x1="2.159" y1="-1.524" x2="2.413" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  4595. <wire x1="-2.413" y1="-1.27" x2="-2.159" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4596. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4597. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4598. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4599. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4600. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4601. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4602. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4603. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  4604. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.4224" shape="octagon"/>
  4605. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.4224" shape="octagon"/>
  4606. <text x="-2.286" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4607. <text x="-2.286" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4608. </package>
  4609. <package name="C025-040X050">
  4610. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4611. grid 2.5 mm, outline 4 x 5 mm</description>
  4612. <wire x1="-2.159" y1="1.905" x2="2.159" y2="1.905" width="0.1524" layer="21"/>
  4613. <wire x1="2.159" y1="-1.905" x2="-2.159" y2="-1.905" width="0.1524" layer="21"/>
  4614. <wire x1="2.413" y1="1.651" x2="2.413" y2="-1.651" width="0.1524" layer="21"/>
  4615. <wire x1="-2.413" y1="1.651" x2="-2.413" y2="-1.651" width="0.1524" layer="21"/>
  4616. <wire x1="2.159" y1="1.905" x2="2.413" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  4617. <wire x1="-2.413" y1="1.651" x2="-2.159" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  4618. <wire x1="2.159" y1="-1.905" x2="2.413" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  4619. <wire x1="-2.413" y1="-1.651" x2="-2.159" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  4620. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4621. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4622. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4623. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4624. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4625. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4626. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4627. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  4628. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.4224" shape="octagon"/>
  4629. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.4224" shape="octagon"/>
  4630. <text x="-2.286" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4631. <text x="-2.286" y="-3.429" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4632. </package>
  4633. <package name="C025-050X050">
  4634. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4635. grid 2.5 mm, outline 5 x 5 mm</description>
  4636. <wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
  4637. <wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
  4638. <wire x1="2.413" y1="2.032" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
  4639. <wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
  4640. <wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4641. <wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  4642. <wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4643. <wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  4644. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4645. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4646. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4647. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4648. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4649. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4650. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4651. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  4652. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  4653. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  4654. <text x="-2.286" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4655. <text x="-2.286" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4656. </package>
  4657. <package name="C025-060X050">
  4658. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4659. grid 2.5 mm, outline 6 x 5 mm</description>
  4660. <wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
  4661. <wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
  4662. <wire x1="2.413" y1="2.54" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
  4663. <wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
  4664. <wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4665. <wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  4666. <wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4667. <wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  4668. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4669. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4670. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4671. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4672. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4673. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4674. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4675. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  4676. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  4677. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  4678. <text x="-2.286" y="3.048" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4679. <text x="-2.032" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4680. </package>
  4681. <package name="C025_050-024X070">
  4682. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4683. grid 2.5 mm + 5 mm, outline 2.4 x 7 mm</description>
  4684. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="51"/>
  4685. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90" cap="flat"/>
  4686. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90" cap="flat"/>
  4687. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  4688. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="51"/>
  4689. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  4690. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90" cap="flat"/>
  4691. <wire x1="-4.191" y1="-1.143" x2="-3.9624" y2="-1.143" width="0.1524" layer="21"/>
  4692. <wire x1="-4.191" y1="1.143" x2="-3.9624" y2="1.143" width="0.1524" layer="21"/>
  4693. <wire x1="-4.699" y1="-0.635" x2="-4.191" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  4694. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90" cap="flat"/>
  4695. <wire x1="-4.699" y1="0.635" x2="-4.191" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  4696. <wire x1="-4.699" y1="-0.635" x2="-4.699" y2="0.635" width="0.1524" layer="21"/>
  4697. <wire x1="-3.429" y1="1.143" x2="-2.5654" y2="1.143" width="0.1524" layer="21"/>
  4698. <wire x1="-3.429" y1="-1.143" x2="-2.5654" y2="-1.143" width="0.1524" layer="21"/>
  4699. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  4700. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  4701. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="51"/>
  4702. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="51"/>
  4703. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  4704. <pad name="2" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  4705. <pad name="3" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  4706. <text x="-3.81" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4707. <text x="-3.81" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4708. </package>
  4709. <package name="C025_050-025X075">
  4710. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4711. grid 2.5 + 5 mm, outline 2.5 x 7.5 mm</description>
  4712. <wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
  4713. <wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
  4714. <wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  4715. <wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  4716. <wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  4717. <wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  4718. <wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  4719. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4720. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4721. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4722. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4723. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4724. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4725. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  4726. <wire x1="4.953" y1="1.016" x2="4.953" y2="-1.016" width="0.1524" layer="21"/>
  4727. <wire x1="4.699" y1="1.27" x2="4.953" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  4728. <wire x1="4.699" y1="-1.27" x2="4.953" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  4729. <wire x1="2.794" y1="1.27" x2="4.699" y2="1.27" width="0.1524" layer="21"/>
  4730. <wire x1="4.699" y1="-1.27" x2="2.794" y2="-1.27" width="0.1524" layer="21"/>
  4731. <wire x1="2.413" y1="1.016" x2="2.413" y2="0.762" width="0.1524" layer="21"/>
  4732. <wire x1="2.413" y1="-0.762" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
  4733. <wire x1="2.413" y1="0.254" x2="2.413" y2="-0.254" width="0.1524" layer="21"/>
  4734. <wire x1="1.778" y1="0" x2="2.286" y2="0" width="0.1524" layer="51"/>
  4735. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  4736. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  4737. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4738. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  4739. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  4740. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  4741. <text x="-2.159" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4742. <text x="-2.159" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4743. </package>
  4744. <package name="C025_050-035X075">
  4745. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4746. grid 2.5 + 5 mm, outline 3.5 x 7.5 mm</description>
  4747. <wire x1="-2.159" y1="1.778" x2="2.159" y2="1.778" width="0.1524" layer="21"/>
  4748. <wire x1="2.159" y1="-1.778" x2="-2.159" y2="-1.778" width="0.1524" layer="21"/>
  4749. <wire x1="-2.413" y1="1.524" x2="-2.413" y2="-1.524" width="0.1524" layer="21"/>
  4750. <wire x1="2.159" y1="1.778" x2="2.413" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4751. <wire x1="-2.413" y1="1.524" x2="-2.159" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  4752. <wire x1="2.159" y1="-1.778" x2="2.413" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4753. <wire x1="-2.413" y1="-1.524" x2="-2.159" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  4754. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4755. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4756. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4757. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4758. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4759. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4760. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  4761. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  4762. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4763. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4764. <wire x1="2.794" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  4765. <wire x1="4.699" y1="-1.778" x2="2.794" y2="-1.778" width="0.1524" layer="21"/>
  4766. <wire x1="2.413" y1="1.524" x2="2.413" y2="1.016" width="0.1524" layer="21"/>
  4767. <wire x1="2.413" y1="-1.016" x2="2.413" y2="-1.524" width="0.1524" layer="21"/>
  4768. <wire x1="2.413" y1="0.508" x2="2.413" y2="-0.508" width="0.1524" layer="21"/>
  4769. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  4770. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  4771. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  4772. <wire x1="2.286" y1="0" x2="1.778" y2="0" width="0.1524" layer="51"/>
  4773. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  4774. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  4775. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  4776. <text x="-2.286" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4777. <text x="-2.286" y="-3.302" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4778. </package>
  4779. <package name="C025_050-045X075">
  4780. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4781. grid 2.5 + 5 mm, outline 4.5 x 7.5 mm</description>
  4782. <wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
  4783. <wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
  4784. <wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
  4785. <wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4786. <wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  4787. <wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4788. <wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  4789. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4790. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4791. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4792. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4793. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4794. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4795. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  4796. <wire x1="4.953" y1="2.032" x2="4.953" y2="-2.032" width="0.1524" layer="21"/>
  4797. <wire x1="4.699" y1="2.286" x2="4.953" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4798. <wire x1="4.699" y1="-2.286" x2="4.953" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4799. <wire x1="2.794" y1="2.286" x2="4.699" y2="2.286" width="0.1524" layer="21"/>
  4800. <wire x1="4.699" y1="-2.286" x2="2.794" y2="-2.286" width="0.1524" layer="21"/>
  4801. <wire x1="2.413" y1="2.032" x2="2.413" y2="1.397" width="0.1524" layer="21"/>
  4802. <wire x1="2.413" y1="-1.397" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
  4803. <wire x1="2.413" y1="0.762" x2="2.413" y2="-0.762" width="0.1524" layer="21"/>
  4804. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  4805. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  4806. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  4807. <wire x1="2.286" y1="0" x2="1.778" y2="0" width="0.1524" layer="51"/>
  4808. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  4809. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  4810. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  4811. <text x="-2.286" y="2.667" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4812. <text x="-2.286" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4813. </package>
  4814. <package name="C025_050-055X075">
  4815. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4816. grid 2.5 + 5 mm, outline 5.5 x 7.5 mm</description>
  4817. <wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
  4818. <wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
  4819. <wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
  4820. <wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4821. <wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  4822. <wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4823. <wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  4824. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4825. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4826. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4827. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4828. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4829. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4830. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  4831. <wire x1="4.953" y1="2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
  4832. <wire x1="4.699" y1="2.794" x2="4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4833. <wire x1="4.699" y1="-2.794" x2="4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4834. <wire x1="2.794" y1="2.794" x2="4.699" y2="2.794" width="0.1524" layer="21"/>
  4835. <wire x1="4.699" y1="-2.794" x2="2.794" y2="-2.794" width="0.1524" layer="21"/>
  4836. <wire x1="2.413" y1="2.54" x2="2.413" y2="2.032" width="0.1524" layer="21"/>
  4837. <wire x1="2.413" y1="-2.032" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
  4838. <wire x1="2.413" y1="0.762" x2="2.413" y2="-0.762" width="0.1524" layer="21"/>
  4839. <wire x1="1.778" y1="0" x2="2.286" y2="0" width="0.1524" layer="51"/>
  4840. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  4841. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  4842. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  4843. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  4844. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  4845. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  4846. <text x="-2.286" y="3.175" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4847. <text x="-2.032" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4848. </package>
  4849. <package name="C050-024X044">
  4850. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4851. grid 5 mm, outline 2.4 x 4.4 mm</description>
  4852. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="51"/>
  4853. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90" cap="flat"/>
  4854. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90" cap="flat"/>
  4855. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  4856. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="51"/>
  4857. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  4858. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90" cap="flat"/>
  4859. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90" cap="flat"/>
  4860. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4861. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  4862. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4863. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  4864. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="21"/>
  4865. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="21"/>
  4866. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  4867. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  4868. <text x="-2.159" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4869. <text x="-2.159" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4870. <rectangle x1="2.159" y1="-0.381" x2="2.54" y2="0.381" layer="51"/>
  4871. <rectangle x1="-2.54" y1="-0.381" x2="-2.159" y2="0.381" layer="51"/>
  4872. </package>
  4873. <package name="C050-025X075">
  4874. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4875. grid 5 mm, outline 2.5 x 7.5 mm</description>
  4876. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4877. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4878. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4879. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4880. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4881. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4882. <wire x1="-3.683" y1="1.016" x2="-3.683" y2="-1.016" width="0.1524" layer="21"/>
  4883. <wire x1="-3.429" y1="-1.27" x2="3.429" y2="-1.27" width="0.1524" layer="21"/>
  4884. <wire x1="3.683" y1="-1.016" x2="3.683" y2="1.016" width="0.1524" layer="21"/>
  4885. <wire x1="3.429" y1="1.27" x2="-3.429" y2="1.27" width="0.1524" layer="21"/>
  4886. <wire x1="3.429" y1="1.27" x2="3.683" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  4887. <wire x1="3.429" y1="-1.27" x2="3.683" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  4888. <wire x1="-3.683" y1="-1.016" x2="-3.429" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  4889. <wire x1="-3.683" y1="1.016" x2="-3.429" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  4890. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  4891. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  4892. <text x="-3.429" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4893. <text x="-3.429" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4894. </package>
  4895. <package name="C050-045X075">
  4896. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4897. grid 5 mm, outline 4.5 x 7.5 mm</description>
  4898. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4899. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4900. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4901. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4902. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4903. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4904. <wire x1="-3.683" y1="2.032" x2="-3.683" y2="-2.032" width="0.1524" layer="21"/>
  4905. <wire x1="-3.429" y1="-2.286" x2="3.429" y2="-2.286" width="0.1524" layer="21"/>
  4906. <wire x1="3.683" y1="-2.032" x2="3.683" y2="2.032" width="0.1524" layer="21"/>
  4907. <wire x1="3.429" y1="2.286" x2="-3.429" y2="2.286" width="0.1524" layer="21"/>
  4908. <wire x1="3.429" y1="2.286" x2="3.683" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4909. <wire x1="3.429" y1="-2.286" x2="3.683" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4910. <wire x1="-3.683" y1="-2.032" x2="-3.429" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  4911. <wire x1="-3.683" y1="2.032" x2="-3.429" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  4912. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  4913. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  4914. <text x="-3.556" y="2.667" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4915. <text x="-3.556" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4916. </package>
  4917. <package name="C050-030X075">
  4918. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4919. grid 5 mm, outline 3 x 7.5 mm</description>
  4920. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4921. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4922. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4923. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4924. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4925. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4926. <wire x1="-3.683" y1="1.27" x2="-3.683" y2="-1.27" width="0.1524" layer="21"/>
  4927. <wire x1="-3.429" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  4928. <wire x1="3.683" y1="-1.27" x2="3.683" y2="1.27" width="0.1524" layer="21"/>
  4929. <wire x1="3.429" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  4930. <wire x1="3.429" y1="1.524" x2="3.683" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  4931. <wire x1="3.429" y1="-1.524" x2="3.683" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  4932. <wire x1="-3.683" y1="-1.27" x2="-3.429" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4933. <wire x1="-3.683" y1="1.27" x2="-3.429" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4934. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  4935. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  4936. <text x="-3.556" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4937. <text x="-3.556" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4938. </package>
  4939. <package name="C050-050X075">
  4940. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4941. grid 5 mm, outline 5 x 7.5 mm</description>
  4942. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4943. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4944. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4945. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4946. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4947. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4948. <wire x1="-3.683" y1="2.286" x2="-3.683" y2="-2.286" width="0.1524" layer="21"/>
  4949. <wire x1="-3.429" y1="-2.54" x2="3.429" y2="-2.54" width="0.1524" layer="21"/>
  4950. <wire x1="3.683" y1="-2.286" x2="3.683" y2="2.286" width="0.1524" layer="21"/>
  4951. <wire x1="3.429" y1="2.54" x2="-3.429" y2="2.54" width="0.1524" layer="21"/>
  4952. <wire x1="3.429" y1="2.54" x2="3.683" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  4953. <wire x1="3.429" y1="-2.54" x2="3.683" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  4954. <wire x1="-3.683" y1="-2.286" x2="-3.429" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4955. <wire x1="-3.683" y1="2.286" x2="-3.429" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4956. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  4957. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  4958. <text x="-3.429" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4959. <text x="-3.175" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4960. </package>
  4961. <package name="C050-055X075">
  4962. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4963. grid 5 mm, outline 5.5 x 7.5 mm</description>
  4964. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4965. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4966. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4967. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4968. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4969. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4970. <wire x1="-3.683" y1="2.54" x2="-3.683" y2="-2.54" width="0.1524" layer="21"/>
  4971. <wire x1="-3.429" y1="-2.794" x2="3.429" y2="-2.794" width="0.1524" layer="21"/>
  4972. <wire x1="3.683" y1="-2.54" x2="3.683" y2="2.54" width="0.1524" layer="21"/>
  4973. <wire x1="3.429" y1="2.794" x2="-3.429" y2="2.794" width="0.1524" layer="21"/>
  4974. <wire x1="3.429" y1="2.794" x2="3.683" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4975. <wire x1="3.429" y1="-2.794" x2="3.683" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4976. <wire x1="-3.683" y1="-2.54" x2="-3.429" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  4977. <wire x1="-3.683" y1="2.54" x2="-3.429" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  4978. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  4979. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  4980. <text x="-3.429" y="3.175" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4981. <text x="-3.302" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4982. </package>
  4983. <package name="C050-075X075">
  4984. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4985. grid 5 mm, outline 7.5 x 7.5 mm</description>
  4986. <wire x1="-1.524" y1="0" x2="-0.4572" y2="0" width="0.1524" layer="21"/>
  4987. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="0.762" width="0.4064" layer="21"/>
  4988. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="-0.762" width="0.4064" layer="21"/>
  4989. <wire x1="0.4318" y1="0.762" x2="0.4318" y2="0" width="0.4064" layer="21"/>
  4990. <wire x1="0.4318" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4991. <wire x1="0.4318" y1="0" x2="0.4318" y2="-0.762" width="0.4064" layer="21"/>
  4992. <wire x1="-3.683" y1="3.429" x2="-3.683" y2="-3.429" width="0.1524" layer="21"/>
  4993. <wire x1="-3.429" y1="-3.683" x2="3.429" y2="-3.683" width="0.1524" layer="21"/>
  4994. <wire x1="3.683" y1="-3.429" x2="3.683" y2="3.429" width="0.1524" layer="21"/>
  4995. <wire x1="3.429" y1="3.683" x2="-3.429" y2="3.683" width="0.1524" layer="21"/>
  4996. <wire x1="3.429" y1="3.683" x2="3.683" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  4997. <wire x1="3.429" y1="-3.683" x2="3.683" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  4998. <wire x1="-3.683" y1="-3.429" x2="-3.429" y2="-3.683" width="0.1524" layer="21" curve="90"/>
  4999. <wire x1="-3.683" y1="3.429" x2="-3.429" y2="3.683" width="0.1524" layer="21" curve="-90"/>
  5000. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  5001. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  5002. <text x="-3.429" y="4.064" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5003. <text x="-3.175" y="-2.921" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5004. </package>
  5005. <package name="C050H075X075">
  5006. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5007. Horizontal, grid 5 mm, outline 7.5 x 7.5 mm</description>
  5008. <wire x1="-3.683" y1="7.112" x2="-3.683" y2="0.508" width="0.1524" layer="21"/>
  5009. <wire x1="-3.683" y1="0.508" x2="-3.302" y2="0.508" width="0.1524" layer="21"/>
  5010. <wire x1="-3.302" y1="0.508" x2="-1.778" y2="0.508" width="0.1524" layer="51"/>
  5011. <wire x1="-1.778" y1="0.508" x2="1.778" y2="0.508" width="0.1524" layer="21"/>
  5012. <wire x1="1.778" y1="0.508" x2="3.302" y2="0.508" width="0.1524" layer="51"/>
  5013. <wire x1="3.302" y1="0.508" x2="3.683" y2="0.508" width="0.1524" layer="21"/>
  5014. <wire x1="3.683" y1="0.508" x2="3.683" y2="7.112" width="0.1524" layer="21"/>
  5015. <wire x1="3.175" y1="7.62" x2="-3.175" y2="7.62" width="0.1524" layer="21"/>
  5016. <wire x1="-0.3048" y1="2.413" x2="-0.3048" y2="1.778" width="0.3048" layer="21"/>
  5017. <wire x1="-0.3048" y1="1.778" x2="-0.3048" y2="1.143" width="0.3048" layer="21"/>
  5018. <wire x1="-0.3048" y1="1.778" x2="-1.651" y2="1.778" width="0.1524" layer="21"/>
  5019. <wire x1="0.3302" y1="2.413" x2="0.3302" y2="1.778" width="0.3048" layer="21"/>
  5020. <wire x1="0.3302" y1="1.778" x2="0.3302" y2="1.143" width="0.3048" layer="21"/>
  5021. <wire x1="0.3302" y1="1.778" x2="1.651" y2="1.778" width="0.1524" layer="21"/>
  5022. <wire x1="-3.683" y1="7.112" x2="-3.175" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  5023. <wire x1="3.175" y1="7.62" x2="3.683" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  5024. <wire x1="-2.54" y1="0" x2="-2.54" y2="0.254" width="0.508" layer="51"/>
  5025. <wire x1="2.54" y1="0" x2="2.54" y2="0.254" width="0.508" layer="51"/>
  5026. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  5027. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  5028. <text x="-3.302" y="8.001" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5029. <text x="-3.175" y="3.175" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5030. <rectangle x1="-2.794" y1="0.127" x2="-2.286" y2="0.508" layer="51"/>
  5031. <rectangle x1="2.286" y1="0.127" x2="2.794" y2="0.508" layer="51"/>
  5032. </package>
  5033. <package name="C075-032X103">
  5034. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5035. grid 7.5 mm, outline 3.2 x 10.3 mm</description>
  5036. <wire x1="4.826" y1="1.524" x2="-4.826" y2="1.524" width="0.1524" layer="21"/>
  5037. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="-1.27" width="0.1524" layer="21"/>
  5038. <wire x1="-4.826" y1="-1.524" x2="4.826" y2="-1.524" width="0.1524" layer="21"/>
  5039. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.1524" layer="21"/>
  5040. <wire x1="4.826" y1="1.524" x2="5.08" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  5041. <wire x1="4.826" y1="-1.524" x2="5.08" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  5042. <wire x1="-5.08" y1="-1.27" x2="-4.826" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  5043. <wire x1="-5.08" y1="1.27" x2="-4.826" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  5044. <wire x1="0.508" y1="0" x2="2.54" y2="0" width="0.1524" layer="21"/>
  5045. <wire x1="-2.54" y1="0" x2="-0.508" y2="0" width="0.1524" layer="21"/>
  5046. <wire x1="-0.508" y1="0.889" x2="-0.508" y2="0" width="0.4064" layer="21"/>
  5047. <wire x1="-0.508" y1="0" x2="-0.508" y2="-0.889" width="0.4064" layer="21"/>
  5048. <wire x1="0.508" y1="0.889" x2="0.508" y2="0" width="0.4064" layer="21"/>
  5049. <wire x1="0.508" y1="0" x2="0.508" y2="-0.889" width="0.4064" layer="21"/>
  5050. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  5051. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  5052. <text x="-4.826" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5053. <text x="-4.826" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5054. </package>
  5055. <package name="C075-042X103">
  5056. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5057. grid 7.5 mm, outline 4.2 x 10.3 mm</description>
  5058. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  5059. <wire x1="-5.08" y1="1.778" x2="-5.08" y2="-1.778" width="0.1524" layer="21"/>
  5060. <wire x1="-4.826" y1="-2.032" x2="4.826" y2="-2.032" width="0.1524" layer="21"/>
  5061. <wire x1="5.08" y1="-1.778" x2="5.08" y2="1.778" width="0.1524" layer="21"/>
  5062. <wire x1="4.826" y1="2.032" x2="5.08" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  5063. <wire x1="4.826" y1="-2.032" x2="5.08" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  5064. <wire x1="-5.08" y1="-1.778" x2="-4.826" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  5065. <wire x1="-5.08" y1="1.778" x2="-4.826" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  5066. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  5067. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  5068. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  5069. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  5070. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  5071. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  5072. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  5073. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  5074. <text x="-4.699" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5075. <text x="-0.635" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5076. </package>
  5077. <package name="C075-052X106">
  5078. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5079. grid 7.5 mm, outline 5.2 x 10.6 mm</description>
  5080. <wire x1="4.953" y1="2.54" x2="-4.953" y2="2.54" width="0.1524" layer="21"/>
  5081. <wire x1="-5.207" y1="2.286" x2="-5.207" y2="-2.286" width="0.1524" layer="21"/>
  5082. <wire x1="-4.953" y1="-2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
  5083. <wire x1="5.207" y1="-2.286" x2="5.207" y2="2.286" width="0.1524" layer="21"/>
  5084. <wire x1="4.953" y1="2.54" x2="5.207" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  5085. <wire x1="4.953" y1="-2.54" x2="5.207" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  5086. <wire x1="-5.207" y1="-2.286" x2="-4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5087. <wire x1="-5.207" y1="2.286" x2="-4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5088. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  5089. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  5090. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  5091. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  5092. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  5093. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  5094. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  5095. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  5096. <text x="-4.826" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5097. <text x="-0.635" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5098. </package>
  5099. <package name="C102-043X133">
  5100. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5101. grid 10.2 mm, outline 4.3 x 13.3 mm</description>
  5102. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  5103. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  5104. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  5105. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  5106. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  5107. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  5108. <wire x1="-6.096" y1="2.032" x2="6.096" y2="2.032" width="0.1524" layer="21"/>
  5109. <wire x1="6.604" y1="1.524" x2="6.604" y2="-1.524" width="0.1524" layer="21"/>
  5110. <wire x1="6.096" y1="-2.032" x2="-6.096" y2="-2.032" width="0.1524" layer="21"/>
  5111. <wire x1="-6.604" y1="-1.524" x2="-6.604" y2="1.524" width="0.1524" layer="21"/>
  5112. <wire x1="6.096" y1="2.032" x2="6.604" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  5113. <wire x1="6.096" y1="-2.032" x2="6.604" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  5114. <wire x1="-6.604" y1="-1.524" x2="-6.096" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  5115. <wire x1="-6.604" y1="1.524" x2="-6.096" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  5116. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  5117. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  5118. <text x="-6.096" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5119. <text x="-1.524" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5120. </package>
  5121. <package name="C102-054X133">
  5122. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5123. grid 10.2 mm, outline 5.4 x 13.3 mm</description>
  5124. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  5125. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  5126. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  5127. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  5128. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  5129. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  5130. <wire x1="-6.096" y1="2.54" x2="6.096" y2="2.54" width="0.1524" layer="21"/>
  5131. <wire x1="6.604" y1="2.032" x2="6.604" y2="-2.032" width="0.1524" layer="21"/>
  5132. <wire x1="6.096" y1="-2.54" x2="-6.096" y2="-2.54" width="0.1524" layer="21"/>
  5133. <wire x1="-6.604" y1="-2.032" x2="-6.604" y2="2.032" width="0.1524" layer="21"/>
  5134. <wire x1="6.096" y1="2.54" x2="6.604" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  5135. <wire x1="6.096" y1="-2.54" x2="6.604" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  5136. <wire x1="-6.604" y1="-2.032" x2="-6.096" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5137. <wire x1="-6.604" y1="2.032" x2="-6.096" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5138. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  5139. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  5140. <text x="-6.096" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5141. <text x="-1.524" y="-1.905" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5142. </package>
  5143. <package name="C102-064X133">
  5144. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5145. grid 10.2 mm, outline 6.4 x 13.3 mm</description>
  5146. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  5147. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  5148. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  5149. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  5150. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  5151. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  5152. <wire x1="-6.096" y1="3.048" x2="6.096" y2="3.048" width="0.1524" layer="21"/>
  5153. <wire x1="6.604" y1="2.54" x2="6.604" y2="-2.54" width="0.1524" layer="21"/>
  5154. <wire x1="6.096" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
  5155. <wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
  5156. <wire x1="6.096" y1="3.048" x2="6.604" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5157. <wire x1="6.096" y1="-3.048" x2="6.604" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5158. <wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  5159. <wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  5160. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  5161. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  5162. <text x="-6.096" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5163. <text x="-1.524" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5164. </package>
  5165. <package name="C102_152-062X184">
  5166. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5167. grid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm</description>
  5168. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  5169. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  5170. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  5171. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  5172. <wire x1="-3.683" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  5173. <wire x1="-2.286" y1="0" x2="3.683" y2="0" width="0.1524" layer="21"/>
  5174. <wire x1="6.477" y1="0" x2="8.636" y2="0" width="0.1524" layer="21"/>
  5175. <wire x1="-6.096" y1="3.048" x2="6.223" y2="3.048" width="0.1524" layer="21"/>
  5176. <wire x1="6.223" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
  5177. <wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
  5178. <wire x1="6.223" y1="3.048" x2="6.731" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5179. <wire x1="6.223" y1="-3.048" x2="6.731" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5180. <wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  5181. <wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  5182. <wire x1="6.731" y1="2.54" x2="6.731" y2="-2.54" width="0.1524" layer="21"/>
  5183. <wire x1="11.176" y1="3.048" x2="11.684" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5184. <wire x1="11.176" y1="-3.048" x2="11.684" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5185. <wire x1="11.176" y1="-3.048" x2="7.112" y2="-3.048" width="0.1524" layer="21"/>
  5186. <wire x1="7.112" y1="3.048" x2="11.176" y2="3.048" width="0.1524" layer="21"/>
  5187. <wire x1="11.684" y1="2.54" x2="11.684" y2="-2.54" width="0.1524" layer="21"/>
  5188. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  5189. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  5190. <pad name="3" x="10.033" y="0" drill="1.016" shape="octagon"/>
  5191. <text x="-5.969" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5192. <text x="-1.524" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5193. </package>
  5194. <package name="C150-054X183">
  5195. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5196. grid 15 mm, outline 5.4 x 18.3 mm</description>
  5197. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  5198. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  5199. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  5200. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  5201. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  5202. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  5203. <wire x1="9.017" y1="2.032" x2="9.017" y2="-2.032" width="0.1524" layer="21"/>
  5204. <wire x1="8.509" y1="-2.54" x2="-8.509" y2="-2.54" width="0.1524" layer="21"/>
  5205. <wire x1="-9.017" y1="-2.032" x2="-9.017" y2="2.032" width="0.1524" layer="21"/>
  5206. <wire x1="-8.509" y1="2.54" x2="8.509" y2="2.54" width="0.1524" layer="21"/>
  5207. <wire x1="8.509" y1="2.54" x2="9.017" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  5208. <wire x1="8.509" y1="-2.54" x2="9.017" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  5209. <wire x1="-9.017" y1="-2.032" x2="-8.509" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5210. <wire x1="-9.017" y1="2.032" x2="-8.509" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5211. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  5212. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  5213. <text x="-8.382" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5214. <text x="-3.429" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5215. </package>
  5216. <package name="C150-064X183">
  5217. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5218. grid 15 mm, outline 6.4 x 18.3 mm</description>
  5219. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  5220. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  5221. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  5222. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  5223. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  5224. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  5225. <wire x1="9.017" y1="2.54" x2="9.017" y2="-2.54" width="0.1524" layer="21"/>
  5226. <wire x1="8.509" y1="-3.048" x2="-8.509" y2="-3.048" width="0.1524" layer="21"/>
  5227. <wire x1="-9.017" y1="-2.54" x2="-9.017" y2="2.54" width="0.1524" layer="21"/>
  5228. <wire x1="-8.509" y1="3.048" x2="8.509" y2="3.048" width="0.1524" layer="21"/>
  5229. <wire x1="8.509" y1="3.048" x2="9.017" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5230. <wire x1="8.509" y1="-3.048" x2="9.017" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5231. <wire x1="-9.017" y1="-2.54" x2="-8.509" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  5232. <wire x1="-9.017" y1="2.54" x2="-8.509" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  5233. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  5234. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  5235. <text x="-8.509" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5236. <text x="-3.429" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5237. </package>
  5238. <package name="C150-072X183">
  5239. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5240. grid 15 mm, outline 7.2 x 18.3 mm</description>
  5241. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  5242. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  5243. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  5244. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  5245. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  5246. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  5247. <wire x1="9.017" y1="3.048" x2="9.017" y2="-3.048" width="0.1524" layer="21"/>
  5248. <wire x1="8.509" y1="-3.556" x2="-8.509" y2="-3.556" width="0.1524" layer="21"/>
  5249. <wire x1="-9.017" y1="-3.048" x2="-9.017" y2="3.048" width="0.1524" layer="21"/>
  5250. <wire x1="-8.509" y1="3.556" x2="8.509" y2="3.556" width="0.1524" layer="21"/>
  5251. <wire x1="8.509" y1="3.556" x2="9.017" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  5252. <wire x1="8.509" y1="-3.556" x2="9.017" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  5253. <wire x1="-9.017" y1="-3.048" x2="-8.509" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  5254. <wire x1="-9.017" y1="3.048" x2="-8.509" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  5255. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  5256. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  5257. <text x="-8.509" y="3.937" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5258. <text x="-3.429" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5259. </package>
  5260. <package name="C150-084X183">
  5261. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5262. grid 15 mm, outline 8.4 x 18.3 mm</description>
  5263. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  5264. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  5265. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  5266. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  5267. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  5268. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  5269. <wire x1="9.017" y1="3.556" x2="9.017" y2="-3.556" width="0.1524" layer="21"/>
  5270. <wire x1="8.509" y1="-4.064" x2="-8.509" y2="-4.064" width="0.1524" layer="21"/>
  5271. <wire x1="-9.017" y1="-3.556" x2="-9.017" y2="3.556" width="0.1524" layer="21"/>
  5272. <wire x1="-8.509" y1="4.064" x2="8.509" y2="4.064" width="0.1524" layer="21"/>
  5273. <wire x1="8.509" y1="4.064" x2="9.017" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  5274. <wire x1="8.509" y1="-4.064" x2="9.017" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  5275. <wire x1="-9.017" y1="-3.556" x2="-8.509" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  5276. <wire x1="-9.017" y1="3.556" x2="-8.509" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  5277. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  5278. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  5279. <text x="-8.509" y="4.445" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5280. <text x="-3.429" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5281. </package>
  5282. <package name="C150-091X182">
  5283. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5284. grid 15 mm, outline 9.1 x 18.2 mm</description>
  5285. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  5286. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  5287. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  5288. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  5289. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  5290. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  5291. <wire x1="9.017" y1="3.937" x2="9.017" y2="-3.937" width="0.1524" layer="21"/>
  5292. <wire x1="8.509" y1="-4.445" x2="-8.509" y2="-4.445" width="0.1524" layer="21"/>
  5293. <wire x1="-9.017" y1="-3.937" x2="-9.017" y2="3.937" width="0.1524" layer="21"/>
  5294. <wire x1="-8.509" y1="4.445" x2="8.509" y2="4.445" width="0.1524" layer="21"/>
  5295. <wire x1="8.509" y1="4.445" x2="9.017" y2="3.937" width="0.1524" layer="21" curve="-90"/>
  5296. <wire x1="8.509" y1="-4.445" x2="9.017" y2="-3.937" width="0.1524" layer="21" curve="90"/>
  5297. <wire x1="-9.017" y1="-3.937" x2="-8.509" y2="-4.445" width="0.1524" layer="21" curve="90"/>
  5298. <wire x1="-9.017" y1="3.937" x2="-8.509" y2="4.445" width="0.1524" layer="21" curve="-90"/>
  5299. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  5300. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  5301. <text x="-8.509" y="4.826" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5302. <text x="-3.429" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5303. </package>
  5304. <package name="C225-062X268">
  5305. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5306. grid 22.5 mm, outline 6.2 x 26.8 mm</description>
  5307. <wire x1="-12.827" y1="3.048" x2="12.827" y2="3.048" width="0.1524" layer="21"/>
  5308. <wire x1="13.335" y1="2.54" x2="13.335" y2="-2.54" width="0.1524" layer="21"/>
  5309. <wire x1="12.827" y1="-3.048" x2="-12.827" y2="-3.048" width="0.1524" layer="21"/>
  5310. <wire x1="-13.335" y1="-2.54" x2="-13.335" y2="2.54" width="0.1524" layer="21"/>
  5311. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5312. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5313. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5314. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5315. <wire x1="12.827" y1="3.048" x2="13.335" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5316. <wire x1="12.827" y1="-3.048" x2="13.335" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5317. <wire x1="-13.335" y1="-2.54" x2="-12.827" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  5318. <wire x1="-13.335" y1="2.54" x2="-12.827" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  5319. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5320. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  5321. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  5322. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  5323. <text x="-12.7" y="3.429" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5324. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5325. </package>
  5326. <package name="C225-074X268">
  5327. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5328. grid 22.5 mm, outline 7.4 x 26.8 mm</description>
  5329. <wire x1="-12.827" y1="3.556" x2="12.827" y2="3.556" width="0.1524" layer="21"/>
  5330. <wire x1="13.335" y1="3.048" x2="13.335" y2="-3.048" width="0.1524" layer="21"/>
  5331. <wire x1="12.827" y1="-3.556" x2="-12.827" y2="-3.556" width="0.1524" layer="21"/>
  5332. <wire x1="-13.335" y1="-3.048" x2="-13.335" y2="3.048" width="0.1524" layer="21"/>
  5333. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5334. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5335. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5336. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5337. <wire x1="12.827" y1="3.556" x2="13.335" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  5338. <wire x1="12.827" y1="-3.556" x2="13.335" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  5339. <wire x1="-13.335" y1="-3.048" x2="-12.827" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  5340. <wire x1="-13.335" y1="3.048" x2="-12.827" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  5341. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5342. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  5343. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  5344. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  5345. <text x="-12.827" y="3.937" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5346. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5347. </package>
  5348. <package name="C225-087X268">
  5349. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5350. grid 22.5 mm, outline 8.7 x 26.8 mm</description>
  5351. <wire x1="-12.827" y1="4.318" x2="12.827" y2="4.318" width="0.1524" layer="21"/>
  5352. <wire x1="13.335" y1="3.81" x2="13.335" y2="-3.81" width="0.1524" layer="21"/>
  5353. <wire x1="12.827" y1="-4.318" x2="-12.827" y2="-4.318" width="0.1524" layer="21"/>
  5354. <wire x1="-13.335" y1="-3.81" x2="-13.335" y2="3.81" width="0.1524" layer="21"/>
  5355. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5356. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5357. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5358. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5359. <wire x1="12.827" y1="4.318" x2="13.335" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  5360. <wire x1="12.827" y1="-4.318" x2="13.335" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  5361. <wire x1="-13.335" y1="-3.81" x2="-12.827" y2="-4.318" width="0.1524" layer="21" curve="90"/>
  5362. <wire x1="-13.335" y1="3.81" x2="-12.827" y2="4.318" width="0.1524" layer="21" curve="-90"/>
  5363. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5364. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  5365. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  5366. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  5367. <text x="-12.827" y="4.699" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5368. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5369. </package>
  5370. <package name="C225-108X268">
  5371. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5372. grid 22.5 mm, outline 10.8 x 26.8 mm</description>
  5373. <wire x1="-12.827" y1="5.334" x2="12.827" y2="5.334" width="0.1524" layer="21"/>
  5374. <wire x1="13.335" y1="4.826" x2="13.335" y2="-4.826" width="0.1524" layer="21"/>
  5375. <wire x1="12.827" y1="-5.334" x2="-12.827" y2="-5.334" width="0.1524" layer="21"/>
  5376. <wire x1="-13.335" y1="-4.826" x2="-13.335" y2="4.826" width="0.1524" layer="21"/>
  5377. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5378. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5379. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5380. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5381. <wire x1="12.827" y1="5.334" x2="13.335" y2="4.826" width="0.1524" layer="21" curve="-90"/>
  5382. <wire x1="12.827" y1="-5.334" x2="13.335" y2="-4.826" width="0.1524" layer="21" curve="90"/>
  5383. <wire x1="-13.335" y1="-4.826" x2="-12.827" y2="-5.334" width="0.1524" layer="21" curve="90"/>
  5384. <wire x1="-13.335" y1="4.826" x2="-12.827" y2="5.334" width="0.1524" layer="21" curve="-90"/>
  5385. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5386. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  5387. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  5388. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  5389. <text x="-12.954" y="5.715" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5390. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5391. </package>
  5392. <package name="C225-113X268">
  5393. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5394. grid 22.5 mm, outline 11.3 x 26.8 mm</description>
  5395. <wire x1="-12.827" y1="5.588" x2="12.827" y2="5.588" width="0.1524" layer="21"/>
  5396. <wire x1="13.335" y1="5.08" x2="13.335" y2="-5.08" width="0.1524" layer="21"/>
  5397. <wire x1="12.827" y1="-5.588" x2="-12.827" y2="-5.588" width="0.1524" layer="21"/>
  5398. <wire x1="-13.335" y1="-5.08" x2="-13.335" y2="5.08" width="0.1524" layer="21"/>
  5399. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5400. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5401. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5402. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5403. <wire x1="12.827" y1="5.588" x2="13.335" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  5404. <wire x1="12.827" y1="-5.588" x2="13.335" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  5405. <wire x1="-13.335" y1="-5.08" x2="-12.827" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  5406. <wire x1="-13.335" y1="5.08" x2="-12.827" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  5407. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5408. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  5409. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  5410. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  5411. <text x="-12.954" y="5.969" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5412. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5413. </package>
  5414. <package name="C275-093X316">
  5415. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5416. grid 27.5 mm, outline 9.3 x 31.6 mm</description>
  5417. <wire x1="-15.24" y1="4.572" x2="15.24" y2="4.572" width="0.1524" layer="21"/>
  5418. <wire x1="15.748" y1="4.064" x2="15.748" y2="-4.064" width="0.1524" layer="21"/>
  5419. <wire x1="15.24" y1="-4.572" x2="-15.24" y2="-4.572" width="0.1524" layer="21"/>
  5420. <wire x1="-15.748" y1="-4.064" x2="-15.748" y2="4.064" width="0.1524" layer="21"/>
  5421. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5422. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5423. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5424. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5425. <wire x1="15.24" y1="4.572" x2="15.748" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  5426. <wire x1="15.24" y1="-4.572" x2="15.748" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  5427. <wire x1="-15.748" y1="-4.064" x2="-15.24" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  5428. <wire x1="-15.748" y1="4.064" x2="-15.24" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  5429. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5430. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  5431. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  5432. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  5433. <text x="-15.24" y="4.953" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5434. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5435. </package>
  5436. <package name="C275-113X316">
  5437. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5438. grid 27.5 mm, outline 11.3 x 31.6 mm</description>
  5439. <wire x1="-15.24" y1="5.588" x2="15.24" y2="5.588" width="0.1524" layer="21"/>
  5440. <wire x1="15.748" y1="5.08" x2="15.748" y2="-5.08" width="0.1524" layer="21"/>
  5441. <wire x1="15.24" y1="-5.588" x2="-15.24" y2="-5.588" width="0.1524" layer="21"/>
  5442. <wire x1="-15.748" y1="-5.08" x2="-15.748" y2="5.08" width="0.1524" layer="21"/>
  5443. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5444. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5445. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5446. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5447. <wire x1="15.24" y1="5.588" x2="15.748" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  5448. <wire x1="15.24" y1="-5.588" x2="15.748" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  5449. <wire x1="-15.748" y1="-5.08" x2="-15.24" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  5450. <wire x1="-15.748" y1="5.08" x2="-15.24" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  5451. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5452. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  5453. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  5454. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  5455. <text x="-15.24" y="5.969" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5456. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5457. </package>
  5458. <package name="C275-134X316">
  5459. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5460. grid 27.5 mm, outline 13.4 x 31.6 mm</description>
  5461. <wire x1="-15.24" y1="6.604" x2="15.24" y2="6.604" width="0.1524" layer="21"/>
  5462. <wire x1="15.748" y1="6.096" x2="15.748" y2="-6.096" width="0.1524" layer="21"/>
  5463. <wire x1="15.24" y1="-6.604" x2="-15.24" y2="-6.604" width="0.1524" layer="21"/>
  5464. <wire x1="-15.748" y1="-6.096" x2="-15.748" y2="6.096" width="0.1524" layer="21"/>
  5465. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5466. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5467. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5468. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5469. <wire x1="15.24" y1="6.604" x2="15.748" y2="6.096" width="0.1524" layer="21" curve="-90"/>
  5470. <wire x1="15.24" y1="-6.604" x2="15.748" y2="-6.096" width="0.1524" layer="21" curve="90"/>
  5471. <wire x1="-15.748" y1="-6.096" x2="-15.24" y2="-6.604" width="0.1524" layer="21" curve="90"/>
  5472. <wire x1="-15.748" y1="6.096" x2="-15.24" y2="6.604" width="0.1524" layer="21" curve="-90"/>
  5473. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5474. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  5475. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  5476. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  5477. <text x="-15.24" y="6.985" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5478. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5479. </package>
  5480. <package name="C275-205X316">
  5481. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5482. grid 27.5 mm, outline 20.5 x 31.6 mm</description>
  5483. <wire x1="-15.24" y1="10.16" x2="15.24" y2="10.16" width="0.1524" layer="21"/>
  5484. <wire x1="15.748" y1="9.652" x2="15.748" y2="-9.652" width="0.1524" layer="21"/>
  5485. <wire x1="15.24" y1="-10.16" x2="-15.24" y2="-10.16" width="0.1524" layer="21"/>
  5486. <wire x1="-15.748" y1="-9.652" x2="-15.748" y2="9.652" width="0.1524" layer="21"/>
  5487. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5488. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5489. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5490. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5491. <wire x1="15.24" y1="10.16" x2="15.748" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  5492. <wire x1="15.24" y1="-10.16" x2="15.748" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  5493. <wire x1="-15.748" y1="-9.652" x2="-15.24" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  5494. <wire x1="-15.748" y1="9.652" x2="-15.24" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  5495. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5496. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  5497. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  5498. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  5499. <text x="-15.24" y="10.541" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5500. <text x="-5.08" y="-4.318" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5501. </package>
  5502. <package name="C325-137X374">
  5503. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5504. grid 32.5 mm, outline 13.7 x 37.4 mm</description>
  5505. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  5506. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  5507. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  5508. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  5509. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  5510. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  5511. <wire x1="18.542" y1="6.731" x2="18.542" y2="-6.731" width="0.1524" layer="21"/>
  5512. <wire x1="-18.542" y1="6.731" x2="-18.542" y2="-6.731" width="0.1524" layer="21"/>
  5513. <wire x1="-18.542" y1="-6.731" x2="18.542" y2="-6.731" width="0.1524" layer="21"/>
  5514. <wire x1="18.542" y1="6.731" x2="-18.542" y2="6.731" width="0.1524" layer="21"/>
  5515. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  5516. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  5517. <text x="-18.2372" y="7.0612" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5518. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5519. </package>
  5520. <package name="C325-162X374">
  5521. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5522. grid 32.5 mm, outline 16.2 x 37.4 mm</description>
  5523. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  5524. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  5525. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  5526. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  5527. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  5528. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  5529. <wire x1="18.542" y1="8.001" x2="18.542" y2="-8.001" width="0.1524" layer="21"/>
  5530. <wire x1="-18.542" y1="8.001" x2="-18.542" y2="-8.001" width="0.1524" layer="21"/>
  5531. <wire x1="-18.542" y1="-8.001" x2="18.542" y2="-8.001" width="0.1524" layer="21"/>
  5532. <wire x1="18.542" y1="8.001" x2="-18.542" y2="8.001" width="0.1524" layer="21"/>
  5533. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  5534. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  5535. <text x="-18.3642" y="8.3312" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5536. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5537. </package>
  5538. <package name="C325-182X374">
  5539. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5540. grid 32.5 mm, outline 18.2 x 37.4 mm</description>
  5541. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  5542. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  5543. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  5544. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  5545. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  5546. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  5547. <wire x1="18.542" y1="9.017" x2="18.542" y2="-9.017" width="0.1524" layer="21"/>
  5548. <wire x1="-18.542" y1="9.017" x2="-18.542" y2="-9.017" width="0.1524" layer="21"/>
  5549. <wire x1="-18.542" y1="-9.017" x2="18.542" y2="-9.017" width="0.1524" layer="21"/>
  5550. <wire x1="18.542" y1="9.017" x2="-18.542" y2="9.017" width="0.1524" layer="21"/>
  5551. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  5552. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  5553. <text x="-18.3642" y="9.3472" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5554. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5555. </package>
  5556. <package name="C375-192X418">
  5557. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5558. grid 37.5 mm, outline 19.2 x 41.8 mm</description>
  5559. <wire x1="-20.32" y1="8.509" x2="20.32" y2="8.509" width="0.1524" layer="21"/>
  5560. <wire x1="20.828" y1="8.001" x2="20.828" y2="-8.001" width="0.1524" layer="21"/>
  5561. <wire x1="20.32" y1="-8.509" x2="-20.32" y2="-8.509" width="0.1524" layer="21"/>
  5562. <wire x1="-20.828" y1="-8.001" x2="-20.828" y2="8.001" width="0.1524" layer="21"/>
  5563. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5564. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5565. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5566. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5567. <wire x1="20.32" y1="8.509" x2="20.828" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  5568. <wire x1="20.32" y1="-8.509" x2="20.828" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  5569. <wire x1="-20.828" y1="-8.001" x2="-20.32" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  5570. <wire x1="-20.828" y1="8.001" x2="-20.32" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  5571. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5572. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  5573. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  5574. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  5575. <text x="-20.447" y="8.89" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5576. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5577. </package>
  5578. <package name="C375-203X418">
  5579. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5580. grid 37.5 mm, outline 20.3 x 41.8 mm</description>
  5581. <wire x1="-20.32" y1="10.16" x2="20.32" y2="10.16" width="0.1524" layer="21"/>
  5582. <wire x1="20.828" y1="9.652" x2="20.828" y2="-9.652" width="0.1524" layer="21"/>
  5583. <wire x1="20.32" y1="-10.16" x2="-20.32" y2="-10.16" width="0.1524" layer="21"/>
  5584. <wire x1="-20.828" y1="-9.652" x2="-20.828" y2="9.652" width="0.1524" layer="21"/>
  5585. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5586. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5587. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5588. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5589. <wire x1="20.32" y1="10.16" x2="20.828" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  5590. <wire x1="20.32" y1="-10.16" x2="20.828" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  5591. <wire x1="-20.828" y1="-9.652" x2="-20.32" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  5592. <wire x1="-20.828" y1="9.652" x2="-20.32" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  5593. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5594. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  5595. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  5596. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  5597. <text x="-20.32" y="10.541" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5598. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5599. </package>
  5600. <package name="C050-035X075">
  5601. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5602. grid 5 mm, outline 3.5 x 7.5 mm</description>
  5603. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  5604. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  5605. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  5606. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  5607. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  5608. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  5609. <wire x1="-3.683" y1="1.524" x2="-3.683" y2="-1.524" width="0.1524" layer="21"/>
  5610. <wire x1="-3.429" y1="-1.778" x2="3.429" y2="-1.778" width="0.1524" layer="21"/>
  5611. <wire x1="3.683" y1="-1.524" x2="3.683" y2="1.524" width="0.1524" layer="21"/>
  5612. <wire x1="3.429" y1="1.778" x2="-3.429" y2="1.778" width="0.1524" layer="21"/>
  5613. <wire x1="3.429" y1="1.778" x2="3.683" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  5614. <wire x1="3.429" y1="-1.778" x2="3.683" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  5615. <wire x1="-3.683" y1="-1.524" x2="-3.429" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  5616. <wire x1="-3.683" y1="1.524" x2="-3.429" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  5617. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  5618. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  5619. <text x="-3.556" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5620. <text x="-3.556" y="-3.429" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5621. </package>
  5622. <package name="C375-155X418">
  5623. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5624. grid 37.5 mm, outline 15.5 x 41.8 mm</description>
  5625. <wire x1="-20.32" y1="7.62" x2="20.32" y2="7.62" width="0.1524" layer="21"/>
  5626. <wire x1="20.828" y1="7.112" x2="20.828" y2="-7.112" width="0.1524" layer="21"/>
  5627. <wire x1="20.32" y1="-7.62" x2="-20.32" y2="-7.62" width="0.1524" layer="21"/>
  5628. <wire x1="-20.828" y1="-7.112" x2="-20.828" y2="7.112" width="0.1524" layer="21"/>
  5629. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5630. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5631. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5632. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5633. <wire x1="20.32" y1="7.62" x2="20.828" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  5634. <wire x1="20.32" y1="-7.62" x2="20.828" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  5635. <wire x1="-20.828" y1="-7.112" x2="-20.32" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  5636. <wire x1="-20.828" y1="7.112" x2="-20.32" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  5637. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5638. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  5639. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  5640. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  5641. <text x="-20.447" y="8.001" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5642. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5643. </package>
  5644. <package name="C075-063X106">
  5645. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5646. grid 7.5 mm, outline 6.3 x 10.6 mm</description>
  5647. <wire x1="4.953" y1="3.048" x2="-4.953" y2="3.048" width="0.1524" layer="21"/>
  5648. <wire x1="-5.207" y1="2.794" x2="-5.207" y2="-2.794" width="0.1524" layer="21"/>
  5649. <wire x1="-4.953" y1="-3.048" x2="4.953" y2="-3.048" width="0.1524" layer="21"/>
  5650. <wire x1="5.207" y1="-2.794" x2="5.207" y2="2.794" width="0.1524" layer="21"/>
  5651. <wire x1="4.953" y1="3.048" x2="5.207" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  5652. <wire x1="4.953" y1="-3.048" x2="5.207" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  5653. <wire x1="-5.207" y1="-2.794" x2="-4.953" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  5654. <wire x1="-5.207" y1="2.794" x2="-4.953" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  5655. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  5656. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  5657. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  5658. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  5659. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  5660. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  5661. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  5662. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  5663. <text x="-4.826" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5664. <text x="-0.635" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5665. </package>
  5666. <package name="C275-154X316">
  5667. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5668. grid 27.5 mm, outline 15.4 x 31.6 mm</description>
  5669. <wire x1="-15.24" y1="7.62" x2="15.24" y2="7.62" width="0.1524" layer="21"/>
  5670. <wire x1="15.748" y1="7.112" x2="15.748" y2="-7.112" width="0.1524" layer="21"/>
  5671. <wire x1="15.24" y1="-7.62" x2="-15.24" y2="-7.62" width="0.1524" layer="21"/>
  5672. <wire x1="-15.748" y1="-7.112" x2="-15.748" y2="7.112" width="0.1524" layer="21"/>
  5673. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5674. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5675. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5676. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5677. <wire x1="15.24" y1="7.62" x2="15.748" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  5678. <wire x1="15.24" y1="-7.62" x2="15.748" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  5679. <wire x1="-15.748" y1="-7.112" x2="-15.24" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  5680. <wire x1="-15.748" y1="7.112" x2="-15.24" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  5681. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5682. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  5683. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  5684. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  5685. <text x="-15.24" y="8.001" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5686. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5687. </package>
  5688. <package name="C275-173X316">
  5689. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  5690. grid 27.5 mm, outline 17.3 x 31.6 mm</description>
  5691. <wire x1="-15.24" y1="8.509" x2="15.24" y2="8.509" width="0.1524" layer="21"/>
  5692. <wire x1="15.748" y1="8.001" x2="15.748" y2="-8.001" width="0.1524" layer="21"/>
  5693. <wire x1="15.24" y1="-8.509" x2="-15.24" y2="-8.509" width="0.1524" layer="21"/>
  5694. <wire x1="-15.748" y1="-8.001" x2="-15.748" y2="8.001" width="0.1524" layer="21"/>
  5695. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  5696. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  5697. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  5698. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  5699. <wire x1="15.24" y1="8.509" x2="15.748" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  5700. <wire x1="15.24" y1="-8.509" x2="15.748" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  5701. <wire x1="-15.748" y1="-8.001" x2="-15.24" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  5702. <wire x1="-15.748" y1="8.001" x2="-15.24" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  5703. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  5704. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  5705. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  5706. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  5707. <text x="-15.24" y="8.89" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  5708. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  5709. </package>
  5710. <package name="C0402K">
  5711. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0204 Reflow solder&lt;/b&gt;&lt;p&gt;
  5712. Metric Code Size 1005</description>
  5713. <wire x1="-0.425" y1="0.2" x2="0.425" y2="0.2" width="0.1016" layer="51"/>
  5714. <wire x1="0.425" y1="-0.2" x2="-0.425" y2="-0.2" width="0.1016" layer="51"/>
  5715. <smd name="1" x="-0.6" y="0" dx="0.925" dy="0.74" layer="1"/>
  5716. <smd name="2" x="0.6" y="0" dx="0.925" dy="0.74" layer="1"/>
  5717. <text x="-0.5" y="0.425" size="1.016" layer="25">&gt;NAME</text>
  5718. <text x="-0.5" y="-1.45" size="1.016" layer="27">&gt;VALUE</text>
  5719. <rectangle x1="-0.5" y1="-0.25" x2="-0.225" y2="0.25" layer="51"/>
  5720. <rectangle x1="0.225" y1="-0.25" x2="0.5" y2="0.25" layer="51"/>
  5721. </package>
  5722. <package name="C0603K">
  5723. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0603 Reflow solder&lt;/b&gt;&lt;p&gt;
  5724. Metric Code Size 1608</description>
  5725. <wire x1="-0.725" y1="0.35" x2="0.725" y2="0.35" width="0.1016" layer="51"/>
  5726. <wire x1="0.725" y1="-0.35" x2="-0.725" y2="-0.35" width="0.1016" layer="51"/>
  5727. <smd name="1" x="-0.875" y="0" dx="1.05" dy="1.08" layer="1"/>
  5728. <smd name="2" x="0.875" y="0" dx="1.05" dy="1.08" layer="1"/>
  5729. <text x="-0.8" y="0.65" size="1.016" layer="25">&gt;NAME</text>
  5730. <text x="-0.8" y="-1.65" size="1.016" layer="27">&gt;VALUE</text>
  5731. <rectangle x1="-0.8" y1="-0.4" x2="-0.45" y2="0.4" layer="51"/>
  5732. <rectangle x1="0.45" y1="-0.4" x2="0.8" y2="0.4" layer="51"/>
  5733. </package>
  5734. <package name="C0805K">
  5735. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0805 Reflow solder&lt;/b&gt;&lt;p&gt;
  5736. Metric Code Size 2012</description>
  5737. <wire x1="-0.925" y1="0.6" x2="0.925" y2="0.6" width="0.1016" layer="51"/>
  5738. <wire x1="0.925" y1="-0.6" x2="-0.925" y2="-0.6" width="0.1016" layer="51"/>
  5739. <wire x1="-2" y1="1" x2="2" y2="1" width="0.05" layer="39"/>
  5740. <wire x1="2" y1="1" x2="2" y2="-1" width="0.05" layer="39"/>
  5741. <wire x1="2" y1="-1" x2="-2" y2="-1" width="0.05" layer="39"/>
  5742. <wire x1="-2" y1="-1" x2="-2" y2="1" width="0.05" layer="39"/>
  5743. <smd name="1" x="-1" y="0" dx="1.1" dy="1.4" layer="1"/>
  5744. <smd name="2" x="1" y="0" dx="1.1" dy="1.4" layer="1"/>
  5745. <text x="-1" y="0.875" size="1.016" layer="25">&gt;NAME</text>
  5746. <text x="-1" y="-1.9" size="1.016" layer="27">&gt;VALUE</text>
  5747. <rectangle x1="-1" y1="-0.65" x2="-0.5" y2="0.65" layer="51"/>
  5748. <rectangle x1="0.5" y1="-0.65" x2="1" y2="0.65" layer="51"/>
  5749. </package>
  5750. <package name="C1206K">
  5751. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1206 Reflow solder&lt;/b&gt;&lt;p&gt;
  5752. Metric Code Size 3216</description>
  5753. <wire x1="-1.525" y1="0.75" x2="1.525" y2="0.75" width="0.1016" layer="51"/>
  5754. <wire x1="1.525" y1="-0.75" x2="-1.525" y2="-0.75" width="0.1016" layer="51"/>
  5755. <smd name="1" x="-1.5" y="0" dx="1.5" dy="2" layer="1"/>
  5756. <smd name="2" x="1.5" y="0" dx="1.5" dy="2" layer="1"/>
  5757. <text x="-1.6" y="1.1" size="1.016" layer="25">&gt;NAME</text>
  5758. <text x="-1.6" y="-2.1" size="1.016" layer="27">&gt;VALUE</text>
  5759. <rectangle x1="-1.6" y1="-0.8" x2="-1.1" y2="0.8" layer="51"/>
  5760. <rectangle x1="1.1" y1="-0.8" x2="1.6" y2="0.8" layer="51"/>
  5761. </package>
  5762. <package name="C1210K">
  5763. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1210 Reflow solder&lt;/b&gt;&lt;p&gt;
  5764. Metric Code Size 3225</description>
  5765. <wire x1="-1.525" y1="1.175" x2="1.525" y2="1.175" width="0.1016" layer="51"/>
  5766. <wire x1="1.525" y1="-1.175" x2="-1.525" y2="-1.175" width="0.1016" layer="51"/>
  5767. <smd name="1" x="-1.5" y="0" dx="1.5" dy="2.9" layer="1"/>
  5768. <smd name="2" x="1.5" y="0" dx="1.5" dy="2.9" layer="1"/>
  5769. <text x="-1.6" y="1.55" size="1.016" layer="25">&gt;NAME</text>
  5770. <text x="-1.6" y="-2.575" size="1.016" layer="27">&gt;VALUE</text>
  5771. <rectangle x1="-1.6" y1="-1.25" x2="-1.1" y2="1.25" layer="51"/>
  5772. <rectangle x1="1.1" y1="-1.25" x2="1.6" y2="1.25" layer="51"/>
  5773. </package>
  5774. <package name="C1812K">
  5775. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1812 Reflow solder&lt;/b&gt;&lt;p&gt;
  5776. Metric Code Size 4532</description>
  5777. <wire x1="-2.175" y1="1.525" x2="2.175" y2="1.525" width="0.1016" layer="51"/>
  5778. <wire x1="2.175" y1="-1.525" x2="-2.175" y2="-1.525" width="0.1016" layer="51"/>
  5779. <smd name="1" x="-2.05" y="0" dx="1.8" dy="3.7" layer="1"/>
  5780. <smd name="2" x="2.05" y="0" dx="1.8" dy="3.7" layer="1"/>
  5781. <text x="-2.25" y="1.95" size="1.016" layer="25">&gt;NAME</text>
  5782. <text x="-2.25" y="-2.975" size="1.016" layer="27">&gt;VALUE</text>
  5783. <rectangle x1="-2.25" y1="-1.6" x2="-1.65" y2="1.6" layer="51"/>
  5784. <rectangle x1="1.65" y1="-1.6" x2="2.25" y2="1.6" layer="51"/>
  5785. </package>
  5786. <package name="C1825K">
  5787. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1825 Reflow solder&lt;/b&gt;&lt;p&gt;
  5788. Metric Code Size 4564</description>
  5789. <wire x1="-1.525" y1="3.125" x2="1.525" y2="3.125" width="0.1016" layer="51"/>
  5790. <wire x1="1.525" y1="-3.125" x2="-1.525" y2="-3.125" width="0.1016" layer="51"/>
  5791. <smd name="1" x="-1.5" y="0" dx="1.8" dy="6.9" layer="1"/>
  5792. <smd name="2" x="1.5" y="0" dx="1.8" dy="6.9" layer="1"/>
  5793. <text x="-1.6" y="3.55" size="1.016" layer="25">&gt;NAME</text>
  5794. <text x="-1.6" y="-4.625" size="1.016" layer="27">&gt;VALUE</text>
  5795. <rectangle x1="-1.6" y1="-3.2" x2="-1.1" y2="3.2" layer="51"/>
  5796. <rectangle x1="1.1" y1="-3.2" x2="1.6" y2="3.2" layer="51"/>
  5797. </package>
  5798. <package name="C2220K">
  5799. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 2220 Reflow solder&lt;/b&gt;&lt;p&gt;
  5800. Metric Code Size 5650</description>
  5801. <wire x1="-2.725" y1="2.425" x2="2.725" y2="2.425" width="0.1016" layer="51"/>
  5802. <wire x1="2.725" y1="-2.425" x2="-2.725" y2="-2.425" width="0.1016" layer="51"/>
  5803. <smd name="1" x="-2.55" y="0" dx="1.85" dy="5.5" layer="1"/>
  5804. <smd name="2" x="2.55" y="0" dx="1.85" dy="5.5" layer="1"/>
  5805. <text x="-2.8" y="2.95" size="1.016" layer="25">&gt;NAME</text>
  5806. <text x="-2.8" y="-3.975" size="1.016" layer="27">&gt;VALUE</text>
  5807. <rectangle x1="-2.8" y1="-2.5" x2="-2.2" y2="2.5" layer="51"/>
  5808. <rectangle x1="2.2" y1="-2.5" x2="2.8" y2="2.5" layer="51"/>
  5809. </package>
  5810. <package name="C2225K">
  5811. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 2225 Reflow solder&lt;/b&gt;&lt;p&gt;
  5812. Metric Code Size 5664</description>
  5813. <wire x1="-2.725" y1="3.075" x2="2.725" y2="3.075" width="0.1016" layer="51"/>
  5814. <wire x1="2.725" y1="-3.075" x2="-2.725" y2="-3.075" width="0.1016" layer="51"/>
  5815. <smd name="1" x="-2.55" y="0" dx="1.85" dy="6.8" layer="1"/>
  5816. <smd name="2" x="2.55" y="0" dx="1.85" dy="6.8" layer="1"/>
  5817. <text x="-2.8" y="3.6" size="1.016" layer="25">&gt;NAME</text>
  5818. <text x="-2.8" y="-4.575" size="1.016" layer="27">&gt;VALUE</text>
  5819. <rectangle x1="-2.8" y1="-3.15" x2="-2.2" y2="3.15" layer="51"/>
  5820. <rectangle x1="2.2" y1="-3.15" x2="2.8" y2="3.15" layer="51"/>
  5821. </package>
  5822. </packages>
  5823. <symbols>
  5824. <symbol name="C-US">
  5825. <wire x1="-2.54" y1="0" x2="2.54" y2="0" width="0.254" layer="94"/>
  5826. <wire x1="0" y1="-1.016" x2="0" y2="-2.54" width="0.1524" layer="94"/>
  5827. <wire x1="0" y1="-1" x2="2.4892" y2="-1.8542" width="0.254" layer="94" curve="-37.878202" cap="flat"/>
  5828. <wire x1="-2.4668" y1="-1.8504" x2="0" y2="-1.0161" width="0.254" layer="94" curve="-37.373024" cap="flat"/>
  5829. <text x="1.016" y="0.635" size="1.778" layer="95">&gt;NAME</text>
  5830. <text x="1.016" y="-4.191" size="1.778" layer="96">&gt;VALUE</text>
  5831. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  5832. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  5833. </symbol>
  5834. </symbols>
  5835. <devicesets>
  5836. <deviceset name="C-US" prefix="C" uservalue="yes">
  5837. <description>&lt;B&gt;CAPACITOR&lt;/B&gt;, American symbol</description>
  5838. <gates>
  5839. <gate name="G$1" symbol="C-US" x="0" y="0"/>
  5840. </gates>
  5841. <devices>
  5842. <device name="C0402" package="C0402">
  5843. <connects>
  5844. <connect gate="G$1" pin="1" pad="1"/>
  5845. <connect gate="G$1" pin="2" pad="2"/>
  5846. </connects>
  5847. <technologies>
  5848. <technology name=""/>
  5849. </technologies>
  5850. </device>
  5851. <device name="C0504" package="C0504">
  5852. <connects>
  5853. <connect gate="G$1" pin="1" pad="1"/>
  5854. <connect gate="G$1" pin="2" pad="2"/>
  5855. </connects>
  5856. <technologies>
  5857. <technology name=""/>
  5858. </technologies>
  5859. </device>
  5860. <device name="C0603" package="C0603">
  5861. <connects>
  5862. <connect gate="G$1" pin="1" pad="1"/>
  5863. <connect gate="G$1" pin="2" pad="2"/>
  5864. </connects>
  5865. <technologies>
  5866. <technology name=""/>
  5867. </technologies>
  5868. </device>
  5869. <device name="C0805" package="C0805">
  5870. <connects>
  5871. <connect gate="G$1" pin="1" pad="1"/>
  5872. <connect gate="G$1" pin="2" pad="2"/>
  5873. </connects>
  5874. <technologies>
  5875. <technology name=""/>
  5876. </technologies>
  5877. </device>
  5878. <device name="C1005" package="C1005">
  5879. <connects>
  5880. <connect gate="G$1" pin="1" pad="1"/>
  5881. <connect gate="G$1" pin="2" pad="2"/>
  5882. </connects>
  5883. <technologies>
  5884. <technology name=""/>
  5885. </technologies>
  5886. </device>
  5887. <device name="C1206" package="C1206">
  5888. <connects>
  5889. <connect gate="G$1" pin="1" pad="1"/>
  5890. <connect gate="G$1" pin="2" pad="2"/>
  5891. </connects>
  5892. <technologies>
  5893. <technology name=""/>
  5894. </technologies>
  5895. </device>
  5896. <device name="C1210" package="C1210">
  5897. <connects>
  5898. <connect gate="G$1" pin="1" pad="1"/>
  5899. <connect gate="G$1" pin="2" pad="2"/>
  5900. </connects>
  5901. <technologies>
  5902. <technology name=""/>
  5903. </technologies>
  5904. </device>
  5905. <device name="C1310" package="C1310">
  5906. <connects>
  5907. <connect gate="G$1" pin="1" pad="1"/>
  5908. <connect gate="G$1" pin="2" pad="2"/>
  5909. </connects>
  5910. <technologies>
  5911. <technology name=""/>
  5912. </technologies>
  5913. </device>
  5914. <device name="C1608" package="C1608">
  5915. <connects>
  5916. <connect gate="G$1" pin="1" pad="1"/>
  5917. <connect gate="G$1" pin="2" pad="2"/>
  5918. </connects>
  5919. <technologies>
  5920. <technology name=""/>
  5921. </technologies>
  5922. </device>
  5923. <device name="C1812" package="C1812">
  5924. <connects>
  5925. <connect gate="G$1" pin="1" pad="1"/>
  5926. <connect gate="G$1" pin="2" pad="2"/>
  5927. </connects>
  5928. <technologies>
  5929. <technology name=""/>
  5930. </technologies>
  5931. </device>
  5932. <device name="C1825" package="C1825">
  5933. <connects>
  5934. <connect gate="G$1" pin="1" pad="1"/>
  5935. <connect gate="G$1" pin="2" pad="2"/>
  5936. </connects>
  5937. <technologies>
  5938. <technology name=""/>
  5939. </technologies>
  5940. </device>
  5941. <device name="C2012" package="C2012">
  5942. <connects>
  5943. <connect gate="G$1" pin="1" pad="1"/>
  5944. <connect gate="G$1" pin="2" pad="2"/>
  5945. </connects>
  5946. <technologies>
  5947. <technology name=""/>
  5948. </technologies>
  5949. </device>
  5950. <device name="C3216" package="C3216">
  5951. <connects>
  5952. <connect gate="G$1" pin="1" pad="1"/>
  5953. <connect gate="G$1" pin="2" pad="2"/>
  5954. </connects>
  5955. <technologies>
  5956. <technology name=""/>
  5957. </technologies>
  5958. </device>
  5959. <device name="C3225" package="C3225">
  5960. <connects>
  5961. <connect gate="G$1" pin="1" pad="1"/>
  5962. <connect gate="G$1" pin="2" pad="2"/>
  5963. </connects>
  5964. <technologies>
  5965. <technology name=""/>
  5966. </technologies>
  5967. </device>
  5968. <device name="C4532" package="C4532">
  5969. <connects>
  5970. <connect gate="G$1" pin="1" pad="1"/>
  5971. <connect gate="G$1" pin="2" pad="2"/>
  5972. </connects>
  5973. <technologies>
  5974. <technology name=""/>
  5975. </technologies>
  5976. </device>
  5977. <device name="C4564" package="C4564">
  5978. <connects>
  5979. <connect gate="G$1" pin="1" pad="1"/>
  5980. <connect gate="G$1" pin="2" pad="2"/>
  5981. </connects>
  5982. <technologies>
  5983. <technology name=""/>
  5984. </technologies>
  5985. </device>
  5986. <device name="025-024X044" package="C025-024X044">
  5987. <connects>
  5988. <connect gate="G$1" pin="1" pad="1"/>
  5989. <connect gate="G$1" pin="2" pad="2"/>
  5990. </connects>
  5991. <technologies>
  5992. <technology name=""/>
  5993. </technologies>
  5994. </device>
  5995. <device name="025-025X050" package="C025-025X050">
  5996. <connects>
  5997. <connect gate="G$1" pin="1" pad="1"/>
  5998. <connect gate="G$1" pin="2" pad="2"/>
  5999. </connects>
  6000. <technologies>
  6001. <technology name=""/>
  6002. </technologies>
  6003. </device>
  6004. <device name="025-030X050" package="C025-030X050">
  6005. <connects>
  6006. <connect gate="G$1" pin="1" pad="1"/>
  6007. <connect gate="G$1" pin="2" pad="2"/>
  6008. </connects>
  6009. <technologies>
  6010. <technology name=""/>
  6011. </technologies>
  6012. </device>
  6013. <device name="025-040X050" package="C025-040X050">
  6014. <connects>
  6015. <connect gate="G$1" pin="1" pad="1"/>
  6016. <connect gate="G$1" pin="2" pad="2"/>
  6017. </connects>
  6018. <technologies>
  6019. <technology name=""/>
  6020. </technologies>
  6021. </device>
  6022. <device name="025-050X050" package="C025-050X050">
  6023. <connects>
  6024. <connect gate="G$1" pin="1" pad="1"/>
  6025. <connect gate="G$1" pin="2" pad="2"/>
  6026. </connects>
  6027. <technologies>
  6028. <technology name=""/>
  6029. </technologies>
  6030. </device>
  6031. <device name="025-060X050" package="C025-060X050">
  6032. <connects>
  6033. <connect gate="G$1" pin="1" pad="1"/>
  6034. <connect gate="G$1" pin="2" pad="2"/>
  6035. </connects>
  6036. <technologies>
  6037. <technology name=""/>
  6038. </technologies>
  6039. </device>
  6040. <device name="C025_050-024X070" package="C025_050-024X070">
  6041. <connects>
  6042. <connect gate="G$1" pin="1" pad="1"/>
  6043. <connect gate="G$1" pin="2" pad="2"/>
  6044. </connects>
  6045. <technologies>
  6046. <technology name=""/>
  6047. </technologies>
  6048. </device>
  6049. <device name="025_050-025X075" package="C025_050-025X075">
  6050. <connects>
  6051. <connect gate="G$1" pin="1" pad="1"/>
  6052. <connect gate="G$1" pin="2" pad="2"/>
  6053. </connects>
  6054. <technologies>
  6055. <technology name=""/>
  6056. </technologies>
  6057. </device>
  6058. <device name="025_050-035X075" package="C025_050-035X075">
  6059. <connects>
  6060. <connect gate="G$1" pin="1" pad="1"/>
  6061. <connect gate="G$1" pin="2" pad="2"/>
  6062. </connects>
  6063. <technologies>
  6064. <technology name=""/>
  6065. </technologies>
  6066. </device>
  6067. <device name="025_050-045X075" package="C025_050-045X075">
  6068. <connects>
  6069. <connect gate="G$1" pin="1" pad="1"/>
  6070. <connect gate="G$1" pin="2" pad="2"/>
  6071. </connects>
  6072. <technologies>
  6073. <technology name=""/>
  6074. </technologies>
  6075. </device>
  6076. <device name="025_050-055X075" package="C025_050-055X075">
  6077. <connects>
  6078. <connect gate="G$1" pin="1" pad="1"/>
  6079. <connect gate="G$1" pin="2" pad="2"/>
  6080. </connects>
  6081. <technologies>
  6082. <technology name=""/>
  6083. </technologies>
  6084. </device>
  6085. <device name="050-024X044" package="C050-024X044">
  6086. <connects>
  6087. <connect gate="G$1" pin="1" pad="1"/>
  6088. <connect gate="G$1" pin="2" pad="2"/>
  6089. </connects>
  6090. <technologies>
  6091. <technology name=""/>
  6092. </technologies>
  6093. </device>
  6094. <device name="050-025X075" package="C050-025X075">
  6095. <connects>
  6096. <connect gate="G$1" pin="1" pad="1"/>
  6097. <connect gate="G$1" pin="2" pad="2"/>
  6098. </connects>
  6099. <technologies>
  6100. <technology name=""/>
  6101. </technologies>
  6102. </device>
  6103. <device name="050-045X075" package="C050-045X075">
  6104. <connects>
  6105. <connect gate="G$1" pin="1" pad="1"/>
  6106. <connect gate="G$1" pin="2" pad="2"/>
  6107. </connects>
  6108. <technologies>
  6109. <technology name=""/>
  6110. </technologies>
  6111. </device>
  6112. <device name="050-030X075" package="C050-030X075">
  6113. <connects>
  6114. <connect gate="G$1" pin="1" pad="1"/>
  6115. <connect gate="G$1" pin="2" pad="2"/>
  6116. </connects>
  6117. <technologies>
  6118. <technology name=""/>
  6119. </technologies>
  6120. </device>
  6121. <device name="050-050X075" package="C050-050X075">
  6122. <connects>
  6123. <connect gate="G$1" pin="1" pad="1"/>
  6124. <connect gate="G$1" pin="2" pad="2"/>
  6125. </connects>
  6126. <technologies>
  6127. <technology name=""/>
  6128. </technologies>
  6129. </device>
  6130. <device name="050-055X075" package="C050-055X075">
  6131. <connects>
  6132. <connect gate="G$1" pin="1" pad="1"/>
  6133. <connect gate="G$1" pin="2" pad="2"/>
  6134. </connects>
  6135. <technologies>
  6136. <technology name=""/>
  6137. </technologies>
  6138. </device>
  6139. <device name="050-075X075" package="C050-075X075">
  6140. <connects>
  6141. <connect gate="G$1" pin="1" pad="1"/>
  6142. <connect gate="G$1" pin="2" pad="2"/>
  6143. </connects>
  6144. <technologies>
  6145. <technology name=""/>
  6146. </technologies>
  6147. </device>
  6148. <device name="050H075X075" package="C050H075X075">
  6149. <connects>
  6150. <connect gate="G$1" pin="1" pad="1"/>
  6151. <connect gate="G$1" pin="2" pad="2"/>
  6152. </connects>
  6153. <technologies>
  6154. <technology name=""/>
  6155. </technologies>
  6156. </device>
  6157. <device name="075-032X103" package="C075-032X103">
  6158. <connects>
  6159. <connect gate="G$1" pin="1" pad="1"/>
  6160. <connect gate="G$1" pin="2" pad="2"/>
  6161. </connects>
  6162. <technologies>
  6163. <technology name=""/>
  6164. </technologies>
  6165. </device>
  6166. <device name="075-042X103" package="C075-042X103">
  6167. <connects>
  6168. <connect gate="G$1" pin="1" pad="1"/>
  6169. <connect gate="G$1" pin="2" pad="2"/>
  6170. </connects>
  6171. <technologies>
  6172. <technology name=""/>
  6173. </technologies>
  6174. </device>
  6175. <device name="075-052X106" package="C075-052X106">
  6176. <connects>
  6177. <connect gate="G$1" pin="1" pad="1"/>
  6178. <connect gate="G$1" pin="2" pad="2"/>
  6179. </connects>
  6180. <technologies>
  6181. <technology name=""/>
  6182. </technologies>
  6183. </device>
  6184. <device name="102-043X133" package="C102-043X133">
  6185. <connects>
  6186. <connect gate="G$1" pin="1" pad="1"/>
  6187. <connect gate="G$1" pin="2" pad="2"/>
  6188. </connects>
  6189. <technologies>
  6190. <technology name=""/>
  6191. </technologies>
  6192. </device>
  6193. <device name="102-054X133" package="C102-054X133">
  6194. <connects>
  6195. <connect gate="G$1" pin="1" pad="1"/>
  6196. <connect gate="G$1" pin="2" pad="2"/>
  6197. </connects>
  6198. <technologies>
  6199. <technology name=""/>
  6200. </technologies>
  6201. </device>
  6202. <device name="102-064X133" package="C102-064X133">
  6203. <connects>
  6204. <connect gate="G$1" pin="1" pad="1"/>
  6205. <connect gate="G$1" pin="2" pad="2"/>
  6206. </connects>
  6207. <technologies>
  6208. <technology name=""/>
  6209. </technologies>
  6210. </device>
  6211. <device name="102_152-062X184" package="C102_152-062X184">
  6212. <connects>
  6213. <connect gate="G$1" pin="1" pad="1"/>
  6214. <connect gate="G$1" pin="2" pad="2"/>
  6215. </connects>
  6216. <technologies>
  6217. <technology name=""/>
  6218. </technologies>
  6219. </device>
  6220. <device name="150-054X183" package="C150-054X183">
  6221. <connects>
  6222. <connect gate="G$1" pin="1" pad="1"/>
  6223. <connect gate="G$1" pin="2" pad="2"/>
  6224. </connects>
  6225. <technologies>
  6226. <technology name=""/>
  6227. </technologies>
  6228. </device>
  6229. <device name="150-064X183" package="C150-064X183">
  6230. <connects>
  6231. <connect gate="G$1" pin="1" pad="1"/>
  6232. <connect gate="G$1" pin="2" pad="2"/>
  6233. </connects>
  6234. <technologies>
  6235. <technology name=""/>
  6236. </technologies>
  6237. </device>
  6238. <device name="150-072X183" package="C150-072X183">
  6239. <connects>
  6240. <connect gate="G$1" pin="1" pad="1"/>
  6241. <connect gate="G$1" pin="2" pad="2"/>
  6242. </connects>
  6243. <technologies>
  6244. <technology name=""/>
  6245. </technologies>
  6246. </device>
  6247. <device name="150-084X183" package="C150-084X183">
  6248. <connects>
  6249. <connect gate="G$1" pin="1" pad="1"/>
  6250. <connect gate="G$1" pin="2" pad="2"/>
  6251. </connects>
  6252. <technologies>
  6253. <technology name=""/>
  6254. </technologies>
  6255. </device>
  6256. <device name="150-091X182" package="C150-091X182">
  6257. <connects>
  6258. <connect gate="G$1" pin="1" pad="1"/>
  6259. <connect gate="G$1" pin="2" pad="2"/>
  6260. </connects>
  6261. <technologies>
  6262. <technology name=""/>
  6263. </technologies>
  6264. </device>
  6265. <device name="225-062X268" package="C225-062X268">
  6266. <connects>
  6267. <connect gate="G$1" pin="1" pad="1"/>
  6268. <connect gate="G$1" pin="2" pad="2"/>
  6269. </connects>
  6270. <technologies>
  6271. <technology name=""/>
  6272. </technologies>
  6273. </device>
  6274. <device name="225-074X268" package="C225-074X268">
  6275. <connects>
  6276. <connect gate="G$1" pin="1" pad="1"/>
  6277. <connect gate="G$1" pin="2" pad="2"/>
  6278. </connects>
  6279. <technologies>
  6280. <technology name=""/>
  6281. </technologies>
  6282. </device>
  6283. <device name="225-087X268" package="C225-087X268">
  6284. <connects>
  6285. <connect gate="G$1" pin="1" pad="1"/>
  6286. <connect gate="G$1" pin="2" pad="2"/>
  6287. </connects>
  6288. <technologies>
  6289. <technology name=""/>
  6290. </technologies>
  6291. </device>
  6292. <device name="225-108X268" package="C225-108X268">
  6293. <connects>
  6294. <connect gate="G$1" pin="1" pad="1"/>
  6295. <connect gate="G$1" pin="2" pad="2"/>
  6296. </connects>
  6297. <technologies>
  6298. <technology name=""/>
  6299. </technologies>
  6300. </device>
  6301. <device name="225-113X268" package="C225-113X268">
  6302. <connects>
  6303. <connect gate="G$1" pin="1" pad="1"/>
  6304. <connect gate="G$1" pin="2" pad="2"/>
  6305. </connects>
  6306. <technologies>
  6307. <technology name=""/>
  6308. </technologies>
  6309. </device>
  6310. <device name="275-093X316" package="C275-093X316">
  6311. <connects>
  6312. <connect gate="G$1" pin="1" pad="1"/>
  6313. <connect gate="G$1" pin="2" pad="2"/>
  6314. </connects>
  6315. <technologies>
  6316. <technology name=""/>
  6317. </technologies>
  6318. </device>
  6319. <device name="275-113X316" package="C275-113X316">
  6320. <connects>
  6321. <connect gate="G$1" pin="1" pad="1"/>
  6322. <connect gate="G$1" pin="2" pad="2"/>
  6323. </connects>
  6324. <technologies>
  6325. <technology name=""/>
  6326. </technologies>
  6327. </device>
  6328. <device name="275-134X316" package="C275-134X316">
  6329. <connects>
  6330. <connect gate="G$1" pin="1" pad="1"/>
  6331. <connect gate="G$1" pin="2" pad="2"/>
  6332. </connects>
  6333. <technologies>
  6334. <technology name=""/>
  6335. </technologies>
  6336. </device>
  6337. <device name="275-205X316" package="C275-205X316">
  6338. <connects>
  6339. <connect gate="G$1" pin="1" pad="1"/>
  6340. <connect gate="G$1" pin="2" pad="2"/>
  6341. </connects>
  6342. <technologies>
  6343. <technology name=""/>
  6344. </technologies>
  6345. </device>
  6346. <device name="325-137X374" package="C325-137X374">
  6347. <connects>
  6348. <connect gate="G$1" pin="1" pad="1"/>
  6349. <connect gate="G$1" pin="2" pad="2"/>
  6350. </connects>
  6351. <technologies>
  6352. <technology name=""/>
  6353. </technologies>
  6354. </device>
  6355. <device name="325-162X374" package="C325-162X374">
  6356. <connects>
  6357. <connect gate="G$1" pin="1" pad="1"/>
  6358. <connect gate="G$1" pin="2" pad="2"/>
  6359. </connects>
  6360. <technologies>
  6361. <technology name=""/>
  6362. </technologies>
  6363. </device>
  6364. <device name="325-182X374" package="C325-182X374">
  6365. <connects>
  6366. <connect gate="G$1" pin="1" pad="1"/>
  6367. <connect gate="G$1" pin="2" pad="2"/>
  6368. </connects>
  6369. <technologies>
  6370. <technology name=""/>
  6371. </technologies>
  6372. </device>
  6373. <device name="375-192X418" package="C375-192X418">
  6374. <connects>
  6375. <connect gate="G$1" pin="1" pad="1"/>
  6376. <connect gate="G$1" pin="2" pad="2"/>
  6377. </connects>
  6378. <technologies>
  6379. <technology name=""/>
  6380. </technologies>
  6381. </device>
  6382. <device name="375-203X418" package="C375-203X418">
  6383. <connects>
  6384. <connect gate="G$1" pin="1" pad="1"/>
  6385. <connect gate="G$1" pin="2" pad="2"/>
  6386. </connects>
  6387. <technologies>
  6388. <technology name=""/>
  6389. </technologies>
  6390. </device>
  6391. <device name="050-035X075" package="C050-035X075">
  6392. <connects>
  6393. <connect gate="G$1" pin="1" pad="1"/>
  6394. <connect gate="G$1" pin="2" pad="2"/>
  6395. </connects>
  6396. <technologies>
  6397. <technology name=""/>
  6398. </technologies>
  6399. </device>
  6400. <device name="375-155X418" package="C375-155X418">
  6401. <connects>
  6402. <connect gate="G$1" pin="1" pad="1"/>
  6403. <connect gate="G$1" pin="2" pad="2"/>
  6404. </connects>
  6405. <technologies>
  6406. <technology name=""/>
  6407. </technologies>
  6408. </device>
  6409. <device name="075-063X106" package="C075-063X106">
  6410. <connects>
  6411. <connect gate="G$1" pin="1" pad="1"/>
  6412. <connect gate="G$1" pin="2" pad="2"/>
  6413. </connects>
  6414. <technologies>
  6415. <technology name=""/>
  6416. </technologies>
  6417. </device>
  6418. <device name="275-154X316" package="C275-154X316">
  6419. <connects>
  6420. <connect gate="G$1" pin="1" pad="1"/>
  6421. <connect gate="G$1" pin="2" pad="2"/>
  6422. </connects>
  6423. <technologies>
  6424. <technology name=""/>
  6425. </technologies>
  6426. </device>
  6427. <device name="275-173X316" package="C275-173X316">
  6428. <connects>
  6429. <connect gate="G$1" pin="1" pad="1"/>
  6430. <connect gate="G$1" pin="2" pad="2"/>
  6431. </connects>
  6432. <technologies>
  6433. <technology name=""/>
  6434. </technologies>
  6435. </device>
  6436. <device name="C0402K" package="C0402K">
  6437. <connects>
  6438. <connect gate="G$1" pin="1" pad="1"/>
  6439. <connect gate="G$1" pin="2" pad="2"/>
  6440. </connects>
  6441. <technologies>
  6442. <technology name=""/>
  6443. </technologies>
  6444. </device>
  6445. <device name="C0603K" package="C0603K">
  6446. <connects>
  6447. <connect gate="G$1" pin="1" pad="1"/>
  6448. <connect gate="G$1" pin="2" pad="2"/>
  6449. </connects>
  6450. <technologies>
  6451. <technology name=""/>
  6452. </technologies>
  6453. </device>
  6454. <device name="C0805K" package="C0805K">
  6455. <connects>
  6456. <connect gate="G$1" pin="1" pad="1"/>
  6457. <connect gate="G$1" pin="2" pad="2"/>
  6458. </connects>
  6459. <technologies>
  6460. <technology name=""/>
  6461. </technologies>
  6462. </device>
  6463. <device name="C1206K" package="C1206K">
  6464. <connects>
  6465. <connect gate="G$1" pin="1" pad="1"/>
  6466. <connect gate="G$1" pin="2" pad="2"/>
  6467. </connects>
  6468. <technologies>
  6469. <technology name=""/>
  6470. </technologies>
  6471. </device>
  6472. <device name="C1210K" package="C1210K">
  6473. <connects>
  6474. <connect gate="G$1" pin="1" pad="1"/>
  6475. <connect gate="G$1" pin="2" pad="2"/>
  6476. </connects>
  6477. <technologies>
  6478. <technology name=""/>
  6479. </technologies>
  6480. </device>
  6481. <device name="C1812K" package="C1812K">
  6482. <connects>
  6483. <connect gate="G$1" pin="1" pad="1"/>
  6484. <connect gate="G$1" pin="2" pad="2"/>
  6485. </connects>
  6486. <technologies>
  6487. <technology name=""/>
  6488. </technologies>
  6489. </device>
  6490. <device name="C1825K" package="C1825K">
  6491. <connects>
  6492. <connect gate="G$1" pin="1" pad="1"/>
  6493. <connect gate="G$1" pin="2" pad="2"/>
  6494. </connects>
  6495. <technologies>
  6496. <technology name=""/>
  6497. </technologies>
  6498. </device>
  6499. <device name="C2220K" package="C2220K">
  6500. <connects>
  6501. <connect gate="G$1" pin="1" pad="1"/>
  6502. <connect gate="G$1" pin="2" pad="2"/>
  6503. </connects>
  6504. <technologies>
  6505. <technology name=""/>
  6506. </technologies>
  6507. </device>
  6508. <device name="C2225K" package="C2225K">
  6509. <connects>
  6510. <connect gate="G$1" pin="1" pad="1"/>
  6511. <connect gate="G$1" pin="2" pad="2"/>
  6512. </connects>
  6513. <technologies>
  6514. <technology name=""/>
  6515. </technologies>
  6516. </device>
  6517. </devices>
  6518. </deviceset>
  6519. </devicesets>
  6520. </library>
  6521. </libraries>
  6522. <attributes>
  6523. </attributes>
  6524. <variantdefs>
  6525. </variantdefs>
  6526. <classes>
  6527. <class number="0" name="default" width="0" drill="0">
  6528. </class>
  6529. </classes>
  6530. <parts>
  6531. <part name="U$3" library="analog-devices" deviceset="AD7190" device=""/>
  6532. <part name="U$4" library="LP2985" deviceset="LP2985" device="AIM5-3.3"/>
  6533. <part name="C7" library="adafruit" deviceset="C-US" device="C0603" value="1uF"/>
  6534. <part name="C8" library="adafruit" deviceset="C-US" device="C0603" value="2.2uF"/>
  6535. <part name="C9" library="adafruit" deviceset="C-US" device="C0603" value="0.01uF"/>
  6536. <part name="JP9" library="pinhead" deviceset="PINHD-1X2" device="" value="5V"/>
  6537. <part name="JP11" library="pinhead" deviceset="PINHD-1X6" device="" value="SPI"/>
  6538. <part name="R45" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  6539. <part name="R46" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  6540. <part name="R47" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  6541. <part name="R48" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  6542. <part name="R49" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  6543. <part name="JP10" library="pinhead" deviceset="PINHD-1X8" device="" value="AIN"/>
  6544. <part name="JP12" library="pinhead" deviceset="PINHD-1X2" device="" value="QUARTZ"/>
  6545. <part name="JP13" library="pinhead" deviceset="PINHD-1X6" device="" value="MISC"/>
  6546. <part name="C1" library="adafruit" deviceset="C-US" device="C0603" value="10uF"/>
  6547. <part name="C2" library="adafruit" deviceset="C-US" device="C0603" value="10uF"/>
  6548. <part name="C3" library="adafruit" deviceset="C-US" device="C0603" value="10uF"/>
  6549. <part name="C4" library="adafruit" deviceset="C-US" device="C0603" value="10uF"/>
  6550. </parts>
  6551. <sheets>
  6552. <sheet>
  6553. <plain>
  6554. </plain>
  6555. <instances>
  6556. <instance part="U$3" gate="G$1" x="187.96" y="17.78"/>
  6557. <instance part="U$4" gate="G$1" x="68.58" y="78.74"/>
  6558. <instance part="C7" gate="G$1" x="43.18" y="78.74"/>
  6559. <instance part="C8" gate="G$1" x="96.52" y="81.28"/>
  6560. <instance part="C9" gate="G$1" x="88.9" y="68.58"/>
  6561. <instance part="JP9" gate="G$1" x="25.4" y="81.28" rot="R180"/>
  6562. <instance part="JP11" gate="A" x="236.22" y="22.86"/>
  6563. <instance part="R45" gate="G$1" x="208.28" y="40.64"/>
  6564. <instance part="R46" gate="G$1" x="208.28" y="33.02"/>
  6565. <instance part="R47" gate="G$1" x="208.28" y="25.4"/>
  6566. <instance part="R48" gate="G$1" x="208.28" y="17.78"/>
  6567. <instance part="R49" gate="G$1" x="208.28" y="10.16"/>
  6568. <instance part="JP10" gate="A" x="162.56" y="-43.18" rot="R270"/>
  6569. <instance part="JP12" gate="G$1" x="121.92" y="40.64" rot="R180"/>
  6570. <instance part="JP13" gate="A" x="121.92" y="17.78" rot="R180"/>
  6571. <instance part="C1" gate="G$1" x="208.28" y="83.82" rot="R90"/>
  6572. <instance part="C2" gate="G$1" x="208.28" y="76.2" rot="R90"/>
  6573. <instance part="C3" gate="G$1" x="210.82" y="55.88" rot="R90"/>
  6574. <instance part="C4" gate="G$1" x="210.82" y="48.26" rot="R90"/>
  6575. </instances>
  6576. <busses>
  6577. </busses>
  6578. <nets>
  6579. <net name="BYPASS" class="0">
  6580. <segment>
  6581. <pinref part="U$4" gate="G$1" pin="BYPASS"/>
  6582. <pinref part="C9" gate="G$1" pin="1"/>
  6583. <wire x1="81.28" y1="76.2" x2="88.9" y2="76.2" width="0.1524" layer="91"/>
  6584. <wire x1="88.9" y1="76.2" x2="88.9" y2="71.12" width="0.1524" layer="91"/>
  6585. </segment>
  6586. </net>
  6587. <net name="N$102" class="0">
  6588. <segment>
  6589. <pinref part="R45" gate="G$1" pin="2"/>
  6590. <wire x1="213.36" y1="40.64" x2="223.52" y2="40.64" width="0.1524" layer="91"/>
  6591. <wire x1="223.52" y1="40.64" x2="223.52" y2="27.94" width="0.1524" layer="91"/>
  6592. <pinref part="JP11" gate="A" pin="2"/>
  6593. <wire x1="223.52" y1="27.94" x2="233.68" y2="27.94" width="0.1524" layer="91"/>
  6594. </segment>
  6595. </net>
  6596. <net name="N$103" class="0">
  6597. <segment>
  6598. <pinref part="R46" gate="G$1" pin="2"/>
  6599. <wire x1="213.36" y1="33.02" x2="220.98" y2="33.02" width="0.1524" layer="91"/>
  6600. <wire x1="220.98" y1="33.02" x2="220.98" y2="25.4" width="0.1524" layer="91"/>
  6601. <pinref part="JP11" gate="A" pin="3"/>
  6602. <wire x1="220.98" y1="25.4" x2="233.68" y2="25.4" width="0.1524" layer="91"/>
  6603. </segment>
  6604. </net>
  6605. <net name="N$104" class="0">
  6606. <segment>
  6607. <pinref part="R47" gate="G$1" pin="2"/>
  6608. <wire x1="213.36" y1="25.4" x2="218.44" y2="25.4" width="0.1524" layer="91"/>
  6609. <pinref part="JP11" gate="A" pin="4"/>
  6610. <wire x1="218.44" y1="25.4" x2="218.44" y2="22.86" width="0.1524" layer="91"/>
  6611. <wire x1="218.44" y1="22.86" x2="233.68" y2="22.86" width="0.1524" layer="91"/>
  6612. </segment>
  6613. </net>
  6614. <net name="N$106" class="0">
  6615. <segment>
  6616. <pinref part="R49" gate="G$1" pin="2"/>
  6617. <wire x1="213.36" y1="10.16" x2="220.98" y2="10.16" width="0.1524" layer="91"/>
  6618. <pinref part="JP11" gate="A" pin="6"/>
  6619. <wire x1="220.98" y1="10.16" x2="220.98" y2="17.78" width="0.1524" layer="91"/>
  6620. <wire x1="220.98" y1="17.78" x2="233.68" y2="17.78" width="0.1524" layer="91"/>
  6621. </segment>
  6622. </net>
  6623. <net name="N$116" class="0">
  6624. <segment>
  6625. <pinref part="U$3" gate="G$1" pin="DGND"/>
  6626. <wire x1="180.34" y1="17.78" x2="182.88" y2="17.78" width="0.1524" layer="91"/>
  6627. <pinref part="U$3" gate="G$1" pin="AGND"/>
  6628. <wire x1="180.34" y1="12.7" x2="182.88" y2="12.7" width="0.1524" layer="91"/>
  6629. <wire x1="182.88" y1="12.7" x2="182.88" y2="17.78" width="0.1524" layer="91"/>
  6630. <pinref part="U$4" gate="G$1" pin="GND"/>
  6631. <pinref part="C7" gate="G$1" pin="2"/>
  6632. <wire x1="55.88" y1="73.66" x2="50.8" y2="73.66" width="0.1524" layer="91"/>
  6633. <wire x1="50.8" y1="73.66" x2="43.18" y2="73.66" width="0.1524" layer="91"/>
  6634. <wire x1="50.8" y1="73.66" x2="50.8" y2="60.96" width="0.1524" layer="91"/>
  6635. <wire x1="50.8" y1="60.96" x2="88.9" y2="60.96" width="0.1524" layer="91"/>
  6636. <junction x="50.8" y="73.66"/>
  6637. <pinref part="C8" gate="G$1" pin="2"/>
  6638. <wire x1="88.9" y1="60.96" x2="96.52" y2="60.96" width="0.1524" layer="91"/>
  6639. <wire x1="96.52" y1="60.96" x2="96.52" y2="76.2" width="0.1524" layer="91"/>
  6640. <pinref part="C9" gate="G$1" pin="2"/>
  6641. <wire x1="88.9" y1="63.5" x2="88.9" y2="60.96" width="0.1524" layer="91"/>
  6642. <junction x="88.9" y="60.96"/>
  6643. <wire x1="96.52" y1="60.96" x2="129.54" y2="60.96" width="0.1524" layer="91"/>
  6644. <wire x1="129.54" y1="60.96" x2="187.96" y2="60.96" width="0.1524" layer="91"/>
  6645. <wire x1="187.96" y1="60.96" x2="226.06" y2="60.96" width="0.1524" layer="91"/>
  6646. <junction x="96.52" y="60.96"/>
  6647. <pinref part="JP11" gate="A" pin="1"/>
  6648. <wire x1="226.06" y1="60.96" x2="226.06" y2="55.88" width="0.1524" layer="91"/>
  6649. <wire x1="226.06" y1="55.88" x2="226.06" y2="48.26" width="0.1524" layer="91"/>
  6650. <wire x1="226.06" y1="48.26" x2="226.06" y2="30.48" width="0.1524" layer="91"/>
  6651. <wire x1="226.06" y1="30.48" x2="233.68" y2="30.48" width="0.1524" layer="91"/>
  6652. <pinref part="JP9" gate="G$1" pin="1"/>
  6653. <wire x1="27.94" y1="78.74" x2="38.1" y2="78.74" width="0.1524" layer="91"/>
  6654. <wire x1="38.1" y1="78.74" x2="38.1" y2="73.66" width="0.1524" layer="91"/>
  6655. <wire x1="38.1" y1="73.66" x2="43.18" y2="73.66" width="0.1524" layer="91"/>
  6656. <junction x="43.18" y="73.66"/>
  6657. <wire x1="182.88" y1="17.78" x2="187.96" y2="17.78" width="0.1524" layer="91"/>
  6658. <wire x1="187.96" y1="17.78" x2="187.96" y2="60.96" width="0.1524" layer="91"/>
  6659. <junction x="182.88" y="17.78"/>
  6660. <junction x="187.96" y="60.96"/>
  6661. <pinref part="U$3" gate="G$1" pin="REFIN1-"/>
  6662. <wire x1="180.34" y1="2.54" x2="182.88" y2="2.54" width="0.1524" layer="91"/>
  6663. <wire x1="182.88" y1="2.54" x2="182.88" y2="12.7" width="0.1524" layer="91"/>
  6664. <junction x="182.88" y="12.7"/>
  6665. <pinref part="JP13" gate="A" pin="1"/>
  6666. <wire x1="124.46" y1="10.16" x2="129.54" y2="10.16" width="0.1524" layer="91"/>
  6667. <wire x1="129.54" y1="10.16" x2="129.54" y2="60.96" width="0.1524" layer="91"/>
  6668. <junction x="129.54" y="60.96"/>
  6669. <pinref part="C1" gate="G$1" pin="2"/>
  6670. <wire x1="213.36" y1="83.82" x2="226.06" y2="83.82" width="0.1524" layer="91"/>
  6671. <wire x1="226.06" y1="83.82" x2="226.06" y2="76.2" width="0.1524" layer="91"/>
  6672. <junction x="226.06" y="60.96"/>
  6673. <pinref part="C2" gate="G$1" pin="2"/>
  6674. <wire x1="226.06" y1="76.2" x2="226.06" y2="60.96" width="0.1524" layer="91"/>
  6675. <wire x1="213.36" y1="76.2" x2="226.06" y2="76.2" width="0.1524" layer="91"/>
  6676. <junction x="226.06" y="76.2"/>
  6677. <pinref part="C3" gate="G$1" pin="2"/>
  6678. <wire x1="215.9" y1="55.88" x2="226.06" y2="55.88" width="0.1524" layer="91"/>
  6679. <junction x="226.06" y="55.88"/>
  6680. <pinref part="C4" gate="G$1" pin="2"/>
  6681. <wire x1="215.9" y1="48.26" x2="226.06" y2="48.26" width="0.1524" layer="91"/>
  6682. <junction x="226.06" y="48.26"/>
  6683. </segment>
  6684. </net>
  6685. <net name="N$97" class="0">
  6686. <segment>
  6687. <pinref part="U$3" gate="G$1" pin="BPDSW"/>
  6688. <wire x1="180.34" y1="7.62" x2="187.96" y2="7.62" width="0.1524" layer="91"/>
  6689. <wire x1="187.96" y1="7.62" x2="187.96" y2="-35.56" width="0.1524" layer="91"/>
  6690. <pinref part="JP10" gate="A" pin="1"/>
  6691. <wire x1="187.96" y1="-35.56" x2="172.72" y2="-35.56" width="0.1524" layer="91"/>
  6692. <wire x1="172.72" y1="-35.56" x2="172.72" y2="-40.64" width="0.1524" layer="91"/>
  6693. <pinref part="JP10" gate="A" pin="3"/>
  6694. <wire x1="167.64" y1="-40.64" x2="167.64" y2="-35.56" width="0.1524" layer="91"/>
  6695. <wire x1="167.64" y1="-35.56" x2="172.72" y2="-35.56" width="0.1524" layer="91"/>
  6696. <junction x="172.72" y="-35.56"/>
  6697. <pinref part="JP10" gate="A" pin="5"/>
  6698. <wire x1="162.56" y1="-40.64" x2="162.56" y2="-35.56" width="0.1524" layer="91"/>
  6699. <wire x1="162.56" y1="-35.56" x2="167.64" y2="-35.56" width="0.1524" layer="91"/>
  6700. <junction x="167.64" y="-35.56"/>
  6701. <pinref part="JP10" gate="A" pin="7"/>
  6702. <wire x1="157.48" y1="-40.64" x2="157.48" y2="-35.56" width="0.1524" layer="91"/>
  6703. <wire x1="157.48" y1="-35.56" x2="162.56" y2="-35.56" width="0.1524" layer="91"/>
  6704. <junction x="162.56" y="-35.56"/>
  6705. </segment>
  6706. </net>
  6707. <net name="N$112" class="0">
  6708. <segment>
  6709. <pinref part="U$3" gate="G$1" pin="AIN1"/>
  6710. <wire x1="144.78" y1="-7.62" x2="139.7" y2="-7.62" width="0.1524" layer="91"/>
  6711. <wire x1="139.7" y1="-7.62" x2="139.7" y2="-33.02" width="0.1524" layer="91"/>
  6712. <wire x1="139.7" y1="-33.02" x2="154.94" y2="-33.02" width="0.1524" layer="91"/>
  6713. <pinref part="JP10" gate="A" pin="8"/>
  6714. <wire x1="154.94" y1="-33.02" x2="154.94" y2="-40.64" width="0.1524" layer="91"/>
  6715. </segment>
  6716. </net>
  6717. <net name="N$113" class="0">
  6718. <segment>
  6719. <pinref part="U$3" gate="G$1" pin="AIN2"/>
  6720. <wire x1="144.78" y1="-12.7" x2="142.24" y2="-12.7" width="0.1524" layer="91"/>
  6721. <wire x1="142.24" y1="-12.7" x2="142.24" y2="-30.48" width="0.1524" layer="91"/>
  6722. <pinref part="JP10" gate="A" pin="6"/>
  6723. <wire x1="142.24" y1="-30.48" x2="160.02" y2="-30.48" width="0.1524" layer="91"/>
  6724. <wire x1="160.02" y1="-30.48" x2="160.02" y2="-40.64" width="0.1524" layer="91"/>
  6725. </segment>
  6726. </net>
  6727. <net name="N$114" class="0">
  6728. <segment>
  6729. <pinref part="U$3" gate="G$1" pin="AIN3"/>
  6730. <wire x1="180.34" y1="-12.7" x2="182.88" y2="-12.7" width="0.1524" layer="91"/>
  6731. <wire x1="182.88" y1="-12.7" x2="182.88" y2="-30.48" width="0.1524" layer="91"/>
  6732. <pinref part="JP10" gate="A" pin="4"/>
  6733. <wire x1="182.88" y1="-30.48" x2="165.1" y2="-30.48" width="0.1524" layer="91"/>
  6734. <wire x1="165.1" y1="-30.48" x2="165.1" y2="-40.64" width="0.1524" layer="91"/>
  6735. </segment>
  6736. </net>
  6737. <net name="N$115" class="0">
  6738. <segment>
  6739. <pinref part="U$3" gate="G$1" pin="AIN4"/>
  6740. <wire x1="180.34" y1="-7.62" x2="185.42" y2="-7.62" width="0.1524" layer="91"/>
  6741. <wire x1="185.42" y1="-7.62" x2="185.42" y2="-33.02" width="0.1524" layer="91"/>
  6742. <pinref part="JP10" gate="A" pin="2"/>
  6743. <wire x1="185.42" y1="-33.02" x2="170.18" y2="-33.02" width="0.1524" layer="91"/>
  6744. <wire x1="170.18" y1="-33.02" x2="170.18" y2="-40.64" width="0.1524" layer="91"/>
  6745. </segment>
  6746. </net>
  6747. <net name="N$117" class="0">
  6748. <segment>
  6749. <pinref part="U$3" gate="G$1" pin="MCLK1"/>
  6750. <wire x1="144.78" y1="43.18" x2="132.08" y2="43.18" width="0.1524" layer="91"/>
  6751. <wire x1="132.08" y1="43.18" x2="132.08" y2="40.64" width="0.1524" layer="91"/>
  6752. <pinref part="JP12" gate="G$1" pin="2"/>
  6753. <wire x1="132.08" y1="40.64" x2="124.46" y2="40.64" width="0.1524" layer="91"/>
  6754. </segment>
  6755. </net>
  6756. <net name="N$118" class="0">
  6757. <segment>
  6758. <pinref part="U$3" gate="G$1" pin="MCLK2"/>
  6759. <pinref part="JP12" gate="G$1" pin="1"/>
  6760. <wire x1="144.78" y1="38.1" x2="124.46" y2="38.1" width="0.1524" layer="91"/>
  6761. </segment>
  6762. </net>
  6763. <net name="N$119" class="0">
  6764. <segment>
  6765. <pinref part="U$3" gate="G$1" pin="P3"/>
  6766. <pinref part="JP13" gate="A" pin="6"/>
  6767. <wire x1="144.78" y1="22.86" x2="124.46" y2="22.86" width="0.1524" layer="91"/>
  6768. </segment>
  6769. </net>
  6770. <net name="N$120" class="0">
  6771. <segment>
  6772. <pinref part="U$3" gate="G$1" pin="P2"/>
  6773. <wire x1="144.78" y1="17.78" x2="142.24" y2="17.78" width="0.1524" layer="91"/>
  6774. <wire x1="142.24" y1="17.78" x2="142.24" y2="20.32" width="0.1524" layer="91"/>
  6775. <pinref part="JP13" gate="A" pin="5"/>
  6776. <wire x1="142.24" y1="20.32" x2="124.46" y2="20.32" width="0.1524" layer="91"/>
  6777. </segment>
  6778. </net>
  6779. <net name="N$121" class="0">
  6780. <segment>
  6781. <pinref part="U$3" gate="G$1" pin="P1/REFIN2+"/>
  6782. <wire x1="144.78" y1="12.7" x2="139.7" y2="12.7" width="0.1524" layer="91"/>
  6783. <wire x1="139.7" y1="12.7" x2="139.7" y2="17.78" width="0.1524" layer="91"/>
  6784. <pinref part="JP13" gate="A" pin="4"/>
  6785. <wire x1="139.7" y1="17.78" x2="124.46" y2="17.78" width="0.1524" layer="91"/>
  6786. </segment>
  6787. </net>
  6788. <net name="N$122" class="0">
  6789. <segment>
  6790. <pinref part="U$3" gate="G$1" pin="P0/REFIN2-"/>
  6791. <wire x1="144.78" y1="7.62" x2="137.16" y2="7.62" width="0.1524" layer="91"/>
  6792. <wire x1="137.16" y1="7.62" x2="137.16" y2="15.24" width="0.1524" layer="91"/>
  6793. <pinref part="JP13" gate="A" pin="3"/>
  6794. <wire x1="137.16" y1="15.24" x2="124.46" y2="15.24" width="0.1524" layer="91"/>
  6795. </segment>
  6796. </net>
  6797. <net name="N$123" class="0">
  6798. <segment>
  6799. <pinref part="U$3" gate="G$1" pin="AINCOM"/>
  6800. <wire x1="144.78" y1="-2.54" x2="134.62" y2="-2.54" width="0.1524" layer="91"/>
  6801. <wire x1="134.62" y1="-2.54" x2="134.62" y2="12.7" width="0.1524" layer="91"/>
  6802. <pinref part="JP13" gate="A" pin="2"/>
  6803. <wire x1="134.62" y1="12.7" x2="124.46" y2="12.7" width="0.1524" layer="91"/>
  6804. </segment>
  6805. </net>
  6806. <net name="N$1" class="0">
  6807. <segment>
  6808. <pinref part="R48" gate="G$1" pin="2"/>
  6809. <pinref part="JP11" gate="A" pin="5"/>
  6810. <wire x1="213.36" y1="17.78" x2="213.36" y2="20.32" width="0.1524" layer="91"/>
  6811. <wire x1="213.36" y1="20.32" x2="233.68" y2="20.32" width="0.1524" layer="91"/>
  6812. </segment>
  6813. </net>
  6814. <net name="N$2" class="0">
  6815. <segment>
  6816. <pinref part="U$3" gate="G$1" pin="SCLK"/>
  6817. <wire x1="144.78" y1="33.02" x2="142.24" y2="33.02" width="0.1524" layer="91"/>
  6818. <wire x1="142.24" y1="33.02" x2="142.24" y2="50.8" width="0.1524" layer="91"/>
  6819. <wire x1="142.24" y1="50.8" x2="203.2" y2="50.8" width="0.1524" layer="91"/>
  6820. <wire x1="203.2" y1="50.8" x2="203.2" y2="40.64" width="0.1524" layer="91"/>
  6821. <pinref part="R45" gate="G$1" pin="1"/>
  6822. </segment>
  6823. </net>
  6824. <net name="N$3" class="0">
  6825. <segment>
  6826. <pinref part="U$3" gate="G$1" pin="NCS"/>
  6827. <wire x1="144.78" y1="27.94" x2="139.7" y2="27.94" width="0.1524" layer="91"/>
  6828. <wire x1="139.7" y1="27.94" x2="139.7" y2="53.34" width="0.1524" layer="91"/>
  6829. <wire x1="139.7" y1="53.34" x2="200.66" y2="53.34" width="0.1524" layer="91"/>
  6830. <wire x1="200.66" y1="53.34" x2="200.66" y2="33.02" width="0.1524" layer="91"/>
  6831. <pinref part="R46" gate="G$1" pin="1"/>
  6832. <wire x1="200.66" y1="33.02" x2="203.2" y2="33.02" width="0.1524" layer="91"/>
  6833. </segment>
  6834. </net>
  6835. <net name="N$4" class="0">
  6836. <segment>
  6837. <pinref part="U$3" gate="G$1" pin="DIN"/>
  6838. <wire x1="180.34" y1="43.18" x2="198.12" y2="43.18" width="0.1524" layer="91"/>
  6839. <wire x1="198.12" y1="43.18" x2="198.12" y2="25.4" width="0.1524" layer="91"/>
  6840. <pinref part="R47" gate="G$1" pin="1"/>
  6841. <wire x1="198.12" y1="25.4" x2="203.2" y2="25.4" width="0.1524" layer="91"/>
  6842. </segment>
  6843. </net>
  6844. <net name="N$5" class="0">
  6845. <segment>
  6846. <pinref part="U$3" gate="G$1" pin="DOUT/NRDY"/>
  6847. <wire x1="180.34" y1="38.1" x2="195.58" y2="38.1" width="0.1524" layer="91"/>
  6848. <wire x1="195.58" y1="38.1" x2="195.58" y2="17.78" width="0.1524" layer="91"/>
  6849. <pinref part="R48" gate="G$1" pin="1"/>
  6850. <wire x1="195.58" y1="17.78" x2="203.2" y2="17.78" width="0.1524" layer="91"/>
  6851. </segment>
  6852. </net>
  6853. <net name="N$6" class="0">
  6854. <segment>
  6855. <pinref part="U$3" gate="G$1" pin="NSYNC"/>
  6856. <wire x1="180.34" y1="33.02" x2="185.42" y2="33.02" width="0.1524" layer="91"/>
  6857. <wire x1="185.42" y1="33.02" x2="185.42" y2="10.16" width="0.1524" layer="91"/>
  6858. <pinref part="R49" gate="G$1" pin="1"/>
  6859. <wire x1="185.42" y1="10.16" x2="203.2" y2="10.16" width="0.1524" layer="91"/>
  6860. </segment>
  6861. </net>
  6862. <net name="N$8" class="0">
  6863. <segment>
  6864. <pinref part="C1" gate="G$1" pin="1"/>
  6865. <wire x1="205.74" y1="83.82" x2="200.66" y2="83.82" width="0.1524" layer="91"/>
  6866. <wire x1="200.66" y1="83.82" x2="200.66" y2="76.2" width="0.1524" layer="91"/>
  6867. <pinref part="C2" gate="G$1" pin="1"/>
  6868. <wire x1="200.66" y1="76.2" x2="205.74" y2="76.2" width="0.1524" layer="91"/>
  6869. <pinref part="U$4" gate="G$1" pin="VIN"/>
  6870. <wire x1="55.88" y1="83.82" x2="50.8" y2="83.82" width="0.1524" layer="91"/>
  6871. <wire x1="50.8" y1="83.82" x2="50.8" y2="78.74" width="0.1524" layer="91"/>
  6872. <pinref part="U$4" gate="G$1" pin="ON/OFF"/>
  6873. <wire x1="50.8" y1="78.74" x2="55.88" y2="78.74" width="0.1524" layer="91"/>
  6874. <pinref part="C7" gate="G$1" pin="1"/>
  6875. <wire x1="50.8" y1="83.82" x2="43.18" y2="83.82" width="0.1524" layer="91"/>
  6876. <wire x1="43.18" y1="83.82" x2="43.18" y2="81.28" width="0.1524" layer="91"/>
  6877. <junction x="50.8" y="83.82"/>
  6878. <pinref part="JP9" gate="G$1" pin="2"/>
  6879. <wire x1="27.94" y1="81.28" x2="38.1" y2="81.28" width="0.1524" layer="91"/>
  6880. <wire x1="38.1" y1="81.28" x2="38.1" y2="83.82" width="0.1524" layer="91"/>
  6881. <wire x1="38.1" y1="83.82" x2="43.18" y2="83.82" width="0.1524" layer="91"/>
  6882. <junction x="43.18" y="83.82"/>
  6883. <pinref part="U$3" gate="G$1" pin="AVDD"/>
  6884. <wire x1="180.34" y1="22.86" x2="193.04" y2="22.86" width="0.1524" layer="91"/>
  6885. <wire x1="193.04" y1="22.86" x2="193.04" y2="76.2" width="0.1524" layer="91"/>
  6886. <wire x1="193.04" y1="76.2" x2="193.04" y2="91.44" width="0.1524" layer="91"/>
  6887. <wire x1="193.04" y1="91.44" x2="50.8" y2="91.44" width="0.1524" layer="91"/>
  6888. <wire x1="50.8" y1="91.44" x2="50.8" y2="83.82" width="0.1524" layer="91"/>
  6889. <pinref part="U$3" gate="G$1" pin="REFIN1+"/>
  6890. <wire x1="193.04" y1="22.86" x2="193.04" y2="-2.54" width="0.1524" layer="91"/>
  6891. <wire x1="193.04" y1="-2.54" x2="180.34" y2="-2.54" width="0.1524" layer="91"/>
  6892. <junction x="193.04" y="22.86"/>
  6893. <wire x1="200.66" y1="76.2" x2="193.04" y2="76.2" width="0.1524" layer="91"/>
  6894. <junction x="200.66" y="76.2"/>
  6895. <junction x="193.04" y="76.2"/>
  6896. </segment>
  6897. </net>
  6898. <net name="N$9" class="0">
  6899. <segment>
  6900. <pinref part="C4" gate="G$1" pin="1"/>
  6901. <wire x1="208.28" y1="48.26" x2="205.74" y2="48.26" width="0.1524" layer="91"/>
  6902. <wire x1="205.74" y1="48.26" x2="205.74" y2="55.88" width="0.1524" layer="91"/>
  6903. <pinref part="C3" gate="G$1" pin="1"/>
  6904. <wire x1="205.74" y1="55.88" x2="208.28" y2="55.88" width="0.1524" layer="91"/>
  6905. <pinref part="C8" gate="G$1" pin="1"/>
  6906. <pinref part="U$4" gate="G$1" pin="VOUT"/>
  6907. <wire x1="96.52" y1="83.82" x2="91.44" y2="83.82" width="0.1524" layer="91"/>
  6908. <pinref part="U$3" gate="G$1" pin="DVDD"/>
  6909. <wire x1="91.44" y1="83.82" x2="81.28" y2="83.82" width="0.1524" layer="91"/>
  6910. <wire x1="180.34" y1="27.94" x2="190.5" y2="27.94" width="0.1524" layer="91"/>
  6911. <wire x1="190.5" y1="27.94" x2="190.5" y2="55.88" width="0.1524" layer="91"/>
  6912. <wire x1="190.5" y1="55.88" x2="190.5" y2="88.9" width="0.1524" layer="91"/>
  6913. <wire x1="190.5" y1="88.9" x2="91.44" y2="88.9" width="0.1524" layer="91"/>
  6914. <wire x1="91.44" y1="88.9" x2="91.44" y2="83.82" width="0.1524" layer="91"/>
  6915. <junction x="91.44" y="83.82"/>
  6916. <wire x1="205.74" y1="55.88" x2="190.5" y2="55.88" width="0.1524" layer="91"/>
  6917. <junction x="205.74" y="55.88"/>
  6918. <junction x="190.5" y="55.88"/>
  6919. </segment>
  6920. </net>
  6921. </nets>
  6922. </sheet>
  6923. </sheets>
  6924. <errors>
  6925. <approved hash="104,1,180.34,12.7,U$3,AGND,N$116,,,"/>
  6926. <approved hash="104,1,180.34,17.78,U$3,DGND,N$116,,,"/>
  6927. <approved hash="104,1,180.34,22.86,U$3,AVDD,N$10,,,"/>
  6928. <approved hash="104,1,180.34,27.94,U$3,DVDD,N$101,,,"/>
  6929. <approved hash="104,1,55.88,83.82,U$4,VIN,N$10,,,"/>
  6930. <approved hash="104,1,55.88,73.66,U$4,GND,N$116,,,"/>
  6931. <approved hash="104,1,81.28,83.82,U$4,VOUT,N$101,,,"/>
  6932. <approved hash="113,1,27.7029,78.6088,JP9,,,,,"/>
  6933. <approved hash="113,1,233.917,25.5312,JP11,,,,,"/>
  6934. <approved hash="113,1,165.231,-40.8771,JP10,,,,,"/>
  6935. <approved hash="113,1,124.223,37.9688,JP12,,,,,"/>
  6936. <approved hash="113,1,124.223,15.1088,JP13,,,,,"/>
  6937. </errors>
  6938. </schematic>
  6939. </drawing>
  6940. </eagle>