Dialer.s#6 353 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251
  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="50" unitdist="mil" unit="mil" style="lines" multiple="1" display="yes" altdistance="0.01" altunitdist="inch" altunit="inch"/>
  10. <layers>
  11. <layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
  12. <layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
  13. <layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
  14. <layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
  15. <layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
  16. <layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
  17. <layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
  18. <layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
  19. <layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
  20. <layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
  21. <layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
  22. <layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
  23. <layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
  24. <layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
  25. <layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
  26. <layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
  27. <layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
  28. <layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
  29. <layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
  30. <layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
  31. <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
  32. <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
  33. <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
  34. <layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
  35. <layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
  36. <layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
  37. <layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
  38. <layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
  39. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
  40. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
  41. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
  42. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
  43. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
  44. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
  45. <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
  46. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
  47. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
  48. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
  49. <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
  50. <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
  51. <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
  52. <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
  53. <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
  54. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
  55. <layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
  56. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
  57. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
  58. <layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
  59. <layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
  60. <layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
  61. <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
  62. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  63. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  64. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  65. <layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
  66. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  67. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  68. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  69. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  70. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  71. <layer number="99" name="SpiceOrder" color="5" fill="1" visible="yes" active="yes"/>
  72. </layers>
  73. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  74. <libraries>
  75. <library name="stm8s103">
  76. <description>&lt;b&gt;STM8S103 in TSSOP-20, SO-20 and LQFP32&lt;/b&gt;
  77. &lt;br /&gt;
  78. Source:
  79. &lt;a href="http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00226640.pdf"&gt;STM8S103K3, STM8S103F3, STM8S103F2 Datasheet&lt;/a&gt;</description>
  80. <packages>
  81. <package name="TSSOP20">
  82. <description>&lt;b&gt;Thin Shrink Small Outline Plastic 20&lt;/b&gt;&lt;p&gt;
  83. MAX3223-MAX3243.pdf</description>
  84. <wire x1="-3.1646" y1="-2.2828" x2="3.1646" y2="-2.2828" width="0.1524" layer="21"/>
  85. <wire x1="3.1646" y1="2.2828" x2="3.1646" y2="-2.2828" width="0.1524" layer="21"/>
  86. <wire x1="3.1646" y1="2.2828" x2="-3.1646" y2="2.2828" width="0.1524" layer="21"/>
  87. <wire x1="-3.1646" y1="-2.2828" x2="-3.1646" y2="2.2828" width="0.1524" layer="21"/>
  88. <wire x1="-2.936" y1="-2.0542" x2="2.936" y2="-2.0542" width="0.0508" layer="21"/>
  89. <wire x1="2.936" y1="2.0542" x2="2.936" y2="-2.0542" width="0.0508" layer="21"/>
  90. <wire x1="2.936" y1="2.0542" x2="-2.936" y2="2.0542" width="0.0508" layer="21"/>
  91. <wire x1="-2.936" y1="-2.0542" x2="-2.936" y2="2.0542" width="0.0508" layer="21"/>
  92. <circle x="-2.2756" y="-1.2192" radius="0.4572" width="0.1524" layer="21"/>
  93. <smd name="1" x="-2.925" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  94. <smd name="2" x="-2.275" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  95. <smd name="3" x="-1.625" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  96. <smd name="4" x="-0.975" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  97. <smd name="5" x="-0.325" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  98. <smd name="6" x="0.325" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  99. <smd name="7" x="0.975" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  100. <smd name="8" x="1.625" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  101. <smd name="9" x="2.275" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  102. <smd name="10" x="2.925" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  103. <smd name="11" x="2.925" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  104. <smd name="12" x="2.275" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  105. <smd name="13" x="1.625" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  106. <smd name="14" x="0.975" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  107. <smd name="15" x="0.325" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  108. <smd name="16" x="-0.325" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  109. <smd name="17" x="-0.975" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  110. <smd name="18" x="-1.625" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  111. <smd name="19" x="-2.275" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  112. <smd name="20" x="-2.925" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  113. <text x="-3.5456" y="-2.0828" size="1.016" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  114. <text x="4.5362" y="-2.0828" size="1.016" layer="27" ratio="10" rot="R90">&gt;VALUE</text>
  115. <rectangle x1="-3.0266" y1="-3.121" x2="-2.8234" y2="-2.2828" layer="51"/>
  116. <rectangle x1="-2.3766" y1="-3.121" x2="-2.1734" y2="-2.2828" layer="51"/>
  117. <rectangle x1="-1.7266" y1="-3.121" x2="-1.5234" y2="-2.2828" layer="51"/>
  118. <rectangle x1="-1.0766" y1="-3.121" x2="-0.8734" y2="-2.2828" layer="51"/>
  119. <rectangle x1="-0.4266" y1="-3.121" x2="-0.2234" y2="-2.2828" layer="51"/>
  120. <rectangle x1="0.2234" y1="-3.121" x2="0.4266" y2="-2.2828" layer="51"/>
  121. <rectangle x1="0.8734" y1="-3.121" x2="1.0766" y2="-2.2828" layer="51"/>
  122. <rectangle x1="1.5234" y1="-3.121" x2="1.7266" y2="-2.2828" layer="51"/>
  123. <rectangle x1="2.1734" y1="-3.121" x2="2.3766" y2="-2.2828" layer="51"/>
  124. <rectangle x1="2.8234" y1="-3.121" x2="3.0266" y2="-2.2828" layer="51"/>
  125. <rectangle x1="2.8234" y1="2.2828" x2="3.0266" y2="3.121" layer="51"/>
  126. <rectangle x1="2.1734" y1="2.2828" x2="2.3766" y2="3.121" layer="51"/>
  127. <rectangle x1="1.5234" y1="2.2828" x2="1.7266" y2="3.121" layer="51"/>
  128. <rectangle x1="0.8734" y1="2.2828" x2="1.0766" y2="3.121" layer="51"/>
  129. <rectangle x1="0.2234" y1="2.2828" x2="0.4266" y2="3.121" layer="51"/>
  130. <rectangle x1="-0.4266" y1="2.2828" x2="-0.2234" y2="3.121" layer="51"/>
  131. <rectangle x1="-1.0766" y1="2.2828" x2="-0.8734" y2="3.121" layer="51"/>
  132. <rectangle x1="-1.7266" y1="2.2828" x2="-1.5234" y2="3.121" layer="51"/>
  133. <rectangle x1="-2.3766" y1="2.2828" x2="-2.1734" y2="3.121" layer="51"/>
  134. <rectangle x1="-3.0266" y1="2.2828" x2="-2.8234" y2="3.121" layer="51"/>
  135. </package>
  136. <package name="SO20W">
  137. <description>&lt;b&gt;SMALL OUTLINE INTEGRATED CIRCUIT&lt;/b&gt;&lt;p&gt;
  138. wide body 7.5 mm/JEDEC MS-013AC</description>
  139. <wire x1="-6.895" y1="5.9" x2="6.895" y2="5.9" width="0.1998" layer="39"/>
  140. <wire x1="6.895" y1="-5.9" x2="-6.895" y2="-5.9" width="0.1998" layer="39"/>
  141. <wire x1="-6.895" y1="-5.9" x2="-6.895" y2="5.9" width="0.1998" layer="39"/>
  142. <wire x1="6.46" y1="-3.7" x2="-6.46" y2="-3.7" width="0.2032" layer="51"/>
  143. <wire x1="-6.46" y1="-3.7" x2="-6.46" y2="-3.2" width="0.2032" layer="51"/>
  144. <wire x1="-6.46" y1="-3.2" x2="-6.46" y2="3.7" width="0.2032" layer="51"/>
  145. <wire x1="-6.46" y1="3.7" x2="6.46" y2="3.7" width="0.2032" layer="51"/>
  146. <wire x1="6.46" y1="-3.2" x2="-6.46" y2="-3.2" width="0.2032" layer="51"/>
  147. <wire x1="6.46" y1="3.7" x2="6.46" y2="-3.2" width="0.2032" layer="51"/>
  148. <wire x1="6.46" y1="-3.2" x2="6.46" y2="-3.7" width="0.2032" layer="51"/>
  149. <wire x1="6.895" y1="5.9" x2="6.895" y2="-5.9" width="0.1998" layer="39"/>
  150. <smd name="2" x="-4.445" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  151. <smd name="13" x="3.175" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  152. <smd name="1" x="-5.715" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  153. <smd name="3" x="-3.175" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  154. <smd name="4" x="-1.905" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  155. <smd name="14" x="1.905" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  156. <smd name="12" x="4.445" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  157. <smd name="11" x="5.715" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  158. <smd name="6" x="0.635" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  159. <smd name="9" x="4.445" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  160. <smd name="5" x="-0.635" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  161. <smd name="7" x="1.905" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  162. <smd name="10" x="5.715" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  163. <smd name="8" x="3.175" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  164. <smd name="15" x="0.635" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  165. <smd name="16" x="-0.635" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  166. <smd name="17" x="-1.905" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  167. <smd name="18" x="-3.175" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  168. <smd name="19" x="-4.445" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  169. <smd name="20" x="-5.715" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  170. <text x="-5.715" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  171. <text x="-5.715" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  172. <rectangle x1="-5.9601" y1="-5.32" x2="-5.4699" y2="-3.8001" layer="51"/>
  173. <rectangle x1="-4.6901" y1="-5.32" x2="-4.1999" y2="-3.8001" layer="51"/>
  174. <rectangle x1="-3.4201" y1="-5.32" x2="-2.9299" y2="-3.8001" layer="51"/>
  175. <rectangle x1="-2.1501" y1="-5.32" x2="-1.6599" y2="-3.8001" layer="51"/>
  176. <rectangle x1="-0.8801" y1="-5.32" x2="-0.3899" y2="-3.8001" layer="51"/>
  177. <rectangle x1="0.3899" y1="-5.32" x2="0.8801" y2="-3.8001" layer="51"/>
  178. <rectangle x1="1.6599" y1="-5.32" x2="2.1501" y2="-3.8001" layer="51"/>
  179. <rectangle x1="2.9299" y1="-5.32" x2="3.4201" y2="-3.8001" layer="51"/>
  180. <rectangle x1="4.1999" y1="-5.32" x2="4.6901" y2="-3.8001" layer="51"/>
  181. <rectangle x1="5.4699" y1="-5.32" x2="5.9601" y2="-3.8001" layer="51"/>
  182. <rectangle x1="5.4699" y1="3.8001" x2="5.9601" y2="5.32" layer="51"/>
  183. <rectangle x1="4.1999" y1="3.8001" x2="4.6901" y2="5.32" layer="51"/>
  184. <rectangle x1="2.9299" y1="3.8001" x2="3.4201" y2="5.32" layer="51"/>
  185. <rectangle x1="1.6599" y1="3.8001" x2="2.1501" y2="5.32" layer="51"/>
  186. <rectangle x1="0.3899" y1="3.8001" x2="0.8801" y2="5.32" layer="51"/>
  187. <rectangle x1="-0.8801" y1="3.8001" x2="-0.3899" y2="5.32" layer="51"/>
  188. <rectangle x1="-2.1501" y1="3.8001" x2="-1.6599" y2="5.32" layer="51"/>
  189. <rectangle x1="-3.4201" y1="3.8001" x2="-2.9299" y2="5.32" layer="51"/>
  190. <rectangle x1="-4.6901" y1="3.8001" x2="-4.1999" y2="5.32" layer="51"/>
  191. <rectangle x1="-5.9601" y1="3.8001" x2="-5.4699" y2="5.32" layer="51"/>
  192. </package>
  193. </packages>
  194. <symbols>
  195. <symbol name="STM8S103F">
  196. <wire x1="-33.02" y1="27.94" x2="35.56" y2="27.94" width="0.254" layer="94"/>
  197. <wire x1="35.56" y1="27.94" x2="35.56" y2="-30.48" width="0.254" layer="94"/>
  198. <wire x1="35.56" y1="-30.48" x2="-33.02" y2="-30.48" width="0.254" layer="94"/>
  199. <wire x1="-33.02" y1="-30.48" x2="-33.02" y2="27.94" width="0.254" layer="94"/>
  200. <pin name="NRST" x="-38.1" y="22.86" length="middle" function="dot"/>
  201. <pin name="VDDA" x="-38.1" y="17.78" length="middle" direction="pwr"/>
  202. <pin name="PA0/USART1_CTS/ADC_IN0" x="-38.1" y="15.24" length="middle"/>
  203. <pin name="PA1/USART1_RTS/ADC_IN1" x="-38.1" y="7.62" length="middle"/>
  204. <pin name="PA3/USART1_RX/ADC_IN3" x="-38.1" y="5.08" length="middle"/>
  205. <pin name="PA2/USART1_TX/ADC_IN2" x="-38.1" y="-2.54" length="middle"/>
  206. <pin name="PA10" x="40.64" y="25.4" length="middle" rot="R180"/>
  207. <pin name="PA13/SWDIO" x="40.64" y="22.86" length="middle" rot="R180"/>
  208. <pin name="PA14/SWD_CLK" x="40.64" y="20.32" length="middle" rot="R180"/>
  209. <pin name="BOOT0" x="40.64" y="17.78" length="middle" rot="R180"/>
  210. <pin name="PF0-OSC_IN" x="40.64" y="15.24" length="middle" function="clk" rot="R180"/>
  211. <pin name="PF1-OSC_OUT" x="40.64" y="12.7" length="middle" function="clk" rot="R180"/>
  212. <pin name="PA4/SPI1_NSS/ADC_IN4" x="40.64" y="5.08" length="middle" rot="R180"/>
  213. <pin name="PA6/SPI_MISO/ADC_IN6" x="40.64" y="-2.54" length="middle" rot="R180"/>
  214. <pin name="PA5/SPI1_SCK/ADC_IN5" x="40.64" y="-5.08" length="middle" rot="R180"/>
  215. <pin name="PA7/SPI_MOSI/ADC_IN7" x="40.64" y="-15.24" length="middle" rot="R180"/>
  216. <pin name="PB0/ADC_IN8" x="40.64" y="-17.78" length="middle" rot="R180"/>
  217. <pin name="VSS" x="40.64" y="-20.32" length="middle" direction="pwr" rot="R180"/>
  218. <pin name="VDD" x="40.64" y="-22.86" length="middle" direction="pwr" rot="R180"/>
  219. <pin name="PA9" x="40.64" y="-25.4" length="middle" rot="R180"/>
  220. <text x="-33.02" y="27.94" size="1.27" layer="96">&gt;VALUE</text>
  221. <text x="-33.02" y="30.48" size="1.27" layer="95">&gt;NAME</text>
  222. </symbol>
  223. </symbols>
  224. <devicesets>
  225. <deviceset name="STM8S103F*" prefix="IC">
  226. <description>STM8S103F*</description>
  227. <gates>
  228. <gate name="G$1" symbol="STM8S103F" x="0" y="0"/>
  229. </gates>
  230. <devices>
  231. <device name="P" package="TSSOP20">
  232. <connects>
  233. <connect gate="G$1" pin="BOOT0" pad="1"/>
  234. <connect gate="G$1" pin="NRST" pad="4"/>
  235. <connect gate="G$1" pin="PA0/USART1_CTS/ADC_IN0" pad="6"/>
  236. <connect gate="G$1" pin="PA1/USART1_RTS/ADC_IN1" pad="7"/>
  237. <connect gate="G$1" pin="PA10" pad="18"/>
  238. <connect gate="G$1" pin="PA13/SWDIO" pad="19"/>
  239. <connect gate="G$1" pin="PA14/SWD_CLK" pad="20"/>
  240. <connect gate="G$1" pin="PA2/USART1_TX/ADC_IN2" pad="8"/>
  241. <connect gate="G$1" pin="PA3/USART1_RX/ADC_IN3" pad="9"/>
  242. <connect gate="G$1" pin="PA4/SPI1_NSS/ADC_IN4" pad="10"/>
  243. <connect gate="G$1" pin="PA5/SPI1_SCK/ADC_IN5" pad="11"/>
  244. <connect gate="G$1" pin="PA6/SPI_MISO/ADC_IN6" pad="12"/>
  245. <connect gate="G$1" pin="PA7/SPI_MOSI/ADC_IN7" pad="13"/>
  246. <connect gate="G$1" pin="PA9" pad="17"/>
  247. <connect gate="G$1" pin="PB0/ADC_IN8" pad="14"/>
  248. <connect gate="G$1" pin="PF0-OSC_IN" pad="2"/>
  249. <connect gate="G$1" pin="PF1-OSC_OUT" pad="3"/>
  250. <connect gate="G$1" pin="VDD" pad="16"/>
  251. <connect gate="G$1" pin="VDDA" pad="5"/>
  252. <connect gate="G$1" pin="VSS" pad="15"/>
  253. </connects>
  254. <technologies>
  255. <technology name=""/>
  256. </technologies>
  257. </device>
  258. <device name="M" package="SO20W">
  259. <connects>
  260. <connect gate="G$1" pin="BOOT0" pad="1"/>
  261. <connect gate="G$1" pin="NRST" pad="4"/>
  262. <connect gate="G$1" pin="PA0/USART1_CTS/ADC_IN0" pad="6"/>
  263. <connect gate="G$1" pin="PA1/USART1_RTS/ADC_IN1" pad="7"/>
  264. <connect gate="G$1" pin="PA10" pad="18"/>
  265. <connect gate="G$1" pin="PA13/SWDIO" pad="19"/>
  266. <connect gate="G$1" pin="PA14/SWD_CLK" pad="20"/>
  267. <connect gate="G$1" pin="PA2/USART1_TX/ADC_IN2" pad="8"/>
  268. <connect gate="G$1" pin="PA3/USART1_RX/ADC_IN3" pad="9"/>
  269. <connect gate="G$1" pin="PA4/SPI1_NSS/ADC_IN4" pad="10"/>
  270. <connect gate="G$1" pin="PA5/SPI1_SCK/ADC_IN5" pad="11"/>
  271. <connect gate="G$1" pin="PA6/SPI_MISO/ADC_IN6" pad="12"/>
  272. <connect gate="G$1" pin="PA7/SPI_MOSI/ADC_IN7" pad="13"/>
  273. <connect gate="G$1" pin="PA9" pad="17"/>
  274. <connect gate="G$1" pin="PB0/ADC_IN8" pad="14"/>
  275. <connect gate="G$1" pin="PF0-OSC_IN" pad="2"/>
  276. <connect gate="G$1" pin="PF1-OSC_OUT" pad="3"/>
  277. <connect gate="G$1" pin="VDD" pad="16"/>
  278. <connect gate="G$1" pin="VDDA" pad="5"/>
  279. <connect gate="G$1" pin="VSS" pad="15"/>
  280. </connects>
  281. <technologies>
  282. <technology name=""/>
  283. </technologies>
  284. </device>
  285. </devices>
  286. </deviceset>
  287. </devicesets>
  288. </library>
  289. <library name="mc33269dt">
  290. <packages>
  291. <package name="MC33269DT">
  292. <wire x1="-3.21" y1="-3.11" x2="3.39" y2="-3.11" width="0.127" layer="20"/>
  293. <wire x1="3.39" y1="-3.11" x2="3.39" y2="3.09" width="0.127" layer="20"/>
  294. <wire x1="3.39" y1="3.09" x2="2.39" y2="3.09" width="0.127" layer="20"/>
  295. <wire x1="2.39" y1="3.09" x2="-2.21" y2="3.09" width="0.127" layer="20"/>
  296. <wire x1="-2.21" y1="3.09" x2="-3.21" y2="3.09" width="0.127" layer="20"/>
  297. <wire x1="-3.21" y1="3.09" x2="-3.21" y2="-3.11" width="0.127" layer="20"/>
  298. <wire x1="-2.21" y1="3.09" x2="-2.21" y2="3.69" width="0.127" layer="20"/>
  299. <wire x1="-2.21" y1="3.69" x2="-1.81" y2="4.09" width="0.127" layer="20"/>
  300. <wire x1="-1.81" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  301. <wire x1="-1.41" y1="4.09" x2="-1.37" y2="4.09" width="0.127" layer="20"/>
  302. <wire x1="2.39" y1="3.09" x2="2.39" y2="3.69" width="0.127" layer="20"/>
  303. <wire x1="2.39" y1="3.69" x2="1.99" y2="4.09" width="0.127" layer="20"/>
  304. <wire x1="1.99" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  305. <smd name="P1" x="-2.2" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  306. <smd name="P3" x="2.38" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  307. <smd name="P2" x="0.09" y="-3.59" dx="0.8" dy="1" layer="1" rot="R90"/>
  308. <text x="-2.19" y="1.86" size="0.6096" layer="25">MC33269DT</text>
  309. </package>
  310. </packages>
  311. <symbols>
  312. <symbol name="MC33269DT">
  313. <wire x1="-7.62" y1="7.62" x2="-7.62" y2="-2.54" width="0.254" layer="94"/>
  314. <wire x1="-7.62" y1="-2.54" x2="7.62" y2="-2.54" width="0.254" layer="94"/>
  315. <wire x1="7.62" y1="-2.54" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  316. <wire x1="7.62" y1="7.62" x2="-7.62" y2="7.62" width="0.254" layer="94"/>
  317. <text x="-5.08" y="10.16" size="1.27" layer="95">MC33269DT</text>
  318. <text x="-5.08" y="5.08" size="1.27" layer="95">Vin</text>
  319. <text x="2.54" y="5.08" size="1.27" layer="95">Vout</text>
  320. <text x="-2.54" y="0" size="1.27" layer="95">GND</text>
  321. <pin name="VIN" x="-12.7" y="5.08" visible="pad" length="middle" direction="in" swaplevel="3"/>
  322. <pin name="VOUT" x="12.7" y="5.08" visible="pad" length="middle" direction="out" swaplevel="3" rot="R180"/>
  323. <pin name="GND" x="0" y="-7.62" visible="pad" length="middle" direction="pwr" swaplevel="3" rot="R90"/>
  324. </symbol>
  325. </symbols>
  326. <devicesets>
  327. <deviceset name="MC33269DT">
  328. <gates>
  329. <gate name="G$1" symbol="MC33269DT" x="0" y="-2.54" swaplevel="3"/>
  330. </gates>
  331. <devices>
  332. <device name="" package="MC33269DT">
  333. <connects>
  334. <connect gate="G$1" pin="GND" pad="P1"/>
  335. <connect gate="G$1" pin="VIN" pad="P3"/>
  336. <connect gate="G$1" pin="VOUT" pad="P2"/>
  337. </connects>
  338. <technologies>
  339. <technology name=""/>
  340. </technologies>
  341. </device>
  342. </devices>
  343. </deviceset>
  344. </devicesets>
  345. </library>
  346. <library name="optocoupler">
  347. <description>&lt;b&gt;Opto Couplers&lt;/b&gt;&lt;p&gt;
  348. Siemens, Hewlett-Packard, Texas Instuments, Sharp, Motorola&lt;p&gt;
  349. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  350. <packages>
  351. <package name="DIL16">
  352. <description>&lt;b&gt;Dual In Line Package&lt;/b&gt;</description>
  353. <wire x1="10.16" y1="2.921" x2="-10.16" y2="2.921" width="0.1524" layer="21"/>
  354. <wire x1="-10.16" y1="-2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  355. <wire x1="10.16" y1="2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  356. <wire x1="-10.16" y1="2.921" x2="-10.16" y2="1.016" width="0.1524" layer="21"/>
  357. <wire x1="-10.16" y1="-2.921" x2="-10.16" y2="-1.016" width="0.1524" layer="21"/>
  358. <wire x1="-10.16" y1="1.016" x2="-10.16" y2="-1.016" width="0.1524" layer="21" curve="-180"/>
  359. <pad name="1" x="-8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  360. <pad name="2" x="-6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  361. <pad name="7" x="6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  362. <pad name="8" x="8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  363. <pad name="3" x="-3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  364. <pad name="4" x="-1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  365. <pad name="6" x="3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  366. <pad name="5" x="1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  367. <pad name="9" x="8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  368. <pad name="10" x="6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  369. <pad name="11" x="3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  370. <pad name="12" x="1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  371. <pad name="13" x="-1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  372. <pad name="14" x="-3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  373. <pad name="15" x="-6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  374. <pad name="16" x="-8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  375. <text x="-10.541" y="-2.921" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  376. <text x="-7.493" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  377. </package>
  378. </packages>
  379. <symbols>
  380. <symbol name="LTV847">
  381. <description>LTV847 4-opto DIP16</description>
  382. <wire x1="2.54" y1="0" x2="17.78" y2="0" width="0.254" layer="94"/>
  383. <wire x1="17.78" y1="0" x2="17.78" y2="40.64" width="0.254" layer="94"/>
  384. <wire x1="17.78" y1="40.64" x2="2.54" y2="40.64" width="0.254" layer="94"/>
  385. <wire x1="2.54" y1="40.64" x2="2.54" y2="0" width="0.254" layer="94"/>
  386. <pin name="P$1" x="-2.54" y="2.54" length="middle" direction="pas"/>
  387. <pin name="P$2" x="-2.54" y="7.62" length="middle" direction="pas"/>
  388. <pin name="P$3" x="-2.54" y="12.7" length="middle" direction="pas"/>
  389. <pin name="P$4" x="-2.54" y="17.78" length="middle" direction="pas"/>
  390. <pin name="P$5" x="-2.54" y="22.86" length="middle" direction="pas"/>
  391. <pin name="P$6" x="-2.54" y="27.94" length="middle" direction="pas"/>
  392. <pin name="P$7" x="-2.54" y="33.02" length="middle" direction="pas"/>
  393. <pin name="P$8" x="-2.54" y="38.1" length="middle" direction="pas"/>
  394. <pin name="P$9" x="22.86" y="2.54" length="middle" direction="pas" rot="R180"/>
  395. <pin name="P$10" x="22.86" y="7.62" length="middle" direction="pas" rot="R180"/>
  396. <pin name="P$11" x="22.86" y="12.7" length="middle" direction="pas" rot="R180"/>
  397. <pin name="P$12" x="22.86" y="17.78" length="middle" direction="pas" rot="R180"/>
  398. <pin name="P$13" x="22.86" y="22.86" length="middle" direction="pas" rot="R180"/>
  399. <pin name="P$14" x="22.86" y="27.94" length="middle" direction="pas" rot="R180"/>
  400. <pin name="P$15" x="22.86" y="33.02" length="middle" direction="pas" rot="R180"/>
  401. <pin name="P$16" x="22.86" y="38.1" length="middle" direction="pas" rot="R180"/>
  402. <wire x1="6.35" y1="35.56" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  403. <wire x1="7.62" y1="35.56" x2="8.89" y2="35.56" width="0.254" layer="94"/>
  404. <wire x1="7.62" y1="35.56" x2="6.35" y2="36.83" width="0.254" layer="94"/>
  405. <wire x1="6.35" y1="36.83" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  406. <wire x1="7.62" y1="36.83" x2="8.89" y2="36.83" width="0.254" layer="94"/>
  407. <wire x1="8.89" y1="36.83" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  408. <wire x1="3.81" y1="38.1" x2="7.62" y2="38.1" width="0.254" layer="94"/>
  409. <wire x1="7.62" y1="38.1" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  410. <wire x1="7.62" y1="35.56" x2="7.62" y2="33.02" width="0.254" layer="94"/>
  411. <wire x1="7.62" y1="33.02" x2="3.81" y2="33.02" width="0.254" layer="94"/>
  412. <wire x1="6.35" y1="25.4" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  413. <wire x1="7.62" y1="25.4" x2="8.89" y2="25.4" width="0.254" layer="94"/>
  414. <wire x1="7.62" y1="25.4" x2="6.35" y2="26.67" width="0.254" layer="94"/>
  415. <wire x1="6.35" y1="26.67" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  416. <wire x1="7.62" y1="26.67" x2="8.89" y2="26.67" width="0.254" layer="94"/>
  417. <wire x1="8.89" y1="26.67" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  418. <wire x1="3.81" y1="27.94" x2="7.62" y2="27.94" width="0.254" layer="94"/>
  419. <wire x1="7.62" y1="27.94" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  420. <wire x1="7.62" y1="25.4" x2="7.62" y2="22.86" width="0.254" layer="94"/>
  421. <wire x1="7.62" y1="22.86" x2="3.81" y2="22.86" width="0.254" layer="94"/>
  422. <wire x1="6.35" y1="15.24" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  423. <wire x1="7.62" y1="15.24" x2="8.89" y2="15.24" width="0.254" layer="94"/>
  424. <wire x1="7.62" y1="15.24" x2="6.35" y2="16.51" width="0.254" layer="94"/>
  425. <wire x1="6.35" y1="16.51" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  426. <wire x1="7.62" y1="16.51" x2="8.89" y2="16.51" width="0.254" layer="94"/>
  427. <wire x1="8.89" y1="16.51" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  428. <wire x1="3.81" y1="17.78" x2="7.62" y2="17.78" width="0.254" layer="94"/>
  429. <wire x1="7.62" y1="17.78" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  430. <wire x1="7.62" y1="15.24" x2="7.62" y2="12.7" width="0.254" layer="94"/>
  431. <wire x1="7.62" y1="12.7" x2="3.81" y2="12.7" width="0.254" layer="94"/>
  432. <wire x1="6.35" y1="5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  433. <wire x1="7.62" y1="5.08" x2="8.89" y2="5.08" width="0.254" layer="94"/>
  434. <wire x1="7.62" y1="5.08" x2="6.35" y2="6.35" width="0.254" layer="94"/>
  435. <wire x1="6.35" y1="6.35" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  436. <wire x1="7.62" y1="6.35" x2="8.89" y2="6.35" width="0.254" layer="94"/>
  437. <wire x1="8.89" y1="6.35" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  438. <wire x1="3.81" y1="7.62" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  439. <wire x1="7.62" y1="7.62" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  440. <wire x1="7.62" y1="5.08" x2="7.62" y2="2.54" width="0.254" layer="94"/>
  441. <wire x1="7.62" y1="2.54" x2="3.81" y2="2.54" width="0.254" layer="94"/>
  442. <wire x1="11.43" y1="36.83" x2="11.43" y2="35.56" width="0.254" layer="94"/>
  443. <wire x1="11.43" y1="35.56" x2="11.43" y2="34.29" width="0.254" layer="94"/>
  444. <wire x1="11.43" y1="35.56" x2="13.97" y2="38.1" width="0.254" layer="94"/>
  445. <wire x1="11.43" y1="35.56" x2="13.97" y2="33.02" width="0.254" layer="94"/>
  446. <wire x1="13.97" y1="33.02" x2="13.97" y2="34.29" width="0.254" layer="94"/>
  447. <wire x1="13.97" y1="33.02" x2="12.7" y2="33.02" width="0.254" layer="94"/>
  448. <wire x1="13.97" y1="38.1" x2="16.51" y2="38.1" width="0.254" layer="94"/>
  449. <wire x1="13.97" y1="33.02" x2="16.51" y2="33.02" width="0.254" layer="94"/>
  450. <wire x1="11.43" y1="26.67" x2="11.43" y2="25.4" width="0.254" layer="94"/>
  451. <wire x1="11.43" y1="25.4" x2="11.43" y2="24.13" width="0.254" layer="94"/>
  452. <wire x1="11.43" y1="25.4" x2="13.97" y2="27.94" width="0.254" layer="94"/>
  453. <wire x1="11.43" y1="25.4" x2="13.97" y2="22.86" width="0.254" layer="94"/>
  454. <wire x1="13.97" y1="22.86" x2="13.97" y2="24.13" width="0.254" layer="94"/>
  455. <wire x1="13.97" y1="22.86" x2="12.7" y2="22.86" width="0.254" layer="94"/>
  456. <wire x1="13.97" y1="27.94" x2="16.51" y2="27.94" width="0.254" layer="94"/>
  457. <wire x1="13.97" y1="22.86" x2="16.51" y2="22.86" width="0.254" layer="94"/>
  458. <wire x1="11.43" y1="16.51" x2="11.43" y2="15.24" width="0.254" layer="94"/>
  459. <wire x1="11.43" y1="15.24" x2="11.43" y2="13.97" width="0.254" layer="94"/>
  460. <wire x1="11.43" y1="15.24" x2="13.97" y2="17.78" width="0.254" layer="94"/>
  461. <wire x1="11.43" y1="15.24" x2="13.97" y2="12.7" width="0.254" layer="94"/>
  462. <wire x1="13.97" y1="12.7" x2="13.97" y2="13.97" width="0.254" layer="94"/>
  463. <wire x1="13.97" y1="12.7" x2="12.7" y2="12.7" width="0.254" layer="94"/>
  464. <wire x1="13.97" y1="17.78" x2="16.51" y2="17.78" width="0.254" layer="94"/>
  465. <wire x1="13.97" y1="12.7" x2="16.51" y2="12.7" width="0.254" layer="94"/>
  466. <wire x1="11.43" y1="6.35" x2="11.43" y2="5.08" width="0.254" layer="94"/>
  467. <wire x1="11.43" y1="5.08" x2="11.43" y2="3.81" width="0.254" layer="94"/>
  468. <wire x1="11.43" y1="5.08" x2="13.97" y2="7.62" width="0.254" layer="94"/>
  469. <wire x1="11.43" y1="5.08" x2="13.97" y2="2.54" width="0.254" layer="94"/>
  470. <wire x1="13.97" y1="2.54" x2="13.97" y2="3.81" width="0.254" layer="94"/>
  471. <wire x1="13.97" y1="2.54" x2="12.7" y2="2.54" width="0.254" layer="94"/>
  472. <wire x1="13.97" y1="7.62" x2="16.51" y2="7.62" width="0.254" layer="94"/>
  473. <wire x1="13.97" y1="2.54" x2="16.51" y2="2.54" width="0.254" layer="94"/>
  474. </symbol>
  475. </symbols>
  476. <devicesets>
  477. <deviceset name="LTV847">
  478. <description>LTV847 4-optocoupler DIP16</description>
  479. <gates>
  480. <gate name="G$1" symbol="LTV847" x="-10.16" y="-20.32"/>
  481. </gates>
  482. <devices>
  483. <device name="" package="DIL16">
  484. <connects>
  485. <connect gate="G$1" pin="P$1" pad="8"/>
  486. <connect gate="G$1" pin="P$10" pad="10"/>
  487. <connect gate="G$1" pin="P$11" pad="11"/>
  488. <connect gate="G$1" pin="P$12" pad="12"/>
  489. <connect gate="G$1" pin="P$13" pad="13"/>
  490. <connect gate="G$1" pin="P$14" pad="14"/>
  491. <connect gate="G$1" pin="P$15" pad="15"/>
  492. <connect gate="G$1" pin="P$16" pad="16"/>
  493. <connect gate="G$1" pin="P$2" pad="7"/>
  494. <connect gate="G$1" pin="P$3" pad="6"/>
  495. <connect gate="G$1" pin="P$4" pad="5"/>
  496. <connect gate="G$1" pin="P$5" pad="4"/>
  497. <connect gate="G$1" pin="P$6" pad="3"/>
  498. <connect gate="G$1" pin="P$7" pad="2"/>
  499. <connect gate="G$1" pin="P$8" pad="1"/>
  500. <connect gate="G$1" pin="P$9" pad="9"/>
  501. </connects>
  502. <technologies>
  503. <technology name=""/>
  504. </technologies>
  505. </device>
  506. </devices>
  507. </deviceset>
  508. </devicesets>
  509. </library>
  510. <library name="resistor">
  511. <description>&lt;b&gt;Resistors, Capacitors, Inductors&lt;/b&gt;&lt;p&gt;
  512. Based on the previous libraries:
  513. &lt;ul&gt;
  514. &lt;li&gt;r.lbr
  515. &lt;li&gt;cap.lbr
  516. &lt;li&gt;cap-fe.lbr
  517. &lt;li&gt;captant.lbr
  518. &lt;li&gt;polcap.lbr
  519. &lt;li&gt;ipc-smd.lbr
  520. &lt;/ul&gt;
  521. All SMD packages are defined according to the IPC specifications and CECC&lt;p&gt;
  522. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;p&gt;
  523. &lt;p&gt;
  524. for Electrolyt Capacitors see also :&lt;p&gt;
  525. www.bccomponents.com &lt;p&gt;
  526. www.panasonic.com&lt;p&gt;
  527. www.kemet.com&lt;p&gt;
  528. &lt;p&gt;
  529. for trimmer refence see : &lt;u&gt;www.electrospec-inc.com/cross_references/trimpotcrossref.asp&lt;/u&gt;&lt;p&gt;
  530. &lt;map name="nav_main"&gt;
  531. &lt;area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title=""&gt;
  532. &lt;area shape="rect" coords="0,24,140,51" href="../about.asp" title=""&gt;
  533. &lt;area shape="rect" coords="1,52,140,77" href="../rfq.asp" title=""&gt;
  534. &lt;area shape="rect" coords="0,78,139,103" href="../products.asp" title=""&gt;
  535. &lt;area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title=""&gt;
  536. &lt;area shape="rect" coords="1,129,138,150" href="../edge.asp" title=""&gt;
  537. &lt;area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title=""&gt;
  538. &lt;area shape="rect" coords="0,179,139,201" href="../comments.asp" title=""&gt;
  539. &lt;area shape="rect" coords="1,203,138,231" href="../directory.asp" title=""&gt;
  540. &lt;area shape="default" nohref&gt;
  541. &lt;/map&gt;
  542. &lt;html&gt;
  543. &lt;title&gt;&lt;/title&gt;
  544. &lt;LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css"&gt;
  545. &lt;body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"&gt;
  546. &lt;table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%"&gt;
  547. &lt;tr valign="top"&gt;
  548. &lt;/td&gt;
  549. &lt;! &lt;td width="10"&gt;&amp;nbsp;&lt;/td&gt;
  550. &lt;td width="90%"&gt;
  551. &lt;b&gt;&lt;font color="#0000FF" size="4"&gt;TRIM-POT CROSS REFERENCE&lt;/font&gt;&lt;/b&gt;
  552. &lt;P&gt;
  553. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2&gt;
  554. &lt;TR&gt;
  555. &lt;TD COLSPAN=8&gt;
  556. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;RECTANGULAR MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  557. &lt;/TD&gt;
  558. &lt;/TR&gt;
  559. &lt;TR&gt;
  560. &lt;TD ALIGN=CENTER&gt;
  561. &lt;B&gt;
  562. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BOURNS&lt;/FONT&gt;
  563. &lt;/B&gt;
  564. &lt;/TD&gt;
  565. &lt;TD ALIGN=CENTER&gt;
  566. &lt;B&gt;
  567. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BI&amp;nbsp;TECH&lt;/FONT&gt;
  568. &lt;/B&gt;
  569. &lt;/TD&gt;
  570. &lt;TD ALIGN=CENTER&gt;
  571. &lt;B&gt;
  572. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;DALE-VISHAY&lt;/FONT&gt;
  573. &lt;/B&gt;
  574. &lt;/TD&gt;
  575. &lt;TD ALIGN=CENTER&gt;
  576. &lt;B&gt;
  577. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PHILIPS/MEPCO&lt;/FONT&gt;
  578. &lt;/B&gt;
  579. &lt;/TD&gt;
  580. &lt;TD ALIGN=CENTER&gt;
  581. &lt;B&gt;
  582. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MURATA&lt;/FONT&gt;
  583. &lt;/B&gt;
  584. &lt;/TD&gt;
  585. &lt;TD ALIGN=CENTER&gt;
  586. &lt;B&gt;
  587. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PANASONIC&lt;/FONT&gt;
  588. &lt;/B&gt;
  589. &lt;/TD&gt;
  590. &lt;TD ALIGN=CENTER&gt;
  591. &lt;B&gt;
  592. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;SPECTROL&lt;/FONT&gt;
  593. &lt;/B&gt;
  594. &lt;/TD&gt;
  595. &lt;TD ALIGN=CENTER&gt;
  596. &lt;B&gt;
  597. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MILSPEC&lt;/FONT&gt;
  598. &lt;/B&gt;
  599. &lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
  600. &lt;/TR&gt;
  601. &lt;TR&gt;
  602. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3 &gt;
  603. 3005P&lt;BR&gt;
  604. 3006P&lt;BR&gt;
  605. 3006W&lt;BR&gt;
  606. 3006Y&lt;BR&gt;
  607. 3009P&lt;BR&gt;
  608. 3009W&lt;BR&gt;
  609. 3009Y&lt;BR&gt;
  610. 3057J&lt;BR&gt;
  611. 3057L&lt;BR&gt;
  612. 3057P&lt;BR&gt;
  613. 3057Y&lt;BR&gt;
  614. 3059J&lt;BR&gt;
  615. 3059L&lt;BR&gt;
  616. 3059P&lt;BR&gt;
  617. 3059Y&lt;BR&gt;&lt;/FONT&gt;
  618. &lt;/TD&gt;
  619. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  620. -&lt;BR&gt;
  621. 89P&lt;BR&gt;
  622. 89W&lt;BR&gt;
  623. 89X&lt;BR&gt;
  624. 89PH&lt;BR&gt;
  625. 76P&lt;BR&gt;
  626. 89XH&lt;BR&gt;
  627. 78SLT&lt;BR&gt;
  628. 78L&amp;nbsp;ALT&lt;BR&gt;
  629. 56P&amp;nbsp;ALT&lt;BR&gt;
  630. 78P&amp;nbsp;ALT&lt;BR&gt;
  631. T8S&lt;BR&gt;
  632. 78L&lt;BR&gt;
  633. 56P&lt;BR&gt;
  634. 78P&lt;BR&gt;&lt;/FONT&gt;
  635. &lt;/TD&gt;
  636. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  637. -&lt;BR&gt;
  638. T18/784&lt;BR&gt;
  639. 783&lt;BR&gt;
  640. 781&lt;BR&gt;
  641. -&lt;BR&gt;
  642. -&lt;BR&gt;
  643. -&lt;BR&gt;
  644. 2199&lt;BR&gt;
  645. 1697/1897&lt;BR&gt;
  646. 1680/1880&lt;BR&gt;
  647. 2187&lt;BR&gt;
  648. -&lt;BR&gt;
  649. -&lt;BR&gt;
  650. -&lt;BR&gt;
  651. -&lt;BR&gt;&lt;/FONT&gt;
  652. &lt;/TD&gt;
  653. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  654. -&lt;BR&gt;
  655. 8035EKP/CT20/RJ-20P&lt;BR&gt;
  656. -&lt;BR&gt;
  657. RJ-20X&lt;BR&gt;
  658. -&lt;BR&gt;
  659. -&lt;BR&gt;
  660. -&lt;BR&gt;
  661. 1211L&lt;BR&gt;
  662. 8012EKQ&amp;nbsp;ALT&lt;BR&gt;
  663. 8012EKR&amp;nbsp;ALT&lt;BR&gt;
  664. 1211P&lt;BR&gt;
  665. 8012EKJ&lt;BR&gt;
  666. 8012EKL&lt;BR&gt;
  667. 8012EKQ&lt;BR&gt;
  668. 8012EKR&lt;BR&gt;&lt;/FONT&gt;
  669. &lt;/TD&gt;
  670. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  671. -&lt;BR&gt;
  672. 2101P&lt;BR&gt;
  673. 2101W&lt;BR&gt;
  674. 2101Y&lt;BR&gt;
  675. -&lt;BR&gt;
  676. -&lt;BR&gt;
  677. -&lt;BR&gt;
  678. -&lt;BR&gt;
  679. -&lt;BR&gt;
  680. -&lt;BR&gt;
  681. -&lt;BR&gt;
  682. -&lt;BR&gt;
  683. 2102L&lt;BR&gt;
  684. 2102S&lt;BR&gt;
  685. 2102Y&lt;BR&gt;&lt;/FONT&gt;
  686. &lt;/TD&gt;
  687. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  688. -&lt;BR&gt;
  689. EVMCOG&lt;BR&gt;
  690. -&lt;BR&gt;
  691. -&lt;BR&gt;
  692. -&lt;BR&gt;
  693. -&lt;BR&gt;
  694. -&lt;BR&gt;
  695. -&lt;BR&gt;
  696. -&lt;BR&gt;
  697. -&lt;BR&gt;
  698. -&lt;BR&gt;
  699. -&lt;BR&gt;
  700. -&lt;BR&gt;
  701. -&lt;BR&gt;
  702. -&lt;BR&gt;&lt;/FONT&gt;
  703. &lt;/TD&gt;
  704. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  705. -&lt;BR&gt;
  706. 43P&lt;BR&gt;
  707. 43W&lt;BR&gt;
  708. 43Y&lt;BR&gt;
  709. -&lt;BR&gt;
  710. -&lt;BR&gt;
  711. -&lt;BR&gt;
  712. -&lt;BR&gt;
  713. 40L&lt;BR&gt;
  714. 40P&lt;BR&gt;
  715. 40Y&lt;BR&gt;
  716. 70Y-T602&lt;BR&gt;
  717. 70L&lt;BR&gt;
  718. 70P&lt;BR&gt;
  719. 70Y&lt;BR&gt;&lt;/FONT&gt;
  720. &lt;/TD&gt;
  721. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  722. -&lt;BR&gt;
  723. -&lt;BR&gt;
  724. -&lt;BR&gt;
  725. -&lt;BR&gt;
  726. -&lt;BR&gt;
  727. -&lt;BR&gt;
  728. -&lt;BR&gt;
  729. -&lt;BR&gt;
  730. RT/RTR12&lt;BR&gt;
  731. RT/RTR12&lt;BR&gt;
  732. RT/RTR12&lt;BR&gt;
  733. -&lt;BR&gt;
  734. RJ/RJR12&lt;BR&gt;
  735. RJ/RJR12&lt;BR&gt;
  736. RJ/RJR12&lt;BR&gt;&lt;/FONT&gt;
  737. &lt;/TD&gt;
  738. &lt;/TR&gt;
  739. &lt;TR&gt;
  740. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  741. &lt;/TD&gt;
  742. &lt;/TR&gt;
  743. &lt;TR&gt;
  744. &lt;TD COLSPAN=8&gt;
  745. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SQUARE MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  746. &lt;/TD&gt;
  747. &lt;/TR&gt;
  748. &lt;TR&gt;
  749. &lt;TD ALIGN=CENTER&gt;
  750. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  751. &lt;/TD&gt;
  752. &lt;TD ALIGN=CENTER&gt;
  753. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  754. &lt;/TD&gt;
  755. &lt;TD ALIGN=CENTER&gt;
  756. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  757. &lt;/TD&gt;
  758. &lt;TD ALIGN=CENTER&gt;
  759. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  760. &lt;/TD&gt;
  761. &lt;TD ALIGN=CENTER&gt;
  762. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  763. &lt;/TD&gt;
  764. &lt;TD ALIGN=CENTER&gt;
  765. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  766. &lt;/TD&gt;
  767. &lt;TD ALIGN=CENTER&gt;
  768. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  769. &lt;/TD&gt;
  770. &lt;TD ALIGN=CENTER&gt;
  771. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  772. &lt;/TD&gt;
  773. &lt;/TR&gt;
  774. &lt;TR&gt;
  775. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  776. 3250L&lt;BR&gt;
  777. 3250P&lt;BR&gt;
  778. 3250W&lt;BR&gt;
  779. 3250X&lt;BR&gt;
  780. 3252P&lt;BR&gt;
  781. 3252W&lt;BR&gt;
  782. 3252X&lt;BR&gt;
  783. 3260P&lt;BR&gt;
  784. 3260W&lt;BR&gt;
  785. 3260X&lt;BR&gt;
  786. 3262P&lt;BR&gt;
  787. 3262W&lt;BR&gt;
  788. 3262X&lt;BR&gt;
  789. 3266P&lt;BR&gt;
  790. 3266W&lt;BR&gt;
  791. 3266X&lt;BR&gt;
  792. 3290H&lt;BR&gt;
  793. 3290P&lt;BR&gt;
  794. 3290W&lt;BR&gt;
  795. 3292P&lt;BR&gt;
  796. 3292W&lt;BR&gt;
  797. 3292X&lt;BR&gt;
  798. 3296P&lt;BR&gt;
  799. 3296W&lt;BR&gt;
  800. 3296X&lt;BR&gt;
  801. 3296Y&lt;BR&gt;
  802. 3296Z&lt;BR&gt;
  803. 3299P&lt;BR&gt;
  804. 3299W&lt;BR&gt;
  805. 3299X&lt;BR&gt;
  806. 3299Y&lt;BR&gt;
  807. 3299Z&lt;BR&gt;&lt;/FONT&gt;
  808. &lt;/TD&gt;
  809. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  810. -&lt;BR&gt;
  811. 66P&amp;nbsp;ALT&lt;BR&gt;
  812. 66W&amp;nbsp;ALT&lt;BR&gt;
  813. 66X&amp;nbsp;ALT&lt;BR&gt;
  814. 66P&amp;nbsp;ALT&lt;BR&gt;
  815. 66W&amp;nbsp;ALT&lt;BR&gt;
  816. 66X&amp;nbsp;ALT&lt;BR&gt;
  817. -&lt;BR&gt;
  818. 64W&amp;nbsp;ALT&lt;BR&gt;
  819. -&lt;BR&gt;
  820. 64P&amp;nbsp;ALT&lt;BR&gt;
  821. 64W&amp;nbsp;ALT&lt;BR&gt;
  822. 64X&amp;nbsp;ALT&lt;BR&gt;
  823. 64P&lt;BR&gt;
  824. 64W&lt;BR&gt;
  825. 64X&lt;BR&gt;
  826. 66X&amp;nbsp;ALT&lt;BR&gt;
  827. 66P&amp;nbsp;ALT&lt;BR&gt;
  828. 66W&amp;nbsp;ALT&lt;BR&gt;
  829. 66P&lt;BR&gt;
  830. 66W&lt;BR&gt;
  831. 66X&lt;BR&gt;
  832. 67P&lt;BR&gt;
  833. 67W&lt;BR&gt;
  834. 67X&lt;BR&gt;
  835. 67Y&lt;BR&gt;
  836. 67Z&lt;BR&gt;
  837. 68P&lt;BR&gt;
  838. 68W&lt;BR&gt;
  839. 68X&lt;BR&gt;
  840. 67Y&amp;nbsp;ALT&lt;BR&gt;
  841. 67Z&amp;nbsp;ALT&lt;BR&gt;&lt;/FONT&gt;
  842. &lt;/TD&gt;
  843. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  844. 5050&lt;BR&gt;
  845. 5091&lt;BR&gt;
  846. 5080&lt;BR&gt;
  847. 5087&lt;BR&gt;
  848. -&lt;BR&gt;
  849. -&lt;BR&gt;
  850. -&lt;BR&gt;
  851. -&lt;BR&gt;
  852. -&lt;BR&gt;
  853. -&lt;BR&gt;
  854. -&lt;BR&gt;
  855. T63YB&lt;BR&gt;
  856. T63XB&lt;BR&gt;
  857. -&lt;BR&gt;
  858. -&lt;BR&gt;
  859. -&lt;BR&gt;
  860. 5887&lt;BR&gt;
  861. 5891&lt;BR&gt;
  862. 5880&lt;BR&gt;
  863. -&lt;BR&gt;
  864. -&lt;BR&gt;
  865. -&lt;BR&gt;
  866. T93Z&lt;BR&gt;
  867. T93YA&lt;BR&gt;
  868. T93XA&lt;BR&gt;
  869. T93YB&lt;BR&gt;
  870. T93XB&lt;BR&gt;
  871. -&lt;BR&gt;
  872. -&lt;BR&gt;
  873. -&lt;BR&gt;
  874. -&lt;BR&gt;
  875. -&lt;BR&gt;&lt;/FONT&gt;
  876. &lt;/TD&gt;
  877. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  878. -&lt;BR&gt;
  879. -&lt;BR&gt;
  880. -&lt;BR&gt;
  881. -&lt;BR&gt;
  882. -&lt;BR&gt;
  883. -&lt;BR&gt;
  884. -&lt;BR&gt;
  885. -&lt;BR&gt;
  886. -&lt;BR&gt;
  887. -&lt;BR&gt;
  888. 8026EKP&lt;BR&gt;
  889. 8026EKW&lt;BR&gt;
  890. 8026EKM&lt;BR&gt;
  891. 8026EKP&lt;BR&gt;
  892. 8026EKB&lt;BR&gt;
  893. 8026EKM&lt;BR&gt;
  894. 1309X&lt;BR&gt;
  895. 1309P&lt;BR&gt;
  896. 1309W&lt;BR&gt;
  897. 8024EKP&lt;BR&gt;
  898. 8024EKW&lt;BR&gt;
  899. 8024EKN&lt;BR&gt;
  900. RJ-9P/CT9P&lt;BR&gt;
  901. RJ-9W&lt;BR&gt;
  902. RJ-9X&lt;BR&gt;
  903. -&lt;BR&gt;
  904. -&lt;BR&gt;
  905. -&lt;BR&gt;
  906. -&lt;BR&gt;
  907. -&lt;BR&gt;
  908. -&lt;BR&gt;
  909. -&lt;BR&gt;&lt;/FONT&gt;
  910. &lt;/TD&gt;
  911. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  912. -&lt;BR&gt;
  913. -&lt;BR&gt;
  914. -&lt;BR&gt;
  915. -&lt;BR&gt;
  916. -&lt;BR&gt;
  917. -&lt;BR&gt;
  918. -&lt;BR&gt;
  919. -&lt;BR&gt;
  920. -&lt;BR&gt;
  921. -&lt;BR&gt;
  922. 3103P&lt;BR&gt;
  923. 3103Y&lt;BR&gt;
  924. 3103Z&lt;BR&gt;
  925. 3103P&lt;BR&gt;
  926. 3103Y&lt;BR&gt;
  927. 3103Z&lt;BR&gt;
  928. -&lt;BR&gt;
  929. -&lt;BR&gt;
  930. -&lt;BR&gt;
  931. -&lt;BR&gt;
  932. -&lt;BR&gt;
  933. -&lt;BR&gt;
  934. 3105P/3106P&lt;BR&gt;
  935. 3105W/3106W&lt;BR&gt;
  936. 3105X/3106X&lt;BR&gt;
  937. 3105Y/3106Y&lt;BR&gt;
  938. 3105Z/3105Z&lt;BR&gt;
  939. 3102P&lt;BR&gt;
  940. 3102W&lt;BR&gt;
  941. 3102X&lt;BR&gt;
  942. 3102Y&lt;BR&gt;
  943. 3102Z&lt;BR&gt;&lt;/FONT&gt;
  944. &lt;/TD&gt;
  945. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  946. -&lt;BR&gt;
  947. -&lt;BR&gt;
  948. -&lt;BR&gt;
  949. -&lt;BR&gt;
  950. -&lt;BR&gt;
  951. -&lt;BR&gt;
  952. -&lt;BR&gt;
  953. -&lt;BR&gt;
  954. -&lt;BR&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. -&lt;BR&gt;
  966. -&lt;BR&gt;
  967. -&lt;BR&gt;
  968. EVMCBG&lt;BR&gt;
  969. EVMCCG&lt;BR&gt;
  970. -&lt;BR&gt;
  971. -&lt;BR&gt;
  972. -&lt;BR&gt;
  973. -&lt;BR&gt;
  974. -&lt;BR&gt;
  975. -&lt;BR&gt;
  976. -&lt;BR&gt;
  977. -&lt;BR&gt;&lt;/FONT&gt;
  978. &lt;/TD&gt;
  979. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  980. 55-1-X&lt;BR&gt;
  981. 55-4-X&lt;BR&gt;
  982. 55-3-X&lt;BR&gt;
  983. 55-2-X&lt;BR&gt;
  984. -&lt;BR&gt;
  985. -&lt;BR&gt;
  986. -&lt;BR&gt;
  987. -&lt;BR&gt;
  988. -&lt;BR&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. 50-2-X&lt;BR&gt;
  997. 50-4-X&lt;BR&gt;
  998. 50-3-X&lt;BR&gt;
  999. -&lt;BR&gt;
  1000. -&lt;BR&gt;
  1001. -&lt;BR&gt;
  1002. 64P&lt;BR&gt;
  1003. 64W&lt;BR&gt;
  1004. 64X&lt;BR&gt;
  1005. 64Y&lt;BR&gt;
  1006. 64Z&lt;BR&gt;
  1007. -&lt;BR&gt;
  1008. -&lt;BR&gt;
  1009. -&lt;BR&gt;
  1010. -&lt;BR&gt;
  1011. -&lt;BR&gt;&lt;/FONT&gt;
  1012. &lt;/TD&gt;
  1013. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1014. RT/RTR22&lt;BR&gt;
  1015. RT/RTR22&lt;BR&gt;
  1016. RT/RTR22&lt;BR&gt;
  1017. RT/RTR22&lt;BR&gt;
  1018. RJ/RJR22&lt;BR&gt;
  1019. RJ/RJR22&lt;BR&gt;
  1020. RJ/RJR22&lt;BR&gt;
  1021. RT/RTR26&lt;BR&gt;
  1022. RT/RTR26&lt;BR&gt;
  1023. RT/RTR26&lt;BR&gt;
  1024. RJ/RJR26&lt;BR&gt;
  1025. RJ/RJR26&lt;BR&gt;
  1026. RJ/RJR26&lt;BR&gt;
  1027. RJ/RJR26&lt;BR&gt;
  1028. RJ/RJR26&lt;BR&gt;
  1029. RJ/RJR26&lt;BR&gt;
  1030. RT/RTR24&lt;BR&gt;
  1031. RT/RTR24&lt;BR&gt;
  1032. RT/RTR24&lt;BR&gt;
  1033. RJ/RJR24&lt;BR&gt;
  1034. RJ/RJR24&lt;BR&gt;
  1035. RJ/RJR24&lt;BR&gt;
  1036. RJ/RJR24&lt;BR&gt;
  1037. RJ/RJR24&lt;BR&gt;
  1038. RJ/RJR24&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. -&lt;BR&gt;&lt;/FONT&gt;
  1046. &lt;/TD&gt;
  1047. &lt;/TR&gt;
  1048. &lt;TR&gt;
  1049. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1050. &lt;/TD&gt;
  1051. &lt;/TR&gt;
  1052. &lt;TR&gt;
  1053. &lt;TD COLSPAN=8&gt;
  1054. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1055. &lt;/TD&gt;
  1056. &lt;/TR&gt;
  1057. &lt;TR&gt;
  1058. &lt;TD ALIGN=CENTER&gt;
  1059. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1060. &lt;/TD&gt;
  1061. &lt;TD ALIGN=CENTER&gt;
  1062. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1063. &lt;/TD&gt;
  1064. &lt;TD ALIGN=CENTER&gt;
  1065. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1066. &lt;/TD&gt;
  1067. &lt;TD ALIGN=CENTER&gt;
  1068. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1069. &lt;/TD&gt;
  1070. &lt;TD ALIGN=CENTER&gt;
  1071. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1072. &lt;/TD&gt;
  1073. &lt;TD ALIGN=CENTER&gt;
  1074. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1075. &lt;/TD&gt;
  1076. &lt;TD ALIGN=CENTER&gt;
  1077. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1078. &lt;/TD&gt;
  1079. &lt;TD ALIGN=CENTER&gt;
  1080. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1081. &lt;/TD&gt;
  1082. &lt;/TR&gt;
  1083. &lt;TR&gt;
  1084. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1085. 3323P&lt;BR&gt;
  1086. 3323S&lt;BR&gt;
  1087. 3323W&lt;BR&gt;
  1088. 3329H&lt;BR&gt;
  1089. 3329P&lt;BR&gt;
  1090. 3329W&lt;BR&gt;
  1091. 3339H&lt;BR&gt;
  1092. 3339P&lt;BR&gt;
  1093. 3339W&lt;BR&gt;
  1094. 3352E&lt;BR&gt;
  1095. 3352H&lt;BR&gt;
  1096. 3352K&lt;BR&gt;
  1097. 3352P&lt;BR&gt;
  1098. 3352T&lt;BR&gt;
  1099. 3352V&lt;BR&gt;
  1100. 3352W&lt;BR&gt;
  1101. 3362H&lt;BR&gt;
  1102. 3362M&lt;BR&gt;
  1103. 3362P&lt;BR&gt;
  1104. 3362R&lt;BR&gt;
  1105. 3362S&lt;BR&gt;
  1106. 3362U&lt;BR&gt;
  1107. 3362W&lt;BR&gt;
  1108. 3362X&lt;BR&gt;
  1109. 3386B&lt;BR&gt;
  1110. 3386C&lt;BR&gt;
  1111. 3386F&lt;BR&gt;
  1112. 3386H&lt;BR&gt;
  1113. 3386K&lt;BR&gt;
  1114. 3386M&lt;BR&gt;
  1115. 3386P&lt;BR&gt;
  1116. 3386S&lt;BR&gt;
  1117. 3386W&lt;BR&gt;
  1118. 3386X&lt;BR&gt;&lt;/FONT&gt;
  1119. &lt;/TD&gt;
  1120. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1121. 25P&lt;BR&gt;
  1122. 25S&lt;BR&gt;
  1123. 25RX&lt;BR&gt;
  1124. 82P&lt;BR&gt;
  1125. 82M&lt;BR&gt;
  1126. 82PA&lt;BR&gt;
  1127. -&lt;BR&gt;
  1128. -&lt;BR&gt;
  1129. -&lt;BR&gt;
  1130. 91E&lt;BR&gt;
  1131. 91X&lt;BR&gt;
  1132. 91T&lt;BR&gt;
  1133. 91B&lt;BR&gt;
  1134. 91A&lt;BR&gt;
  1135. 91V&lt;BR&gt;
  1136. 91W&lt;BR&gt;
  1137. 25W&lt;BR&gt;
  1138. 25V&lt;BR&gt;
  1139. 25P&lt;BR&gt;
  1140. -&lt;BR&gt;
  1141. 25S&lt;BR&gt;
  1142. 25U&lt;BR&gt;
  1143. 25RX&lt;BR&gt;
  1144. 25X&lt;BR&gt;
  1145. 72XW&lt;BR&gt;
  1146. 72XL&lt;BR&gt;
  1147. 72PM&lt;BR&gt;
  1148. 72RX&lt;BR&gt;
  1149. -&lt;BR&gt;
  1150. 72PX&lt;BR&gt;
  1151. 72P&lt;BR&gt;
  1152. 72RXW&lt;BR&gt;
  1153. 72RXL&lt;BR&gt;
  1154. 72X&lt;BR&gt;&lt;/FONT&gt;
  1155. &lt;/TD&gt;
  1156. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1157. -&lt;BR&gt;
  1158. -&lt;BR&gt;
  1159. -&lt;BR&gt;
  1160. T7YB&lt;BR&gt;
  1161. T7YA&lt;BR&gt;
  1162. -&lt;BR&gt;
  1163. -&lt;BR&gt;
  1164. -&lt;BR&gt;
  1165. -&lt;BR&gt;
  1166. -&lt;BR&gt;
  1167. -&lt;BR&gt;
  1168. -&lt;BR&gt;
  1169. -&lt;BR&gt;
  1170. -&lt;BR&gt;
  1171. -&lt;BR&gt;
  1172. -&lt;BR&gt;
  1173. -&lt;BR&gt;
  1174. TXD&lt;BR&gt;
  1175. TYA&lt;BR&gt;
  1176. TYP&lt;BR&gt;
  1177. -&lt;BR&gt;
  1178. TYD&lt;BR&gt;
  1179. TX&lt;BR&gt;
  1180. -&lt;BR&gt;
  1181. 150SX&lt;BR&gt;
  1182. 100SX&lt;BR&gt;
  1183. 102T&lt;BR&gt;
  1184. 101S&lt;BR&gt;
  1185. 190T&lt;BR&gt;
  1186. 150TX&lt;BR&gt;
  1187. 101&lt;BR&gt;
  1188. -&lt;BR&gt;
  1189. -&lt;BR&gt;
  1190. 101SX&lt;BR&gt;&lt;/FONT&gt;
  1191. &lt;/TD&gt;
  1192. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1193. ET6P&lt;BR&gt;
  1194. ET6S&lt;BR&gt;
  1195. ET6X&lt;BR&gt;
  1196. RJ-6W/8014EMW&lt;BR&gt;
  1197. RJ-6P/8014EMP&lt;BR&gt;
  1198. RJ-6X/8014EMX&lt;BR&gt;
  1199. TM7W&lt;BR&gt;
  1200. TM7P&lt;BR&gt;
  1201. TM7X&lt;BR&gt;
  1202. -&lt;BR&gt;
  1203. 8017SMS&lt;BR&gt;
  1204. -&lt;BR&gt;
  1205. 8017SMB&lt;BR&gt;
  1206. 8017SMA&lt;BR&gt;
  1207. -&lt;BR&gt;
  1208. -&lt;BR&gt;
  1209. CT-6W&lt;BR&gt;
  1210. CT-6H&lt;BR&gt;
  1211. CT-6P&lt;BR&gt;
  1212. CT-6R&lt;BR&gt;
  1213. -&lt;BR&gt;
  1214. CT-6V&lt;BR&gt;
  1215. CT-6X&lt;BR&gt;
  1216. -&lt;BR&gt;
  1217. -&lt;BR&gt;
  1218. 8038EKV&lt;BR&gt;
  1219. -&lt;BR&gt;
  1220. 8038EKX&lt;BR&gt;
  1221. -&lt;BR&gt;
  1222. -&lt;BR&gt;
  1223. 8038EKP&lt;BR&gt;
  1224. 8038EKZ&lt;BR&gt;
  1225. 8038EKW&lt;BR&gt;
  1226. -&lt;BR&gt;&lt;/FONT&gt;
  1227. &lt;/TD&gt;
  1228. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1229. -&lt;BR&gt;
  1230. -&lt;BR&gt;
  1231. -&lt;BR&gt;
  1232. 3321H&lt;BR&gt;
  1233. 3321P&lt;BR&gt;
  1234. 3321N&lt;BR&gt;
  1235. 1102H&lt;BR&gt;
  1236. 1102P&lt;BR&gt;
  1237. 1102T&lt;BR&gt;
  1238. RVA0911V304A&lt;BR&gt;
  1239. -&lt;BR&gt;
  1240. RVA0911H413A&lt;BR&gt;
  1241. RVG0707V100A&lt;BR&gt;
  1242. RVA0607V(H)306A&lt;BR&gt;
  1243. RVA1214H213A&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. -&lt;BR&gt;
  1252. -&lt;BR&gt;
  1253. 3104B&lt;BR&gt;
  1254. 3104C&lt;BR&gt;
  1255. 3104F&lt;BR&gt;
  1256. 3104H&lt;BR&gt;
  1257. -&lt;BR&gt;
  1258. 3104M&lt;BR&gt;
  1259. 3104P&lt;BR&gt;
  1260. 3104S&lt;BR&gt;
  1261. 3104W&lt;BR&gt;
  1262. 3104X&lt;BR&gt;&lt;/FONT&gt;
  1263. &lt;/TD&gt;
  1264. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1265. EVMQ0G&lt;BR&gt;
  1266. EVMQIG&lt;BR&gt;
  1267. EVMQ3G&lt;BR&gt;
  1268. EVMS0G&lt;BR&gt;
  1269. EVMQ0G&lt;BR&gt;
  1270. EVMG0G&lt;BR&gt;
  1271. -&lt;BR&gt;
  1272. -&lt;BR&gt;
  1273. -&lt;BR&gt;
  1274. EVMK4GA00B&lt;BR&gt;
  1275. EVM30GA00B&lt;BR&gt;
  1276. EVMK0GA00B&lt;BR&gt;
  1277. EVM38GA00B&lt;BR&gt;
  1278. EVMB6&lt;BR&gt;
  1279. EVLQ0&lt;BR&gt;
  1280. -&lt;BR&gt;
  1281. EVMMSG&lt;BR&gt;
  1282. EVMMBG&lt;BR&gt;
  1283. EVMMAG&lt;BR&gt;
  1284. -&lt;BR&gt;
  1285. -&lt;BR&gt;
  1286. EVMMCS&lt;BR&gt;
  1287. -&lt;BR&gt;
  1288. -&lt;BR&gt;
  1289. -&lt;BR&gt;
  1290. -&lt;BR&gt;
  1291. -&lt;BR&gt;
  1292. EVMM1&lt;BR&gt;
  1293. -&lt;BR&gt;
  1294. -&lt;BR&gt;
  1295. EVMM0&lt;BR&gt;
  1296. -&lt;BR&gt;
  1297. -&lt;BR&gt;
  1298. EVMM3&lt;BR&gt;&lt;/FONT&gt;
  1299. &lt;/TD&gt;
  1300. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1301. -&lt;BR&gt;
  1302. -&lt;BR&gt;
  1303. -&lt;BR&gt;
  1304. 62-3-1&lt;BR&gt;
  1305. 62-1-2&lt;BR&gt;
  1306. -&lt;BR&gt;
  1307. -&lt;BR&gt;
  1308. -&lt;BR&gt;
  1309. -&lt;BR&gt;
  1310. -&lt;BR&gt;
  1311. -&lt;BR&gt;
  1312. -&lt;BR&gt;
  1313. -&lt;BR&gt;
  1314. -&lt;BR&gt;
  1315. -&lt;BR&gt;
  1316. -&lt;BR&gt;
  1317. 67R&lt;BR&gt;
  1318. -&lt;BR&gt;
  1319. 67P&lt;BR&gt;
  1320. -&lt;BR&gt;
  1321. -&lt;BR&gt;
  1322. -&lt;BR&gt;
  1323. -&lt;BR&gt;
  1324. 67X&lt;BR&gt;
  1325. 63V&lt;BR&gt;
  1326. 63S&lt;BR&gt;
  1327. 63M&lt;BR&gt;
  1328. -&lt;BR&gt;
  1329. -&lt;BR&gt;
  1330. 63H&lt;BR&gt;
  1331. 63P&lt;BR&gt;
  1332. -&lt;BR&gt;
  1333. -&lt;BR&gt;
  1334. 63X&lt;BR&gt;&lt;/FONT&gt;
  1335. &lt;/TD&gt;
  1336. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1337. -&lt;BR&gt;
  1338. -&lt;BR&gt;
  1339. -&lt;BR&gt;
  1340. RJ/RJR50&lt;BR&gt;
  1341. RJ/RJR50&lt;BR&gt;
  1342. RJ/RJR50&lt;BR&gt;
  1343. -&lt;BR&gt;
  1344. -&lt;BR&gt;
  1345. -&lt;BR&gt;
  1346. -&lt;BR&gt;
  1347. -&lt;BR&gt;
  1348. -&lt;BR&gt;
  1349. -&lt;BR&gt;
  1350. -&lt;BR&gt;
  1351. -&lt;BR&gt;
  1352. -&lt;BR&gt;
  1353. -&lt;BR&gt;
  1354. -&lt;BR&gt;
  1355. -&lt;BR&gt;
  1356. -&lt;BR&gt;
  1357. -&lt;BR&gt;
  1358. -&lt;BR&gt;
  1359. -&lt;BR&gt;
  1360. -&lt;BR&gt;
  1361. -&lt;BR&gt;
  1362. -&lt;BR&gt;
  1363. -&lt;BR&gt;
  1364. -&lt;BR&gt;
  1365. -&lt;BR&gt;
  1366. -&lt;BR&gt;
  1367. -&lt;BR&gt;
  1368. -&lt;BR&gt;
  1369. -&lt;BR&gt;
  1370. -&lt;BR&gt;&lt;/FONT&gt;
  1371. &lt;/TD&gt;
  1372. &lt;/TR&gt;
  1373. &lt;/TABLE&gt;
  1374. &lt;P&gt;&amp;nbsp;&lt;P&gt;
  1375. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3&gt;
  1376. &lt;TR&gt;
  1377. &lt;TD COLSPAN=7&gt;
  1378. &lt;FONT color="#0000FF" SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SMD TRIM-POT CROSS REFERENCE&lt;/B&gt;&lt;/FONT&gt;
  1379. &lt;P&gt;
  1380. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1381. &lt;/TD&gt;
  1382. &lt;/TR&gt;
  1383. &lt;TR&gt;
  1384. &lt;TD&gt;
  1385. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1386. &lt;/TD&gt;
  1387. &lt;TD&gt;
  1388. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1389. &lt;/TD&gt;
  1390. &lt;TD&gt;
  1391. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1392. &lt;/TD&gt;
  1393. &lt;TD&gt;
  1394. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1395. &lt;/TD&gt;
  1396. &lt;TD&gt;
  1397. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1398. &lt;/TD&gt;
  1399. &lt;TD&gt;
  1400. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1401. &lt;/TD&gt;
  1402. &lt;TD&gt;
  1403. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1404. &lt;/TD&gt;
  1405. &lt;/TR&gt;
  1406. &lt;TR&gt;
  1407. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1408. 3224G&lt;BR&gt;
  1409. 3224J&lt;BR&gt;
  1410. 3224W&lt;BR&gt;
  1411. 3269P&lt;BR&gt;
  1412. 3269W&lt;BR&gt;
  1413. 3269X&lt;BR&gt;&lt;/FONT&gt;
  1414. &lt;/TD&gt;
  1415. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1416. 44G&lt;BR&gt;
  1417. 44J&lt;BR&gt;
  1418. 44W&lt;BR&gt;
  1419. 84P&lt;BR&gt;
  1420. 84W&lt;BR&gt;
  1421. 84X&lt;BR&gt;&lt;/FONT&gt;
  1422. &lt;/TD&gt;
  1423. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1424. -&lt;BR&gt;
  1425. -&lt;BR&gt;
  1426. -&lt;BR&gt;
  1427. ST63Z&lt;BR&gt;
  1428. ST63Y&lt;BR&gt;
  1429. -&lt;BR&gt;&lt;/FONT&gt;
  1430. &lt;/TD&gt;
  1431. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1432. -&lt;BR&gt;
  1433. -&lt;BR&gt;
  1434. -&lt;BR&gt;
  1435. ST5P&lt;BR&gt;
  1436. ST5W&lt;BR&gt;
  1437. ST5X&lt;BR&gt;&lt;/FONT&gt;
  1438. &lt;/TD&gt;
  1439. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&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;&lt;/FONT&gt;
  1446. &lt;/TD&gt;
  1447. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1448. -&lt;BR&gt;
  1449. -&lt;BR&gt;
  1450. -&lt;BR&gt;
  1451. -&lt;BR&gt;
  1452. -&lt;BR&gt;
  1453. -&lt;BR&gt;&lt;/FONT&gt;
  1454. &lt;/TD&gt;
  1455. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1456. -&lt;BR&gt;
  1457. -&lt;BR&gt;
  1458. -&lt;BR&gt;
  1459. -&lt;BR&gt;
  1460. -&lt;BR&gt;
  1461. -&lt;BR&gt;&lt;/FONT&gt;
  1462. &lt;/TD&gt;
  1463. &lt;/TR&gt;
  1464. &lt;TR&gt;
  1465. &lt;TD COLSPAN=7&gt;&amp;nbsp;
  1466. &lt;/TD&gt;
  1467. &lt;/TR&gt;
  1468. &lt;TR&gt;
  1469. &lt;TD COLSPAN=7&gt;
  1470. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1471. &lt;/TD&gt;
  1472. &lt;/TR&gt;
  1473. &lt;TR&gt;
  1474. &lt;TD&gt;
  1475. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1476. &lt;/TD&gt;
  1477. &lt;TD&gt;
  1478. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1479. &lt;/TD&gt;
  1480. &lt;TD&gt;
  1481. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1482. &lt;/TD&gt;
  1483. &lt;TD&gt;
  1484. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1485. &lt;/TD&gt;
  1486. &lt;TD&gt;
  1487. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1488. &lt;/TD&gt;
  1489. &lt;TD&gt;
  1490. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1491. &lt;/TD&gt;
  1492. &lt;TD&gt;
  1493. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1494. &lt;/TD&gt;
  1495. &lt;/TR&gt;
  1496. &lt;TR&gt;
  1497. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1498. 3314G&lt;BR&gt;
  1499. 3314J&lt;BR&gt;
  1500. 3364A/B&lt;BR&gt;
  1501. 3364C/D&lt;BR&gt;
  1502. 3364W/X&lt;BR&gt;
  1503. 3313G&lt;BR&gt;
  1504. 3313J&lt;BR&gt;&lt;/FONT&gt;
  1505. &lt;/TD&gt;
  1506. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1507. 23B&lt;BR&gt;
  1508. 23A&lt;BR&gt;
  1509. 21X&lt;BR&gt;
  1510. 21W&lt;BR&gt;
  1511. -&lt;BR&gt;
  1512. 22B&lt;BR&gt;
  1513. 22A&lt;BR&gt;&lt;/FONT&gt;
  1514. &lt;/TD&gt;
  1515. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1516. ST5YL/ST53YL&lt;BR&gt;
  1517. ST5YJ/5T53YJ&lt;BR&gt;
  1518. ST-23A&lt;BR&gt;
  1519. ST-22B&lt;BR&gt;
  1520. ST-22&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. ST-4B&lt;BR&gt;
  1526. ST-4A&lt;BR&gt;
  1527. -&lt;BR&gt;
  1528. -&lt;BR&gt;
  1529. -&lt;BR&gt;
  1530. ST-3B&lt;BR&gt;
  1531. ST-3A&lt;BR&gt;&lt;/FONT&gt;
  1532. &lt;/TD&gt;
  1533. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1534. -&lt;BR&gt;
  1535. EVM-6YS&lt;BR&gt;
  1536. EVM-1E&lt;BR&gt;
  1537. EVM-1G&lt;BR&gt;
  1538. EVM-1D&lt;BR&gt;
  1539. -&lt;BR&gt;
  1540. -&lt;BR&gt;&lt;/FONT&gt;
  1541. &lt;/TD&gt;
  1542. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1543. G4B&lt;BR&gt;
  1544. G4A&lt;BR&gt;
  1545. TR04-3S1&lt;BR&gt;
  1546. TRG04-2S1&lt;BR&gt;
  1547. -&lt;BR&gt;
  1548. -&lt;BR&gt;
  1549. -&lt;BR&gt;&lt;/FONT&gt;
  1550. &lt;/TD&gt;
  1551. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1552. -&lt;BR&gt;
  1553. -&lt;BR&gt;
  1554. DVR-43A&lt;BR&gt;
  1555. CVR-42C&lt;BR&gt;
  1556. CVR-42A/C&lt;BR&gt;
  1557. -&lt;BR&gt;
  1558. -&lt;BR&gt;&lt;/FONT&gt;
  1559. &lt;/TD&gt;
  1560. &lt;/TR&gt;
  1561. &lt;/TABLE&gt;
  1562. &lt;P&gt;
  1563. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;ALT =&amp;nbsp;ALTERNATE&lt;/B&gt;&lt;/FONT&gt;
  1564. &lt;P&gt;
  1565. &amp;nbsp;
  1566. &lt;P&gt;
  1567. &lt;/td&gt;
  1568. &lt;/tr&gt;
  1569. &lt;/table&gt;
  1570. &lt;/BODY&gt;&lt;/HTML&gt;</description>
  1571. <packages>
  1572. <package name="R0402">
  1573. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1574. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1575. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1576. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1577. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1578. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1579. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1580. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1581. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1582. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1583. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1584. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1585. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1586. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1587. </package>
  1588. <package name="R0603">
  1589. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1590. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  1591. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  1592. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  1593. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  1594. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  1595. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  1596. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1597. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1598. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1599. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1600. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  1601. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  1602. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1603. </package>
  1604. <package name="R0805">
  1605. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  1606. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1607. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1608. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1609. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1610. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1611. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1612. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1613. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1614. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1615. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1616. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1617. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1618. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1619. </package>
  1620. <package name="R0805W">
  1621. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;</description>
  1622. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1623. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1624. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1625. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1626. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1627. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1628. <smd name="1" x="-1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1629. <smd name="2" x="1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1630. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1631. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1632. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1633. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1634. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1635. </package>
  1636. <package name="R1206">
  1637. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1638. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  1639. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  1640. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1641. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1642. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1643. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1644. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1645. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1646. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1647. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1648. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  1649. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  1650. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1651. </package>
  1652. <package name="R1206W">
  1653. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1654. wave soldering</description>
  1655. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1656. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1657. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1658. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1659. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1660. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1661. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1662. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1663. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1664. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1665. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1666. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1667. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1668. </package>
  1669. <package name="R1210">
  1670. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1671. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1672. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1673. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1674. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1675. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1676. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1677. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1678. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1679. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1680. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1681. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1682. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1683. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  1684. </package>
  1685. <package name="R1210W">
  1686. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1687. wave soldering</description>
  1688. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1689. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1690. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1691. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1692. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1693. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1694. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1695. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1696. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1697. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1698. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1699. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1700. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  1701. </package>
  1702. <package name="R2010">
  1703. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1704. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1705. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1706. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1707. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1708. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1709. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1710. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1711. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1712. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1713. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1714. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1715. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1716. </package>
  1717. <package name="R2010W">
  1718. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1719. wave soldering</description>
  1720. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1721. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1722. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1723. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1724. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1725. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1726. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1727. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1728. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1729. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1730. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1731. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1732. </package>
  1733. <package name="R2012">
  1734. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1735. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1736. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1737. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1738. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1739. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1740. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1741. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1742. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1743. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1744. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1745. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1746. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1747. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1748. </package>
  1749. <package name="R2012W">
  1750. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1751. wave soldering</description>
  1752. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1753. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1754. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1755. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1756. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1757. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1758. <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1759. <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1760. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1761. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1762. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1763. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1764. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1765. </package>
  1766. <package name="R2512">
  1767. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1768. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1769. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1770. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1771. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1772. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1773. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1774. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1775. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1776. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1777. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1778. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1779. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1780. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1781. </package>
  1782. <package name="R2512W">
  1783. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1784. wave soldering</description>
  1785. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1786. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1787. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1788. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1789. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1790. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1791. <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1792. <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1793. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1794. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1795. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1796. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1797. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1798. </package>
  1799. <package name="R3216">
  1800. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1801. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1802. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1803. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1804. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1805. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1806. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1807. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1808. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1809. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1810. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1811. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1812. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1813. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1814. </package>
  1815. <package name="R3216W">
  1816. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1817. wave soldering</description>
  1818. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1819. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1820. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1821. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1822. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1823. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1824. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1825. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1826. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1827. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1828. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1829. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1830. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1831. </package>
  1832. <package name="R3225">
  1833. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1834. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1835. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1836. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1837. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1838. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1839. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1840. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1841. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1842. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1843. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1844. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1845. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1846. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1847. </package>
  1848. <package name="R3225W">
  1849. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1850. wave soldering</description>
  1851. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1852. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1853. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1854. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1855. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1856. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1857. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1858. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1859. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1860. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1861. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1862. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1863. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1864. </package>
  1865. <package name="R5025">
  1866. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1867. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1868. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1869. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1870. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1871. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1872. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1873. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1874. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1875. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1876. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1877. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1878. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1879. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1880. </package>
  1881. <package name="R5025W">
  1882. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1883. wave soldering</description>
  1884. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1885. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1886. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1887. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1888. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1889. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1890. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1891. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1892. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1893. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1894. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1895. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1896. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1897. </package>
  1898. <package name="R6332">
  1899. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1900. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  1901. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1902. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1903. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1904. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1905. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1906. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1907. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1908. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1909. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1910. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1911. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1912. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1913. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1914. </package>
  1915. <package name="R6332W">
  1916. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;
  1917. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  1918. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1919. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1920. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1921. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1922. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1923. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1924. <smd name="1" x="-3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  1925. <smd name="2" x="3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  1926. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1927. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1928. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1929. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1930. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1931. </package>
  1932. <package name="M0805">
  1933. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1934. MELF 0.10 W</description>
  1935. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1936. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1937. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1938. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1939. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  1940. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  1941. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  1942. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  1943. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1944. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1945. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  1946. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  1947. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  1948. </package>
  1949. <package name="M1206">
  1950. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1951. MELF 0.25 W</description>
  1952. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1953. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1954. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1955. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1956. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  1957. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  1958. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  1959. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  1960. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1961. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1962. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  1963. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  1964. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  1965. </package>
  1966. <package name="M1406">
  1967. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1968. MELF 0.12 W</description>
  1969. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  1970. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  1971. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  1972. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  1973. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  1974. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  1975. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  1976. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  1977. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1978. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1979. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  1980. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  1981. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1982. </package>
  1983. <package name="M2012">
  1984. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1985. MELF 0.10 W</description>
  1986. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1987. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1988. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1989. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1990. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  1991. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  1992. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  1993. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  1994. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1995. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1996. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  1997. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  1998. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  1999. </package>
  2000. <package name="M2309">
  2001. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2002. MELF 0.25 W</description>
  2003. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2004. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2005. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2006. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2007. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2008. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2009. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2010. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2011. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2012. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2013. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2014. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2015. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2016. </package>
  2017. <package name="M3216">
  2018. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2019. MELF 0.25 W</description>
  2020. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2021. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2022. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2023. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2024. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2025. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2026. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2027. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2028. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2029. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2030. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2031. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2032. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2033. </package>
  2034. <package name="M3516">
  2035. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2036. MELF 0.12 W</description>
  2037. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2038. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2039. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2040. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2041. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2042. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2043. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2044. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2045. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2046. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2047. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2048. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2049. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  2050. </package>
  2051. <package name="M5923">
  2052. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2053. MELF 0.25 W</description>
  2054. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2055. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2056. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2057. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2058. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2059. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2060. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2061. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2062. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2063. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2064. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2065. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2066. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2067. </package>
  2068. <package name="0204/5">
  2069. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2070. type 0204, grid 5 mm</description>
  2071. <wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="51"/>
  2072. <wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="51"/>
  2073. <wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2074. <wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2075. <wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  2076. <wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  2077. <wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="51"/>
  2078. <wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2079. <wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2080. <wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2081. <wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2082. <wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2083. <wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
  2084. <wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2085. <wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
  2086. <wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2087. <wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2088. <wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="51"/>
  2089. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2090. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2091. <text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2092. <text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2093. <rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="51"/>
  2094. <rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="51"/>
  2095. </package>
  2096. <package name="0204/7">
  2097. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2098. type 0204, grid 7.5 mm</description>
  2099. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  2100. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  2101. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2102. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2103. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  2104. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  2105. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  2106. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2107. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2108. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2109. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2110. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2111. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  2112. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2113. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  2114. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2115. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2116. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  2117. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2118. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2119. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2120. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2121. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  2122. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  2123. </package>
  2124. <package name="0204V">
  2125. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2126. type 0204, grid 2.5 mm</description>
  2127. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="51"/>
  2128. <wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
  2129. <circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="51"/>
  2130. <circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="51"/>
  2131. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2132. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2133. <text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2134. <text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2135. </package>
  2136. <package name="0207/10">
  2137. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2138. type 0207, grid 10 mm</description>
  2139. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  2140. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  2141. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2142. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2143. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2144. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2145. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2146. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2147. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2148. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2149. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2150. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2151. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2152. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2153. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2154. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2155. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2156. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2157. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2158. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2159. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2160. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2161. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2162. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2163. </package>
  2164. <package name="0207/12">
  2165. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2166. type 0207, grid 12 mm</description>
  2167. <wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="51"/>
  2168. <wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="51"/>
  2169. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2170. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2171. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2172. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2173. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2174. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2175. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2176. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2177. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2178. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2179. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2180. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2181. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2182. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2183. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2184. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2185. <wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2186. <wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2187. <pad name="1" x="-6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2188. <pad name="2" x="6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2189. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2190. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2191. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2192. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2193. <rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
  2194. <rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  2195. </package>
  2196. <package name="0207/15">
  2197. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2198. type 0207, grid 15mm</description>
  2199. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="51"/>
  2200. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="51"/>
  2201. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2202. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2203. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2204. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2205. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2206. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2207. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2208. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2209. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2210. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2211. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2212. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2213. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2214. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2215. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2216. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2217. <wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2218. <wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2219. <pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
  2220. <pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
  2221. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2222. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2223. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2224. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2225. <rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
  2226. <rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
  2227. </package>
  2228. <package name="0207/2V">
  2229. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2230. type 0207, grid 2.5 mm</description>
  2231. <wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="51"/>
  2232. <wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
  2233. <wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="51"/>
  2234. <circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
  2235. <circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="51"/>
  2236. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2237. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2238. <text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2239. <text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2240. </package>
  2241. <package name="0207/5V">
  2242. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2243. type 0207, grid 5 mm</description>
  2244. <wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="51"/>
  2245. <wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
  2246. <wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="51"/>
  2247. <circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
  2248. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2249. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2250. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2251. <text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2252. <text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2253. </package>
  2254. <package name="0207/7">
  2255. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2256. type 0207, grid 7.5 mm</description>
  2257. <wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="51"/>
  2258. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2259. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2260. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2261. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2262. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="51"/>
  2263. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2264. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2265. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2266. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2267. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2268. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2269. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2270. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2271. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2272. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2273. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="51"/>
  2274. <wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="51"/>
  2275. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2276. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2277. <text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2278. <text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2279. <rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="51"/>
  2280. <rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="51"/>
  2281. </package>
  2282. <package name="0309/10">
  2283. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2284. type 0309, grid 10mm</description>
  2285. <wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2286. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2287. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2288. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2289. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2290. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="51"/>
  2291. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2292. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2293. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2294. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2295. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2296. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2297. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2298. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2299. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2300. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2301. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="51"/>
  2302. <wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="51"/>
  2303. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2304. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2305. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2306. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2307. <rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="51"/>
  2308. <rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="51"/>
  2309. </package>
  2310. <package name="0309/12">
  2311. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2312. type 0309, grid 12.5 mm</description>
  2313. <wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  2314. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2315. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2316. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2317. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2318. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2319. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
  2320. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2321. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2322. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2323. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2324. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2325. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2326. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2327. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2328. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2329. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2330. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
  2331. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  2332. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  2333. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2334. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2335. <rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
  2336. <rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
  2337. </package>
  2338. <package name="0309V">
  2339. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2340. type 0309, grid 2.5 mm</description>
  2341. <wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="51"/>
  2342. <wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="51"/>
  2343. <circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
  2344. <circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="51"/>
  2345. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2346. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2347. <text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2348. <text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2349. <rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="51"/>
  2350. <rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="51"/>
  2351. <rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
  2352. </package>
  2353. <package name="0411/12">
  2354. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2355. type 0411, grid 12.5 mm</description>
  2356. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="51"/>
  2357. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="51"/>
  2358. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2359. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2360. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2361. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2362. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2363. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2364. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2365. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2366. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2367. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2368. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2369. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2370. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2371. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2372. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2373. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2374. <pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
  2375. <pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
  2376. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2377. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2378. <rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2379. <rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
  2380. </package>
  2381. <package name="0411/15">
  2382. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2383. type 0411, grid 15 mm</description>
  2384. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2385. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2386. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2387. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2388. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2389. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2390. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2391. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2392. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2393. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2394. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2395. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2396. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2397. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2398. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2399. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2400. <wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="51"/>
  2401. <wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="51"/>
  2402. <pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
  2403. <pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
  2404. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2405. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2406. <rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
  2407. <rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2408. </package>
  2409. <package name="0411V">
  2410. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2411. type 0411, grid 3.81 mm</description>
  2412. <wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="51"/>
  2413. <wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="51"/>
  2414. <circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
  2415. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2416. <pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
  2417. <pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
  2418. <text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2419. <text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2420. <rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
  2421. </package>
  2422. <package name="0414/15">
  2423. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2424. type 0414, grid 15 mm</description>
  2425. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="51"/>
  2426. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="51"/>
  2427. <wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
  2428. <wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
  2429. <wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  2430. <wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  2431. <wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
  2432. <wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2433. <wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2434. <wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2435. <wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2436. <wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2437. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  2438. <wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2439. <wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
  2440. <wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2441. <wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2442. <wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
  2443. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2444. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2445. <text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2446. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2447. <rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
  2448. <rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
  2449. </package>
  2450. <package name="0414V">
  2451. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2452. type 0414, grid 5 mm</description>
  2453. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2454. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2455. <circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
  2456. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2457. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2458. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2459. <text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2460. <text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2461. <rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
  2462. </package>
  2463. <package name="0617/17">
  2464. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2465. type 0617, grid 17.5 mm</description>
  2466. <wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="51"/>
  2467. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2468. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2469. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2470. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2471. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2472. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2473. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2474. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2475. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2476. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2477. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
  2478. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="51"/>
  2479. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2480. <wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
  2481. <wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="51"/>
  2482. <wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2483. <wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="51"/>
  2484. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2485. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2486. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2487. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2488. <pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
  2489. <pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
  2490. <text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2491. <text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2492. <rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="51"/>
  2493. <rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="51"/>
  2494. </package>
  2495. <package name="0617/22">
  2496. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2497. type 0617, grid 22.5 mm</description>
  2498. <wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2499. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2500. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2501. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2502. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2503. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2504. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2505. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2506. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2507. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2508. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2509. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2510. <wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2511. <wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="51"/>
  2512. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2513. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2514. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2515. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2516. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2517. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2518. <text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2519. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2520. <rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
  2521. <rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
  2522. </package>
  2523. <package name="0617V">
  2524. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2525. type 0617, grid 5 mm</description>
  2526. <wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="51"/>
  2527. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="51"/>
  2528. <circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
  2529. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2530. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2531. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2532. <text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2533. <text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2534. <rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2535. </package>
  2536. <package name="0922/22">
  2537. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2538. type 0922, grid 22.5 mm</description>
  2539. <wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="51"/>
  2540. <wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="51"/>
  2541. <wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
  2542. <wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2543. <wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2544. <wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2545. <wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2546. <wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2547. <wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
  2548. <wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2549. <wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
  2550. <wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2551. <wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2552. <wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
  2553. <wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  2554. <wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  2555. <wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
  2556. <wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
  2557. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2558. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2559. <text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2560. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2561. <rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="51"/>
  2562. <rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2563. <rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
  2564. <rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="51"/>
  2565. </package>
  2566. <package name="P0613V">
  2567. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2568. type 0613, grid 5 mm</description>
  2569. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2570. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2571. <circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
  2572. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2573. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2574. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2575. <text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2576. <text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2577. <rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2578. </package>
  2579. <package name="P0613/15">
  2580. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2581. type 0613, grid 15 mm</description>
  2582. <wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="51"/>
  2583. <wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="51"/>
  2584. <wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  2585. <wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  2586. <wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2587. <wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2588. <wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2589. <wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2590. <wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2591. <wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2592. <wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2593. <wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
  2594. <wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2595. <wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
  2596. <wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2597. <wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2598. <wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
  2599. <wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="51"/>
  2600. <wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
  2601. <wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
  2602. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="51"/>
  2603. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
  2604. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2605. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2606. <text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2607. <text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2608. <rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="51"/>
  2609. <rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="51"/>
  2610. </package>
  2611. <package name="P0817/22">
  2612. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2613. type 0817, grid 22.5 mm</description>
  2614. <wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2615. <wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
  2616. <wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2617. <wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2618. <wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2619. <wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2620. <wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2621. <wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
  2622. <wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2623. <wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
  2624. <wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2625. <wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2626. <wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
  2627. <wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="51"/>
  2628. <wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  2629. <wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  2630. <wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  2631. <wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  2632. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2633. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2634. <text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2635. <text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2636. <text x="6.604" y="-2.2606" size="1.27" layer="51" ratio="10" rot="R90">0817</text>
  2637. <rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2638. <rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
  2639. </package>
  2640. <package name="P0817V">
  2641. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2642. type 0817, grid 6.35 mm</description>
  2643. <wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="51"/>
  2644. <wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="51"/>
  2645. <circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
  2646. <circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="51"/>
  2647. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  2648. <pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
  2649. <text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2650. <text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2651. <text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
  2652. <rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
  2653. </package>
  2654. <package name="V234/12">
  2655. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2656. type V234, grid 12.5 mm</description>
  2657. <wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  2658. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2659. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2660. <wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  2661. <wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  2662. <wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
  2663. <wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
  2664. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  2665. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="51"/>
  2666. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="51"/>
  2667. <pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
  2668. <pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
  2669. <text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2670. <text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2671. <rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
  2672. <rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
  2673. </package>
  2674. <package name="V235/17">
  2675. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2676. type V235, grid 17.78 mm</description>
  2677. <wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
  2678. <wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
  2679. <wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
  2680. <wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
  2681. <wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="51"/>
  2682. <wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="51"/>
  2683. <wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
  2684. <wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  2685. <wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  2686. <wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
  2687. <pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
  2688. <pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
  2689. <text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2690. <text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2691. <rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
  2692. <rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
  2693. </package>
  2694. <package name="V526-0">
  2695. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2696. type V526-0, grid 2.5 mm</description>
  2697. <wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2698. <wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2699. <wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2700. <wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2701. <wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
  2702. <wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
  2703. <wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
  2704. <wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
  2705. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2706. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2707. <text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2708. <text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2709. </package>
  2710. <package name="MINI_MELF-0102R">
  2711. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2712. source Beyschlag</description>
  2713. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2714. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2715. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2716. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2717. <smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2718. <smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2719. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2720. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2721. </package>
  2722. <package name="MINI_MELF-0102W">
  2723. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;
  2724. source Beyschlag</description>
  2725. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2726. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2727. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2728. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2729. <smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2730. <smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2731. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2732. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2733. </package>
  2734. <package name="MINI_MELF-0204R">
  2735. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2736. source Beyschlag</description>
  2737. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2738. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2739. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2740. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2741. <wire x1="0.938" y1="0.6" x2="-0.938" y2="0.6" width="0.2032" layer="21"/>
  2742. <wire x1="-0.938" y1="-0.6" x2="0.938" y2="-0.6" width="0.2032" layer="21"/>
  2743. <smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2744. <smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2745. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2746. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2747. </package>
  2748. <package name="MINI_MELF-0204W">
  2749. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;
  2750. source Beyschlag</description>
  2751. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2752. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2753. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2754. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2755. <wire x1="0.684" y1="0.6" x2="-0.684" y2="0.6" width="0.2032" layer="21"/>
  2756. <wire x1="-0.684" y1="-0.6" x2="0.684" y2="-0.6" width="0.2032" layer="21"/>
  2757. <smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2758. <smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2759. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2760. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2761. </package>
  2762. <package name="MINI_MELF-0207R">
  2763. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2764. source Beyschlag</description>
  2765. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  2766. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  2767. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  2768. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  2769. <wire x1="1.2125" y1="1" x2="-1.2125" y2="1" width="0.2032" layer="21"/>
  2770. <wire x1="-1.2125" y1="-1" x2="1.2125" y2="-1" width="0.2032" layer="21"/>
  2771. <smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2772. <smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2773. <text x="-2.2225" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  2774. <text x="-2.2225" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2775. </package>
  2776. <package name="MINI_MELF-0207W">
  2777. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;
  2778. source Beyschlag</description>
  2779. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  2780. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  2781. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  2782. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  2783. <wire x1="1.149" y1="1" x2="-1.149" y2="1" width="0.2032" layer="21"/>
  2784. <wire x1="-1.149" y1="-1" x2="1.149" y2="-1" width="0.2032" layer="21"/>
  2785. <smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  2786. <smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  2787. <text x="-2.54" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  2788. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2789. </package>
  2790. <package name="0922V">
  2791. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2792. type 0922, grid 7.5 mm</description>
  2793. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2794. <wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="51"/>
  2795. <circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
  2796. <circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
  2797. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  2798. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2799. <text x="-0.508" y="1.6764" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2800. <text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2801. <text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
  2802. <rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2803. </package>
  2804. <package name="RDH/15">
  2805. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2806. type RDH, grid 15 mm</description>
  2807. <wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="51"/>
  2808. <wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  2809. <wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  2810. <wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  2811. <wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  2812. <wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  2813. <wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
  2814. <wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  2815. <wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
  2816. <wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  2817. <wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  2818. <wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
  2819. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="51"/>
  2820. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
  2821. <wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
  2822. <wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="51"/>
  2823. <wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
  2824. <wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="51"/>
  2825. <wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2826. <wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2827. <wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2828. <wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2829. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2830. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2831. <text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2832. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2833. <text x="4.572" y="-1.7272" size="1.27" layer="51" ratio="10" rot="R90">RDH</text>
  2834. <rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="51"/>
  2835. <rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="51"/>
  2836. </package>
  2837. <package name="MINI_MELF-0102AX">
  2838. <description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>
  2839. <circle x="0" y="0" radius="0.6" width="0" layer="51"/>
  2840. <circle x="0" y="0" radius="0.6" width="0" layer="52"/>
  2841. <smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
  2842. <smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
  2843. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2844. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2845. <hole x="0" y="0" drill="1.3"/>
  2846. </package>
  2847. <package name="R0201">
  2848. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  2849. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  2850. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  2851. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  2852. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  2853. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  2854. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  2855. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  2856. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  2857. </package>
  2858. <package name="VTA52">
  2859. <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;
  2860. MIL SIZE RBR52&lt;br&gt;
  2861. Source: VISHAY .. vta56.pdf</description>
  2862. <wire x1="-15.24" y1="0" x2="-13.97" y2="0" width="0.6096" layer="51"/>
  2863. <wire x1="12.6225" y1="0.025" x2="12.6225" y2="4.725" width="0.1524" layer="21"/>
  2864. <wire x1="12.6225" y1="4.725" x2="-12.6225" y2="4.725" width="0.1524" layer="21"/>
  2865. <wire x1="-12.6225" y1="4.725" x2="-12.6225" y2="0.025" width="0.1524" layer="21"/>
  2866. <wire x1="-12.6225" y1="0.025" x2="-12.6225" y2="-4.65" width="0.1524" layer="21"/>
  2867. <wire x1="-12.6225" y1="-4.65" x2="12.6225" y2="-4.65" width="0.1524" layer="21"/>
  2868. <wire x1="12.6225" y1="-4.65" x2="12.6225" y2="0.025" width="0.1524" layer="21"/>
  2869. <wire x1="13.97" y1="0" x2="15.24" y2="0" width="0.6096" layer="51"/>
  2870. <pad name="1" x="-15.24" y="0" drill="1.1" shape="octagon"/>
  2871. <pad name="2" x="15.24" y="0" drill="1.1" shape="octagon"/>
  2872. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2873. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2874. <rectangle x1="-13.97" y1="-0.3048" x2="-12.5675" y2="0.3048" layer="21"/>
  2875. <rectangle x1="12.5675" y1="-0.3048" x2="13.97" y2="0.3048" layer="21"/>
  2876. </package>
  2877. <package name="VTA53">
  2878. <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;
  2879. MIL SIZE RBR53&lt;br&gt;
  2880. Source: VISHAY .. vta56.pdf</description>
  2881. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  2882. <wire x1="9.8975" y1="0" x2="9.8975" y2="4.7" width="0.1524" layer="21"/>
  2883. <wire x1="9.8975" y1="4.7" x2="-9.8975" y2="4.7" width="0.1524" layer="21"/>
  2884. <wire x1="-9.8975" y1="4.7" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  2885. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-4.675" width="0.1524" layer="21"/>
  2886. <wire x1="-9.8975" y1="-4.675" x2="9.8975" y2="-4.675" width="0.1524" layer="21"/>
  2887. <wire x1="9.8975" y1="-4.675" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  2888. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  2889. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  2890. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  2891. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2892. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2893. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  2894. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  2895. </package>
  2896. <package name="VTA54">
  2897. <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;
  2898. MIL SIZE RBR54&lt;br&gt;
  2899. Source: VISHAY .. vta56.pdf</description>
  2900. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  2901. <wire x1="9.8975" y1="0" x2="9.8975" y2="3.3" width="0.1524" layer="21"/>
  2902. <wire x1="9.8975" y1="3.3" x2="-9.8975" y2="3.3" width="0.1524" layer="21"/>
  2903. <wire x1="-9.8975" y1="3.3" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  2904. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-3.3" width="0.1524" layer="21"/>
  2905. <wire x1="-9.8975" y1="-3.3" x2="9.8975" y2="-3.3" width="0.1524" layer="21"/>
  2906. <wire x1="9.8975" y1="-3.3" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  2907. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  2908. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  2909. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  2910. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2911. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2912. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  2913. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  2914. </package>
  2915. <package name="VTA55">
  2916. <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;
  2917. MIL SIZE RBR55&lt;br&gt;
  2918. Source: VISHAY .. vta56.pdf</description>
  2919. <wire x1="-8.255" y1="0" x2="-6.985" y2="0" width="0.6096" layer="51"/>
  2920. <wire x1="6.405" y1="0" x2="6.405" y2="3.3" width="0.1524" layer="21"/>
  2921. <wire x1="6.405" y1="3.3" x2="-6.405" y2="3.3" width="0.1524" layer="21"/>
  2922. <wire x1="-6.405" y1="3.3" x2="-6.405" y2="0" width="0.1524" layer="21"/>
  2923. <wire x1="-6.405" y1="0" x2="-6.405" y2="-3.3" width="0.1524" layer="21"/>
  2924. <wire x1="-6.405" y1="-3.3" x2="6.405" y2="-3.3" width="0.1524" layer="21"/>
  2925. <wire x1="6.405" y1="-3.3" x2="6.405" y2="0" width="0.1524" layer="21"/>
  2926. <wire x1="6.985" y1="0" x2="8.255" y2="0" width="0.6096" layer="51"/>
  2927. <pad name="1" x="-8.255" y="0" drill="1.1" shape="octagon"/>
  2928. <pad name="2" x="8.255" y="0" drill="1.1" shape="octagon"/>
  2929. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2930. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2931. <rectangle x1="-6.985" y1="-0.3048" x2="-6.35" y2="0.3048" layer="21"/>
  2932. <rectangle x1="6.35" y1="-0.3048" x2="6.985" y2="0.3048" layer="21"/>
  2933. </package>
  2934. <package name="VTA56">
  2935. <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;
  2936. MIL SIZE RBR56&lt;br&gt;
  2937. Source: VISHAY .. vta56.pdf</description>
  2938. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2939. <wire x1="4.5" y1="0" x2="4.5" y2="3.3" width="0.1524" layer="21"/>
  2940. <wire x1="4.5" y1="3.3" x2="-4.5" y2="3.3" width="0.1524" layer="21"/>
  2941. <wire x1="-4.5" y1="3.3" x2="-4.5" y2="0" width="0.1524" layer="21"/>
  2942. <wire x1="-4.5" y1="0" x2="-4.5" y2="-3.3" width="0.1524" layer="21"/>
  2943. <wire x1="-4.5" y1="-3.3" x2="4.5" y2="-3.3" width="0.1524" layer="21"/>
  2944. <wire x1="4.5" y1="-3.3" x2="4.5" y2="0" width="0.1524" layer="21"/>
  2945. <wire x1="5.08" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  2946. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  2947. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  2948. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2949. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2950. <rectangle x1="-5.08" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  2951. <rectangle x1="4.445" y1="-0.3048" x2="5.08" y2="0.3048" layer="21"/>
  2952. </package>
  2953. <package name="VMTA55">
  2954. <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;
  2955. MIL SIZE RNC55&lt;br&gt;
  2956. Source: VISHAY .. vta56.pdf</description>
  2957. <wire x1="-5.08" y1="0" x2="-4.26" y2="0" width="0.6096" layer="51"/>
  2958. <wire x1="3.3375" y1="-1.45" x2="3.3375" y2="1.45" width="0.1524" layer="21"/>
  2959. <wire x1="3.3375" y1="1.45" x2="-3.3625" y2="1.45" width="0.1524" layer="21"/>
  2960. <wire x1="-3.3625" y1="1.45" x2="-3.3625" y2="-1.45" width="0.1524" layer="21"/>
  2961. <wire x1="-3.3625" y1="-1.45" x2="3.3375" y2="-1.45" width="0.1524" layer="21"/>
  2962. <wire x1="4.235" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  2963. <pad name="1" x="-5.08" y="0" drill="1.1" shape="octagon"/>
  2964. <pad name="2" x="5.08" y="0" drill="1.1" shape="octagon"/>
  2965. <text x="-3.175" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2966. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2967. <rectangle x1="-4.26" y1="-0.3048" x2="-3.3075" y2="0.3048" layer="21"/>
  2968. <rectangle x1="3.2825" y1="-0.3048" x2="4.235" y2="0.3048" layer="21"/>
  2969. </package>
  2970. <package name="VMTB60">
  2971. <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;
  2972. MIL SIZE RNC60&lt;br&gt;
  2973. Source: VISHAY .. vta56.pdf</description>
  2974. <wire x1="-6.35" y1="0" x2="-5.585" y2="0" width="0.6096" layer="51"/>
  2975. <wire x1="4.6875" y1="-1.95" x2="4.6875" y2="1.95" width="0.1524" layer="21"/>
  2976. <wire x1="4.6875" y1="1.95" x2="-4.6875" y2="1.95" width="0.1524" layer="21"/>
  2977. <wire x1="-4.6875" y1="1.95" x2="-4.6875" y2="-1.95" width="0.1524" layer="21"/>
  2978. <wire x1="-4.6875" y1="-1.95" x2="4.6875" y2="-1.95" width="0.1524" layer="21"/>
  2979. <wire x1="5.585" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  2980. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  2981. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  2982. <text x="-4.445" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2983. <text x="-4.445" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2984. <rectangle x1="-5.585" y1="-0.3048" x2="-4.6325" y2="0.3048" layer="21"/>
  2985. <rectangle x1="4.6325" y1="-0.3048" x2="5.585" y2="0.3048" layer="21"/>
  2986. </package>
  2987. <package name="R4527">
  2988. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  2989. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  2990. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  2991. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  2992. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  2993. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  2994. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  2995. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  2996. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  2997. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  2998. </package>
  2999. <package name="WSC0001">
  3000. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3001. Source: VISHAY wscwsn.pdf</description>
  3002. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3003. <wire x1="-3.075" y1="-1.8" x2="3.075" y2="-1.8" width="0.2032" layer="21"/>
  3004. <wire x1="3.075" y1="-1.8" x2="3.075" y2="1.8" width="0.2032" layer="51"/>
  3005. <wire x1="3.075" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3006. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3007. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3008. <wire x1="3.075" y1="1.606" x2="3.075" y2="1.8" width="0.2032" layer="21"/>
  3009. <wire x1="3.075" y1="-1.8" x2="3.075" y2="-1.606" width="0.2032" layer="21"/>
  3010. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3011. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3012. <text x="-2.544" y="2.229" size="1.27" layer="25">&gt;NAME</text>
  3013. <text x="-2.544" y="-3.501" size="1.27" layer="27">&gt;VALUE</text>
  3014. </package>
  3015. <package name="WSC0002">
  3016. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3017. Source: VISHAY wscwsn.pdf</description>
  3018. <wire x1="-5.55" y1="3.375" x2="-5.55" y2="-3.375" width="0.2032" layer="51"/>
  3019. <wire x1="-5.55" y1="-3.375" x2="5.55" y2="-3.375" width="0.2032" layer="21"/>
  3020. <wire x1="5.55" y1="-3.375" x2="5.55" y2="3.375" width="0.2032" layer="51"/>
  3021. <wire x1="5.55" y1="3.375" x2="-5.55" y2="3.375" width="0.2032" layer="21"/>
  3022. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3023. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3024. <text x="-5.65" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3025. <text x="-5.65" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3026. </package>
  3027. <package name="WSC01/2">
  3028. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3029. Source: VISHAY wscwsn.pdf</description>
  3030. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="-1.475" width="0.2032" layer="51"/>
  3031. <wire x1="-2.45" y1="-1.475" x2="2.45" y2="-1.475" width="0.2032" layer="21"/>
  3032. <wire x1="2.45" y1="-1.475" x2="2.45" y2="1.475" width="0.2032" layer="51"/>
  3033. <wire x1="2.45" y1="1.475" x2="-2.45" y2="1.475" width="0.2032" layer="21"/>
  3034. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="1.106" width="0.2032" layer="21"/>
  3035. <wire x1="-2.45" y1="-1.106" x2="-2.45" y2="-1.475" width="0.2032" layer="21"/>
  3036. <wire x1="2.45" y1="1.106" x2="2.45" y2="1.475" width="0.2032" layer="21"/>
  3037. <wire x1="2.45" y1="-1.475" x2="2.45" y2="-1.106" width="0.2032" layer="21"/>
  3038. <smd name="1" x="-2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3039. <smd name="2" x="2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3040. <text x="-2.544" y="1.904" size="1.27" layer="25">&gt;NAME</text>
  3041. <text x="-2.544" y="-3.176" size="1.27" layer="27">&gt;VALUE</text>
  3042. </package>
  3043. <package name="WSC2515">
  3044. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3045. Source: VISHAY wscwsn.pdf</description>
  3046. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3047. <wire x1="-3.075" y1="-1.8" x2="3.05" y2="-1.8" width="0.2032" layer="21"/>
  3048. <wire x1="3.05" y1="-1.8" x2="3.05" y2="1.8" width="0.2032" layer="51"/>
  3049. <wire x1="3.05" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3050. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3051. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3052. <wire x1="3.05" y1="1.606" x2="3.05" y2="1.8" width="0.2032" layer="21"/>
  3053. <wire x1="3.05" y1="-1.8" x2="3.05" y2="-1.606" width="0.2032" layer="21"/>
  3054. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3055. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3056. <text x="-3.2" y="2.15" size="1.27" layer="25">&gt;NAME</text>
  3057. <text x="-3.2" y="-3.4" size="1.27" layer="27">&gt;VALUE</text>
  3058. </package>
  3059. <package name="WSC4527">
  3060. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3061. Source: VISHAY wscwsn.pdf</description>
  3062. <wire x1="-5.675" y1="3.4" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3063. <wire x1="-5.675" y1="-3.375" x2="5.675" y2="-3.375" width="0.2032" layer="21"/>
  3064. <wire x1="5.675" y1="-3.375" x2="5.675" y2="3.4" width="0.2032" layer="51"/>
  3065. <wire x1="5.675" y1="3.4" x2="-5.675" y2="3.4" width="0.2032" layer="21"/>
  3066. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3067. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3068. <text x="-5.775" y="3.925" size="1.27" layer="25">&gt;NAME</text>
  3069. <text x="-5.775" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3070. </package>
  3071. <package name="WSC6927">
  3072. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3073. Source: VISHAY wscwsn.pdf</description>
  3074. <wire x1="-8.65" y1="3.375" x2="-8.65" y2="-3.375" width="0.2032" layer="51"/>
  3075. <wire x1="-8.65" y1="-3.375" x2="8.65" y2="-3.375" width="0.2032" layer="21"/>
  3076. <wire x1="8.65" y1="-3.375" x2="8.65" y2="3.375" width="0.2032" layer="51"/>
  3077. <wire x1="8.65" y1="3.375" x2="-8.65" y2="3.375" width="0.2032" layer="21"/>
  3078. <smd name="1" x="-7.95" y="0.025" dx="3.94" dy="5.97" layer="1"/>
  3079. <smd name="2" x="7.95" y="0" dx="3.94" dy="5.97" layer="1"/>
  3080. <text x="-8.75" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3081. <text x="-8.75" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3082. </package>
  3083. <package name="R1218">
  3084. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  3085. Source: http://www.vishay.com .. dcrcw.pdf</description>
  3086. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  3087. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  3088. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3089. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3090. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3091. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3092. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  3093. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  3094. </package>
  3095. <package name="1812X7R">
  3096. <description>&lt;b&gt;Chip Monolithic Ceramic Capacitors&lt;/b&gt; Medium Voltage High Capacitance for General Use&lt;p&gt;
  3097. Source: http://www.murata.com .. GRM43DR72E224KW01.pdf</description>
  3098. <wire x1="-1.1" y1="1.5" x2="1.1" y2="1.5" width="0.2032" layer="51"/>
  3099. <wire x1="1.1" y1="-1.5" x2="-1.1" y2="-1.5" width="0.2032" layer="51"/>
  3100. <wire x1="-0.6" y1="1.5" x2="0.6" y2="1.5" width="0.2032" layer="21"/>
  3101. <wire x1="0.6" y1="-1.5" x2="-0.6" y2="-1.5" width="0.2032" layer="21"/>
  3102. <smd name="1" x="-1.425" y="0" dx="0.8" dy="3.5" layer="1"/>
  3103. <smd name="2" x="1.425" y="0" dx="0.8" dy="3.5" layer="1" rot="R180"/>
  3104. <text x="-1.9456" y="1.9958" size="1.27" layer="25">&gt;NAME</text>
  3105. <text x="-1.9456" y="-3.7738" size="1.27" layer="27">&gt;VALUE</text>
  3106. <rectangle x1="-1.4" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
  3107. <rectangle x1="1.1" y1="-1.6" x2="1.4" y2="1.6" layer="51" rot="R180"/>
  3108. </package>
  3109. <package name="PRL1632">
  3110. <description>&lt;b&gt;PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)&lt;/b&gt;&lt;p&gt;
  3111. Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf</description>
  3112. <wire x1="0.7275" y1="-1.5228" x2="-0.7277" y2="-1.5228" width="0.1524" layer="51"/>
  3113. <wire x1="0.7275" y1="1.5228" x2="-0.7152" y2="1.5228" width="0.1524" layer="51"/>
  3114. <smd name="2" x="0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3115. <smd name="1" x="-0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3116. <text x="-1.4" y="1.8" size="1.27" layer="25">&gt;NAME</text>
  3117. <text x="-1.4" y="-3" size="1.27" layer="27">&gt;VALUE</text>
  3118. <rectangle x1="-0.8" y1="-1.6" x2="-0.4" y2="1.6" layer="51"/>
  3119. <rectangle x1="0.4" y1="-1.6" x2="0.8" y2="1.6" layer="51"/>
  3120. </package>
  3121. <package name="R01005">
  3122. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3123. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3124. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  3125. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  3126. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  3127. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  3128. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  3129. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  3130. </package>
  3131. <package name="C0402">
  3132. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3133. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  3134. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  3135. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  3136. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  3137. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  3138. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  3139. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  3140. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  3141. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3142. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3143. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  3144. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  3145. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  3146. </package>
  3147. <package name="C0504">
  3148. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3149. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3150. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3151. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3152. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3153. <wire x1="-0.294" y1="0.559" x2="0.294" y2="0.559" width="0.1016" layer="51"/>
  3154. <wire x1="-0.294" y1="-0.559" x2="0.294" y2="-0.559" width="0.1016" layer="51"/>
  3155. <smd name="1" x="-0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3156. <smd name="2" x="0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3157. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3158. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3159. <rectangle x1="-0.6604" y1="-0.6223" x2="-0.2804" y2="0.6276" layer="51"/>
  3160. <rectangle x1="0.2794" y1="-0.6223" x2="0.6594" y2="0.6276" layer="51"/>
  3161. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  3162. </package>
  3163. <package name="C0603">
  3164. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3165. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3166. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3167. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3168. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3169. <wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
  3170. <wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
  3171. <smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3172. <smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3173. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3174. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3175. <rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
  3176. <rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
  3177. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  3178. </package>
  3179. <package name="C0805">
  3180. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;</description>
  3181. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  3182. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  3183. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  3184. <wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
  3185. <wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
  3186. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  3187. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  3188. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  3189. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3190. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3191. <rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
  3192. <rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
  3193. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  3194. </package>
  3195. <package name="C1206">
  3196. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3197. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  3198. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  3199. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  3200. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  3201. <wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
  3202. <wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
  3203. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3204. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3205. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3206. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3207. <rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
  3208. <rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
  3209. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  3210. </package>
  3211. <package name="C1210">
  3212. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3213. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  3214. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  3215. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  3216. <wire x1="-0.9652" y1="1.2446" x2="0.9652" y2="1.2446" width="0.1016" layer="51"/>
  3217. <wire x1="-0.9652" y1="-1.2446" x2="0.9652" y2="-1.2446" width="0.1016" layer="51"/>
  3218. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  3219. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3220. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3221. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  3222. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  3223. <rectangle x1="-1.7018" y1="-1.2954" x2="-0.9517" y2="1.3045" layer="51"/>
  3224. <rectangle x1="0.9517" y1="-1.3045" x2="1.7018" y2="1.2954" layer="51"/>
  3225. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  3226. </package>
  3227. <package name="C1310">
  3228. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3229. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3230. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3231. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3232. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3233. <wire x1="-0.294" y1="0.559" x2="0.294" y2="0.559" width="0.1016" layer="51"/>
  3234. <wire x1="-0.294" y1="-0.559" x2="0.294" y2="-0.559" width="0.1016" layer="51"/>
  3235. <smd name="1" x="-0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3236. <smd name="2" x="0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3237. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3238. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3239. <rectangle x1="-0.6604" y1="-0.6223" x2="-0.2804" y2="0.6276" layer="51"/>
  3240. <rectangle x1="0.2794" y1="-0.6223" x2="0.6594" y2="0.6276" layer="51"/>
  3241. <rectangle x1="-0.1001" y1="-0.3" x2="0.1001" y2="0.3" layer="35"/>
  3242. </package>
  3243. <package name="C1608">
  3244. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3245. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3246. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3247. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3248. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3249. <wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
  3250. <wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
  3251. <smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3252. <smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3253. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3254. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3255. <rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
  3256. <rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
  3257. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  3258. </package>
  3259. <package name="C1812">
  3260. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3261. <wire x1="-2.973" y1="1.983" x2="2.973" y2="1.983" width="0.0508" layer="39"/>
  3262. <wire x1="2.973" y1="-1.983" x2="-2.973" y2="-1.983" width="0.0508" layer="39"/>
  3263. <wire x1="-2.973" y1="-1.983" x2="-2.973" y2="1.983" width="0.0508" layer="39"/>
  3264. <wire x1="-1.4732" y1="1.6002" x2="1.4732" y2="1.6002" width="0.1016" layer="51"/>
  3265. <wire x1="-1.4478" y1="-1.6002" x2="1.4732" y2="-1.6002" width="0.1016" layer="51"/>
  3266. <wire x1="2.973" y1="1.983" x2="2.973" y2="-1.983" width="0.0508" layer="39"/>
  3267. <smd name="1" x="-1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3268. <smd name="2" x="1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3269. <text x="-1.905" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3270. <text x="-1.905" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3271. <rectangle x1="-2.3876" y1="-1.651" x2="-1.4376" y2="1.649" layer="51"/>
  3272. <rectangle x1="1.4478" y1="-1.651" x2="2.3978" y2="1.649" layer="51"/>
  3273. <rectangle x1="-0.3" y1="-0.4001" x2="0.3" y2="0.4001" layer="35"/>
  3274. </package>
  3275. <package name="C1825">
  3276. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3277. <wire x1="-2.973" y1="3.483" x2="2.973" y2="3.483" width="0.0508" layer="39"/>
  3278. <wire x1="2.973" y1="-3.483" x2="-2.973" y2="-3.483" width="0.0508" layer="39"/>
  3279. <wire x1="-2.973" y1="-3.483" x2="-2.973" y2="3.483" width="0.0508" layer="39"/>
  3280. <wire x1="-1.4986" y1="3.2766" x2="1.4732" y2="3.2766" width="0.1016" layer="51"/>
  3281. <wire x1="-1.4732" y1="-3.2766" x2="1.4986" y2="-3.2766" width="0.1016" layer="51"/>
  3282. <wire x1="2.973" y1="3.483" x2="2.973" y2="-3.483" width="0.0508" layer="39"/>
  3283. <smd name="1" x="-1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3284. <smd name="2" x="1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3285. <text x="-1.905" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3286. <text x="-1.905" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3287. <rectangle x1="-2.413" y1="-3.3528" x2="-1.463" y2="3.3472" layer="51"/>
  3288. <rectangle x1="1.4478" y1="-3.3528" x2="2.3978" y2="3.3472" layer="51"/>
  3289. <rectangle x1="-0.7" y1="-0.7" x2="0.7" y2="0.7" layer="35"/>
  3290. </package>
  3291. <package name="C2012">
  3292. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3293. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  3294. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  3295. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  3296. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  3297. <wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
  3298. <wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
  3299. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  3300. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  3301. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3302. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3303. <rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
  3304. <rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
  3305. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  3306. </package>
  3307. <package name="C3216">
  3308. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3309. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  3310. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  3311. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  3312. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  3313. <wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
  3314. <wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
  3315. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3316. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3317. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3318. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3319. <rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
  3320. <rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
  3321. <rectangle x1="-0.3" y1="-0.5001" x2="0.3" y2="0.5001" layer="35"/>
  3322. </package>
  3323. <package name="C3225">
  3324. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3325. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  3326. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  3327. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  3328. <wire x1="-0.9652" y1="1.2446" x2="0.9652" y2="1.2446" width="0.1016" layer="51"/>
  3329. <wire x1="-0.9652" y1="-1.2446" x2="0.9652" y2="-1.2446" width="0.1016" layer="51"/>
  3330. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  3331. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3332. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3333. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  3334. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  3335. <rectangle x1="-1.7018" y1="-1.2954" x2="-0.9517" y2="1.3045" layer="51"/>
  3336. <rectangle x1="0.9517" y1="-1.3045" x2="1.7018" y2="1.2954" layer="51"/>
  3337. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  3338. </package>
  3339. <package name="C4532">
  3340. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3341. <wire x1="-2.973" y1="1.983" x2="2.973" y2="1.983" width="0.0508" layer="39"/>
  3342. <wire x1="2.973" y1="-1.983" x2="-2.973" y2="-1.983" width="0.0508" layer="39"/>
  3343. <wire x1="-2.973" y1="-1.983" x2="-2.973" y2="1.983" width="0.0508" layer="39"/>
  3344. <wire x1="-1.4732" y1="1.6002" x2="1.4732" y2="1.6002" width="0.1016" layer="51"/>
  3345. <wire x1="-1.4478" y1="-1.6002" x2="1.4732" y2="-1.6002" width="0.1016" layer="51"/>
  3346. <wire x1="2.973" y1="1.983" x2="2.973" y2="-1.983" width="0.0508" layer="39"/>
  3347. <smd name="1" x="-1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3348. <smd name="2" x="1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3349. <text x="-1.905" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3350. <text x="-1.905" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3351. <rectangle x1="-2.3876" y1="-1.651" x2="-1.4376" y2="1.649" layer="51"/>
  3352. <rectangle x1="1.4478" y1="-1.651" x2="2.3978" y2="1.649" layer="51"/>
  3353. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  3354. </package>
  3355. <package name="C4564">
  3356. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3357. <wire x1="-2.973" y1="3.483" x2="2.973" y2="3.483" width="0.0508" layer="39"/>
  3358. <wire x1="2.973" y1="-3.483" x2="-2.973" y2="-3.483" width="0.0508" layer="39"/>
  3359. <wire x1="-2.973" y1="-3.483" x2="-2.973" y2="3.483" width="0.0508" layer="39"/>
  3360. <wire x1="-1.4986" y1="3.2766" x2="1.4732" y2="3.2766" width="0.1016" layer="51"/>
  3361. <wire x1="-1.4732" y1="-3.2766" x2="1.4986" y2="-3.2766" width="0.1016" layer="51"/>
  3362. <wire x1="2.973" y1="3.483" x2="2.973" y2="-3.483" width="0.0508" layer="39"/>
  3363. <smd name="1" x="-1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3364. <smd name="2" x="1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3365. <text x="-1.905" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3366. <text x="-1.905" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3367. <rectangle x1="-2.413" y1="-3.3528" x2="-1.463" y2="3.3472" layer="51"/>
  3368. <rectangle x1="1.4478" y1="-3.3528" x2="2.3978" y2="3.3472" layer="51"/>
  3369. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  3370. </package>
  3371. <package name="C025-024X044">
  3372. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3373. grid 2.5 mm, outline 2.4 x 4.4 mm</description>
  3374. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="21"/>
  3375. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3376. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3377. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  3378. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="21"/>
  3379. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  3380. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  3381. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  3382. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  3383. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  3384. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="51"/>
  3385. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="51"/>
  3386. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3387. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3388. <text x="-1.778" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3389. <text x="-1.778" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3390. </package>
  3391. <package name="C025-025X050">
  3392. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3393. grid 2.5 mm, outline 2.5 x 5 mm</description>
  3394. <wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
  3395. <wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
  3396. <wire x1="2.413" y1="1.016" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
  3397. <wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  3398. <wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3399. <wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3400. <wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3401. <wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3402. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3403. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3404. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3405. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3406. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3407. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3408. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3409. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3410. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3411. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3412. <text x="-2.286" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3413. <text x="-2.286" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3414. </package>
  3415. <package name="C025-030X050">
  3416. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3417. grid 2.5 mm, outline 3 x 5 mm</description>
  3418. <wire x1="-2.159" y1="1.524" x2="2.159" y2="1.524" width="0.1524" layer="21"/>
  3419. <wire x1="2.159" y1="-1.524" x2="-2.159" y2="-1.524" width="0.1524" layer="21"/>
  3420. <wire x1="2.413" y1="1.27" x2="2.413" y2="-1.27" width="0.1524" layer="21"/>
  3421. <wire x1="-2.413" y1="1.27" x2="-2.413" y2="-1.27" width="0.1524" layer="21"/>
  3422. <wire x1="2.159" y1="1.524" x2="2.413" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3423. <wire x1="-2.413" y1="1.27" x2="-2.159" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3424. <wire x1="2.159" y1="-1.524" x2="2.413" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3425. <wire x1="-2.413" y1="-1.27" x2="-2.159" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3426. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3427. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3428. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3429. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3430. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3431. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3432. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3433. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3434. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3435. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3436. <text x="-2.286" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3437. <text x="-2.286" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3438. </package>
  3439. <package name="C025-040X050">
  3440. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3441. grid 2.5 mm, outline 4 x 5 mm</description>
  3442. <wire x1="-2.159" y1="1.905" x2="2.159" y2="1.905" width="0.1524" layer="21"/>
  3443. <wire x1="2.159" y1="-1.905" x2="-2.159" y2="-1.905" width="0.1524" layer="21"/>
  3444. <wire x1="2.413" y1="1.651" x2="2.413" y2="-1.651" width="0.1524" layer="21"/>
  3445. <wire x1="-2.413" y1="1.651" x2="-2.413" y2="-1.651" width="0.1524" layer="21"/>
  3446. <wire x1="2.159" y1="1.905" x2="2.413" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  3447. <wire x1="-2.413" y1="1.651" x2="-2.159" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  3448. <wire x1="2.159" y1="-1.905" x2="2.413" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  3449. <wire x1="-2.413" y1="-1.651" x2="-2.159" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  3450. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3451. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3452. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3453. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3454. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3455. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3456. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3457. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3458. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3459. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3460. <text x="-2.286" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3461. <text x="-2.286" y="-3.429" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3462. </package>
  3463. <package name="C025-050X050">
  3464. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3465. grid 2.5 mm, outline 5 x 5 mm</description>
  3466. <wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
  3467. <wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
  3468. <wire x1="2.413" y1="2.032" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
  3469. <wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
  3470. <wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3471. <wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3472. <wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3473. <wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3474. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3475. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3476. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3477. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3478. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3479. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3480. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3481. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3482. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3483. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3484. <text x="-2.286" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3485. <text x="-2.286" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3486. </package>
  3487. <package name="C025-060X050">
  3488. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3489. grid 2.5 mm, outline 6 x 5 mm</description>
  3490. <wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
  3491. <wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
  3492. <wire x1="2.413" y1="2.54" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
  3493. <wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
  3494. <wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3495. <wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  3496. <wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3497. <wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  3498. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3499. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3500. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3501. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3502. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3503. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3504. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3505. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3506. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3507. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3508. <text x="-2.286" y="3.048" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3509. <text x="-2.032" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3510. </package>
  3511. <package name="C025_050-024X070">
  3512. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3513. grid 2.5 mm + 5 mm, outline 2.4 x 7 mm</description>
  3514. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="51"/>
  3515. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3516. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3517. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  3518. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="51"/>
  3519. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  3520. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  3521. <wire x1="-4.191" y1="-1.143" x2="-3.9624" y2="-1.143" width="0.1524" layer="21"/>
  3522. <wire x1="-4.191" y1="1.143" x2="-3.9624" y2="1.143" width="0.1524" layer="21"/>
  3523. <wire x1="-4.699" y1="-0.635" x2="-4.191" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3524. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  3525. <wire x1="-4.699" y1="0.635" x2="-4.191" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3526. <wire x1="-4.699" y1="-0.635" x2="-4.699" y2="0.635" width="0.1524" layer="21"/>
  3527. <wire x1="-3.429" y1="1.143" x2="-2.5654" y2="1.143" width="0.1524" layer="21"/>
  3528. <wire x1="-3.429" y1="-1.143" x2="-2.5654" y2="-1.143" width="0.1524" layer="21"/>
  3529. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  3530. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  3531. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="51"/>
  3532. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="51"/>
  3533. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  3534. <pad name="2" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3535. <pad name="3" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3536. <text x="-3.81" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3537. <text x="-3.81" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3538. </package>
  3539. <package name="C025_050-025X075">
  3540. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3541. grid 2.5 + 5 mm, outline 2.5 x 7.5 mm</description>
  3542. <wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
  3543. <wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
  3544. <wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  3545. <wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3546. <wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3547. <wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3548. <wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3549. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3550. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3551. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3552. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3553. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3554. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3555. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3556. <wire x1="4.953" y1="1.016" x2="4.953" y2="-1.016" width="0.1524" layer="21"/>
  3557. <wire x1="4.699" y1="1.27" x2="4.953" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3558. <wire x1="4.699" y1="-1.27" x2="4.953" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3559. <wire x1="2.794" y1="1.27" x2="4.699" y2="1.27" width="0.1524" layer="21"/>
  3560. <wire x1="4.699" y1="-1.27" x2="2.794" y2="-1.27" width="0.1524" layer="21"/>
  3561. <wire x1="2.413" y1="1.016" x2="2.413" y2="0.762" width="0.1524" layer="21"/>
  3562. <wire x1="2.413" y1="-0.762" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
  3563. <wire x1="2.413" y1="0.254" x2="2.413" y2="-0.254" width="0.1524" layer="21"/>
  3564. <wire x1="1.778" y1="0" x2="2.286" y2="0" width="0.1524" layer="51"/>
  3565. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3566. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3567. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3568. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3569. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3570. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3571. <text x="-2.159" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3572. <text x="-2.159" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3573. </package>
  3574. <package name="C025_050-035X075">
  3575. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3576. grid 2.5 + 5 mm, outline 3.5 x 7.5 mm</description>
  3577. <wire x1="-2.159" y1="1.778" x2="2.159" y2="1.778" width="0.1524" layer="21"/>
  3578. <wire x1="2.159" y1="-1.778" x2="-2.159" y2="-1.778" width="0.1524" layer="21"/>
  3579. <wire x1="-2.413" y1="1.524" x2="-2.413" y2="-1.524" width="0.1524" layer="21"/>
  3580. <wire x1="2.159" y1="1.778" x2="2.413" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3581. <wire x1="-2.413" y1="1.524" x2="-2.159" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  3582. <wire x1="2.159" y1="-1.778" x2="2.413" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3583. <wire x1="-2.413" y1="-1.524" x2="-2.159" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  3584. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3585. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3586. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3587. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3588. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3589. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3590. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3591. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  3592. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3593. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3594. <wire x1="2.794" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  3595. <wire x1="4.699" y1="-1.778" x2="2.794" y2="-1.778" width="0.1524" layer="21"/>
  3596. <wire x1="2.413" y1="1.524" x2="2.413" y2="1.016" width="0.1524" layer="21"/>
  3597. <wire x1="2.413" y1="-1.016" x2="2.413" y2="-1.524" width="0.1524" layer="21"/>
  3598. <wire x1="2.413" y1="0.508" x2="2.413" y2="-0.508" width="0.1524" layer="21"/>
  3599. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  3600. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3601. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3602. <wire x1="2.286" y1="0" x2="1.778" y2="0" width="0.1524" layer="51"/>
  3603. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3604. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3605. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3606. <text x="-2.286" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3607. <text x="-2.286" y="-3.302" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3608. </package>
  3609. <package name="C025_050-045X075">
  3610. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3611. grid 2.5 + 5 mm, outline 4.5 x 7.5 mm</description>
  3612. <wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
  3613. <wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
  3614. <wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
  3615. <wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3616. <wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3617. <wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3618. <wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3619. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3620. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3621. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3622. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3623. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3624. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3625. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3626. <wire x1="4.953" y1="2.032" x2="4.953" y2="-2.032" width="0.1524" layer="21"/>
  3627. <wire x1="4.699" y1="2.286" x2="4.953" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3628. <wire x1="4.699" y1="-2.286" x2="4.953" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3629. <wire x1="2.794" y1="2.286" x2="4.699" y2="2.286" width="0.1524" layer="21"/>
  3630. <wire x1="4.699" y1="-2.286" x2="2.794" y2="-2.286" width="0.1524" layer="21"/>
  3631. <wire x1="2.413" y1="2.032" x2="2.413" y2="1.397" width="0.1524" layer="21"/>
  3632. <wire x1="2.413" y1="-1.397" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
  3633. <wire x1="2.413" y1="0.762" x2="2.413" y2="-0.762" width="0.1524" layer="21"/>
  3634. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3635. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3636. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  3637. <wire x1="2.286" y1="0" x2="1.778" y2="0" width="0.1524" layer="51"/>
  3638. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3639. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3640. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3641. <text x="-2.286" y="2.667" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3642. <text x="-2.286" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3643. </package>
  3644. <package name="C025_050-055X075">
  3645. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3646. grid 2.5 + 5 mm, outline 5.5 x 7.5 mm</description>
  3647. <wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
  3648. <wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
  3649. <wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
  3650. <wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3651. <wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  3652. <wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3653. <wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  3654. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3655. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3656. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3657. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3658. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3659. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3660. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3661. <wire x1="4.953" y1="2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
  3662. <wire x1="4.699" y1="2.794" x2="4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3663. <wire x1="4.699" y1="-2.794" x2="4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3664. <wire x1="2.794" y1="2.794" x2="4.699" y2="2.794" width="0.1524" layer="21"/>
  3665. <wire x1="4.699" y1="-2.794" x2="2.794" y2="-2.794" width="0.1524" layer="21"/>
  3666. <wire x1="2.413" y1="2.54" x2="2.413" y2="2.032" width="0.1524" layer="21"/>
  3667. <wire x1="2.413" y1="-2.032" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
  3668. <wire x1="2.413" y1="0.762" x2="2.413" y2="-0.762" width="0.1524" layer="21"/>
  3669. <wire x1="1.778" y1="0" x2="2.286" y2="0" width="0.1524" layer="51"/>
  3670. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3671. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3672. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  3673. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3674. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3675. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3676. <text x="-2.286" y="3.175" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3677. <text x="-2.032" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3678. </package>
  3679. <package name="C050-024X044">
  3680. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3681. grid 5 mm, outline 2.4 x 4.4 mm</description>
  3682. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="51"/>
  3683. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3684. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3685. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  3686. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="51"/>
  3687. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  3688. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  3689. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  3690. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3691. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  3692. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3693. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  3694. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="21"/>
  3695. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="21"/>
  3696. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3697. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3698. <text x="-2.159" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3699. <text x="-2.159" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3700. <rectangle x1="2.159" y1="-0.381" x2="2.54" y2="0.381" layer="51"/>
  3701. <rectangle x1="-2.54" y1="-0.381" x2="-2.159" y2="0.381" layer="51"/>
  3702. </package>
  3703. <package name="C050-025X075">
  3704. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3705. grid 5 mm, outline 2.5 x 7.5 mm</description>
  3706. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3707. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3708. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3709. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3710. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3711. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3712. <wire x1="-3.683" y1="1.016" x2="-3.683" y2="-1.016" width="0.1524" layer="21"/>
  3713. <wire x1="-3.429" y1="-1.27" x2="3.429" y2="-1.27" width="0.1524" layer="21"/>
  3714. <wire x1="3.683" y1="-1.016" x2="3.683" y2="1.016" width="0.1524" layer="21"/>
  3715. <wire x1="3.429" y1="1.27" x2="-3.429" y2="1.27" width="0.1524" layer="21"/>
  3716. <wire x1="3.429" y1="1.27" x2="3.683" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3717. <wire x1="3.429" y1="-1.27" x2="3.683" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3718. <wire x1="-3.683" y1="-1.016" x2="-3.429" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3719. <wire x1="-3.683" y1="1.016" x2="-3.429" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3720. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3721. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3722. <text x="-3.429" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3723. <text x="-3.429" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3724. </package>
  3725. <package name="C050-045X075">
  3726. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3727. grid 5 mm, outline 4.5 x 7.5 mm</description>
  3728. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3729. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3730. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3731. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3732. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3733. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3734. <wire x1="-3.683" y1="2.032" x2="-3.683" y2="-2.032" width="0.1524" layer="21"/>
  3735. <wire x1="-3.429" y1="-2.286" x2="3.429" y2="-2.286" width="0.1524" layer="21"/>
  3736. <wire x1="3.683" y1="-2.032" x2="3.683" y2="2.032" width="0.1524" layer="21"/>
  3737. <wire x1="3.429" y1="2.286" x2="-3.429" y2="2.286" width="0.1524" layer="21"/>
  3738. <wire x1="3.429" y1="2.286" x2="3.683" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3739. <wire x1="3.429" y1="-2.286" x2="3.683" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3740. <wire x1="-3.683" y1="-2.032" x2="-3.429" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3741. <wire x1="-3.683" y1="2.032" x2="-3.429" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3742. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3743. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3744. <text x="-3.556" y="2.667" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3745. <text x="-3.556" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3746. </package>
  3747. <package name="C050-030X075">
  3748. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3749. grid 5 mm, outline 3 x 7.5 mm</description>
  3750. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3751. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3752. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3753. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3754. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3755. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3756. <wire x1="-3.683" y1="1.27" x2="-3.683" y2="-1.27" width="0.1524" layer="21"/>
  3757. <wire x1="-3.429" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  3758. <wire x1="3.683" y1="-1.27" x2="3.683" y2="1.27" width="0.1524" layer="21"/>
  3759. <wire x1="3.429" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  3760. <wire x1="3.429" y1="1.524" x2="3.683" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3761. <wire x1="3.429" y1="-1.524" x2="3.683" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3762. <wire x1="-3.683" y1="-1.27" x2="-3.429" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3763. <wire x1="-3.683" y1="1.27" x2="-3.429" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3764. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3765. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3766. <text x="-3.556" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3767. <text x="-3.556" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3768. </package>
  3769. <package name="C050-050X075">
  3770. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3771. grid 5 mm, outline 5 x 7.5 mm</description>
  3772. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3773. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3774. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3775. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3776. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3777. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3778. <wire x1="-3.683" y1="2.286" x2="-3.683" y2="-2.286" width="0.1524" layer="21"/>
  3779. <wire x1="-3.429" y1="-2.54" x2="3.429" y2="-2.54" width="0.1524" layer="21"/>
  3780. <wire x1="3.683" y1="-2.286" x2="3.683" y2="2.286" width="0.1524" layer="21"/>
  3781. <wire x1="3.429" y1="2.54" x2="-3.429" y2="2.54" width="0.1524" layer="21"/>
  3782. <wire x1="3.429" y1="2.54" x2="3.683" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3783. <wire x1="3.429" y1="-2.54" x2="3.683" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3784. <wire x1="-3.683" y1="-2.286" x2="-3.429" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3785. <wire x1="-3.683" y1="2.286" x2="-3.429" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3786. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3787. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3788. <text x="-3.429" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3789. <text x="-3.175" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3790. </package>
  3791. <package name="C050-055X075">
  3792. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3793. grid 5 mm, outline 5.5 x 7.5 mm</description>
  3794. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3795. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3796. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3797. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3798. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3799. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3800. <wire x1="-3.683" y1="2.54" x2="-3.683" y2="-2.54" width="0.1524" layer="21"/>
  3801. <wire x1="-3.429" y1="-2.794" x2="3.429" y2="-2.794" width="0.1524" layer="21"/>
  3802. <wire x1="3.683" y1="-2.54" x2="3.683" y2="2.54" width="0.1524" layer="21"/>
  3803. <wire x1="3.429" y1="2.794" x2="-3.429" y2="2.794" width="0.1524" layer="21"/>
  3804. <wire x1="3.429" y1="2.794" x2="3.683" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3805. <wire x1="3.429" y1="-2.794" x2="3.683" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3806. <wire x1="-3.683" y1="-2.54" x2="-3.429" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  3807. <wire x1="-3.683" y1="2.54" x2="-3.429" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  3808. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3809. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3810. <text x="-3.429" y="3.175" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3811. <text x="-3.302" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3812. </package>
  3813. <package name="C050-075X075">
  3814. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3815. grid 5 mm, outline 7.5 x 7.5 mm</description>
  3816. <wire x1="-1.524" y1="0" x2="-0.4572" y2="0" width="0.1524" layer="21"/>
  3817. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="0.762" width="0.4064" layer="21"/>
  3818. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="-0.762" width="0.4064" layer="21"/>
  3819. <wire x1="0.4318" y1="0.762" x2="0.4318" y2="0" width="0.4064" layer="21"/>
  3820. <wire x1="0.4318" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3821. <wire x1="0.4318" y1="0" x2="0.4318" y2="-0.762" width="0.4064" layer="21"/>
  3822. <wire x1="-3.683" y1="3.429" x2="-3.683" y2="-3.429" width="0.1524" layer="21"/>
  3823. <wire x1="-3.429" y1="-3.683" x2="3.429" y2="-3.683" width="0.1524" layer="21"/>
  3824. <wire x1="3.683" y1="-3.429" x2="3.683" y2="3.429" width="0.1524" layer="21"/>
  3825. <wire x1="3.429" y1="3.683" x2="-3.429" y2="3.683" width="0.1524" layer="21"/>
  3826. <wire x1="3.429" y1="3.683" x2="3.683" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  3827. <wire x1="3.429" y1="-3.683" x2="3.683" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  3828. <wire x1="-3.683" y1="-3.429" x2="-3.429" y2="-3.683" width="0.1524" layer="21" curve="90"/>
  3829. <wire x1="-3.683" y1="3.429" x2="-3.429" y2="3.683" width="0.1524" layer="21" curve="-90"/>
  3830. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3831. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3832. <text x="-3.429" y="4.064" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3833. <text x="-3.175" y="-2.921" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3834. </package>
  3835. <package name="C050H075X075">
  3836. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3837. Horizontal, grid 5 mm, outline 7.5 x 7.5 mm</description>
  3838. <wire x1="-3.683" y1="7.112" x2="-3.683" y2="0.508" width="0.1524" layer="21"/>
  3839. <wire x1="-3.683" y1="0.508" x2="-3.302" y2="0.508" width="0.1524" layer="21"/>
  3840. <wire x1="-3.302" y1="0.508" x2="-1.778" y2="0.508" width="0.1524" layer="51"/>
  3841. <wire x1="-1.778" y1="0.508" x2="1.778" y2="0.508" width="0.1524" layer="21"/>
  3842. <wire x1="1.778" y1="0.508" x2="3.302" y2="0.508" width="0.1524" layer="51"/>
  3843. <wire x1="3.302" y1="0.508" x2="3.683" y2="0.508" width="0.1524" layer="21"/>
  3844. <wire x1="3.683" y1="0.508" x2="3.683" y2="7.112" width="0.1524" layer="21"/>
  3845. <wire x1="3.175" y1="7.62" x2="-3.175" y2="7.62" width="0.1524" layer="21"/>
  3846. <wire x1="-0.3048" y1="2.413" x2="-0.3048" y2="1.778" width="0.3048" layer="21"/>
  3847. <wire x1="-0.3048" y1="1.778" x2="-0.3048" y2="1.143" width="0.3048" layer="21"/>
  3848. <wire x1="-0.3048" y1="1.778" x2="-1.651" y2="1.778" width="0.1524" layer="21"/>
  3849. <wire x1="0.3302" y1="2.413" x2="0.3302" y2="1.778" width="0.3048" layer="21"/>
  3850. <wire x1="0.3302" y1="1.778" x2="0.3302" y2="1.143" width="0.3048" layer="21"/>
  3851. <wire x1="0.3302" y1="1.778" x2="1.651" y2="1.778" width="0.1524" layer="21"/>
  3852. <wire x1="-3.683" y1="7.112" x2="-3.175" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  3853. <wire x1="3.175" y1="7.62" x2="3.683" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  3854. <wire x1="-2.54" y1="0" x2="-2.54" y2="0.254" width="0.508" layer="51"/>
  3855. <wire x1="2.54" y1="0" x2="2.54" y2="0.254" width="0.508" layer="51"/>
  3856. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3857. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3858. <text x="-3.302" y="8.001" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3859. <text x="-3.175" y="3.175" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3860. <rectangle x1="-2.794" y1="0.127" x2="-2.286" y2="0.508" layer="51"/>
  3861. <rectangle x1="2.286" y1="0.127" x2="2.794" y2="0.508" layer="51"/>
  3862. </package>
  3863. <package name="C075-032X103">
  3864. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3865. grid 7.5 mm, outline 3.2 x 10.3 mm</description>
  3866. <wire x1="4.826" y1="1.524" x2="-4.826" y2="1.524" width="0.1524" layer="21"/>
  3867. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="-1.27" width="0.1524" layer="21"/>
  3868. <wire x1="-4.826" y1="-1.524" x2="4.826" y2="-1.524" width="0.1524" layer="21"/>
  3869. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.1524" layer="21"/>
  3870. <wire x1="4.826" y1="1.524" x2="5.08" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3871. <wire x1="4.826" y1="-1.524" x2="5.08" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3872. <wire x1="-5.08" y1="-1.27" x2="-4.826" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3873. <wire x1="-5.08" y1="1.27" x2="-4.826" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3874. <wire x1="0.508" y1="0" x2="2.54" y2="0" width="0.1524" layer="21"/>
  3875. <wire x1="-2.54" y1="0" x2="-0.508" y2="0" width="0.1524" layer="21"/>
  3876. <wire x1="-0.508" y1="0.889" x2="-0.508" y2="0" width="0.4064" layer="21"/>
  3877. <wire x1="-0.508" y1="0" x2="-0.508" y2="-0.889" width="0.4064" layer="21"/>
  3878. <wire x1="0.508" y1="0.889" x2="0.508" y2="0" width="0.4064" layer="21"/>
  3879. <wire x1="0.508" y1="0" x2="0.508" y2="-0.889" width="0.4064" layer="21"/>
  3880. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  3881. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  3882. <text x="-4.826" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3883. <text x="-4.826" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3884. </package>
  3885. <package name="C075-042X103">
  3886. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3887. grid 7.5 mm, outline 4.2 x 10.3 mm</description>
  3888. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  3889. <wire x1="-5.08" y1="1.778" x2="-5.08" y2="-1.778" width="0.1524" layer="21"/>
  3890. <wire x1="-4.826" y1="-2.032" x2="4.826" y2="-2.032" width="0.1524" layer="21"/>
  3891. <wire x1="5.08" y1="-1.778" x2="5.08" y2="1.778" width="0.1524" layer="21"/>
  3892. <wire x1="4.826" y1="2.032" x2="5.08" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  3893. <wire x1="4.826" y1="-2.032" x2="5.08" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  3894. <wire x1="-5.08" y1="-1.778" x2="-4.826" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3895. <wire x1="-5.08" y1="1.778" x2="-4.826" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3896. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  3897. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  3898. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  3899. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  3900. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  3901. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  3902. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  3903. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  3904. <text x="-4.699" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3905. <text x="-0.635" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3906. </package>
  3907. <package name="C075-052X106">
  3908. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3909. grid 7.5 mm, outline 5.2 x 10.6 mm</description>
  3910. <wire x1="4.953" y1="2.54" x2="-4.953" y2="2.54" width="0.1524" layer="21"/>
  3911. <wire x1="-5.207" y1="2.286" x2="-5.207" y2="-2.286" width="0.1524" layer="21"/>
  3912. <wire x1="-4.953" y1="-2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
  3913. <wire x1="5.207" y1="-2.286" x2="5.207" y2="2.286" width="0.1524" layer="21"/>
  3914. <wire x1="4.953" y1="2.54" x2="5.207" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3915. <wire x1="4.953" y1="-2.54" x2="5.207" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3916. <wire x1="-5.207" y1="-2.286" x2="-4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3917. <wire x1="-5.207" y1="2.286" x2="-4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3918. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  3919. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  3920. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  3921. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  3922. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  3923. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  3924. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  3925. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  3926. <text x="-4.826" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3927. <text x="-0.635" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3928. </package>
  3929. <package name="C102-043X133">
  3930. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3931. grid 10.2 mm, outline 4.3 x 13.3 mm</description>
  3932. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  3933. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  3934. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  3935. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  3936. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  3937. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  3938. <wire x1="-6.096" y1="2.032" x2="6.096" y2="2.032" width="0.1524" layer="21"/>
  3939. <wire x1="6.604" y1="1.524" x2="6.604" y2="-1.524" width="0.1524" layer="21"/>
  3940. <wire x1="6.096" y1="-2.032" x2="-6.096" y2="-2.032" width="0.1524" layer="21"/>
  3941. <wire x1="-6.604" y1="-1.524" x2="-6.604" y2="1.524" width="0.1524" layer="21"/>
  3942. <wire x1="6.096" y1="2.032" x2="6.604" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3943. <wire x1="6.096" y1="-2.032" x2="6.604" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3944. <wire x1="-6.604" y1="-1.524" x2="-6.096" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3945. <wire x1="-6.604" y1="1.524" x2="-6.096" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3946. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3947. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  3948. <text x="-6.096" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3949. <text x="-1.524" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3950. </package>
  3951. <package name="C102-054X133">
  3952. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3953. grid 10.2 mm, outline 5.4 x 13.3 mm</description>
  3954. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  3955. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  3956. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  3957. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  3958. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  3959. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  3960. <wire x1="-6.096" y1="2.54" x2="6.096" y2="2.54" width="0.1524" layer="21"/>
  3961. <wire x1="6.604" y1="2.032" x2="6.604" y2="-2.032" width="0.1524" layer="21"/>
  3962. <wire x1="6.096" y1="-2.54" x2="-6.096" y2="-2.54" width="0.1524" layer="21"/>
  3963. <wire x1="-6.604" y1="-2.032" x2="-6.604" y2="2.032" width="0.1524" layer="21"/>
  3964. <wire x1="6.096" y1="2.54" x2="6.604" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3965. <wire x1="6.096" y1="-2.54" x2="6.604" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3966. <wire x1="-6.604" y1="-2.032" x2="-6.096" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3967. <wire x1="-6.604" y1="2.032" x2="-6.096" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3968. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3969. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  3970. <text x="-6.096" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3971. <text x="-1.524" y="-1.905" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3972. </package>
  3973. <package name="C102-064X133">
  3974. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3975. grid 10.2 mm, outline 6.4 x 13.3 mm</description>
  3976. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  3977. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  3978. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  3979. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  3980. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  3981. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  3982. <wire x1="-6.096" y1="3.048" x2="6.096" y2="3.048" width="0.1524" layer="21"/>
  3983. <wire x1="6.604" y1="2.54" x2="6.604" y2="-2.54" width="0.1524" layer="21"/>
  3984. <wire x1="6.096" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
  3985. <wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
  3986. <wire x1="6.096" y1="3.048" x2="6.604" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3987. <wire x1="6.096" y1="-3.048" x2="6.604" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3988. <wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  3989. <wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  3990. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3991. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  3992. <text x="-6.096" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3993. <text x="-1.524" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3994. </package>
  3995. <package name="C102_152-062X184">
  3996. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3997. grid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm</description>
  3998. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  3999. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4000. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4001. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4002. <wire x1="-3.683" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4003. <wire x1="-2.286" y1="0" x2="3.683" y2="0" width="0.1524" layer="21"/>
  4004. <wire x1="6.477" y1="0" x2="8.636" y2="0" width="0.1524" layer="21"/>
  4005. <wire x1="-6.096" y1="3.048" x2="6.223" y2="3.048" width="0.1524" layer="21"/>
  4006. <wire x1="6.223" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
  4007. <wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
  4008. <wire x1="6.223" y1="3.048" x2="6.731" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4009. <wire x1="6.223" y1="-3.048" x2="6.731" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4010. <wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4011. <wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4012. <wire x1="6.731" y1="2.54" x2="6.731" y2="-2.54" width="0.1524" layer="21"/>
  4013. <wire x1="11.176" y1="3.048" x2="11.684" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4014. <wire x1="11.176" y1="-3.048" x2="11.684" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4015. <wire x1="11.176" y1="-3.048" x2="7.112" y2="-3.048" width="0.1524" layer="21"/>
  4016. <wire x1="7.112" y1="3.048" x2="11.176" y2="3.048" width="0.1524" layer="21"/>
  4017. <wire x1="11.684" y1="2.54" x2="11.684" y2="-2.54" width="0.1524" layer="21"/>
  4018. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  4019. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  4020. <pad name="3" x="10.033" y="0" drill="1.016" shape="octagon"/>
  4021. <text x="-5.969" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4022. <text x="-1.524" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4023. </package>
  4024. <package name="C150-054X183">
  4025. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4026. grid 15 mm, outline 5.4 x 18.3 mm</description>
  4027. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4028. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4029. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4030. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4031. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4032. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4033. <wire x1="9.017" y1="2.032" x2="9.017" y2="-2.032" width="0.1524" layer="21"/>
  4034. <wire x1="8.509" y1="-2.54" x2="-8.509" y2="-2.54" width="0.1524" layer="21"/>
  4035. <wire x1="-9.017" y1="-2.032" x2="-9.017" y2="2.032" width="0.1524" layer="21"/>
  4036. <wire x1="-8.509" y1="2.54" x2="8.509" y2="2.54" width="0.1524" layer="21"/>
  4037. <wire x1="8.509" y1="2.54" x2="9.017" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4038. <wire x1="8.509" y1="-2.54" x2="9.017" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4039. <wire x1="-9.017" y1="-2.032" x2="-8.509" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4040. <wire x1="-9.017" y1="2.032" x2="-8.509" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4041. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4042. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4043. <text x="-8.382" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4044. <text x="-3.429" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4045. </package>
  4046. <package name="C150-064X183">
  4047. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4048. grid 15 mm, outline 6.4 x 18.3 mm</description>
  4049. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4050. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4051. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4052. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4053. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4054. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4055. <wire x1="9.017" y1="2.54" x2="9.017" y2="-2.54" width="0.1524" layer="21"/>
  4056. <wire x1="8.509" y1="-3.048" x2="-8.509" y2="-3.048" width="0.1524" layer="21"/>
  4057. <wire x1="-9.017" y1="-2.54" x2="-9.017" y2="2.54" width="0.1524" layer="21"/>
  4058. <wire x1="-8.509" y1="3.048" x2="8.509" y2="3.048" width="0.1524" layer="21"/>
  4059. <wire x1="8.509" y1="3.048" x2="9.017" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4060. <wire x1="8.509" y1="-3.048" x2="9.017" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4061. <wire x1="-9.017" y1="-2.54" x2="-8.509" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4062. <wire x1="-9.017" y1="2.54" x2="-8.509" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4063. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4064. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4065. <text x="-8.509" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4066. <text x="-3.429" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4067. </package>
  4068. <package name="C150-072X183">
  4069. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4070. grid 15 mm, outline 7.2 x 18.3 mm</description>
  4071. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4072. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4073. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4074. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4075. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4076. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4077. <wire x1="9.017" y1="3.048" x2="9.017" y2="-3.048" width="0.1524" layer="21"/>
  4078. <wire x1="8.509" y1="-3.556" x2="-8.509" y2="-3.556" width="0.1524" layer="21"/>
  4079. <wire x1="-9.017" y1="-3.048" x2="-9.017" y2="3.048" width="0.1524" layer="21"/>
  4080. <wire x1="-8.509" y1="3.556" x2="8.509" y2="3.556" width="0.1524" layer="21"/>
  4081. <wire x1="8.509" y1="3.556" x2="9.017" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4082. <wire x1="8.509" y1="-3.556" x2="9.017" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4083. <wire x1="-9.017" y1="-3.048" x2="-8.509" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4084. <wire x1="-9.017" y1="3.048" x2="-8.509" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4085. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4086. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4087. <text x="-8.509" y="3.937" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4088. <text x="-3.429" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4089. </package>
  4090. <package name="C150-084X183">
  4091. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4092. grid 15 mm, outline 8.4 x 18.3 mm</description>
  4093. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4094. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4095. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4096. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4097. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4098. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4099. <wire x1="9.017" y1="3.556" x2="9.017" y2="-3.556" width="0.1524" layer="21"/>
  4100. <wire x1="8.509" y1="-4.064" x2="-8.509" y2="-4.064" width="0.1524" layer="21"/>
  4101. <wire x1="-9.017" y1="-3.556" x2="-9.017" y2="3.556" width="0.1524" layer="21"/>
  4102. <wire x1="-8.509" y1="4.064" x2="8.509" y2="4.064" width="0.1524" layer="21"/>
  4103. <wire x1="8.509" y1="4.064" x2="9.017" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4104. <wire x1="8.509" y1="-4.064" x2="9.017" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4105. <wire x1="-9.017" y1="-3.556" x2="-8.509" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  4106. <wire x1="-9.017" y1="3.556" x2="-8.509" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  4107. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4108. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4109. <text x="-8.509" y="4.445" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4110. <text x="-3.429" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4111. </package>
  4112. <package name="C150-091X182">
  4113. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4114. grid 15 mm, outline 9.1 x 18.2 mm</description>
  4115. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4116. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4117. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4118. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4119. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4120. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4121. <wire x1="9.017" y1="3.937" x2="9.017" y2="-3.937" width="0.1524" layer="21"/>
  4122. <wire x1="8.509" y1="-4.445" x2="-8.509" y2="-4.445" width="0.1524" layer="21"/>
  4123. <wire x1="-9.017" y1="-3.937" x2="-9.017" y2="3.937" width="0.1524" layer="21"/>
  4124. <wire x1="-8.509" y1="4.445" x2="8.509" y2="4.445" width="0.1524" layer="21"/>
  4125. <wire x1="8.509" y1="4.445" x2="9.017" y2="3.937" width="0.1524" layer="21" curve="-90"/>
  4126. <wire x1="8.509" y1="-4.445" x2="9.017" y2="-3.937" width="0.1524" layer="21" curve="90"/>
  4127. <wire x1="-9.017" y1="-3.937" x2="-8.509" y2="-4.445" width="0.1524" layer="21" curve="90"/>
  4128. <wire x1="-9.017" y1="3.937" x2="-8.509" y2="4.445" width="0.1524" layer="21" curve="-90"/>
  4129. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4130. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4131. <text x="-8.509" y="4.826" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4132. <text x="-3.429" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4133. </package>
  4134. <package name="C225-062X268">
  4135. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4136. grid 22.5 mm, outline 6.2 x 26.8 mm</description>
  4137. <wire x1="-12.827" y1="3.048" x2="12.827" y2="3.048" width="0.1524" layer="21"/>
  4138. <wire x1="13.335" y1="2.54" x2="13.335" y2="-2.54" width="0.1524" layer="21"/>
  4139. <wire x1="12.827" y1="-3.048" x2="-12.827" y2="-3.048" width="0.1524" layer="21"/>
  4140. <wire x1="-13.335" y1="-2.54" x2="-13.335" y2="2.54" width="0.1524" layer="21"/>
  4141. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4142. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4143. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4144. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4145. <wire x1="12.827" y1="3.048" x2="13.335" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4146. <wire x1="12.827" y1="-3.048" x2="13.335" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4147. <wire x1="-13.335" y1="-2.54" x2="-12.827" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4148. <wire x1="-13.335" y1="2.54" x2="-12.827" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4149. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4150. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4151. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4152. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4153. <text x="-12.7" y="3.429" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4154. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4155. </package>
  4156. <package name="C225-074X268">
  4157. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4158. grid 22.5 mm, outline 7.4 x 26.8 mm</description>
  4159. <wire x1="-12.827" y1="3.556" x2="12.827" y2="3.556" width="0.1524" layer="21"/>
  4160. <wire x1="13.335" y1="3.048" x2="13.335" y2="-3.048" width="0.1524" layer="21"/>
  4161. <wire x1="12.827" y1="-3.556" x2="-12.827" y2="-3.556" width="0.1524" layer="21"/>
  4162. <wire x1="-13.335" y1="-3.048" x2="-13.335" y2="3.048" width="0.1524" layer="21"/>
  4163. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4164. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4165. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4166. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4167. <wire x1="12.827" y1="3.556" x2="13.335" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4168. <wire x1="12.827" y1="-3.556" x2="13.335" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4169. <wire x1="-13.335" y1="-3.048" x2="-12.827" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4170. <wire x1="-13.335" y1="3.048" x2="-12.827" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4171. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4172. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4173. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4174. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4175. <text x="-12.827" y="3.937" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4176. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4177. </package>
  4178. <package name="C225-087X268">
  4179. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4180. grid 22.5 mm, outline 8.7 x 26.8 mm</description>
  4181. <wire x1="-12.827" y1="4.318" x2="12.827" y2="4.318" width="0.1524" layer="21"/>
  4182. <wire x1="13.335" y1="3.81" x2="13.335" y2="-3.81" width="0.1524" layer="21"/>
  4183. <wire x1="12.827" y1="-4.318" x2="-12.827" y2="-4.318" width="0.1524" layer="21"/>
  4184. <wire x1="-13.335" y1="-3.81" x2="-13.335" y2="3.81" width="0.1524" layer="21"/>
  4185. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4186. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4187. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4188. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4189. <wire x1="12.827" y1="4.318" x2="13.335" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  4190. <wire x1="12.827" y1="-4.318" x2="13.335" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  4191. <wire x1="-13.335" y1="-3.81" x2="-12.827" y2="-4.318" width="0.1524" layer="21" curve="90"/>
  4192. <wire x1="-13.335" y1="3.81" x2="-12.827" y2="4.318" width="0.1524" layer="21" curve="-90"/>
  4193. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4194. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4195. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4196. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4197. <text x="-12.827" y="4.699" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4198. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4199. </package>
  4200. <package name="C225-108X268">
  4201. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4202. grid 22.5 mm, outline 10.8 x 26.8 mm</description>
  4203. <wire x1="-12.827" y1="5.334" x2="12.827" y2="5.334" width="0.1524" layer="21"/>
  4204. <wire x1="13.335" y1="4.826" x2="13.335" y2="-4.826" width="0.1524" layer="21"/>
  4205. <wire x1="12.827" y1="-5.334" x2="-12.827" y2="-5.334" width="0.1524" layer="21"/>
  4206. <wire x1="-13.335" y1="-4.826" x2="-13.335" y2="4.826" width="0.1524" layer="21"/>
  4207. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4208. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4209. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4210. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4211. <wire x1="12.827" y1="5.334" x2="13.335" y2="4.826" width="0.1524" layer="21" curve="-90"/>
  4212. <wire x1="12.827" y1="-5.334" x2="13.335" y2="-4.826" width="0.1524" layer="21" curve="90"/>
  4213. <wire x1="-13.335" y1="-4.826" x2="-12.827" y2="-5.334" width="0.1524" layer="21" curve="90"/>
  4214. <wire x1="-13.335" y1="4.826" x2="-12.827" y2="5.334" width="0.1524" layer="21" curve="-90"/>
  4215. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4216. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4217. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4218. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4219. <text x="-12.954" y="5.715" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4220. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4221. </package>
  4222. <package name="C225-113X268">
  4223. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4224. grid 22.5 mm, outline 11.3 x 26.8 mm</description>
  4225. <wire x1="-12.827" y1="5.588" x2="12.827" y2="5.588" width="0.1524" layer="21"/>
  4226. <wire x1="13.335" y1="5.08" x2="13.335" y2="-5.08" width="0.1524" layer="21"/>
  4227. <wire x1="12.827" y1="-5.588" x2="-12.827" y2="-5.588" width="0.1524" layer="21"/>
  4228. <wire x1="-13.335" y1="-5.08" x2="-13.335" y2="5.08" width="0.1524" layer="21"/>
  4229. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4230. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4231. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4232. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4233. <wire x1="12.827" y1="5.588" x2="13.335" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  4234. <wire x1="12.827" y1="-5.588" x2="13.335" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  4235. <wire x1="-13.335" y1="-5.08" x2="-12.827" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  4236. <wire x1="-13.335" y1="5.08" x2="-12.827" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  4237. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4238. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4239. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4240. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4241. <text x="-12.954" y="5.969" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4242. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4243. </package>
  4244. <package name="C275-093X316">
  4245. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4246. grid 27.5 mm, outline 9.3 x 31.6 mm</description>
  4247. <wire x1="-15.24" y1="4.572" x2="15.24" y2="4.572" width="0.1524" layer="21"/>
  4248. <wire x1="15.748" y1="4.064" x2="15.748" y2="-4.064" width="0.1524" layer="21"/>
  4249. <wire x1="15.24" y1="-4.572" x2="-15.24" y2="-4.572" width="0.1524" layer="21"/>
  4250. <wire x1="-15.748" y1="-4.064" x2="-15.748" y2="4.064" width="0.1524" layer="21"/>
  4251. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4252. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4253. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4254. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4255. <wire x1="15.24" y1="4.572" x2="15.748" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  4256. <wire x1="15.24" y1="-4.572" x2="15.748" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  4257. <wire x1="-15.748" y1="-4.064" x2="-15.24" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  4258. <wire x1="-15.748" y1="4.064" x2="-15.24" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  4259. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4260. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4261. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4262. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4263. <text x="-15.24" y="4.953" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4264. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4265. </package>
  4266. <package name="C275-113X316">
  4267. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4268. grid 27.5 mm, outline 11.3 x 31.6 mm</description>
  4269. <wire x1="-15.24" y1="5.588" x2="15.24" y2="5.588" width="0.1524" layer="21"/>
  4270. <wire x1="15.748" y1="5.08" x2="15.748" y2="-5.08" width="0.1524" layer="21"/>
  4271. <wire x1="15.24" y1="-5.588" x2="-15.24" y2="-5.588" width="0.1524" layer="21"/>
  4272. <wire x1="-15.748" y1="-5.08" x2="-15.748" y2="5.08" width="0.1524" layer="21"/>
  4273. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4274. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4275. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4276. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4277. <wire x1="15.24" y1="5.588" x2="15.748" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  4278. <wire x1="15.24" y1="-5.588" x2="15.748" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  4279. <wire x1="-15.748" y1="-5.08" x2="-15.24" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  4280. <wire x1="-15.748" y1="5.08" x2="-15.24" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  4281. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4282. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4283. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4284. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4285. <text x="-15.24" y="5.969" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4286. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4287. </package>
  4288. <package name="C275-134X316">
  4289. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4290. grid 27.5 mm, outline 13.4 x 31.6 mm</description>
  4291. <wire x1="-15.24" y1="6.604" x2="15.24" y2="6.604" width="0.1524" layer="21"/>
  4292. <wire x1="15.748" y1="6.096" x2="15.748" y2="-6.096" width="0.1524" layer="21"/>
  4293. <wire x1="15.24" y1="-6.604" x2="-15.24" y2="-6.604" width="0.1524" layer="21"/>
  4294. <wire x1="-15.748" y1="-6.096" x2="-15.748" y2="6.096" width="0.1524" layer="21"/>
  4295. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4296. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4297. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4298. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4299. <wire x1="15.24" y1="6.604" x2="15.748" y2="6.096" width="0.1524" layer="21" curve="-90"/>
  4300. <wire x1="15.24" y1="-6.604" x2="15.748" y2="-6.096" width="0.1524" layer="21" curve="90"/>
  4301. <wire x1="-15.748" y1="-6.096" x2="-15.24" y2="-6.604" width="0.1524" layer="21" curve="90"/>
  4302. <wire x1="-15.748" y1="6.096" x2="-15.24" y2="6.604" width="0.1524" layer="21" curve="-90"/>
  4303. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4304. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4305. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4306. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4307. <text x="-15.24" y="6.985" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4308. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4309. </package>
  4310. <package name="C275-205X316">
  4311. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4312. grid 27.5 mm, outline 20.5 x 31.6 mm</description>
  4313. <wire x1="-15.24" y1="10.16" x2="15.24" y2="10.16" width="0.1524" layer="21"/>
  4314. <wire x1="15.748" y1="9.652" x2="15.748" y2="-9.652" width="0.1524" layer="21"/>
  4315. <wire x1="15.24" y1="-10.16" x2="-15.24" y2="-10.16" width="0.1524" layer="21"/>
  4316. <wire x1="-15.748" y1="-9.652" x2="-15.748" y2="9.652" width="0.1524" layer="21"/>
  4317. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4318. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4319. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4320. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4321. <wire x1="15.24" y1="10.16" x2="15.748" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  4322. <wire x1="15.24" y1="-10.16" x2="15.748" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  4323. <wire x1="-15.748" y1="-9.652" x2="-15.24" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  4324. <wire x1="-15.748" y1="9.652" x2="-15.24" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  4325. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4326. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4327. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4328. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4329. <text x="-15.24" y="10.541" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4330. <text x="-5.08" y="-4.318" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4331. </package>
  4332. <package name="C325-137X374">
  4333. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4334. grid 32.5 mm, outline 13.7 x 37.4 mm</description>
  4335. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  4336. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  4337. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  4338. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  4339. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  4340. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  4341. <wire x1="18.542" y1="6.731" x2="18.542" y2="-6.731" width="0.1524" layer="21"/>
  4342. <wire x1="-18.542" y1="6.731" x2="-18.542" y2="-6.731" width="0.1524" layer="21"/>
  4343. <wire x1="-18.542" y1="-6.731" x2="18.542" y2="-6.731" width="0.1524" layer="21"/>
  4344. <wire x1="18.542" y1="6.731" x2="-18.542" y2="6.731" width="0.1524" layer="21"/>
  4345. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  4346. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  4347. <text x="-18.2372" y="7.0612" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4348. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4349. </package>
  4350. <package name="C325-162X374">
  4351. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4352. grid 32.5 mm, outline 16.2 x 37.4 mm</description>
  4353. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  4354. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  4355. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  4356. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  4357. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  4358. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  4359. <wire x1="18.542" y1="8.001" x2="18.542" y2="-8.001" width="0.1524" layer="21"/>
  4360. <wire x1="-18.542" y1="8.001" x2="-18.542" y2="-8.001" width="0.1524" layer="21"/>
  4361. <wire x1="-18.542" y1="-8.001" x2="18.542" y2="-8.001" width="0.1524" layer="21"/>
  4362. <wire x1="18.542" y1="8.001" x2="-18.542" y2="8.001" width="0.1524" layer="21"/>
  4363. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  4364. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  4365. <text x="-18.3642" y="8.3312" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4366. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4367. </package>
  4368. <package name="C325-182X374">
  4369. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4370. grid 32.5 mm, outline 18.2 x 37.4 mm</description>
  4371. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  4372. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  4373. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  4374. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  4375. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  4376. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  4377. <wire x1="18.542" y1="9.017" x2="18.542" y2="-9.017" width="0.1524" layer="21"/>
  4378. <wire x1="-18.542" y1="9.017" x2="-18.542" y2="-9.017" width="0.1524" layer="21"/>
  4379. <wire x1="-18.542" y1="-9.017" x2="18.542" y2="-9.017" width="0.1524" layer="21"/>
  4380. <wire x1="18.542" y1="9.017" x2="-18.542" y2="9.017" width="0.1524" layer="21"/>
  4381. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  4382. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  4383. <text x="-18.3642" y="9.3472" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4384. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4385. </package>
  4386. <package name="C375-192X418">
  4387. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4388. grid 37.5 mm, outline 19.2 x 41.8 mm</description>
  4389. <wire x1="-20.32" y1="8.509" x2="20.32" y2="8.509" width="0.1524" layer="21"/>
  4390. <wire x1="20.828" y1="8.001" x2="20.828" y2="-8.001" width="0.1524" layer="21"/>
  4391. <wire x1="20.32" y1="-8.509" x2="-20.32" y2="-8.509" width="0.1524" layer="21"/>
  4392. <wire x1="-20.828" y1="-8.001" x2="-20.828" y2="8.001" width="0.1524" layer="21"/>
  4393. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4394. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4395. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4396. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4397. <wire x1="20.32" y1="8.509" x2="20.828" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  4398. <wire x1="20.32" y1="-8.509" x2="20.828" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  4399. <wire x1="-20.828" y1="-8.001" x2="-20.32" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  4400. <wire x1="-20.828" y1="8.001" x2="-20.32" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  4401. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4402. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4403. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  4404. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  4405. <text x="-20.447" y="8.89" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4406. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4407. </package>
  4408. <package name="C375-203X418">
  4409. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4410. grid 37.5 mm, outline 20.3 x 41.8 mm</description>
  4411. <wire x1="-20.32" y1="10.16" x2="20.32" y2="10.16" width="0.1524" layer="21"/>
  4412. <wire x1="20.828" y1="9.652" x2="20.828" y2="-9.652" width="0.1524" layer="21"/>
  4413. <wire x1="20.32" y1="-10.16" x2="-20.32" y2="-10.16" width="0.1524" layer="21"/>
  4414. <wire x1="-20.828" y1="-9.652" x2="-20.828" y2="9.652" width="0.1524" layer="21"/>
  4415. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4416. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4417. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4418. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4419. <wire x1="20.32" y1="10.16" x2="20.828" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  4420. <wire x1="20.32" y1="-10.16" x2="20.828" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  4421. <wire x1="-20.828" y1="-9.652" x2="-20.32" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  4422. <wire x1="-20.828" y1="9.652" x2="-20.32" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  4423. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4424. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4425. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  4426. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  4427. <text x="-20.32" y="10.541" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4428. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4429. </package>
  4430. <package name="C050-035X075">
  4431. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4432. grid 5 mm, outline 3.5 x 7.5 mm</description>
  4433. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4434. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4435. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4436. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4437. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4438. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4439. <wire x1="-3.683" y1="1.524" x2="-3.683" y2="-1.524" width="0.1524" layer="21"/>
  4440. <wire x1="-3.429" y1="-1.778" x2="3.429" y2="-1.778" width="0.1524" layer="21"/>
  4441. <wire x1="3.683" y1="-1.524" x2="3.683" y2="1.524" width="0.1524" layer="21"/>
  4442. <wire x1="3.429" y1="1.778" x2="-3.429" y2="1.778" width="0.1524" layer="21"/>
  4443. <wire x1="3.429" y1="1.778" x2="3.683" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4444. <wire x1="3.429" y1="-1.778" x2="3.683" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4445. <wire x1="-3.683" y1="-1.524" x2="-3.429" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  4446. <wire x1="-3.683" y1="1.524" x2="-3.429" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  4447. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  4448. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  4449. <text x="-3.556" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4450. <text x="-3.556" y="-3.429" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4451. </package>
  4452. <package name="C375-155X418">
  4453. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4454. grid 37.5 mm, outline 15.5 x 41.8 mm</description>
  4455. <wire x1="-20.32" y1="7.62" x2="20.32" y2="7.62" width="0.1524" layer="21"/>
  4456. <wire x1="20.828" y1="7.112" x2="20.828" y2="-7.112" width="0.1524" layer="21"/>
  4457. <wire x1="20.32" y1="-7.62" x2="-20.32" y2="-7.62" width="0.1524" layer="21"/>
  4458. <wire x1="-20.828" y1="-7.112" x2="-20.828" y2="7.112" width="0.1524" layer="21"/>
  4459. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4460. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4461. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4462. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4463. <wire x1="20.32" y1="7.62" x2="20.828" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  4464. <wire x1="20.32" y1="-7.62" x2="20.828" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  4465. <wire x1="-20.828" y1="-7.112" x2="-20.32" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  4466. <wire x1="-20.828" y1="7.112" x2="-20.32" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  4467. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4468. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4469. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  4470. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  4471. <text x="-20.447" y="8.001" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4472. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4473. </package>
  4474. <package name="C075-063X106">
  4475. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4476. grid 7.5 mm, outline 6.3 x 10.6 mm</description>
  4477. <wire x1="4.953" y1="3.048" x2="-4.953" y2="3.048" width="0.1524" layer="21"/>
  4478. <wire x1="-5.207" y1="2.794" x2="-5.207" y2="-2.794" width="0.1524" layer="21"/>
  4479. <wire x1="-4.953" y1="-3.048" x2="4.953" y2="-3.048" width="0.1524" layer="21"/>
  4480. <wire x1="5.207" y1="-2.794" x2="5.207" y2="2.794" width="0.1524" layer="21"/>
  4481. <wire x1="4.953" y1="3.048" x2="5.207" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  4482. <wire x1="4.953" y1="-3.048" x2="5.207" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  4483. <wire x1="-5.207" y1="-2.794" x2="-4.953" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4484. <wire x1="-5.207" y1="2.794" x2="-4.953" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4485. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  4486. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  4487. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  4488. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  4489. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  4490. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  4491. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  4492. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  4493. <text x="-4.826" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4494. <text x="-0.635" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4495. </package>
  4496. <package name="C275-154X316">
  4497. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4498. grid 27.5 mm, outline 15.4 x 31.6 mm</description>
  4499. <wire x1="-15.24" y1="7.62" x2="15.24" y2="7.62" width="0.1524" layer="21"/>
  4500. <wire x1="15.748" y1="7.112" x2="15.748" y2="-7.112" width="0.1524" layer="21"/>
  4501. <wire x1="15.24" y1="-7.62" x2="-15.24" y2="-7.62" width="0.1524" layer="21"/>
  4502. <wire x1="-15.748" y1="-7.112" x2="-15.748" y2="7.112" width="0.1524" layer="21"/>
  4503. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4504. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4505. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4506. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4507. <wire x1="15.24" y1="7.62" x2="15.748" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  4508. <wire x1="15.24" y1="-7.62" x2="15.748" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  4509. <wire x1="-15.748" y1="-7.112" x2="-15.24" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  4510. <wire x1="-15.748" y1="7.112" x2="-15.24" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  4511. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4512. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4513. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4514. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4515. <text x="-15.24" y="8.001" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4516. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4517. </package>
  4518. <package name="C275-173X316">
  4519. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4520. grid 27.5 mm, outline 17.3 x 31.6 mm</description>
  4521. <wire x1="-15.24" y1="8.509" x2="15.24" y2="8.509" width="0.1524" layer="21"/>
  4522. <wire x1="15.748" y1="8.001" x2="15.748" y2="-8.001" width="0.1524" layer="21"/>
  4523. <wire x1="15.24" y1="-8.509" x2="-15.24" y2="-8.509" width="0.1524" layer="21"/>
  4524. <wire x1="-15.748" y1="-8.001" x2="-15.748" y2="8.001" width="0.1524" layer="21"/>
  4525. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4526. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4527. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4528. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4529. <wire x1="15.24" y1="8.509" x2="15.748" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  4530. <wire x1="15.24" y1="-8.509" x2="15.748" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  4531. <wire x1="-15.748" y1="-8.001" x2="-15.24" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  4532. <wire x1="-15.748" y1="8.001" x2="-15.24" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  4533. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4534. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4535. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4536. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4537. <text x="-15.24" y="8.89" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4538. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4539. </package>
  4540. <package name="C0402K">
  4541. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0204 reflow solder&lt;/b&gt;&lt;p&gt;
  4542. Metric Code Size 1005</description>
  4543. <wire x1="-0.425" y1="0.2" x2="0.425" y2="0.2" width="0.1016" layer="51"/>
  4544. <wire x1="0.425" y1="-0.2" x2="-0.425" y2="-0.2" width="0.1016" layer="51"/>
  4545. <smd name="1" x="-0.6" y="0" dx="0.925" dy="0.74" layer="1"/>
  4546. <smd name="2" x="0.6" y="0" dx="0.925" dy="0.74" layer="1"/>
  4547. <text x="-0.5" y="0.425" size="1.016" layer="25">&gt;NAME</text>
  4548. <text x="-0.5" y="-1.45" size="1.016" layer="27">&gt;VALUE</text>
  4549. <rectangle x1="-0.5" y1="-0.25" x2="-0.225" y2="0.25" layer="51"/>
  4550. <rectangle x1="0.225" y1="-0.25" x2="0.5" y2="0.25" layer="51"/>
  4551. </package>
  4552. <package name="C0603K">
  4553. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0603 reflow solder&lt;/b&gt;&lt;p&gt;
  4554. Metric Code Size 1608</description>
  4555. <wire x1="-0.725" y1="0.35" x2="0.725" y2="0.35" width="0.1016" layer="51"/>
  4556. <wire x1="0.725" y1="-0.35" x2="-0.725" y2="-0.35" width="0.1016" layer="51"/>
  4557. <smd name="1" x="-0.875" y="0" dx="1.05" dy="1.08" layer="1"/>
  4558. <smd name="2" x="0.875" y="0" dx="1.05" dy="1.08" layer="1"/>
  4559. <text x="-0.8" y="0.65" size="1.016" layer="25">&gt;NAME</text>
  4560. <text x="-0.8" y="-1.65" size="1.016" layer="27">&gt;VALUE</text>
  4561. <rectangle x1="-0.8" y1="-0.4" x2="-0.45" y2="0.4" layer="51"/>
  4562. <rectangle x1="0.45" y1="-0.4" x2="0.8" y2="0.4" layer="51"/>
  4563. </package>
  4564. <package name="C0805K">
  4565. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0805 reflow solder&lt;/b&gt;&lt;p&gt;
  4566. Metric Code Size 2012</description>
  4567. <wire x1="-0.925" y1="0.6" x2="0.925" y2="0.6" width="0.1016" layer="51"/>
  4568. <wire x1="0.925" y1="-0.6" x2="-0.925" y2="-0.6" width="0.1016" layer="51"/>
  4569. <smd name="1" x="-1" y="0" dx="1.3" dy="1.6" layer="1"/>
  4570. <smd name="2" x="1" y="0" dx="1.3" dy="1.6" layer="1"/>
  4571. <text x="-1" y="0.875" size="1.016" layer="25">&gt;NAME</text>
  4572. <text x="-1" y="-1.9" size="1.016" layer="27">&gt;VALUE</text>
  4573. <rectangle x1="-1" y1="-0.65" x2="-0.5" y2="0.65" layer="51"/>
  4574. <rectangle x1="0.5" y1="-0.65" x2="1" y2="0.65" layer="51"/>
  4575. </package>
  4576. <package name="C1206K">
  4577. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1206 reflow solder&lt;/b&gt;&lt;p&gt;
  4578. Metric Code Size 3216</description>
  4579. <wire x1="-1.525" y1="0.75" x2="1.525" y2="0.75" width="0.1016" layer="51"/>
  4580. <wire x1="1.525" y1="-0.75" x2="-1.525" y2="-0.75" width="0.1016" layer="51"/>
  4581. <smd name="1" x="-1.5" y="0" dx="1.5" dy="2" layer="1"/>
  4582. <smd name="2" x="1.5" y="0" dx="1.5" dy="2" layer="1"/>
  4583. <text x="-1.6" y="1.1" size="1.016" layer="25">&gt;NAME</text>
  4584. <text x="-1.6" y="-2.1" size="1.016" layer="27">&gt;VALUE</text>
  4585. <rectangle x1="-1.6" y1="-0.8" x2="-1.1" y2="0.8" layer="51"/>
  4586. <rectangle x1="1.1" y1="-0.8" x2="1.6" y2="0.8" layer="51"/>
  4587. </package>
  4588. <package name="C1210K">
  4589. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1210 reflow solder&lt;/b&gt;&lt;p&gt;
  4590. Metric Code Size 3225</description>
  4591. <wire x1="-1.525" y1="1.175" x2="1.525" y2="1.175" width="0.1016" layer="51"/>
  4592. <wire x1="1.525" y1="-1.175" x2="-1.525" y2="-1.175" width="0.1016" layer="51"/>
  4593. <smd name="1" x="-1.5" y="0" dx="1.5" dy="2.9" layer="1"/>
  4594. <smd name="2" x="1.5" y="0" dx="1.5" dy="2.9" layer="1"/>
  4595. <text x="-1.6" y="1.55" size="1.016" layer="25">&gt;NAME</text>
  4596. <text x="-1.6" y="-2.575" size="1.016" layer="27">&gt;VALUE</text>
  4597. <rectangle x1="-1.6" y1="-1.25" x2="-1.1" y2="1.25" layer="51"/>
  4598. <rectangle x1="1.1" y1="-1.25" x2="1.6" y2="1.25" layer="51"/>
  4599. </package>
  4600. <package name="C1812K">
  4601. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1812 reflow solder&lt;/b&gt;&lt;p&gt;
  4602. Metric Code Size 4532</description>
  4603. <wire x1="-2.175" y1="1.525" x2="2.175" y2="1.525" width="0.1016" layer="51"/>
  4604. <wire x1="2.175" y1="-1.525" x2="-2.175" y2="-1.525" width="0.1016" layer="51"/>
  4605. <smd name="1" x="-2.05" y="0" dx="1.8" dy="3.7" layer="1"/>
  4606. <smd name="2" x="2.05" y="0" dx="1.8" dy="3.7" layer="1"/>
  4607. <text x="-2.25" y="1.95" size="1.016" layer="25">&gt;NAME</text>
  4608. <text x="-2.25" y="-2.975" size="1.016" layer="27">&gt;VALUE</text>
  4609. <rectangle x1="-2.25" y1="-1.6" x2="-1.65" y2="1.6" layer="51"/>
  4610. <rectangle x1="1.65" y1="-1.6" x2="2.25" y2="1.6" layer="51"/>
  4611. </package>
  4612. <package name="C1825K">
  4613. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1825 reflow solder&lt;/b&gt;&lt;p&gt;
  4614. Metric Code Size 4564</description>
  4615. <wire x1="-1.525" y1="3.125" x2="1.525" y2="3.125" width="0.1016" layer="51"/>
  4616. <wire x1="1.525" y1="-3.125" x2="-1.525" y2="-3.125" width="0.1016" layer="51"/>
  4617. <smd name="1" x="-1.5" y="0" dx="1.8" dy="6.9" layer="1"/>
  4618. <smd name="2" x="1.5" y="0" dx="1.8" dy="6.9" layer="1"/>
  4619. <text x="-1.6" y="3.55" size="1.016" layer="25">&gt;NAME</text>
  4620. <text x="-1.6" y="-4.625" size="1.016" layer="27">&gt;VALUE</text>
  4621. <rectangle x1="-1.6" y1="-3.2" x2="-1.1" y2="3.2" layer="51"/>
  4622. <rectangle x1="1.1" y1="-3.2" x2="1.6" y2="3.2" layer="51"/>
  4623. </package>
  4624. <package name="C2220K">
  4625. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 2220 reflow solder&lt;/b&gt;&lt;p&gt;Metric Code Size 5650</description>
  4626. <wire x1="-2.725" y1="2.425" x2="2.725" y2="2.425" width="0.1016" layer="51"/>
  4627. <wire x1="2.725" y1="-2.425" x2="-2.725" y2="-2.425" width="0.1016" layer="51"/>
  4628. <smd name="1" x="-2.55" y="0" dx="1.85" dy="5.5" layer="1"/>
  4629. <smd name="2" x="2.55" y="0" dx="1.85" dy="5.5" layer="1"/>
  4630. <text x="-2.8" y="2.95" size="1.016" layer="25">&gt;NAME</text>
  4631. <text x="-2.8" y="-3.975" size="1.016" layer="27">&gt;VALUE</text>
  4632. <rectangle x1="-2.8" y1="-2.5" x2="-2.2" y2="2.5" layer="51"/>
  4633. <rectangle x1="2.2" y1="-2.5" x2="2.8" y2="2.5" layer="51"/>
  4634. </package>
  4635. <package name="C2225K">
  4636. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 2225 reflow solder&lt;/b&gt;&lt;p&gt;Metric Code Size 5664</description>
  4637. <wire x1="-2.725" y1="3.075" x2="2.725" y2="3.075" width="0.1016" layer="51"/>
  4638. <wire x1="2.725" y1="-3.075" x2="-2.725" y2="-3.075" width="0.1016" layer="51"/>
  4639. <smd name="1" x="-2.55" y="0" dx="1.85" dy="6.8" layer="1"/>
  4640. <smd name="2" x="2.55" y="0" dx="1.85" dy="6.8" layer="1"/>
  4641. <text x="-2.8" y="3.6" size="1.016" layer="25">&gt;NAME</text>
  4642. <text x="-2.8" y="-4.575" size="1.016" layer="27">&gt;VALUE</text>
  4643. <rectangle x1="-2.8" y1="-3.15" x2="-2.2" y2="3.15" layer="51"/>
  4644. <rectangle x1="2.2" y1="-3.15" x2="2.8" y2="3.15" layer="51"/>
  4645. </package>
  4646. <package name="HPC0201">
  4647. <description>&lt;b&gt; &lt;/b&gt;&lt;p&gt;
  4648. Source: http://www.vishay.com/docs/10129/hpc0201a.pdf</description>
  4649. <smd name="1" x="-0.18" y="0" dx="0.2" dy="0.35" layer="1"/>
  4650. <smd name="2" x="0.18" y="0" dx="0.2" dy="0.35" layer="1"/>
  4651. <text x="-0.75" y="0.74" size="1.27" layer="25">&gt;NAME</text>
  4652. <text x="-0.785" y="-1.865" size="1.27" layer="27">&gt;VALUE</text>
  4653. <rectangle x1="-0.305" y1="-0.15" x2="0.305" y2="0.15" layer="51"/>
  4654. </package>
  4655. <package name="C0201">
  4656. <description>Source: http://www.avxcorp.com/docs/catalogs/cx5r.pdf</description>
  4657. <smd name="1" x="-0.25" y="0" dx="0.25" dy="0.35" layer="1"/>
  4658. <smd name="2" x="0.25" y="0" dx="0.25" dy="0.35" layer="1"/>
  4659. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  4660. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  4661. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  4662. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  4663. <rectangle x1="-0.15" y1="0.1" x2="0.15" y2="0.15" layer="51"/>
  4664. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="-0.1" layer="51"/>
  4665. </package>
  4666. <package name="C1808">
  4667. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4668. Source: AVX .. aphvc.pdf</description>
  4669. <wire x1="-1.4732" y1="0.9502" x2="1.4732" y2="0.9502" width="0.1016" layer="51"/>
  4670. <wire x1="-1.4478" y1="-0.9502" x2="1.4732" y2="-0.9502" width="0.1016" layer="51"/>
  4671. <smd name="1" x="-1.95" y="0" dx="1.6" dy="2.2" layer="1"/>
  4672. <smd name="2" x="1.95" y="0" dx="1.6" dy="2.2" layer="1"/>
  4673. <text x="-2.233" y="1.827" size="1.27" layer="25">&gt;NAME</text>
  4674. <text x="-2.233" y="-2.842" size="1.27" layer="27">&gt;VALUE</text>
  4675. <rectangle x1="-2.275" y1="-1.015" x2="-1.225" y2="1.015" layer="51"/>
  4676. <rectangle x1="1.225" y1="-1.015" x2="2.275" y2="1.015" layer="51"/>
  4677. </package>
  4678. <package name="C3640">
  4679. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4680. Source: AVX .. aphvc.pdf</description>
  4681. <wire x1="-3.8322" y1="5.0496" x2="3.8322" y2="5.0496" width="0.1016" layer="51"/>
  4682. <wire x1="-3.8322" y1="-5.0496" x2="3.8322" y2="-5.0496" width="0.1016" layer="51"/>
  4683. <smd name="1" x="-4.267" y="0" dx="2.6" dy="10.7" layer="1"/>
  4684. <smd name="2" x="4.267" y="0" dx="2.6" dy="10.7" layer="1"/>
  4685. <text x="-4.647" y="6.465" size="1.27" layer="25">&gt;NAME</text>
  4686. <text x="-4.647" y="-7.255" size="1.27" layer="27">&gt;VALUE</text>
  4687. <rectangle x1="-4.57" y1="-5.1" x2="-3.05" y2="5.1" layer="51"/>
  4688. <rectangle x1="3.05" y1="-5.1" x2="4.5688" y2="5.1" layer="51"/>
  4689. </package>
  4690. <package name="C01005">
  4691. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  4692. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  4693. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  4694. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  4695. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  4696. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  4697. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  4698. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  4699. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  4700. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  4701. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  4702. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  4703. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  4704. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  4705. </package>
  4706. </packages>
  4707. <symbols>
  4708. <symbol name="R-EU-1">
  4709. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  4710. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  4711. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  4712. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  4713. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  4714. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  4715. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  4716. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  4717. </symbol>
  4718. <symbol name="C-EU-1">
  4719. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  4720. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  4721. <text x="1.524" y="0.381" size="1.778" layer="95">&gt;NAME</text>
  4722. <text x="1.524" y="-4.699" size="1.778" layer="96">&gt;VALUE</text>
  4723. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  4724. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  4725. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  4726. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  4727. </symbol>
  4728. </symbols>
  4729. <devicesets>
  4730. <deviceset name="R-EU_" prefix="R" uservalue="yes">
  4731. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  4732. <gates>
  4733. <gate name="G$1" symbol="R-EU-1" x="0" y="0"/>
  4734. </gates>
  4735. <devices>
  4736. <device name="R0402" package="R0402">
  4737. <connects>
  4738. <connect gate="G$1" pin="1" pad="1"/>
  4739. <connect gate="G$1" pin="2" pad="2"/>
  4740. </connects>
  4741. <technologies>
  4742. <technology name=""/>
  4743. </technologies>
  4744. </device>
  4745. <device name="R0603" package="R0603">
  4746. <connects>
  4747. <connect gate="G$1" pin="1" pad="1"/>
  4748. <connect gate="G$1" pin="2" pad="2"/>
  4749. </connects>
  4750. <technologies>
  4751. <technology name=""/>
  4752. </technologies>
  4753. </device>
  4754. <device name="R0805" package="R0805">
  4755. <connects>
  4756. <connect gate="G$1" pin="1" pad="1"/>
  4757. <connect gate="G$1" pin="2" pad="2"/>
  4758. </connects>
  4759. <technologies>
  4760. <technology name=""/>
  4761. </technologies>
  4762. </device>
  4763. <device name="R0805W" package="R0805W">
  4764. <connects>
  4765. <connect gate="G$1" pin="1" pad="1"/>
  4766. <connect gate="G$1" pin="2" pad="2"/>
  4767. </connects>
  4768. <technologies>
  4769. <technology name=""/>
  4770. </technologies>
  4771. </device>
  4772. <device name="R1206" package="R1206">
  4773. <connects>
  4774. <connect gate="G$1" pin="1" pad="1"/>
  4775. <connect gate="G$1" pin="2" pad="2"/>
  4776. </connects>
  4777. <technologies>
  4778. <technology name=""/>
  4779. </technologies>
  4780. </device>
  4781. <device name="R1206W" package="R1206W">
  4782. <connects>
  4783. <connect gate="G$1" pin="1" pad="1"/>
  4784. <connect gate="G$1" pin="2" pad="2"/>
  4785. </connects>
  4786. <technologies>
  4787. <technology name=""/>
  4788. </technologies>
  4789. </device>
  4790. <device name="R1210" package="R1210">
  4791. <connects>
  4792. <connect gate="G$1" pin="1" pad="1"/>
  4793. <connect gate="G$1" pin="2" pad="2"/>
  4794. </connects>
  4795. <technologies>
  4796. <technology name=""/>
  4797. </technologies>
  4798. </device>
  4799. <device name="R1210W" package="R1210W">
  4800. <connects>
  4801. <connect gate="G$1" pin="1" pad="1"/>
  4802. <connect gate="G$1" pin="2" pad="2"/>
  4803. </connects>
  4804. <technologies>
  4805. <technology name=""/>
  4806. </technologies>
  4807. </device>
  4808. <device name="R2010" package="R2010">
  4809. <connects>
  4810. <connect gate="G$1" pin="1" pad="1"/>
  4811. <connect gate="G$1" pin="2" pad="2"/>
  4812. </connects>
  4813. <technologies>
  4814. <technology name=""/>
  4815. </technologies>
  4816. </device>
  4817. <device name="R2010W" package="R2010W">
  4818. <connects>
  4819. <connect gate="G$1" pin="1" pad="1"/>
  4820. <connect gate="G$1" pin="2" pad="2"/>
  4821. </connects>
  4822. <technologies>
  4823. <technology name=""/>
  4824. </technologies>
  4825. </device>
  4826. <device name="R2012" package="R2012">
  4827. <connects>
  4828. <connect gate="G$1" pin="1" pad="1"/>
  4829. <connect gate="G$1" pin="2" pad="2"/>
  4830. </connects>
  4831. <technologies>
  4832. <technology name=""/>
  4833. </technologies>
  4834. </device>
  4835. <device name="R2012W" package="R2012W">
  4836. <connects>
  4837. <connect gate="G$1" pin="1" pad="1"/>
  4838. <connect gate="G$1" pin="2" pad="2"/>
  4839. </connects>
  4840. <technologies>
  4841. <technology name=""/>
  4842. </technologies>
  4843. </device>
  4844. <device name="R2512" package="R2512">
  4845. <connects>
  4846. <connect gate="G$1" pin="1" pad="1"/>
  4847. <connect gate="G$1" pin="2" pad="2"/>
  4848. </connects>
  4849. <technologies>
  4850. <technology name=""/>
  4851. </technologies>
  4852. </device>
  4853. <device name="R2512W" package="R2512W">
  4854. <connects>
  4855. <connect gate="G$1" pin="1" pad="1"/>
  4856. <connect gate="G$1" pin="2" pad="2"/>
  4857. </connects>
  4858. <technologies>
  4859. <technology name=""/>
  4860. </technologies>
  4861. </device>
  4862. <device name="R3216" package="R3216">
  4863. <connects>
  4864. <connect gate="G$1" pin="1" pad="1"/>
  4865. <connect gate="G$1" pin="2" pad="2"/>
  4866. </connects>
  4867. <technologies>
  4868. <technology name=""/>
  4869. </technologies>
  4870. </device>
  4871. <device name="R3216W" package="R3216W">
  4872. <connects>
  4873. <connect gate="G$1" pin="1" pad="1"/>
  4874. <connect gate="G$1" pin="2" pad="2"/>
  4875. </connects>
  4876. <technologies>
  4877. <technology name=""/>
  4878. </technologies>
  4879. </device>
  4880. <device name="R3225" package="R3225">
  4881. <connects>
  4882. <connect gate="G$1" pin="1" pad="1"/>
  4883. <connect gate="G$1" pin="2" pad="2"/>
  4884. </connects>
  4885. <technologies>
  4886. <technology name=""/>
  4887. </technologies>
  4888. </device>
  4889. <device name="R3225W" package="R3225W">
  4890. <connects>
  4891. <connect gate="G$1" pin="1" pad="1"/>
  4892. <connect gate="G$1" pin="2" pad="2"/>
  4893. </connects>
  4894. <technologies>
  4895. <technology name=""/>
  4896. </technologies>
  4897. </device>
  4898. <device name="R5025" package="R5025">
  4899. <connects>
  4900. <connect gate="G$1" pin="1" pad="1"/>
  4901. <connect gate="G$1" pin="2" pad="2"/>
  4902. </connects>
  4903. <technologies>
  4904. <technology name=""/>
  4905. </technologies>
  4906. </device>
  4907. <device name="R5025W" package="R5025W">
  4908. <connects>
  4909. <connect gate="G$1" pin="1" pad="1"/>
  4910. <connect gate="G$1" pin="2" pad="2"/>
  4911. </connects>
  4912. <technologies>
  4913. <technology name=""/>
  4914. </technologies>
  4915. </device>
  4916. <device name="R6332" package="R6332">
  4917. <connects>
  4918. <connect gate="G$1" pin="1" pad="1"/>
  4919. <connect gate="G$1" pin="2" pad="2"/>
  4920. </connects>
  4921. <technologies>
  4922. <technology name=""/>
  4923. </technologies>
  4924. </device>
  4925. <device name="R6332W" package="R6332W">
  4926. <connects>
  4927. <connect gate="G$1" pin="1" pad="1"/>
  4928. <connect gate="G$1" pin="2" pad="2"/>
  4929. </connects>
  4930. <technologies>
  4931. <technology name=""/>
  4932. </technologies>
  4933. </device>
  4934. <device name="M0805" package="M0805">
  4935. <connects>
  4936. <connect gate="G$1" pin="1" pad="1"/>
  4937. <connect gate="G$1" pin="2" pad="2"/>
  4938. </connects>
  4939. <technologies>
  4940. <technology name=""/>
  4941. </technologies>
  4942. </device>
  4943. <device name="M1206" package="M1206">
  4944. <connects>
  4945. <connect gate="G$1" pin="1" pad="1"/>
  4946. <connect gate="G$1" pin="2" pad="2"/>
  4947. </connects>
  4948. <technologies>
  4949. <technology name=""/>
  4950. </technologies>
  4951. </device>
  4952. <device name="M1406" package="M1406">
  4953. <connects>
  4954. <connect gate="G$1" pin="1" pad="1"/>
  4955. <connect gate="G$1" pin="2" pad="2"/>
  4956. </connects>
  4957. <technologies>
  4958. <technology name=""/>
  4959. </technologies>
  4960. </device>
  4961. <device name="M2012" package="M2012">
  4962. <connects>
  4963. <connect gate="G$1" pin="1" pad="1"/>
  4964. <connect gate="G$1" pin="2" pad="2"/>
  4965. </connects>
  4966. <technologies>
  4967. <technology name=""/>
  4968. </technologies>
  4969. </device>
  4970. <device name="M2309" package="M2309">
  4971. <connects>
  4972. <connect gate="G$1" pin="1" pad="1"/>
  4973. <connect gate="G$1" pin="2" pad="2"/>
  4974. </connects>
  4975. <technologies>
  4976. <technology name=""/>
  4977. </technologies>
  4978. </device>
  4979. <device name="M3216" package="M3216">
  4980. <connects>
  4981. <connect gate="G$1" pin="1" pad="1"/>
  4982. <connect gate="G$1" pin="2" pad="2"/>
  4983. </connects>
  4984. <technologies>
  4985. <technology name=""/>
  4986. </technologies>
  4987. </device>
  4988. <device name="M3516" package="M3516">
  4989. <connects>
  4990. <connect gate="G$1" pin="1" pad="1"/>
  4991. <connect gate="G$1" pin="2" pad="2"/>
  4992. </connects>
  4993. <technologies>
  4994. <technology name=""/>
  4995. </technologies>
  4996. </device>
  4997. <device name="M5923" package="M5923">
  4998. <connects>
  4999. <connect gate="G$1" pin="1" pad="1"/>
  5000. <connect gate="G$1" pin="2" pad="2"/>
  5001. </connects>
  5002. <technologies>
  5003. <technology name=""/>
  5004. </technologies>
  5005. </device>
  5006. <device name="0204/5" package="0204/5">
  5007. <connects>
  5008. <connect gate="G$1" pin="1" pad="1"/>
  5009. <connect gate="G$1" pin="2" pad="2"/>
  5010. </connects>
  5011. <technologies>
  5012. <technology name=""/>
  5013. </technologies>
  5014. </device>
  5015. <device name="0204/7" package="0204/7">
  5016. <connects>
  5017. <connect gate="G$1" pin="1" pad="1"/>
  5018. <connect gate="G$1" pin="2" pad="2"/>
  5019. </connects>
  5020. <technologies>
  5021. <technology name=""/>
  5022. </technologies>
  5023. </device>
  5024. <device name="0204/2V" package="0204V">
  5025. <connects>
  5026. <connect gate="G$1" pin="1" pad="1"/>
  5027. <connect gate="G$1" pin="2" pad="2"/>
  5028. </connects>
  5029. <technologies>
  5030. <technology name=""/>
  5031. </technologies>
  5032. </device>
  5033. <device name="0207/10" package="0207/10">
  5034. <connects>
  5035. <connect gate="G$1" pin="1" pad="1"/>
  5036. <connect gate="G$1" pin="2" pad="2"/>
  5037. </connects>
  5038. <technologies>
  5039. <technology name=""/>
  5040. </technologies>
  5041. </device>
  5042. <device name="0207/12" package="0207/12">
  5043. <connects>
  5044. <connect gate="G$1" pin="1" pad="1"/>
  5045. <connect gate="G$1" pin="2" pad="2"/>
  5046. </connects>
  5047. <technologies>
  5048. <technology name=""/>
  5049. </technologies>
  5050. </device>
  5051. <device name="0207/15" package="0207/15">
  5052. <connects>
  5053. <connect gate="G$1" pin="1" pad="1"/>
  5054. <connect gate="G$1" pin="2" pad="2"/>
  5055. </connects>
  5056. <technologies>
  5057. <technology name=""/>
  5058. </technologies>
  5059. </device>
  5060. <device name="0207/2V" package="0207/2V">
  5061. <connects>
  5062. <connect gate="G$1" pin="1" pad="1"/>
  5063. <connect gate="G$1" pin="2" pad="2"/>
  5064. </connects>
  5065. <technologies>
  5066. <technology name=""/>
  5067. </technologies>
  5068. </device>
  5069. <device name="0207/5V" package="0207/5V">
  5070. <connects>
  5071. <connect gate="G$1" pin="1" pad="1"/>
  5072. <connect gate="G$1" pin="2" pad="2"/>
  5073. </connects>
  5074. <technologies>
  5075. <technology name=""/>
  5076. </technologies>
  5077. </device>
  5078. <device name="0207/7" package="0207/7">
  5079. <connects>
  5080. <connect gate="G$1" pin="1" pad="1"/>
  5081. <connect gate="G$1" pin="2" pad="2"/>
  5082. </connects>
  5083. <technologies>
  5084. <technology name=""/>
  5085. </technologies>
  5086. </device>
  5087. <device name="0309/10" package="0309/10">
  5088. <connects>
  5089. <connect gate="G$1" pin="1" pad="1"/>
  5090. <connect gate="G$1" pin="2" pad="2"/>
  5091. </connects>
  5092. <technologies>
  5093. <technology name=""/>
  5094. </technologies>
  5095. </device>
  5096. <device name="0309/12" package="0309/12">
  5097. <connects>
  5098. <connect gate="G$1" pin="1" pad="1"/>
  5099. <connect gate="G$1" pin="2" pad="2"/>
  5100. </connects>
  5101. <technologies>
  5102. <technology name=""/>
  5103. </technologies>
  5104. </device>
  5105. <device name="0309/V" package="0309V">
  5106. <connects>
  5107. <connect gate="G$1" pin="1" pad="1"/>
  5108. <connect gate="G$1" pin="2" pad="2"/>
  5109. </connects>
  5110. <technologies>
  5111. <technology name=""/>
  5112. </technologies>
  5113. </device>
  5114. <device name="0411/12" package="0411/12">
  5115. <connects>
  5116. <connect gate="G$1" pin="1" pad="1"/>
  5117. <connect gate="G$1" pin="2" pad="2"/>
  5118. </connects>
  5119. <technologies>
  5120. <technology name=""/>
  5121. </technologies>
  5122. </device>
  5123. <device name="0411/15" package="0411/15">
  5124. <connects>
  5125. <connect gate="G$1" pin="1" pad="1"/>
  5126. <connect gate="G$1" pin="2" pad="2"/>
  5127. </connects>
  5128. <technologies>
  5129. <technology name=""/>
  5130. </technologies>
  5131. </device>
  5132. <device name="0411/3V" package="0411V">
  5133. <connects>
  5134. <connect gate="G$1" pin="1" pad="1"/>
  5135. <connect gate="G$1" pin="2" pad="2"/>
  5136. </connects>
  5137. <technologies>
  5138. <technology name=""/>
  5139. </technologies>
  5140. </device>
  5141. <device name="0414/15" package="0414/15">
  5142. <connects>
  5143. <connect gate="G$1" pin="1" pad="1"/>
  5144. <connect gate="G$1" pin="2" pad="2"/>
  5145. </connects>
  5146. <technologies>
  5147. <technology name=""/>
  5148. </technologies>
  5149. </device>
  5150. <device name="0414/5V" package="0414V">
  5151. <connects>
  5152. <connect gate="G$1" pin="1" pad="1"/>
  5153. <connect gate="G$1" pin="2" pad="2"/>
  5154. </connects>
  5155. <technologies>
  5156. <technology name=""/>
  5157. </technologies>
  5158. </device>
  5159. <device name="0617/17" package="0617/17">
  5160. <connects>
  5161. <connect gate="G$1" pin="1" pad="1"/>
  5162. <connect gate="G$1" pin="2" pad="2"/>
  5163. </connects>
  5164. <technologies>
  5165. <technology name=""/>
  5166. </technologies>
  5167. </device>
  5168. <device name="0617/22" package="0617/22">
  5169. <connects>
  5170. <connect gate="G$1" pin="1" pad="1"/>
  5171. <connect gate="G$1" pin="2" pad="2"/>
  5172. </connects>
  5173. <technologies>
  5174. <technology name=""/>
  5175. </technologies>
  5176. </device>
  5177. <device name="0617/5V" package="0617V">
  5178. <connects>
  5179. <connect gate="G$1" pin="1" pad="1"/>
  5180. <connect gate="G$1" pin="2" pad="2"/>
  5181. </connects>
  5182. <technologies>
  5183. <technology name=""/>
  5184. </technologies>
  5185. </device>
  5186. <device name="0922/22" package="0922/22">
  5187. <connects>
  5188. <connect gate="G$1" pin="1" pad="1"/>
  5189. <connect gate="G$1" pin="2" pad="2"/>
  5190. </connects>
  5191. <technologies>
  5192. <technology name=""/>
  5193. </technologies>
  5194. </device>
  5195. <device name="0613/5V" package="P0613V">
  5196. <connects>
  5197. <connect gate="G$1" pin="1" pad="1"/>
  5198. <connect gate="G$1" pin="2" pad="2"/>
  5199. </connects>
  5200. <technologies>
  5201. <technology name=""/>
  5202. </technologies>
  5203. </device>
  5204. <device name="0613/15" package="P0613/15">
  5205. <connects>
  5206. <connect gate="G$1" pin="1" pad="1"/>
  5207. <connect gate="G$1" pin="2" pad="2"/>
  5208. </connects>
  5209. <technologies>
  5210. <technology name=""/>
  5211. </technologies>
  5212. </device>
  5213. <device name="0817/22" package="P0817/22">
  5214. <connects>
  5215. <connect gate="G$1" pin="1" pad="1"/>
  5216. <connect gate="G$1" pin="2" pad="2"/>
  5217. </connects>
  5218. <technologies>
  5219. <technology name=""/>
  5220. </technologies>
  5221. </device>
  5222. <device name="0817/7V" package="P0817V">
  5223. <connects>
  5224. <connect gate="G$1" pin="1" pad="1"/>
  5225. <connect gate="G$1" pin="2" pad="2"/>
  5226. </connects>
  5227. <technologies>
  5228. <technology name=""/>
  5229. </technologies>
  5230. </device>
  5231. <device name="V234/12" package="V234/12">
  5232. <connects>
  5233. <connect gate="G$1" pin="1" pad="1"/>
  5234. <connect gate="G$1" pin="2" pad="2"/>
  5235. </connects>
  5236. <technologies>
  5237. <technology name=""/>
  5238. </technologies>
  5239. </device>
  5240. <device name="V235/17" package="V235/17">
  5241. <connects>
  5242. <connect gate="G$1" pin="1" pad="1"/>
  5243. <connect gate="G$1" pin="2" pad="2"/>
  5244. </connects>
  5245. <technologies>
  5246. <technology name=""/>
  5247. </technologies>
  5248. </device>
  5249. <device name="V526-0" package="V526-0">
  5250. <connects>
  5251. <connect gate="G$1" pin="1" pad="1"/>
  5252. <connect gate="G$1" pin="2" pad="2"/>
  5253. </connects>
  5254. <technologies>
  5255. <technology name=""/>
  5256. </technologies>
  5257. </device>
  5258. <device name="MELF0102R" package="MINI_MELF-0102R">
  5259. <connects>
  5260. <connect gate="G$1" pin="1" pad="1"/>
  5261. <connect gate="G$1" pin="2" pad="2"/>
  5262. </connects>
  5263. <technologies>
  5264. <technology name=""/>
  5265. </technologies>
  5266. </device>
  5267. <device name="MELF0102W" package="MINI_MELF-0102W">
  5268. <connects>
  5269. <connect gate="G$1" pin="1" pad="1"/>
  5270. <connect gate="G$1" pin="2" pad="2"/>
  5271. </connects>
  5272. <technologies>
  5273. <technology name=""/>
  5274. </technologies>
  5275. </device>
  5276. <device name="MELF0204R" package="MINI_MELF-0204R">
  5277. <connects>
  5278. <connect gate="G$1" pin="1" pad="1"/>
  5279. <connect gate="G$1" pin="2" pad="2"/>
  5280. </connects>
  5281. <technologies>
  5282. <technology name=""/>
  5283. </technologies>
  5284. </device>
  5285. <device name="MELF0204W" package="MINI_MELF-0204W">
  5286. <connects>
  5287. <connect gate="G$1" pin="1" pad="1"/>
  5288. <connect gate="G$1" pin="2" pad="2"/>
  5289. </connects>
  5290. <technologies>
  5291. <technology name=""/>
  5292. </technologies>
  5293. </device>
  5294. <device name="MELF0207R" package="MINI_MELF-0207R">
  5295. <connects>
  5296. <connect gate="G$1" pin="1" pad="1"/>
  5297. <connect gate="G$1" pin="2" pad="2"/>
  5298. </connects>
  5299. <technologies>
  5300. <technology name=""/>
  5301. </technologies>
  5302. </device>
  5303. <device name="MELF0207W" package="MINI_MELF-0207W">
  5304. <connects>
  5305. <connect gate="G$1" pin="1" pad="1"/>
  5306. <connect gate="G$1" pin="2" pad="2"/>
  5307. </connects>
  5308. <technologies>
  5309. <technology name=""/>
  5310. </technologies>
  5311. </device>
  5312. <device name="0922V" package="0922V">
  5313. <connects>
  5314. <connect gate="G$1" pin="1" pad="1"/>
  5315. <connect gate="G$1" pin="2" pad="2"/>
  5316. </connects>
  5317. <technologies>
  5318. <technology name=""/>
  5319. </technologies>
  5320. </device>
  5321. <device name="RDH/15" package="RDH/15">
  5322. <connects>
  5323. <connect gate="G$1" pin="1" pad="1"/>
  5324. <connect gate="G$1" pin="2" pad="2"/>
  5325. </connects>
  5326. <technologies>
  5327. <technology name=""/>
  5328. </technologies>
  5329. </device>
  5330. <device name="MELF0102AX" package="MINI_MELF-0102AX">
  5331. <connects>
  5332. <connect gate="G$1" pin="1" pad="1"/>
  5333. <connect gate="G$1" pin="2" pad="2"/>
  5334. </connects>
  5335. <technologies>
  5336. <technology name=""/>
  5337. </technologies>
  5338. </device>
  5339. <device name="R0201" package="R0201">
  5340. <connects>
  5341. <connect gate="G$1" pin="1" pad="1"/>
  5342. <connect gate="G$1" pin="2" pad="2"/>
  5343. </connects>
  5344. <technologies>
  5345. <technology name=""/>
  5346. </technologies>
  5347. </device>
  5348. <device name="VTA52" package="VTA52">
  5349. <connects>
  5350. <connect gate="G$1" pin="1" pad="1"/>
  5351. <connect gate="G$1" pin="2" pad="2"/>
  5352. </connects>
  5353. <technologies>
  5354. <technology name=""/>
  5355. </technologies>
  5356. </device>
  5357. <device name="VTA53" package="VTA53">
  5358. <connects>
  5359. <connect gate="G$1" pin="1" pad="1"/>
  5360. <connect gate="G$1" pin="2" pad="2"/>
  5361. </connects>
  5362. <technologies>
  5363. <technology name=""/>
  5364. </technologies>
  5365. </device>
  5366. <device name="VTA54" package="VTA54">
  5367. <connects>
  5368. <connect gate="G$1" pin="1" pad="1"/>
  5369. <connect gate="G$1" pin="2" pad="2"/>
  5370. </connects>
  5371. <technologies>
  5372. <technology name=""/>
  5373. </technologies>
  5374. </device>
  5375. <device name="VTA55" package="VTA55">
  5376. <connects>
  5377. <connect gate="G$1" pin="1" pad="1"/>
  5378. <connect gate="G$1" pin="2" pad="2"/>
  5379. </connects>
  5380. <technologies>
  5381. <technology name=""/>
  5382. </technologies>
  5383. </device>
  5384. <device name="VTA56" package="VTA56">
  5385. <connects>
  5386. <connect gate="G$1" pin="1" pad="1"/>
  5387. <connect gate="G$1" pin="2" pad="2"/>
  5388. </connects>
  5389. <technologies>
  5390. <technology name=""/>
  5391. </technologies>
  5392. </device>
  5393. <device name="VMTA55" package="VMTA55">
  5394. <connects>
  5395. <connect gate="G$1" pin="1" pad="1"/>
  5396. <connect gate="G$1" pin="2" pad="2"/>
  5397. </connects>
  5398. <technologies>
  5399. <technology name=""/>
  5400. </technologies>
  5401. </device>
  5402. <device name="VMTB60" package="VMTB60">
  5403. <connects>
  5404. <connect gate="G$1" pin="1" pad="1"/>
  5405. <connect gate="G$1" pin="2" pad="2"/>
  5406. </connects>
  5407. <technologies>
  5408. <technology name=""/>
  5409. </technologies>
  5410. </device>
  5411. <device name="R4527" package="R4527">
  5412. <connects>
  5413. <connect gate="G$1" pin="1" pad="1"/>
  5414. <connect gate="G$1" pin="2" pad="2"/>
  5415. </connects>
  5416. <technologies>
  5417. <technology name=""/>
  5418. </technologies>
  5419. </device>
  5420. <device name="WSC0001" package="WSC0001">
  5421. <connects>
  5422. <connect gate="G$1" pin="1" pad="1"/>
  5423. <connect gate="G$1" pin="2" pad="2"/>
  5424. </connects>
  5425. <technologies>
  5426. <technology name=""/>
  5427. </technologies>
  5428. </device>
  5429. <device name="WSC0002" package="WSC0002">
  5430. <connects>
  5431. <connect gate="G$1" pin="1" pad="1"/>
  5432. <connect gate="G$1" pin="2" pad="2"/>
  5433. </connects>
  5434. <technologies>
  5435. <technology name=""/>
  5436. </technologies>
  5437. </device>
  5438. <device name="WSC01/2" package="WSC01/2">
  5439. <connects>
  5440. <connect gate="G$1" pin="1" pad="1"/>
  5441. <connect gate="G$1" pin="2" pad="2"/>
  5442. </connects>
  5443. <technologies>
  5444. <technology name=""/>
  5445. </technologies>
  5446. </device>
  5447. <device name="WSC2515" package="WSC2515">
  5448. <connects>
  5449. <connect gate="G$1" pin="1" pad="1"/>
  5450. <connect gate="G$1" pin="2" pad="2"/>
  5451. </connects>
  5452. <technologies>
  5453. <technology name=""/>
  5454. </technologies>
  5455. </device>
  5456. <device name="WSC4527" package="WSC4527">
  5457. <connects>
  5458. <connect gate="G$1" pin="1" pad="1"/>
  5459. <connect gate="G$1" pin="2" pad="2"/>
  5460. </connects>
  5461. <technologies>
  5462. <technology name=""/>
  5463. </technologies>
  5464. </device>
  5465. <device name="WSC6927" package="WSC6927">
  5466. <connects>
  5467. <connect gate="G$1" pin="1" pad="1"/>
  5468. <connect gate="G$1" pin="2" pad="2"/>
  5469. </connects>
  5470. <technologies>
  5471. <technology name=""/>
  5472. </technologies>
  5473. </device>
  5474. <device name="R1218" package="R1218">
  5475. <connects>
  5476. <connect gate="G$1" pin="1" pad="1"/>
  5477. <connect gate="G$1" pin="2" pad="2"/>
  5478. </connects>
  5479. <technologies>
  5480. <technology name=""/>
  5481. </technologies>
  5482. </device>
  5483. <device name="1812X7R" package="1812X7R">
  5484. <connects>
  5485. <connect gate="G$1" pin="1" pad="1"/>
  5486. <connect gate="G$1" pin="2" pad="2"/>
  5487. </connects>
  5488. <technologies>
  5489. <technology name=""/>
  5490. </technologies>
  5491. </device>
  5492. <device name="PRL1632" package="PRL1632">
  5493. <connects>
  5494. <connect gate="G$1" pin="1" pad="1"/>
  5495. <connect gate="G$1" pin="2" pad="2"/>
  5496. </connects>
  5497. <technologies>
  5498. <technology name=""/>
  5499. </technologies>
  5500. </device>
  5501. <device name="01005" package="R01005">
  5502. <connects>
  5503. <connect gate="G$1" pin="1" pad="1"/>
  5504. <connect gate="G$1" pin="2" pad="2"/>
  5505. </connects>
  5506. <technologies>
  5507. <technology name=""/>
  5508. </technologies>
  5509. </device>
  5510. </devices>
  5511. </deviceset>
  5512. <deviceset name="C-EU" prefix="C" uservalue="yes">
  5513. <description>&lt;B&gt;CAPACITOR&lt;/B&gt;, European symbol</description>
  5514. <gates>
  5515. <gate name="G$1" symbol="C-EU-1" x="0" y="0"/>
  5516. </gates>
  5517. <devices>
  5518. <device name="C0402" package="C0402">
  5519. <connects>
  5520. <connect gate="G$1" pin="1" pad="1"/>
  5521. <connect gate="G$1" pin="2" pad="2"/>
  5522. </connects>
  5523. <technologies>
  5524. <technology name=""/>
  5525. </technologies>
  5526. </device>
  5527. <device name="C0504" package="C0504">
  5528. <connects>
  5529. <connect gate="G$1" pin="1" pad="1"/>
  5530. <connect gate="G$1" pin="2" pad="2"/>
  5531. </connects>
  5532. <technologies>
  5533. <technology name=""/>
  5534. </technologies>
  5535. </device>
  5536. <device name="C0603" package="C0603">
  5537. <connects>
  5538. <connect gate="G$1" pin="1" pad="1"/>
  5539. <connect gate="G$1" pin="2" pad="2"/>
  5540. </connects>
  5541. <technologies>
  5542. <technology name=""/>
  5543. </technologies>
  5544. </device>
  5545. <device name="C0805" package="C0805">
  5546. <connects>
  5547. <connect gate="G$1" pin="1" pad="1"/>
  5548. <connect gate="G$1" pin="2" pad="2"/>
  5549. </connects>
  5550. <technologies>
  5551. <technology name=""/>
  5552. </technologies>
  5553. </device>
  5554. <device name="C1206" package="C1206">
  5555. <connects>
  5556. <connect gate="G$1" pin="1" pad="1"/>
  5557. <connect gate="G$1" pin="2" pad="2"/>
  5558. </connects>
  5559. <technologies>
  5560. <technology name=""/>
  5561. </technologies>
  5562. </device>
  5563. <device name="C1210" package="C1210">
  5564. <connects>
  5565. <connect gate="G$1" pin="1" pad="1"/>
  5566. <connect gate="G$1" pin="2" pad="2"/>
  5567. </connects>
  5568. <technologies>
  5569. <technology name=""/>
  5570. </technologies>
  5571. </device>
  5572. <device name="C1310" package="C1310">
  5573. <connects>
  5574. <connect gate="G$1" pin="1" pad="1"/>
  5575. <connect gate="G$1" pin="2" pad="2"/>
  5576. </connects>
  5577. <technologies>
  5578. <technology name=""/>
  5579. </technologies>
  5580. </device>
  5581. <device name="C1608" package="C1608">
  5582. <connects>
  5583. <connect gate="G$1" pin="1" pad="1"/>
  5584. <connect gate="G$1" pin="2" pad="2"/>
  5585. </connects>
  5586. <technologies>
  5587. <technology name=""/>
  5588. </technologies>
  5589. </device>
  5590. <device name="C1812" package="C1812">
  5591. <connects>
  5592. <connect gate="G$1" pin="1" pad="1"/>
  5593. <connect gate="G$1" pin="2" pad="2"/>
  5594. </connects>
  5595. <technologies>
  5596. <technology name=""/>
  5597. </technologies>
  5598. </device>
  5599. <device name="C1825" package="C1825">
  5600. <connects>
  5601. <connect gate="G$1" pin="1" pad="1"/>
  5602. <connect gate="G$1" pin="2" pad="2"/>
  5603. </connects>
  5604. <technologies>
  5605. <technology name=""/>
  5606. </technologies>
  5607. </device>
  5608. <device name="C2012" package="C2012">
  5609. <connects>
  5610. <connect gate="G$1" pin="1" pad="1"/>
  5611. <connect gate="G$1" pin="2" pad="2"/>
  5612. </connects>
  5613. <technologies>
  5614. <technology name=""/>
  5615. </technologies>
  5616. </device>
  5617. <device name="C3216" package="C3216">
  5618. <connects>
  5619. <connect gate="G$1" pin="1" pad="1"/>
  5620. <connect gate="G$1" pin="2" pad="2"/>
  5621. </connects>
  5622. <technologies>
  5623. <technology name=""/>
  5624. </technologies>
  5625. </device>
  5626. <device name="C3225" package="C3225">
  5627. <connects>
  5628. <connect gate="G$1" pin="1" pad="1"/>
  5629. <connect gate="G$1" pin="2" pad="2"/>
  5630. </connects>
  5631. <technologies>
  5632. <technology name=""/>
  5633. </technologies>
  5634. </device>
  5635. <device name="C4532" package="C4532">
  5636. <connects>
  5637. <connect gate="G$1" pin="1" pad="1"/>
  5638. <connect gate="G$1" pin="2" pad="2"/>
  5639. </connects>
  5640. <technologies>
  5641. <technology name=""/>
  5642. </technologies>
  5643. </device>
  5644. <device name="C4564" package="C4564">
  5645. <connects>
  5646. <connect gate="G$1" pin="1" pad="1"/>
  5647. <connect gate="G$1" pin="2" pad="2"/>
  5648. </connects>
  5649. <technologies>
  5650. <technology name=""/>
  5651. </technologies>
  5652. </device>
  5653. <device name="025-024X044" package="C025-024X044">
  5654. <connects>
  5655. <connect gate="G$1" pin="1" pad="1"/>
  5656. <connect gate="G$1" pin="2" pad="2"/>
  5657. </connects>
  5658. <technologies>
  5659. <technology name=""/>
  5660. </technologies>
  5661. </device>
  5662. <device name="025-025X050" package="C025-025X050">
  5663. <connects>
  5664. <connect gate="G$1" pin="1" pad="1"/>
  5665. <connect gate="G$1" pin="2" pad="2"/>
  5666. </connects>
  5667. <technologies>
  5668. <technology name=""/>
  5669. </technologies>
  5670. </device>
  5671. <device name="025-030X050" package="C025-030X050">
  5672. <connects>
  5673. <connect gate="G$1" pin="1" pad="1"/>
  5674. <connect gate="G$1" pin="2" pad="2"/>
  5675. </connects>
  5676. <technologies>
  5677. <technology name=""/>
  5678. </technologies>
  5679. </device>
  5680. <device name="025-040X050" package="C025-040X050">
  5681. <connects>
  5682. <connect gate="G$1" pin="1" pad="1"/>
  5683. <connect gate="G$1" pin="2" pad="2"/>
  5684. </connects>
  5685. <technologies>
  5686. <technology name=""/>
  5687. </technologies>
  5688. </device>
  5689. <device name="025-050X050" package="C025-050X050">
  5690. <connects>
  5691. <connect gate="G$1" pin="1" pad="1"/>
  5692. <connect gate="G$1" pin="2" pad="2"/>
  5693. </connects>
  5694. <technologies>
  5695. <technology name=""/>
  5696. </technologies>
  5697. </device>
  5698. <device name="025-060X050" package="C025-060X050">
  5699. <connects>
  5700. <connect gate="G$1" pin="1" pad="1"/>
  5701. <connect gate="G$1" pin="2" pad="2"/>
  5702. </connects>
  5703. <technologies>
  5704. <technology name=""/>
  5705. </technologies>
  5706. </device>
  5707. <device name="C025_050-024X070" package="C025_050-024X070">
  5708. <connects>
  5709. <connect gate="G$1" pin="1" pad="1"/>
  5710. <connect gate="G$1" pin="2" pad="2"/>
  5711. </connects>
  5712. <technologies>
  5713. <technology name=""/>
  5714. </technologies>
  5715. </device>
  5716. <device name="025_050-025X075" package="C025_050-025X075">
  5717. <connects>
  5718. <connect gate="G$1" pin="1" pad="1"/>
  5719. <connect gate="G$1" pin="2" pad="2"/>
  5720. </connects>
  5721. <technologies>
  5722. <technology name=""/>
  5723. </technologies>
  5724. </device>
  5725. <device name="025_050-035X075" package="C025_050-035X075">
  5726. <connects>
  5727. <connect gate="G$1" pin="1" pad="1"/>
  5728. <connect gate="G$1" pin="2" pad="2"/>
  5729. </connects>
  5730. <technologies>
  5731. <technology name=""/>
  5732. </technologies>
  5733. </device>
  5734. <device name="025_050-045X075" package="C025_050-045X075">
  5735. <connects>
  5736. <connect gate="G$1" pin="1" pad="1"/>
  5737. <connect gate="G$1" pin="2" pad="2"/>
  5738. </connects>
  5739. <technologies>
  5740. <technology name=""/>
  5741. </technologies>
  5742. </device>
  5743. <device name="025_050-055X075" package="C025_050-055X075">
  5744. <connects>
  5745. <connect gate="G$1" pin="1" pad="1"/>
  5746. <connect gate="G$1" pin="2" pad="2"/>
  5747. </connects>
  5748. <technologies>
  5749. <technology name=""/>
  5750. </technologies>
  5751. </device>
  5752. <device name="050-024X044" package="C050-024X044">
  5753. <connects>
  5754. <connect gate="G$1" pin="1" pad="1"/>
  5755. <connect gate="G$1" pin="2" pad="2"/>
  5756. </connects>
  5757. <technologies>
  5758. <technology name=""/>
  5759. </technologies>
  5760. </device>
  5761. <device name="050-025X075" package="C050-025X075">
  5762. <connects>
  5763. <connect gate="G$1" pin="1" pad="1"/>
  5764. <connect gate="G$1" pin="2" pad="2"/>
  5765. </connects>
  5766. <technologies>
  5767. <technology name=""/>
  5768. </technologies>
  5769. </device>
  5770. <device name="050-045X075" package="C050-045X075">
  5771. <connects>
  5772. <connect gate="G$1" pin="1" pad="1"/>
  5773. <connect gate="G$1" pin="2" pad="2"/>
  5774. </connects>
  5775. <technologies>
  5776. <technology name=""/>
  5777. </technologies>
  5778. </device>
  5779. <device name="050-030X075" package="C050-030X075">
  5780. <connects>
  5781. <connect gate="G$1" pin="1" pad="1"/>
  5782. <connect gate="G$1" pin="2" pad="2"/>
  5783. </connects>
  5784. <technologies>
  5785. <technology name=""/>
  5786. </technologies>
  5787. </device>
  5788. <device name="050-050X075" package="C050-050X075">
  5789. <connects>
  5790. <connect gate="G$1" pin="1" pad="1"/>
  5791. <connect gate="G$1" pin="2" pad="2"/>
  5792. </connects>
  5793. <technologies>
  5794. <technology name=""/>
  5795. </technologies>
  5796. </device>
  5797. <device name="050-055X075" package="C050-055X075">
  5798. <connects>
  5799. <connect gate="G$1" pin="1" pad="1"/>
  5800. <connect gate="G$1" pin="2" pad="2"/>
  5801. </connects>
  5802. <technologies>
  5803. <technology name=""/>
  5804. </technologies>
  5805. </device>
  5806. <device name="050-075X075" package="C050-075X075">
  5807. <connects>
  5808. <connect gate="G$1" pin="1" pad="1"/>
  5809. <connect gate="G$1" pin="2" pad="2"/>
  5810. </connects>
  5811. <technologies>
  5812. <technology name=""/>
  5813. </technologies>
  5814. </device>
  5815. <device name="050H075X075" package="C050H075X075">
  5816. <connects>
  5817. <connect gate="G$1" pin="1" pad="1"/>
  5818. <connect gate="G$1" pin="2" pad="2"/>
  5819. </connects>
  5820. <technologies>
  5821. <technology name=""/>
  5822. </technologies>
  5823. </device>
  5824. <device name="075-032X103" package="C075-032X103">
  5825. <connects>
  5826. <connect gate="G$1" pin="1" pad="1"/>
  5827. <connect gate="G$1" pin="2" pad="2"/>
  5828. </connects>
  5829. <technologies>
  5830. <technology name=""/>
  5831. </technologies>
  5832. </device>
  5833. <device name="075-042X103" package="C075-042X103">
  5834. <connects>
  5835. <connect gate="G$1" pin="1" pad="1"/>
  5836. <connect gate="G$1" pin="2" pad="2"/>
  5837. </connects>
  5838. <technologies>
  5839. <technology name=""/>
  5840. </technologies>
  5841. </device>
  5842. <device name="075-052X106" package="C075-052X106">
  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="102-043X133" package="C102-043X133">
  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="102-054X133" package="C102-054X133">
  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="102-064X133" package="C102-064X133">
  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="102_152-062X184" package="C102_152-062X184">
  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="150-054X183" package="C150-054X183">
  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="150-064X183" package="C150-064X183">
  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="150-072X183" package="C150-072X183">
  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="150-084X183" package="C150-084X183">
  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="150-091X182" package="C150-091X182">
  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="225-062X268" package="C225-062X268">
  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="225-074X268" package="C225-074X268">
  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="225-087X268" package="C225-087X268">
  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="225-108X268" package="C225-108X268">
  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="225-113X268" package="C225-113X268">
  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="275-093X316" package="C275-093X316">
  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="275-113X316" package="C275-113X316">
  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="275-134X316" package="C275-134X316">
  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="275-205X316" package="C275-205X316">
  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="325-137X374" package="C325-137X374">
  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="325-162X374" package="C325-162X374">
  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="325-182X374" package="C325-182X374">
  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="375-192X418" package="C375-192X418">
  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="375-203X418" package="C375-203X418">
  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="050-035X075" package="C050-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="375-155X418" package="C375-155X418">
  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="075-063X106" package="C075-063X106">
  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="275-154X316" package="C275-154X316">
  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="275-173X316" package="C275-173X316">
  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="C0402K" package="C0402K">
  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="C0603K" package="C0603K">
  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="C0805K" package="C0805K">
  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="C1206K" package="C1206K">
  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="C1210K" package="C1210K">
  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="C1812K" package="C1812K">
  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="C1825K" package="C1825K">
  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="C2220K" package="C2220K">
  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="C2225K" package="C2225K">
  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="HPC0201" package="HPC0201">
  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="C0201" package="C0201">
  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="C1808" package="C1808">
  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="C3640" package="C3640">
  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="01005" package="C01005">
  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. </devices>
  6230. </deviceset>
  6231. </devicesets>
  6232. </library>
  6233. <library name="pinhead">
  6234. <description>&lt;b&gt;Pin Header Connectors&lt;/b&gt;&lt;p&gt;
  6235. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  6236. <packages>
  6237. <package name="1X03">
  6238. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6239. <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  6240. <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  6241. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  6242. <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6243. <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  6244. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  6245. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  6246. <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  6247. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6248. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  6249. <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  6250. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  6251. <wire x1="-3.175" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  6252. <wire x1="-3.81" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  6253. <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  6254. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  6255. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  6256. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  6257. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
  6258. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  6259. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  6260. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  6261. <pad name="1" x="-2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  6262. <pad name="2" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  6263. <pad name="3" x="2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  6264. <text x="-3.8862" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6265. <text x="-3.81" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6266. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  6267. <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
  6268. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  6269. </package>
  6270. <package name="1X03/90">
  6271. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6272. <wire x1="-3.81" y1="-1.905" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/>
  6273. <wire x1="-1.27" y1="-1.905" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  6274. <wire x1="-1.27" y1="0.635" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  6275. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-1.905" width="0.1524" layer="21"/>
  6276. <wire x1="-2.54" y1="6.985" x2="-2.54" y2="1.27" width="0.762" layer="21"/>
  6277. <wire x1="-1.27" y1="-1.905" x2="1.27" y2="-1.905" width="0.1524" layer="21"/>
  6278. <wire x1="1.27" y1="-1.905" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  6279. <wire x1="1.27" y1="0.635" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  6280. <wire x1="0" y1="6.985" x2="0" y2="1.27" width="0.762" layer="21"/>
  6281. <wire x1="1.27" y1="-1.905" x2="3.81" y2="-1.905" width="0.1524" layer="21"/>
  6282. <wire x1="3.81" y1="-1.905" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  6283. <wire x1="3.81" y1="0.635" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  6284. <wire x1="2.54" y1="6.985" x2="2.54" y2="1.27" width="0.762" layer="21"/>
  6285. <pad name="1" x="-2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6286. <pad name="2" x="0" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6287. <pad name="3" x="2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6288. <text x="-4.445" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  6289. <text x="5.715" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6290. <rectangle x1="-2.921" y1="0.635" x2="-2.159" y2="1.143" layer="21"/>
  6291. <rectangle x1="-0.381" y1="0.635" x2="0.381" y2="1.143" layer="21"/>
  6292. <rectangle x1="2.159" y1="0.635" x2="2.921" y2="1.143" layer="21"/>
  6293. <rectangle x1="-2.921" y1="-2.921" x2="-2.159" y2="-1.905" layer="21"/>
  6294. <rectangle x1="-0.381" y1="-2.921" x2="0.381" y2="-1.905" layer="21"/>
  6295. <rectangle x1="2.159" y1="-2.921" x2="2.921" y2="-1.905" layer="21"/>
  6296. </package>
  6297. <package name="1X06">
  6298. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6299. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  6300. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6301. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  6302. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  6303. <wire x1="2.54" y1="0.635" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  6304. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  6305. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6306. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  6307. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  6308. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  6309. <wire x1="3.175" y1="-1.27" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  6310. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  6311. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  6312. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6313. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6314. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  6315. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6316. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6317. <wire x1="0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6318. <wire x1="0" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6319. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6320. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  6321. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6322. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  6323. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  6324. <wire x1="-5.08" y1="0.635" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
  6325. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  6326. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6327. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6328. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  6329. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  6330. <wire x1="-4.445" y1="-1.27" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  6331. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  6332. <wire x1="-6.985" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6333. <wire x1="-7.62" y1="-0.635" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  6334. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  6335. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  6336. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6337. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  6338. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  6339. <wire x1="5.715" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6340. <wire x1="5.08" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  6341. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  6342. <pad name="1" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  6343. <pad name="2" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  6344. <pad name="3" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6345. <pad name="4" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6346. <pad name="5" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  6347. <pad name="6" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  6348. <text x="-7.6962" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6349. <text x="-7.62" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6350. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  6351. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  6352. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  6353. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  6354. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  6355. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  6356. </package>
  6357. <package name="1X06/90">
  6358. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6359. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  6360. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6361. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6362. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  6363. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  6364. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  6365. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6366. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6367. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  6368. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  6369. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6370. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6371. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  6372. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  6373. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6374. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6375. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  6376. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  6377. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6378. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6379. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  6380. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  6381. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6382. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6383. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  6384. <pad name="1" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6385. <pad name="2" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6386. <pad name="3" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6387. <pad name="4" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6388. <pad name="5" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6389. <pad name="6" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6390. <text x="-8.255" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  6391. <text x="9.525" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6392. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  6393. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  6394. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  6395. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  6396. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  6397. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  6398. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  6399. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  6400. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  6401. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  6402. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  6403. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  6404. </package>
  6405. <package name="1X02">
  6406. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6407. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  6408. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6409. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6410. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  6411. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6412. <wire x1="-1.905" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6413. <wire x1="-2.54" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6414. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6415. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  6416. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  6417. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6418. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  6419. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  6420. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6421. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6422. <pad name="1" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6423. <pad name="2" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6424. <text x="-2.6162" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6425. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6426. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  6427. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  6428. </package>
  6429. <package name="1X02/90">
  6430. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6431. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  6432. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6433. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6434. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  6435. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  6436. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  6437. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6438. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6439. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  6440. <pad name="1" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6441. <pad name="2" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6442. <text x="-3.175" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  6443. <text x="4.445" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6444. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  6445. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  6446. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  6447. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  6448. </package>
  6449. <package name="1X10">
  6450. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6451. <wire x1="7.62" y1="0.635" x2="8.255" y2="1.27" width="0.1524" layer="21"/>
  6452. <wire x1="8.255" y1="1.27" x2="9.525" y2="1.27" width="0.1524" layer="21"/>
  6453. <wire x1="9.525" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  6454. <wire x1="10.16" y1="0.635" x2="10.16" y2="-0.635" width="0.1524" layer="21"/>
  6455. <wire x1="10.16" y1="-0.635" x2="9.525" y2="-1.27" width="0.1524" layer="21"/>
  6456. <wire x1="9.525" y1="-1.27" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  6457. <wire x1="8.255" y1="-1.27" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  6458. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  6459. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6460. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  6461. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  6462. <wire x1="5.08" y1="0.635" x2="5.715" y2="1.27" width="0.1524" layer="21"/>
  6463. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  6464. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6465. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  6466. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  6467. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  6468. <wire x1="5.715" y1="-1.27" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  6469. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  6470. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  6471. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6472. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  6473. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  6474. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6475. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6476. <wire x1="3.175" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6477. <wire x1="2.54" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  6478. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  6479. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  6480. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6481. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6482. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  6483. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  6484. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  6485. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6486. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6487. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  6488. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6489. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6490. <wire x1="-7.62" y1="0.635" x2="-6.985" y2="1.27" width="0.1524" layer="21"/>
  6491. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  6492. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6493. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  6494. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  6495. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  6496. <wire x1="-6.985" y1="-1.27" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  6497. <wire x1="-4.445" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6498. <wire x1="-5.08" y1="-0.635" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  6499. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  6500. <wire x1="-12.065" y1="1.27" x2="-10.795" y2="1.27" width="0.1524" layer="21"/>
  6501. <wire x1="-10.795" y1="1.27" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  6502. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  6503. <wire x1="-10.16" y1="-0.635" x2="-10.795" y2="-1.27" width="0.1524" layer="21"/>
  6504. <wire x1="-10.16" y1="0.635" x2="-9.525" y2="1.27" width="0.1524" layer="21"/>
  6505. <wire x1="-9.525" y1="1.27" x2="-8.255" y2="1.27" width="0.1524" layer="21"/>
  6506. <wire x1="-8.255" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6507. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  6508. <wire x1="-7.62" y1="-0.635" x2="-8.255" y2="-1.27" width="0.1524" layer="21"/>
  6509. <wire x1="-8.255" y1="-1.27" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  6510. <wire x1="-9.525" y1="-1.27" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  6511. <wire x1="-12.7" y1="0.635" x2="-12.7" y2="-0.635" width="0.1524" layer="21"/>
  6512. <wire x1="-12.065" y1="1.27" x2="-12.7" y2="0.635" width="0.1524" layer="21"/>
  6513. <wire x1="-12.7" y1="-0.635" x2="-12.065" y2="-1.27" width="0.1524" layer="21"/>
  6514. <wire x1="-10.795" y1="-1.27" x2="-12.065" y2="-1.27" width="0.1524" layer="21"/>
  6515. <wire x1="10.795" y1="1.27" x2="12.065" y2="1.27" width="0.1524" layer="21"/>
  6516. <wire x1="12.065" y1="1.27" x2="12.7" y2="0.635" width="0.1524" layer="21"/>
  6517. <wire x1="12.7" y1="0.635" x2="12.7" y2="-0.635" width="0.1524" layer="21"/>
  6518. <wire x1="12.7" y1="-0.635" x2="12.065" y2="-1.27" width="0.1524" layer="21"/>
  6519. <wire x1="10.795" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  6520. <wire x1="10.16" y1="-0.635" x2="10.795" y2="-1.27" width="0.1524" layer="21"/>
  6521. <wire x1="12.065" y1="-1.27" x2="10.795" y2="-1.27" width="0.1524" layer="21"/>
  6522. <pad name="1" x="-11.43" y="0" drill="1.016" shape="long" rot="R90"/>
  6523. <pad name="2" x="-8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  6524. <pad name="3" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  6525. <pad name="4" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  6526. <pad name="5" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6527. <pad name="6" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6528. <pad name="7" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  6529. <pad name="8" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  6530. <pad name="9" x="8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  6531. <pad name="10" x="11.43" y="0" drill="1.016" shape="long" rot="R90"/>
  6532. <text x="-12.7762" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6533. <text x="-12.7" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6534. <rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
  6535. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  6536. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  6537. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  6538. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  6539. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  6540. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  6541. <rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
  6542. <rectangle x1="-11.684" y1="-0.254" x2="-11.176" y2="0.254" layer="51"/>
  6543. <rectangle x1="11.176" y1="-0.254" x2="11.684" y2="0.254" layer="51"/>
  6544. </package>
  6545. <package name="1X10/90">
  6546. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6547. <wire x1="-12.7" y1="-1.905" x2="-10.16" y2="-1.905" width="0.1524" layer="21"/>
  6548. <wire x1="-10.16" y1="-1.905" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  6549. <wire x1="-10.16" y1="0.635" x2="-12.7" y2="0.635" width="0.1524" layer="21"/>
  6550. <wire x1="-12.7" y1="0.635" x2="-12.7" y2="-1.905" width="0.1524" layer="21"/>
  6551. <wire x1="-11.43" y1="6.985" x2="-11.43" y2="1.27" width="0.762" layer="21"/>
  6552. <wire x1="-10.16" y1="-1.905" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  6553. <wire x1="-7.62" y1="-1.905" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6554. <wire x1="-7.62" y1="0.635" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  6555. <wire x1="-8.89" y1="6.985" x2="-8.89" y2="1.27" width="0.762" layer="21"/>
  6556. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  6557. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6558. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6559. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  6560. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  6561. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6562. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6563. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  6564. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  6565. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6566. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6567. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  6568. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  6569. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6570. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6571. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  6572. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  6573. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6574. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6575. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  6576. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  6577. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6578. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6579. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  6580. <wire x1="7.62" y1="-1.905" x2="10.16" y2="-1.905" width="0.1524" layer="21"/>
  6581. <wire x1="10.16" y1="-1.905" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  6582. <wire x1="10.16" y1="0.635" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6583. <wire x1="8.89" y1="6.985" x2="8.89" y2="1.27" width="0.762" layer="21"/>
  6584. <wire x1="10.16" y1="-1.905" x2="12.7" y2="-1.905" width="0.1524" layer="21"/>
  6585. <wire x1="12.7" y1="-1.905" x2="12.7" y2="0.635" width="0.1524" layer="21"/>
  6586. <wire x1="12.7" y1="0.635" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  6587. <wire x1="11.43" y1="6.985" x2="11.43" y2="1.27" width="0.762" layer="21"/>
  6588. <pad name="1" x="-11.43" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6589. <pad name="2" x="-8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6590. <pad name="3" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6591. <pad name="4" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6592. <pad name="5" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6593. <pad name="6" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6594. <pad name="7" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6595. <pad name="8" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6596. <pad name="9" x="8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6597. <pad name="10" x="11.43" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6598. <text x="-13.335" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  6599. <text x="14.605" y="-4.445" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6600. <rectangle x1="-11.811" y1="0.635" x2="-11.049" y2="1.143" layer="21"/>
  6601. <rectangle x1="-9.271" y1="0.635" x2="-8.509" y2="1.143" layer="21"/>
  6602. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  6603. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  6604. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  6605. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  6606. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  6607. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  6608. <rectangle x1="8.509" y1="0.635" x2="9.271" y2="1.143" layer="21"/>
  6609. <rectangle x1="11.049" y1="0.635" x2="11.811" y2="1.143" layer="21"/>
  6610. <rectangle x1="-11.811" y1="-2.921" x2="-11.049" y2="-1.905" layer="21"/>
  6611. <rectangle x1="-9.271" y1="-2.921" x2="-8.509" y2="-1.905" layer="21"/>
  6612. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  6613. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  6614. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  6615. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  6616. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  6617. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  6618. <rectangle x1="8.509" y1="-2.921" x2="9.271" y2="-1.905" layer="21"/>
  6619. <rectangle x1="11.049" y1="-2.921" x2="11.811" y2="-1.905" layer="21"/>
  6620. </package>
  6621. </packages>
  6622. <symbols>
  6623. <symbol name="PINHD3">
  6624. <wire x1="-6.35" y1="-5.08" x2="1.27" y2="-5.08" width="0.4064" layer="94"/>
  6625. <wire x1="1.27" y1="-5.08" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  6626. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  6627. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/>
  6628. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  6629. <text x="-6.35" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  6630. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6631. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  6632. <pin name="3" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6633. </symbol>
  6634. <symbol name="PINHD6">
  6635. <wire x1="-6.35" y1="-7.62" x2="1.27" y2="-7.62" width="0.4064" layer="94"/>
  6636. <wire x1="1.27" y1="-7.62" x2="1.27" y2="10.16" width="0.4064" layer="94"/>
  6637. <wire x1="1.27" y1="10.16" x2="-6.35" y2="10.16" width="0.4064" layer="94"/>
  6638. <wire x1="-6.35" y1="10.16" x2="-6.35" y2="-7.62" width="0.4064" layer="94"/>
  6639. <text x="-6.35" y="10.795" size="1.778" layer="95">&gt;NAME</text>
  6640. <text x="-6.35" y="-10.16" size="1.778" layer="96">&gt;VALUE</text>
  6641. <pin name="1" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  6642. <pin name="2" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  6643. <pin name="3" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6644. <pin name="4" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  6645. <pin name="5" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6646. <pin name="6" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  6647. </symbol>
  6648. <symbol name="PINHD2">
  6649. <wire x1="-6.35" y1="-2.54" x2="1.27" y2="-2.54" width="0.4064" layer="94"/>
  6650. <wire x1="1.27" y1="-2.54" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  6651. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  6652. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-2.54" width="0.4064" layer="94"/>
  6653. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  6654. <text x="-6.35" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  6655. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6656. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  6657. </symbol>
  6658. <symbol name="PINHD10">
  6659. <wire x1="-6.35" y1="-15.24" x2="1.27" y2="-15.24" width="0.4064" layer="94"/>
  6660. <wire x1="1.27" y1="-15.24" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  6661. <wire x1="1.27" y1="12.7" x2="-6.35" y2="12.7" width="0.4064" layer="94"/>
  6662. <wire x1="-6.35" y1="12.7" x2="-6.35" y2="-15.24" width="0.4064" layer="94"/>
  6663. <text x="-6.35" y="13.335" size="1.778" layer="95">&gt;NAME</text>
  6664. <text x="-6.35" y="-17.78" size="1.778" layer="96">&gt;VALUE</text>
  6665. <pin name="1" x="-2.54" y="10.16" visible="pad" length="short" direction="pas" function="dot"/>
  6666. <pin name="2" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  6667. <pin name="3" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  6668. <pin name="4" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6669. <pin name="5" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  6670. <pin name="6" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6671. <pin name="7" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  6672. <pin name="8" x="-2.54" y="-7.62" visible="pad" length="short" direction="pas" function="dot"/>
  6673. <pin name="9" x="-2.54" y="-10.16" visible="pad" length="short" direction="pas" function="dot"/>
  6674. <pin name="10" x="-2.54" y="-12.7" visible="pad" length="short" direction="pas" function="dot"/>
  6675. </symbol>
  6676. </symbols>
  6677. <devicesets>
  6678. <deviceset name="PINHD-1X3" prefix="JP" uservalue="yes">
  6679. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6680. <gates>
  6681. <gate name="A" symbol="PINHD3" x="0" y="0"/>
  6682. </gates>
  6683. <devices>
  6684. <device name="" package="1X03">
  6685. <connects>
  6686. <connect gate="A" pin="1" pad="1"/>
  6687. <connect gate="A" pin="2" pad="2"/>
  6688. <connect gate="A" pin="3" pad="3"/>
  6689. </connects>
  6690. <technologies>
  6691. <technology name=""/>
  6692. </technologies>
  6693. </device>
  6694. <device name="/90" package="1X03/90">
  6695. <connects>
  6696. <connect gate="A" pin="1" pad="1"/>
  6697. <connect gate="A" pin="2" pad="2"/>
  6698. <connect gate="A" pin="3" pad="3"/>
  6699. </connects>
  6700. <technologies>
  6701. <technology name=""/>
  6702. </technologies>
  6703. </device>
  6704. </devices>
  6705. </deviceset>
  6706. <deviceset name="PINHD-1X6" prefix="JP" uservalue="yes">
  6707. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6708. <gates>
  6709. <gate name="A" symbol="PINHD6" x="0" y="-2.54"/>
  6710. </gates>
  6711. <devices>
  6712. <device name="" package="1X06">
  6713. <connects>
  6714. <connect gate="A" pin="1" pad="1"/>
  6715. <connect gate="A" pin="2" pad="2"/>
  6716. <connect gate="A" pin="3" pad="3"/>
  6717. <connect gate="A" pin="4" pad="4"/>
  6718. <connect gate="A" pin="5" pad="5"/>
  6719. <connect gate="A" pin="6" pad="6"/>
  6720. </connects>
  6721. <technologies>
  6722. <technology name=""/>
  6723. </technologies>
  6724. </device>
  6725. <device name="/90" package="1X06/90">
  6726. <connects>
  6727. <connect gate="A" pin="1" pad="1"/>
  6728. <connect gate="A" pin="2" pad="2"/>
  6729. <connect gate="A" pin="3" pad="3"/>
  6730. <connect gate="A" pin="4" pad="4"/>
  6731. <connect gate="A" pin="5" pad="5"/>
  6732. <connect gate="A" pin="6" pad="6"/>
  6733. </connects>
  6734. <technologies>
  6735. <technology name=""/>
  6736. </technologies>
  6737. </device>
  6738. </devices>
  6739. </deviceset>
  6740. <deviceset name="PINHD-1X2" prefix="JP" uservalue="yes">
  6741. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6742. <gates>
  6743. <gate name="G$1" symbol="PINHD2" x="0" y="0"/>
  6744. </gates>
  6745. <devices>
  6746. <device name="" package="1X02">
  6747. <connects>
  6748. <connect gate="G$1" pin="1" pad="1"/>
  6749. <connect gate="G$1" pin="2" pad="2"/>
  6750. </connects>
  6751. <technologies>
  6752. <technology name=""/>
  6753. </technologies>
  6754. </device>
  6755. <device name="/90" package="1X02/90">
  6756. <connects>
  6757. <connect gate="G$1" pin="1" pad="1"/>
  6758. <connect gate="G$1" pin="2" pad="2"/>
  6759. </connects>
  6760. <technologies>
  6761. <technology name=""/>
  6762. </technologies>
  6763. </device>
  6764. </devices>
  6765. </deviceset>
  6766. <deviceset name="PINHD-1X10" prefix="JP" uservalue="yes">
  6767. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6768. <gates>
  6769. <gate name="A" symbol="PINHD10" x="0" y="0"/>
  6770. </gates>
  6771. <devices>
  6772. <device name="" package="1X10">
  6773. <connects>
  6774. <connect gate="A" pin="1" pad="1"/>
  6775. <connect gate="A" pin="10" pad="10"/>
  6776. <connect gate="A" pin="2" pad="2"/>
  6777. <connect gate="A" pin="3" pad="3"/>
  6778. <connect gate="A" pin="4" pad="4"/>
  6779. <connect gate="A" pin="5" pad="5"/>
  6780. <connect gate="A" pin="6" pad="6"/>
  6781. <connect gate="A" pin="7" pad="7"/>
  6782. <connect gate="A" pin="8" pad="8"/>
  6783. <connect gate="A" pin="9" pad="9"/>
  6784. </connects>
  6785. <technologies>
  6786. <technology name=""/>
  6787. </technologies>
  6788. </device>
  6789. <device name="/90" package="1X10/90">
  6790. <connects>
  6791. <connect gate="A" pin="1" pad="1"/>
  6792. <connect gate="A" pin="10" pad="10"/>
  6793. <connect gate="A" pin="2" pad="2"/>
  6794. <connect gate="A" pin="3" pad="3"/>
  6795. <connect gate="A" pin="4" pad="4"/>
  6796. <connect gate="A" pin="5" pad="5"/>
  6797. <connect gate="A" pin="6" pad="6"/>
  6798. <connect gate="A" pin="7" pad="7"/>
  6799. <connect gate="A" pin="8" pad="8"/>
  6800. <connect gate="A" pin="9" pad="9"/>
  6801. </connects>
  6802. <technologies>
  6803. <technology name=""/>
  6804. </technologies>
  6805. </device>
  6806. </devices>
  6807. </deviceset>
  6808. </devicesets>
  6809. </library>
  6810. </libraries>
  6811. <attributes>
  6812. </attributes>
  6813. <variantdefs>
  6814. </variantdefs>
  6815. <classes>
  6816. <class number="0" name="default" width="0" drill="0">
  6817. </class>
  6818. </classes>
  6819. <parts>
  6820. <part name="U$1" library="optocoupler" deviceset="LTV847" device=""/>
  6821. <part name="R1" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6822. <part name="R2" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6823. <part name="R3" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6824. <part name="R4" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6825. <part name="C1" library="resistor" deviceset="C-EU" device="C1206" value="100mkF"/>
  6826. <part name="C2" library="resistor" deviceset="C-EU" device="C1206" value="10mkF"/>
  6827. <part name="JP1" library="pinhead" deviceset="PINHD-1X3" device="" value="CTL"/>
  6828. <part name="JP2" library="pinhead" deviceset="PINHD-1X6" device=""/>
  6829. <part name="R5" library="resistor" deviceset="R-EU_" device="M1206" value="500"/>
  6830. <part name="R6" library="resistor" deviceset="R-EU_" device="M1206" value="500"/>
  6831. <part name="C3" library="resistor" deviceset="C-EU" device="C1206" value="1mkF"/>
  6832. <part name="JP4" library="pinhead" deviceset="PINHD-1X3" device=""/>
  6833. <part name="R7" library="resistor" deviceset="R-EU_" device="M1206" value="1K"/>
  6834. <part name="JP5" library="pinhead" deviceset="PINHD-1X2" device=""/>
  6835. <part name="R8" library="resistor" deviceset="R-EU_" device="M1206" value="1K"/>
  6836. <part name="R9" library="resistor" deviceset="R-EU_" device="M1206" value="1K"/>
  6837. <part name="U$3" library="mc33269dt" deviceset="MC33269DT" device=""/>
  6838. <part name="R10" library="resistor" deviceset="R-EU_" device="M1206" value="10"/>
  6839. <part name="R11" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6840. <part name="JP3" library="pinhead" deviceset="PINHD-1X3" device=""/>
  6841. <part name="IC2" library="stm8s103" deviceset="STM8S103F*" device="P"/>
  6842. <part name="JP6" library="pinhead" deviceset="PINHD-1X10" device=""/>
  6843. <part name="JP7" library="pinhead" deviceset="PINHD-1X10" device=""/>
  6844. </parts>
  6845. <sheets>
  6846. <sheet>
  6847. <plain>
  6848. <text x="11.43" y="-17.78" size="1.778" layer="95">2</text>
  6849. <text x="11.43" y="-20.32" size="1.778" layer="95">15</text>
  6850. <text x="11.43" y="-22.86" size="1.778" layer="95">14</text>
  6851. <text x="11.43" y="-25.4" size="1.778" layer="95">12</text>
  6852. <text x="11.43" y="-27.94" size="1.778" layer="95">10</text>
  6853. <text x="11.43" y="-30.48" size="1.778" layer="95">13</text>
  6854. <text x="132.08" y="-30.48" size="1.778" layer="95">CALL</text>
  6855. <text x="132.08" y="-33.02" size="1.778" layer="95">END</text>
  6856. <text x="132.08" y="-35.56" size="1.778" layer="95">+3.3V</text>
  6857. <text x="123.19" y="74.93" size="1.778" layer="95">SWDIO</text>
  6858. <text x="123.19" y="69.85" size="1.778" layer="95">SWDCLK</text>
  6859. <text x="123.19" y="72.39" size="1.778" layer="95">GND</text>
  6860. <text x="200.66" y="63.5" size="1.778" layer="95">+5V</text>
  6861. <text x="200.66" y="60.96" size="1.778" layer="95">GND</text>
  6862. </plain>
  6863. <instances>
  6864. <instance part="U$1" gate="G$1" x="53.34" y="-17.78" rot="R270"/>
  6865. <instance part="R1" gate="G$1" x="60.96" y="-10.16" rot="R90"/>
  6866. <instance part="R2" gate="G$1" x="71.12" y="-10.16" rot="R90"/>
  6867. <instance part="R3" gate="G$1" x="81.28" y="-10.16" rot="R90"/>
  6868. <instance part="R4" gate="G$1" x="91.44" y="-10.16" rot="R90"/>
  6869. <instance part="C1" gate="G$1" x="180.34" y="30.48" rot="R90"/>
  6870. <instance part="C2" gate="G$1" x="132.08" y="5.08"/>
  6871. <instance part="JP1" gate="A" x="129.54" y="-33.02"/>
  6872. <instance part="JP2" gate="A" x="17.78" y="-22.86" rot="R180"/>
  6873. <instance part="R5" gate="G$1" x="10.16" y="66.04" rot="R180"/>
  6874. <instance part="R6" gate="G$1" x="-5.08" y="66.04" rot="R180"/>
  6875. <instance part="C3" gate="G$1" x="2.54" y="55.88" rot="R180"/>
  6876. <instance part="JP4" gate="A" x="171.45" y="76.2"/>
  6877. <instance part="R7" gate="G$1" x="149.86" y="78.74" rot="R180"/>
  6878. <instance part="JP5" gate="G$1" x="198.12" y="60.96"/>
  6879. <instance part="R8" gate="G$1" x="135.89" y="-8.89" rot="R180"/>
  6880. <instance part="R9" gate="G$1" x="135.89" y="-19.05" rot="R180"/>
  6881. <instance part="U$3" gate="G$1" x="160.02" y="20.32" rot="R180"/>
  6882. <instance part="R10" gate="G$1" x="139.7" y="15.24" rot="R180"/>
  6883. <instance part="R11" gate="G$1" x="142.24" y="31.75" rot="R180"/>
  6884. <instance part="JP3" gate="A" x="120.65" y="72.39"/>
  6885. <instance part="IC2" gate="G$1" x="39.37" y="125.73"/>
  6886. <instance part="JP6" gate="A" x="46.99" y="49.53"/>
  6887. <instance part="JP7" gate="A" x="77.47" y="46.99" rot="R180"/>
  6888. </instances>
  6889. <busses>
  6890. </busses>
  6891. <nets>
  6892. <net name="N$3" class="0">
  6893. <segment>
  6894. <wire x1="15.24" y1="44.45" x2="15.24" y2="10.16" width="0.1524" layer="91"/>
  6895. <wire x1="15.24" y1="10.16" x2="91.44" y2="10.16" width="0.1524" layer="91"/>
  6896. <pinref part="R4" gate="G$1" pin="2"/>
  6897. <wire x1="91.44" y1="10.16" x2="91.44" y2="-5.08" width="0.1524" layer="91"/>
  6898. <wire x1="15.24" y1="44.45" x2="44.45" y2="44.45" width="0.1524" layer="91"/>
  6899. <pinref part="JP6" gate="A" pin="7"/>
  6900. </segment>
  6901. </net>
  6902. <net name="N$4" class="0">
  6903. <segment>
  6904. <wire x1="17.78" y1="41.91" x2="17.78" y2="7.62" width="0.1524" layer="91"/>
  6905. <wire x1="17.78" y1="7.62" x2="81.28" y2="7.62" width="0.1524" layer="91"/>
  6906. <pinref part="R3" gate="G$1" pin="2"/>
  6907. <wire x1="81.28" y1="7.62" x2="81.28" y2="-5.08" width="0.1524" layer="91"/>
  6908. <pinref part="JP6" gate="A" pin="8"/>
  6909. <wire x1="17.78" y1="41.91" x2="44.45" y2="41.91" width="0.1524" layer="91"/>
  6910. </segment>
  6911. </net>
  6912. <net name="N$5" class="0">
  6913. <segment>
  6914. <wire x1="20.32" y1="39.37" x2="20.32" y2="5.08" width="0.1524" layer="91"/>
  6915. <wire x1="20.32" y1="5.08" x2="71.12" y2="5.08" width="0.1524" layer="91"/>
  6916. <pinref part="R2" gate="G$1" pin="2"/>
  6917. <wire x1="71.12" y1="5.08" x2="71.12" y2="-5.08" width="0.1524" layer="91"/>
  6918. <pinref part="JP6" gate="A" pin="9"/>
  6919. <wire x1="20.32" y1="39.37" x2="44.45" y2="39.37" width="0.1524" layer="91"/>
  6920. </segment>
  6921. </net>
  6922. <net name="N$7" class="0">
  6923. <segment>
  6924. <pinref part="U$1" gate="G$1" pin="P$16"/>
  6925. <wire x1="91.44" y1="-40.64" x2="91.44" y2="-49.53" width="0.1524" layer="91"/>
  6926. <wire x1="91.44" y1="-49.53" x2="81.28" y2="-49.53" width="0.1524" layer="91"/>
  6927. <wire x1="81.28" y1="-49.53" x2="33.02" y2="-49.53" width="0.1524" layer="91"/>
  6928. <wire x1="33.02" y1="-49.53" x2="33.02" y2="-17.78" width="0.1524" layer="91"/>
  6929. <wire x1="33.02" y1="-17.78" x2="20.32" y2="-17.78" width="0.1524" layer="91"/>
  6930. <pinref part="U$1" gate="G$1" pin="P$14"/>
  6931. <wire x1="81.28" y1="-40.64" x2="81.28" y2="-49.53" width="0.1524" layer="91"/>
  6932. <junction x="81.28" y="-49.53"/>
  6933. <pinref part="JP2" gate="A" pin="6"/>
  6934. </segment>
  6935. </net>
  6936. <net name="N$8" class="0">
  6937. <segment>
  6938. <pinref part="U$1" gate="G$1" pin="P$15"/>
  6939. <wire x1="86.36" y1="-40.64" x2="86.36" y2="-48.26" width="0.1524" layer="91"/>
  6940. <wire x1="86.36" y1="-48.26" x2="35.56" y2="-48.26" width="0.1524" layer="91"/>
  6941. <wire x1="35.56" y1="-48.26" x2="35.56" y2="-20.32" width="0.1524" layer="91"/>
  6942. <wire x1="35.56" y1="-20.32" x2="20.32" y2="-20.32" width="0.1524" layer="91"/>
  6943. <pinref part="JP2" gate="A" pin="5"/>
  6944. </segment>
  6945. </net>
  6946. <net name="N$9" class="0">
  6947. <segment>
  6948. <pinref part="U$1" gate="G$1" pin="P$13"/>
  6949. <wire x1="76.2" y1="-40.64" x2="76.2" y2="-46.99" width="0.1524" layer="91"/>
  6950. <wire x1="76.2" y1="-46.99" x2="38.1" y2="-46.99" width="0.1524" layer="91"/>
  6951. <wire x1="38.1" y1="-46.99" x2="38.1" y2="-22.86" width="0.1524" layer="91"/>
  6952. <wire x1="38.1" y1="-22.86" x2="20.32" y2="-22.86" width="0.1524" layer="91"/>
  6953. <pinref part="JP2" gate="A" pin="4"/>
  6954. </segment>
  6955. </net>
  6956. <net name="N$10" class="0">
  6957. <segment>
  6958. <pinref part="U$1" gate="G$1" pin="P$12"/>
  6959. <wire x1="71.12" y1="-40.64" x2="71.12" y2="-45.72" width="0.1524" layer="91"/>
  6960. <wire x1="71.12" y1="-45.72" x2="60.96" y2="-45.72" width="0.1524" layer="91"/>
  6961. <wire x1="60.96" y1="-45.72" x2="40.64" y2="-45.72" width="0.1524" layer="91"/>
  6962. <wire x1="40.64" y1="-45.72" x2="40.64" y2="-25.4" width="0.1524" layer="91"/>
  6963. <wire x1="40.64" y1="-25.4" x2="20.32" y2="-25.4" width="0.1524" layer="91"/>
  6964. <pinref part="U$1" gate="G$1" pin="P$10"/>
  6965. <wire x1="60.96" y1="-40.64" x2="60.96" y2="-45.72" width="0.1524" layer="91"/>
  6966. <junction x="60.96" y="-45.72"/>
  6967. <pinref part="JP2" gate="A" pin="3"/>
  6968. </segment>
  6969. </net>
  6970. <net name="N$11" class="0">
  6971. <segment>
  6972. <pinref part="U$1" gate="G$1" pin="P$11"/>
  6973. <wire x1="66.04" y1="-40.64" x2="66.04" y2="-44.45" width="0.1524" layer="91"/>
  6974. <wire x1="66.04" y1="-44.45" x2="43.18" y2="-44.45" width="0.1524" layer="91"/>
  6975. <wire x1="43.18" y1="-44.45" x2="43.18" y2="-27.94" width="0.1524" layer="91"/>
  6976. <wire x1="43.18" y1="-27.94" x2="20.32" y2="-27.94" width="0.1524" layer="91"/>
  6977. <pinref part="JP2" gate="A" pin="2"/>
  6978. </segment>
  6979. </net>
  6980. <net name="N$12" class="0">
  6981. <segment>
  6982. <pinref part="U$1" gate="G$1" pin="P$9"/>
  6983. <wire x1="55.88" y1="-40.64" x2="55.88" y2="-43.18" width="0.1524" layer="91"/>
  6984. <wire x1="55.88" y1="-43.18" x2="45.72" y2="-43.18" width="0.1524" layer="91"/>
  6985. <wire x1="45.72" y1="-43.18" x2="45.72" y2="-30.48" width="0.1524" layer="91"/>
  6986. <wire x1="45.72" y1="-30.48" x2="20.32" y2="-30.48" width="0.1524" layer="91"/>
  6987. <pinref part="JP2" gate="A" pin="1"/>
  6988. </segment>
  6989. </net>
  6990. <net name="N$13" class="0">
  6991. <segment>
  6992. <wire x1="106.68" y1="-2.54" x2="132.08" y2="-2.54" width="0.1524" layer="91"/>
  6993. <wire x1="132.08" y1="-2.54" x2="144.78" y2="-2.54" width="0.1524" layer="91"/>
  6994. <wire x1="144.78" y1="-2.54" x2="185.42" y2="-2.54" width="0.1524" layer="91"/>
  6995. <wire x1="185.42" y1="-2.54" x2="185.42" y2="30.48" width="0.1524" layer="91"/>
  6996. <wire x1="185.42" y1="30.48" x2="185.42" y2="38.1" width="0.1524" layer="91"/>
  6997. <wire x1="185.42" y1="38.1" x2="185.42" y2="60.96" width="0.1524" layer="91"/>
  6998. <wire x1="185.42" y1="60.96" x2="195.58" y2="60.96" width="0.1524" layer="91"/>
  6999. <junction x="185.42" y="38.1"/>
  7000. <wire x1="149.86" y1="38.1" x2="160.02" y2="38.1" width="0.1524" layer="91"/>
  7001. <wire x1="160.02" y1="38.1" x2="185.42" y2="38.1" width="0.1524" layer="91"/>
  7002. <wire x1="106.68" y1="22.86" x2="106.68" y2="-2.54" width="0.1524" layer="91"/>
  7003. <pinref part="U$1" gate="G$1" pin="P$1"/>
  7004. <wire x1="55.88" y1="-15.24" x2="55.88" y2="-2.54" width="0.1524" layer="91"/>
  7005. <wire x1="55.88" y1="-2.54" x2="66.04" y2="-2.54" width="0.1524" layer="91"/>
  7006. <junction x="106.68" y="-2.54"/>
  7007. <pinref part="U$1" gate="G$1" pin="P$3"/>
  7008. <wire x1="66.04" y1="-2.54" x2="76.2" y2="-2.54" width="0.1524" layer="91"/>
  7009. <wire x1="76.2" y1="-2.54" x2="86.36" y2="-2.54" width="0.1524" layer="91"/>
  7010. <wire x1="86.36" y1="-2.54" x2="106.68" y2="-2.54" width="0.1524" layer="91"/>
  7011. <wire x1="66.04" y1="-15.24" x2="66.04" y2="-2.54" width="0.1524" layer="91"/>
  7012. <junction x="66.04" y="-2.54"/>
  7013. <pinref part="U$1" gate="G$1" pin="P$5"/>
  7014. <wire x1="76.2" y1="-15.24" x2="76.2" y2="-2.54" width="0.1524" layer="91"/>
  7015. <junction x="76.2" y="-2.54"/>
  7016. <pinref part="U$1" gate="G$1" pin="P$7"/>
  7017. <wire x1="86.36" y1="-15.24" x2="86.36" y2="-2.54" width="0.1524" layer="91"/>
  7018. <junction x="86.36" y="-2.54"/>
  7019. <pinref part="C1" gate="G$1" pin="2"/>
  7020. <junction x="185.42" y="30.48"/>
  7021. <pinref part="C2" gate="G$1" pin="2"/>
  7022. <wire x1="132.08" y1="0" x2="132.08" y2="-2.54" width="0.1524" layer="91"/>
  7023. <junction x="132.08" y="-2.54"/>
  7024. <pinref part="C3" gate="G$1" pin="1"/>
  7025. <wire x1="55.88" y1="-2.54" x2="2.54" y2="-2.54" width="0.1524" layer="91"/>
  7026. <wire x1="2.54" y1="-2.54" x2="2.54" y2="53.34" width="0.1524" layer="91"/>
  7027. <junction x="55.88" y="-2.54"/>
  7028. <pinref part="JP4" gate="A" pin="3"/>
  7029. <wire x1="168.91" y1="73.66" x2="149.86" y2="73.66" width="0.1524" layer="91"/>
  7030. <wire x1="149.86" y1="73.66" x2="149.86" y2="64.77" width="0.1524" layer="91"/>
  7031. <pinref part="R8" gate="G$1" pin="1"/>
  7032. <wire x1="149.86" y1="64.77" x2="149.86" y2="38.1" width="0.1524" layer="91"/>
  7033. <wire x1="140.97" y1="-8.89" x2="144.78" y2="-8.89" width="0.1524" layer="91"/>
  7034. <wire x1="144.78" y1="-8.89" x2="144.78" y2="-2.54" width="0.1524" layer="91"/>
  7035. <junction x="144.78" y="-2.54"/>
  7036. <pinref part="R9" gate="G$1" pin="1"/>
  7037. <wire x1="144.78" y1="-8.89" x2="144.78" y2="-19.05" width="0.1524" layer="91"/>
  7038. <wire x1="144.78" y1="-19.05" x2="140.97" y2="-19.05" width="0.1524" layer="91"/>
  7039. <junction x="144.78" y="-8.89"/>
  7040. <pinref part="JP5" gate="G$1" pin="2"/>
  7041. <pinref part="U$3" gate="G$1" pin="GND"/>
  7042. <wire x1="160.02" y1="27.94" x2="160.02" y2="31.75" width="0.1524" layer="91"/>
  7043. <junction x="160.02" y="38.1"/>
  7044. <pinref part="R11" gate="G$1" pin="1"/>
  7045. <wire x1="160.02" y1="31.75" x2="160.02" y2="38.1" width="0.1524" layer="91"/>
  7046. <wire x1="147.32" y1="31.75" x2="160.02" y2="31.75" width="0.1524" layer="91"/>
  7047. <junction x="160.02" y="31.75"/>
  7048. <pinref part="JP3" gate="A" pin="2"/>
  7049. <wire x1="118.11" y1="72.39" x2="111.76" y2="72.39" width="0.1524" layer="91"/>
  7050. <wire x1="111.76" y1="72.39" x2="111.76" y2="64.77" width="0.1524" layer="91"/>
  7051. <wire x1="111.76" y1="64.77" x2="149.86" y2="64.77" width="0.1524" layer="91"/>
  7052. <junction x="149.86" y="64.77"/>
  7053. <wire x1="106.68" y1="22.86" x2="90.17" y2="22.86" width="0.1524" layer="91"/>
  7054. <wire x1="90.17" y1="22.86" x2="90.17" y2="46.99" width="0.1524" layer="91"/>
  7055. <pinref part="JP7" gate="A" pin="5"/>
  7056. <wire x1="90.17" y1="46.99" x2="80.01" y2="46.99" width="0.1524" layer="91"/>
  7057. </segment>
  7058. </net>
  7059. <net name="N$14" class="0">
  7060. <segment>
  7061. <wire x1="175.26" y1="30.48" x2="175.26" y2="63.5" width="0.1524" layer="91"/>
  7062. <wire x1="175.26" y1="63.5" x2="195.58" y2="63.5" width="0.1524" layer="91"/>
  7063. <pinref part="C1" gate="G$1" pin="1"/>
  7064. <wire x1="177.8" y1="30.48" x2="175.26" y2="30.48" width="0.1524" layer="91"/>
  7065. <junction x="175.26" y="30.48"/>
  7066. <pinref part="JP5" gate="G$1" pin="1"/>
  7067. <pinref part="U$3" gate="G$1" pin="VIN"/>
  7068. <wire x1="175.26" y1="30.48" x2="175.26" y2="15.24" width="0.1524" layer="91"/>
  7069. <wire x1="175.26" y1="15.24" x2="172.72" y2="15.24" width="0.1524" layer="91"/>
  7070. </segment>
  7071. </net>
  7072. <net name="N$15" class="0">
  7073. <segment>
  7074. <wire x1="109.22" y1="20.32" x2="127" y2="20.32" width="0.1524" layer="91"/>
  7075. <wire x1="127" y1="20.32" x2="127" y2="25.4" width="0.1524" layer="91"/>
  7076. <wire x1="127" y1="25.4" x2="127" y2="78.74" width="0.1524" layer="91"/>
  7077. <wire x1="127" y1="78.74" x2="20.32" y2="78.74" width="0.1524" layer="91"/>
  7078. <wire x1="20.32" y1="78.74" x2="20.32" y2="49.53" width="0.1524" layer="91"/>
  7079. <wire x1="132.08" y1="25.4" x2="127" y2="25.4" width="0.1524" layer="91"/>
  7080. <junction x="127" y="25.4"/>
  7081. <pinref part="C2" gate="G$1" pin="1"/>
  7082. <wire x1="132.08" y1="25.4" x2="132.08" y2="15.24" width="0.1524" layer="91"/>
  7083. <junction x="132.08" y="25.4"/>
  7084. <pinref part="JP1" gate="A" pin="3"/>
  7085. <wire x1="132.08" y1="15.24" x2="132.08" y2="7.62" width="0.1524" layer="91"/>
  7086. <wire x1="109.22" y1="20.32" x2="109.22" y2="-35.56" width="0.1524" layer="91"/>
  7087. <wire x1="109.22" y1="-35.56" x2="127" y2="-35.56" width="0.1524" layer="91"/>
  7088. <junction x="109.22" y="20.32"/>
  7089. <wire x1="-8.89" y1="66.04" x2="-13.97" y2="66.04" width="0.1524" layer="91"/>
  7090. <wire x1="-13.97" y1="66.04" x2="-13.97" y2="87.63" width="0.1524" layer="91"/>
  7091. <wire x1="-13.97" y1="87.63" x2="132.08" y2="87.63" width="0.1524" layer="91"/>
  7092. <wire x1="132.08" y1="87.63" x2="132.08" y2="78.74" width="0.1524" layer="91"/>
  7093. <pinref part="R7" gate="G$1" pin="2"/>
  7094. <wire x1="132.08" y1="78.74" x2="132.08" y2="31.75" width="0.1524" layer="91"/>
  7095. <wire x1="132.08" y1="31.75" x2="132.08" y2="25.4" width="0.1524" layer="91"/>
  7096. <wire x1="144.78" y1="78.74" x2="132.08" y2="78.74" width="0.1524" layer="91"/>
  7097. <junction x="132.08" y="78.74"/>
  7098. <pinref part="R10" gate="G$1" pin="2"/>
  7099. <wire x1="134.62" y1="15.24" x2="132.08" y2="15.24" width="0.1524" layer="91"/>
  7100. <junction x="132.08" y="15.24"/>
  7101. <pinref part="R11" gate="G$1" pin="2"/>
  7102. <wire x1="137.16" y1="31.75" x2="132.08" y2="31.75" width="0.1524" layer="91"/>
  7103. <junction x="132.08" y="31.75"/>
  7104. <wire x1="20.32" y1="49.53" x2="44.45" y2="49.53" width="0.1524" layer="91"/>
  7105. <pinref part="JP6" gate="A" pin="5"/>
  7106. <wire x1="109.22" y1="20.32" x2="88.9" y2="20.32" width="0.1524" layer="91"/>
  7107. <pinref part="JP7" gate="A" pin="6"/>
  7108. <wire x1="88.9" y1="20.32" x2="88.9" y2="49.53" width="0.1524" layer="91"/>
  7109. <wire x1="88.9" y1="49.53" x2="80.01" y2="49.53" width="0.1524" layer="91"/>
  7110. </segment>
  7111. </net>
  7112. <net name="N$16" class="0">
  7113. <segment>
  7114. <wire x1="106.68" y1="66.04" x2="106.68" y2="74.93" width="0.1524" layer="91"/>
  7115. <wire x1="106.68" y1="74.93" x2="118.11" y2="74.93" width="0.1524" layer="91"/>
  7116. <wire x1="81.28" y1="57.15" x2="96.52" y2="57.15" width="0.1524" layer="91"/>
  7117. <wire x1="96.52" y1="57.15" x2="96.52" y2="66.04" width="0.1524" layer="91"/>
  7118. <wire x1="96.52" y1="66.04" x2="106.68" y2="66.04" width="0.1524" layer="91"/>
  7119. </segment>
  7120. </net>
  7121. <net name="N$17" class="0">
  7122. <segment>
  7123. <wire x1="110.49" y1="63.5" x2="110.49" y2="69.85" width="0.1524" layer="91"/>
  7124. <wire x1="110.49" y1="69.85" x2="118.11" y2="69.85" width="0.1524" layer="91"/>
  7125. <wire x1="110.49" y1="63.5" x2="87.63" y2="63.5" width="0.1524" layer="91"/>
  7126. <pinref part="JP7" gate="A" pin="10"/>
  7127. <wire x1="87.63" y1="63.5" x2="87.63" y2="59.69" width="0.1524" layer="91"/>
  7128. <wire x1="87.63" y1="59.69" x2="80.01" y2="59.69" width="0.1524" layer="91"/>
  7129. </segment>
  7130. </net>
  7131. <net name="N$18" class="0">
  7132. <segment>
  7133. <pinref part="U$1" gate="G$1" pin="P$2"/>
  7134. <pinref part="R1" gate="G$1" pin="1"/>
  7135. </segment>
  7136. </net>
  7137. <net name="N$19" class="0">
  7138. <segment>
  7139. <pinref part="U$1" gate="G$1" pin="P$4"/>
  7140. <pinref part="R2" gate="G$1" pin="1"/>
  7141. </segment>
  7142. </net>
  7143. <net name="N$20" class="0">
  7144. <segment>
  7145. <pinref part="U$1" gate="G$1" pin="P$6"/>
  7146. <pinref part="R3" gate="G$1" pin="1"/>
  7147. </segment>
  7148. </net>
  7149. <net name="N$21" class="0">
  7150. <segment>
  7151. <pinref part="U$1" gate="G$1" pin="P$8"/>
  7152. <pinref part="R4" gate="G$1" pin="1"/>
  7153. </segment>
  7154. </net>
  7155. <net name="N$70" class="0">
  7156. <segment>
  7157. <pinref part="JP1" gate="A" pin="1"/>
  7158. <wire x1="127" y1="-30.48" x2="114.3" y2="-30.48" width="0.1524" layer="91"/>
  7159. <wire x1="114.3" y1="-30.48" x2="114.3" y2="-19.05" width="0.1524" layer="91"/>
  7160. <wire x1="114.3" y1="-19.05" x2="114.3" y2="36.83" width="0.1524" layer="91"/>
  7161. <pinref part="R9" gate="G$1" pin="2"/>
  7162. <wire x1="130.81" y1="-19.05" x2="114.3" y2="-19.05" width="0.1524" layer="91"/>
  7163. <junction x="114.3" y="-19.05"/>
  7164. <pinref part="JP7" gate="A" pin="1"/>
  7165. <wire x1="114.3" y1="36.83" x2="80.01" y2="36.83" width="0.1524" layer="91"/>
  7166. </segment>
  7167. </net>
  7168. <net name="N$71" class="0">
  7169. <segment>
  7170. <wire x1="80.01" y1="39.37" x2="119.38" y2="39.37" width="0.1524" layer="91"/>
  7171. <wire x1="119.38" y1="39.37" x2="119.38" y2="-8.89" width="0.1524" layer="91"/>
  7172. <pinref part="JP1" gate="A" pin="2"/>
  7173. <wire x1="119.38" y1="-8.89" x2="119.38" y2="-33.02" width="0.1524" layer="91"/>
  7174. <wire x1="119.38" y1="-33.02" x2="127" y2="-33.02" width="0.1524" layer="91"/>
  7175. <pinref part="R8" gate="G$1" pin="2"/>
  7176. <wire x1="130.81" y1="-8.89" x2="119.38" y2="-8.89" width="0.1524" layer="91"/>
  7177. <junction x="119.38" y="-8.89"/>
  7178. </segment>
  7179. </net>
  7180. <net name="N$72" class="0">
  7181. <segment>
  7182. <pinref part="R5" gate="G$1" pin="1"/>
  7183. <wire x1="15.24" y1="66.04" x2="34.29" y2="66.04" width="0.1524" layer="91"/>
  7184. <pinref part="JP6" gate="A" pin="4"/>
  7185. <wire x1="34.29" y1="66.04" x2="34.29" y2="52.07" width="0.1524" layer="91"/>
  7186. <wire x1="34.29" y1="52.07" x2="44.45" y2="52.07" width="0.1524" layer="91"/>
  7187. </segment>
  7188. </net>
  7189. <net name="N$73" class="0">
  7190. <segment>
  7191. <pinref part="R6" gate="G$1" pin="1"/>
  7192. <pinref part="R5" gate="G$1" pin="2"/>
  7193. <wire x1="0" y1="66.04" x2="2.54" y2="66.04" width="0.1524" layer="91"/>
  7194. <pinref part="C3" gate="G$1" pin="2"/>
  7195. <wire x1="2.54" y1="66.04" x2="5.08" y2="66.04" width="0.1524" layer="91"/>
  7196. <wire x1="2.54" y1="60.96" x2="2.54" y2="66.04" width="0.1524" layer="91"/>
  7197. <junction x="2.54" y="66.04"/>
  7198. </segment>
  7199. </net>
  7200. <net name="N$75" class="0">
  7201. <segment>
  7202. <pinref part="JP4" gate="A" pin="1"/>
  7203. <pinref part="R7" gate="G$1" pin="1"/>
  7204. <wire x1="168.91" y1="78.74" x2="154.94" y2="78.74" width="0.1524" layer="91"/>
  7205. </segment>
  7206. </net>
  7207. <net name="N$76" class="0">
  7208. <segment>
  7209. <wire x1="93.98" y1="60.96" x2="140.97" y2="60.96" width="0.1524" layer="91"/>
  7210. <wire x1="140.97" y1="60.96" x2="140.97" y2="76.2" width="0.1524" layer="91"/>
  7211. <pinref part="JP4" gate="A" pin="2"/>
  7212. <wire x1="140.97" y1="76.2" x2="168.91" y2="76.2" width="0.1524" layer="91"/>
  7213. <pinref part="JP6" gate="A" pin="1"/>
  7214. <wire x1="44.45" y1="59.69" x2="38.1" y2="59.69" width="0.1524" layer="91"/>
  7215. <wire x1="38.1" y1="59.69" x2="38.1" y2="66.04" width="0.1524" layer="91"/>
  7216. <wire x1="38.1" y1="66.04" x2="93.98" y2="66.04" width="0.1524" layer="91"/>
  7217. <wire x1="93.98" y1="66.04" x2="93.98" y2="60.96" width="0.1524" layer="91"/>
  7218. </segment>
  7219. </net>
  7220. <net name="N$74" class="0">
  7221. <segment>
  7222. <pinref part="R10" gate="G$1" pin="1"/>
  7223. <pinref part="U$3" gate="G$1" pin="VOUT"/>
  7224. <wire x1="144.78" y1="15.24" x2="147.32" y2="15.24" width="0.1524" layer="91"/>
  7225. </segment>
  7226. </net>
  7227. <net name="N$2" class="0">
  7228. <segment>
  7229. <pinref part="R1" gate="G$1" pin="2"/>
  7230. <pinref part="JP6" gate="A" pin="10"/>
  7231. <wire x1="44.45" y1="36.83" x2="21.59" y2="36.83" width="0.1524" layer="91"/>
  7232. <wire x1="21.59" y1="36.83" x2="21.59" y2="12.7" width="0.1524" layer="91"/>
  7233. <wire x1="21.59" y1="12.7" x2="60.96" y2="12.7" width="0.1524" layer="91"/>
  7234. <wire x1="60.96" y1="12.7" x2="60.96" y2="-5.08" width="0.1524" layer="91"/>
  7235. </segment>
  7236. </net>
  7237. </nets>
  7238. </sheet>
  7239. </sheets>
  7240. </schematic>
  7241. </drawing>
  7242. </eagle>