Sensor.s#2 440 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE eagle SYSTEM "eagle.dtd">
  3. <eagle version="7.2.0">
  4. <drawing>
  5. <settings>
  6. <setting alwaysvectorfont="no"/>
  7. <setting verticaltext="up"/>
  8. </settings>
  9. <grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
  10. <layers>
  11. <layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
  12. <layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
  13. <layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
  14. <layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
  15. <layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
  16. <layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
  17. <layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
  18. <layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
  19. <layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
  20. <layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
  21. <layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
  22. <layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
  23. <layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
  24. <layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
  25. <layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
  26. <layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
  27. <layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
  28. <layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
  29. <layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
  30. <layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
  31. <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
  32. <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
  33. <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
  34. <layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
  35. <layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
  36. <layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
  37. <layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
  38. <layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
  39. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
  40. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
  41. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
  42. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
  43. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
  44. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
  45. <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
  46. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
  47. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
  48. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
  49. <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
  50. <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
  51. <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
  52. <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
  53. <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
  54. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
  55. <layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
  56. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
  57. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
  58. <layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
  59. <layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
  60. <layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
  61. <layer number="51" name="tDocu" color="6" fill="1" visible="no" active="no"/>
  62. <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
  63. <layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
  64. <layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
  65. <layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
  66. <layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
  67. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  68. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  69. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  70. <layer number="93" name="Pins" color="2" fill="1" visible="yes" active="yes"/>
  71. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  72. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  73. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  74. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  75. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  76. <layer number="99" name="SpiceOrder" color="5" fill="1" visible="yes" active="yes"/>
  77. <layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
  78. <layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
  79. <layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
  80. <layer number="103" name="fp3" color="7" fill="1" visible="yes" active="yes"/>
  81. <layer number="104" name="Name" color="7" fill="1" visible="yes" active="yes"/>
  82. <layer number="105" name="Beschreib" color="9" fill="1" visible="yes" active="yes"/>
  83. <layer number="106" name="BGA-Top" color="4" fill="1" visible="yes" active="yes"/>
  84. <layer number="107" name="BD-Top" color="5" fill="1" visible="yes" active="yes"/>
  85. <layer number="108" name="fp8" color="7" fill="1" visible="yes" active="yes"/>
  86. <layer number="109" name="fp9" color="7" fill="1" visible="yes" active="yes"/>
  87. <layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
  88. <layer number="111" name="LPC17xx" color="7" fill="1" visible="yes" active="yes"/>
  89. <layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
  90. <layer number="113" name="ReferenceLS" color="7" fill="1" visible="no" active="no"/>
  91. <layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
  92. <layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="no"/>
  93. <layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
  94. <layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
  95. <layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
  96. <layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
  97. <layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
  98. <layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
  99. <layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
  100. <layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
  101. <layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
  102. <layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
  103. <layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
  104. <layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/>
  105. <layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
  106. <layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
  107. <layer number="153" name="FabDoc1" color="6" fill="1" visible="no" active="no"/>
  108. <layer number="154" name="FabDoc2" color="2" fill="1" visible="no" active="no"/>
  109. <layer number="155" name="FabDoc3" color="7" fill="15" visible="no" active="no"/>
  110. <layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
  111. <layer number="200" name="200bmp" color="1" fill="10" visible="no" active="no"/>
  112. <layer number="201" name="201bmp" color="2" fill="1" visible="no" active="no"/>
  113. <layer number="202" name="202bmp" color="3" fill="1" visible="no" active="no"/>
  114. <layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
  115. <layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
  116. <layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
  117. <layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
  118. <layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
  119. <layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
  120. <layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
  121. <layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
  122. <layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
  123. <layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
  124. <layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
  125. <layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
  126. <layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
  127. <layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
  128. <layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
  129. <layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
  130. <layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
  131. <layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
  132. <layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
  133. <layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
  134. <layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
  135. <layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
  136. <layer number="231" name="Eagle3D_PG1" color="7" fill="1" visible="no" active="no"/>
  137. <layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="no"/>
  138. <layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="no"/>
  139. <layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
  140. <layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
  141. <layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
  142. <layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
  143. <layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
  144. </layers>
  145. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  146. <libraries>
  147. <library name="pinhead">
  148. <description>&lt;b&gt;Pin Header Connectors&lt;/b&gt;&lt;p&gt;
  149. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  150. <packages>
  151. <package name="1X08">
  152. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  153. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  154. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  155. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  156. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  157. <wire x1="2.54" y1="0.635" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  158. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  159. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  160. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  161. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  162. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  163. <wire x1="3.175" y1="-1.27" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  164. <wire x1="5.715" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  165. <wire x1="5.08" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  166. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  167. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  168. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  169. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  170. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  171. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  172. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  173. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  174. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  175. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  176. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  177. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  178. <wire x1="-5.08" y1="0.635" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
  179. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  180. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  181. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  182. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  183. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  184. <wire x1="-4.445" y1="-1.27" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  185. <wire x1="-1.905" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  186. <wire x1="-2.54" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  187. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  188. <wire x1="-9.525" y1="1.27" x2="-8.255" y2="1.27" width="0.1524" layer="21"/>
  189. <wire x1="-8.255" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  190. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  191. <wire x1="-7.62" y1="-0.635" x2="-8.255" y2="-1.27" width="0.1524" layer="21"/>
  192. <wire x1="-7.62" y1="0.635" x2="-6.985" y2="1.27" width="0.1524" layer="21"/>
  193. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  194. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  195. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  196. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  197. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  198. <wire x1="-6.985" y1="-1.27" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  199. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  200. <wire x1="-9.525" y1="1.27" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  201. <wire x1="-10.16" y1="-0.635" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  202. <wire x1="-8.255" y1="-1.27" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  203. <wire x1="8.255" y1="1.27" x2="9.525" y2="1.27" width="0.1524" layer="21"/>
  204. <wire x1="9.525" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  205. <wire x1="10.16" y1="0.635" x2="10.16" y2="-0.635" width="0.1524" layer="21"/>
  206. <wire x1="10.16" y1="-0.635" x2="9.525" y2="-1.27" width="0.1524" layer="21"/>
  207. <wire x1="8.255" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  208. <wire x1="7.62" y1="-0.635" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  209. <wire x1="9.525" y1="-1.27" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  210. <pad name="1" x="-8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  211. <pad name="2" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  212. <pad name="3" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  213. <pad name="4" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  214. <pad name="5" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  215. <pad name="6" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  216. <pad name="7" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  217. <pad name="8" x="8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  218. <text x="-10.2362" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  219. <text x="-10.16" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  220. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  221. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  222. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  223. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  224. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  225. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  226. <rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
  227. <rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
  228. </package>
  229. <package name="1X08/90">
  230. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  231. <wire x1="-10.16" y1="-1.905" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  232. <wire x1="-7.62" y1="-1.905" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  233. <wire x1="-7.62" y1="0.635" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  234. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-1.905" width="0.1524" layer="21"/>
  235. <wire x1="-8.89" y1="6.985" x2="-8.89" y2="1.27" width="0.762" layer="21"/>
  236. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  237. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  238. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  239. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  240. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  241. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  242. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  243. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  244. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  245. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  246. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  247. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  248. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  249. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  250. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  251. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  252. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  253. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  254. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  255. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  256. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  257. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  258. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  259. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  260. <wire x1="7.62" y1="-1.905" x2="10.16" y2="-1.905" width="0.1524" layer="21"/>
  261. <wire x1="10.16" y1="-1.905" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  262. <wire x1="10.16" y1="0.635" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  263. <wire x1="8.89" y1="6.985" x2="8.89" y2="1.27" width="0.762" layer="21"/>
  264. <pad name="1" x="-8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  265. <pad name="2" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  266. <pad name="3" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  267. <pad name="4" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  268. <pad name="5" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  269. <pad name="6" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  270. <pad name="7" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  271. <pad name="8" x="8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  272. <text x="-10.795" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  273. <text x="12.065" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  274. <rectangle x1="-9.271" y1="0.635" x2="-8.509" y2="1.143" layer="21"/>
  275. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  276. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  277. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  278. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  279. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  280. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  281. <rectangle x1="8.509" y1="0.635" x2="9.271" y2="1.143" layer="21"/>
  282. <rectangle x1="-9.271" y1="-2.921" x2="-8.509" y2="-1.905" layer="21"/>
  283. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  284. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  285. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  286. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  287. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  288. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  289. <rectangle x1="8.509" y1="-2.921" x2="9.271" y2="-1.905" layer="21"/>
  290. </package>
  291. <package name="2X06">
  292. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  293. <wire x1="-7.62" y1="-1.905" x2="-6.985" y2="-2.54" width="0.1524" layer="21"/>
  294. <wire x1="-5.715" y1="-2.54" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  295. <wire x1="-5.08" y1="-1.905" x2="-4.445" y2="-2.54" width="0.1524" layer="21"/>
  296. <wire x1="-3.175" y1="-2.54" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  297. <wire x1="-2.54" y1="-1.905" x2="-1.905" y2="-2.54" width="0.1524" layer="21"/>
  298. <wire x1="-0.635" y1="-2.54" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  299. <wire x1="0" y1="-1.905" x2="0.635" y2="-2.54" width="0.1524" layer="21"/>
  300. <wire x1="1.905" y1="-2.54" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  301. <wire x1="2.54" y1="-1.905" x2="3.175" y2="-2.54" width="0.1524" layer="21"/>
  302. <wire x1="4.445" y1="-2.54" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  303. <wire x1="-7.62" y1="-1.905" x2="-7.62" y2="1.905" width="0.1524" layer="21"/>
  304. <wire x1="-7.62" y1="1.905" x2="-6.985" y2="2.54" width="0.1524" layer="21"/>
  305. <wire x1="-6.985" y1="2.54" x2="-5.715" y2="2.54" width="0.1524" layer="21"/>
  306. <wire x1="-5.715" y1="2.54" x2="-5.08" y2="1.905" width="0.1524" layer="21"/>
  307. <wire x1="-5.08" y1="1.905" x2="-4.445" y2="2.54" width="0.1524" layer="21"/>
  308. <wire x1="-4.445" y1="2.54" x2="-3.175" y2="2.54" width="0.1524" layer="21"/>
  309. <wire x1="-3.175" y1="2.54" x2="-2.54" y2="1.905" width="0.1524" layer="21"/>
  310. <wire x1="-2.54" y1="1.905" x2="-1.905" y2="2.54" width="0.1524" layer="21"/>
  311. <wire x1="-1.905" y1="2.54" x2="-0.635" y2="2.54" width="0.1524" layer="21"/>
  312. <wire x1="-0.635" y1="2.54" x2="0" y2="1.905" width="0.1524" layer="21"/>
  313. <wire x1="0" y1="1.905" x2="0.635" y2="2.54" width="0.1524" layer="21"/>
  314. <wire x1="0.635" y1="2.54" x2="1.905" y2="2.54" width="0.1524" layer="21"/>
  315. <wire x1="1.905" y1="2.54" x2="2.54" y2="1.905" width="0.1524" layer="21"/>
  316. <wire x1="2.54" y1="1.905" x2="3.175" y2="2.54" width="0.1524" layer="21"/>
  317. <wire x1="3.175" y1="2.54" x2="4.445" y2="2.54" width="0.1524" layer="21"/>
  318. <wire x1="4.445" y1="2.54" x2="5.08" y2="1.905" width="0.1524" layer="21"/>
  319. <wire x1="-5.08" y1="1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  320. <wire x1="-2.54" y1="1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  321. <wire x1="0" y1="1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  322. <wire x1="2.54" y1="1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  323. <wire x1="5.08" y1="1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  324. <wire x1="3.175" y1="-2.54" x2="4.445" y2="-2.54" width="0.1524" layer="21"/>
  325. <wire x1="0.635" y1="-2.54" x2="1.905" y2="-2.54" width="0.1524" layer="21"/>
  326. <wire x1="-1.905" y1="-2.54" x2="-0.635" y2="-2.54" width="0.1524" layer="21"/>
  327. <wire x1="-4.445" y1="-2.54" x2="-3.175" y2="-2.54" width="0.1524" layer="21"/>
  328. <wire x1="-6.985" y1="-2.54" x2="-5.715" y2="-2.54" width="0.1524" layer="21"/>
  329. <wire x1="5.08" y1="-1.905" x2="5.715" y2="-2.54" width="0.1524" layer="21"/>
  330. <wire x1="6.985" y1="-2.54" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  331. <wire x1="5.08" y1="1.905" x2="5.715" y2="2.54" width="0.1524" layer="21"/>
  332. <wire x1="5.715" y1="2.54" x2="6.985" y2="2.54" width="0.1524" layer="21"/>
  333. <wire x1="6.985" y1="2.54" x2="7.62" y2="1.905" width="0.1524" layer="21"/>
  334. <wire x1="7.62" y1="1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  335. <wire x1="5.715" y1="-2.54" x2="6.985" y2="-2.54" width="0.1524" layer="21"/>
  336. <pad name="1" x="-6.35" y="-1.27" drill="1.016" shape="octagon"/>
  337. <pad name="2" x="-6.35" y="1.27" drill="1.016" shape="octagon"/>
  338. <pad name="3" x="-3.81" y="-1.27" drill="1.016" shape="octagon"/>
  339. <pad name="4" x="-3.81" y="1.27" drill="1.016" shape="octagon"/>
  340. <pad name="5" x="-1.27" y="-1.27" drill="1.016" shape="octagon"/>
  341. <pad name="6" x="-1.27" y="1.27" drill="1.016" shape="octagon"/>
  342. <pad name="7" x="1.27" y="-1.27" drill="1.016" shape="octagon"/>
  343. <pad name="8" x="1.27" y="1.27" drill="1.016" shape="octagon"/>
  344. <pad name="9" x="3.81" y="-1.27" drill="1.016" shape="octagon"/>
  345. <pad name="10" x="3.81" y="1.27" drill="1.016" shape="octagon"/>
  346. <pad name="11" x="6.35" y="-1.27" drill="1.016" shape="octagon"/>
  347. <pad name="12" x="6.35" y="1.27" drill="1.016" shape="octagon"/>
  348. <text x="-7.62" y="3.175" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  349. <text x="-7.62" y="-4.445" size="1.27" layer="27">&gt;VALUE</text>
  350. <rectangle x1="-6.604" y1="-1.524" x2="-6.096" y2="-1.016" layer="51"/>
  351. <rectangle x1="-6.604" y1="1.016" x2="-6.096" y2="1.524" layer="51"/>
  352. <rectangle x1="-4.064" y1="1.016" x2="-3.556" y2="1.524" layer="51"/>
  353. <rectangle x1="-4.064" y1="-1.524" x2="-3.556" y2="-1.016" layer="51"/>
  354. <rectangle x1="-1.524" y1="1.016" x2="-1.016" y2="1.524" layer="51"/>
  355. <rectangle x1="-1.524" y1="-1.524" x2="-1.016" y2="-1.016" layer="51"/>
  356. <rectangle x1="1.016" y1="1.016" x2="1.524" y2="1.524" layer="51"/>
  357. <rectangle x1="3.556" y1="1.016" x2="4.064" y2="1.524" layer="51"/>
  358. <rectangle x1="1.016" y1="-1.524" x2="1.524" y2="-1.016" layer="51"/>
  359. <rectangle x1="3.556" y1="-1.524" x2="4.064" y2="-1.016" layer="51"/>
  360. <rectangle x1="6.096" y1="1.016" x2="6.604" y2="1.524" layer="51"/>
  361. <rectangle x1="6.096" y1="-1.524" x2="6.604" y2="-1.016" layer="51"/>
  362. </package>
  363. <package name="2X06/90">
  364. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  365. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  366. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  367. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  368. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  369. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  370. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  371. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  372. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  373. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  374. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  375. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  376. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  377. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  378. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  379. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  380. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  381. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  382. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  383. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  384. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  385. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  386. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  387. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  388. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  389. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  390. <pad name="2" x="-6.35" y="-3.81" drill="1.016" shape="octagon"/>
  391. <pad name="4" x="-3.81" y="-3.81" drill="1.016" shape="octagon"/>
  392. <pad name="6" x="-1.27" y="-3.81" drill="1.016" shape="octagon"/>
  393. <pad name="8" x="1.27" y="-3.81" drill="1.016" shape="octagon"/>
  394. <pad name="10" x="3.81" y="-3.81" drill="1.016" shape="octagon"/>
  395. <pad name="12" x="6.35" y="-3.81" drill="1.016" shape="octagon"/>
  396. <pad name="1" x="-6.35" y="-6.35" drill="1.016" shape="octagon"/>
  397. <pad name="3" x="-3.81" y="-6.35" drill="1.016" shape="octagon"/>
  398. <pad name="5" x="-1.27" y="-6.35" drill="1.016" shape="octagon"/>
  399. <pad name="7" x="1.27" y="-6.35" drill="1.016" shape="octagon"/>
  400. <pad name="9" x="3.81" y="-6.35" drill="1.016" shape="octagon"/>
  401. <pad name="11" x="6.35" y="-6.35" drill="1.016" shape="octagon"/>
  402. <text x="-8.255" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  403. <text x="9.525" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  404. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  405. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  406. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  407. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  408. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  409. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  410. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  411. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  412. <rectangle x1="-6.731" y1="-5.461" x2="-5.969" y2="-4.699" layer="21"/>
  413. <rectangle x1="-6.731" y1="-4.699" x2="-5.969" y2="-2.921" layer="51"/>
  414. <rectangle x1="-4.191" y1="-4.699" x2="-3.429" y2="-2.921" layer="51"/>
  415. <rectangle x1="-4.191" y1="-5.461" x2="-3.429" y2="-4.699" layer="21"/>
  416. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  417. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  418. <rectangle x1="-1.651" y1="-5.461" x2="-0.889" y2="-4.699" layer="21"/>
  419. <rectangle x1="-1.651" y1="-4.699" x2="-0.889" y2="-2.921" layer="51"/>
  420. <rectangle x1="0.889" y1="-4.699" x2="1.651" y2="-2.921" layer="51"/>
  421. <rectangle x1="0.889" y1="-5.461" x2="1.651" y2="-4.699" layer="21"/>
  422. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  423. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  424. <rectangle x1="3.429" y1="-5.461" x2="4.191" y2="-4.699" layer="21"/>
  425. <rectangle x1="3.429" y1="-4.699" x2="4.191" y2="-2.921" layer="51"/>
  426. <rectangle x1="5.969" y1="-4.699" x2="6.731" y2="-2.921" layer="51"/>
  427. <rectangle x1="5.969" y1="-5.461" x2="6.731" y2="-4.699" layer="21"/>
  428. </package>
  429. <package name="1X03">
  430. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  431. <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  432. <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  433. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  434. <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  435. <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  436. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  437. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  438. <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  439. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  440. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  441. <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  442. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  443. <wire x1="-3.175" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  444. <wire x1="-3.81" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  445. <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  446. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  447. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  448. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  449. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
  450. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  451. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  452. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  453. <pad name="1" x="-2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  454. <pad name="2" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  455. <pad name="3" x="2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  456. <text x="-3.8862" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  457. <text x="-3.81" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  458. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  459. <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
  460. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  461. </package>
  462. <package name="1X03/90">
  463. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  464. <wire x1="-3.81" y1="-1.905" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/>
  465. <wire x1="-1.27" y1="-1.905" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  466. <wire x1="-1.27" y1="0.635" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  467. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-1.905" width="0.1524" layer="21"/>
  468. <wire x1="-2.54" y1="6.985" x2="-2.54" y2="1.27" width="0.762" layer="21"/>
  469. <wire x1="-1.27" y1="-1.905" x2="1.27" y2="-1.905" width="0.1524" layer="21"/>
  470. <wire x1="1.27" y1="-1.905" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  471. <wire x1="1.27" y1="0.635" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  472. <wire x1="0" y1="6.985" x2="0" y2="1.27" width="0.762" layer="21"/>
  473. <wire x1="1.27" y1="-1.905" x2="3.81" y2="-1.905" width="0.1524" layer="21"/>
  474. <wire x1="3.81" y1="-1.905" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  475. <wire x1="3.81" y1="0.635" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  476. <wire x1="2.54" y1="6.985" x2="2.54" y2="1.27" width="0.762" layer="21"/>
  477. <pad name="1" x="-2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  478. <pad name="2" x="0" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  479. <pad name="3" x="2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  480. <text x="-4.445" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  481. <text x="5.715" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  482. <rectangle x1="-2.921" y1="0.635" x2="-2.159" y2="1.143" layer="21"/>
  483. <rectangle x1="-0.381" y1="0.635" x2="0.381" y2="1.143" layer="21"/>
  484. <rectangle x1="2.159" y1="0.635" x2="2.921" y2="1.143" layer="21"/>
  485. <rectangle x1="-2.921" y1="-2.921" x2="-2.159" y2="-1.905" layer="21"/>
  486. <rectangle x1="-0.381" y1="-2.921" x2="0.381" y2="-1.905" layer="21"/>
  487. <rectangle x1="2.159" y1="-2.921" x2="2.921" y2="-1.905" layer="21"/>
  488. </package>
  489. <package name="1X04">
  490. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  491. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  492. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  493. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  494. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  495. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  496. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  497. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  498. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  499. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  500. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  501. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  502. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  503. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  504. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  505. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  506. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  507. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  508. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  509. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  510. <wire x1="-4.445" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  511. <wire x1="-5.08" y1="-0.635" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  512. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  513. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  514. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  515. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  516. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  517. <wire x1="3.175" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  518. <wire x1="2.54" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  519. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  520. <pad name="1" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  521. <pad name="2" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  522. <pad name="3" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  523. <pad name="4" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  524. <text x="-5.1562" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  525. <text x="-5.08" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  526. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  527. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  528. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  529. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  530. </package>
  531. <package name="1X04/90">
  532. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  533. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  534. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  535. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  536. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  537. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  538. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  539. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  540. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  541. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  542. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  543. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  544. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  545. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  546. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  547. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  548. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  549. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  550. <pad name="1" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  551. <pad name="2" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  552. <pad name="3" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  553. <pad name="4" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  554. <text x="-5.715" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  555. <text x="6.985" y="-4.445" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  556. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  557. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  558. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  559. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  560. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  561. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  562. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  563. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  564. </package>
  565. <package name="1X06">
  566. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  567. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  568. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  569. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  570. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  571. <wire x1="2.54" y1="0.635" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  572. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  573. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  574. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  575. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  576. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  577. <wire x1="3.175" y1="-1.27" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  578. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  579. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  580. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  581. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  582. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  583. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  584. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  585. <wire x1="0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  586. <wire x1="0" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  587. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  588. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  589. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  590. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  591. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  592. <wire x1="-5.08" y1="0.635" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
  593. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  594. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  595. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  596. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  597. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  598. <wire x1="-4.445" y1="-1.27" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  599. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  600. <wire x1="-6.985" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  601. <wire x1="-7.62" y1="-0.635" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  602. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  603. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  604. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  605. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  606. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  607. <wire x1="5.715" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  608. <wire x1="5.08" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  609. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  610. <pad name="1" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  611. <pad name="2" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  612. <pad name="3" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  613. <pad name="4" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  614. <pad name="5" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  615. <pad name="6" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  616. <text x="-7.6962" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  617. <text x="-7.62" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  618. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  619. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  620. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  621. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  622. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  623. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  624. </package>
  625. <package name="1X06/90">
  626. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  627. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  628. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  629. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  630. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  631. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  632. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  633. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  634. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  635. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  636. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  637. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  638. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  639. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  640. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  641. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  642. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  643. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  644. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  645. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  646. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  647. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  648. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  649. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  650. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  651. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  652. <pad name="1" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  653. <pad name="2" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  654. <pad name="3" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  655. <pad name="4" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  656. <pad name="5" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  657. <pad name="6" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  658. <text x="-8.255" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  659. <text x="9.525" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  660. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  661. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  662. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  663. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  664. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  665. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  666. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  667. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  668. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  669. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  670. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  671. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  672. </package>
  673. <package name="1X01">
  674. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  675. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  676. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  677. <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  678. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  679. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  680. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  681. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  682. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  683. <pad name="1" x="0" y="0" drill="1.016" shape="octagon"/>
  684. <text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  685. <text x="-1.27" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  686. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  687. </package>
  688. </packages>
  689. <symbols>
  690. <symbol name="PINHD8">
  691. <wire x1="-6.35" y1="-10.16" x2="1.27" y2="-10.16" width="0.4064" layer="94"/>
  692. <wire x1="1.27" y1="-10.16" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  693. <wire x1="1.27" y1="12.7" x2="-6.35" y2="12.7" width="0.4064" layer="94"/>
  694. <wire x1="-6.35" y1="12.7" x2="-6.35" y2="-10.16" width="0.4064" layer="94"/>
  695. <text x="-6.35" y="13.335" size="1.778" layer="95">&gt;NAME</text>
  696. <text x="-6.35" y="-12.7" size="1.778" layer="96">&gt;VALUE</text>
  697. <pin name="1" x="-2.54" y="10.16" visible="pad" length="short" direction="pas" function="dot"/>
  698. <pin name="2" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  699. <pin name="3" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  700. <pin name="4" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  701. <pin name="5" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  702. <pin name="6" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  703. <pin name="7" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  704. <pin name="8" x="-2.54" y="-7.62" visible="pad" length="short" direction="pas" function="dot"/>
  705. </symbol>
  706. <symbol name="PINH2X6">
  707. <wire x1="-6.35" y1="-10.16" x2="8.89" y2="-10.16" width="0.4064" layer="94"/>
  708. <wire x1="8.89" y1="-10.16" x2="8.89" y2="7.62" width="0.4064" layer="94"/>
  709. <wire x1="8.89" y1="7.62" x2="-6.35" y2="7.62" width="0.4064" layer="94"/>
  710. <wire x1="-6.35" y1="7.62" x2="-6.35" y2="-10.16" width="0.4064" layer="94"/>
  711. <text x="-6.35" y="8.255" size="1.778" layer="95">&gt;NAME</text>
  712. <text x="-6.35" y="-12.7" size="1.778" layer="96">&gt;VALUE</text>
  713. <pin name="1" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  714. <pin name="2" x="5.08" y="5.08" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  715. <pin name="3" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  716. <pin name="4" x="5.08" y="2.54" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  717. <pin name="5" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  718. <pin name="6" x="5.08" y="0" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  719. <pin name="7" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  720. <pin name="8" x="5.08" y="-2.54" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  721. <pin name="9" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  722. <pin name="10" x="5.08" y="-5.08" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  723. <pin name="11" x="-2.54" y="-7.62" visible="pad" length="short" direction="pas" function="dot"/>
  724. <pin name="12" x="5.08" y="-7.62" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  725. </symbol>
  726. <symbol name="PINHD3">
  727. <wire x1="-6.35" y1="-5.08" x2="1.27" y2="-5.08" width="0.4064" layer="94"/>
  728. <wire x1="1.27" y1="-5.08" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  729. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  730. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/>
  731. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  732. <text x="-6.35" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  733. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  734. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  735. <pin name="3" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  736. </symbol>
  737. <symbol name="PINHD4">
  738. <wire x1="-6.35" y1="-5.08" x2="1.27" y2="-5.08" width="0.4064" layer="94"/>
  739. <wire x1="1.27" y1="-5.08" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  740. <wire x1="1.27" y1="7.62" x2="-6.35" y2="7.62" width="0.4064" layer="94"/>
  741. <wire x1="-6.35" y1="7.62" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/>
  742. <text x="-6.35" y="8.255" size="1.778" layer="95">&gt;NAME</text>
  743. <text x="-6.35" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  744. <pin name="1" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  745. <pin name="2" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  746. <pin name="3" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  747. <pin name="4" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  748. </symbol>
  749. <symbol name="PINHD6">
  750. <wire x1="-6.35" y1="-7.62" x2="1.27" y2="-7.62" width="0.4064" layer="94"/>
  751. <wire x1="1.27" y1="-7.62" x2="1.27" y2="10.16" width="0.4064" layer="94"/>
  752. <wire x1="1.27" y1="10.16" x2="-6.35" y2="10.16" width="0.4064" layer="94"/>
  753. <wire x1="-6.35" y1="10.16" x2="-6.35" y2="-7.62" width="0.4064" layer="94"/>
  754. <text x="-6.35" y="10.795" size="1.778" layer="95">&gt;NAME</text>
  755. <text x="-6.35" y="-10.16" size="1.778" layer="96">&gt;VALUE</text>
  756. <pin name="1" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  757. <pin name="2" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  758. <pin name="3" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  759. <pin name="4" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  760. <pin name="5" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  761. <pin name="6" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  762. </symbol>
  763. <symbol name="PINHD1">
  764. <wire x1="-6.35" y1="-2.54" x2="1.27" y2="-2.54" width="0.4064" layer="94"/>
  765. <wire x1="1.27" y1="-2.54" x2="1.27" y2="2.54" width="0.4064" layer="94"/>
  766. <wire x1="1.27" y1="2.54" x2="-6.35" y2="2.54" width="0.4064" layer="94"/>
  767. <wire x1="-6.35" y1="2.54" x2="-6.35" y2="-2.54" width="0.4064" layer="94"/>
  768. <text x="-6.35" y="3.175" size="1.778" layer="95">&gt;NAME</text>
  769. <text x="-6.35" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  770. <pin name="1" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  771. </symbol>
  772. </symbols>
  773. <devicesets>
  774. <deviceset name="PINHD-1X8" prefix="JP" uservalue="yes">
  775. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  776. <gates>
  777. <gate name="A" symbol="PINHD8" x="0" y="0"/>
  778. </gates>
  779. <devices>
  780. <device name="" package="1X08">
  781. <connects>
  782. <connect gate="A" pin="1" pad="1"/>
  783. <connect gate="A" pin="2" pad="2"/>
  784. <connect gate="A" pin="3" pad="3"/>
  785. <connect gate="A" pin="4" pad="4"/>
  786. <connect gate="A" pin="5" pad="5"/>
  787. <connect gate="A" pin="6" pad="6"/>
  788. <connect gate="A" pin="7" pad="7"/>
  789. <connect gate="A" pin="8" pad="8"/>
  790. </connects>
  791. <technologies>
  792. <technology name=""/>
  793. </technologies>
  794. </device>
  795. <device name="/90" package="1X08/90">
  796. <connects>
  797. <connect gate="A" pin="1" pad="1"/>
  798. <connect gate="A" pin="2" pad="2"/>
  799. <connect gate="A" pin="3" pad="3"/>
  800. <connect gate="A" pin="4" pad="4"/>
  801. <connect gate="A" pin="5" pad="5"/>
  802. <connect gate="A" pin="6" pad="6"/>
  803. <connect gate="A" pin="7" pad="7"/>
  804. <connect gate="A" pin="8" pad="8"/>
  805. </connects>
  806. <technologies>
  807. <technology name=""/>
  808. </technologies>
  809. </device>
  810. </devices>
  811. </deviceset>
  812. <deviceset name="PINHD-2X6" prefix="JP" uservalue="yes">
  813. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  814. <gates>
  815. <gate name="A" symbol="PINH2X6" x="0" y="0"/>
  816. </gates>
  817. <devices>
  818. <device name="" package="2X06">
  819. <connects>
  820. <connect gate="A" pin="1" pad="1"/>
  821. <connect gate="A" pin="10" pad="10"/>
  822. <connect gate="A" pin="11" pad="11"/>
  823. <connect gate="A" pin="12" pad="12"/>
  824. <connect gate="A" pin="2" pad="2"/>
  825. <connect gate="A" pin="3" pad="3"/>
  826. <connect gate="A" pin="4" pad="4"/>
  827. <connect gate="A" pin="5" pad="5"/>
  828. <connect gate="A" pin="6" pad="6"/>
  829. <connect gate="A" pin="7" pad="7"/>
  830. <connect gate="A" pin="8" pad="8"/>
  831. <connect gate="A" pin="9" pad="9"/>
  832. </connects>
  833. <technologies>
  834. <technology name=""/>
  835. </technologies>
  836. </device>
  837. <device name="/90" package="2X06/90">
  838. <connects>
  839. <connect gate="A" pin="1" pad="1"/>
  840. <connect gate="A" pin="10" pad="10"/>
  841. <connect gate="A" pin="11" pad="11"/>
  842. <connect gate="A" pin="12" pad="12"/>
  843. <connect gate="A" pin="2" pad="2"/>
  844. <connect gate="A" pin="3" pad="3"/>
  845. <connect gate="A" pin="4" pad="4"/>
  846. <connect gate="A" pin="5" pad="5"/>
  847. <connect gate="A" pin="6" pad="6"/>
  848. <connect gate="A" pin="7" pad="7"/>
  849. <connect gate="A" pin="8" pad="8"/>
  850. <connect gate="A" pin="9" pad="9"/>
  851. </connects>
  852. <technologies>
  853. <technology name=""/>
  854. </technologies>
  855. </device>
  856. </devices>
  857. </deviceset>
  858. <deviceset name="PINHD-1X3" prefix="JP" uservalue="yes">
  859. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  860. <gates>
  861. <gate name="A" symbol="PINHD3" x="0" y="0"/>
  862. </gates>
  863. <devices>
  864. <device name="" package="1X03">
  865. <connects>
  866. <connect gate="A" pin="1" pad="1"/>
  867. <connect gate="A" pin="2" pad="2"/>
  868. <connect gate="A" pin="3" pad="3"/>
  869. </connects>
  870. <technologies>
  871. <technology name=""/>
  872. </technologies>
  873. </device>
  874. <device name="/90" package="1X03/90">
  875. <connects>
  876. <connect gate="A" pin="1" pad="1"/>
  877. <connect gate="A" pin="2" pad="2"/>
  878. <connect gate="A" pin="3" pad="3"/>
  879. </connects>
  880. <technologies>
  881. <technology name=""/>
  882. </technologies>
  883. </device>
  884. </devices>
  885. </deviceset>
  886. <deviceset name="PINHD-1X4" prefix="JP" uservalue="yes">
  887. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  888. <gates>
  889. <gate name="A" symbol="PINHD4" x="0" y="0"/>
  890. </gates>
  891. <devices>
  892. <device name="" package="1X04">
  893. <connects>
  894. <connect gate="A" pin="1" pad="1"/>
  895. <connect gate="A" pin="2" pad="2"/>
  896. <connect gate="A" pin="3" pad="3"/>
  897. <connect gate="A" pin="4" pad="4"/>
  898. </connects>
  899. <technologies>
  900. <technology name=""/>
  901. </technologies>
  902. </device>
  903. <device name="/90" package="1X04/90">
  904. <connects>
  905. <connect gate="A" pin="1" pad="1"/>
  906. <connect gate="A" pin="2" pad="2"/>
  907. <connect gate="A" pin="3" pad="3"/>
  908. <connect gate="A" pin="4" pad="4"/>
  909. </connects>
  910. <technologies>
  911. <technology name=""/>
  912. </technologies>
  913. </device>
  914. </devices>
  915. </deviceset>
  916. <deviceset name="PINHD-1X6" prefix="JP" uservalue="yes">
  917. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  918. <gates>
  919. <gate name="A" symbol="PINHD6" x="0" y="-2.54"/>
  920. </gates>
  921. <devices>
  922. <device name="" package="1X06">
  923. <connects>
  924. <connect gate="A" pin="1" pad="1"/>
  925. <connect gate="A" pin="2" pad="2"/>
  926. <connect gate="A" pin="3" pad="3"/>
  927. <connect gate="A" pin="4" pad="4"/>
  928. <connect gate="A" pin="5" pad="5"/>
  929. <connect gate="A" pin="6" pad="6"/>
  930. </connects>
  931. <technologies>
  932. <technology name=""/>
  933. </technologies>
  934. </device>
  935. <device name="/90" package="1X06/90">
  936. <connects>
  937. <connect gate="A" pin="1" pad="1"/>
  938. <connect gate="A" pin="2" pad="2"/>
  939. <connect gate="A" pin="3" pad="3"/>
  940. <connect gate="A" pin="4" pad="4"/>
  941. <connect gate="A" pin="5" pad="5"/>
  942. <connect gate="A" pin="6" pad="6"/>
  943. </connects>
  944. <technologies>
  945. <technology name=""/>
  946. </technologies>
  947. </device>
  948. </devices>
  949. </deviceset>
  950. <deviceset name="PINHD-1X1" prefix="JP" uservalue="yes">
  951. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  952. <gates>
  953. <gate name="G$1" symbol="PINHD1" x="0" y="0"/>
  954. </gates>
  955. <devices>
  956. <device name="" package="1X01">
  957. <connects>
  958. <connect gate="G$1" pin="1" pad="1"/>
  959. </connects>
  960. <technologies>
  961. <technology name=""/>
  962. </technologies>
  963. </device>
  964. </devices>
  965. </deviceset>
  966. </devicesets>
  967. </library>
  968. <library name="con-phoenix-3.81">
  969. <description>&lt;b&gt;Phoenix Connectors&lt;/b&gt; Grid 3.81 mm&lt;p&gt;
  970. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  971. <packages>
  972. <package name="1705566">
  973. <description>&lt;b&gt;MKDSD 1,5/ 4-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  974. Nennstrom: 8 A&lt;br&gt;
  975. Bemessungsspannung: 200 V&lt;br&gt;
  976. Raster: 3,81 mm&lt;br&gt;
  977. Polzahl: 4&lt;br&gt;
  978. Montageart: Löten&lt;br&gt;
  979. Anschlussart: Schraubanschluss&lt;br&gt;
  980. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  981. Source: http://eshop.phoenixcontact.com .. 1705566.pdf</description>
  982. <wire x1="-8.175" y1="-4.65" x2="-8.175" y2="-4.15" width="0.1016" layer="21"/>
  983. <wire x1="8.175" y1="4.65" x2="-8.175" y2="4.65" width="0.1016" layer="21"/>
  984. <wire x1="-8.175" y1="-4.15" x2="8.175" y2="-4.15" width="0.1016" layer="21"/>
  985. <wire x1="-8.175" y1="-4.15" x2="-8.175" y2="-4.05" width="0.1016" layer="21"/>
  986. <wire x1="-8.175" y1="2.7596" x2="-8.175" y2="4.65" width="0.1016" layer="21"/>
  987. <wire x1="8.175" y1="-3.25" x2="-8.175" y2="-3.25" width="0.1016" layer="21"/>
  988. <wire x1="8.175" y1="-3.05" x2="-8.175" y2="-3.05" width="0.1016" layer="21"/>
  989. <wire x1="8.175" y1="2.2824" x2="-8.175" y2="2.2824" width="0.1016" layer="21"/>
  990. <wire x1="8.175" y1="2.7596" x2="-8.175" y2="2.7596" width="0.1016" layer="21"/>
  991. <wire x1="-8.175" y1="-4.05" x2="-8.175" y2="-3.25" width="0.1016" layer="21"/>
  992. <wire x1="-8.175" y1="-3.25" x2="-8.175" y2="-3.05" width="0.1016" layer="21"/>
  993. <wire x1="-8.175" y1="-3.05" x2="-8.175" y2="2.2824" width="0.1016" layer="21"/>
  994. <wire x1="-8.175" y1="2.2824" x2="-8.175" y2="2.7596" width="0.1016" layer="21"/>
  995. <wire x1="-5.004" y1="1.856" x2="-6.921" y2="-0.061" width="0.1016" layer="21"/>
  996. <wire x1="-6.426" y1="-0.556" x2="-4.509" y2="1.361" width="0.1016" layer="21"/>
  997. <wire x1="-5.715" y1="-0.75" x2="-5.715" y2="-0.7" width="0.1016" layer="21"/>
  998. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-1.8" width="0.1016" layer="21"/>
  999. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-0.75" width="0.1016" layer="21"/>
  1000. <wire x1="8.175" y1="-4.05" x2="-8.175" y2="-4.05" width="0.1016" layer="21"/>
  1001. <wire x1="8.175" y1="-4.05" x2="8.175" y2="-3.25" width="0.1016" layer="21"/>
  1002. <wire x1="8.175" y1="-3.25" x2="8.175" y2="-3.05" width="0.1016" layer="21"/>
  1003. <wire x1="8.175" y1="-4.65" x2="-8.175" y2="-4.65" width="0.1016" layer="21"/>
  1004. <wire x1="8.175" y1="-4.65" x2="8.175" y2="-4.15" width="0.1016" layer="21"/>
  1005. <wire x1="8.175" y1="-4.15" x2="8.175" y2="-4.05" width="0.1016" layer="21"/>
  1006. <wire x1="8.175" y1="2.2824" x2="8.175" y2="-3.05" width="0.1016" layer="21"/>
  1007. <wire x1="8.175" y1="2.7596" x2="8.175" y2="2.2824" width="0.1016" layer="21"/>
  1008. <wire x1="8.175" y1="2.7596" x2="8.175" y2="4.65" width="0.1016" layer="21"/>
  1009. <wire x1="-1.194" y1="1.856" x2="-3.111" y2="-0.061" width="0.1016" layer="21"/>
  1010. <wire x1="-2.616" y1="-0.556" x2="-0.699" y2="1.361" width="0.1016" layer="21"/>
  1011. <wire x1="-1.905" y1="-0.75" x2="-1.905" y2="-0.7" width="0.1016" layer="21"/>
  1012. <wire x1="-1.905" y1="-0.8" x2="-1.905" y2="-0.75" width="0.1016" layer="21"/>
  1013. <wire x1="2.616" y1="1.856" x2="0.699" y2="-0.061" width="0.1016" layer="21"/>
  1014. <wire x1="1.194" y1="-0.556" x2="3.111" y2="1.361" width="0.1016" layer="21"/>
  1015. <wire x1="1.905" y1="-0.75" x2="1.905" y2="-0.7" width="0.1016" layer="21"/>
  1016. <wire x1="1.905" y1="-0.8" x2="1.905" y2="-0.75" width="0.1016" layer="21"/>
  1017. <wire x1="6.426" y1="1.856" x2="4.509" y2="-0.061" width="0.1016" layer="21"/>
  1018. <wire x1="5.004" y1="-0.556" x2="6.921" y2="1.361" width="0.1016" layer="21"/>
  1019. <wire x1="5.715" y1="-0.75" x2="5.715" y2="-0.7" width="0.1016" layer="21"/>
  1020. <wire x1="5.715" y1="-0.8" x2="5.715" y2="-0.75" width="0.1016" layer="21"/>
  1021. <circle x="-5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1022. <circle x="-1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1023. <circle x="1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1024. <circle x="5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1025. <pad name="1.1" x="-5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1026. <pad name="1.2" x="-5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1027. <pad name="2.1" x="-1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1028. <pad name="2.2" x="-1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1029. <pad name="3.1" x="1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1030. <pad name="3.2" x="1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1031. <pad name="4.1" x="5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1032. <pad name="4.2" x="5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1033. <text x="-8.89" y="-3.81" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  1034. <text x="-6.985" y="5.08" size="1.27" layer="27">&gt;VALUE</text>
  1035. <polygon width="0.1016" layer="21">
  1036. <vertex x="-6.985" y="-1.27"/>
  1037. <vertex x="-6.35" y="-2.54"/>
  1038. <vertex x="-7.62" y="-2.54"/>
  1039. </polygon>
  1040. </package>
  1041. <package name="1705621">
  1042. <description>&lt;b&gt;MKDSD 1,5/10-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  1043. Nennstrom: 8 A&lt;br&gt;
  1044. Bemessungsspannung: 200 V&lt;br&gt;
  1045. Raster: 3,81 mm&lt;br&gt;
  1046. Polzahl: 10&lt;br&gt;
  1047. Montageart: Löten&lt;br&gt;
  1048. Anschlussart: Schraubanschluss&lt;br&gt;
  1049. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  1050. Source: http://eshop.phoenixcontact.com .. 1705621.pdf</description>
  1051. <wire x1="-19.605" y1="-4.65" x2="-19.605" y2="-4.15" width="0.1016" layer="21"/>
  1052. <wire x1="19.605" y1="4.65" x2="-19.605" y2="4.65" width="0.1016" layer="21"/>
  1053. <wire x1="-19.605" y1="-4.15" x2="19.605" y2="-4.15" width="0.1016" layer="21"/>
  1054. <wire x1="-19.605" y1="-4.15" x2="-19.605" y2="-4.05" width="0.1016" layer="21"/>
  1055. <wire x1="-19.605" y1="2.7596" x2="-19.605" y2="4.65" width="0.1016" layer="21"/>
  1056. <wire x1="19.605" y1="-3.25" x2="-19.605" y2="-3.25" width="0.1016" layer="21"/>
  1057. <wire x1="19.605" y1="-3.05" x2="-19.605" y2="-3.05" width="0.1016" layer="21"/>
  1058. <wire x1="19.605" y1="2.2824" x2="-19.605" y2="2.2824" width="0.1016" layer="21"/>
  1059. <wire x1="19.605" y1="2.7596" x2="-19.605" y2="2.7596" width="0.1016" layer="21"/>
  1060. <wire x1="-19.605" y1="-4.05" x2="-19.605" y2="-3.25" width="0.1016" layer="21"/>
  1061. <wire x1="-19.605" y1="-3.25" x2="-19.605" y2="-3.05" width="0.1016" layer="21"/>
  1062. <wire x1="-19.605" y1="-3.05" x2="-19.605" y2="2.2824" width="0.1016" layer="21"/>
  1063. <wire x1="-19.605" y1="2.2824" x2="-19.605" y2="2.7596" width="0.1016" layer="21"/>
  1064. <wire x1="-16.434" y1="1.856" x2="-18.351" y2="-0.061" width="0.1016" layer="21"/>
  1065. <wire x1="-17.856" y1="-0.556" x2="-15.939" y2="1.361" width="0.1016" layer="21"/>
  1066. <wire x1="-17.145" y1="-0.75" x2="-17.145" y2="-0.7" width="0.1016" layer="21"/>
  1067. <wire x1="-17.145" y1="-0.8" x2="-17.145" y2="-1.8" width="0.1016" layer="21"/>
  1068. <wire x1="-17.145" y1="-0.8" x2="-17.145" y2="-0.75" width="0.1016" layer="21"/>
  1069. <wire x1="19.605" y1="-4.05" x2="-19.605" y2="-4.05" width="0.1016" layer="21"/>
  1070. <wire x1="19.605" y1="-4.05" x2="19.605" y2="-3.25" width="0.1016" layer="21"/>
  1071. <wire x1="19.605" y1="-3.25" x2="19.605" y2="-3.05" width="0.1016" layer="21"/>
  1072. <wire x1="19.605" y1="-4.65" x2="-19.605" y2="-4.65" width="0.1016" layer="21"/>
  1073. <wire x1="19.605" y1="-4.65" x2="19.605" y2="-4.15" width="0.1016" layer="21"/>
  1074. <wire x1="19.605" y1="-4.15" x2="19.605" y2="-4.05" width="0.1016" layer="21"/>
  1075. <wire x1="19.605" y1="2.2824" x2="19.605" y2="-3.05" width="0.1016" layer="21"/>
  1076. <wire x1="19.605" y1="2.7596" x2="19.605" y2="2.2824" width="0.1016" layer="21"/>
  1077. <wire x1="19.605" y1="2.7596" x2="19.605" y2="4.65" width="0.1016" layer="21"/>
  1078. <wire x1="-12.624" y1="1.856" x2="-14.541" y2="-0.061" width="0.1016" layer="21"/>
  1079. <wire x1="-14.046" y1="-0.556" x2="-12.129" y2="1.361" width="0.1016" layer="21"/>
  1080. <wire x1="-13.335" y1="-0.75" x2="-13.335" y2="-0.7" width="0.1016" layer="21"/>
  1081. <wire x1="-13.335" y1="-0.8" x2="-13.335" y2="-0.75" width="0.1016" layer="21"/>
  1082. <wire x1="-8.814" y1="1.856" x2="-10.731" y2="-0.061" width="0.1016" layer="21"/>
  1083. <wire x1="-10.236" y1="-0.556" x2="-8.319" y2="1.361" width="0.1016" layer="21"/>
  1084. <wire x1="-9.525" y1="-0.75" x2="-9.525" y2="-0.7" width="0.1016" layer="21"/>
  1085. <wire x1="-9.525" y1="-0.8" x2="-9.525" y2="-0.75" width="0.1016" layer="21"/>
  1086. <wire x1="-5.004" y1="1.856" x2="-6.921" y2="-0.061" width="0.1016" layer="21"/>
  1087. <wire x1="-6.426" y1="-0.556" x2="-4.509" y2="1.361" width="0.1016" layer="21"/>
  1088. <wire x1="-5.715" y1="-0.75" x2="-5.715" y2="-0.7" width="0.1016" layer="21"/>
  1089. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-0.75" width="0.1016" layer="21"/>
  1090. <wire x1="-1.194" y1="1.856" x2="-3.111" y2="-0.061" width="0.1016" layer="21"/>
  1091. <wire x1="-2.616" y1="-0.556" x2="-0.699" y2="1.361" width="0.1016" layer="21"/>
  1092. <wire x1="-1.905" y1="-0.75" x2="-1.905" y2="-0.7" width="0.1016" layer="21"/>
  1093. <wire x1="-1.905" y1="-0.8" x2="-1.905" y2="-0.75" width="0.1016" layer="21"/>
  1094. <wire x1="2.616" y1="1.856" x2="0.699" y2="-0.061" width="0.1016" layer="21"/>
  1095. <wire x1="1.194" y1="-0.556" x2="3.111" y2="1.361" width="0.1016" layer="21"/>
  1096. <wire x1="1.905" y1="-0.75" x2="1.905" y2="-0.7" width="0.1016" layer="21"/>
  1097. <wire x1="1.905" y1="-0.8" x2="1.905" y2="-0.75" width="0.1016" layer="21"/>
  1098. <wire x1="6.426" y1="1.856" x2="4.509" y2="-0.061" width="0.1016" layer="21"/>
  1099. <wire x1="5.004" y1="-0.556" x2="6.921" y2="1.361" width="0.1016" layer="21"/>
  1100. <wire x1="5.715" y1="-0.75" x2="5.715" y2="-0.7" width="0.1016" layer="21"/>
  1101. <wire x1="5.715" y1="-0.8" x2="5.715" y2="-0.75" width="0.1016" layer="21"/>
  1102. <wire x1="10.236" y1="1.856" x2="8.319" y2="-0.061" width="0.1016" layer="21"/>
  1103. <wire x1="8.814" y1="-0.556" x2="10.731" y2="1.361" width="0.1016" layer="21"/>
  1104. <wire x1="9.525" y1="-0.75" x2="9.525" y2="-0.7" width="0.1016" layer="21"/>
  1105. <wire x1="9.525" y1="-0.8" x2="9.525" y2="-0.75" width="0.1016" layer="21"/>
  1106. <wire x1="14.046" y1="1.856" x2="12.129" y2="-0.061" width="0.1016" layer="21"/>
  1107. <wire x1="12.624" y1="-0.556" x2="14.541" y2="1.361" width="0.1016" layer="21"/>
  1108. <wire x1="13.335" y1="-0.75" x2="13.335" y2="-0.7" width="0.1016" layer="21"/>
  1109. <wire x1="13.335" y1="-0.8" x2="13.335" y2="-0.75" width="0.1016" layer="21"/>
  1110. <wire x1="17.856" y1="1.856" x2="15.939" y2="-0.061" width="0.1016" layer="21"/>
  1111. <wire x1="16.434" y1="-0.556" x2="18.351" y2="1.361" width="0.1016" layer="21"/>
  1112. <wire x1="17.145" y1="-0.75" x2="17.145" y2="-0.7" width="0.1016" layer="21"/>
  1113. <wire x1="17.145" y1="-0.8" x2="17.145" y2="-0.75" width="0.1016" layer="21"/>
  1114. <circle x="-17.145" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1115. <circle x="-13.335" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1116. <circle x="-9.525" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1117. <circle x="-5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1118. <circle x="-1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1119. <circle x="1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1120. <circle x="5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1121. <circle x="9.525" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1122. <circle x="13.335" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1123. <circle x="17.145" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  1124. <pad name="1.1" x="-17.145" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1125. <pad name="1.2" x="-17.145" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1126. <pad name="2.1" x="-13.335" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1127. <pad name="2.2" x="-13.335" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1128. <pad name="3.1" x="-9.525" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1129. <pad name="3.2" x="-9.525" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1130. <pad name="4.1" x="-5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1131. <pad name="4.2" x="-5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1132. <pad name="5.1" x="-1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1133. <pad name="5.2" x="-1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1134. <pad name="6.1" x="1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1135. <pad name="6.2" x="1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1136. <pad name="7.1" x="5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1137. <pad name="7.2" x="5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1138. <pad name="8.1" x="9.525" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1139. <pad name="8.2" x="9.525" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1140. <pad name="9.1" x="13.335" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1141. <pad name="9.2" x="13.335" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1142. <pad name="10.1" x="17.145" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  1143. <pad name="10.2" x="17.145" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  1144. <text x="-20.32" y="-3.81" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  1145. <text x="-18.415" y="5.08" size="1.27" layer="27">&gt;VALUE</text>
  1146. <polygon width="0.1016" layer="21">
  1147. <vertex x="-18.415" y="-1.27"/>
  1148. <vertex x="-17.78" y="-2.54"/>
  1149. <vertex x="-19.05" y="-2.54"/>
  1150. </polygon>
  1151. </package>
  1152. </packages>
  1153. <symbols>
  1154. <symbol name="SCHRAUBKLEMME_2">
  1155. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.254" layer="94"/>
  1156. <wire x1="-12.7" y1="1.27" x2="0" y2="1.27" width="0.254" layer="94"/>
  1157. <wire x1="-12.7" y1="1.27" x2="-12.7" y2="-1.27" width="0.254" layer="94"/>
  1158. <wire x1="0" y1="-1.27" x2="-12.7" y2="-1.27" width="0.254" layer="94"/>
  1159. <circle x="-11.43" y="0" radius="0.6839" width="0.254" layer="94"/>
  1160. <text x="-10.16" y="-0.889" size="1.778" layer="95">&gt;NAME</text>
  1161. <text x="-12.7" y="-3.81" size="1.778" layer="96">&gt;VALUE</text>
  1162. <pin name="1A" x="2.54" y="0" visible="off" length="short" direction="pas" rot="R180"/>
  1163. </symbol>
  1164. </symbols>
  1165. <devicesets>
  1166. <deviceset name="1705566" prefix="X">
  1167. <description>&lt;b&gt;MKDSD 1,5/ 4-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  1168. Nennstrom: 8 A&lt;br&gt;
  1169. Bemessungsspannung: 200 V&lt;br&gt;
  1170. Raster: 3,81 mm&lt;br&gt;
  1171. Polzahl: 4&lt;br&gt;
  1172. Montageart: Löten&lt;br&gt;
  1173. Anschlussart: Schraubanschluss&lt;br&gt;
  1174. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  1175. Source: http://eshop.phoenixcontact.com .. 1705566.pdf</description>
  1176. <gates>
  1177. <gate name="-1" symbol="SCHRAUBKLEMME_2" x="0" y="0" addlevel="always"/>
  1178. <gate name="-2" symbol="SCHRAUBKLEMME_2" x="0" y="-7.62" addlevel="always"/>
  1179. <gate name="-3" symbol="SCHRAUBKLEMME_2" x="0" y="-15.24" addlevel="always"/>
  1180. <gate name="-4" symbol="SCHRAUBKLEMME_2" x="0" y="-22.86" addlevel="always"/>
  1181. </gates>
  1182. <devices>
  1183. <device name="" package="1705566">
  1184. <connects>
  1185. <connect gate="-1" pin="1A" pad="1.1 1.2" route="any"/>
  1186. <connect gate="-2" pin="1A" pad="2.1 2.2" route="any"/>
  1187. <connect gate="-3" pin="1A" pad="3.1 3.2" route="any"/>
  1188. <connect gate="-4" pin="1A" pad="4.1 4.2" route="any"/>
  1189. </connects>
  1190. <technologies>
  1191. <technology name="">
  1192. <attribute name="MF" value="" constant="no"/>
  1193. <attribute name="MPN" value="" constant="no"/>
  1194. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  1195. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  1196. </technology>
  1197. </technologies>
  1198. </device>
  1199. </devices>
  1200. </deviceset>
  1201. <deviceset name="1705621" prefix="X">
  1202. <description>&lt;b&gt;MKDSD 1,5/10-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  1203. Nennstrom: 8 A&lt;br&gt;
  1204. Bemessungsspannung: 200 V&lt;br&gt;
  1205. Raster: 3,81 mm&lt;br&gt;
  1206. Polzahl: 12&lt;br&gt;
  1207. Montageart: Löten&lt;br&gt;
  1208. Anschlussart: Schraubanschluss&lt;br&gt;
  1209. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  1210. Source: http://eshop.phoenixcontact.com .. 1705621.pdf</description>
  1211. <gates>
  1212. <gate name="-1" symbol="SCHRAUBKLEMME_2" x="0" y="0" addlevel="always"/>
  1213. <gate name="-2" symbol="SCHRAUBKLEMME_2" x="0" y="-7.62" addlevel="always"/>
  1214. <gate name="-3" symbol="SCHRAUBKLEMME_2" x="0" y="-15.24" addlevel="always"/>
  1215. <gate name="-4" symbol="SCHRAUBKLEMME_2" x="0" y="-22.86" addlevel="always"/>
  1216. <gate name="-5" symbol="SCHRAUBKLEMME_2" x="0" y="-30.48" addlevel="always"/>
  1217. <gate name="-6" symbol="SCHRAUBKLEMME_2" x="0" y="-38.1" addlevel="always"/>
  1218. <gate name="-7" symbol="SCHRAUBKLEMME_2" x="0" y="-45.72" addlevel="always"/>
  1219. <gate name="-8" symbol="SCHRAUBKLEMME_2" x="0" y="-53.34" addlevel="always"/>
  1220. <gate name="-9" symbol="SCHRAUBKLEMME_2" x="0" y="-60.96" addlevel="always"/>
  1221. <gate name="-10" symbol="SCHRAUBKLEMME_2" x="0" y="-68.58" addlevel="always"/>
  1222. </gates>
  1223. <devices>
  1224. <device name="" package="1705621">
  1225. <connects>
  1226. <connect gate="-1" pin="1A" pad="1.1 1.2" route="any"/>
  1227. <connect gate="-10" pin="1A" pad="10.1 10.2" route="any"/>
  1228. <connect gate="-2" pin="1A" pad="2.1 2.2" route="any"/>
  1229. <connect gate="-3" pin="1A" pad="3.1 3.2" route="any"/>
  1230. <connect gate="-4" pin="1A" pad="4.1 4.2" route="any"/>
  1231. <connect gate="-5" pin="1A" pad="5.1 5.2" route="any"/>
  1232. <connect gate="-6" pin="1A" pad="6.1 6.2" route="any"/>
  1233. <connect gate="-7" pin="1A" pad="7.1 7.2" route="any"/>
  1234. <connect gate="-8" pin="1A" pad="8.1 8.2" route="any"/>
  1235. <connect gate="-9" pin="1A" pad="9.1 9.2" route="any"/>
  1236. </connects>
  1237. <technologies>
  1238. <technology name="">
  1239. <attribute name="MF" value="" constant="no"/>
  1240. <attribute name="MPN" value="" constant="no"/>
  1241. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  1242. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  1243. </technology>
  1244. </technologies>
  1245. </device>
  1246. </devices>
  1247. </deviceset>
  1248. </devicesets>
  1249. </library>
  1250. <library name="resistor">
  1251. <description>&lt;b&gt;Resistors, Capacitors, Inductors&lt;/b&gt;&lt;p&gt;
  1252. Based on the previous libraries:
  1253. &lt;ul&gt;
  1254. &lt;li&gt;r.lbr
  1255. &lt;li&gt;cap.lbr
  1256. &lt;li&gt;cap-fe.lbr
  1257. &lt;li&gt;captant.lbr
  1258. &lt;li&gt;polcap.lbr
  1259. &lt;li&gt;ipc-smd.lbr
  1260. &lt;/ul&gt;
  1261. All SMD packages are defined according to the IPC specifications and CECC&lt;p&gt;
  1262. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;p&gt;
  1263. &lt;p&gt;
  1264. for Electrolyt Capacitors see also :&lt;p&gt;
  1265. www.bccomponents.com &lt;p&gt;
  1266. www.panasonic.com&lt;p&gt;
  1267. www.kemet.com&lt;p&gt;
  1268. &lt;p&gt;
  1269. for trimmer refence see : &lt;u&gt;www.electrospec-inc.com/cross_references/trimpotcrossref.asp&lt;/u&gt;&lt;p&gt;
  1270. &lt;map name="nav_main"&gt;
  1271. &lt;area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title=""&gt;
  1272. &lt;area shape="rect" coords="0,24,140,51" href="../about.asp" title=""&gt;
  1273. &lt;area shape="rect" coords="1,52,140,77" href="../rfq.asp" title=""&gt;
  1274. &lt;area shape="rect" coords="0,78,139,103" href="../products.asp" title=""&gt;
  1275. &lt;area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title=""&gt;
  1276. &lt;area shape="rect" coords="1,129,138,150" href="../edge.asp" title=""&gt;
  1277. &lt;area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title=""&gt;
  1278. &lt;area shape="rect" coords="0,179,139,201" href="../comments.asp" title=""&gt;
  1279. &lt;area shape="rect" coords="1,203,138,231" href="../directory.asp" title=""&gt;
  1280. &lt;area shape="default" nohref&gt;
  1281. &lt;/map&gt;
  1282. &lt;html&gt;
  1283. &lt;title&gt;&lt;/title&gt;
  1284. &lt;LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css"&gt;
  1285. &lt;body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"&gt;
  1286. &lt;table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%"&gt;
  1287. &lt;tr valign="top"&gt;
  1288. &lt;/td&gt;
  1289. &lt;! &lt;td width="10"&gt;&amp;nbsp;&lt;/td&gt;
  1290. &lt;td width="90%"&gt;
  1291. &lt;b&gt;&lt;font color="#0000FF" size="4"&gt;TRIM-POT CROSS REFERENCE&lt;/font&gt;&lt;/b&gt;
  1292. &lt;P&gt;
  1293. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2&gt;
  1294. &lt;TR&gt;
  1295. &lt;TD COLSPAN=8&gt;
  1296. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;RECTANGULAR MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1297. &lt;/TD&gt;
  1298. &lt;/TR&gt;
  1299. &lt;TR&gt;
  1300. &lt;TD ALIGN=CENTER&gt;
  1301. &lt;B&gt;
  1302. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BOURNS&lt;/FONT&gt;
  1303. &lt;/B&gt;
  1304. &lt;/TD&gt;
  1305. &lt;TD ALIGN=CENTER&gt;
  1306. &lt;B&gt;
  1307. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BI&amp;nbsp;TECH&lt;/FONT&gt;
  1308. &lt;/B&gt;
  1309. &lt;/TD&gt;
  1310. &lt;TD ALIGN=CENTER&gt;
  1311. &lt;B&gt;
  1312. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;DALE-VISHAY&lt;/FONT&gt;
  1313. &lt;/B&gt;
  1314. &lt;/TD&gt;
  1315. &lt;TD ALIGN=CENTER&gt;
  1316. &lt;B&gt;
  1317. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PHILIPS/MEPCO&lt;/FONT&gt;
  1318. &lt;/B&gt;
  1319. &lt;/TD&gt;
  1320. &lt;TD ALIGN=CENTER&gt;
  1321. &lt;B&gt;
  1322. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MURATA&lt;/FONT&gt;
  1323. &lt;/B&gt;
  1324. &lt;/TD&gt;
  1325. &lt;TD ALIGN=CENTER&gt;
  1326. &lt;B&gt;
  1327. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PANASONIC&lt;/FONT&gt;
  1328. &lt;/B&gt;
  1329. &lt;/TD&gt;
  1330. &lt;TD ALIGN=CENTER&gt;
  1331. &lt;B&gt;
  1332. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;SPECTROL&lt;/FONT&gt;
  1333. &lt;/B&gt;
  1334. &lt;/TD&gt;
  1335. &lt;TD ALIGN=CENTER&gt;
  1336. &lt;B&gt;
  1337. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MILSPEC&lt;/FONT&gt;
  1338. &lt;/B&gt;
  1339. &lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
  1340. &lt;/TR&gt;
  1341. &lt;TR&gt;
  1342. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3 &gt;
  1343. 3005P&lt;BR&gt;
  1344. 3006P&lt;BR&gt;
  1345. 3006W&lt;BR&gt;
  1346. 3006Y&lt;BR&gt;
  1347. 3009P&lt;BR&gt;
  1348. 3009W&lt;BR&gt;
  1349. 3009Y&lt;BR&gt;
  1350. 3057J&lt;BR&gt;
  1351. 3057L&lt;BR&gt;
  1352. 3057P&lt;BR&gt;
  1353. 3057Y&lt;BR&gt;
  1354. 3059J&lt;BR&gt;
  1355. 3059L&lt;BR&gt;
  1356. 3059P&lt;BR&gt;
  1357. 3059Y&lt;BR&gt;&lt;/FONT&gt;
  1358. &lt;/TD&gt;
  1359. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1360. -&lt;BR&gt;
  1361. 89P&lt;BR&gt;
  1362. 89W&lt;BR&gt;
  1363. 89X&lt;BR&gt;
  1364. 89PH&lt;BR&gt;
  1365. 76P&lt;BR&gt;
  1366. 89XH&lt;BR&gt;
  1367. 78SLT&lt;BR&gt;
  1368. 78L&amp;nbsp;ALT&lt;BR&gt;
  1369. 56P&amp;nbsp;ALT&lt;BR&gt;
  1370. 78P&amp;nbsp;ALT&lt;BR&gt;
  1371. T8S&lt;BR&gt;
  1372. 78L&lt;BR&gt;
  1373. 56P&lt;BR&gt;
  1374. 78P&lt;BR&gt;&lt;/FONT&gt;
  1375. &lt;/TD&gt;
  1376. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1377. -&lt;BR&gt;
  1378. T18/784&lt;BR&gt;
  1379. 783&lt;BR&gt;
  1380. 781&lt;BR&gt;
  1381. -&lt;BR&gt;
  1382. -&lt;BR&gt;
  1383. -&lt;BR&gt;
  1384. 2199&lt;BR&gt;
  1385. 1697/1897&lt;BR&gt;
  1386. 1680/1880&lt;BR&gt;
  1387. 2187&lt;BR&gt;
  1388. -&lt;BR&gt;
  1389. -&lt;BR&gt;
  1390. -&lt;BR&gt;
  1391. -&lt;BR&gt;&lt;/FONT&gt;
  1392. &lt;/TD&gt;
  1393. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1394. -&lt;BR&gt;
  1395. 8035EKP/CT20/RJ-20P&lt;BR&gt;
  1396. -&lt;BR&gt;
  1397. RJ-20X&lt;BR&gt;
  1398. -&lt;BR&gt;
  1399. -&lt;BR&gt;
  1400. -&lt;BR&gt;
  1401. 1211L&lt;BR&gt;
  1402. 8012EKQ&amp;nbsp;ALT&lt;BR&gt;
  1403. 8012EKR&amp;nbsp;ALT&lt;BR&gt;
  1404. 1211P&lt;BR&gt;
  1405. 8012EKJ&lt;BR&gt;
  1406. 8012EKL&lt;BR&gt;
  1407. 8012EKQ&lt;BR&gt;
  1408. 8012EKR&lt;BR&gt;&lt;/FONT&gt;
  1409. &lt;/TD&gt;
  1410. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1411. -&lt;BR&gt;
  1412. 2101P&lt;BR&gt;
  1413. 2101W&lt;BR&gt;
  1414. 2101Y&lt;BR&gt;
  1415. -&lt;BR&gt;
  1416. -&lt;BR&gt;
  1417. -&lt;BR&gt;
  1418. -&lt;BR&gt;
  1419. -&lt;BR&gt;
  1420. -&lt;BR&gt;
  1421. -&lt;BR&gt;
  1422. -&lt;BR&gt;
  1423. 2102L&lt;BR&gt;
  1424. 2102S&lt;BR&gt;
  1425. 2102Y&lt;BR&gt;&lt;/FONT&gt;
  1426. &lt;/TD&gt;
  1427. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1428. -&lt;BR&gt;
  1429. EVMCOG&lt;BR&gt;
  1430. -&lt;BR&gt;
  1431. -&lt;BR&gt;
  1432. -&lt;BR&gt;
  1433. -&lt;BR&gt;
  1434. -&lt;BR&gt;
  1435. -&lt;BR&gt;
  1436. -&lt;BR&gt;
  1437. -&lt;BR&gt;
  1438. -&lt;BR&gt;
  1439. -&lt;BR&gt;
  1440. -&lt;BR&gt;
  1441. -&lt;BR&gt;
  1442. -&lt;BR&gt;&lt;/FONT&gt;
  1443. &lt;/TD&gt;
  1444. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1445. -&lt;BR&gt;
  1446. 43P&lt;BR&gt;
  1447. 43W&lt;BR&gt;
  1448. 43Y&lt;BR&gt;
  1449. -&lt;BR&gt;
  1450. -&lt;BR&gt;
  1451. -&lt;BR&gt;
  1452. -&lt;BR&gt;
  1453. 40L&lt;BR&gt;
  1454. 40P&lt;BR&gt;
  1455. 40Y&lt;BR&gt;
  1456. 70Y-T602&lt;BR&gt;
  1457. 70L&lt;BR&gt;
  1458. 70P&lt;BR&gt;
  1459. 70Y&lt;BR&gt;&lt;/FONT&gt;
  1460. &lt;/TD&gt;
  1461. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1462. -&lt;BR&gt;
  1463. -&lt;BR&gt;
  1464. -&lt;BR&gt;
  1465. -&lt;BR&gt;
  1466. -&lt;BR&gt;
  1467. -&lt;BR&gt;
  1468. -&lt;BR&gt;
  1469. -&lt;BR&gt;
  1470. RT/RTR12&lt;BR&gt;
  1471. RT/RTR12&lt;BR&gt;
  1472. RT/RTR12&lt;BR&gt;
  1473. -&lt;BR&gt;
  1474. RJ/RJR12&lt;BR&gt;
  1475. RJ/RJR12&lt;BR&gt;
  1476. RJ/RJR12&lt;BR&gt;&lt;/FONT&gt;
  1477. &lt;/TD&gt;
  1478. &lt;/TR&gt;
  1479. &lt;TR&gt;
  1480. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1481. &lt;/TD&gt;
  1482. &lt;/TR&gt;
  1483. &lt;TR&gt;
  1484. &lt;TD COLSPAN=8&gt;
  1485. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SQUARE MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1486. &lt;/TD&gt;
  1487. &lt;/TR&gt;
  1488. &lt;TR&gt;
  1489. &lt;TD ALIGN=CENTER&gt;
  1490. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1491. &lt;/TD&gt;
  1492. &lt;TD ALIGN=CENTER&gt;
  1493. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1494. &lt;/TD&gt;
  1495. &lt;TD ALIGN=CENTER&gt;
  1496. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1497. &lt;/TD&gt;
  1498. &lt;TD ALIGN=CENTER&gt;
  1499. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1500. &lt;/TD&gt;
  1501. &lt;TD ALIGN=CENTER&gt;
  1502. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1503. &lt;/TD&gt;
  1504. &lt;TD ALIGN=CENTER&gt;
  1505. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1506. &lt;/TD&gt;
  1507. &lt;TD ALIGN=CENTER&gt;
  1508. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1509. &lt;/TD&gt;
  1510. &lt;TD ALIGN=CENTER&gt;
  1511. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1512. &lt;/TD&gt;
  1513. &lt;/TR&gt;
  1514. &lt;TR&gt;
  1515. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1516. 3250L&lt;BR&gt;
  1517. 3250P&lt;BR&gt;
  1518. 3250W&lt;BR&gt;
  1519. 3250X&lt;BR&gt;
  1520. 3252P&lt;BR&gt;
  1521. 3252W&lt;BR&gt;
  1522. 3252X&lt;BR&gt;
  1523. 3260P&lt;BR&gt;
  1524. 3260W&lt;BR&gt;
  1525. 3260X&lt;BR&gt;
  1526. 3262P&lt;BR&gt;
  1527. 3262W&lt;BR&gt;
  1528. 3262X&lt;BR&gt;
  1529. 3266P&lt;BR&gt;
  1530. 3266W&lt;BR&gt;
  1531. 3266X&lt;BR&gt;
  1532. 3290H&lt;BR&gt;
  1533. 3290P&lt;BR&gt;
  1534. 3290W&lt;BR&gt;
  1535. 3292P&lt;BR&gt;
  1536. 3292W&lt;BR&gt;
  1537. 3292X&lt;BR&gt;
  1538. 3296P&lt;BR&gt;
  1539. 3296W&lt;BR&gt;
  1540. 3296X&lt;BR&gt;
  1541. 3296Y&lt;BR&gt;
  1542. 3296Z&lt;BR&gt;
  1543. 3299P&lt;BR&gt;
  1544. 3299W&lt;BR&gt;
  1545. 3299X&lt;BR&gt;
  1546. 3299Y&lt;BR&gt;
  1547. 3299Z&lt;BR&gt;&lt;/FONT&gt;
  1548. &lt;/TD&gt;
  1549. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1550. -&lt;BR&gt;
  1551. 66P&amp;nbsp;ALT&lt;BR&gt;
  1552. 66W&amp;nbsp;ALT&lt;BR&gt;
  1553. 66X&amp;nbsp;ALT&lt;BR&gt;
  1554. 66P&amp;nbsp;ALT&lt;BR&gt;
  1555. 66W&amp;nbsp;ALT&lt;BR&gt;
  1556. 66X&amp;nbsp;ALT&lt;BR&gt;
  1557. -&lt;BR&gt;
  1558. 64W&amp;nbsp;ALT&lt;BR&gt;
  1559. -&lt;BR&gt;
  1560. 64P&amp;nbsp;ALT&lt;BR&gt;
  1561. 64W&amp;nbsp;ALT&lt;BR&gt;
  1562. 64X&amp;nbsp;ALT&lt;BR&gt;
  1563. 64P&lt;BR&gt;
  1564. 64W&lt;BR&gt;
  1565. 64X&lt;BR&gt;
  1566. 66X&amp;nbsp;ALT&lt;BR&gt;
  1567. 66P&amp;nbsp;ALT&lt;BR&gt;
  1568. 66W&amp;nbsp;ALT&lt;BR&gt;
  1569. 66P&lt;BR&gt;
  1570. 66W&lt;BR&gt;
  1571. 66X&lt;BR&gt;
  1572. 67P&lt;BR&gt;
  1573. 67W&lt;BR&gt;
  1574. 67X&lt;BR&gt;
  1575. 67Y&lt;BR&gt;
  1576. 67Z&lt;BR&gt;
  1577. 68P&lt;BR&gt;
  1578. 68W&lt;BR&gt;
  1579. 68X&lt;BR&gt;
  1580. 67Y&amp;nbsp;ALT&lt;BR&gt;
  1581. 67Z&amp;nbsp;ALT&lt;BR&gt;&lt;/FONT&gt;
  1582. &lt;/TD&gt;
  1583. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1584. 5050&lt;BR&gt;
  1585. 5091&lt;BR&gt;
  1586. 5080&lt;BR&gt;
  1587. 5087&lt;BR&gt;
  1588. -&lt;BR&gt;
  1589. -&lt;BR&gt;
  1590. -&lt;BR&gt;
  1591. -&lt;BR&gt;
  1592. -&lt;BR&gt;
  1593. -&lt;BR&gt;
  1594. -&lt;BR&gt;
  1595. T63YB&lt;BR&gt;
  1596. T63XB&lt;BR&gt;
  1597. -&lt;BR&gt;
  1598. -&lt;BR&gt;
  1599. -&lt;BR&gt;
  1600. 5887&lt;BR&gt;
  1601. 5891&lt;BR&gt;
  1602. 5880&lt;BR&gt;
  1603. -&lt;BR&gt;
  1604. -&lt;BR&gt;
  1605. -&lt;BR&gt;
  1606. T93Z&lt;BR&gt;
  1607. T93YA&lt;BR&gt;
  1608. T93XA&lt;BR&gt;
  1609. T93YB&lt;BR&gt;
  1610. T93XB&lt;BR&gt;
  1611. -&lt;BR&gt;
  1612. -&lt;BR&gt;
  1613. -&lt;BR&gt;
  1614. -&lt;BR&gt;
  1615. -&lt;BR&gt;&lt;/FONT&gt;
  1616. &lt;/TD&gt;
  1617. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1618. -&lt;BR&gt;
  1619. -&lt;BR&gt;
  1620. -&lt;BR&gt;
  1621. -&lt;BR&gt;
  1622. -&lt;BR&gt;
  1623. -&lt;BR&gt;
  1624. -&lt;BR&gt;
  1625. -&lt;BR&gt;
  1626. -&lt;BR&gt;
  1627. -&lt;BR&gt;
  1628. 8026EKP&lt;BR&gt;
  1629. 8026EKW&lt;BR&gt;
  1630. 8026EKM&lt;BR&gt;
  1631. 8026EKP&lt;BR&gt;
  1632. 8026EKB&lt;BR&gt;
  1633. 8026EKM&lt;BR&gt;
  1634. 1309X&lt;BR&gt;
  1635. 1309P&lt;BR&gt;
  1636. 1309W&lt;BR&gt;
  1637. 8024EKP&lt;BR&gt;
  1638. 8024EKW&lt;BR&gt;
  1639. 8024EKN&lt;BR&gt;
  1640. RJ-9P/CT9P&lt;BR&gt;
  1641. RJ-9W&lt;BR&gt;
  1642. RJ-9X&lt;BR&gt;
  1643. -&lt;BR&gt;
  1644. -&lt;BR&gt;
  1645. -&lt;BR&gt;
  1646. -&lt;BR&gt;
  1647. -&lt;BR&gt;
  1648. -&lt;BR&gt;
  1649. -&lt;BR&gt;&lt;/FONT&gt;
  1650. &lt;/TD&gt;
  1651. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1652. -&lt;BR&gt;
  1653. -&lt;BR&gt;
  1654. -&lt;BR&gt;
  1655. -&lt;BR&gt;
  1656. -&lt;BR&gt;
  1657. -&lt;BR&gt;
  1658. -&lt;BR&gt;
  1659. -&lt;BR&gt;
  1660. -&lt;BR&gt;
  1661. -&lt;BR&gt;
  1662. 3103P&lt;BR&gt;
  1663. 3103Y&lt;BR&gt;
  1664. 3103Z&lt;BR&gt;
  1665. 3103P&lt;BR&gt;
  1666. 3103Y&lt;BR&gt;
  1667. 3103Z&lt;BR&gt;
  1668. -&lt;BR&gt;
  1669. -&lt;BR&gt;
  1670. -&lt;BR&gt;
  1671. -&lt;BR&gt;
  1672. -&lt;BR&gt;
  1673. -&lt;BR&gt;
  1674. 3105P/3106P&lt;BR&gt;
  1675. 3105W/3106W&lt;BR&gt;
  1676. 3105X/3106X&lt;BR&gt;
  1677. 3105Y/3106Y&lt;BR&gt;
  1678. 3105Z/3105Z&lt;BR&gt;
  1679. 3102P&lt;BR&gt;
  1680. 3102W&lt;BR&gt;
  1681. 3102X&lt;BR&gt;
  1682. 3102Y&lt;BR&gt;
  1683. 3102Z&lt;BR&gt;&lt;/FONT&gt;
  1684. &lt;/TD&gt;
  1685. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1686. -&lt;BR&gt;
  1687. -&lt;BR&gt;
  1688. -&lt;BR&gt;
  1689. -&lt;BR&gt;
  1690. -&lt;BR&gt;
  1691. -&lt;BR&gt;
  1692. -&lt;BR&gt;
  1693. -&lt;BR&gt;
  1694. -&lt;BR&gt;
  1695. -&lt;BR&gt;
  1696. -&lt;BR&gt;
  1697. -&lt;BR&gt;
  1698. -&lt;BR&gt;
  1699. -&lt;BR&gt;
  1700. -&lt;BR&gt;
  1701. -&lt;BR&gt;
  1702. -&lt;BR&gt;
  1703. -&lt;BR&gt;
  1704. -&lt;BR&gt;
  1705. -&lt;BR&gt;
  1706. -&lt;BR&gt;
  1707. -&lt;BR&gt;
  1708. EVMCBG&lt;BR&gt;
  1709. EVMCCG&lt;BR&gt;
  1710. -&lt;BR&gt;
  1711. -&lt;BR&gt;
  1712. -&lt;BR&gt;
  1713. -&lt;BR&gt;
  1714. -&lt;BR&gt;
  1715. -&lt;BR&gt;
  1716. -&lt;BR&gt;
  1717. -&lt;BR&gt;&lt;/FONT&gt;
  1718. &lt;/TD&gt;
  1719. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1720. 55-1-X&lt;BR&gt;
  1721. 55-4-X&lt;BR&gt;
  1722. 55-3-X&lt;BR&gt;
  1723. 55-2-X&lt;BR&gt;
  1724. -&lt;BR&gt;
  1725. -&lt;BR&gt;
  1726. -&lt;BR&gt;
  1727. -&lt;BR&gt;
  1728. -&lt;BR&gt;
  1729. -&lt;BR&gt;
  1730. -&lt;BR&gt;
  1731. -&lt;BR&gt;
  1732. -&lt;BR&gt;
  1733. -&lt;BR&gt;
  1734. -&lt;BR&gt;
  1735. -&lt;BR&gt;
  1736. 50-2-X&lt;BR&gt;
  1737. 50-4-X&lt;BR&gt;
  1738. 50-3-X&lt;BR&gt;
  1739. -&lt;BR&gt;
  1740. -&lt;BR&gt;
  1741. -&lt;BR&gt;
  1742. 64P&lt;BR&gt;
  1743. 64W&lt;BR&gt;
  1744. 64X&lt;BR&gt;
  1745. 64Y&lt;BR&gt;
  1746. 64Z&lt;BR&gt;
  1747. -&lt;BR&gt;
  1748. -&lt;BR&gt;
  1749. -&lt;BR&gt;
  1750. -&lt;BR&gt;
  1751. -&lt;BR&gt;&lt;/FONT&gt;
  1752. &lt;/TD&gt;
  1753. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1754. RT/RTR22&lt;BR&gt;
  1755. RT/RTR22&lt;BR&gt;
  1756. RT/RTR22&lt;BR&gt;
  1757. RT/RTR22&lt;BR&gt;
  1758. RJ/RJR22&lt;BR&gt;
  1759. RJ/RJR22&lt;BR&gt;
  1760. RJ/RJR22&lt;BR&gt;
  1761. RT/RTR26&lt;BR&gt;
  1762. RT/RTR26&lt;BR&gt;
  1763. RT/RTR26&lt;BR&gt;
  1764. RJ/RJR26&lt;BR&gt;
  1765. RJ/RJR26&lt;BR&gt;
  1766. RJ/RJR26&lt;BR&gt;
  1767. RJ/RJR26&lt;BR&gt;
  1768. RJ/RJR26&lt;BR&gt;
  1769. RJ/RJR26&lt;BR&gt;
  1770. RT/RTR24&lt;BR&gt;
  1771. RT/RTR24&lt;BR&gt;
  1772. RT/RTR24&lt;BR&gt;
  1773. RJ/RJR24&lt;BR&gt;
  1774. RJ/RJR24&lt;BR&gt;
  1775. RJ/RJR24&lt;BR&gt;
  1776. RJ/RJR24&lt;BR&gt;
  1777. RJ/RJR24&lt;BR&gt;
  1778. RJ/RJR24&lt;BR&gt;
  1779. -&lt;BR&gt;
  1780. -&lt;BR&gt;
  1781. -&lt;BR&gt;
  1782. -&lt;BR&gt;
  1783. -&lt;BR&gt;
  1784. -&lt;BR&gt;
  1785. -&lt;BR&gt;&lt;/FONT&gt;
  1786. &lt;/TD&gt;
  1787. &lt;/TR&gt;
  1788. &lt;TR&gt;
  1789. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1790. &lt;/TD&gt;
  1791. &lt;/TR&gt;
  1792. &lt;TR&gt;
  1793. &lt;TD COLSPAN=8&gt;
  1794. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1795. &lt;/TD&gt;
  1796. &lt;/TR&gt;
  1797. &lt;TR&gt;
  1798. &lt;TD ALIGN=CENTER&gt;
  1799. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1800. &lt;/TD&gt;
  1801. &lt;TD ALIGN=CENTER&gt;
  1802. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1803. &lt;/TD&gt;
  1804. &lt;TD ALIGN=CENTER&gt;
  1805. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1806. &lt;/TD&gt;
  1807. &lt;TD ALIGN=CENTER&gt;
  1808. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1809. &lt;/TD&gt;
  1810. &lt;TD ALIGN=CENTER&gt;
  1811. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1812. &lt;/TD&gt;
  1813. &lt;TD ALIGN=CENTER&gt;
  1814. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1815. &lt;/TD&gt;
  1816. &lt;TD ALIGN=CENTER&gt;
  1817. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1818. &lt;/TD&gt;
  1819. &lt;TD ALIGN=CENTER&gt;
  1820. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1821. &lt;/TD&gt;
  1822. &lt;/TR&gt;
  1823. &lt;TR&gt;
  1824. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1825. 3323P&lt;BR&gt;
  1826. 3323S&lt;BR&gt;
  1827. 3323W&lt;BR&gt;
  1828. 3329H&lt;BR&gt;
  1829. 3329P&lt;BR&gt;
  1830. 3329W&lt;BR&gt;
  1831. 3339H&lt;BR&gt;
  1832. 3339P&lt;BR&gt;
  1833. 3339W&lt;BR&gt;
  1834. 3352E&lt;BR&gt;
  1835. 3352H&lt;BR&gt;
  1836. 3352K&lt;BR&gt;
  1837. 3352P&lt;BR&gt;
  1838. 3352T&lt;BR&gt;
  1839. 3352V&lt;BR&gt;
  1840. 3352W&lt;BR&gt;
  1841. 3362H&lt;BR&gt;
  1842. 3362M&lt;BR&gt;
  1843. 3362P&lt;BR&gt;
  1844. 3362R&lt;BR&gt;
  1845. 3362S&lt;BR&gt;
  1846. 3362U&lt;BR&gt;
  1847. 3362W&lt;BR&gt;
  1848. 3362X&lt;BR&gt;
  1849. 3386B&lt;BR&gt;
  1850. 3386C&lt;BR&gt;
  1851. 3386F&lt;BR&gt;
  1852. 3386H&lt;BR&gt;
  1853. 3386K&lt;BR&gt;
  1854. 3386M&lt;BR&gt;
  1855. 3386P&lt;BR&gt;
  1856. 3386S&lt;BR&gt;
  1857. 3386W&lt;BR&gt;
  1858. 3386X&lt;BR&gt;&lt;/FONT&gt;
  1859. &lt;/TD&gt;
  1860. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1861. 25P&lt;BR&gt;
  1862. 25S&lt;BR&gt;
  1863. 25RX&lt;BR&gt;
  1864. 82P&lt;BR&gt;
  1865. 82M&lt;BR&gt;
  1866. 82PA&lt;BR&gt;
  1867. -&lt;BR&gt;
  1868. -&lt;BR&gt;
  1869. -&lt;BR&gt;
  1870. 91E&lt;BR&gt;
  1871. 91X&lt;BR&gt;
  1872. 91T&lt;BR&gt;
  1873. 91B&lt;BR&gt;
  1874. 91A&lt;BR&gt;
  1875. 91V&lt;BR&gt;
  1876. 91W&lt;BR&gt;
  1877. 25W&lt;BR&gt;
  1878. 25V&lt;BR&gt;
  1879. 25P&lt;BR&gt;
  1880. -&lt;BR&gt;
  1881. 25S&lt;BR&gt;
  1882. 25U&lt;BR&gt;
  1883. 25RX&lt;BR&gt;
  1884. 25X&lt;BR&gt;
  1885. 72XW&lt;BR&gt;
  1886. 72XL&lt;BR&gt;
  1887. 72PM&lt;BR&gt;
  1888. 72RX&lt;BR&gt;
  1889. -&lt;BR&gt;
  1890. 72PX&lt;BR&gt;
  1891. 72P&lt;BR&gt;
  1892. 72RXW&lt;BR&gt;
  1893. 72RXL&lt;BR&gt;
  1894. 72X&lt;BR&gt;&lt;/FONT&gt;
  1895. &lt;/TD&gt;
  1896. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1897. -&lt;BR&gt;
  1898. -&lt;BR&gt;
  1899. -&lt;BR&gt;
  1900. T7YB&lt;BR&gt;
  1901. T7YA&lt;BR&gt;
  1902. -&lt;BR&gt;
  1903. -&lt;BR&gt;
  1904. -&lt;BR&gt;
  1905. -&lt;BR&gt;
  1906. -&lt;BR&gt;
  1907. -&lt;BR&gt;
  1908. -&lt;BR&gt;
  1909. -&lt;BR&gt;
  1910. -&lt;BR&gt;
  1911. -&lt;BR&gt;
  1912. -&lt;BR&gt;
  1913. -&lt;BR&gt;
  1914. TXD&lt;BR&gt;
  1915. TYA&lt;BR&gt;
  1916. TYP&lt;BR&gt;
  1917. -&lt;BR&gt;
  1918. TYD&lt;BR&gt;
  1919. TX&lt;BR&gt;
  1920. -&lt;BR&gt;
  1921. 150SX&lt;BR&gt;
  1922. 100SX&lt;BR&gt;
  1923. 102T&lt;BR&gt;
  1924. 101S&lt;BR&gt;
  1925. 190T&lt;BR&gt;
  1926. 150TX&lt;BR&gt;
  1927. 101&lt;BR&gt;
  1928. -&lt;BR&gt;
  1929. -&lt;BR&gt;
  1930. 101SX&lt;BR&gt;&lt;/FONT&gt;
  1931. &lt;/TD&gt;
  1932. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1933. ET6P&lt;BR&gt;
  1934. ET6S&lt;BR&gt;
  1935. ET6X&lt;BR&gt;
  1936. RJ-6W/8014EMW&lt;BR&gt;
  1937. RJ-6P/8014EMP&lt;BR&gt;
  1938. RJ-6X/8014EMX&lt;BR&gt;
  1939. TM7W&lt;BR&gt;
  1940. TM7P&lt;BR&gt;
  1941. TM7X&lt;BR&gt;
  1942. -&lt;BR&gt;
  1943. 8017SMS&lt;BR&gt;
  1944. -&lt;BR&gt;
  1945. 8017SMB&lt;BR&gt;
  1946. 8017SMA&lt;BR&gt;
  1947. -&lt;BR&gt;
  1948. -&lt;BR&gt;
  1949. CT-6W&lt;BR&gt;
  1950. CT-6H&lt;BR&gt;
  1951. CT-6P&lt;BR&gt;
  1952. CT-6R&lt;BR&gt;
  1953. -&lt;BR&gt;
  1954. CT-6V&lt;BR&gt;
  1955. CT-6X&lt;BR&gt;
  1956. -&lt;BR&gt;
  1957. -&lt;BR&gt;
  1958. 8038EKV&lt;BR&gt;
  1959. -&lt;BR&gt;
  1960. 8038EKX&lt;BR&gt;
  1961. -&lt;BR&gt;
  1962. -&lt;BR&gt;
  1963. 8038EKP&lt;BR&gt;
  1964. 8038EKZ&lt;BR&gt;
  1965. 8038EKW&lt;BR&gt;
  1966. -&lt;BR&gt;&lt;/FONT&gt;
  1967. &lt;/TD&gt;
  1968. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1969. -&lt;BR&gt;
  1970. -&lt;BR&gt;
  1971. -&lt;BR&gt;
  1972. 3321H&lt;BR&gt;
  1973. 3321P&lt;BR&gt;
  1974. 3321N&lt;BR&gt;
  1975. 1102H&lt;BR&gt;
  1976. 1102P&lt;BR&gt;
  1977. 1102T&lt;BR&gt;
  1978. RVA0911V304A&lt;BR&gt;
  1979. -&lt;BR&gt;
  1980. RVA0911H413A&lt;BR&gt;
  1981. RVG0707V100A&lt;BR&gt;
  1982. RVA0607V(H)306A&lt;BR&gt;
  1983. RVA1214H213A&lt;BR&gt;
  1984. -&lt;BR&gt;
  1985. -&lt;BR&gt;
  1986. -&lt;BR&gt;
  1987. -&lt;BR&gt;
  1988. -&lt;BR&gt;
  1989. -&lt;BR&gt;
  1990. -&lt;BR&gt;
  1991. -&lt;BR&gt;
  1992. -&lt;BR&gt;
  1993. 3104B&lt;BR&gt;
  1994. 3104C&lt;BR&gt;
  1995. 3104F&lt;BR&gt;
  1996. 3104H&lt;BR&gt;
  1997. -&lt;BR&gt;
  1998. 3104M&lt;BR&gt;
  1999. 3104P&lt;BR&gt;
  2000. 3104S&lt;BR&gt;
  2001. 3104W&lt;BR&gt;
  2002. 3104X&lt;BR&gt;&lt;/FONT&gt;
  2003. &lt;/TD&gt;
  2004. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2005. EVMQ0G&lt;BR&gt;
  2006. EVMQIG&lt;BR&gt;
  2007. EVMQ3G&lt;BR&gt;
  2008. EVMS0G&lt;BR&gt;
  2009. EVMQ0G&lt;BR&gt;
  2010. EVMG0G&lt;BR&gt;
  2011. -&lt;BR&gt;
  2012. -&lt;BR&gt;
  2013. -&lt;BR&gt;
  2014. EVMK4GA00B&lt;BR&gt;
  2015. EVM30GA00B&lt;BR&gt;
  2016. EVMK0GA00B&lt;BR&gt;
  2017. EVM38GA00B&lt;BR&gt;
  2018. EVMB6&lt;BR&gt;
  2019. EVLQ0&lt;BR&gt;
  2020. -&lt;BR&gt;
  2021. EVMMSG&lt;BR&gt;
  2022. EVMMBG&lt;BR&gt;
  2023. EVMMAG&lt;BR&gt;
  2024. -&lt;BR&gt;
  2025. -&lt;BR&gt;
  2026. EVMMCS&lt;BR&gt;
  2027. -&lt;BR&gt;
  2028. -&lt;BR&gt;
  2029. -&lt;BR&gt;
  2030. -&lt;BR&gt;
  2031. -&lt;BR&gt;
  2032. EVMM1&lt;BR&gt;
  2033. -&lt;BR&gt;
  2034. -&lt;BR&gt;
  2035. EVMM0&lt;BR&gt;
  2036. -&lt;BR&gt;
  2037. -&lt;BR&gt;
  2038. EVMM3&lt;BR&gt;&lt;/FONT&gt;
  2039. &lt;/TD&gt;
  2040. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2041. -&lt;BR&gt;
  2042. -&lt;BR&gt;
  2043. -&lt;BR&gt;
  2044. 62-3-1&lt;BR&gt;
  2045. 62-1-2&lt;BR&gt;
  2046. -&lt;BR&gt;
  2047. -&lt;BR&gt;
  2048. -&lt;BR&gt;
  2049. -&lt;BR&gt;
  2050. -&lt;BR&gt;
  2051. -&lt;BR&gt;
  2052. -&lt;BR&gt;
  2053. -&lt;BR&gt;
  2054. -&lt;BR&gt;
  2055. -&lt;BR&gt;
  2056. -&lt;BR&gt;
  2057. 67R&lt;BR&gt;
  2058. -&lt;BR&gt;
  2059. 67P&lt;BR&gt;
  2060. -&lt;BR&gt;
  2061. -&lt;BR&gt;
  2062. -&lt;BR&gt;
  2063. -&lt;BR&gt;
  2064. 67X&lt;BR&gt;
  2065. 63V&lt;BR&gt;
  2066. 63S&lt;BR&gt;
  2067. 63M&lt;BR&gt;
  2068. -&lt;BR&gt;
  2069. -&lt;BR&gt;
  2070. 63H&lt;BR&gt;
  2071. 63P&lt;BR&gt;
  2072. -&lt;BR&gt;
  2073. -&lt;BR&gt;
  2074. 63X&lt;BR&gt;&lt;/FONT&gt;
  2075. &lt;/TD&gt;
  2076. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2077. -&lt;BR&gt;
  2078. -&lt;BR&gt;
  2079. -&lt;BR&gt;
  2080. RJ/RJR50&lt;BR&gt;
  2081. RJ/RJR50&lt;BR&gt;
  2082. RJ/RJR50&lt;BR&gt;
  2083. -&lt;BR&gt;
  2084. -&lt;BR&gt;
  2085. -&lt;BR&gt;
  2086. -&lt;BR&gt;
  2087. -&lt;BR&gt;
  2088. -&lt;BR&gt;
  2089. -&lt;BR&gt;
  2090. -&lt;BR&gt;
  2091. -&lt;BR&gt;
  2092. -&lt;BR&gt;
  2093. -&lt;BR&gt;
  2094. -&lt;BR&gt;
  2095. -&lt;BR&gt;
  2096. -&lt;BR&gt;
  2097. -&lt;BR&gt;
  2098. -&lt;BR&gt;
  2099. -&lt;BR&gt;
  2100. -&lt;BR&gt;
  2101. -&lt;BR&gt;
  2102. -&lt;BR&gt;
  2103. -&lt;BR&gt;
  2104. -&lt;BR&gt;
  2105. -&lt;BR&gt;
  2106. -&lt;BR&gt;
  2107. -&lt;BR&gt;
  2108. -&lt;BR&gt;
  2109. -&lt;BR&gt;
  2110. -&lt;BR&gt;&lt;/FONT&gt;
  2111. &lt;/TD&gt;
  2112. &lt;/TR&gt;
  2113. &lt;/TABLE&gt;
  2114. &lt;P&gt;&amp;nbsp;&lt;P&gt;
  2115. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3&gt;
  2116. &lt;TR&gt;
  2117. &lt;TD COLSPAN=7&gt;
  2118. &lt;FONT color="#0000FF" SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SMD TRIM-POT CROSS REFERENCE&lt;/B&gt;&lt;/FONT&gt;
  2119. &lt;P&gt;
  2120. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  2121. &lt;/TD&gt;
  2122. &lt;/TR&gt;
  2123. &lt;TR&gt;
  2124. &lt;TD&gt;
  2125. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  2126. &lt;/TD&gt;
  2127. &lt;TD&gt;
  2128. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  2129. &lt;/TD&gt;
  2130. &lt;TD&gt;
  2131. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  2132. &lt;/TD&gt;
  2133. &lt;TD&gt;
  2134. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  2135. &lt;/TD&gt;
  2136. &lt;TD&gt;
  2137. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  2138. &lt;/TD&gt;
  2139. &lt;TD&gt;
  2140. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  2141. &lt;/TD&gt;
  2142. &lt;TD&gt;
  2143. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  2144. &lt;/TD&gt;
  2145. &lt;/TR&gt;
  2146. &lt;TR&gt;
  2147. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2148. 3224G&lt;BR&gt;
  2149. 3224J&lt;BR&gt;
  2150. 3224W&lt;BR&gt;
  2151. 3269P&lt;BR&gt;
  2152. 3269W&lt;BR&gt;
  2153. 3269X&lt;BR&gt;&lt;/FONT&gt;
  2154. &lt;/TD&gt;
  2155. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2156. 44G&lt;BR&gt;
  2157. 44J&lt;BR&gt;
  2158. 44W&lt;BR&gt;
  2159. 84P&lt;BR&gt;
  2160. 84W&lt;BR&gt;
  2161. 84X&lt;BR&gt;&lt;/FONT&gt;
  2162. &lt;/TD&gt;
  2163. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2164. -&lt;BR&gt;
  2165. -&lt;BR&gt;
  2166. -&lt;BR&gt;
  2167. ST63Z&lt;BR&gt;
  2168. ST63Y&lt;BR&gt;
  2169. -&lt;BR&gt;&lt;/FONT&gt;
  2170. &lt;/TD&gt;
  2171. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2172. -&lt;BR&gt;
  2173. -&lt;BR&gt;
  2174. -&lt;BR&gt;
  2175. ST5P&lt;BR&gt;
  2176. ST5W&lt;BR&gt;
  2177. ST5X&lt;BR&gt;&lt;/FONT&gt;
  2178. &lt;/TD&gt;
  2179. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2180. -&lt;BR&gt;
  2181. -&lt;BR&gt;
  2182. -&lt;BR&gt;
  2183. -&lt;BR&gt;
  2184. -&lt;BR&gt;
  2185. -&lt;BR&gt;&lt;/FONT&gt;
  2186. &lt;/TD&gt;
  2187. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2188. -&lt;BR&gt;
  2189. -&lt;BR&gt;
  2190. -&lt;BR&gt;
  2191. -&lt;BR&gt;
  2192. -&lt;BR&gt;
  2193. -&lt;BR&gt;&lt;/FONT&gt;
  2194. &lt;/TD&gt;
  2195. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2196. -&lt;BR&gt;
  2197. -&lt;BR&gt;
  2198. -&lt;BR&gt;
  2199. -&lt;BR&gt;
  2200. -&lt;BR&gt;
  2201. -&lt;BR&gt;&lt;/FONT&gt;
  2202. &lt;/TD&gt;
  2203. &lt;/TR&gt;
  2204. &lt;TR&gt;
  2205. &lt;TD COLSPAN=7&gt;&amp;nbsp;
  2206. &lt;/TD&gt;
  2207. &lt;/TR&gt;
  2208. &lt;TR&gt;
  2209. &lt;TD COLSPAN=7&gt;
  2210. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  2211. &lt;/TD&gt;
  2212. &lt;/TR&gt;
  2213. &lt;TR&gt;
  2214. &lt;TD&gt;
  2215. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  2216. &lt;/TD&gt;
  2217. &lt;TD&gt;
  2218. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  2219. &lt;/TD&gt;
  2220. &lt;TD&gt;
  2221. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  2222. &lt;/TD&gt;
  2223. &lt;TD&gt;
  2224. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  2225. &lt;/TD&gt;
  2226. &lt;TD&gt;
  2227. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  2228. &lt;/TD&gt;
  2229. &lt;TD&gt;
  2230. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  2231. &lt;/TD&gt;
  2232. &lt;TD&gt;
  2233. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  2234. &lt;/TD&gt;
  2235. &lt;/TR&gt;
  2236. &lt;TR&gt;
  2237. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2238. 3314G&lt;BR&gt;
  2239. 3314J&lt;BR&gt;
  2240. 3364A/B&lt;BR&gt;
  2241. 3364C/D&lt;BR&gt;
  2242. 3364W/X&lt;BR&gt;
  2243. 3313G&lt;BR&gt;
  2244. 3313J&lt;BR&gt;&lt;/FONT&gt;
  2245. &lt;/TD&gt;
  2246. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2247. 23B&lt;BR&gt;
  2248. 23A&lt;BR&gt;
  2249. 21X&lt;BR&gt;
  2250. 21W&lt;BR&gt;
  2251. -&lt;BR&gt;
  2252. 22B&lt;BR&gt;
  2253. 22A&lt;BR&gt;&lt;/FONT&gt;
  2254. &lt;/TD&gt;
  2255. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2256. ST5YL/ST53YL&lt;BR&gt;
  2257. ST5YJ/5T53YJ&lt;BR&gt;
  2258. ST-23A&lt;BR&gt;
  2259. ST-22B&lt;BR&gt;
  2260. ST-22&lt;BR&gt;
  2261. -&lt;BR&gt;
  2262. -&lt;BR&gt;&lt;/FONT&gt;
  2263. &lt;/TD&gt;
  2264. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2265. ST-4B&lt;BR&gt;
  2266. ST-4A&lt;BR&gt;
  2267. -&lt;BR&gt;
  2268. -&lt;BR&gt;
  2269. -&lt;BR&gt;
  2270. ST-3B&lt;BR&gt;
  2271. ST-3A&lt;BR&gt;&lt;/FONT&gt;
  2272. &lt;/TD&gt;
  2273. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2274. -&lt;BR&gt;
  2275. EVM-6YS&lt;BR&gt;
  2276. EVM-1E&lt;BR&gt;
  2277. EVM-1G&lt;BR&gt;
  2278. EVM-1D&lt;BR&gt;
  2279. -&lt;BR&gt;
  2280. -&lt;BR&gt;&lt;/FONT&gt;
  2281. &lt;/TD&gt;
  2282. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2283. G4B&lt;BR&gt;
  2284. G4A&lt;BR&gt;
  2285. TR04-3S1&lt;BR&gt;
  2286. TRG04-2S1&lt;BR&gt;
  2287. -&lt;BR&gt;
  2288. -&lt;BR&gt;
  2289. -&lt;BR&gt;&lt;/FONT&gt;
  2290. &lt;/TD&gt;
  2291. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2292. -&lt;BR&gt;
  2293. -&lt;BR&gt;
  2294. DVR-43A&lt;BR&gt;
  2295. CVR-42C&lt;BR&gt;
  2296. CVR-42A/C&lt;BR&gt;
  2297. -&lt;BR&gt;
  2298. -&lt;BR&gt;&lt;/FONT&gt;
  2299. &lt;/TD&gt;
  2300. &lt;/TR&gt;
  2301. &lt;/TABLE&gt;
  2302. &lt;P&gt;
  2303. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;ALT =&amp;nbsp;ALTERNATE&lt;/B&gt;&lt;/FONT&gt;
  2304. &lt;P&gt;
  2305. &amp;nbsp;
  2306. &lt;P&gt;
  2307. &lt;/td&gt;
  2308. &lt;/tr&gt;
  2309. &lt;/table&gt;
  2310. &lt;/BODY&gt;&lt;/HTML&gt;</description>
  2311. <packages>
  2312. <package name="R0402">
  2313. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2314. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  2315. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  2316. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  2317. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  2318. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  2319. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  2320. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  2321. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  2322. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  2323. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  2324. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  2325. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  2326. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  2327. </package>
  2328. <package name="R0603">
  2329. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2330. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  2331. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  2332. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  2333. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  2334. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  2335. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  2336. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  2337. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  2338. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  2339. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  2340. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  2341. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  2342. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  2343. </package>
  2344. <package name="R0805">
  2345. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  2346. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2347. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2348. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2349. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2350. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2351. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2352. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  2353. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  2354. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2355. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2356. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2357. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2358. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  2359. </package>
  2360. <package name="R0805W">
  2361. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;</description>
  2362. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2363. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2364. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2365. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2366. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2367. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2368. <smd name="1" x="-1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  2369. <smd name="2" x="1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  2370. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2371. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2372. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2373. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2374. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  2375. </package>
  2376. <package name="R1206">
  2377. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2378. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  2379. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  2380. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2381. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2382. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2383. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2384. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  2385. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  2386. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2387. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2388. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  2389. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  2390. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2391. </package>
  2392. <package name="R1206W">
  2393. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2394. wave soldering</description>
  2395. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2396. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2397. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2398. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2399. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2400. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2401. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2402. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2403. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2404. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2405. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2406. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2407. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2408. </package>
  2409. <package name="R1210">
  2410. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2411. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2412. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2413. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2414. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2415. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2416. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2417. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2418. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2419. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2420. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2421. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2422. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2423. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  2424. </package>
  2425. <package name="R1210W">
  2426. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2427. wave soldering</description>
  2428. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2429. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2430. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2431. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2432. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2433. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2434. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2435. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2436. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2437. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2438. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2439. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2440. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2441. </package>
  2442. <package name="R2010">
  2443. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2444. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2445. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2446. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2447. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2448. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2449. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2450. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2451. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2452. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2453. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2454. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2455. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2456. </package>
  2457. <package name="R2010W">
  2458. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2459. wave soldering</description>
  2460. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2461. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2462. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2463. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2464. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2465. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2466. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2467. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2468. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2469. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2470. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2471. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2472. </package>
  2473. <package name="R2012">
  2474. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2475. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2476. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2477. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2478. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2479. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2480. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2481. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  2482. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  2483. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2484. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2485. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2486. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2487. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  2488. </package>
  2489. <package name="R2012W">
  2490. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2491. wave soldering</description>
  2492. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2493. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2494. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2495. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2496. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2497. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2498. <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
  2499. <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
  2500. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2501. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2502. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2503. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2504. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  2505. </package>
  2506. <package name="R2512">
  2507. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2508. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2509. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2510. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2511. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2512. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2513. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2514. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2515. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2516. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2517. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2518. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2519. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2520. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2521. </package>
  2522. <package name="R2512W">
  2523. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2524. wave soldering</description>
  2525. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2526. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2527. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2528. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2529. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2530. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2531. <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
  2532. <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
  2533. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2534. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2535. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2536. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2537. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2538. </package>
  2539. <package name="R3216">
  2540. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2541. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2542. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2543. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2544. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2545. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2546. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2547. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2548. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2549. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2550. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2551. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2552. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2553. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2554. </package>
  2555. <package name="R3216W">
  2556. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2557. wave soldering</description>
  2558. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2559. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2560. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2561. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2562. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2563. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2564. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2565. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2566. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2567. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2568. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2569. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2570. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2571. </package>
  2572. <package name="R3225">
  2573. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2574. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2575. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2576. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2577. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2578. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2579. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2580. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2581. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2582. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2583. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2584. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2585. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2586. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2587. </package>
  2588. <package name="R3225W">
  2589. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2590. wave soldering</description>
  2591. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2592. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2593. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2594. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2595. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2596. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2597. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2598. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2599. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2600. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2601. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2602. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2603. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2604. </package>
  2605. <package name="R5025">
  2606. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2607. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2608. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2609. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2610. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2611. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2612. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2613. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2614. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2615. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2616. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2617. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2618. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2619. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2620. </package>
  2621. <package name="R5025W">
  2622. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2623. wave soldering</description>
  2624. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2625. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2626. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2627. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2628. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2629. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2630. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2631. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2632. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2633. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2634. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2635. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2636. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2637. </package>
  2638. <package name="R6332">
  2639. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2640. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2641. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2642. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2643. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2644. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2645. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2646. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2647. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2648. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2649. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2650. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2651. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2652. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2653. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2654. </package>
  2655. <package name="R6332W">
  2656. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;
  2657. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2658. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2659. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2660. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2661. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2662. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2663. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2664. <smd name="1" x="-3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2665. <smd name="2" x="3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2666. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2667. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2668. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2669. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2670. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2671. </package>
  2672. <package name="M0805">
  2673. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2674. MELF 0.10 W</description>
  2675. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2676. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2677. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2678. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2679. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2680. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2681. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2682. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2683. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2684. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2685. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2686. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2687. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2688. </package>
  2689. <package name="M1206">
  2690. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2691. MELF 0.25 W</description>
  2692. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2693. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2694. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2695. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2696. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2697. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2698. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2699. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2700. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2701. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2702. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2703. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2704. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2705. </package>
  2706. <package name="M1406">
  2707. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2708. MELF 0.12 W</description>
  2709. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2710. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2711. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2712. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2713. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2714. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2715. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2716. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2717. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2718. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2719. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2720. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2721. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2722. </package>
  2723. <package name="M2012">
  2724. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2725. MELF 0.10 W</description>
  2726. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2727. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2728. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2729. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2730. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2731. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2732. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2733. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2734. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2735. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2736. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2737. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2738. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2739. </package>
  2740. <package name="M2309">
  2741. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2742. MELF 0.25 W</description>
  2743. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2744. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2745. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2746. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2747. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2748. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2749. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2750. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2751. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2752. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2753. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2754. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2755. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2756. </package>
  2757. <package name="M3216">
  2758. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2759. MELF 0.25 W</description>
  2760. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2761. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2762. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2763. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2764. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2765. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2766. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2767. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2768. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2769. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2770. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2771. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2772. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2773. </package>
  2774. <package name="M3516">
  2775. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2776. MELF 0.12 W</description>
  2777. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2778. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2779. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2780. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2781. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2782. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2783. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2784. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2785. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2786. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2787. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2788. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2789. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  2790. </package>
  2791. <package name="M5923">
  2792. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2793. MELF 0.25 W</description>
  2794. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2795. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2796. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2797. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2798. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2799. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2800. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2801. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2802. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2803. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2804. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2805. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2806. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2807. </package>
  2808. <package name="0204/5">
  2809. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2810. type 0204, grid 5 mm</description>
  2811. <wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="51"/>
  2812. <wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="51"/>
  2813. <wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2814. <wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2815. <wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  2816. <wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  2817. <wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="51"/>
  2818. <wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2819. <wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2820. <wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2821. <wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2822. <wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2823. <wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
  2824. <wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2825. <wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
  2826. <wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2827. <wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2828. <wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="51"/>
  2829. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2830. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2831. <text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2832. <text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2833. <rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="51"/>
  2834. <rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="51"/>
  2835. </package>
  2836. <package name="0204/7">
  2837. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2838. type 0204, grid 7.5 mm</description>
  2839. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  2840. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  2841. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2842. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2843. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  2844. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  2845. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  2846. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2847. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2848. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2849. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2850. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2851. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  2852. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2853. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  2854. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2855. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2856. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  2857. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2858. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2859. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2860. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2861. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  2862. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  2863. </package>
  2864. <package name="0207/10">
  2865. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2866. type 0207, grid 10 mm</description>
  2867. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  2868. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  2869. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2870. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2871. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2872. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2873. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2874. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2875. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2876. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2877. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2878. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2879. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2880. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2881. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2882. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2883. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2884. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2885. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2886. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2887. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2888. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2889. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2890. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2891. </package>
  2892. <package name="0207/12">
  2893. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2894. type 0207, grid 12 mm</description>
  2895. <wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="51"/>
  2896. <wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="51"/>
  2897. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2898. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2899. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2900. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2901. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2902. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2903. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2904. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2905. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2906. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2907. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2908. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2909. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2910. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2911. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2912. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2913. <wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2914. <wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2915. <pad name="1" x="-6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2916. <pad name="2" x="6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2917. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2918. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2919. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2920. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2921. <rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
  2922. <rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  2923. </package>
  2924. <package name="0207/15">
  2925. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2926. type 0207, grid 15mm</description>
  2927. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="51"/>
  2928. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="51"/>
  2929. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2930. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2931. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2932. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2933. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2934. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2935. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2936. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2937. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2938. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2939. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2940. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2941. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2942. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2943. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2944. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2945. <wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2946. <wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2947. <pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
  2948. <pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
  2949. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2950. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2951. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2952. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2953. <rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
  2954. <rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
  2955. </package>
  2956. <package name="0207/2V">
  2957. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2958. type 0207, grid 2.5 mm</description>
  2959. <wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="51"/>
  2960. <wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
  2961. <wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="51"/>
  2962. <circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
  2963. <circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="51"/>
  2964. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2965. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2966. <text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2967. <text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2968. </package>
  2969. <package name="0207/5V">
  2970. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2971. type 0207, grid 5 mm</description>
  2972. <wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="51"/>
  2973. <wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
  2974. <wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="51"/>
  2975. <circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
  2976. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2977. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2978. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2979. <text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2980. <text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2981. </package>
  2982. <package name="0207/7">
  2983. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2984. type 0207, grid 7.5 mm</description>
  2985. <wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="51"/>
  2986. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2987. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2988. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2989. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2990. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="51"/>
  2991. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2992. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2993. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2994. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2995. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2996. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2997. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2998. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2999. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  3000. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  3001. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="51"/>
  3002. <wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="51"/>
  3003. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  3004. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3005. <text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3006. <text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3007. <rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="51"/>
  3008. <rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="51"/>
  3009. </package>
  3010. <package name="0309/10">
  3011. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3012. type 0309, grid 10mm</description>
  3013. <wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  3014. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3015. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3016. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3017. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3018. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="51"/>
  3019. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  3020. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  3021. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  3022. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  3023. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  3024. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  3025. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  3026. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  3027. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  3028. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  3029. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="51"/>
  3030. <wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="51"/>
  3031. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  3032. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  3033. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3034. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3035. <rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="51"/>
  3036. <rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="51"/>
  3037. </package>
  3038. <package name="0309/12">
  3039. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3040. type 0309, grid 12.5 mm</description>
  3041. <wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  3042. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  3043. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3044. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3045. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3046. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3047. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
  3048. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  3049. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  3050. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  3051. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  3052. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  3053. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  3054. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  3055. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  3056. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  3057. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  3058. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
  3059. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  3060. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  3061. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3062. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3063. <rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
  3064. <rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
  3065. </package>
  3066. <package name="0411/12">
  3067. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3068. type 0411, grid 12.5 mm</description>
  3069. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="51"/>
  3070. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="51"/>
  3071. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  3072. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  3073. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3074. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  3075. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3076. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  3077. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  3078. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  3079. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  3080. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  3081. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  3082. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  3083. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  3084. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  3085. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  3086. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  3087. <pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
  3088. <pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
  3089. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3090. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3091. <rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  3092. <rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
  3093. </package>
  3094. <package name="0411/15">
  3095. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3096. type 0411, grid 15 mm</description>
  3097. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  3098. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  3099. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3100. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  3101. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3102. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  3103. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  3104. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  3105. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  3106. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  3107. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  3108. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  3109. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  3110. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  3111. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  3112. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  3113. <wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="51"/>
  3114. <wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="51"/>
  3115. <pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
  3116. <pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
  3117. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3118. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3119. <rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
  3120. <rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  3121. </package>
  3122. <package name="0411V">
  3123. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3124. type 0411, grid 3.81 mm</description>
  3125. <wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="51"/>
  3126. <wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="51"/>
  3127. <circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
  3128. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  3129. <pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
  3130. <pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
  3131. <text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3132. <text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3133. <rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
  3134. </package>
  3135. <package name="0414/15">
  3136. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3137. type 0414, grid 15 mm</description>
  3138. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="51"/>
  3139. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="51"/>
  3140. <wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
  3141. <wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
  3142. <wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  3143. <wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  3144. <wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
  3145. <wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  3146. <wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  3147. <wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  3148. <wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  3149. <wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  3150. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  3151. <wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  3152. <wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
  3153. <wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  3154. <wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  3155. <wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
  3156. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  3157. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  3158. <text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3159. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3160. <rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
  3161. <rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
  3162. </package>
  3163. <package name="0414V">
  3164. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3165. type 0414, grid 5 mm</description>
  3166. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  3167. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  3168. <circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
  3169. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  3170. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  3171. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3172. <text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3173. <text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3174. <rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
  3175. </package>
  3176. <package name="0617/17">
  3177. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3178. type 0617, grid 17.5 mm</description>
  3179. <wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="51"/>
  3180. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  3181. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  3182. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  3183. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  3184. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  3185. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  3186. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  3187. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  3188. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  3189. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  3190. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
  3191. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="51"/>
  3192. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  3193. <wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
  3194. <wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="51"/>
  3195. <wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  3196. <wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="51"/>
  3197. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  3198. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  3199. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  3200. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  3201. <pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
  3202. <pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
  3203. <text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3204. <text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3205. <rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="51"/>
  3206. <rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="51"/>
  3207. </package>
  3208. <package name="0617/22">
  3209. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3210. type 0617, grid 22.5 mm</description>
  3211. <wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  3212. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  3213. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  3214. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  3215. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  3216. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  3217. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  3218. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  3219. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  3220. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  3221. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  3222. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  3223. <wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  3224. <wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="51"/>
  3225. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  3226. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  3227. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  3228. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  3229. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  3230. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  3231. <text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3232. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3233. <rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
  3234. <rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
  3235. </package>
  3236. <package name="0617V">
  3237. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3238. type 0617, grid 5 mm</description>
  3239. <wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="51"/>
  3240. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="51"/>
  3241. <circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
  3242. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  3243. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  3244. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3245. <text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3246. <text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3247. <rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  3248. </package>
  3249. <package name="0922/22">
  3250. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3251. type 0922, grid 22.5 mm</description>
  3252. <wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="51"/>
  3253. <wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="51"/>
  3254. <wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
  3255. <wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  3256. <wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  3257. <wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  3258. <wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  3259. <wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  3260. <wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
  3261. <wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  3262. <wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
  3263. <wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  3264. <wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  3265. <wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
  3266. <wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  3267. <wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  3268. <wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
  3269. <wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
  3270. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  3271. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  3272. <text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3273. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3274. <rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="51"/>
  3275. <rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  3276. <rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
  3277. <rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="51"/>
  3278. </package>
  3279. <package name="P0613V">
  3280. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3281. type 0613, grid 5 mm</description>
  3282. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  3283. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  3284. <circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
  3285. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  3286. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  3287. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3288. <text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3289. <text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3290. <rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  3291. </package>
  3292. <package name="P0613/15">
  3293. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3294. type 0613, grid 15 mm</description>
  3295. <wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="51"/>
  3296. <wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="51"/>
  3297. <wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3298. <wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3299. <wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3300. <wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3301. <wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  3302. <wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  3303. <wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  3304. <wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  3305. <wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  3306. <wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
  3307. <wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  3308. <wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
  3309. <wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  3310. <wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  3311. <wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
  3312. <wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="51"/>
  3313. <wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
  3314. <wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
  3315. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="51"/>
  3316. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
  3317. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  3318. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  3319. <text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3320. <text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3321. <rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="51"/>
  3322. <rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="51"/>
  3323. </package>
  3324. <package name="P0817/22">
  3325. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3326. type 0817, grid 22.5 mm</description>
  3327. <wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  3328. <wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
  3329. <wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  3330. <wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  3331. <wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  3332. <wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  3333. <wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  3334. <wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
  3335. <wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  3336. <wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
  3337. <wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  3338. <wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  3339. <wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
  3340. <wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="51"/>
  3341. <wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  3342. <wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  3343. <wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  3344. <wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  3345. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  3346. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  3347. <text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3348. <text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3349. <text x="6.604" y="-2.2606" size="1.27" layer="51" ratio="10" rot="R90">0817</text>
  3350. <rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  3351. <rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
  3352. </package>
  3353. <package name="P0817V">
  3354. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3355. type 0817, grid 6.35 mm</description>
  3356. <wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="51"/>
  3357. <wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="51"/>
  3358. <circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
  3359. <circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="51"/>
  3360. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3361. <pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
  3362. <text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3363. <text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3364. <text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
  3365. <rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
  3366. </package>
  3367. <package name="V234/12">
  3368. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3369. type V234, grid 12.5 mm</description>
  3370. <wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  3371. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3372. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3373. <wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  3374. <wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  3375. <wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
  3376. <wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
  3377. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  3378. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="51"/>
  3379. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="51"/>
  3380. <pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
  3381. <pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
  3382. <text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3383. <text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3384. <rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
  3385. <rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
  3386. </package>
  3387. <package name="V235/17">
  3388. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3389. type V235, grid 17.78 mm</description>
  3390. <wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
  3391. <wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
  3392. <wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
  3393. <wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
  3394. <wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="51"/>
  3395. <wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="51"/>
  3396. <wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
  3397. <wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3398. <wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3399. <wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
  3400. <pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
  3401. <pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
  3402. <text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3403. <text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3404. <rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
  3405. <rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
  3406. </package>
  3407. <package name="V526-0">
  3408. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3409. type V526-0, grid 2.5 mm</description>
  3410. <wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3411. <wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3412. <wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3413. <wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3414. <wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
  3415. <wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
  3416. <wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
  3417. <wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
  3418. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3419. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3420. <text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3421. <text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3422. </package>
  3423. <package name="MINI_MELF-0102AX">
  3424. <description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>
  3425. <circle x="0" y="0" radius="0.6" width="0" layer="51"/>
  3426. <circle x="0" y="0" radius="0.6" width="0" layer="52"/>
  3427. <smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
  3428. <smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
  3429. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3430. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3431. <hole x="0" y="0" drill="1.3"/>
  3432. </package>
  3433. <package name="0922V">
  3434. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3435. type 0922, grid 7.5 mm</description>
  3436. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  3437. <wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="51"/>
  3438. <circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
  3439. <circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
  3440. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3441. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3442. <text x="-0.508" y="1.6764" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3443. <text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3444. <text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
  3445. <rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  3446. </package>
  3447. <package name="MINI_MELF-0102R">
  3448. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;
  3449. source Beyschlag</description>
  3450. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  3451. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  3452. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  3453. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  3454. <smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  3455. <smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  3456. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3457. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3458. </package>
  3459. <package name="MINI_MELF-0102W">
  3460. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;
  3461. source Beyschlag</description>
  3462. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  3463. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  3464. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  3465. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  3466. <smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  3467. <smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  3468. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3469. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3470. </package>
  3471. <package name="MINI_MELF-0204R">
  3472. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;
  3473. source Beyschlag</description>
  3474. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  3475. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  3476. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  3477. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  3478. <wire x1="0.938" y1="0.6" x2="-0.938" y2="0.6" width="0.2032" layer="21"/>
  3479. <wire x1="-0.938" y1="-0.6" x2="0.938" y2="-0.6" width="0.2032" layer="21"/>
  3480. <smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  3481. <smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  3482. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3483. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3484. </package>
  3485. <package name="MINI_MELF-0204W">
  3486. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;
  3487. source Beyschlag</description>
  3488. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  3489. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  3490. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  3491. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  3492. <wire x1="0.684" y1="0.6" x2="-0.684" y2="0.6" width="0.2032" layer="21"/>
  3493. <wire x1="-0.684" y1="-0.6" x2="0.684" y2="-0.6" width="0.2032" layer="21"/>
  3494. <smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  3495. <smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  3496. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3497. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3498. </package>
  3499. <package name="MINI_MELF-0207R">
  3500. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;
  3501. source Beyschlag</description>
  3502. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  3503. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  3504. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  3505. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  3506. <wire x1="1.2125" y1="1" x2="-1.2125" y2="1" width="0.2032" layer="21"/>
  3507. <wire x1="-1.2125" y1="-1" x2="1.2125" y2="-1" width="0.2032" layer="21"/>
  3508. <smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  3509. <smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  3510. <text x="-2.2225" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  3511. <text x="-2.2225" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3512. </package>
  3513. <package name="MINI_MELF-0207W">
  3514. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;
  3515. source Beyschlag</description>
  3516. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  3517. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  3518. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  3519. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  3520. <wire x1="1.149" y1="1" x2="-1.149" y2="1" width="0.2032" layer="21"/>
  3521. <wire x1="-1.149" y1="-1" x2="1.149" y2="-1" width="0.2032" layer="21"/>
  3522. <smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  3523. <smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  3524. <text x="-2.54" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  3525. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3526. </package>
  3527. <package name="RDH/15">
  3528. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3529. type RDH, grid 15 mm</description>
  3530. <wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="51"/>
  3531. <wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  3532. <wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  3533. <wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  3534. <wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  3535. <wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  3536. <wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
  3537. <wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  3538. <wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
  3539. <wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  3540. <wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  3541. <wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
  3542. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="51"/>
  3543. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
  3544. <wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
  3545. <wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="51"/>
  3546. <wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
  3547. <wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="51"/>
  3548. <wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  3549. <wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  3550. <wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  3551. <wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  3552. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  3553. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  3554. <text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3555. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3556. <text x="4.572" y="-1.7272" size="1.27" layer="51" ratio="10" rot="R90">RDH</text>
  3557. <rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="51"/>
  3558. <rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="51"/>
  3559. </package>
  3560. <package name="0204V">
  3561. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3562. type 0204, grid 2.5 mm</description>
  3563. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="51"/>
  3564. <wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
  3565. <circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="51"/>
  3566. <circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="51"/>
  3567. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3568. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3569. <text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3570. <text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3571. </package>
  3572. <package name="0309V">
  3573. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3574. type 0309, grid 2.5 mm</description>
  3575. <wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="51"/>
  3576. <wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="51"/>
  3577. <circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
  3578. <circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="51"/>
  3579. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3580. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3581. <text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3582. <text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3583. <rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="51"/>
  3584. <rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="51"/>
  3585. <rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
  3586. </package>
  3587. <package name="R0201">
  3588. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  3589. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  3590. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  3591. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  3592. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3593. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3594. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  3595. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  3596. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  3597. </package>
  3598. <package name="VMTA55">
  3599. <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;
  3600. MIL SIZE RNC55&lt;br&gt;
  3601. Source: VISHAY .. vta56.pdf</description>
  3602. <wire x1="-5.08" y1="0" x2="-4.26" y2="0" width="0.6096" layer="51"/>
  3603. <wire x1="3.3375" y1="-1.45" x2="3.3375" y2="1.45" width="0.1524" layer="21"/>
  3604. <wire x1="3.3375" y1="1.45" x2="-3.3625" y2="1.45" width="0.1524" layer="21"/>
  3605. <wire x1="-3.3625" y1="1.45" x2="-3.3625" y2="-1.45" width="0.1524" layer="21"/>
  3606. <wire x1="-3.3625" y1="-1.45" x2="3.3375" y2="-1.45" width="0.1524" layer="21"/>
  3607. <wire x1="4.235" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  3608. <pad name="1" x="-5.08" y="0" drill="1.1" shape="octagon"/>
  3609. <pad name="2" x="5.08" y="0" drill="1.1" shape="octagon"/>
  3610. <text x="-3.175" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3611. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3612. <rectangle x1="-4.26" y1="-0.3048" x2="-3.3075" y2="0.3048" layer="21"/>
  3613. <rectangle x1="3.2825" y1="-0.3048" x2="4.235" y2="0.3048" layer="21"/>
  3614. </package>
  3615. <package name="VMTB60">
  3616. <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;
  3617. MIL SIZE RNC60&lt;br&gt;
  3618. Source: VISHAY .. vta56.pdf</description>
  3619. <wire x1="-6.35" y1="0" x2="-5.585" y2="0" width="0.6096" layer="51"/>
  3620. <wire x1="4.6875" y1="-1.95" x2="4.6875" y2="1.95" width="0.1524" layer="21"/>
  3621. <wire x1="4.6875" y1="1.95" x2="-4.6875" y2="1.95" width="0.1524" layer="21"/>
  3622. <wire x1="-4.6875" y1="1.95" x2="-4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3623. <wire x1="-4.6875" y1="-1.95" x2="4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3624. <wire x1="5.585" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3625. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3626. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3627. <text x="-4.445" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3628. <text x="-4.445" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3629. <rectangle x1="-5.585" y1="-0.3048" x2="-4.6325" y2="0.3048" layer="21"/>
  3630. <rectangle x1="4.6325" y1="-0.3048" x2="5.585" y2="0.3048" layer="21"/>
  3631. </package>
  3632. <package name="VTA52">
  3633. <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;
  3634. MIL SIZE RBR52&lt;br&gt;
  3635. Source: VISHAY .. vta56.pdf</description>
  3636. <wire x1="-15.24" y1="0" x2="-13.97" y2="0" width="0.6096" layer="51"/>
  3637. <wire x1="12.6225" y1="0.025" x2="12.6225" y2="4.725" width="0.1524" layer="21"/>
  3638. <wire x1="12.6225" y1="4.725" x2="-12.6225" y2="4.725" width="0.1524" layer="21"/>
  3639. <wire x1="-12.6225" y1="4.725" x2="-12.6225" y2="0.025" width="0.1524" layer="21"/>
  3640. <wire x1="-12.6225" y1="0.025" x2="-12.6225" y2="-4.65" width="0.1524" layer="21"/>
  3641. <wire x1="-12.6225" y1="-4.65" x2="12.6225" y2="-4.65" width="0.1524" layer="21"/>
  3642. <wire x1="12.6225" y1="-4.65" x2="12.6225" y2="0.025" width="0.1524" layer="21"/>
  3643. <wire x1="13.97" y1="0" x2="15.24" y2="0" width="0.6096" layer="51"/>
  3644. <pad name="1" x="-15.24" y="0" drill="1.1" shape="octagon"/>
  3645. <pad name="2" x="15.24" y="0" drill="1.1" shape="octagon"/>
  3646. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3647. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3648. <rectangle x1="-13.97" y1="-0.3048" x2="-12.5675" y2="0.3048" layer="21"/>
  3649. <rectangle x1="12.5675" y1="-0.3048" x2="13.97" y2="0.3048" layer="21"/>
  3650. </package>
  3651. <package name="VTA53">
  3652. <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;
  3653. MIL SIZE RBR53&lt;br&gt;
  3654. Source: VISHAY .. vta56.pdf</description>
  3655. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  3656. <wire x1="9.8975" y1="0" x2="9.8975" y2="4.7" width="0.1524" layer="21"/>
  3657. <wire x1="9.8975" y1="4.7" x2="-9.8975" y2="4.7" width="0.1524" layer="21"/>
  3658. <wire x1="-9.8975" y1="4.7" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  3659. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-4.675" width="0.1524" layer="21"/>
  3660. <wire x1="-9.8975" y1="-4.675" x2="9.8975" y2="-4.675" width="0.1524" layer="21"/>
  3661. <wire x1="9.8975" y1="-4.675" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  3662. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  3663. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  3664. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  3665. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3666. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3667. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  3668. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  3669. </package>
  3670. <package name="VTA54">
  3671. <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;
  3672. MIL SIZE RBR54&lt;br&gt;
  3673. Source: VISHAY .. vta56.pdf</description>
  3674. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  3675. <wire x1="9.8975" y1="0" x2="9.8975" y2="3.3" width="0.1524" layer="21"/>
  3676. <wire x1="9.8975" y1="3.3" x2="-9.8975" y2="3.3" width="0.1524" layer="21"/>
  3677. <wire x1="-9.8975" y1="3.3" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  3678. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-3.3" width="0.1524" layer="21"/>
  3679. <wire x1="-9.8975" y1="-3.3" x2="9.8975" y2="-3.3" width="0.1524" layer="21"/>
  3680. <wire x1="9.8975" y1="-3.3" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  3681. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  3682. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  3683. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  3684. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3685. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3686. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  3687. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  3688. </package>
  3689. <package name="VTA55">
  3690. <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;
  3691. MIL SIZE RBR55&lt;br&gt;
  3692. Source: VISHAY .. vta56.pdf</description>
  3693. <wire x1="-8.255" y1="0" x2="-6.985" y2="0" width="0.6096" layer="51"/>
  3694. <wire x1="6.405" y1="0" x2="6.405" y2="3.3" width="0.1524" layer="21"/>
  3695. <wire x1="6.405" y1="3.3" x2="-6.405" y2="3.3" width="0.1524" layer="21"/>
  3696. <wire x1="-6.405" y1="3.3" x2="-6.405" y2="0" width="0.1524" layer="21"/>
  3697. <wire x1="-6.405" y1="0" x2="-6.405" y2="-3.3" width="0.1524" layer="21"/>
  3698. <wire x1="-6.405" y1="-3.3" x2="6.405" y2="-3.3" width="0.1524" layer="21"/>
  3699. <wire x1="6.405" y1="-3.3" x2="6.405" y2="0" width="0.1524" layer="21"/>
  3700. <wire x1="6.985" y1="0" x2="8.255" y2="0" width="0.6096" layer="51"/>
  3701. <pad name="1" x="-8.255" y="0" drill="1.1" shape="octagon"/>
  3702. <pad name="2" x="8.255" y="0" drill="1.1" shape="octagon"/>
  3703. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3704. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3705. <rectangle x1="-6.985" y1="-0.3048" x2="-6.35" y2="0.3048" layer="21"/>
  3706. <rectangle x1="6.35" y1="-0.3048" x2="6.985" y2="0.3048" layer="21"/>
  3707. </package>
  3708. <package name="VTA56">
  3709. <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;
  3710. MIL SIZE RBR56&lt;br&gt;
  3711. Source: VISHAY .. vta56.pdf</description>
  3712. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  3713. <wire x1="4.5" y1="0" x2="4.5" y2="3.3" width="0.1524" layer="21"/>
  3714. <wire x1="4.5" y1="3.3" x2="-4.5" y2="3.3" width="0.1524" layer="21"/>
  3715. <wire x1="-4.5" y1="3.3" x2="-4.5" y2="0" width="0.1524" layer="21"/>
  3716. <wire x1="-4.5" y1="0" x2="-4.5" y2="-3.3" width="0.1524" layer="21"/>
  3717. <wire x1="-4.5" y1="-3.3" x2="4.5" y2="-3.3" width="0.1524" layer="21"/>
  3718. <wire x1="4.5" y1="-3.3" x2="4.5" y2="0" width="0.1524" layer="21"/>
  3719. <wire x1="5.08" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3720. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3721. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3722. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3723. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3724. <rectangle x1="-5.08" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  3725. <rectangle x1="4.445" y1="-0.3048" x2="5.08" y2="0.3048" layer="21"/>
  3726. </package>
  3727. <package name="R4527">
  3728. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  3729. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  3730. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  3731. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  3732. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  3733. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3734. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3735. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3736. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3737. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3738. </package>
  3739. <package name="WSC0001">
  3740. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3741. Source: VISHAY wscwsn.pdf</description>
  3742. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3743. <wire x1="-3.075" y1="-1.8" x2="3.075" y2="-1.8" width="0.2032" layer="21"/>
  3744. <wire x1="3.075" y1="-1.8" x2="3.075" y2="1.8" width="0.2032" layer="51"/>
  3745. <wire x1="3.075" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3746. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3747. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3748. <wire x1="3.075" y1="1.606" x2="3.075" y2="1.8" width="0.2032" layer="21"/>
  3749. <wire x1="3.075" y1="-1.8" x2="3.075" y2="-1.606" width="0.2032" layer="21"/>
  3750. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3751. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3752. <text x="-2.544" y="2.229" size="1.27" layer="25">&gt;NAME</text>
  3753. <text x="-2.544" y="-3.501" size="1.27" layer="27">&gt;VALUE</text>
  3754. </package>
  3755. <package name="WSC0002">
  3756. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3757. Source: VISHAY wscwsn.pdf</description>
  3758. <wire x1="-5.55" y1="3.375" x2="-5.55" y2="-3.375" width="0.2032" layer="51"/>
  3759. <wire x1="-5.55" y1="-3.375" x2="5.55" y2="-3.375" width="0.2032" layer="21"/>
  3760. <wire x1="5.55" y1="-3.375" x2="5.55" y2="3.375" width="0.2032" layer="51"/>
  3761. <wire x1="5.55" y1="3.375" x2="-5.55" y2="3.375" width="0.2032" layer="21"/>
  3762. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3763. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3764. <text x="-5.65" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3765. <text x="-5.65" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3766. </package>
  3767. <package name="WSC01/2">
  3768. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3769. Source: VISHAY wscwsn.pdf</description>
  3770. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="-1.475" width="0.2032" layer="51"/>
  3771. <wire x1="-2.45" y1="-1.475" x2="2.45" y2="-1.475" width="0.2032" layer="21"/>
  3772. <wire x1="2.45" y1="-1.475" x2="2.45" y2="1.475" width="0.2032" layer="51"/>
  3773. <wire x1="2.45" y1="1.475" x2="-2.45" y2="1.475" width="0.2032" layer="21"/>
  3774. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="1.106" width="0.2032" layer="21"/>
  3775. <wire x1="-2.45" y1="-1.106" x2="-2.45" y2="-1.475" width="0.2032" layer="21"/>
  3776. <wire x1="2.45" y1="1.106" x2="2.45" y2="1.475" width="0.2032" layer="21"/>
  3777. <wire x1="2.45" y1="-1.475" x2="2.45" y2="-1.106" width="0.2032" layer="21"/>
  3778. <smd name="1" x="-2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3779. <smd name="2" x="2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3780. <text x="-2.544" y="1.904" size="1.27" layer="25">&gt;NAME</text>
  3781. <text x="-2.544" y="-3.176" size="1.27" layer="27">&gt;VALUE</text>
  3782. </package>
  3783. <package name="WSC2515">
  3784. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3785. Source: VISHAY wscwsn.pdf</description>
  3786. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3787. <wire x1="-3.075" y1="-1.8" x2="3.05" y2="-1.8" width="0.2032" layer="21"/>
  3788. <wire x1="3.05" y1="-1.8" x2="3.05" y2="1.8" width="0.2032" layer="51"/>
  3789. <wire x1="3.05" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3790. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3791. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3792. <wire x1="3.05" y1="1.606" x2="3.05" y2="1.8" width="0.2032" layer="21"/>
  3793. <wire x1="3.05" y1="-1.8" x2="3.05" y2="-1.606" width="0.2032" layer="21"/>
  3794. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3795. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3796. <text x="-3.2" y="2.15" size="1.27" layer="25">&gt;NAME</text>
  3797. <text x="-3.2" y="-3.4" size="1.27" layer="27">&gt;VALUE</text>
  3798. </package>
  3799. <package name="WSC4527">
  3800. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3801. Source: VISHAY wscwsn.pdf</description>
  3802. <wire x1="-5.675" y1="3.4" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3803. <wire x1="-5.675" y1="-3.375" x2="5.675" y2="-3.375" width="0.2032" layer="21"/>
  3804. <wire x1="5.675" y1="-3.375" x2="5.675" y2="3.4" width="0.2032" layer="51"/>
  3805. <wire x1="5.675" y1="3.4" x2="-5.675" y2="3.4" width="0.2032" layer="21"/>
  3806. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3807. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3808. <text x="-5.775" y="3.925" size="1.27" layer="25">&gt;NAME</text>
  3809. <text x="-5.775" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3810. </package>
  3811. <package name="WSC6927">
  3812. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3813. Source: VISHAY wscwsn.pdf</description>
  3814. <wire x1="-8.65" y1="3.375" x2="-8.65" y2="-3.375" width="0.2032" layer="51"/>
  3815. <wire x1="-8.65" y1="-3.375" x2="8.65" y2="-3.375" width="0.2032" layer="21"/>
  3816. <wire x1="8.65" y1="-3.375" x2="8.65" y2="3.375" width="0.2032" layer="51"/>
  3817. <wire x1="8.65" y1="3.375" x2="-8.65" y2="3.375" width="0.2032" layer="21"/>
  3818. <smd name="1" x="-7.95" y="0.025" dx="3.94" dy="5.97" layer="1"/>
  3819. <smd name="2" x="7.95" y="0" dx="3.94" dy="5.97" layer="1"/>
  3820. <text x="-8.75" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3821. <text x="-8.75" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3822. </package>
  3823. <package name="R1218">
  3824. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  3825. Source: http://www.vishay.com .. dcrcw.pdf</description>
  3826. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  3827. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  3828. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3829. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3830. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3831. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3832. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  3833. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  3834. </package>
  3835. <package name="1812X7R">
  3836. <description>&lt;b&gt;Chip Monolithic Ceramic Capacitors&lt;/b&gt; Medium Voltage High Capacitance for General Use&lt;p&gt;
  3837. Source: http://www.murata.com .. GRM43DR72E224KW01.pdf</description>
  3838. <wire x1="-1.1" y1="1.5" x2="1.1" y2="1.5" width="0.2032" layer="51"/>
  3839. <wire x1="1.1" y1="-1.5" x2="-1.1" y2="-1.5" width="0.2032" layer="51"/>
  3840. <wire x1="-0.6" y1="1.5" x2="0.6" y2="1.5" width="0.2032" layer="21"/>
  3841. <wire x1="0.6" y1="-1.5" x2="-0.6" y2="-1.5" width="0.2032" layer="21"/>
  3842. <smd name="1" x="-1.425" y="0" dx="0.8" dy="3.5" layer="1"/>
  3843. <smd name="2" x="1.425" y="0" dx="0.8" dy="3.5" layer="1" rot="R180"/>
  3844. <text x="-1.9456" y="1.9958" size="1.27" layer="25">&gt;NAME</text>
  3845. <text x="-1.9456" y="-3.7738" size="1.27" layer="27">&gt;VALUE</text>
  3846. <rectangle x1="-1.4" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
  3847. <rectangle x1="1.1" y1="-1.6" x2="1.4" y2="1.6" layer="51" rot="R180"/>
  3848. </package>
  3849. <package name="R01005">
  3850. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3851. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3852. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  3853. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  3854. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  3855. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  3856. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  3857. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  3858. </package>
  3859. <package name="PRL1632">
  3860. <description>&lt;b&gt;PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)&lt;/b&gt;&lt;p&gt;
  3861. Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf</description>
  3862. <wire x1="0.7275" y1="-1.5228" x2="-0.7277" y2="-1.5228" width="0.1524" layer="51"/>
  3863. <wire x1="0.7275" y1="1.5228" x2="-0.7152" y2="1.5228" width="0.1524" layer="51"/>
  3864. <smd name="2" x="0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3865. <smd name="1" x="-0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3866. <text x="-1.4" y="1.8" size="1.27" layer="25">&gt;NAME</text>
  3867. <text x="-1.4" y="-3" size="1.27" layer="27">&gt;VALUE</text>
  3868. <rectangle x1="-0.8" y1="-1.6" x2="-0.4" y2="1.6" layer="51"/>
  3869. <rectangle x1="0.4" y1="-1.6" x2="0.8" y2="1.6" layer="51"/>
  3870. </package>
  3871. </packages>
  3872. <symbols>
  3873. <symbol name="R-US">
  3874. <wire x1="-2.54" y1="0" x2="-2.159" y2="1.016" width="0.2032" layer="94"/>
  3875. <wire x1="-2.159" y1="1.016" x2="-1.524" y2="-1.016" width="0.2032" layer="94"/>
  3876. <wire x1="-1.524" y1="-1.016" x2="-0.889" y2="1.016" width="0.2032" layer="94"/>
  3877. <wire x1="-0.889" y1="1.016" x2="-0.254" y2="-1.016" width="0.2032" layer="94"/>
  3878. <wire x1="-0.254" y1="-1.016" x2="0.381" y2="1.016" width="0.2032" layer="94"/>
  3879. <wire x1="0.381" y1="1.016" x2="1.016" y2="-1.016" width="0.2032" layer="94"/>
  3880. <wire x1="1.016" y1="-1.016" x2="1.651" y2="1.016" width="0.2032" layer="94"/>
  3881. <wire x1="1.651" y1="1.016" x2="2.286" y2="-1.016" width="0.2032" layer="94"/>
  3882. <wire x1="2.286" y1="-1.016" x2="2.54" y2="0" width="0.2032" layer="94"/>
  3883. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  3884. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  3885. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  3886. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  3887. </symbol>
  3888. <symbol name="R-EU-1">
  3889. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  3890. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3891. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  3892. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3893. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  3894. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  3895. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  3896. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  3897. </symbol>
  3898. </symbols>
  3899. <devicesets>
  3900. <deviceset name="R-US_" prefix="R" uservalue="yes">
  3901. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, American symbol</description>
  3902. <gates>
  3903. <gate name="G$1" symbol="R-US" x="0" y="0"/>
  3904. </gates>
  3905. <devices>
  3906. <device name="R0402" package="R0402">
  3907. <connects>
  3908. <connect gate="G$1" pin="1" pad="1"/>
  3909. <connect gate="G$1" pin="2" pad="2"/>
  3910. </connects>
  3911. <technologies>
  3912. <technology name=""/>
  3913. </technologies>
  3914. </device>
  3915. <device name="R0603" package="R0603">
  3916. <connects>
  3917. <connect gate="G$1" pin="1" pad="1"/>
  3918. <connect gate="G$1" pin="2" pad="2"/>
  3919. </connects>
  3920. <technologies>
  3921. <technology name=""/>
  3922. </technologies>
  3923. </device>
  3924. <device name="R0805" package="R0805">
  3925. <connects>
  3926. <connect gate="G$1" pin="1" pad="1"/>
  3927. <connect gate="G$1" pin="2" pad="2"/>
  3928. </connects>
  3929. <technologies>
  3930. <technology name=""/>
  3931. </technologies>
  3932. </device>
  3933. <device name="R0805W" package="R0805W">
  3934. <connects>
  3935. <connect gate="G$1" pin="1" pad="1"/>
  3936. <connect gate="G$1" pin="2" pad="2"/>
  3937. </connects>
  3938. <technologies>
  3939. <technology name=""/>
  3940. </technologies>
  3941. </device>
  3942. <device name="R1206" package="R1206">
  3943. <connects>
  3944. <connect gate="G$1" pin="1" pad="1"/>
  3945. <connect gate="G$1" pin="2" pad="2"/>
  3946. </connects>
  3947. <technologies>
  3948. <technology name=""/>
  3949. </technologies>
  3950. </device>
  3951. <device name="R1206W" package="R1206W">
  3952. <connects>
  3953. <connect gate="G$1" pin="1" pad="1"/>
  3954. <connect gate="G$1" pin="2" pad="2"/>
  3955. </connects>
  3956. <technologies>
  3957. <technology name=""/>
  3958. </technologies>
  3959. </device>
  3960. <device name="R1210" package="R1210">
  3961. <connects>
  3962. <connect gate="G$1" pin="1" pad="1"/>
  3963. <connect gate="G$1" pin="2" pad="2"/>
  3964. </connects>
  3965. <technologies>
  3966. <technology name=""/>
  3967. </technologies>
  3968. </device>
  3969. <device name="R1210W" package="R1210W">
  3970. <connects>
  3971. <connect gate="G$1" pin="1" pad="1"/>
  3972. <connect gate="G$1" pin="2" pad="2"/>
  3973. </connects>
  3974. <technologies>
  3975. <technology name=""/>
  3976. </technologies>
  3977. </device>
  3978. <device name="R2010" package="R2010">
  3979. <connects>
  3980. <connect gate="G$1" pin="1" pad="1"/>
  3981. <connect gate="G$1" pin="2" pad="2"/>
  3982. </connects>
  3983. <technologies>
  3984. <technology name=""/>
  3985. </technologies>
  3986. </device>
  3987. <device name="R2010W" package="R2010W">
  3988. <connects>
  3989. <connect gate="G$1" pin="1" pad="1"/>
  3990. <connect gate="G$1" pin="2" pad="2"/>
  3991. </connects>
  3992. <technologies>
  3993. <technology name=""/>
  3994. </technologies>
  3995. </device>
  3996. <device name="R2012" package="R2012">
  3997. <connects>
  3998. <connect gate="G$1" pin="1" pad="1"/>
  3999. <connect gate="G$1" pin="2" pad="2"/>
  4000. </connects>
  4001. <technologies>
  4002. <technology name=""/>
  4003. </technologies>
  4004. </device>
  4005. <device name="R2012W" package="R2012W">
  4006. <connects>
  4007. <connect gate="G$1" pin="1" pad="1"/>
  4008. <connect gate="G$1" pin="2" pad="2"/>
  4009. </connects>
  4010. <technologies>
  4011. <technology name=""/>
  4012. </technologies>
  4013. </device>
  4014. <device name="R2512" package="R2512">
  4015. <connects>
  4016. <connect gate="G$1" pin="1" pad="1"/>
  4017. <connect gate="G$1" pin="2" pad="2"/>
  4018. </connects>
  4019. <technologies>
  4020. <technology name=""/>
  4021. </technologies>
  4022. </device>
  4023. <device name="R2512W" package="R2512W">
  4024. <connects>
  4025. <connect gate="G$1" pin="1" pad="1"/>
  4026. <connect gate="G$1" pin="2" pad="2"/>
  4027. </connects>
  4028. <technologies>
  4029. <technology name=""/>
  4030. </technologies>
  4031. </device>
  4032. <device name="R3216" package="R3216">
  4033. <connects>
  4034. <connect gate="G$1" pin="1" pad="1"/>
  4035. <connect gate="G$1" pin="2" pad="2"/>
  4036. </connects>
  4037. <technologies>
  4038. <technology name=""/>
  4039. </technologies>
  4040. </device>
  4041. <device name="R3216W" package="R3216W">
  4042. <connects>
  4043. <connect gate="G$1" pin="1" pad="1"/>
  4044. <connect gate="G$1" pin="2" pad="2"/>
  4045. </connects>
  4046. <technologies>
  4047. <technology name=""/>
  4048. </technologies>
  4049. </device>
  4050. <device name="R3225" package="R3225">
  4051. <connects>
  4052. <connect gate="G$1" pin="1" pad="1"/>
  4053. <connect gate="G$1" pin="2" pad="2"/>
  4054. </connects>
  4055. <technologies>
  4056. <technology name=""/>
  4057. </technologies>
  4058. </device>
  4059. <device name="R3225W" package="R3225W">
  4060. <connects>
  4061. <connect gate="G$1" pin="1" pad="1"/>
  4062. <connect gate="G$1" pin="2" pad="2"/>
  4063. </connects>
  4064. <technologies>
  4065. <technology name=""/>
  4066. </technologies>
  4067. </device>
  4068. <device name="R5025" package="R5025">
  4069. <connects>
  4070. <connect gate="G$1" pin="1" pad="1"/>
  4071. <connect gate="G$1" pin="2" pad="2"/>
  4072. </connects>
  4073. <technologies>
  4074. <technology name=""/>
  4075. </technologies>
  4076. </device>
  4077. <device name="R5025W" package="R5025W">
  4078. <connects>
  4079. <connect gate="G$1" pin="1" pad="1"/>
  4080. <connect gate="G$1" pin="2" pad="2"/>
  4081. </connects>
  4082. <technologies>
  4083. <technology name=""/>
  4084. </technologies>
  4085. </device>
  4086. <device name="R6332" package="R6332">
  4087. <connects>
  4088. <connect gate="G$1" pin="1" pad="1"/>
  4089. <connect gate="G$1" pin="2" pad="2"/>
  4090. </connects>
  4091. <technologies>
  4092. <technology name=""/>
  4093. </technologies>
  4094. </device>
  4095. <device name="R6332W" package="R6332W">
  4096. <connects>
  4097. <connect gate="G$1" pin="1" pad="1"/>
  4098. <connect gate="G$1" pin="2" pad="2"/>
  4099. </connects>
  4100. <technologies>
  4101. <technology name=""/>
  4102. </technologies>
  4103. </device>
  4104. <device name="M0805" package="M0805">
  4105. <connects>
  4106. <connect gate="G$1" pin="1" pad="1"/>
  4107. <connect gate="G$1" pin="2" pad="2"/>
  4108. </connects>
  4109. <technologies>
  4110. <technology name=""/>
  4111. </technologies>
  4112. </device>
  4113. <device name="M1206" package="M1206">
  4114. <connects>
  4115. <connect gate="G$1" pin="1" pad="1"/>
  4116. <connect gate="G$1" pin="2" pad="2"/>
  4117. </connects>
  4118. <technologies>
  4119. <technology name=""/>
  4120. </technologies>
  4121. </device>
  4122. <device name="M1406" package="M1406">
  4123. <connects>
  4124. <connect gate="G$1" pin="1" pad="1"/>
  4125. <connect gate="G$1" pin="2" pad="2"/>
  4126. </connects>
  4127. <technologies>
  4128. <technology name=""/>
  4129. </technologies>
  4130. </device>
  4131. <device name="M2012" package="M2012">
  4132. <connects>
  4133. <connect gate="G$1" pin="1" pad="1"/>
  4134. <connect gate="G$1" pin="2" pad="2"/>
  4135. </connects>
  4136. <technologies>
  4137. <technology name=""/>
  4138. </technologies>
  4139. </device>
  4140. <device name="M2309" package="M2309">
  4141. <connects>
  4142. <connect gate="G$1" pin="1" pad="1"/>
  4143. <connect gate="G$1" pin="2" pad="2"/>
  4144. </connects>
  4145. <technologies>
  4146. <technology name=""/>
  4147. </technologies>
  4148. </device>
  4149. <device name="M3216" package="M3216">
  4150. <connects>
  4151. <connect gate="G$1" pin="1" pad="1"/>
  4152. <connect gate="G$1" pin="2" pad="2"/>
  4153. </connects>
  4154. <technologies>
  4155. <technology name=""/>
  4156. </technologies>
  4157. </device>
  4158. <device name="M3516" package="M3516">
  4159. <connects>
  4160. <connect gate="G$1" pin="1" pad="1"/>
  4161. <connect gate="G$1" pin="2" pad="2"/>
  4162. </connects>
  4163. <technologies>
  4164. <technology name=""/>
  4165. </technologies>
  4166. </device>
  4167. <device name="M5923" package="M5923">
  4168. <connects>
  4169. <connect gate="G$1" pin="1" pad="1"/>
  4170. <connect gate="G$1" pin="2" pad="2"/>
  4171. </connects>
  4172. <technologies>
  4173. <technology name=""/>
  4174. </technologies>
  4175. </device>
  4176. <device name="0204/5" package="0204/5">
  4177. <connects>
  4178. <connect gate="G$1" pin="1" pad="1"/>
  4179. <connect gate="G$1" pin="2" pad="2"/>
  4180. </connects>
  4181. <technologies>
  4182. <technology name=""/>
  4183. </technologies>
  4184. </device>
  4185. <device name="0204/7" package="0204/7">
  4186. <connects>
  4187. <connect gate="G$1" pin="1" pad="1"/>
  4188. <connect gate="G$1" pin="2" pad="2"/>
  4189. </connects>
  4190. <technologies>
  4191. <technology name=""/>
  4192. </technologies>
  4193. </device>
  4194. <device name="0207/10" package="0207/10">
  4195. <connects>
  4196. <connect gate="G$1" pin="1" pad="1"/>
  4197. <connect gate="G$1" pin="2" pad="2"/>
  4198. </connects>
  4199. <technologies>
  4200. <technology name=""/>
  4201. </technologies>
  4202. </device>
  4203. <device name="0207/12" package="0207/12">
  4204. <connects>
  4205. <connect gate="G$1" pin="1" pad="1"/>
  4206. <connect gate="G$1" pin="2" pad="2"/>
  4207. </connects>
  4208. <technologies>
  4209. <technology name=""/>
  4210. </technologies>
  4211. </device>
  4212. <device name="0207/15" package="0207/15">
  4213. <connects>
  4214. <connect gate="G$1" pin="1" pad="1"/>
  4215. <connect gate="G$1" pin="2" pad="2"/>
  4216. </connects>
  4217. <technologies>
  4218. <technology name=""/>
  4219. </technologies>
  4220. </device>
  4221. <device name="0207/2V" package="0207/2V">
  4222. <connects>
  4223. <connect gate="G$1" pin="1" pad="1"/>
  4224. <connect gate="G$1" pin="2" pad="2"/>
  4225. </connects>
  4226. <technologies>
  4227. <technology name=""/>
  4228. </technologies>
  4229. </device>
  4230. <device name="0207/5V" package="0207/5V">
  4231. <connects>
  4232. <connect gate="G$1" pin="1" pad="1"/>
  4233. <connect gate="G$1" pin="2" pad="2"/>
  4234. </connects>
  4235. <technologies>
  4236. <technology name=""/>
  4237. </technologies>
  4238. </device>
  4239. <device name="0207/7" package="0207/7">
  4240. <connects>
  4241. <connect gate="G$1" pin="1" pad="1"/>
  4242. <connect gate="G$1" pin="2" pad="2"/>
  4243. </connects>
  4244. <technologies>
  4245. <technology name=""/>
  4246. </technologies>
  4247. </device>
  4248. <device name="0309/10" package="0309/10">
  4249. <connects>
  4250. <connect gate="G$1" pin="1" pad="1"/>
  4251. <connect gate="G$1" pin="2" pad="2"/>
  4252. </connects>
  4253. <technologies>
  4254. <technology name=""/>
  4255. </technologies>
  4256. </device>
  4257. <device name="0309/12" package="0309/12">
  4258. <connects>
  4259. <connect gate="G$1" pin="1" pad="1"/>
  4260. <connect gate="G$1" pin="2" pad="2"/>
  4261. </connects>
  4262. <technologies>
  4263. <technology name=""/>
  4264. </technologies>
  4265. </device>
  4266. <device name="0411/12" package="0411/12">
  4267. <connects>
  4268. <connect gate="G$1" pin="1" pad="1"/>
  4269. <connect gate="G$1" pin="2" pad="2"/>
  4270. </connects>
  4271. <technologies>
  4272. <technology name=""/>
  4273. </technologies>
  4274. </device>
  4275. <device name="0411/15" package="0411/15">
  4276. <connects>
  4277. <connect gate="G$1" pin="1" pad="1"/>
  4278. <connect gate="G$1" pin="2" pad="2"/>
  4279. </connects>
  4280. <technologies>
  4281. <technology name=""/>
  4282. </technologies>
  4283. </device>
  4284. <device name="0411/3V" package="0411V">
  4285. <connects>
  4286. <connect gate="G$1" pin="1" pad="1"/>
  4287. <connect gate="G$1" pin="2" pad="2"/>
  4288. </connects>
  4289. <technologies>
  4290. <technology name=""/>
  4291. </technologies>
  4292. </device>
  4293. <device name="0414/15" package="0414/15">
  4294. <connects>
  4295. <connect gate="G$1" pin="1" pad="1"/>
  4296. <connect gate="G$1" pin="2" pad="2"/>
  4297. </connects>
  4298. <technologies>
  4299. <technology name=""/>
  4300. </technologies>
  4301. </device>
  4302. <device name="0414/5V" package="0414V">
  4303. <connects>
  4304. <connect gate="G$1" pin="1" pad="1"/>
  4305. <connect gate="G$1" pin="2" pad="2"/>
  4306. </connects>
  4307. <technologies>
  4308. <technology name=""/>
  4309. </technologies>
  4310. </device>
  4311. <device name="0617/17" package="0617/17">
  4312. <connects>
  4313. <connect gate="G$1" pin="1" pad="1"/>
  4314. <connect gate="G$1" pin="2" pad="2"/>
  4315. </connects>
  4316. <technologies>
  4317. <technology name=""/>
  4318. </technologies>
  4319. </device>
  4320. <device name="0617/22" package="0617/22">
  4321. <connects>
  4322. <connect gate="G$1" pin="1" pad="1"/>
  4323. <connect gate="G$1" pin="2" pad="2"/>
  4324. </connects>
  4325. <technologies>
  4326. <technology name=""/>
  4327. </technologies>
  4328. </device>
  4329. <device name="0617/5V" package="0617V">
  4330. <connects>
  4331. <connect gate="G$1" pin="1" pad="1"/>
  4332. <connect gate="G$1" pin="2" pad="2"/>
  4333. </connects>
  4334. <technologies>
  4335. <technology name=""/>
  4336. </technologies>
  4337. </device>
  4338. <device name="0922/22" package="0922/22">
  4339. <connects>
  4340. <connect gate="G$1" pin="1" pad="1"/>
  4341. <connect gate="G$1" pin="2" pad="2"/>
  4342. </connects>
  4343. <technologies>
  4344. <technology name=""/>
  4345. </technologies>
  4346. </device>
  4347. <device name="0613/5V" package="P0613V">
  4348. <connects>
  4349. <connect gate="G$1" pin="1" pad="1"/>
  4350. <connect gate="G$1" pin="2" pad="2"/>
  4351. </connects>
  4352. <technologies>
  4353. <technology name=""/>
  4354. </technologies>
  4355. </device>
  4356. <device name="0613/15" package="P0613/15">
  4357. <connects>
  4358. <connect gate="G$1" pin="1" pad="1"/>
  4359. <connect gate="G$1" pin="2" pad="2"/>
  4360. </connects>
  4361. <technologies>
  4362. <technology name=""/>
  4363. </technologies>
  4364. </device>
  4365. <device name="0817/22" package="P0817/22">
  4366. <connects>
  4367. <connect gate="G$1" pin="1" pad="1"/>
  4368. <connect gate="G$1" pin="2" pad="2"/>
  4369. </connects>
  4370. <technologies>
  4371. <technology name=""/>
  4372. </technologies>
  4373. </device>
  4374. <device name="0817/7V" package="P0817V">
  4375. <connects>
  4376. <connect gate="G$1" pin="1" pad="1"/>
  4377. <connect gate="G$1" pin="2" pad="2"/>
  4378. </connects>
  4379. <technologies>
  4380. <technology name=""/>
  4381. </technologies>
  4382. </device>
  4383. <device name="V234/12" package="V234/12">
  4384. <connects>
  4385. <connect gate="G$1" pin="1" pad="1"/>
  4386. <connect gate="G$1" pin="2" pad="2"/>
  4387. </connects>
  4388. <technologies>
  4389. <technology name=""/>
  4390. </technologies>
  4391. </device>
  4392. <device name="V235/17" package="V235/17">
  4393. <connects>
  4394. <connect gate="G$1" pin="1" pad="1"/>
  4395. <connect gate="G$1" pin="2" pad="2"/>
  4396. </connects>
  4397. <technologies>
  4398. <technology name=""/>
  4399. </technologies>
  4400. </device>
  4401. <device name="V526-0" package="V526-0">
  4402. <connects>
  4403. <connect gate="G$1" pin="1" pad="1"/>
  4404. <connect gate="G$1" pin="2" pad="2"/>
  4405. </connects>
  4406. <technologies>
  4407. <technology name=""/>
  4408. </technologies>
  4409. </device>
  4410. <device name="MELF0102AX" package="MINI_MELF-0102AX">
  4411. <connects>
  4412. <connect gate="G$1" pin="1" pad="1"/>
  4413. <connect gate="G$1" pin="2" pad="2"/>
  4414. </connects>
  4415. <technologies>
  4416. <technology name=""/>
  4417. </technologies>
  4418. </device>
  4419. <device name="0922V" package="0922V">
  4420. <connects>
  4421. <connect gate="G$1" pin="1" pad="1"/>
  4422. <connect gate="G$1" pin="2" pad="2"/>
  4423. </connects>
  4424. <technologies>
  4425. <technology name=""/>
  4426. </technologies>
  4427. </device>
  4428. <device name="MELF0102R" package="MINI_MELF-0102R">
  4429. <connects>
  4430. <connect gate="G$1" pin="1" pad="1"/>
  4431. <connect gate="G$1" pin="2" pad="2"/>
  4432. </connects>
  4433. <technologies>
  4434. <technology name=""/>
  4435. </technologies>
  4436. </device>
  4437. <device name="MELF0102W" package="MINI_MELF-0102W">
  4438. <connects>
  4439. <connect gate="G$1" pin="1" pad="1"/>
  4440. <connect gate="G$1" pin="2" pad="2"/>
  4441. </connects>
  4442. <technologies>
  4443. <technology name=""/>
  4444. </technologies>
  4445. </device>
  4446. <device name="MELF0204R" package="MINI_MELF-0204R">
  4447. <connects>
  4448. <connect gate="G$1" pin="1" pad="1"/>
  4449. <connect gate="G$1" pin="2" pad="2"/>
  4450. </connects>
  4451. <technologies>
  4452. <technology name=""/>
  4453. </technologies>
  4454. </device>
  4455. <device name="MELF0204W" package="MINI_MELF-0204W">
  4456. <connects>
  4457. <connect gate="G$1" pin="1" pad="1"/>
  4458. <connect gate="G$1" pin="2" pad="2"/>
  4459. </connects>
  4460. <technologies>
  4461. <technology name=""/>
  4462. </technologies>
  4463. </device>
  4464. <device name="MELF0207R" package="MINI_MELF-0207R">
  4465. <connects>
  4466. <connect gate="G$1" pin="1" pad="1"/>
  4467. <connect gate="G$1" pin="2" pad="2"/>
  4468. </connects>
  4469. <technologies>
  4470. <technology name=""/>
  4471. </technologies>
  4472. </device>
  4473. <device name="MELF0207W" package="MINI_MELF-0207W">
  4474. <connects>
  4475. <connect gate="G$1" pin="1" pad="1"/>
  4476. <connect gate="G$1" pin="2" pad="2"/>
  4477. </connects>
  4478. <technologies>
  4479. <technology name=""/>
  4480. </technologies>
  4481. </device>
  4482. <device name="RDH/15" package="RDH/15">
  4483. <connects>
  4484. <connect gate="G$1" pin="1" pad="1"/>
  4485. <connect gate="G$1" pin="2" pad="2"/>
  4486. </connects>
  4487. <technologies>
  4488. <technology name=""/>
  4489. </technologies>
  4490. </device>
  4491. <device name="0204/2V" package="0204V">
  4492. <connects>
  4493. <connect gate="G$1" pin="1" pad="1"/>
  4494. <connect gate="G$1" pin="2" pad="2"/>
  4495. </connects>
  4496. <technologies>
  4497. <technology name=""/>
  4498. </technologies>
  4499. </device>
  4500. <device name="0309/V" package="0309V">
  4501. <connects>
  4502. <connect gate="G$1" pin="1" pad="1"/>
  4503. <connect gate="G$1" pin="2" pad="2"/>
  4504. </connects>
  4505. <technologies>
  4506. <technology name=""/>
  4507. </technologies>
  4508. </device>
  4509. <device name="R0201" package="R0201">
  4510. <connects>
  4511. <connect gate="G$1" pin="1" pad="1"/>
  4512. <connect gate="G$1" pin="2" pad="2"/>
  4513. </connects>
  4514. <technologies>
  4515. <technology name=""/>
  4516. </technologies>
  4517. </device>
  4518. <device name="VMTA55" package="VMTA55">
  4519. <connects>
  4520. <connect gate="G$1" pin="1" pad="1"/>
  4521. <connect gate="G$1" pin="2" pad="2"/>
  4522. </connects>
  4523. <technologies>
  4524. <technology name=""/>
  4525. </technologies>
  4526. </device>
  4527. <device name="VMTB60" package="VMTB60">
  4528. <connects>
  4529. <connect gate="G$1" pin="1" pad="1"/>
  4530. <connect gate="G$1" pin="2" pad="2"/>
  4531. </connects>
  4532. <technologies>
  4533. <technology name=""/>
  4534. </technologies>
  4535. </device>
  4536. <device name="VTA52" package="VTA52">
  4537. <connects>
  4538. <connect gate="G$1" pin="1" pad="1"/>
  4539. <connect gate="G$1" pin="2" pad="2"/>
  4540. </connects>
  4541. <technologies>
  4542. <technology name=""/>
  4543. </technologies>
  4544. </device>
  4545. <device name="VTA53" package="VTA53">
  4546. <connects>
  4547. <connect gate="G$1" pin="1" pad="1"/>
  4548. <connect gate="G$1" pin="2" pad="2"/>
  4549. </connects>
  4550. <technologies>
  4551. <technology name=""/>
  4552. </technologies>
  4553. </device>
  4554. <device name="VTA54" package="VTA54">
  4555. <connects>
  4556. <connect gate="G$1" pin="1" pad="1"/>
  4557. <connect gate="G$1" pin="2" pad="2"/>
  4558. </connects>
  4559. <technologies>
  4560. <technology name=""/>
  4561. </technologies>
  4562. </device>
  4563. <device name="VTA55" package="VTA55">
  4564. <connects>
  4565. <connect gate="G$1" pin="1" pad="1"/>
  4566. <connect gate="G$1" pin="2" pad="2"/>
  4567. </connects>
  4568. <technologies>
  4569. <technology name=""/>
  4570. </technologies>
  4571. </device>
  4572. <device name="VTA56" package="VTA56">
  4573. <connects>
  4574. <connect gate="G$1" pin="1" pad="1"/>
  4575. <connect gate="G$1" pin="2" pad="2"/>
  4576. </connects>
  4577. <technologies>
  4578. <technology name=""/>
  4579. </technologies>
  4580. </device>
  4581. <device name="R4527" package="R4527">
  4582. <connects>
  4583. <connect gate="G$1" pin="1" pad="1"/>
  4584. <connect gate="G$1" pin="2" pad="2"/>
  4585. </connects>
  4586. <technologies>
  4587. <technology name=""/>
  4588. </technologies>
  4589. </device>
  4590. <device name="WSC0001" package="WSC0001">
  4591. <connects>
  4592. <connect gate="G$1" pin="1" pad="1"/>
  4593. <connect gate="G$1" pin="2" pad="2"/>
  4594. </connects>
  4595. <technologies>
  4596. <technology name=""/>
  4597. </technologies>
  4598. </device>
  4599. <device name="WSC0002" package="WSC0002">
  4600. <connects>
  4601. <connect gate="G$1" pin="1" pad="1"/>
  4602. <connect gate="G$1" pin="2" pad="2"/>
  4603. </connects>
  4604. <technologies>
  4605. <technology name=""/>
  4606. </technologies>
  4607. </device>
  4608. <device name="WSC01/2" package="WSC01/2">
  4609. <connects>
  4610. <connect gate="G$1" pin="1" pad="1"/>
  4611. <connect gate="G$1" pin="2" pad="2"/>
  4612. </connects>
  4613. <technologies>
  4614. <technology name=""/>
  4615. </technologies>
  4616. </device>
  4617. <device name="WSC2515" package="WSC2515">
  4618. <connects>
  4619. <connect gate="G$1" pin="1" pad="1"/>
  4620. <connect gate="G$1" pin="2" pad="2"/>
  4621. </connects>
  4622. <technologies>
  4623. <technology name=""/>
  4624. </technologies>
  4625. </device>
  4626. <device name="WSC4527" package="WSC4527">
  4627. <connects>
  4628. <connect gate="G$1" pin="1" pad="1"/>
  4629. <connect gate="G$1" pin="2" pad="2"/>
  4630. </connects>
  4631. <technologies>
  4632. <technology name=""/>
  4633. </technologies>
  4634. </device>
  4635. <device name="WSC6927" package="WSC6927">
  4636. <connects>
  4637. <connect gate="G$1" pin="1" pad="1"/>
  4638. <connect gate="G$1" pin="2" pad="2"/>
  4639. </connects>
  4640. <technologies>
  4641. <technology name=""/>
  4642. </technologies>
  4643. </device>
  4644. <device name="R1218" package="R1218">
  4645. <connects>
  4646. <connect gate="G$1" pin="1" pad="1"/>
  4647. <connect gate="G$1" pin="2" pad="2"/>
  4648. </connects>
  4649. <technologies>
  4650. <technology name=""/>
  4651. </technologies>
  4652. </device>
  4653. <device name="1812X7R" package="1812X7R">
  4654. <connects>
  4655. <connect gate="G$1" pin="1" pad="1"/>
  4656. <connect gate="G$1" pin="2" pad="2"/>
  4657. </connects>
  4658. <technologies>
  4659. <technology name=""/>
  4660. </technologies>
  4661. </device>
  4662. <device name="01005" package="R01005">
  4663. <connects>
  4664. <connect gate="G$1" pin="1" pad="1"/>
  4665. <connect gate="G$1" pin="2" pad="2"/>
  4666. </connects>
  4667. <technologies>
  4668. <technology name=""/>
  4669. </technologies>
  4670. </device>
  4671. </devices>
  4672. </deviceset>
  4673. <deviceset name="R-EU_" prefix="R" uservalue="yes">
  4674. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  4675. <gates>
  4676. <gate name="G$1" symbol="R-EU-1" x="0" y="0"/>
  4677. </gates>
  4678. <devices>
  4679. <device name="R0402" package="R0402">
  4680. <connects>
  4681. <connect gate="G$1" pin="1" pad="1"/>
  4682. <connect gate="G$1" pin="2" pad="2"/>
  4683. </connects>
  4684. <technologies>
  4685. <technology name=""/>
  4686. </technologies>
  4687. </device>
  4688. <device name="R0603" package="R0603">
  4689. <connects>
  4690. <connect gate="G$1" pin="1" pad="1"/>
  4691. <connect gate="G$1" pin="2" pad="2"/>
  4692. </connects>
  4693. <technologies>
  4694. <technology name=""/>
  4695. </technologies>
  4696. </device>
  4697. <device name="R0805" package="R0805">
  4698. <connects>
  4699. <connect gate="G$1" pin="1" pad="1"/>
  4700. <connect gate="G$1" pin="2" pad="2"/>
  4701. </connects>
  4702. <technologies>
  4703. <technology name=""/>
  4704. </technologies>
  4705. </device>
  4706. <device name="R0805W" package="R0805W">
  4707. <connects>
  4708. <connect gate="G$1" pin="1" pad="1"/>
  4709. <connect gate="G$1" pin="2" pad="2"/>
  4710. </connects>
  4711. <technologies>
  4712. <technology name=""/>
  4713. </technologies>
  4714. </device>
  4715. <device name="R1206" package="R1206">
  4716. <connects>
  4717. <connect gate="G$1" pin="1" pad="1"/>
  4718. <connect gate="G$1" pin="2" pad="2"/>
  4719. </connects>
  4720. <technologies>
  4721. <technology name=""/>
  4722. </technologies>
  4723. </device>
  4724. <device name="R1206W" package="R1206W">
  4725. <connects>
  4726. <connect gate="G$1" pin="1" pad="1"/>
  4727. <connect gate="G$1" pin="2" pad="2"/>
  4728. </connects>
  4729. <technologies>
  4730. <technology name=""/>
  4731. </technologies>
  4732. </device>
  4733. <device name="R1210" package="R1210">
  4734. <connects>
  4735. <connect gate="G$1" pin="1" pad="1"/>
  4736. <connect gate="G$1" pin="2" pad="2"/>
  4737. </connects>
  4738. <technologies>
  4739. <technology name=""/>
  4740. </technologies>
  4741. </device>
  4742. <device name="R1210W" package="R1210W">
  4743. <connects>
  4744. <connect gate="G$1" pin="1" pad="1"/>
  4745. <connect gate="G$1" pin="2" pad="2"/>
  4746. </connects>
  4747. <technologies>
  4748. <technology name=""/>
  4749. </technologies>
  4750. </device>
  4751. <device name="R2010" package="R2010">
  4752. <connects>
  4753. <connect gate="G$1" pin="1" pad="1"/>
  4754. <connect gate="G$1" pin="2" pad="2"/>
  4755. </connects>
  4756. <technologies>
  4757. <technology name=""/>
  4758. </technologies>
  4759. </device>
  4760. <device name="R2010W" package="R2010W">
  4761. <connects>
  4762. <connect gate="G$1" pin="1" pad="1"/>
  4763. <connect gate="G$1" pin="2" pad="2"/>
  4764. </connects>
  4765. <technologies>
  4766. <technology name=""/>
  4767. </technologies>
  4768. </device>
  4769. <device name="R2012" package="R2012">
  4770. <connects>
  4771. <connect gate="G$1" pin="1" pad="1"/>
  4772. <connect gate="G$1" pin="2" pad="2"/>
  4773. </connects>
  4774. <technologies>
  4775. <technology name=""/>
  4776. </technologies>
  4777. </device>
  4778. <device name="R2012W" package="R2012W">
  4779. <connects>
  4780. <connect gate="G$1" pin="1" pad="1"/>
  4781. <connect gate="G$1" pin="2" pad="2"/>
  4782. </connects>
  4783. <technologies>
  4784. <technology name=""/>
  4785. </technologies>
  4786. </device>
  4787. <device name="R2512" package="R2512">
  4788. <connects>
  4789. <connect gate="G$1" pin="1" pad="1"/>
  4790. <connect gate="G$1" pin="2" pad="2"/>
  4791. </connects>
  4792. <technologies>
  4793. <technology name=""/>
  4794. </technologies>
  4795. </device>
  4796. <device name="R2512W" package="R2512W">
  4797. <connects>
  4798. <connect gate="G$1" pin="1" pad="1"/>
  4799. <connect gate="G$1" pin="2" pad="2"/>
  4800. </connects>
  4801. <technologies>
  4802. <technology name=""/>
  4803. </technologies>
  4804. </device>
  4805. <device name="R3216" package="R3216">
  4806. <connects>
  4807. <connect gate="G$1" pin="1" pad="1"/>
  4808. <connect gate="G$1" pin="2" pad="2"/>
  4809. </connects>
  4810. <technologies>
  4811. <technology name=""/>
  4812. </technologies>
  4813. </device>
  4814. <device name="R3216W" package="R3216W">
  4815. <connects>
  4816. <connect gate="G$1" pin="1" pad="1"/>
  4817. <connect gate="G$1" pin="2" pad="2"/>
  4818. </connects>
  4819. <technologies>
  4820. <technology name=""/>
  4821. </technologies>
  4822. </device>
  4823. <device name="R3225" package="R3225">
  4824. <connects>
  4825. <connect gate="G$1" pin="1" pad="1"/>
  4826. <connect gate="G$1" pin="2" pad="2"/>
  4827. </connects>
  4828. <technologies>
  4829. <technology name=""/>
  4830. </technologies>
  4831. </device>
  4832. <device name="R3225W" package="R3225W">
  4833. <connects>
  4834. <connect gate="G$1" pin="1" pad="1"/>
  4835. <connect gate="G$1" pin="2" pad="2"/>
  4836. </connects>
  4837. <technologies>
  4838. <technology name=""/>
  4839. </technologies>
  4840. </device>
  4841. <device name="R5025" package="R5025">
  4842. <connects>
  4843. <connect gate="G$1" pin="1" pad="1"/>
  4844. <connect gate="G$1" pin="2" pad="2"/>
  4845. </connects>
  4846. <technologies>
  4847. <technology name=""/>
  4848. </technologies>
  4849. </device>
  4850. <device name="R5025W" package="R5025W">
  4851. <connects>
  4852. <connect gate="G$1" pin="1" pad="1"/>
  4853. <connect gate="G$1" pin="2" pad="2"/>
  4854. </connects>
  4855. <technologies>
  4856. <technology name=""/>
  4857. </technologies>
  4858. </device>
  4859. <device name="R6332" package="R6332">
  4860. <connects>
  4861. <connect gate="G$1" pin="1" pad="1"/>
  4862. <connect gate="G$1" pin="2" pad="2"/>
  4863. </connects>
  4864. <technologies>
  4865. <technology name=""/>
  4866. </technologies>
  4867. </device>
  4868. <device name="R6332W" package="R6332W">
  4869. <connects>
  4870. <connect gate="G$1" pin="1" pad="1"/>
  4871. <connect gate="G$1" pin="2" pad="2"/>
  4872. </connects>
  4873. <technologies>
  4874. <technology name=""/>
  4875. </technologies>
  4876. </device>
  4877. <device name="M0805" package="M0805">
  4878. <connects>
  4879. <connect gate="G$1" pin="1" pad="1"/>
  4880. <connect gate="G$1" pin="2" pad="2"/>
  4881. </connects>
  4882. <technologies>
  4883. <technology name=""/>
  4884. </technologies>
  4885. </device>
  4886. <device name="M1206" package="M1206">
  4887. <connects>
  4888. <connect gate="G$1" pin="1" pad="1"/>
  4889. <connect gate="G$1" pin="2" pad="2"/>
  4890. </connects>
  4891. <technologies>
  4892. <technology name=""/>
  4893. </technologies>
  4894. </device>
  4895. <device name="M1406" package="M1406">
  4896. <connects>
  4897. <connect gate="G$1" pin="1" pad="1"/>
  4898. <connect gate="G$1" pin="2" pad="2"/>
  4899. </connects>
  4900. <technologies>
  4901. <technology name=""/>
  4902. </technologies>
  4903. </device>
  4904. <device name="M2012" package="M2012">
  4905. <connects>
  4906. <connect gate="G$1" pin="1" pad="1"/>
  4907. <connect gate="G$1" pin="2" pad="2"/>
  4908. </connects>
  4909. <technologies>
  4910. <technology name=""/>
  4911. </technologies>
  4912. </device>
  4913. <device name="M2309" package="M2309">
  4914. <connects>
  4915. <connect gate="G$1" pin="1" pad="1"/>
  4916. <connect gate="G$1" pin="2" pad="2"/>
  4917. </connects>
  4918. <technologies>
  4919. <technology name=""/>
  4920. </technologies>
  4921. </device>
  4922. <device name="M3216" package="M3216">
  4923. <connects>
  4924. <connect gate="G$1" pin="1" pad="1"/>
  4925. <connect gate="G$1" pin="2" pad="2"/>
  4926. </connects>
  4927. <technologies>
  4928. <technology name=""/>
  4929. </technologies>
  4930. </device>
  4931. <device name="M3516" package="M3516">
  4932. <connects>
  4933. <connect gate="G$1" pin="1" pad="1"/>
  4934. <connect gate="G$1" pin="2" pad="2"/>
  4935. </connects>
  4936. <technologies>
  4937. <technology name=""/>
  4938. </technologies>
  4939. </device>
  4940. <device name="M5923" package="M5923">
  4941. <connects>
  4942. <connect gate="G$1" pin="1" pad="1"/>
  4943. <connect gate="G$1" pin="2" pad="2"/>
  4944. </connects>
  4945. <technologies>
  4946. <technology name=""/>
  4947. </technologies>
  4948. </device>
  4949. <device name="0204/5" package="0204/5">
  4950. <connects>
  4951. <connect gate="G$1" pin="1" pad="1"/>
  4952. <connect gate="G$1" pin="2" pad="2"/>
  4953. </connects>
  4954. <technologies>
  4955. <technology name=""/>
  4956. </technologies>
  4957. </device>
  4958. <device name="0204/7" package="0204/7">
  4959. <connects>
  4960. <connect gate="G$1" pin="1" pad="1"/>
  4961. <connect gate="G$1" pin="2" pad="2"/>
  4962. </connects>
  4963. <technologies>
  4964. <technology name=""/>
  4965. </technologies>
  4966. </device>
  4967. <device name="0204/2V" package="0204V">
  4968. <connects>
  4969. <connect gate="G$1" pin="1" pad="1"/>
  4970. <connect gate="G$1" pin="2" pad="2"/>
  4971. </connects>
  4972. <technologies>
  4973. <technology name=""/>
  4974. </technologies>
  4975. </device>
  4976. <device name="0207/10" package="0207/10">
  4977. <connects>
  4978. <connect gate="G$1" pin="1" pad="1"/>
  4979. <connect gate="G$1" pin="2" pad="2"/>
  4980. </connects>
  4981. <technologies>
  4982. <technology name=""/>
  4983. </technologies>
  4984. </device>
  4985. <device name="0207/12" package="0207/12">
  4986. <connects>
  4987. <connect gate="G$1" pin="1" pad="1"/>
  4988. <connect gate="G$1" pin="2" pad="2"/>
  4989. </connects>
  4990. <technologies>
  4991. <technology name=""/>
  4992. </technologies>
  4993. </device>
  4994. <device name="0207/15" package="0207/15">
  4995. <connects>
  4996. <connect gate="G$1" pin="1" pad="1"/>
  4997. <connect gate="G$1" pin="2" pad="2"/>
  4998. </connects>
  4999. <technologies>
  5000. <technology name=""/>
  5001. </technologies>
  5002. </device>
  5003. <device name="0207/2V" package="0207/2V">
  5004. <connects>
  5005. <connect gate="G$1" pin="1" pad="1"/>
  5006. <connect gate="G$1" pin="2" pad="2"/>
  5007. </connects>
  5008. <technologies>
  5009. <technology name=""/>
  5010. </technologies>
  5011. </device>
  5012. <device name="0207/5V" package="0207/5V">
  5013. <connects>
  5014. <connect gate="G$1" pin="1" pad="1"/>
  5015. <connect gate="G$1" pin="2" pad="2"/>
  5016. </connects>
  5017. <technologies>
  5018. <technology name=""/>
  5019. </technologies>
  5020. </device>
  5021. <device name="0207/7" package="0207/7">
  5022. <connects>
  5023. <connect gate="G$1" pin="1" pad="1"/>
  5024. <connect gate="G$1" pin="2" pad="2"/>
  5025. </connects>
  5026. <technologies>
  5027. <technology name=""/>
  5028. </technologies>
  5029. </device>
  5030. <device name="0309/10" package="0309/10">
  5031. <connects>
  5032. <connect gate="G$1" pin="1" pad="1"/>
  5033. <connect gate="G$1" pin="2" pad="2"/>
  5034. </connects>
  5035. <technologies>
  5036. <technology name=""/>
  5037. </technologies>
  5038. </device>
  5039. <device name="0309/12" package="0309/12">
  5040. <connects>
  5041. <connect gate="G$1" pin="1" pad="1"/>
  5042. <connect gate="G$1" pin="2" pad="2"/>
  5043. </connects>
  5044. <technologies>
  5045. <technology name=""/>
  5046. </technologies>
  5047. </device>
  5048. <device name="0309/V" package="0309V">
  5049. <connects>
  5050. <connect gate="G$1" pin="1" pad="1"/>
  5051. <connect gate="G$1" pin="2" pad="2"/>
  5052. </connects>
  5053. <technologies>
  5054. <technology name=""/>
  5055. </technologies>
  5056. </device>
  5057. <device name="0411/12" package="0411/12">
  5058. <connects>
  5059. <connect gate="G$1" pin="1" pad="1"/>
  5060. <connect gate="G$1" pin="2" pad="2"/>
  5061. </connects>
  5062. <technologies>
  5063. <technology name=""/>
  5064. </technologies>
  5065. </device>
  5066. <device name="0411/15" package="0411/15">
  5067. <connects>
  5068. <connect gate="G$1" pin="1" pad="1"/>
  5069. <connect gate="G$1" pin="2" pad="2"/>
  5070. </connects>
  5071. <technologies>
  5072. <technology name=""/>
  5073. </technologies>
  5074. </device>
  5075. <device name="0411/3V" package="0411V">
  5076. <connects>
  5077. <connect gate="G$1" pin="1" pad="1"/>
  5078. <connect gate="G$1" pin="2" pad="2"/>
  5079. </connects>
  5080. <technologies>
  5081. <technology name=""/>
  5082. </technologies>
  5083. </device>
  5084. <device name="0414/15" package="0414/15">
  5085. <connects>
  5086. <connect gate="G$1" pin="1" pad="1"/>
  5087. <connect gate="G$1" pin="2" pad="2"/>
  5088. </connects>
  5089. <technologies>
  5090. <technology name=""/>
  5091. </technologies>
  5092. </device>
  5093. <device name="0414/5V" package="0414V">
  5094. <connects>
  5095. <connect gate="G$1" pin="1" pad="1"/>
  5096. <connect gate="G$1" pin="2" pad="2"/>
  5097. </connects>
  5098. <technologies>
  5099. <technology name=""/>
  5100. </technologies>
  5101. </device>
  5102. <device name="0617/17" package="0617/17">
  5103. <connects>
  5104. <connect gate="G$1" pin="1" pad="1"/>
  5105. <connect gate="G$1" pin="2" pad="2"/>
  5106. </connects>
  5107. <technologies>
  5108. <technology name=""/>
  5109. </technologies>
  5110. </device>
  5111. <device name="0617/22" package="0617/22">
  5112. <connects>
  5113. <connect gate="G$1" pin="1" pad="1"/>
  5114. <connect gate="G$1" pin="2" pad="2"/>
  5115. </connects>
  5116. <technologies>
  5117. <technology name=""/>
  5118. </technologies>
  5119. </device>
  5120. <device name="0617/5V" package="0617V">
  5121. <connects>
  5122. <connect gate="G$1" pin="1" pad="1"/>
  5123. <connect gate="G$1" pin="2" pad="2"/>
  5124. </connects>
  5125. <technologies>
  5126. <technology name=""/>
  5127. </technologies>
  5128. </device>
  5129. <device name="0922/22" package="0922/22">
  5130. <connects>
  5131. <connect gate="G$1" pin="1" pad="1"/>
  5132. <connect gate="G$1" pin="2" pad="2"/>
  5133. </connects>
  5134. <technologies>
  5135. <technology name=""/>
  5136. </technologies>
  5137. </device>
  5138. <device name="0613/5V" package="P0613V">
  5139. <connects>
  5140. <connect gate="G$1" pin="1" pad="1"/>
  5141. <connect gate="G$1" pin="2" pad="2"/>
  5142. </connects>
  5143. <technologies>
  5144. <technology name=""/>
  5145. </technologies>
  5146. </device>
  5147. <device name="0613/15" package="P0613/15">
  5148. <connects>
  5149. <connect gate="G$1" pin="1" pad="1"/>
  5150. <connect gate="G$1" pin="2" pad="2"/>
  5151. </connects>
  5152. <technologies>
  5153. <technology name=""/>
  5154. </technologies>
  5155. </device>
  5156. <device name="0817/22" package="P0817/22">
  5157. <connects>
  5158. <connect gate="G$1" pin="1" pad="1"/>
  5159. <connect gate="G$1" pin="2" pad="2"/>
  5160. </connects>
  5161. <technologies>
  5162. <technology name=""/>
  5163. </technologies>
  5164. </device>
  5165. <device name="0817/7V" package="P0817V">
  5166. <connects>
  5167. <connect gate="G$1" pin="1" pad="1"/>
  5168. <connect gate="G$1" pin="2" pad="2"/>
  5169. </connects>
  5170. <technologies>
  5171. <technology name=""/>
  5172. </technologies>
  5173. </device>
  5174. <device name="V234/12" package="V234/12">
  5175. <connects>
  5176. <connect gate="G$1" pin="1" pad="1"/>
  5177. <connect gate="G$1" pin="2" pad="2"/>
  5178. </connects>
  5179. <technologies>
  5180. <technology name=""/>
  5181. </technologies>
  5182. </device>
  5183. <device name="V235/17" package="V235/17">
  5184. <connects>
  5185. <connect gate="G$1" pin="1" pad="1"/>
  5186. <connect gate="G$1" pin="2" pad="2"/>
  5187. </connects>
  5188. <technologies>
  5189. <technology name=""/>
  5190. </technologies>
  5191. </device>
  5192. <device name="V526-0" package="V526-0">
  5193. <connects>
  5194. <connect gate="G$1" pin="1" pad="1"/>
  5195. <connect gate="G$1" pin="2" pad="2"/>
  5196. </connects>
  5197. <technologies>
  5198. <technology name=""/>
  5199. </technologies>
  5200. </device>
  5201. <device name="MELF0102R" package="MINI_MELF-0102R">
  5202. <connects>
  5203. <connect gate="G$1" pin="1" pad="1"/>
  5204. <connect gate="G$1" pin="2" pad="2"/>
  5205. </connects>
  5206. <technologies>
  5207. <technology name=""/>
  5208. </technologies>
  5209. </device>
  5210. <device name="MELF0102W" package="MINI_MELF-0102W">
  5211. <connects>
  5212. <connect gate="G$1" pin="1" pad="1"/>
  5213. <connect gate="G$1" pin="2" pad="2"/>
  5214. </connects>
  5215. <technologies>
  5216. <technology name=""/>
  5217. </technologies>
  5218. </device>
  5219. <device name="MELF0204R" package="MINI_MELF-0204R">
  5220. <connects>
  5221. <connect gate="G$1" pin="1" pad="1"/>
  5222. <connect gate="G$1" pin="2" pad="2"/>
  5223. </connects>
  5224. <technologies>
  5225. <technology name=""/>
  5226. </technologies>
  5227. </device>
  5228. <device name="MELF0204W" package="MINI_MELF-0204W">
  5229. <connects>
  5230. <connect gate="G$1" pin="1" pad="1"/>
  5231. <connect gate="G$1" pin="2" pad="2"/>
  5232. </connects>
  5233. <technologies>
  5234. <technology name=""/>
  5235. </technologies>
  5236. </device>
  5237. <device name="MELF0207R" package="MINI_MELF-0207R">
  5238. <connects>
  5239. <connect gate="G$1" pin="1" pad="1"/>
  5240. <connect gate="G$1" pin="2" pad="2"/>
  5241. </connects>
  5242. <technologies>
  5243. <technology name=""/>
  5244. </technologies>
  5245. </device>
  5246. <device name="MELF0207W" package="MINI_MELF-0207W">
  5247. <connects>
  5248. <connect gate="G$1" pin="1" pad="1"/>
  5249. <connect gate="G$1" pin="2" pad="2"/>
  5250. </connects>
  5251. <technologies>
  5252. <technology name=""/>
  5253. </technologies>
  5254. </device>
  5255. <device name="0922V" package="0922V">
  5256. <connects>
  5257. <connect gate="G$1" pin="1" pad="1"/>
  5258. <connect gate="G$1" pin="2" pad="2"/>
  5259. </connects>
  5260. <technologies>
  5261. <technology name=""/>
  5262. </technologies>
  5263. </device>
  5264. <device name="RDH/15" package="RDH/15">
  5265. <connects>
  5266. <connect gate="G$1" pin="1" pad="1"/>
  5267. <connect gate="G$1" pin="2" pad="2"/>
  5268. </connects>
  5269. <technologies>
  5270. <technology name=""/>
  5271. </technologies>
  5272. </device>
  5273. <device name="MELF0102AX" package="MINI_MELF-0102AX">
  5274. <connects>
  5275. <connect gate="G$1" pin="1" pad="1"/>
  5276. <connect gate="G$1" pin="2" pad="2"/>
  5277. </connects>
  5278. <technologies>
  5279. <technology name=""/>
  5280. </technologies>
  5281. </device>
  5282. <device name="R0201" package="R0201">
  5283. <connects>
  5284. <connect gate="G$1" pin="1" pad="1"/>
  5285. <connect gate="G$1" pin="2" pad="2"/>
  5286. </connects>
  5287. <technologies>
  5288. <technology name=""/>
  5289. </technologies>
  5290. </device>
  5291. <device name="VTA52" package="VTA52">
  5292. <connects>
  5293. <connect gate="G$1" pin="1" pad="1"/>
  5294. <connect gate="G$1" pin="2" pad="2"/>
  5295. </connects>
  5296. <technologies>
  5297. <technology name=""/>
  5298. </technologies>
  5299. </device>
  5300. <device name="VTA53" package="VTA53">
  5301. <connects>
  5302. <connect gate="G$1" pin="1" pad="1"/>
  5303. <connect gate="G$1" pin="2" pad="2"/>
  5304. </connects>
  5305. <technologies>
  5306. <technology name=""/>
  5307. </technologies>
  5308. </device>
  5309. <device name="VTA54" package="VTA54">
  5310. <connects>
  5311. <connect gate="G$1" pin="1" pad="1"/>
  5312. <connect gate="G$1" pin="2" pad="2"/>
  5313. </connects>
  5314. <technologies>
  5315. <technology name=""/>
  5316. </technologies>
  5317. </device>
  5318. <device name="VTA55" package="VTA55">
  5319. <connects>
  5320. <connect gate="G$1" pin="1" pad="1"/>
  5321. <connect gate="G$1" pin="2" pad="2"/>
  5322. </connects>
  5323. <technologies>
  5324. <technology name=""/>
  5325. </technologies>
  5326. </device>
  5327. <device name="VTA56" package="VTA56">
  5328. <connects>
  5329. <connect gate="G$1" pin="1" pad="1"/>
  5330. <connect gate="G$1" pin="2" pad="2"/>
  5331. </connects>
  5332. <technologies>
  5333. <technology name=""/>
  5334. </technologies>
  5335. </device>
  5336. <device name="VMTA55" package="VMTA55">
  5337. <connects>
  5338. <connect gate="G$1" pin="1" pad="1"/>
  5339. <connect gate="G$1" pin="2" pad="2"/>
  5340. </connects>
  5341. <technologies>
  5342. <technology name=""/>
  5343. </technologies>
  5344. </device>
  5345. <device name="VMTB60" package="VMTB60">
  5346. <connects>
  5347. <connect gate="G$1" pin="1" pad="1"/>
  5348. <connect gate="G$1" pin="2" pad="2"/>
  5349. </connects>
  5350. <technologies>
  5351. <technology name=""/>
  5352. </technologies>
  5353. </device>
  5354. <device name="R4527" package="R4527">
  5355. <connects>
  5356. <connect gate="G$1" pin="1" pad="1"/>
  5357. <connect gate="G$1" pin="2" pad="2"/>
  5358. </connects>
  5359. <technologies>
  5360. <technology name=""/>
  5361. </technologies>
  5362. </device>
  5363. <device name="WSC0001" package="WSC0001">
  5364. <connects>
  5365. <connect gate="G$1" pin="1" pad="1"/>
  5366. <connect gate="G$1" pin="2" pad="2"/>
  5367. </connects>
  5368. <technologies>
  5369. <technology name=""/>
  5370. </technologies>
  5371. </device>
  5372. <device name="WSC0002" package="WSC0002">
  5373. <connects>
  5374. <connect gate="G$1" pin="1" pad="1"/>
  5375. <connect gate="G$1" pin="2" pad="2"/>
  5376. </connects>
  5377. <technologies>
  5378. <technology name=""/>
  5379. </technologies>
  5380. </device>
  5381. <device name="WSC01/2" package="WSC01/2">
  5382. <connects>
  5383. <connect gate="G$1" pin="1" pad="1"/>
  5384. <connect gate="G$1" pin="2" pad="2"/>
  5385. </connects>
  5386. <technologies>
  5387. <technology name=""/>
  5388. </technologies>
  5389. </device>
  5390. <device name="WSC2515" package="WSC2515">
  5391. <connects>
  5392. <connect gate="G$1" pin="1" pad="1"/>
  5393. <connect gate="G$1" pin="2" pad="2"/>
  5394. </connects>
  5395. <technologies>
  5396. <technology name=""/>
  5397. </technologies>
  5398. </device>
  5399. <device name="WSC4527" package="WSC4527">
  5400. <connects>
  5401. <connect gate="G$1" pin="1" pad="1"/>
  5402. <connect gate="G$1" pin="2" pad="2"/>
  5403. </connects>
  5404. <technologies>
  5405. <technology name=""/>
  5406. </technologies>
  5407. </device>
  5408. <device name="WSC6927" package="WSC6927">
  5409. <connects>
  5410. <connect gate="G$1" pin="1" pad="1"/>
  5411. <connect gate="G$1" pin="2" pad="2"/>
  5412. </connects>
  5413. <technologies>
  5414. <technology name=""/>
  5415. </technologies>
  5416. </device>
  5417. <device name="R1218" package="R1218">
  5418. <connects>
  5419. <connect gate="G$1" pin="1" pad="1"/>
  5420. <connect gate="G$1" pin="2" pad="2"/>
  5421. </connects>
  5422. <technologies>
  5423. <technology name=""/>
  5424. </technologies>
  5425. </device>
  5426. <device name="1812X7R" package="1812X7R">
  5427. <connects>
  5428. <connect gate="G$1" pin="1" pad="1"/>
  5429. <connect gate="G$1" pin="2" pad="2"/>
  5430. </connects>
  5431. <technologies>
  5432. <technology name=""/>
  5433. </technologies>
  5434. </device>
  5435. <device name="PRL1632" package="PRL1632">
  5436. <connects>
  5437. <connect gate="G$1" pin="1" pad="1"/>
  5438. <connect gate="G$1" pin="2" pad="2"/>
  5439. </connects>
  5440. <technologies>
  5441. <technology name=""/>
  5442. </technologies>
  5443. </device>
  5444. <device name="01005" package="R01005">
  5445. <connects>
  5446. <connect gate="G$1" pin="1" pad="1"/>
  5447. <connect gate="G$1" pin="2" pad="2"/>
  5448. </connects>
  5449. <technologies>
  5450. <technology name=""/>
  5451. </technologies>
  5452. </device>
  5453. </devices>
  5454. </deviceset>
  5455. </devicesets>
  5456. </library>
  5457. <library name="mc33269dt">
  5458. <packages>
  5459. <package name="MC33269DT">
  5460. <wire x1="-3.21" y1="-3.11" x2="3.39" y2="-3.11" width="0.127" layer="20"/>
  5461. <wire x1="3.39" y1="-3.11" x2="3.39" y2="3.09" width="0.127" layer="20"/>
  5462. <wire x1="3.39" y1="3.09" x2="2.39" y2="3.09" width="0.127" layer="20"/>
  5463. <wire x1="2.39" y1="3.09" x2="-2.21" y2="3.09" width="0.127" layer="20"/>
  5464. <wire x1="-2.21" y1="3.09" x2="-3.21" y2="3.09" width="0.127" layer="20"/>
  5465. <wire x1="-3.21" y1="3.09" x2="-3.21" y2="-3.11" width="0.127" layer="20"/>
  5466. <wire x1="-2.21" y1="3.09" x2="-2.21" y2="3.69" width="0.127" layer="20"/>
  5467. <wire x1="-2.21" y1="3.69" x2="-1.81" y2="4.09" width="0.127" layer="20"/>
  5468. <wire x1="-1.81" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  5469. <wire x1="-1.41" y1="4.09" x2="-1.37" y2="4.09" width="0.127" layer="20"/>
  5470. <wire x1="2.39" y1="3.09" x2="2.39" y2="3.69" width="0.127" layer="20"/>
  5471. <wire x1="2.39" y1="3.69" x2="1.99" y2="4.09" width="0.127" layer="20"/>
  5472. <wire x1="1.99" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  5473. <smd name="P1" x="-2.2" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  5474. <smd name="P3" x="2.38" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  5475. <smd name="P2" x="0.09" y="-3.59" dx="0.8" dy="1" layer="1" rot="R90"/>
  5476. <text x="-2.19" y="1.86" size="0.6096" layer="25">MC33269DT</text>
  5477. </package>
  5478. </packages>
  5479. <symbols>
  5480. <symbol name="MC33269DT">
  5481. <wire x1="-7.62" y1="7.62" x2="-7.62" y2="-2.54" width="0.254" layer="94"/>
  5482. <wire x1="-7.62" y1="-2.54" x2="7.62" y2="-2.54" width="0.254" layer="94"/>
  5483. <wire x1="7.62" y1="-2.54" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  5484. <wire x1="7.62" y1="7.62" x2="-7.62" y2="7.62" width="0.254" layer="94"/>
  5485. <text x="-5.08" y="10.16" size="1.27" layer="95">MC33269DT</text>
  5486. <text x="-5.08" y="5.08" size="1.27" layer="95">Vin</text>
  5487. <text x="2.54" y="5.08" size="1.27" layer="95">Vout</text>
  5488. <text x="-2.54" y="0" size="1.27" layer="95">GND</text>
  5489. <pin name="VIN" x="-12.7" y="5.08" visible="pad" length="middle" direction="in" swaplevel="3"/>
  5490. <pin name="VOUT" x="12.7" y="5.08" visible="pad" length="middle" direction="out" swaplevel="3" rot="R180"/>
  5491. <pin name="GND" x="0" y="-7.62" visible="pad" length="middle" direction="pwr" swaplevel="3" rot="R90"/>
  5492. </symbol>
  5493. </symbols>
  5494. <devicesets>
  5495. <deviceset name="MC33269DT">
  5496. <gates>
  5497. <gate name="G$1" symbol="MC33269DT" x="0" y="-2.54" swaplevel="3"/>
  5498. </gates>
  5499. <devices>
  5500. <device name="" package="MC33269DT">
  5501. <connects>
  5502. <connect gate="G$1" pin="GND" pad="P1"/>
  5503. <connect gate="G$1" pin="VIN" pad="P3"/>
  5504. <connect gate="G$1" pin="VOUT" pad="P2"/>
  5505. </connects>
  5506. <technologies>
  5507. <technology name=""/>
  5508. </technologies>
  5509. </device>
  5510. </devices>
  5511. </deviceset>
  5512. </devicesets>
  5513. </library>
  5514. <library name="crystal">
  5515. <description>&lt;b&gt;Crystals and Crystal Resonators&lt;/b&gt;&lt;p&gt;
  5516. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  5517. <packages>
  5518. <package name="HC49U">
  5519. <description>&lt;b&gt;Crystal Filter&lt;/b&gt;&lt;p&gt;
  5520. Source: www.ilsiamerica.com .. C1 IXF Series.pdf</description>
  5521. <wire x1="-2.921" y1="-2.286" x2="2.921" y2="-2.286" width="0.4064" layer="21"/>
  5522. <wire x1="-2.921" y1="2.286" x2="2.921" y2="2.286" width="0.4064" layer="21"/>
  5523. <wire x1="-2.921" y1="-1.778" x2="2.921" y2="-1.778" width="0.1524" layer="21"/>
  5524. <wire x1="2.921" y1="1.778" x2="-2.921" y2="1.778" width="0.1524" layer="21"/>
  5525. <wire x1="2.921" y1="1.778" x2="2.921" y2="-1.778" width="0.1524" layer="21" curve="-180"/>
  5526. <wire x1="2.921" y1="2.286" x2="2.921" y2="-2.286" width="0.4064" layer="21" curve="-180"/>
  5527. <wire x1="-2.921" y1="2.286" x2="-2.921" y2="-2.286" width="0.4064" layer="21" curve="180"/>
  5528. <wire x1="-2.921" y1="1.778" x2="-2.921" y2="-1.778" width="0.1524" layer="21" curve="180"/>
  5529. <wire x1="-0.25" y1="1" x2="0.25" y2="1" width="0.1524" layer="51"/>
  5530. <wire x1="0.25" y1="1" x2="0.25" y2="-0.25" width="0.1524" layer="51"/>
  5531. <wire x1="0.25" y1="-0.25" x2="-0.25" y2="-0.25" width="0.1524" layer="51"/>
  5532. <wire x1="-0.25" y1="-0.25" x2="-0.25" y2="1" width="0.1524" layer="51"/>
  5533. <wire x1="0.75" y1="1" x2="0.75" y2="0.25" width="0.1524" layer="51"/>
  5534. <wire x1="0.75" y1="0.25" x2="0.75" y2="-0.5" width="0.1524" layer="51"/>
  5535. <wire x1="-0.75" y1="1" x2="-0.75" y2="0.25" width="0.1524" layer="51"/>
  5536. <wire x1="-0.75" y1="0.25" x2="-0.75" y2="-0.5" width="0.1524" layer="51"/>
  5537. <wire x1="0.75" y1="0.25" x2="1.5" y2="0.25" width="0.1524" layer="51"/>
  5538. <wire x1="-0.75" y1="0.25" x2="-1.5" y2="0.25" width="0.1524" layer="51"/>
  5539. <wire x1="-0.75" y1="-0.5" x2="0.75" y2="-0.5" width="0.1524" layer="51"/>
  5540. <wire x1="0" y1="-1.25" x2="0" y2="-0.625" width="0.1524" layer="51"/>
  5541. <pad name="1" x="-2.413" y="0" drill="0.7" diameter="1.2"/>
  5542. <pad name="2" x="-0.027" y="0" drill="0.7" diameter="1.2"/>
  5543. <pad name="3" x="2.413" y="0" drill="0.7" diameter="1.2"/>
  5544. <text x="-5.08" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5545. <text x="-5.08" y="-4.191" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5546. </package>
  5547. </packages>
  5548. <symbols>
  5549. <symbol name="CRYSTAL-FILTER-3-POL">
  5550. <wire x1="1.016" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  5551. <wire x1="-2.54" y1="0" x2="-1.016" y2="0" width="0.1524" layer="94"/>
  5552. <wire x1="-0.381" y1="1.524" x2="-0.381" y2="-1.524" width="0.254" layer="94"/>
  5553. <wire x1="-0.381" y1="-1.524" x2="0.381" y2="-1.524" width="0.254" layer="94"/>
  5554. <wire x1="0.381" y1="-1.524" x2="0.381" y2="1.524" width="0.254" layer="94"/>
  5555. <wire x1="0.381" y1="1.524" x2="-0.381" y2="1.524" width="0.254" layer="94"/>
  5556. <wire x1="1.016" y1="1.778" x2="1.016" y2="-1.778" width="0.254" layer="94"/>
  5557. <wire x1="-1.016" y1="1.778" x2="-1.016" y2="-1.778" width="0.254" layer="94"/>
  5558. <wire x1="-1.778" y1="1.905" x2="-1.778" y2="2.54" width="0.1524" layer="94"/>
  5559. <wire x1="-1.778" y1="2.54" x2="1.778" y2="2.54" width="0.1524" layer="94"/>
  5560. <wire x1="1.778" y1="2.54" x2="1.778" y2="1.905" width="0.1524" layer="94"/>
  5561. <wire x1="1.778" y1="-1.905" x2="1.778" y2="-2.54" width="0.1524" layer="94"/>
  5562. <wire x1="-1.778" y1="-2.54" x2="1.778" y2="-2.54" width="0.1524" layer="94"/>
  5563. <wire x1="-1.778" y1="-2.54" x2="-1.778" y2="-1.905" width="0.1524" layer="94"/>
  5564. <text x="2.54" y="1.016" size="1.778" layer="95">&gt;NAME</text>
  5565. <text x="2.54" y="-2.54" size="1.778" layer="96">&gt;VALUE</text>
  5566. <text x="-2.159" y="-1.143" size="0.8636" layer="93">1</text>
  5567. <text x="-1.016" y="-3.683" size="0.8636" layer="93">2</text>
  5568. <text x="1.524" y="-1.143" size="0.8636" layer="93">3</text>
  5569. <pin name="3" x="2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1" rot="R270"/>
  5570. <pin name="1" x="-2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1"/>
  5571. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  5572. </symbol>
  5573. </symbols>
  5574. <devicesets>
  5575. <deviceset name="8M10AHC49T" prefix="QF">
  5576. <description>&lt;b&gt;Monolithic Crystal Filters&lt;/b&gt;&lt;p&gt;
  5577. Source: www.vanlong.com</description>
  5578. <gates>
  5579. <gate name="G$1" symbol="CRYSTAL-FILTER-3-POL" x="0" y="0"/>
  5580. </gates>
  5581. <devices>
  5582. <device name="" package="HC49U">
  5583. <connects>
  5584. <connect gate="G$1" pin="1" pad="1"/>
  5585. <connect gate="G$1" pin="2" pad="2"/>
  5586. <connect gate="G$1" pin="3" pad="3"/>
  5587. </connects>
  5588. <technologies>
  5589. <technology name="">
  5590. <attribute name="MF" value="" constant="no"/>
  5591. <attribute name="MPN" value="" constant="no"/>
  5592. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  5593. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  5594. </technology>
  5595. </technologies>
  5596. </device>
  5597. </devices>
  5598. </deviceset>
  5599. </devicesets>
  5600. </library>
  5601. <library name="led">
  5602. <description>&lt;b&gt;LEDs&lt;/b&gt;&lt;p&gt;
  5603. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;br&gt;
  5604. Extended by Federico Battaglin &lt;author&gt;&amp;lt;federico.rd@fdpinternational.com&amp;gt;&lt;/author&gt; with DUOLED</description>
  5605. <packages>
  5606. <package name="1206">
  5607. <description>&lt;b&gt;CHICAGO MINIATURE LAMP, INC.&lt;/b&gt;&lt;p&gt;
  5608. 7022X Series SMT LEDs 1206 Package Size</description>
  5609. <wire x1="1.55" y1="-0.75" x2="-1.55" y2="-0.75" width="0.1016" layer="51"/>
  5610. <wire x1="-1.55" y1="-0.75" x2="-1.55" y2="0.75" width="0.1016" layer="51"/>
  5611. <wire x1="-1.55" y1="0.75" x2="1.55" y2="0.75" width="0.1016" layer="51"/>
  5612. <wire x1="1.55" y1="0.75" x2="1.55" y2="-0.75" width="0.1016" layer="51"/>
  5613. <wire x1="-0.55" y1="-0.5" x2="0.55" y2="-0.5" width="0.1016" layer="21" curve="95.452622"/>
  5614. <wire x1="-0.55" y1="-0.5" x2="-0.55" y2="0.5" width="0.1016" layer="51" curve="-84.547378"/>
  5615. <wire x1="-0.55" y1="0.5" x2="0.55" y2="0.5" width="0.1016" layer="21" curve="-95.452622"/>
  5616. <wire x1="0.55" y1="0.5" x2="0.55" y2="-0.5" width="0.1016" layer="51" curve="-84.547378"/>
  5617. <smd name="A" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  5618. <smd name="C" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  5619. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  5620. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  5621. <rectangle x1="-0.1" y1="-0.1" x2="0.1" y2="0.1" layer="21"/>
  5622. <rectangle x1="0.45" y1="-0.7" x2="0.8" y2="-0.45" layer="51"/>
  5623. <rectangle x1="0.8" y1="-0.7" x2="0.9" y2="0.5" layer="51"/>
  5624. <rectangle x1="0.8" y1="0.55" x2="0.9" y2="0.7" layer="51"/>
  5625. <rectangle x1="-0.9" y1="-0.7" x2="-0.8" y2="0.5" layer="51"/>
  5626. <rectangle x1="-0.9" y1="0.55" x2="-0.8" y2="0.7" layer="51"/>
  5627. <rectangle x1="0.45" y1="-0.7" x2="0.6" y2="-0.45" layer="21"/>
  5628. </package>
  5629. <package name="LD260">
  5630. <description>&lt;B&gt;LED&lt;/B&gt;&lt;p&gt;
  5631. 5 mm, square, Siemens</description>
  5632. <wire x1="-1.27" y1="-1.27" x2="0" y2="-1.27" width="0.1524" layer="21"/>
  5633. <wire x1="0" y1="-1.27" x2="1.27" y2="-1.27" width="0.1524" layer="21"/>
  5634. <wire x1="1.27" y1="1.27" x2="0" y2="1.27" width="0.1524" layer="21"/>
  5635. <wire x1="0" y1="1.27" x2="-1.27" y2="1.27" width="0.1524" layer="21"/>
  5636. <wire x1="1.27" y1="-1.27" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  5637. <wire x1="1.27" y1="1.27" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  5638. <wire x1="1.27" y1="0.889" x2="1.27" y2="0" width="0.1524" layer="51"/>
  5639. <wire x1="1.27" y1="0" x2="1.27" y2="-0.889" width="0.1524" layer="51"/>
  5640. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  5641. <wire x1="-1.27" y1="-1.27" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  5642. <wire x1="-1.27" y1="-0.889" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  5643. <wire x1="-1.27" y1="0" x2="-1.27" y2="0.889" width="0.1524" layer="51"/>
  5644. <wire x1="0" y1="1.27" x2="0.9917" y2="0.7934" width="0.1524" layer="21" curve="-51.33923"/>
  5645. <wire x1="-0.9917" y1="0.7934" x2="0" y2="1.27" width="0.1524" layer="21" curve="-51.33923"/>
  5646. <wire x1="0" y1="-1.27" x2="0.9917" y2="-0.7934" width="0.1524" layer="21" curve="51.33923"/>
  5647. <wire x1="-0.9917" y1="-0.7934" x2="0" y2="-1.27" width="0.1524" layer="21" curve="51.33923"/>
  5648. <wire x1="0.9558" y1="-0.8363" x2="1.27" y2="0" width="0.1524" layer="51" curve="41.185419"/>
  5649. <wire x1="0.9756" y1="0.813" x2="1.2699" y2="0" width="0.1524" layer="51" curve="-39.806332"/>
  5650. <wire x1="-1.27" y1="0" x2="-0.9643" y2="-0.8265" width="0.1524" layer="51" curve="40.600331"/>
  5651. <wire x1="-1.27" y1="0" x2="-0.9643" y2="0.8265" width="0.1524" layer="51" curve="-40.600331"/>
  5652. <wire x1="-0.889" y1="0" x2="0" y2="0.889" width="0.1524" layer="51" curve="-90"/>
  5653. <wire x1="-0.508" y1="0" x2="0" y2="0.508" width="0.1524" layer="51" curve="-90"/>
  5654. <wire x1="0" y1="-0.508" x2="0.508" y2="0" width="0.1524" layer="21" curve="90"/>
  5655. <wire x1="0" y1="-0.889" x2="0.889" y2="0" width="0.1524" layer="51" curve="90"/>
  5656. <pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  5657. <pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  5658. <text x="-1.2954" y="1.4732" size="1.016" layer="25" ratio="10">&gt;NAME</text>
  5659. <text x="-1.27" y="-2.4892" size="1.016" layer="27" ratio="10">&gt;VALUE</text>
  5660. <rectangle x1="1.27" y1="-0.635" x2="2.032" y2="0.635" layer="51"/>
  5661. <rectangle x1="1.905" y1="-0.635" x2="2.032" y2="0.635" layer="21"/>
  5662. </package>
  5663. <package name="LED2X5">
  5664. <description>&lt;B&gt;LED&lt;/B&gt;&lt;p&gt;
  5665. 2 x 5 mm, rectangle</description>
  5666. <wire x1="-2.54" y1="-1.27" x2="2.54" y2="-1.27" width="0.1524" layer="21"/>
  5667. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.1524" layer="21"/>
  5668. <wire x1="2.54" y1="1.27" x2="-2.54" y2="1.27" width="0.1524" layer="21"/>
  5669. <wire x1="-2.54" y1="-1.27" x2="-2.54" y2="1.27" width="0.1524" layer="21"/>
  5670. <wire x1="-1.905" y1="0" x2="0.508" y2="0" width="0.1524" layer="51"/>
  5671. <wire x1="-0.508" y1="0.381" x2="-0.508" y2="-0.381" width="0.1524" layer="51"/>
  5672. <wire x1="-0.508" y1="0.381" x2="0.508" y2="0" width="0.1524" layer="51"/>
  5673. <wire x1="0.508" y1="0" x2="1.778" y2="0" width="0.1524" layer="51"/>
  5674. <wire x1="0.508" y1="0" x2="-0.508" y2="-0.381" width="0.1524" layer="51"/>
  5675. <wire x1="0.508" y1="0.381" x2="0.508" y2="0" width="0.1524" layer="51"/>
  5676. <wire x1="0.508" y1="0" x2="0.508" y2="-0.381" width="0.1524" layer="51"/>
  5677. <wire x1="0.889" y1="-0.254" x2="1.143" y2="-0.762" width="0.1524" layer="51"/>
  5678. <wire x1="1.143" y1="-0.762" x2="1.143" y2="-0.508" width="0.1524" layer="51"/>
  5679. <wire x1="1.143" y1="-0.762" x2="0.9398" y2="-0.6096" width="0.1524" layer="51"/>
  5680. <wire x1="0.9398" y1="-0.6096" x2="1.143" y2="-0.508" width="0.1524" layer="51"/>
  5681. <wire x1="1.397" y1="-0.254" x2="1.651" y2="-0.762" width="0.1524" layer="51"/>
  5682. <wire x1="1.651" y1="-0.762" x2="1.651" y2="-0.508" width="0.1524" layer="51"/>
  5683. <wire x1="1.651" y1="-0.762" x2="1.4478" y2="-0.6096" width="0.1524" layer="51"/>
  5684. <wire x1="1.4478" y1="-0.6096" x2="1.651" y2="-0.508" width="0.1524" layer="51"/>
  5685. <pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  5686. <pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  5687. <text x="-2.54" y="1.397" size="1.016" layer="25" ratio="10">&gt;NAME</text>
  5688. <text x="-2.54" y="-2.413" size="1.016" layer="27" ratio="10">&gt;VALUE</text>
  5689. <rectangle x1="2.159" y1="-1.27" x2="2.413" y2="1.27" layer="21"/>
  5690. </package>
  5691. <package name="LED3MM">
  5692. <description>&lt;B&gt;LED&lt;/B&gt;&lt;p&gt;
  5693. 3 mm, round</description>
  5694. <wire x1="1.5748" y1="-1.27" x2="1.5748" y2="1.27" width="0.254" layer="51"/>
  5695. <wire x1="-1.524" y1="0" x2="-1.1708" y2="0.9756" width="0.1524" layer="51" curve="-39.80361"/>
  5696. <wire x1="-1.524" y1="0" x2="-1.1391" y2="-1.0125" width="0.1524" layer="51" curve="41.633208"/>
  5697. <wire x1="1.1571" y1="0.9918" x2="1.524" y2="0" width="0.1524" layer="51" curve="-40.601165"/>
  5698. <wire x1="1.1708" y1="-0.9756" x2="1.524" y2="0" width="0.1524" layer="51" curve="39.80361"/>
  5699. <wire x1="0" y1="1.524" x2="1.2401" y2="0.8858" width="0.1524" layer="21" curve="-54.461337"/>
  5700. <wire x1="-1.2192" y1="0.9144" x2="0" y2="1.524" width="0.1524" layer="21" curve="-53.130102"/>
  5701. <wire x1="0" y1="-1.524" x2="1.203" y2="-0.9356" width="0.1524" layer="21" curve="52.126876"/>
  5702. <wire x1="-1.203" y1="-0.9356" x2="0" y2="-1.524" width="0.1524" layer="21" curve="52.126876"/>
  5703. <wire x1="-0.635" y1="0" x2="0" y2="0.635" width="0.1524" layer="51" curve="-90"/>
  5704. <wire x1="-1.016" y1="0" x2="0" y2="1.016" width="0.1524" layer="51" curve="-90"/>
  5705. <wire x1="0" y1="-0.635" x2="0.635" y2="0" width="0.1524" layer="51" curve="90"/>
  5706. <wire x1="0" y1="-1.016" x2="1.016" y2="0" width="0.1524" layer="51" curve="90"/>
  5707. <wire x1="0" y1="2.032" x2="1.561" y2="1.3009" width="0.254" layer="21" curve="-50.193108"/>
  5708. <wire x1="-1.7929" y1="0.9562" x2="0" y2="2.032" width="0.254" layer="21" curve="-61.926949"/>
  5709. <wire x1="0" y1="-2.032" x2="1.5512" y2="-1.3126" width="0.254" layer="21" curve="49.763022"/>
  5710. <wire x1="-1.7643" y1="-1.0082" x2="0" y2="-2.032" width="0.254" layer="21" curve="60.255215"/>
  5711. <wire x1="-2.032" y1="0" x2="-1.7891" y2="0.9634" width="0.254" layer="51" curve="-28.301701"/>
  5712. <wire x1="-2.032" y1="0" x2="-1.7306" y2="-1.065" width="0.254" layer="51" curve="31.60822"/>
  5713. <pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  5714. <pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  5715. <text x="1.905" y="0.381" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5716. <text x="1.905" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5717. </package>
  5718. <package name="LED5MM">
  5719. <description>&lt;B&gt;LED&lt;/B&gt;&lt;p&gt;
  5720. 5 mm, round</description>
  5721. <wire x1="2.54" y1="-1.905" x2="2.54" y2="1.905" width="0.2032" layer="21"/>
  5722. <wire x1="2.54" y1="-1.905" x2="2.54" y2="1.905" width="0.254" layer="21" curve="-286.260205"/>
  5723. <wire x1="-1.143" y1="0" x2="0" y2="1.143" width="0.1524" layer="51" curve="-90"/>
  5724. <wire x1="0" y1="-1.143" x2="1.143" y2="0" width="0.1524" layer="51" curve="90"/>
  5725. <wire x1="-1.651" y1="0" x2="0" y2="1.651" width="0.1524" layer="51" curve="-90"/>
  5726. <wire x1="0" y1="-1.651" x2="1.651" y2="0" width="0.1524" layer="51" curve="90"/>
  5727. <wire x1="-2.159" y1="0" x2="0" y2="2.159" width="0.1524" layer="51" curve="-90"/>
  5728. <wire x1="0" y1="-2.159" x2="2.159" y2="0" width="0.1524" layer="51" curve="90"/>
  5729. <circle x="0" y="0" radius="2.54" width="0.1524" layer="21"/>
  5730. <pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  5731. <pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  5732. <text x="3.175" y="0.5334" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5733. <text x="3.2004" y="-1.8034" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5734. </package>
  5735. <package name="LSU260">
  5736. <description>&lt;B&gt;LED&lt;/B&gt;&lt;p&gt;
  5737. 1 mm, round, Siemens</description>
  5738. <wire x1="0" y1="-0.508" x2="-1.143" y2="-0.508" width="0.1524" layer="51"/>
  5739. <wire x1="-1.143" y1="-0.508" x2="-1.143" y2="-0.254" width="0.1524" layer="51"/>
  5740. <wire x1="-1.143" y1="0.508" x2="0" y2="0.508" width="0.1524" layer="51"/>
  5741. <wire x1="-1.143" y1="-0.254" x2="-1.397" y2="-0.254" width="0.1524" layer="51"/>
  5742. <wire x1="-1.143" y1="-0.254" x2="-1.143" y2="0.254" width="0.1524" layer="51"/>
  5743. <wire x1="-1.397" y1="-0.254" x2="-1.397" y2="0.254" width="0.1524" layer="51"/>
  5744. <wire x1="-1.397" y1="0.254" x2="-1.143" y2="0.254" width="0.1524" layer="51"/>
  5745. <wire x1="-1.143" y1="0.254" x2="-1.143" y2="0.508" width="0.1524" layer="51"/>
  5746. <wire x1="0.508" y1="-0.254" x2="1.397" y2="-0.254" width="0.1524" layer="51"/>
  5747. <wire x1="1.397" y1="-0.254" x2="1.397" y2="0.254" width="0.1524" layer="51"/>
  5748. <wire x1="1.397" y1="0.254" x2="0.508" y2="0.254" width="0.1524" layer="51"/>
  5749. <wire x1="0.381" y1="-0.381" x2="0.254" y2="-0.508" width="0.1524" layer="21"/>
  5750. <wire x1="0.254" y1="-0.508" x2="-0.254" y2="-0.508" width="0.1524" layer="21"/>
  5751. <wire x1="-0.381" y1="-0.381" x2="-0.254" y2="-0.508" width="0.1524" layer="21"/>
  5752. <wire x1="0.381" y1="0.381" x2="0.254" y2="0.508" width="0.1524" layer="21"/>
  5753. <wire x1="0.254" y1="0.508" x2="-0.254" y2="0.508" width="0.1524" layer="21"/>
  5754. <wire x1="-0.381" y1="0.381" x2="-0.254" y2="0.508" width="0.1524" layer="21"/>
  5755. <wire x1="0" y1="-0.254" x2="0.254" y2="0" width="0.1524" layer="21" curve="90"/>
  5756. <wire x1="-0.254" y1="0" x2="0" y2="0.254" width="0.1524" layer="21" curve="-90"/>
  5757. <wire x1="0.381" y1="-0.381" x2="0.381" y2="0.381" width="0.1524" layer="21" curve="90"/>
  5758. <circle x="0" y="0" radius="0.508" width="0.1524" layer="51"/>
  5759. <pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  5760. <pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  5761. <text x="-1.2954" y="0.8382" size="1.016" layer="25" ratio="10">&gt;NAME</text>
  5762. <text x="-1.27" y="-1.8542" size="1.016" layer="27" ratio="10">&gt;VALUE</text>
  5763. <rectangle x1="-1.397" y1="-0.254" x2="-1.143" y2="0.254" layer="51"/>
  5764. <rectangle x1="0.508" y1="-0.254" x2="1.397" y2="0.254" layer="51"/>
  5765. </package>
  5766. <package name="LZR181">
  5767. <description>&lt;B&gt;LED BLOCK&lt;/B&gt;&lt;p&gt;
  5768. 1 LED, Siemens</description>
  5769. <wire x1="-1.27" y1="-1.27" x2="1.27" y2="-1.27" width="0.1524" layer="21"/>
  5770. <wire x1="1.27" y1="-1.27" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  5771. <wire x1="1.27" y1="1.27" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  5772. <wire x1="1.27" y1="0.889" x2="1.27" y2="-0.889" width="0.1524" layer="51"/>
  5773. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  5774. <wire x1="-1.27" y1="-1.27" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  5775. <wire x1="-1.27" y1="-0.889" x2="-1.27" y2="0.889" width="0.1524" layer="51"/>
  5776. <wire x1="-0.889" y1="0" x2="0" y2="0.889" width="0.1524" layer="51" curve="-90"/>
  5777. <wire x1="-0.508" y1="0" x2="0" y2="0.508" width="0.1524" layer="51" curve="-90"/>
  5778. <wire x1="0" y1="-0.508" x2="0.508" y2="0" width="0.1524" layer="21" curve="90"/>
  5779. <wire x1="0" y1="-0.889" x2="0.889" y2="0" width="0.1524" layer="51" curve="90"/>
  5780. <wire x1="-0.8678" y1="0.7439" x2="0" y2="1.143" width="0.1524" layer="21" curve="-49.396139"/>
  5781. <wire x1="0" y1="1.143" x2="0.8678" y2="0.7439" width="0.1524" layer="21" curve="-49.396139"/>
  5782. <wire x1="-0.8678" y1="-0.7439" x2="0" y2="-1.143" width="0.1524" layer="21" curve="49.396139"/>
  5783. <wire x1="0" y1="-1.143" x2="0.8678" y2="-0.7439" width="0.1524" layer="21" curve="49.396139"/>
  5784. <wire x1="0.8678" y1="0.7439" x2="1.143" y2="0" width="0.1524" layer="51" curve="-40.604135"/>
  5785. <wire x1="0.8678" y1="-0.7439" x2="1.143" y2="0" width="0.1524" layer="51" curve="40.604135"/>
  5786. <wire x1="-1.143" y1="0" x2="-0.8678" y2="0.7439" width="0.1524" layer="51" curve="-40.604135"/>
  5787. <wire x1="-1.143" y1="0" x2="-0.8678" y2="-0.7439" width="0.1524" layer="51" curve="40.604135"/>
  5788. <wire x1="-1.27" y1="1.27" x2="1.27" y2="1.27" width="0.1524" layer="21"/>
  5789. <pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  5790. <pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  5791. <text x="-1.2954" y="1.4732" size="1.016" layer="25" ratio="10">&gt;NAME</text>
  5792. <text x="-1.27" y="-2.4892" size="1.016" layer="27" ratio="10">&gt;VALUE</text>
  5793. <rectangle x1="1.27" y1="-0.889" x2="1.524" y2="0.254" layer="51"/>
  5794. <rectangle x1="-1.524" y1="-0.254" x2="-1.27" y2="0.254" layer="51"/>
  5795. </package>
  5796. <package name="Q62902-B152">
  5797. <description>&lt;b&gt;LED HOLDER&lt;/b&gt;&lt;p&gt;
  5798. Siemens</description>
  5799. <wire x1="-2.9718" y1="-1.8542" x2="-2.9718" y2="-0.254" width="0.1524" layer="21"/>
  5800. <wire x1="-2.9718" y1="-0.254" x2="-2.9718" y2="0.254" width="0.1524" layer="21"/>
  5801. <wire x1="-2.9718" y1="0.254" x2="-2.9718" y2="1.8542" width="0.1524" layer="21"/>
  5802. <wire x1="2.9718" y1="-1.8542" x2="-2.1082" y2="-1.8542" width="0.1524" layer="21"/>
  5803. <wire x1="-2.1082" y1="-1.8542" x2="-2.54" y2="-1.8542" width="0.1524" layer="21"/>
  5804. <wire x1="-2.54" y1="1.8542" x2="-2.1082" y2="1.8542" width="0.1524" layer="21"/>
  5805. <wire x1="-2.1082" y1="1.8542" x2="2.9718" y2="1.8542" width="0.1524" layer="21"/>
  5806. <wire x1="-2.54" y1="-1.8542" x2="-2.54" y2="1.8542" width="0.1524" layer="21"/>
  5807. <wire x1="-2.54" y1="-1.8542" x2="-2.9718" y2="-1.8542" width="0.1524" layer="21"/>
  5808. <wire x1="-2.54" y1="1.8542" x2="-2.9718" y2="1.8542" width="0.1524" layer="21"/>
  5809. <wire x1="-2.9718" y1="0.254" x2="-2.9718" y2="-0.254" width="0.1524" layer="21" curve="180"/>
  5810. <wire x1="-1.1486" y1="0.8814" x2="0" y2="1.4478" width="0.1524" layer="21" curve="-52.498642"/>
  5811. <wire x1="0" y1="1.4478" x2="1.1476" y2="0.8827" width="0.1524" layer="21" curve="-52.433716"/>
  5812. <wire x1="-1.1351" y1="-0.8987" x2="0" y2="-1.4478" width="0.1524" layer="21" curve="51.629985"/>
  5813. <wire x1="0" y1="-1.4478" x2="1.1305" y2="-0.9044" width="0.1524" layer="21" curve="51.339172"/>
  5814. <wire x1="1.1281" y1="-0.9074" x2="1.4478" y2="0" width="0.1524" layer="51" curve="38.811177"/>
  5815. <wire x1="1.1401" y1="0.8923" x2="1.4478" y2="0" width="0.1524" layer="51" curve="-38.048073"/>
  5816. <wire x1="-1.4478" y1="0" x2="-1.1305" y2="-0.9044" width="0.1524" layer="51" curve="38.659064"/>
  5817. <wire x1="-1.4478" y1="0" x2="-1.1456" y2="0.8853" width="0.1524" layer="51" curve="-37.696376"/>
  5818. <wire x1="0" y1="1.7018" x2="1.4674" y2="0.8618" width="0.1524" layer="21" curve="-59.573488"/>
  5819. <wire x1="-1.4618" y1="0.8714" x2="0" y2="1.7018" width="0.1524" layer="21" curve="-59.200638"/>
  5820. <wire x1="0" y1="-1.7018" x2="1.4571" y2="-0.8793" width="0.1524" layer="21" curve="58.891781"/>
  5821. <wire x1="-1.4571" y1="-0.8793" x2="0" y2="-1.7018" width="0.1524" layer="21" curve="58.891781"/>
  5822. <wire x1="-1.7018" y1="0" x2="-1.4447" y2="0.8995" width="0.1524" layer="51" curve="-31.907626"/>
  5823. <wire x1="-1.7018" y1="0" x2="-1.4502" y2="-0.8905" width="0.1524" layer="51" curve="31.551992"/>
  5824. <wire x1="1.4521" y1="0.8874" x2="1.7018" y2="0" width="0.1524" layer="51" curve="-31.429586"/>
  5825. <wire x1="1.4459" y1="-0.8975" x2="1.7018" y2="0" width="0.1524" layer="51" curve="31.828757"/>
  5826. <wire x1="-2.1082" y1="1.8542" x2="-2.1082" y2="-1.8542" width="0.1524" layer="21"/>
  5827. <wire x1="-0.635" y1="0" x2="0" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  5828. <wire x1="-1.016" y1="0" x2="0" y2="1.016" width="0.1524" layer="51" curve="-90"/>
  5829. <wire x1="0" y1="-0.635" x2="0.635" y2="0" width="0.1524" layer="51" curve="90"/>
  5830. <wire x1="0.0539" y1="-1.0699" x2="1.0699" y2="-0.0539" width="0.1524" layer="51" curve="90"/>
  5831. <wire x1="2.9718" y1="1.8542" x2="2.9718" y2="-1.8542" width="0.1524" layer="21"/>
  5832. <pad name="K" x="-1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
  5833. <pad name="A" x="1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
  5834. <text x="-1.905" y="2.286" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5835. <text x="-1.905" y="-3.556" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5836. </package>
  5837. <package name="Q62902-B153">
  5838. <description>&lt;b&gt;LED HOLDER&lt;/b&gt;&lt;p&gt;
  5839. Siemens</description>
  5840. <wire x1="-5.5118" y1="-3.5052" x2="-5.5118" y2="-0.254" width="0.1524" layer="21"/>
  5841. <wire x1="-5.5118" y1="-0.254" x2="-5.5118" y2="0.254" width="0.1524" layer="21"/>
  5842. <wire x1="-5.5118" y1="0.254" x2="-5.5118" y2="3.5052" width="0.1524" layer="21"/>
  5843. <wire x1="5.5118" y1="-3.5052" x2="-4.6482" y2="-3.5052" width="0.1524" layer="21"/>
  5844. <wire x1="-4.6482" y1="-3.5052" x2="-5.08" y2="-3.5052" width="0.1524" layer="21"/>
  5845. <wire x1="-5.08" y1="3.5052" x2="-4.6482" y2="3.5052" width="0.1524" layer="21"/>
  5846. <wire x1="-4.6482" y1="3.5052" x2="5.5118" y2="3.5052" width="0.1524" layer="21"/>
  5847. <wire x1="-5.08" y1="-3.5052" x2="-5.08" y2="3.5052" width="0.1524" layer="21"/>
  5848. <wire x1="-5.08" y1="-3.5052" x2="-5.5118" y2="-3.5052" width="0.1524" layer="21"/>
  5849. <wire x1="-5.08" y1="3.5052" x2="-5.5118" y2="3.5052" width="0.1524" layer="21"/>
  5850. <wire x1="-5.5118" y1="0.254" x2="-5.5118" y2="-0.254" width="0.1524" layer="21" curve="180"/>
  5851. <wire x1="-4.6482" y1="3.5052" x2="-4.6482" y2="-3.5052" width="0.1524" layer="21"/>
  5852. <wire x1="5.5118" y1="3.5052" x2="5.5118" y2="-3.5052" width="0.1524" layer="21"/>
  5853. <wire x1="-2.54" y1="1.905" x2="-2.54" y2="-1.905" width="0.254" layer="21"/>
  5854. <wire x1="0" y1="-1.143" x2="1.143" y2="0" width="0.1524" layer="51" curve="90"/>
  5855. <wire x1="-1.143" y1="0" x2="0" y2="1.143" width="0.1524" layer="51" curve="-90"/>
  5856. <wire x1="0" y1="-1.651" x2="1.651" y2="0" width="0.1524" layer="51" curve="90"/>
  5857. <wire x1="-1.651" y1="0" x2="0" y2="1.651" width="0.1524" layer="51" curve="-90"/>
  5858. <wire x1="0" y1="-2.159" x2="2.159" y2="0" width="0.1524" layer="51" curve="90"/>
  5859. <wire x1="-2.2129" y1="0.0539" x2="-0.0539" y2="2.2129" width="0.1524" layer="51" curve="-90.010616"/>
  5860. <circle x="0" y="0" radius="2.54" width="0.1524" layer="21"/>
  5861. <circle x="0" y="0" radius="3.175" width="0.254" layer="21"/>
  5862. <pad name="A" x="1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
  5863. <pad name="K" x="-1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
  5864. <text x="-4.191" y="3.937" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5865. <text x="-4.318" y="-5.08" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5866. </package>
  5867. <package name="Q62902-B155">
  5868. <description>&lt;b&gt;LED HOLDER&lt;/b&gt;&lt;p&gt;
  5869. Siemens</description>
  5870. <wire x1="-1.27" y1="-3.048" x2="-1.27" y2="-2.54" width="0.1524" layer="21"/>
  5871. <wire x1="10.033" y1="3.048" x2="2.921" y2="3.048" width="0.1524" layer="21"/>
  5872. <wire x1="10.033" y1="3.048" x2="10.033" y2="-3.048" width="0.1524" layer="21"/>
  5873. <wire x1="-1.27" y1="-3.048" x2="2.921" y2="-3.048" width="0.1524" layer="21"/>
  5874. <wire x1="2.921" y1="-3.048" x2="2.921" y2="3.048" width="0.1524" layer="21"/>
  5875. <wire x1="2.921" y1="-3.048" x2="10.033" y2="-3.048" width="0.1524" layer="21"/>
  5876. <wire x1="2.921" y1="3.048" x2="-1.27" y2="3.048" width="0.1524" layer="21"/>
  5877. <wire x1="-1.27" y1="2.54" x2="-5.207" y2="2.54" width="0.1524" layer="21"/>
  5878. <wire x1="-1.27" y1="2.54" x2="-1.27" y2="3.048" width="0.1524" layer="21"/>
  5879. <wire x1="-5.207" y1="-2.54" x2="-1.27" y2="-2.54" width="0.1524" layer="21"/>
  5880. <wire x1="-1.27" y1="-2.54" x2="-1.27" y2="2.54" width="0.1524" layer="21"/>
  5881. <wire x1="-5.207" y1="2.54" x2="-5.207" y2="-2.54" width="0.1524" layer="21" curve="180"/>
  5882. <wire x1="-6.985" y1="0.635" x2="-6.985" y2="-0.635" width="0.1524" layer="21"/>
  5883. <wire x1="-6.096" y1="1.397" x2="-6.096" y2="-1.397" width="0.1524" layer="21"/>
  5884. <wire x1="-5.207" y1="1.905" x2="-5.207" y2="-1.905" width="0.1524" layer="21"/>
  5885. <pad name="K" x="7.62" y="1.27" drill="0.8128" shape="long"/>
  5886. <pad name="A" x="7.62" y="-1.27" drill="0.8128" shape="long"/>
  5887. <text x="3.302" y="-2.794" size="1.016" layer="21" ratio="14">A+</text>
  5888. <text x="3.302" y="1.778" size="1.016" layer="21" ratio="14">K-</text>
  5889. <text x="11.684" y="-2.794" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  5890. <text x="0.635" y="-4.445" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5891. <rectangle x1="2.921" y1="1.016" x2="6.731" y2="1.524" layer="21"/>
  5892. <rectangle x1="2.921" y1="-1.524" x2="6.731" y2="-1.016" layer="21"/>
  5893. <hole x="0" y="0" drill="0.8128"/>
  5894. </package>
  5895. <package name="Q62902-B156">
  5896. <description>&lt;b&gt;LED HOLDER&lt;/b&gt;&lt;p&gt;
  5897. Siemens</description>
  5898. <wire x1="2.54" y1="-1.905" x2="2.54" y2="1.905" width="0.1524" layer="21"/>
  5899. <wire x1="-1.143" y1="0" x2="0" y2="1.143" width="0.1524" layer="51" curve="-90"/>
  5900. <wire x1="0" y1="-1.143" x2="1.143" y2="0" width="0.1524" layer="51" curve="90"/>
  5901. <wire x1="-1.651" y1="0" x2="0" y2="1.651" width="0.1524" layer="51" curve="-90"/>
  5902. <wire x1="0" y1="-1.651" x2="1.651" y2="0" width="0.1524" layer="51" curve="90"/>
  5903. <wire x1="-2.159" y1="0" x2="0" y2="2.159" width="0.1524" layer="51" curve="-90"/>
  5904. <wire x1="0.0539" y1="-2.2129" x2="2.2129" y2="-0.0539" width="0.1524" layer="51" curve="90.005308"/>
  5905. <wire x1="2.54" y1="3.81" x2="3.81" y2="2.54" width="0.1524" layer="21"/>
  5906. <wire x1="2.54" y1="3.81" x2="-3.81" y2="3.81" width="0.1524" layer="21"/>
  5907. <wire x1="-3.81" y1="-3.81" x2="-3.81" y2="3.81" width="0.1524" layer="21"/>
  5908. <wire x1="3.81" y1="2.54" x2="3.81" y2="-3.81" width="0.1524" layer="21"/>
  5909. <wire x1="-3.81" y1="-3.81" x2="-2.54" y2="-3.81" width="0.1524" layer="21"/>
  5910. <wire x1="-2.54" y1="-3.302" x2="-2.54" y2="-3.81" width="0.1524" layer="21"/>
  5911. <wire x1="3.81" y1="-3.81" x2="2.54" y2="-3.81" width="0.1524" layer="21"/>
  5912. <wire x1="2.54" y1="-3.302" x2="2.54" y2="-3.81" width="0.1524" layer="21"/>
  5913. <wire x1="2.54" y1="-3.302" x2="-2.54" y2="-3.302" width="0.1524" layer="21"/>
  5914. <circle x="0" y="0" radius="2.54" width="0.1524" layer="21"/>
  5915. <circle x="0" y="0" radius="3.175" width="0.254" layer="21"/>
  5916. <pad name="A" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  5917. <pad name="K" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  5918. <text x="-3.81" y="4.0894" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5919. <text x="-3.7846" y="-5.3594" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5920. <text x="-3.556" y="-3.302" size="1.016" layer="21" ratio="14">+</text>
  5921. <text x="2.794" y="-3.302" size="1.016" layer="21" ratio="14">-</text>
  5922. </package>
  5923. <package name="SFH480">
  5924. <description>&lt;B&gt;IR LED&lt;/B&gt;&lt;p&gt;
  5925. infrared emitting diode, Infineon
  5926. TO-18, lead spacing 2.54 mm, cathode marking&lt;p&gt;
  5927. Inifineon</description>
  5928. <wire x1="-2.159" y1="1.524" x2="-2.794" y2="2.159" width="0.1524" layer="21"/>
  5929. <wire x1="-2.794" y1="2.159" x2="-2.159" y2="2.794" width="0.1524" layer="21"/>
  5930. <wire x1="-1.524" y1="2.159" x2="-2.159" y2="2.794" width="0.1524" layer="21"/>
  5931. <wire x1="0" y1="1.778" x2="1.5358" y2="0.8959" width="0.1524" layer="21" curve="-59.743278"/>
  5932. <wire x1="-1.5358" y1="0.8959" x2="0" y2="1.778" width="0.1524" layer="21" curve="-59.743278"/>
  5933. <wire x1="-1.5358" y1="-0.8959" x2="0" y2="-1.778" width="0.1524" layer="21" curve="59.743278"/>
  5934. <wire x1="0" y1="-1.778" x2="1.5358" y2="-0.8959" width="0.1524" layer="21" curve="59.743278"/>
  5935. <wire x1="1.5142" y1="0.9318" x2="1.778" y2="0" width="0.1524" layer="51" curve="-31.606487"/>
  5936. <wire x1="1.5" y1="-0.9546" x2="1.778" y2="0" width="0.1524" layer="51" curve="32.472615"/>
  5937. <wire x1="-1.778" y1="0" x2="-1.5142" y2="-0.9318" width="0.1524" layer="51" curve="31.606487"/>
  5938. <wire x1="-1.778" y1="0" x2="-1.5" y2="0.9546" width="0.1524" layer="51" curve="-32.472615"/>
  5939. <wire x1="-0.635" y1="0" x2="0" y2="0.635" width="0.1524" layer="51" curve="-90"/>
  5940. <wire x1="-1.016" y1="0" x2="0" y2="1.016" width="0.1524" layer="51" curve="-90"/>
  5941. <wire x1="0" y1="-0.635" x2="0.635" y2="0" width="0.1524" layer="51" curve="90"/>
  5942. <wire x1="0.0539" y1="-1.0699" x2="1.0699" y2="-0.0539" width="0.1524" layer="51" curve="90"/>
  5943. <circle x="0" y="0" radius="2.667" width="0.1524" layer="21"/>
  5944. <circle x="0" y="0" radius="2.413" width="0.254" layer="21"/>
  5945. <pad name="K" x="-1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
  5946. <pad name="A" x="1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
  5947. <text x="-1.27" y="3.048" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5948. <text x="-1.27" y="-4.318" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5949. </package>
  5950. <package name="SFH482">
  5951. <description>&lt;B&gt;IR LED&lt;/B&gt;&lt;p&gt;
  5952. infrared emitting diode, Infineon
  5953. TO-18, lead spacing 2.54 mm, cathode marking&lt;p&gt;
  5954. Inifineon</description>
  5955. <wire x1="-2.159" y1="1.524" x2="-2.794" y2="2.159" width="0.1524" layer="21"/>
  5956. <wire x1="-2.794" y1="2.159" x2="-2.159" y2="2.794" width="0.1524" layer="21"/>
  5957. <wire x1="-1.524" y1="2.159" x2="-2.159" y2="2.794" width="0.1524" layer="21"/>
  5958. <wire x1="0" y1="1.778" x2="1.5358" y2="0.8959" width="0.1524" layer="21" curve="-59.743278"/>
  5959. <wire x1="-1.5358" y1="0.8959" x2="0" y2="1.778" width="0.1524" layer="21" curve="-59.743278"/>
  5960. <wire x1="-1.5358" y1="-0.8959" x2="0" y2="-1.778" width="0.1524" layer="21" curve="59.743278"/>
  5961. <wire x1="0" y1="-1.778" x2="1.5358" y2="-0.8959" width="0.1524" layer="21" curve="59.743278"/>
  5962. <wire x1="1.5142" y1="0.9318" x2="1.778" y2="0" width="0.1524" layer="51" curve="-31.606487"/>
  5963. <wire x1="1.5" y1="-0.9546" x2="1.778" y2="0" width="0.1524" layer="51" curve="32.472615"/>
  5964. <wire x1="-1.778" y1="0" x2="-1.5142" y2="-0.9318" width="0.1524" layer="51" curve="31.606487"/>
  5965. <wire x1="-1.778" y1="0" x2="-1.5" y2="0.9546" width="0.1524" layer="51" curve="-32.472615"/>
  5966. <wire x1="-0.635" y1="0" x2="0" y2="0.635" width="0.1524" layer="51" curve="-90"/>
  5967. <wire x1="-1.016" y1="0" x2="0" y2="1.016" width="0.1524" layer="51" curve="-90"/>
  5968. <wire x1="0" y1="-0.635" x2="0.635" y2="0" width="0.1524" layer="51" curve="90"/>
  5969. <wire x1="0.0539" y1="-1.0699" x2="1.0699" y2="-0.0539" width="0.1524" layer="51" curve="90"/>
  5970. <circle x="0" y="0" radius="2.667" width="0.1524" layer="21"/>
  5971. <circle x="0" y="0" radius="2.413" width="0.254" layer="21"/>
  5972. <pad name="K" x="1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
  5973. <pad name="A" x="-1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
  5974. <text x="-1.27" y="3.048" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5975. <text x="-1.27" y="-4.318" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5976. </package>
  5977. <package name="U57X32">
  5978. <description>&lt;B&gt;LED&lt;/B&gt;&lt;p&gt;
  5979. rectangle, 5.7 x 3.2 mm</description>
  5980. <wire x1="-3.175" y1="1.905" x2="3.175" y2="1.905" width="0.1524" layer="21"/>
  5981. <wire x1="3.175" y1="-1.905" x2="3.175" y2="1.905" width="0.1524" layer="21"/>
  5982. <wire x1="3.175" y1="-1.905" x2="-3.175" y2="-1.905" width="0.1524" layer="21"/>
  5983. <wire x1="-3.175" y1="1.905" x2="-3.175" y2="-1.905" width="0.1524" layer="21"/>
  5984. <wire x1="-2.667" y1="1.397" x2="2.667" y2="1.397" width="0.1524" layer="21"/>
  5985. <wire x1="2.667" y1="-1.397" x2="2.667" y2="1.397" width="0.1524" layer="21"/>
  5986. <wire x1="2.667" y1="-1.397" x2="-2.667" y2="-1.397" width="0.1524" layer="21"/>
  5987. <wire x1="-2.667" y1="1.397" x2="-2.667" y2="-1.397" width="0.1524" layer="21"/>
  5988. <wire x1="-2.54" y1="1.016" x2="2.54" y2="1.016" width="0.1524" layer="51"/>
  5989. <wire x1="2.286" y1="1.27" x2="2.286" y2="-1.27" width="0.1524" layer="51"/>
  5990. <wire x1="-2.54" y1="0.508" x2="2.54" y2="0.508" width="0.1524" layer="51"/>
  5991. <wire x1="-2.54" y1="0" x2="2.54" y2="0" width="0.1524" layer="51"/>
  5992. <wire x1="-2.54" y1="-0.508" x2="2.54" y2="-0.508" width="0.1524" layer="51"/>
  5993. <wire x1="-2.54" y1="-1.016" x2="2.54" y2="-1.016" width="0.1524" layer="51"/>
  5994. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="-1.27" width="0.1524" layer="51"/>
  5995. <wire x1="-1.778" y1="1.27" x2="-1.778" y2="-1.27" width="0.1524" layer="51"/>
  5996. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.1524" layer="51"/>
  5997. <wire x1="-0.762" y1="1.27" x2="-0.762" y2="-1.27" width="0.1524" layer="51"/>
  5998. <wire x1="-0.254" y1="1.27" x2="-0.254" y2="-1.27" width="0.1524" layer="51"/>
  5999. <wire x1="0.254" y1="1.27" x2="0.254" y2="-1.27" width="0.1524" layer="51"/>
  6000. <wire x1="0.762" y1="1.27" x2="0.762" y2="-1.27" width="0.1524" layer="51"/>
  6001. <wire x1="1.27" y1="1.27" x2="1.27" y2="-1.27" width="0.1524" layer="51"/>
  6002. <wire x1="1.778" y1="1.27" x2="1.778" y2="-1.27" width="0.1524" layer="51"/>
  6003. <pad name="A" x="-1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
  6004. <pad name="K" x="1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
  6005. <text x="3.683" y="0.254" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6006. <text x="3.683" y="-1.524" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  6007. </package>
  6008. <package name="IRL80A">
  6009. <description>&lt;B&gt;IR LED&lt;/B&gt;&lt;p&gt;
  6010. IR transmitter Siemens</description>
  6011. <wire x1="0.889" y1="2.286" x2="0.889" y2="1.778" width="0.1524" layer="21"/>
  6012. <wire x1="0.889" y1="1.778" x2="0.889" y2="0.762" width="0.1524" layer="51"/>
  6013. <wire x1="0.889" y1="0.762" x2="0.889" y2="-0.635" width="0.1524" layer="21"/>
  6014. <wire x1="0.889" y1="-0.635" x2="0.889" y2="-1.778" width="0.1524" layer="51"/>
  6015. <wire x1="0.889" y1="-1.778" x2="0.889" y2="-2.286" width="0.1524" layer="21"/>
  6016. <wire x1="0.889" y1="-2.286" x2="-0.889" y2="-2.286" width="0.1524" layer="21"/>
  6017. <wire x1="-0.889" y1="2.286" x2="-0.889" y2="1.778" width="0.1524" layer="21"/>
  6018. <wire x1="-0.889" y1="1.778" x2="-0.889" y2="0.762" width="0.1524" layer="51"/>
  6019. <wire x1="-0.889" y1="0.762" x2="-0.889" y2="-0.762" width="0.1524" layer="21"/>
  6020. <wire x1="-0.889" y1="-0.762" x2="-0.889" y2="-1.778" width="0.1524" layer="51"/>
  6021. <wire x1="-0.889" y1="-1.778" x2="-0.889" y2="-2.286" width="0.1524" layer="21"/>
  6022. <wire x1="-0.889" y1="2.286" x2="0.889" y2="2.286" width="0.1524" layer="21"/>
  6023. <wire x1="-0.889" y1="-0.762" x2="-0.889" y2="0.762" width="0.1524" layer="21" curve="-180"/>
  6024. <wire x1="-1.397" y1="0.254" x2="-1.397" y2="-0.254" width="0.0508" layer="21"/>
  6025. <wire x1="-1.143" y1="0.508" x2="-1.143" y2="-0.508" width="0.0508" layer="21"/>
  6026. <pad name="K" x="0" y="1.27" drill="0.8128" shape="octagon"/>
  6027. <pad name="A" x="0" y="-1.27" drill="0.8128" shape="octagon"/>
  6028. <text x="1.27" y="0.381" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6029. <text x="1.27" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  6030. </package>
  6031. <package name="P-LCC-2">
  6032. <description>&lt;b&gt;TOPLED® High-optical Power LED (HOP)&lt;/b&gt;&lt;p&gt;
  6033. Source: http://www.osram.convergy.de/ ... ls_t675.pdf</description>
  6034. <wire x1="-1.4" y1="-1.05" x2="-1.4" y2="-1.6" width="0.2032" layer="51"/>
  6035. <wire x1="-1.4" y1="-1.6" x2="-1.1" y2="-1.6" width="0.2032" layer="51"/>
  6036. <wire x1="-1.1" y1="-1.6" x2="-0.85" y2="-1.6" width="0.2032" layer="51"/>
  6037. <wire x1="-0.85" y1="-1.6" x2="1.1" y2="-1.6" width="0.2032" layer="51"/>
  6038. <wire x1="1.1" y1="-1.6" x2="1.4" y2="-1.6" width="0.2032" layer="51"/>
  6039. <wire x1="1.4" y1="-1.6" x2="1.4" y2="1.6" width="0.2032" layer="51"/>
  6040. <wire x1="1.4" y1="1.6" x2="1.1" y2="1.6" width="0.2032" layer="51"/>
  6041. <wire x1="1.1" y1="1.6" x2="-1.1" y2="1.6" width="0.2032" layer="51"/>
  6042. <wire x1="-1.1" y1="1.6" x2="-1.4" y2="1.6" width="0.2032" layer="51"/>
  6043. <wire x1="-1.1" y1="1.6" x2="-1.1" y2="1.8" width="0.1016" layer="51"/>
  6044. <wire x1="-1.1" y1="1.8" x2="1.1" y2="1.8" width="0.1016" layer="51"/>
  6045. <wire x1="1.1" y1="1.8" x2="1.1" y2="1.6" width="0.1016" layer="51"/>
  6046. <wire x1="-1.1" y1="-1.6" x2="-1.1" y2="-1.8" width="0.1016" layer="51"/>
  6047. <wire x1="-1.1" y1="-1.8" x2="1.1" y2="-1.8" width="0.1016" layer="51"/>
  6048. <wire x1="1.1" y1="-1.8" x2="1.1" y2="-1.6" width="0.1016" layer="51"/>
  6049. <wire x1="-0.85" y1="-1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="51"/>
  6050. <wire x1="-1.4" y1="1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="51"/>
  6051. <circle x="0" y="0" radius="1.1" width="0.2032" layer="51"/>
  6052. <smd name="C" x="0" y="-2.75" dx="4" dy="4" layer="1" stop="no" cream="no"/>
  6053. <smd name="A" x="0" y="2.75" dx="4" dy="4" layer="1" stop="no" cream="no"/>
  6054. <text x="-2.54" y="-1.905" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6055. <text x="3.81" y="-1.905" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6056. <text x="-0.635" y="2.54" size="1.27" layer="21">A</text>
  6057. <text x="-0.635" y="-3.81" size="1.27" layer="21">C</text>
  6058. <rectangle x1="-1.3" y1="-2.25" x2="1.3" y2="-0.75" layer="31"/>
  6059. <rectangle x1="-1.3" y1="0.75" x2="1.3" y2="2.25" layer="31"/>
  6060. <rectangle x1="-0.25" y1="-0.25" x2="0.25" y2="0.25" layer="21"/>
  6061. <rectangle x1="-1.4" y1="0.65" x2="1.4" y2="2.35" layer="29"/>
  6062. <rectangle x1="-1.4" y1="-2.35" x2="1.4" y2="-0.65" layer="29"/>
  6063. </package>
  6064. <package name="OSRAM-MINI-TOP-LED">
  6065. <description>&lt;b&gt;BLUE LINETM Hyper Mini TOPLED® Hyper-Bright LED&lt;/b&gt;&lt;p&gt;
  6066. Source: http://www.osram.convergy.de/ ... LB M676.pdf</description>
  6067. <wire x1="-0.6" y1="0.9" x2="-0.6" y2="-0.7" width="0.1016" layer="51"/>
  6068. <wire x1="-0.45" y1="-0.9" x2="-0.4" y2="-0.9" width="0.1016" layer="51"/>
  6069. <wire x1="-0.4" y1="-0.9" x2="0.6" y2="-0.9" width="0.1016" layer="51"/>
  6070. <wire x1="0.6" y1="-0.9" x2="0.6" y2="0.9" width="0.1016" layer="51"/>
  6071. <wire x1="0.6" y1="0.9" x2="-0.6" y2="0.9" width="0.1016" layer="51"/>
  6072. <wire x1="-0.45" y1="0.95" x2="-0.45" y2="1.1" width="0.1016" layer="51"/>
  6073. <wire x1="-0.45" y1="1.1" x2="0.45" y2="1.1" width="0.1016" layer="51"/>
  6074. <wire x1="0.45" y1="1.1" x2="0.45" y2="0.95" width="0.1016" layer="51"/>
  6075. <wire x1="-0.6" y1="-0.7" x2="-0.4" y2="-0.9" width="0.1016" layer="51"/>
  6076. <wire x1="-0.45" y1="-0.9" x2="-0.45" y2="-1.1" width="0.1016" layer="51"/>
  6077. <wire x1="-0.45" y1="-1.1" x2="0.45" y2="-1.1" width="0.1016" layer="51"/>
  6078. <wire x1="0.45" y1="-1.1" x2="0.45" y2="-0.95" width="0.1016" layer="51"/>
  6079. <smd name="A" x="0" y="2.6" dx="4" dy="4" layer="1" stop="no" cream="no"/>
  6080. <smd name="C" x="0" y="-2.6" dx="4" dy="4" layer="1" stop="no" cream="no"/>
  6081. <text x="-0.635" y="1.905" size="1.27" layer="21">A</text>
  6082. <text x="-0.635" y="-3.175" size="1.27" layer="21">C</text>
  6083. <text x="-2.54" y="-1.905" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6084. <text x="3.81" y="-1.905" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6085. <rectangle x1="-0.5" y1="0.6" x2="0.5" y2="1.4" layer="29"/>
  6086. <rectangle x1="-0.5" y1="-1.4" x2="0.5" y2="-0.6" layer="29"/>
  6087. <rectangle x1="-0.15" y1="-0.6" x2="0.15" y2="-0.3" layer="51"/>
  6088. <rectangle x1="-0.45" y1="0.65" x2="0.45" y2="1.35" layer="31"/>
  6089. <rectangle x1="-0.45" y1="-1.35" x2="0.45" y2="-0.65" layer="31"/>
  6090. </package>
  6091. <package name="OSRAM-SIDELED">
  6092. <description>&lt;b&gt;Super SIDELED® High-Current LED&lt;/b&gt;&lt;p&gt;
  6093. LG A672, LP A672 &lt;br&gt;
  6094. Source: http://www.osram.convergy.de/ ... LG_LP_A672.pdf (2004.05.13)</description>
  6095. <wire x1="-1.85" y1="-2.05" x2="-1.85" y2="-0.75" width="0.1016" layer="51"/>
  6096. <wire x1="-1.85" y1="-0.75" x2="-1.7" y2="-0.75" width="0.1016" layer="51"/>
  6097. <wire x1="-1.7" y1="-0.75" x2="-1.7" y2="0.75" width="0.1016" layer="51"/>
  6098. <wire x1="-1.7" y1="0.75" x2="-1.85" y2="0.75" width="0.1016" layer="51"/>
  6099. <wire x1="-1.85" y1="0.75" x2="-1.85" y2="2.05" width="0.1016" layer="51"/>
  6100. <wire x1="-1.85" y1="2.05" x2="0.9" y2="2.05" width="0.1016" layer="51"/>
  6101. <wire x1="0.9" y1="2.05" x2="0.9" y2="-2.05" width="0.1016" layer="51"/>
  6102. <wire x1="0.9" y1="-2.05" x2="-1.85" y2="-2.05" width="0.1016" layer="51"/>
  6103. <wire x1="0.9" y1="-2.05" x2="1.05" y2="-2.05" width="0.1016" layer="51"/>
  6104. <wire x1="1.05" y1="-2.05" x2="1.85" y2="-1.85" width="0.1016" layer="51"/>
  6105. <wire x1="1.85" y1="-1.85" x2="1.85" y2="1.85" width="0.1016" layer="51"/>
  6106. <wire x1="1.85" y1="1.85" x2="1.05" y2="2.05" width="0.1016" layer="51"/>
  6107. <wire x1="1.05" y1="2.05" x2="0.9" y2="2.05" width="0.1016" layer="51"/>
  6108. <wire x1="1.05" y1="2.05" x2="1.05" y2="-2.05" width="0.1016" layer="51"/>
  6109. <wire x1="-0.55" y1="-0.9" x2="-0.55" y2="0.9" width="0.1016" layer="51" curve="-167.319617"/>
  6110. <wire x1="-0.55" y1="-0.9" x2="0.85" y2="-1.2" width="0.1016" layer="51" style="shortdash"/>
  6111. <wire x1="-0.55" y1="0.9" x2="0.85" y2="1.2" width="0.1016" layer="51" style="shortdash"/>
  6112. <smd name="C" x="0" y="-2.5" dx="4" dy="4" layer="1" stop="no" cream="no"/>
  6113. <smd name="A" x="0" y="2.5" dx="4" dy="4" layer="1" stop="no" cream="no"/>
  6114. <text x="0.635" y="-3.175" size="1.27" layer="21" rot="R90">C</text>
  6115. <text x="0.635" y="2.54" size="1.27" layer="21" rot="R90">A</text>
  6116. <text x="-2.54" y="-2.54" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6117. <text x="3.81" y="-2.54" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6118. <rectangle x1="-2.1" y1="-2.2" x2="2.1" y2="-0.4" layer="29"/>
  6119. <rectangle x1="-2.1" y1="0.4" x2="2.1" y2="2.2" layer="29"/>
  6120. <rectangle x1="-1.9" y1="-2.1" x2="1.9" y2="-0.6" layer="31"/>
  6121. <rectangle x1="-1.9" y1="0.6" x2="1.9" y2="2.1" layer="31"/>
  6122. <rectangle x1="-1.85" y1="-2.05" x2="-0.7" y2="-1" layer="51"/>
  6123. </package>
  6124. <package name="SMART-LED">
  6125. <description>&lt;b&gt;SmartLEDTM Hyper-Bright LED&lt;/b&gt;&lt;p&gt;
  6126. Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY L896.pdf</description>
  6127. <wire x1="-0.35" y1="0.6" x2="0.35" y2="0.6" width="0.1016" layer="51" style="shortdash"/>
  6128. <wire x1="0.35" y1="0.6" x2="0.35" y2="-0.6" width="0.1016" layer="21" style="shortdash"/>
  6129. <wire x1="0.35" y1="-0.6" x2="0.15" y2="-0.6" width="0.1016" layer="51" style="shortdash"/>
  6130. <wire x1="0.15" y1="-0.6" x2="-0.35" y2="-0.6" width="0.1016" layer="51" style="shortdash"/>
  6131. <wire x1="-0.35" y1="-0.6" x2="-0.35" y2="0.6" width="0.1016" layer="21" style="shortdash"/>
  6132. <wire x1="0.35" y1="-0.4" x2="0.15" y2="-0.6" width="0.1016" layer="51" style="shortdash"/>
  6133. <smd name="A" x="0" y="0.725" dx="0.35" dy="0.35" layer="1"/>
  6134. <smd name="B" x="0" y="-0.725" dx="0.35" dy="0.35" layer="1"/>
  6135. <text x="-0.635" y="-0.635" size="1.016" layer="25" rot="R90">&gt;NAME</text>
  6136. <text x="1.905" y="-0.635" size="1.016" layer="27" rot="R90">&gt;VALUE</text>
  6137. <rectangle x1="-0.15" y1="-0.35" x2="0.15" y2="-0.05" layer="21"/>
  6138. <rectangle x1="-0.15" y1="0.6" x2="0.15" y2="0.85" layer="51"/>
  6139. <rectangle x1="-0.15" y1="-0.85" x2="0.15" y2="-0.6" layer="51"/>
  6140. </package>
  6141. <package name="P-LCC-2-TOPLED-RG">
  6142. <description>&lt;b&gt;Hyper TOPLED® RG Hyper-Bright LED&lt;/b&gt;&lt;p&gt;
  6143. Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY T776.pdf</description>
  6144. <wire x1="-1.4" y1="-1.05" x2="-1.4" y2="-1.6" width="0.2032" layer="51"/>
  6145. <wire x1="-1.4" y1="-1.6" x2="-1.1" y2="-1.6" width="0.2032" layer="51"/>
  6146. <wire x1="-1.1" y1="-1.6" x2="-0.85" y2="-1.6" width="0.2032" layer="51"/>
  6147. <wire x1="-0.85" y1="-1.6" x2="1.1" y2="-1.6" width="0.2032" layer="51"/>
  6148. <wire x1="1.1" y1="-1.6" x2="1.4" y2="-1.6" width="0.2032" layer="51"/>
  6149. <wire x1="1.4" y1="-1.6" x2="1.4" y2="1.6" width="0.2032" layer="51"/>
  6150. <wire x1="1.4" y1="1.6" x2="1.1" y2="1.6" width="0.2032" layer="51"/>
  6151. <wire x1="1.1" y1="1.6" x2="-1.1" y2="1.6" width="0.2032" layer="51"/>
  6152. <wire x1="-1.1" y1="1.6" x2="-1.4" y2="1.6" width="0.2032" layer="51"/>
  6153. <wire x1="-1.1" y1="1.6" x2="-1.1" y2="2.45" width="0.1016" layer="51"/>
  6154. <wire x1="1.1" y1="2.45" x2="1.1" y2="1.6" width="0.1016" layer="51"/>
  6155. <wire x1="-1.1" y1="-1.6" x2="-1.1" y2="-2.45" width="0.1016" layer="51"/>
  6156. <wire x1="1.1" y1="-2.45" x2="1.1" y2="-1.6" width="0.1016" layer="51"/>
  6157. <wire x1="-0.85" y1="-1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="51"/>
  6158. <wire x1="-1.4" y1="1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="51"/>
  6159. <circle x="0" y="0" radius="1.1" width="0.2032" layer="21"/>
  6160. <smd name="C" x="0" y="-3.5" dx="4" dy="4" layer="1" stop="no" cream="no"/>
  6161. <smd name="A" x="0" y="3.5" dx="4" dy="4" layer="1" stop="no" cream="no"/>
  6162. <text x="-2.54" y="-1.905" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6163. <text x="3.81" y="-1.905" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6164. <text x="-0.635" y="3.29" size="1.27" layer="21">A</text>
  6165. <text x="-0.635" y="-4.56" size="1.27" layer="21">C</text>
  6166. <rectangle x1="-1.3" y1="-3" x2="1.3" y2="-1.5" layer="31"/>
  6167. <rectangle x1="-1.3" y1="1.5" x2="1.3" y2="3" layer="31"/>
  6168. <rectangle x1="-0.25" y1="-0.25" x2="0.25" y2="0.25" layer="21"/>
  6169. <rectangle x1="-1.15" y1="2.4" x2="1.15" y2="2.7" layer="51"/>
  6170. <rectangle x1="-1.15" y1="-2.7" x2="1.15" y2="-2.4" layer="51"/>
  6171. <rectangle x1="-1.5" y1="1.5" x2="1.5" y2="3.2" layer="29"/>
  6172. <rectangle x1="-1.5" y1="-3.2" x2="1.5" y2="-1.5" layer="29"/>
  6173. <hole x="0" y="0" drill="2.8"/>
  6174. </package>
  6175. <package name="MICRO-SIDELED">
  6176. <description>&lt;b&gt;Hyper Micro SIDELED®&lt;/b&gt;&lt;p&gt;
  6177. Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY Y876.pdf</description>
  6178. <wire x1="0.65" y1="1.1" x2="-0.1" y2="1.1" width="0.1016" layer="51"/>
  6179. <wire x1="-0.1" y1="1.1" x2="-0.35" y2="1" width="0.1016" layer="51"/>
  6180. <wire x1="-0.35" y1="1" x2="-0.35" y2="-0.9" width="0.1016" layer="21"/>
  6181. <wire x1="-0.35" y1="-0.9" x2="-0.1" y2="-1.1" width="0.1016" layer="51"/>
  6182. <wire x1="-0.1" y1="-1.1" x2="0.65" y2="-1.1" width="0.1016" layer="51"/>
  6183. <wire x1="0.65" y1="-1.1" x2="0.65" y2="1.1" width="0.1016" layer="21"/>
  6184. <wire x1="0.6" y1="0.9" x2="0.25" y2="0.7" width="0.0508" layer="21"/>
  6185. <wire x1="0.25" y1="0.7" x2="0.25" y2="-0.7" width="0.0508" layer="21"/>
  6186. <wire x1="0.25" y1="-0.7" x2="0.6" y2="-0.9" width="0.0508" layer="21"/>
  6187. <smd name="A" x="0" y="1.95" dx="1.6" dy="1.6" layer="1" stop="no" cream="no"/>
  6188. <smd name="C" x="0" y="-1.95" dx="1.6" dy="1.6" layer="1" stop="no" cream="no"/>
  6189. <text x="-1.27" y="-1.905" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6190. <text x="2.54" y="-1.905" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6191. <rectangle x1="-0.4" y1="1.1" x2="0.4" y2="1.8" layer="29"/>
  6192. <rectangle x1="-0.4" y1="-1.8" x2="0.4" y2="-1.1" layer="29"/>
  6193. <rectangle x1="-0.35" y1="-1.75" x2="0.35" y2="-1.15" layer="31"/>
  6194. <rectangle x1="-0.35" y1="1.15" x2="0.35" y2="1.75" layer="31"/>
  6195. <rectangle x1="-0.125" y1="1.125" x2="0.125" y2="1.75" layer="51"/>
  6196. <rectangle x1="-0.125" y1="-1.75" x2="0.125" y2="-1.125" layer="51"/>
  6197. </package>
  6198. <package name="P-LCC-4">
  6199. <description>&lt;b&gt;Power TOPLED®&lt;/b&gt;&lt;p&gt;
  6200. Source: http://www.osram.convergy.de/ ... LA_LO_LA_LY E67B.pdf</description>
  6201. <wire x1="-1.4" y1="-1.05" x2="-1.4" y2="-1.6" width="0.2032" layer="51"/>
  6202. <wire x1="-1.4" y1="-1.6" x2="-1" y2="-1.6" width="0.2032" layer="51"/>
  6203. <wire x1="-1" y1="-1.6" x2="-0.85" y2="-1.6" width="0.2032" layer="51"/>
  6204. <wire x1="-0.85" y1="-1.6" x2="1" y2="-1.6" width="0.2032" layer="51"/>
  6205. <wire x1="1" y1="-1.6" x2="1.4" y2="-1.6" width="0.2032" layer="51"/>
  6206. <wire x1="1.4" y1="-1.6" x2="1.4" y2="1.6" width="0.2032" layer="51"/>
  6207. <wire x1="1.4" y1="1.6" x2="1.1" y2="1.6" width="0.2032" layer="51"/>
  6208. <wire x1="1.1" y1="1.6" x2="-1" y2="1.6" width="0.2032" layer="51"/>
  6209. <wire x1="-1" y1="1.6" x2="-1.4" y2="1.6" width="0.2032" layer="51"/>
  6210. <wire x1="-1" y1="1.6" x2="-1" y2="1.8" width="0.1016" layer="51"/>
  6211. <wire x1="-1" y1="1.8" x2="-0.5" y2="1.8" width="0.1016" layer="51"/>
  6212. <wire x1="-0.5" y1="1.8" x2="-0.5" y2="1.65" width="0.1016" layer="51"/>
  6213. <wire x1="0.5" y1="1.65" x2="0.5" y2="1.8" width="0.1016" layer="51"/>
  6214. <wire x1="0.5" y1="1.8" x2="1.1" y2="1.8" width="0.1016" layer="51"/>
  6215. <wire x1="1.1" y1="1.8" x2="1.1" y2="1.6" width="0.1016" layer="51"/>
  6216. <wire x1="-1" y1="-1.6" x2="-1" y2="-1.8" width="0.1016" layer="51"/>
  6217. <wire x1="-1" y1="-1.8" x2="-0.5" y2="-1.8" width="0.1016" layer="51"/>
  6218. <wire x1="-0.5" y1="-1.8" x2="-0.5" y2="-1.65" width="0.1016" layer="51"/>
  6219. <wire x1="0.5" y1="-1.65" x2="0.5" y2="-1.8" width="0.1016" layer="51"/>
  6220. <wire x1="0.5" y1="-1.8" x2="1" y2="-1.8" width="0.1016" layer="51"/>
  6221. <wire x1="1" y1="-1.8" x2="1" y2="-1.6" width="0.1016" layer="51"/>
  6222. <wire x1="-0.85" y1="-1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="51"/>
  6223. <wire x1="-1.4" y1="1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="51"/>
  6224. <circle x="0" y="0" radius="1.1" width="0.2032" layer="51"/>
  6225. <smd name="A" x="-2" y="3.15" dx="3.3" dy="4.8" layer="1" stop="no" cream="no"/>
  6226. <smd name="C@3" x="2" y="3.15" dx="3.3" dy="4.8" layer="1" stop="no" cream="no"/>
  6227. <smd name="C@4" x="2" y="-3.15" dx="3.3" dy="4.8" layer="1" stop="no" cream="no"/>
  6228. <smd name="C@1" x="-2" y="-3.15" dx="3.3" dy="4.8" layer="1" stop="no" cream="no"/>
  6229. <text x="-3.81" y="-2.54" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6230. <text x="5.08" y="-2.54" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6231. <text x="-1.905" y="-3.81" size="1.27" layer="21">C</text>
  6232. <text x="-1.905" y="2.54" size="1.27" layer="21">A</text>
  6233. <text x="1.27" y="2.54" size="1.27" layer="21">C</text>
  6234. <text x="1.27" y="-3.81" size="1.27" layer="21">C</text>
  6235. <rectangle x1="-1.15" y1="0.75" x2="-0.35" y2="1.85" layer="29"/>
  6236. <rectangle x1="0.35" y1="0.75" x2="1.15" y2="1.85" layer="29"/>
  6237. <rectangle x1="0.35" y1="-1.85" x2="1.15" y2="-0.75" layer="29"/>
  6238. <rectangle x1="-1.15" y1="-1.85" x2="-0.35" y2="-0.75" layer="29"/>
  6239. <rectangle x1="-1.1" y1="-1.8" x2="-0.4" y2="-0.8" layer="31"/>
  6240. <rectangle x1="0.4" y1="-1.8" x2="1.1" y2="-0.8" layer="31"/>
  6241. <rectangle x1="0.4" y1="0.8" x2="1.1" y2="1.8" layer="31"/>
  6242. <rectangle x1="-1.1" y1="0.8" x2="-0.4" y2="1.8" layer="31"/>
  6243. <rectangle x1="-0.2" y1="-0.2" x2="0.2" y2="0.2" layer="21"/>
  6244. </package>
  6245. <package name="CHIP-LED0603">
  6246. <description>&lt;b&gt;Hyper CHIPLED Hyper-Bright LED&lt;/b&gt;&lt;p&gt;
  6247. LB Q993&lt;br&gt;
  6248. Source: http://www.osram.convergy.de/ ... Lb_q993.pdf</description>
  6249. <wire x1="-0.4" y1="0.45" x2="-0.4" y2="-0.45" width="0.1016" layer="51"/>
  6250. <wire x1="0.4" y1="0.45" x2="0.4" y2="-0.45" width="0.1016" layer="51"/>
  6251. <smd name="C" x="0" y="0.75" dx="0.8" dy="0.8" layer="1"/>
  6252. <smd name="A" x="0" y="-0.75" dx="0.8" dy="0.8" layer="1"/>
  6253. <text x="-0.635" y="-0.635" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6254. <text x="1.905" y="-0.635" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6255. <rectangle x1="-0.45" y1="0.45" x2="0.45" y2="0.85" layer="51"/>
  6256. <rectangle x1="-0.45" y1="-0.85" x2="0.45" y2="-0.45" layer="51"/>
  6257. <rectangle x1="-0.45" y1="0" x2="-0.3" y2="0.3" layer="21"/>
  6258. <rectangle x1="0.3" y1="0" x2="0.45" y2="0.3" layer="21"/>
  6259. <rectangle x1="-0.15" y1="0" x2="0.15" y2="0.3" layer="21"/>
  6260. </package>
  6261. <package name="CHIP-LED0805">
  6262. <description>&lt;b&gt;Hyper CHIPLED Hyper-Bright LED&lt;/b&gt;&lt;p&gt;
  6263. LB R99A&lt;br&gt;
  6264. Source: http://www.osram.convergy.de/ ... lb_r99a.pdf</description>
  6265. <wire x1="-0.625" y1="0.45" x2="-0.625" y2="-0.45" width="0.1016" layer="51"/>
  6266. <wire x1="0.625" y1="0.45" x2="0.625" y2="-0.475" width="0.1016" layer="51"/>
  6267. <smd name="C" x="0" y="1.05" dx="1.2" dy="1.2" layer="1"/>
  6268. <smd name="A" x="0" y="-1.05" dx="1.2" dy="1.2" layer="1"/>
  6269. <text x="-1.27" y="-1.27" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6270. <text x="2.54" y="-1.27" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6271. <rectangle x1="-0.675" y1="0" x2="-0.525" y2="0.3" layer="21"/>
  6272. <rectangle x1="0.525" y1="0" x2="0.675" y2="0.3" layer="21"/>
  6273. <rectangle x1="-0.15" y1="0" x2="0.15" y2="0.3" layer="21"/>
  6274. <rectangle x1="-0.675" y1="0.45" x2="0.675" y2="1.05" layer="51"/>
  6275. <rectangle x1="-0.675" y1="-1.05" x2="0.675" y2="-0.45" layer="51"/>
  6276. </package>
  6277. <package name="MINI-TOPLED-SANTANA">
  6278. <description>&lt;b&gt;Mini TOPLED Santana®&lt;/b&gt;&lt;p&gt;
  6279. Source: http://www.osram.convergy.de/ ... LG M470.pdf</description>
  6280. <wire x1="0.7" y1="-1" x2="0.35" y2="-1" width="0.1016" layer="21"/>
  6281. <wire x1="0.35" y1="-1" x2="-0.7" y2="-1" width="0.1016" layer="21"/>
  6282. <wire x1="-0.7" y1="-1" x2="-0.7" y2="1" width="0.1016" layer="21"/>
  6283. <wire x1="-0.7" y1="1" x2="0.7" y2="1" width="0.1016" layer="21"/>
  6284. <wire x1="0.7" y1="1" x2="0.7" y2="-0.65" width="0.1016" layer="21"/>
  6285. <wire x1="0.7" y1="-0.65" x2="0.7" y2="-1" width="0.1016" layer="21"/>
  6286. <wire x1="0.45" y1="-0.7" x2="-0.45" y2="-0.7" width="0.1016" layer="21"/>
  6287. <wire x1="-0.45" y1="-0.7" x2="-0.45" y2="0.7" width="0.1016" layer="21"/>
  6288. <wire x1="-0.45" y1="0.7" x2="0.45" y2="0.7" width="0.1016" layer="21"/>
  6289. <wire x1="0.45" y1="0.7" x2="0.45" y2="-0.7" width="0.1016" layer="21"/>
  6290. <wire x1="0.7" y1="-0.65" x2="0.35" y2="-1" width="0.1016" layer="21"/>
  6291. <smd name="C" x="0" y="-2.2" dx="1.6" dy="1.6" layer="1" stop="no" cream="no"/>
  6292. <smd name="A" x="0" y="2.2" dx="1.6" dy="1.6" layer="1" stop="no" cream="no"/>
  6293. <text x="-1.27" y="-1.905" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6294. <text x="2.54" y="-1.905" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6295. <rectangle x1="-0.55" y1="1.5" x2="0.55" y2="2.1" layer="29"/>
  6296. <rectangle x1="-0.55" y1="-2.1" x2="0.55" y2="-1.5" layer="29"/>
  6297. <rectangle x1="-0.5" y1="-2.05" x2="0.5" y2="-1.55" layer="31"/>
  6298. <rectangle x1="-0.5" y1="1.55" x2="0.5" y2="2.05" layer="31"/>
  6299. <rectangle x1="-0.2" y1="-0.4" x2="0.15" y2="-0.05" layer="21"/>
  6300. <rectangle x1="-0.5" y1="-2.1" x2="0.5" y2="-1.4" layer="51"/>
  6301. <rectangle x1="-0.5" y1="1.4" x2="0.5" y2="2.05" layer="51"/>
  6302. <rectangle x1="-0.5" y1="1" x2="0.5" y2="1.4" layer="21"/>
  6303. <rectangle x1="-0.5" y1="-1.4" x2="0.5" y2="-1.05" layer="21"/>
  6304. <hole x="0" y="0" drill="2.7"/>
  6305. </package>
  6306. <package name="CHIPLED_0805">
  6307. <description>&lt;b&gt;CHIPLED&lt;/b&gt;&lt;p&gt;
  6308. Source: http://www.osram.convergy.de/ ... LG_R971.pdf</description>
  6309. <wire x1="-0.35" y1="0.925" x2="0.35" y2="0.925" width="0.1016" layer="51" curve="162.394521"/>
  6310. <wire x1="-0.35" y1="-0.925" x2="0.35" y2="-0.925" width="0.1016" layer="51" curve="-162.394521"/>
  6311. <wire x1="0.575" y1="0.525" x2="0.575" y2="-0.525" width="0.1016" layer="51"/>
  6312. <wire x1="-0.575" y1="-0.5" x2="-0.575" y2="0.925" width="0.1016" layer="51"/>
  6313. <circle x="-0.45" y="0.85" radius="0.103" width="0.1016" layer="51"/>
  6314. <smd name="C" x="0" y="1.05" dx="1.2" dy="1.2" layer="1"/>
  6315. <smd name="A" x="0" y="-1.05" dx="1.2" dy="1.2" layer="1"/>
  6316. <text x="-1.27" y="-1.27" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6317. <text x="2.54" y="-1.27" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6318. <rectangle x1="0.3" y1="0.5" x2="0.625" y2="1" layer="51"/>
  6319. <rectangle x1="-0.325" y1="0.5" x2="-0.175" y2="0.75" layer="51"/>
  6320. <rectangle x1="0.175" y1="0.5" x2="0.325" y2="0.75" layer="51"/>
  6321. <rectangle x1="-0.2" y1="0.5" x2="0.2" y2="0.675" layer="51"/>
  6322. <rectangle x1="0.3" y1="-1" x2="0.625" y2="-0.5" layer="51"/>
  6323. <rectangle x1="-0.625" y1="-1" x2="-0.3" y2="-0.5" layer="51"/>
  6324. <rectangle x1="0.175" y1="-0.75" x2="0.325" y2="-0.5" layer="51"/>
  6325. <rectangle x1="-0.325" y1="-0.75" x2="-0.175" y2="-0.5" layer="51"/>
  6326. <rectangle x1="-0.2" y1="-0.675" x2="0.2" y2="-0.5" layer="51"/>
  6327. <rectangle x1="-0.1" y1="0" x2="0.1" y2="0.2" layer="21"/>
  6328. <rectangle x1="-0.6" y1="0.5" x2="-0.3" y2="0.8" layer="51"/>
  6329. <rectangle x1="-0.625" y1="0.925" x2="-0.3" y2="1" layer="51"/>
  6330. </package>
  6331. <package name="CHIPLED_1206">
  6332. <description>&lt;b&gt;CHIPLED&lt;/b&gt;&lt;p&gt;
  6333. Source: http://www.osram.convergy.de/ ... LG_LY N971.pdf</description>
  6334. <wire x1="-0.4" y1="1.6" x2="0.4" y2="1.6" width="0.1016" layer="51" curve="172.619069"/>
  6335. <wire x1="-0.8" y1="-0.95" x2="-0.8" y2="0.95" width="0.1016" layer="51"/>
  6336. <wire x1="0.8" y1="0.95" x2="0.8" y2="-0.95" width="0.1016" layer="51"/>
  6337. <circle x="-0.55" y="1.425" radius="0.1" width="0.1016" layer="51"/>
  6338. <smd name="C" x="0" y="1.75" dx="1.5" dy="1.5" layer="1"/>
  6339. <smd name="A" x="0" y="-1.75" dx="1.5" dy="1.5" layer="1"/>
  6340. <text x="-1.27" y="-1.27" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6341. <text x="2.54" y="-1.27" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6342. <rectangle x1="-0.85" y1="1.525" x2="-0.35" y2="1.65" layer="51"/>
  6343. <rectangle x1="-0.85" y1="1.225" x2="-0.625" y2="1.55" layer="51"/>
  6344. <rectangle x1="-0.45" y1="1.225" x2="-0.325" y2="1.45" layer="51"/>
  6345. <rectangle x1="-0.65" y1="1.225" x2="-0.225" y2="1.35" layer="51"/>
  6346. <rectangle x1="0.35" y1="1.3" x2="0.85" y2="1.65" layer="51"/>
  6347. <rectangle x1="0.25" y1="1.225" x2="0.85" y2="1.35" layer="51"/>
  6348. <rectangle x1="-0.85" y1="0.95" x2="0.85" y2="1.25" layer="51"/>
  6349. <rectangle x1="-0.85" y1="-1.65" x2="0.85" y2="-0.95" layer="51"/>
  6350. <rectangle x1="-0.85" y1="0.35" x2="-0.525" y2="0.775" layer="21"/>
  6351. <rectangle x1="0.525" y1="0.35" x2="0.85" y2="0.775" layer="21"/>
  6352. <rectangle x1="-0.175" y1="0" x2="0.175" y2="0.35" layer="21"/>
  6353. </package>
  6354. <package name="CHIPLED_0603">
  6355. <description>&lt;b&gt;CHIPLED&lt;/b&gt;&lt;p&gt;
  6356. Source: http://www.osram.convergy.de/ ... LG_LY Q971.pdf</description>
  6357. <wire x1="-0.3" y1="0.8" x2="0.3" y2="0.8" width="0.1016" layer="51" curve="170.055574"/>
  6358. <wire x1="-0.275" y1="-0.825" x2="0.275" y2="-0.825" width="0.0508" layer="51" curve="-180"/>
  6359. <wire x1="-0.4" y1="0.375" x2="-0.4" y2="-0.35" width="0.1016" layer="51"/>
  6360. <wire x1="0.4" y1="0.35" x2="0.4" y2="-0.35" width="0.1016" layer="51"/>
  6361. <circle x="-0.35" y="0.625" radius="0.075" width="0.0508" layer="51"/>
  6362. <smd name="C" x="0" y="0.75" dx="0.8" dy="0.8" layer="1"/>
  6363. <smd name="A" x="0" y="-0.75" dx="0.8" dy="0.8" layer="1"/>
  6364. <text x="-0.635" y="-1.27" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6365. <text x="1.905" y="-1.27" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6366. <rectangle x1="-0.45" y1="0.7" x2="-0.25" y2="0.85" layer="51"/>
  6367. <rectangle x1="-0.275" y1="0.55" x2="-0.225" y2="0.6" layer="51"/>
  6368. <rectangle x1="-0.45" y1="0.35" x2="-0.4" y2="0.725" layer="51"/>
  6369. <rectangle x1="0.25" y1="0.55" x2="0.45" y2="0.85" layer="51"/>
  6370. <rectangle x1="-0.45" y1="0.35" x2="0.45" y2="0.575" layer="51"/>
  6371. <rectangle x1="-0.45" y1="-0.85" x2="-0.25" y2="-0.35" layer="51"/>
  6372. <rectangle x1="0.25" y1="-0.85" x2="0.45" y2="-0.35" layer="51"/>
  6373. <rectangle x1="-0.275" y1="-0.575" x2="0.275" y2="-0.35" layer="51"/>
  6374. <rectangle x1="-0.275" y1="-0.65" x2="-0.175" y2="-0.55" layer="51"/>
  6375. <rectangle x1="0.175" y1="-0.65" x2="0.275" y2="-0.55" layer="51"/>
  6376. <rectangle x1="-0.125" y1="0" x2="0.125" y2="0.25" layer="21"/>
  6377. </package>
  6378. <package name="CHIPLED-0603-TTW">
  6379. <description>&lt;b&gt;CHIPLED-0603&lt;/b&gt;&lt;p&gt;
  6380. Recommended Solder Pad useable for SmartLEDTM and Chipled - Package 0603&lt;br&gt;
  6381. Package able to withstand TTW-soldering heat&lt;br&gt;
  6382. Package suitable for TTW-soldering&lt;br&gt;
  6383. Source: http://www.osram.convergy.de/ ... LO_LS_LY L89K.pdf</description>
  6384. <wire x1="-0.3" y1="0.8" x2="0.3" y2="0.8" width="0.1016" layer="51" curve="170.055574"/>
  6385. <wire x1="-0.275" y1="-0.825" x2="0.275" y2="-0.825" width="0.0508" layer="51" curve="-180"/>
  6386. <wire x1="-0.4" y1="0.375" x2="-0.4" y2="-0.35" width="0.1016" layer="51"/>
  6387. <wire x1="0.4" y1="0.35" x2="0.4" y2="-0.35" width="0.1016" layer="51"/>
  6388. <circle x="-0.35" y="0.625" radius="0.075" width="0.0508" layer="51"/>
  6389. <smd name="C" x="0" y="0.875" dx="0.8" dy="0.5" layer="1" stop="no" cream="no"/>
  6390. <smd name="A" x="0" y="-0.875" dx="0.8" dy="0.5" layer="1" stop="no" cream="no"/>
  6391. <smd name="A@1" x="0" y="-0.5" dx="0.35" dy="0.35" layer="1"/>
  6392. <smd name="C@1" x="0" y="0.5" dx="0.35" dy="0.35" layer="1"/>
  6393. <text x="-0.635" y="-1.27" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6394. <text x="1.905" y="-1.27" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6395. <rectangle x1="-0.45" y1="0.7" x2="-0.25" y2="0.85" layer="51"/>
  6396. <rectangle x1="-0.275" y1="0.55" x2="-0.225" y2="0.6" layer="51"/>
  6397. <rectangle x1="-0.45" y1="0.35" x2="-0.4" y2="0.725" layer="51"/>
  6398. <rectangle x1="0.25" y1="0.55" x2="0.45" y2="0.85" layer="51"/>
  6399. <rectangle x1="-0.45" y1="0.35" x2="0.45" y2="0.575" layer="51"/>
  6400. <rectangle x1="-0.45" y1="-0.85" x2="-0.25" y2="-0.35" layer="51"/>
  6401. <rectangle x1="0.25" y1="-0.85" x2="0.45" y2="-0.35" layer="51"/>
  6402. <rectangle x1="-0.275" y1="-0.575" x2="0.275" y2="-0.35" layer="51"/>
  6403. <rectangle x1="-0.275" y1="-0.65" x2="-0.175" y2="-0.55" layer="51"/>
  6404. <rectangle x1="0.175" y1="-0.65" x2="0.275" y2="-0.55" layer="51"/>
  6405. <rectangle x1="-0.125" y1="0" x2="0.125" y2="0.25" layer="21"/>
  6406. <rectangle x1="-0.175" y1="0.325" x2="0.175" y2="0.7" layer="29"/>
  6407. <rectangle x1="-0.4" y1="0.625" x2="0.4" y2="1.125" layer="29"/>
  6408. <rectangle x1="-0.4" y1="-1.125" x2="0.4" y2="-0.625" layer="29"/>
  6409. <rectangle x1="-0.175" y1="-0.675" x2="0.175" y2="-0.325" layer="29"/>
  6410. </package>
  6411. <package name="SMARTLED-TTW">
  6412. <description>&lt;b&gt;SmartLED TTW&lt;/b&gt;&lt;p&gt;
  6413. Recommended Solder Pad useable for SmartLEDTM and Chipled - Package 0603&lt;br&gt;
  6414. Package able to withstand TTW-soldering heat&lt;br&gt;
  6415. Package suitable for TTW-soldering&lt;br&gt;
  6416. Source: http://www.osram.convergy.de/ ... LO_LS_LY L89K.pdf</description>
  6417. <wire x1="-0.35" y1="0.6" x2="0.35" y2="0.6" width="0.1016" layer="51" style="shortdash"/>
  6418. <wire x1="0.35" y1="0.6" x2="0.35" y2="-0.6" width="0.1016" layer="21" style="shortdash"/>
  6419. <wire x1="0.35" y1="-0.6" x2="0.15" y2="-0.6" width="0.1016" layer="51" style="shortdash"/>
  6420. <wire x1="0.15" y1="-0.6" x2="-0.35" y2="-0.6" width="0.1016" layer="51" style="shortdash"/>
  6421. <wire x1="-0.35" y1="-0.6" x2="-0.35" y2="0.6" width="0.1016" layer="21" style="shortdash"/>
  6422. <wire x1="0.35" y1="-0.4" x2="0.15" y2="-0.6" width="0.1016" layer="51" style="shortdash"/>
  6423. <smd name="C" x="0" y="0.875" dx="0.8" dy="0.5" layer="1" stop="no" cream="no"/>
  6424. <smd name="A" x="0" y="-0.875" dx="0.8" dy="0.5" layer="1" stop="no" cream="no"/>
  6425. <smd name="A@1" x="0" y="-0.5" dx="0.35" dy="0.35" layer="1" stop="no" cream="no"/>
  6426. <smd name="C@1" x="0" y="0.5" dx="0.35" dy="0.35" layer="1" stop="no" cream="no"/>
  6427. <text x="-0.635" y="-1.27" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6428. <text x="1.905" y="-1.27" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6429. <rectangle x1="-0.175" y1="0.325" x2="0.175" y2="0.7" layer="29"/>
  6430. <rectangle x1="-0.15" y1="-0.35" x2="0.15" y2="-0.05" layer="21"/>
  6431. <rectangle x1="-0.15" y1="0.6" x2="0.15" y2="0.85" layer="51"/>
  6432. <rectangle x1="-0.15" y1="-0.85" x2="0.15" y2="-0.6" layer="51"/>
  6433. <rectangle x1="-0.225" y1="0.3" x2="0.225" y2="0.975" layer="31"/>
  6434. <rectangle x1="-0.175" y1="-0.7" x2="0.175" y2="-0.325" layer="29" rot="R180"/>
  6435. <rectangle x1="-0.225" y1="-0.975" x2="0.225" y2="-0.3" layer="31" rot="R180"/>
  6436. </package>
  6437. <package name="LUMILED+">
  6438. <description>&lt;b&gt;Lumileds Lighting. LUXEON®&lt;/b&gt; with cool pad&lt;p&gt;
  6439. Source: K2.pdf</description>
  6440. <wire x1="-3.575" y1="2.3375" x2="-2.3375" y2="3.575" width="0.2032" layer="21"/>
  6441. <wire x1="-2.3375" y1="3.575" x2="2.3375" y2="3.575" width="0.2032" layer="21"/>
  6442. <wire x1="3.575" y1="2.3375" x2="3.575" y2="-3.575" width="0.2032" layer="21"/>
  6443. <wire x1="3.575" y1="-3.575" x2="-2.3375" y2="-3.575" width="0.2032" layer="21"/>
  6444. <wire x1="-2.3375" y1="-3.575" x2="-2.5" y2="-3.4125" width="0.2032" layer="21"/>
  6445. <wire x1="-2.5" y1="-3.4125" x2="-3.4125" y2="-2.5" width="0.2032" layer="21" curve="167.429893"/>
  6446. <wire x1="-3.4125" y1="-2.5" x2="-3.575" y2="-2.3375" width="0.2032" layer="21"/>
  6447. <wire x1="-3.575" y1="-2.3375" x2="-3.575" y2="2.3375" width="0.2032" layer="21"/>
  6448. <wire x1="2.3375" y1="3.575" x2="2.5" y2="3.4125" width="0.2032" layer="21"/>
  6449. <wire x1="2.5" y1="3.4125" x2="3.4125" y2="2.5" width="0.2032" layer="21" curve="167.429893"/>
  6450. <wire x1="3.4125" y1="2.5" x2="3.575" y2="2.3375" width="0.2032" layer="21"/>
  6451. <wire x1="-1.725" y1="2.225" x2="-1.0625" y2="2.5625" width="0.2032" layer="21" curve="-255.44999"/>
  6452. <wire x1="1.725" y1="-2.225" x2="1.0625" y2="-2.5625" width="0.2032" layer="21" curve="-255.44999"/>
  6453. <circle x="0" y="0" radius="2.725" width="0.2032" layer="51"/>
  6454. <smd name="1NC" x="-5.2" y="1.15" dx="2.9" dy="1.7" layer="1"/>
  6455. <smd name="2+" x="-5.2" y="-1.15" dx="2.9" dy="1.7" layer="1"/>
  6456. <smd name="3NC" x="5.2" y="-1.15" dx="2.9" dy="1.7" layer="1" rot="R180"/>
  6457. <smd name="4-" x="5.2" y="1.15" dx="2.9" dy="1.7" layer="1" rot="R180"/>
  6458. <text x="-3.175" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  6459. <text x="-3.175" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  6460. <rectangle x1="-5.975" y1="0.575" x2="-3.625" y2="1.6" layer="51"/>
  6461. <rectangle x1="-5.975" y1="-1.6" x2="-3.625" y2="-0.575" layer="51"/>
  6462. <rectangle x1="3.625" y1="-1.6" x2="5.975" y2="-0.575" layer="51" rot="R180"/>
  6463. <rectangle x1="3.625" y1="0.575" x2="5.975" y2="1.6" layer="51" rot="R180"/>
  6464. <polygon width="0.4064" layer="1">
  6465. <vertex x="2.3383" y="1.35"/>
  6466. <vertex x="0" y="2.7"/>
  6467. <vertex x="-2.3383" y="1.35"/>
  6468. <vertex x="-2.3383" y="-1.35"/>
  6469. <vertex x="0" y="-2.7"/>
  6470. <vertex x="2.3383" y="-1.35"/>
  6471. </polygon>
  6472. <polygon width="0.4064" layer="29">
  6473. <vertex x="2.3383" y="1.35"/>
  6474. <vertex x="0" y="2.7"/>
  6475. <vertex x="-2.3383" y="1.35"/>
  6476. <vertex x="-2.3383" y="-1.35"/>
  6477. <vertex x="0" y="-2.7"/>
  6478. <vertex x="2.3383" y="-1.35"/>
  6479. </polygon>
  6480. <polygon width="0.4064" layer="31">
  6481. <vertex x="2.3383" y="1.35"/>
  6482. <vertex x="0" y="2.7"/>
  6483. <vertex x="-2.3383" y="1.35"/>
  6484. <vertex x="-2.3383" y="-1.35"/>
  6485. <vertex x="0" y="-2.7"/>
  6486. <vertex x="2.3383" y="-1.35"/>
  6487. </polygon>
  6488. </package>
  6489. <package name="LUMILED">
  6490. <description>&lt;b&gt;Lumileds Lighting. LUXEON®&lt;/b&gt; without cool pad&lt;p&gt;
  6491. Source: K2.pdf</description>
  6492. <wire x1="-3.575" y1="2.3375" x2="-2.3375" y2="3.575" width="0.2032" layer="21"/>
  6493. <wire x1="-2.3375" y1="3.575" x2="2.3375" y2="3.575" width="0.2032" layer="21"/>
  6494. <wire x1="3.575" y1="2.3375" x2="3.575" y2="-3.575" width="0.2032" layer="21"/>
  6495. <wire x1="3.575" y1="-3.575" x2="-2.3375" y2="-3.575" width="0.2032" layer="21"/>
  6496. <wire x1="-2.3375" y1="-3.575" x2="-2.5" y2="-3.4125" width="0.2032" layer="21"/>
  6497. <wire x1="-2.5" y1="-3.4125" x2="-3.4125" y2="-2.5" width="0.2032" layer="21" curve="167.429893"/>
  6498. <wire x1="-3.4125" y1="-2.5" x2="-3.575" y2="-2.3375" width="0.2032" layer="21"/>
  6499. <wire x1="-3.575" y1="-2.3375" x2="-3.575" y2="2.3375" width="0.2032" layer="21"/>
  6500. <wire x1="2.3375" y1="3.575" x2="2.5" y2="3.4125" width="0.2032" layer="21"/>
  6501. <wire x1="2.5" y1="3.4125" x2="3.4125" y2="2.5" width="0.2032" layer="21" curve="167.429893"/>
  6502. <wire x1="3.4125" y1="2.5" x2="3.575" y2="2.3375" width="0.2032" layer="21"/>
  6503. <wire x1="-1.725" y1="2.225" x2="-1.0625" y2="2.5625" width="0.2032" layer="21" curve="-255.44999"/>
  6504. <wire x1="1.725" y1="-2.225" x2="1.0625" y2="-2.5625" width="0.2032" layer="21" curve="-255.44999"/>
  6505. <circle x="0" y="0" radius="2.725" width="0.2032" layer="51"/>
  6506. <smd name="1NC" x="-5.2" y="1.15" dx="2.9" dy="1.7" layer="1"/>
  6507. <smd name="2+" x="-5.2" y="-1.15" dx="2.9" dy="1.7" layer="1"/>
  6508. <smd name="3NC" x="5.2" y="-1.15" dx="2.9" dy="1.7" layer="1" rot="R180"/>
  6509. <smd name="4-" x="5.2" y="1.15" dx="2.9" dy="1.7" layer="1" rot="R180"/>
  6510. <text x="-3.175" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  6511. <text x="-3.175" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  6512. <rectangle x1="-5.975" y1="0.575" x2="-3.625" y2="1.6" layer="51"/>
  6513. <rectangle x1="-5.975" y1="-1.6" x2="-3.625" y2="-0.575" layer="51"/>
  6514. <rectangle x1="3.625" y1="-1.6" x2="5.975" y2="-0.575" layer="51" rot="R180"/>
  6515. <rectangle x1="3.625" y1="0.575" x2="5.975" y2="1.6" layer="51" rot="R180"/>
  6516. <polygon width="0.4064" layer="29">
  6517. <vertex x="2.3383" y="1.35"/>
  6518. <vertex x="0" y="2.7"/>
  6519. <vertex x="-2.3383" y="1.35"/>
  6520. <vertex x="-2.3383" y="-1.35"/>
  6521. <vertex x="0" y="-2.7"/>
  6522. <vertex x="2.3383" y="-1.35"/>
  6523. </polygon>
  6524. <polygon width="0.4064" layer="31">
  6525. <vertex x="2.3383" y="1.35"/>
  6526. <vertex x="0" y="2.7"/>
  6527. <vertex x="-2.3383" y="1.35"/>
  6528. <vertex x="-2.3383" y="-1.35"/>
  6529. <vertex x="0" y="-2.7"/>
  6530. <vertex x="2.3383" y="-1.35"/>
  6531. </polygon>
  6532. </package>
  6533. <package name="LED10MM">
  6534. <description>&lt;B&gt;LED&lt;/B&gt;&lt;p&gt;
  6535. 10 mm, round</description>
  6536. <wire x1="5.08" y1="-2.54" x2="5.08" y2="2.54" width="0.254" layer="21" curve="-306.869898"/>
  6537. <wire x1="4.445" y1="0" x2="0" y2="-4.445" width="0.127" layer="21" curve="-90"/>
  6538. <wire x1="3.81" y1="0" x2="0" y2="-3.81" width="0.127" layer="21" curve="-90"/>
  6539. <wire x1="3.175" y1="0" x2="0" y2="-3.175" width="0.127" layer="21" curve="-90"/>
  6540. <wire x1="2.54" y1="0" x2="0" y2="-2.54" width="0.127" layer="21" curve="-90"/>
  6541. <wire x1="-4.445" y1="0" x2="0" y2="4.445" width="0.127" layer="21" curve="-90"/>
  6542. <wire x1="-3.81" y1="0" x2="0" y2="3.81" width="0.127" layer="21" curve="-90"/>
  6543. <wire x1="-3.175" y1="0" x2="0" y2="3.175" width="0.127" layer="21" curve="-90"/>
  6544. <wire x1="-2.54" y1="0" x2="0" y2="2.54" width="0.127" layer="21" curve="-90"/>
  6545. <wire x1="5.08" y1="2.54" x2="5.08" y2="-2.54" width="0.254" layer="21"/>
  6546. <circle x="0" y="0" radius="5.08" width="0.127" layer="21"/>
  6547. <pad name="K" x="1.27" y="0" drill="0.8128" diameter="1.6764" shape="square"/>
  6548. <pad name="A" x="-1.27" y="0" drill="0.8128" diameter="1.6764" shape="octagon"/>
  6549. <text x="6.35" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  6550. <text x="6.35" y="-1.27" size="1.27" layer="27">&gt;VALUE</text>
  6551. </package>
  6552. <package name="KA-3528ASYC">
  6553. <description>&lt;b&gt;SURFACE MOUNT LED LAMP&lt;/b&gt; 3.5x2.8mm&lt;p&gt;
  6554. Source: http://www.kingbright.com/manager/upload/pdf/KA-3528ASYC(Ver1189474662.1)</description>
  6555. <wire x1="-1.55" y1="1.35" x2="1.55" y2="1.35" width="0.1016" layer="21"/>
  6556. <wire x1="1.55" y1="1.35" x2="1.55" y2="-1.35" width="0.1016" layer="51"/>
  6557. <wire x1="1.55" y1="-1.35" x2="-1.55" y2="-1.35" width="0.1016" layer="21"/>
  6558. <wire x1="-1.55" y1="-1.35" x2="-1.55" y2="1.35" width="0.1016" layer="51"/>
  6559. <wire x1="-0.65" y1="0.95" x2="0.65" y2="0.95" width="0.1016" layer="21" curve="-68.40813"/>
  6560. <wire x1="0.65" y1="-0.95" x2="-0.65" y2="-0.95" width="0.1016" layer="21" curve="-68.40813"/>
  6561. <circle x="0" y="0" radius="1.15" width="0.1016" layer="51"/>
  6562. <smd name="A" x="-1.55" y="0" dx="1.5" dy="2.2" layer="1"/>
  6563. <smd name="C" x="1.55" y="0" dx="1.5" dy="2.2" layer="1"/>
  6564. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  6565. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6566. <rectangle x1="-1.75" y1="0.6" x2="-1.6" y2="1.1" layer="51"/>
  6567. <rectangle x1="-1.75" y1="-1.1" x2="-1.6" y2="-0.6" layer="51"/>
  6568. <rectangle x1="1.6" y1="-1.1" x2="1.75" y2="-0.6" layer="51" rot="R180"/>
  6569. <rectangle x1="1.6" y1="0.6" x2="1.75" y2="1.1" layer="51" rot="R180"/>
  6570. <polygon width="0.1016" layer="51">
  6571. <vertex x="1.55" y="-1.35"/>
  6572. <vertex x="1.55" y="-0.625"/>
  6573. <vertex x="0.825" y="-1.35"/>
  6574. </polygon>
  6575. <polygon width="0.1016" layer="21">
  6576. <vertex x="1.55" y="-1.35"/>
  6577. <vertex x="1.55" y="-1.175"/>
  6578. <vertex x="1" y="-1.175"/>
  6579. <vertex x="0.825" y="-1.35"/>
  6580. </polygon>
  6581. </package>
  6582. <package name="SML0805">
  6583. <description>&lt;b&gt;SML0805-2CW-TR (0805 PROFILE)&lt;/b&gt; COOL WHITE&lt;p&gt;
  6584. Source: http://www.ledtronics.com/ds/smd-0603/Dstr0093.pdf</description>
  6585. <wire x1="-0.95" y1="-0.55" x2="0.95" y2="-0.55" width="0.1016" layer="51"/>
  6586. <wire x1="0.95" y1="-0.55" x2="0.95" y2="0.55" width="0.1016" layer="51"/>
  6587. <wire x1="0.95" y1="0.55" x2="-0.95" y2="0.55" width="0.1016" layer="51"/>
  6588. <wire x1="-0.95" y1="0.55" x2="-0.95" y2="-0.55" width="0.1016" layer="51"/>
  6589. <wire x1="-0.175" y1="-0.025" x2="0" y2="0.15" width="0.0634" layer="21"/>
  6590. <wire x1="0" y1="0.15" x2="0.15" y2="0" width="0.0634" layer="21"/>
  6591. <wire x1="0.15" y1="0" x2="-0.025" y2="-0.175" width="0.0634" layer="21"/>
  6592. <wire x1="-0.025" y1="-0.175" x2="-0.175" y2="-0.025" width="0.0634" layer="21"/>
  6593. <circle x="-0.275" y="0.4" radius="0.125" width="0" layer="21"/>
  6594. <smd name="C" x="-1.05" y="0" dx="1.2" dy="1.2" layer="1"/>
  6595. <smd name="A" x="1.05" y="0" dx="1.2" dy="1.2" layer="1"/>
  6596. <text x="-1.5" y="1" size="1.27" layer="25">&gt;NAME</text>
  6597. <text x="-1.5" y="-2" size="1.27" layer="27">&gt;VALUE</text>
  6598. </package>
  6599. <package name="SML1206">
  6600. <description>&lt;b&gt;SML10XXKH-TR (HIGH INTENSITY) LED&lt;/b&gt;&lt;p&gt;
  6601. &lt;table&gt;
  6602. &lt;tr&gt;&lt;td&gt;SML10R3KH-TR&lt;/td&gt;&lt;td&gt;ULTRA RED&lt;/td&gt;&lt;/tr&gt;
  6603. &lt;tr&gt;&lt;td&gt;SML10E3KH-TR&lt;/td&gt;&lt;td&gt;SUPER REDSUPER BLUE&lt;/td&gt;&lt;/tr&gt;
  6604. &lt;tr&gt;&lt;td&gt;SML10O3KH-TR&lt;/td&gt;&lt;td&gt;SUPER ORANGE&lt;/td&gt;&lt;/tr&gt;
  6605. &lt;tr&gt;&lt;td&gt;SML10PY3KH-TR&lt;/td&gt;&lt;td&gt;PURE YELLOW&lt;/td&gt;&lt;/tr&gt;
  6606. &lt;tr&gt;&lt;td&gt;SML10OY3KH-TR&lt;/td&gt;&lt;td&gt;ULTRA YELLOW&lt;/td&gt;&lt;/tr&gt;
  6607. &lt;tr&gt;&lt;td&gt;SML10AG3KH-TR&lt;/td&gt;&lt;td&gt;AQUA GREEN&lt;/td&gt;&lt;/tr&gt;
  6608. &lt;tr&gt;&lt;td&gt;SML10BG3KH-TR&lt;/td&gt;&lt;td&gt;BLUE GREEN&lt;/td&gt;&lt;/tr&gt;
  6609. &lt;tr&gt;&lt;td&gt;SML10PB1KH-TR&lt;/td&gt;&lt;td&gt;SUPER BLUE&lt;/td&gt;&lt;/tr&gt;
  6610. &lt;tr&gt;&lt;td&gt;SML10CW1KH-TR&lt;/td&gt;&lt;td&gt;WHITE&lt;/td&gt;&lt;/tr&gt;
  6611. &lt;/table&gt;
  6612. Source: http://www.ledtronics.com/ds/smd-1206/dstr0094.PDF</description>
  6613. <wire x1="-1.5" y1="0.5" x2="-1.5" y2="-0.5" width="0.2032" layer="51" curve="-180"/>
  6614. <wire x1="1.5" y1="-0.5" x2="1.5" y2="0.5" width="0.2032" layer="51" curve="-180"/>
  6615. <wire x1="-1.55" y1="0.75" x2="1.55" y2="0.75" width="0.1016" layer="51"/>
  6616. <wire x1="1.55" y1="-0.75" x2="-1.55" y2="-0.75" width="0.1016" layer="51"/>
  6617. <circle x="-0.725" y="0.525" radius="0.125" width="0" layer="21"/>
  6618. <smd name="C" x="-1.75" y="0" dx="1.5" dy="1.5" layer="1"/>
  6619. <smd name="A" x="1.75" y="0" dx="1.5" dy="1.5" layer="1"/>
  6620. <text x="-1.5" y="1" size="1.27" layer="25">&gt;NAME</text>
  6621. <text x="-1.5" y="-2.5" size="1.27" layer="27">&gt;VALUE</text>
  6622. <rectangle x1="-1.6" y1="0.4" x2="-1.15" y2="0.8" layer="51"/>
  6623. <rectangle x1="-1.6" y1="-0.8" x2="-1.15" y2="-0.4" layer="51"/>
  6624. <rectangle x1="-1.175" y1="-0.6" x2="-1" y2="-0.275" layer="51"/>
  6625. <rectangle x1="1.15" y1="-0.8" x2="1.6" y2="-0.4" layer="51" rot="R180"/>
  6626. <rectangle x1="1.15" y1="0.4" x2="1.6" y2="0.8" layer="51" rot="R180"/>
  6627. <rectangle x1="1" y1="0.275" x2="1.175" y2="0.6" layer="51" rot="R180"/>
  6628. <rectangle x1="-0.1" y1="-0.1" x2="0.1" y2="0.1" layer="21"/>
  6629. </package>
  6630. <package name="SML0603">
  6631. <description>&lt;b&gt;SML0603-XXX (HIGH INTENSITY) LED&lt;/b&gt;&lt;p&gt;
  6632. &lt;table&gt;
  6633. &lt;tr&gt;&lt;td&gt;AG3K&lt;/td&gt;&lt;td&gt;AQUA GREEN&lt;/td&gt;&lt;/tr&gt;
  6634. &lt;tr&gt;&lt;td&gt;B1K&lt;/td&gt;&lt;td&gt;SUPER BLUE&lt;/td&gt;&lt;/tr&gt;
  6635. &lt;tr&gt;&lt;td&gt;R1K&lt;/td&gt;&lt;td&gt;SUPER RED&lt;/td&gt;&lt;/tr&gt;
  6636. &lt;tr&gt;&lt;td&gt;R3K&lt;/td&gt;&lt;td&gt;ULTRA RED&lt;/td&gt;&lt;/tr&gt;
  6637. &lt;tr&gt;&lt;td&gt;O3K&lt;/td&gt;&lt;td&gt;SUPER ORANGE&lt;/td&gt;&lt;/tr&gt;
  6638. &lt;tr&gt;&lt;td&gt;O3KH&lt;/td&gt;&lt;td&gt;SOFT ORANGE&lt;/td&gt;&lt;/tr&gt;
  6639. &lt;tr&gt;&lt;td&gt;Y3KH&lt;/td&gt;&lt;td&gt;SUPER YELLOW&lt;/td&gt;&lt;/tr&gt;
  6640. &lt;tr&gt;&lt;td&gt;Y3K&lt;/td&gt;&lt;td&gt;SUPER YELLOW&lt;/td&gt;&lt;/tr&gt;
  6641. &lt;tr&gt;&lt;td&gt;2CW&lt;/td&gt;&lt;td&gt;WHITE&lt;/td&gt;&lt;/tr&gt;
  6642. &lt;/table&gt;
  6643. Source: http://www.ledtronics.com/ds/smd-0603/Dstr0092.pdf</description>
  6644. <wire x1="-0.75" y1="0.35" x2="0.75" y2="0.35" width="0.1016" layer="51"/>
  6645. <wire x1="0.75" y1="0.35" x2="0.75" y2="-0.35" width="0.1016" layer="51"/>
  6646. <wire x1="0.75" y1="-0.35" x2="-0.75" y2="-0.35" width="0.1016" layer="51"/>
  6647. <wire x1="-0.75" y1="-0.35" x2="-0.75" y2="0.35" width="0.1016" layer="51"/>
  6648. <wire x1="-0.45" y1="0.3" x2="-0.45" y2="-0.3" width="0.1016" layer="51"/>
  6649. <wire x1="0.45" y1="0.3" x2="0.45" y2="-0.3" width="0.1016" layer="51"/>
  6650. <wire x1="-0.2" y1="0.35" x2="0.2" y2="0.35" width="0.1016" layer="21"/>
  6651. <wire x1="-0.2" y1="-0.35" x2="0.2" y2="-0.35" width="0.1016" layer="21"/>
  6652. <smd name="C" x="-0.75" y="0" dx="0.8" dy="0.8" layer="1"/>
  6653. <smd name="A" x="0.75" y="0" dx="0.8" dy="0.8" layer="1"/>
  6654. <text x="-1" y="1" size="1.27" layer="25">&gt;NAME</text>
  6655. <text x="-1" y="-2" size="1.27" layer="27">&gt;VALUE</text>
  6656. <rectangle x1="-0.4" y1="0.175" x2="0" y2="0.4" layer="51"/>
  6657. <rectangle x1="-0.25" y1="0.175" x2="0" y2="0.4" layer="21"/>
  6658. </package>
  6659. </packages>
  6660. <symbols>
  6661. <symbol name="LED">
  6662. <wire x1="1.27" y1="0" x2="0" y2="-2.54" width="0.254" layer="94"/>
  6663. <wire x1="0" y1="-2.54" x2="-1.27" y2="0" width="0.254" layer="94"/>
  6664. <wire x1="1.27" y1="-2.54" x2="0" y2="-2.54" width="0.254" layer="94"/>
  6665. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.254" layer="94"/>
  6666. <wire x1="1.27" y1="0" x2="0" y2="0" width="0.254" layer="94"/>
  6667. <wire x1="0" y1="0" x2="-1.27" y2="0" width="0.254" layer="94"/>
  6668. <wire x1="0" y1="0" x2="0" y2="-2.54" width="0.1524" layer="94"/>
  6669. <wire x1="-2.032" y1="-0.762" x2="-3.429" y2="-2.159" width="0.1524" layer="94"/>
  6670. <wire x1="-1.905" y1="-1.905" x2="-3.302" y2="-3.302" width="0.1524" layer="94"/>
  6671. <text x="3.556" y="-4.572" size="1.778" layer="95" rot="R90">&gt;NAME</text>
  6672. <text x="5.715" y="-4.572" size="1.778" layer="96" rot="R90">&gt;VALUE</text>
  6673. <pin name="C" x="0" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  6674. <pin name="A" x="0" y="2.54" visible="off" length="short" direction="pas" rot="R270"/>
  6675. <polygon width="0.1524" layer="94">
  6676. <vertex x="-3.429" y="-2.159"/>
  6677. <vertex x="-3.048" y="-1.27"/>
  6678. <vertex x="-2.54" y="-1.778"/>
  6679. </polygon>
  6680. <polygon width="0.1524" layer="94">
  6681. <vertex x="-3.302" y="-3.302"/>
  6682. <vertex x="-2.921" y="-2.413"/>
  6683. <vertex x="-2.413" y="-2.921"/>
  6684. </polygon>
  6685. </symbol>
  6686. </symbols>
  6687. <devicesets>
  6688. <deviceset name="LED" prefix="LED" uservalue="yes">
  6689. <description>&lt;b&gt;LED&lt;/b&gt;&lt;p&gt;
  6690. &lt;u&gt;OSRAM&lt;/u&gt;:&lt;br&gt;
  6691. - &lt;u&gt;CHIPLED&lt;/u&gt;&lt;br&gt;
  6692. LG R971, LG N971, LY N971, LG Q971, LY Q971, LO R971, LY R971
  6693. LH N974, LH R974&lt;br&gt;
  6694. LS Q976, LO Q976, LY Q976&lt;br&gt;
  6695. LO Q996&lt;br&gt;
  6696. - &lt;u&gt;Hyper CHIPLED&lt;/u&gt;&lt;br&gt;
  6697. LW Q18S&lt;br&gt;
  6698. LB Q993, LB Q99A, LB R99A&lt;br&gt;
  6699. - &lt;u&gt;SideLED&lt;/u&gt;&lt;br&gt;
  6700. LS A670, LO A670, LY A670, LG A670, LP A670&lt;br&gt;
  6701. LB A673, LV A673, LT A673, LW A673&lt;br&gt;
  6702. LH A674&lt;br&gt;
  6703. LY A675&lt;br&gt;
  6704. LS A676, LA A676, LO A676, LY A676, LW A676&lt;br&gt;
  6705. LS A679, LY A679, LG A679&lt;br&gt;
  6706. - &lt;u&gt;Hyper Micro SIDELED®&lt;/u&gt;&lt;br&gt;
  6707. LS Y876, LA Y876, LO Y876, LY Y876&lt;br&gt;
  6708. LT Y87S&lt;br&gt;
  6709. - &lt;u&gt;SmartLED&lt;/u&gt;&lt;br&gt;
  6710. LW L88C, LW L88S&lt;br&gt;
  6711. LB L89C, LB L89S, LG L890&lt;br&gt;
  6712. LS L89K, LO L89K, LY L89K&lt;br&gt;
  6713. LS L896, LA L896, LO L896, LY L896&lt;br&gt;
  6714. - &lt;u&gt;TOPLED&lt;/u&gt;&lt;br&gt;
  6715. LS T670, LO T670, LY T670, LG T670, LP T670&lt;br&gt;
  6716. LSG T670, LSP T670, LSY T670, LOP T670, LYG T670&lt;br&gt;
  6717. LG T671, LOG T671, LSG T671&lt;br&gt;
  6718. LB T673, LV T673, LT T673, LW T673&lt;br&gt;
  6719. LH T674&lt;br&gt;
  6720. LS T676, LA T676, LO T676, LY T676, LB T676, LH T676, LSB T676, LW T676&lt;br&gt;
  6721. LB T67C, LV T67C, LT T67C, LS T67K, LO T67K, LY T67K, LW E67C&lt;br&gt;
  6722. LS E67B, LA E67B, LO E67B, LY E67B, LB E67C, LV E67C, LT E67C&lt;br&gt;
  6723. LW T67C&lt;br&gt;
  6724. LS T679, LY T679, LG T679&lt;br&gt;
  6725. LS T770, LO T770, LY T770, LG T770, LP T770&lt;br&gt;
  6726. LB T773, LV T773, LT T773, LW T773&lt;br&gt;
  6727. LH T774&lt;br&gt;
  6728. LS E675, LA E675, LY E675, LS T675&lt;br&gt;
  6729. LS T776, LA T776, LO T776, LY T776, LB T776&lt;br&gt;
  6730. LHGB T686&lt;br&gt;
  6731. LT T68C, LB T68C&lt;br&gt;
  6732. - &lt;u&gt;Hyper Mini TOPLED®&lt;/u&gt;&lt;br&gt;
  6733. LB M676&lt;br&gt;
  6734. - &lt;u&gt;Mini TOPLED Santana®&lt;/u&gt;&lt;br&gt;
  6735. LG M470&lt;br&gt;
  6736. LS M47K, LO M47K, LY M47K
  6737. &lt;p&gt;
  6738. Source: http://www.osram.convergy.de&lt;p&gt;
  6739. &lt;u&gt;LUXEON:&lt;/u&gt;&lt;br&gt;
  6740. - &lt;u&gt;LUMILED®&lt;/u&gt;&lt;br&gt;
  6741. LXK2-PW12-R00, LXK2-PW12-S00, LXK2-PW14-U00, LXK2-PW14-V00&lt;br&gt;
  6742. LXK2-PM12-R00, LXK2-PM12-S00, LXK2-PM14-U00&lt;br&gt;
  6743. LXK2-PE12-Q00, LXK2-PE12-R00, LXK2-PE12-S00, LXK2-PE14-T00, LXK2-PE14-U00&lt;br&gt;
  6744. LXK2-PB12-K00, LXK2-PB12-L00, LXK2-PB12-M00, LXK2-PB14-N00, LXK2-PB14-P00, LXK2-PB14-Q00&lt;br&gt;
  6745. LXK2-PR12-L00, LXK2-PR12-M00, LXK2-PR14-Q00, LXK2-PR14-R00&lt;br&gt;
  6746. LXK2-PD12-Q00, LXK2-PD12-R00, LXK2-PD12-S00&lt;br&gt;
  6747. LXK2-PH12-R00, LXK2-PH12-S00&lt;br&gt;
  6748. LXK2-PL12-P00, LXK2-PL12-Q00, LXK2-PL12-R00
  6749. &lt;p&gt;
  6750. Source: www.luxeon.com&lt;p&gt;
  6751. &lt;u&gt;KINGBRIGHT:&lt;/U&gt;&lt;p&gt;
  6752. KA-3528ASYC&lt;br&gt;
  6753. Source: www.kingbright.com</description>
  6754. <gates>
  6755. <gate name="G$1" symbol="LED" x="0" y="0"/>
  6756. </gates>
  6757. <devices>
  6758. <device name="SMT1206" package="1206">
  6759. <connects>
  6760. <connect gate="G$1" pin="A" pad="A"/>
  6761. <connect gate="G$1" pin="C" pad="C"/>
  6762. </connects>
  6763. <technologies>
  6764. <technology name=""/>
  6765. </technologies>
  6766. </device>
  6767. <device name="LD260" package="LD260">
  6768. <connects>
  6769. <connect gate="G$1" pin="A" pad="A"/>
  6770. <connect gate="G$1" pin="C" pad="K"/>
  6771. </connects>
  6772. <technologies>
  6773. <technology name=""/>
  6774. </technologies>
  6775. </device>
  6776. <device name="SQR2X5" package="LED2X5">
  6777. <connects>
  6778. <connect gate="G$1" pin="A" pad="A"/>
  6779. <connect gate="G$1" pin="C" pad="K"/>
  6780. </connects>
  6781. <technologies>
  6782. <technology name=""/>
  6783. </technologies>
  6784. </device>
  6785. <device name="3MM" package="LED3MM">
  6786. <connects>
  6787. <connect gate="G$1" pin="A" pad="A"/>
  6788. <connect gate="G$1" pin="C" pad="K"/>
  6789. </connects>
  6790. <technologies>
  6791. <technology name=""/>
  6792. </technologies>
  6793. </device>
  6794. <device name="5MM" package="LED5MM">
  6795. <connects>
  6796. <connect gate="G$1" pin="A" pad="A"/>
  6797. <connect gate="G$1" pin="C" pad="K"/>
  6798. </connects>
  6799. <technologies>
  6800. <technology name=""/>
  6801. </technologies>
  6802. </device>
  6803. <device name="LSU260" package="LSU260">
  6804. <connects>
  6805. <connect gate="G$1" pin="A" pad="A"/>
  6806. <connect gate="G$1" pin="C" pad="K"/>
  6807. </connects>
  6808. <technologies>
  6809. <technology name=""/>
  6810. </technologies>
  6811. </device>
  6812. <device name="LZR181" package="LZR181">
  6813. <connects>
  6814. <connect gate="G$1" pin="A" pad="A"/>
  6815. <connect gate="G$1" pin="C" pad="K"/>
  6816. </connects>
  6817. <technologies>
  6818. <technology name=""/>
  6819. </technologies>
  6820. </device>
  6821. <device name="B152" package="Q62902-B152">
  6822. <connects>
  6823. <connect gate="G$1" pin="A" pad="A"/>
  6824. <connect gate="G$1" pin="C" pad="K"/>
  6825. </connects>
  6826. <technologies>
  6827. <technology name=""/>
  6828. </technologies>
  6829. </device>
  6830. <device name="B153" package="Q62902-B153">
  6831. <connects>
  6832. <connect gate="G$1" pin="A" pad="A"/>
  6833. <connect gate="G$1" pin="C" pad="K"/>
  6834. </connects>
  6835. <technologies>
  6836. <technology name=""/>
  6837. </technologies>
  6838. </device>
  6839. <device name="B155" package="Q62902-B155">
  6840. <connects>
  6841. <connect gate="G$1" pin="A" pad="A"/>
  6842. <connect gate="G$1" pin="C" pad="K"/>
  6843. </connects>
  6844. <technologies>
  6845. <technology name=""/>
  6846. </technologies>
  6847. </device>
  6848. <device name="B156" package="Q62902-B156">
  6849. <connects>
  6850. <connect gate="G$1" pin="A" pad="A"/>
  6851. <connect gate="G$1" pin="C" pad="K"/>
  6852. </connects>
  6853. <technologies>
  6854. <technology name=""/>
  6855. </technologies>
  6856. </device>
  6857. <device name="SFH480" package="SFH480">
  6858. <connects>
  6859. <connect gate="G$1" pin="A" pad="A"/>
  6860. <connect gate="G$1" pin="C" pad="K"/>
  6861. </connects>
  6862. <technologies>
  6863. <technology name=""/>
  6864. </technologies>
  6865. </device>
  6866. <device name="SFH482" package="SFH482">
  6867. <connects>
  6868. <connect gate="G$1" pin="A" pad="A"/>
  6869. <connect gate="G$1" pin="C" pad="K"/>
  6870. </connects>
  6871. <technologies>
  6872. <technology name=""/>
  6873. </technologies>
  6874. </device>
  6875. <device name="SQR5.7X3.2" package="U57X32">
  6876. <connects>
  6877. <connect gate="G$1" pin="A" pad="A"/>
  6878. <connect gate="G$1" pin="C" pad="K"/>
  6879. </connects>
  6880. <technologies>
  6881. <technology name=""/>
  6882. </technologies>
  6883. </device>
  6884. <device name="IRL80A" package="IRL80A">
  6885. <connects>
  6886. <connect gate="G$1" pin="A" pad="A"/>
  6887. <connect gate="G$1" pin="C" pad="K"/>
  6888. </connects>
  6889. <technologies>
  6890. <technology name=""/>
  6891. </technologies>
  6892. </device>
  6893. <device name="P-LCC-2" package="P-LCC-2">
  6894. <connects>
  6895. <connect gate="G$1" pin="A" pad="A"/>
  6896. <connect gate="G$1" pin="C" pad="C"/>
  6897. </connects>
  6898. <technologies>
  6899. <technology name=""/>
  6900. </technologies>
  6901. </device>
  6902. <device name="MINI-TOP" package="OSRAM-MINI-TOP-LED">
  6903. <connects>
  6904. <connect gate="G$1" pin="A" pad="A"/>
  6905. <connect gate="G$1" pin="C" pad="C"/>
  6906. </connects>
  6907. <technologies>
  6908. <technology name=""/>
  6909. </technologies>
  6910. </device>
  6911. <device name="SIDELED" package="OSRAM-SIDELED">
  6912. <connects>
  6913. <connect gate="G$1" pin="A" pad="A"/>
  6914. <connect gate="G$1" pin="C" pad="C"/>
  6915. </connects>
  6916. <technologies>
  6917. <technology name=""/>
  6918. </technologies>
  6919. </device>
  6920. <device name="SMART-LED" package="SMART-LED">
  6921. <connects>
  6922. <connect gate="G$1" pin="A" pad="A"/>
  6923. <connect gate="G$1" pin="C" pad="B"/>
  6924. </connects>
  6925. <technologies>
  6926. <technology name=""/>
  6927. </technologies>
  6928. </device>
  6929. <device name="P-LCC-2-BACK" package="P-LCC-2-TOPLED-RG">
  6930. <connects>
  6931. <connect gate="G$1" pin="A" pad="A"/>
  6932. <connect gate="G$1" pin="C" pad="C"/>
  6933. </connects>
  6934. <technologies>
  6935. <technology name=""/>
  6936. </technologies>
  6937. </device>
  6938. <device name="MICRO-SIDELED" package="MICRO-SIDELED">
  6939. <connects>
  6940. <connect gate="G$1" pin="A" pad="A"/>
  6941. <connect gate="G$1" pin="C" pad="C"/>
  6942. </connects>
  6943. <technologies>
  6944. <technology name=""/>
  6945. </technologies>
  6946. </device>
  6947. <device name="P-LCC-4" package="P-LCC-4">
  6948. <connects>
  6949. <connect gate="G$1" pin="A" pad="A"/>
  6950. <connect gate="G$1" pin="C" pad="C@4"/>
  6951. </connects>
  6952. <technologies>
  6953. <technology name=""/>
  6954. </technologies>
  6955. </device>
  6956. <device name="CHIP-LED0603" package="CHIP-LED0603">
  6957. <connects>
  6958. <connect gate="G$1" pin="A" pad="A"/>
  6959. <connect gate="G$1" pin="C" pad="C"/>
  6960. </connects>
  6961. <technologies>
  6962. <technology name=""/>
  6963. </technologies>
  6964. </device>
  6965. <device name="CHIP-LED0805" package="CHIP-LED0805">
  6966. <connects>
  6967. <connect gate="G$1" pin="A" pad="A"/>
  6968. <connect gate="G$1" pin="C" pad="C"/>
  6969. </connects>
  6970. <technologies>
  6971. <technology name=""/>
  6972. </technologies>
  6973. </device>
  6974. <device name="TOPLED-SANTANA" package="MINI-TOPLED-SANTANA">
  6975. <connects>
  6976. <connect gate="G$1" pin="A" pad="A"/>
  6977. <connect gate="G$1" pin="C" pad="C"/>
  6978. </connects>
  6979. <technologies>
  6980. <technology name=""/>
  6981. </technologies>
  6982. </device>
  6983. <device name="CHIPLED_0805" package="CHIPLED_0805">
  6984. <connects>
  6985. <connect gate="G$1" pin="A" pad="A"/>
  6986. <connect gate="G$1" pin="C" pad="C"/>
  6987. </connects>
  6988. <technologies>
  6989. <technology name=""/>
  6990. </technologies>
  6991. </device>
  6992. <device name="CHIPLED_1206" package="CHIPLED_1206">
  6993. <connects>
  6994. <connect gate="G$1" pin="A" pad="A"/>
  6995. <connect gate="G$1" pin="C" pad="C"/>
  6996. </connects>
  6997. <technologies>
  6998. <technology name=""/>
  6999. </technologies>
  7000. </device>
  7001. <device name="CHIPLED_0603" package="CHIPLED_0603">
  7002. <connects>
  7003. <connect gate="G$1" pin="A" pad="A"/>
  7004. <connect gate="G$1" pin="C" pad="C"/>
  7005. </connects>
  7006. <technologies>
  7007. <technology name=""/>
  7008. </technologies>
  7009. </device>
  7010. <device name="CHIPLED-0603-TTW" package="CHIPLED-0603-TTW">
  7011. <connects>
  7012. <connect gate="G$1" pin="A" pad="A@1"/>
  7013. <connect gate="G$1" pin="C" pad="C@1"/>
  7014. </connects>
  7015. <technologies>
  7016. <technology name=""/>
  7017. </technologies>
  7018. </device>
  7019. <device name="" package="SMARTLED-TTW">
  7020. <connects>
  7021. <connect gate="G$1" pin="A" pad="A@1"/>
  7022. <connect gate="G$1" pin="C" pad="C@1"/>
  7023. </connects>
  7024. <technologies>
  7025. <technology name=""/>
  7026. </technologies>
  7027. </device>
  7028. <device name="-LUMILED+" package="LUMILED+">
  7029. <connects>
  7030. <connect gate="G$1" pin="A" pad="2+"/>
  7031. <connect gate="G$1" pin="C" pad="4-"/>
  7032. </connects>
  7033. <technologies>
  7034. <technology name=""/>
  7035. </technologies>
  7036. </device>
  7037. <device name="-LUMILED" package="LUMILED">
  7038. <connects>
  7039. <connect gate="G$1" pin="A" pad="2+"/>
  7040. <connect gate="G$1" pin="C" pad="4-"/>
  7041. </connects>
  7042. <technologies>
  7043. <technology name=""/>
  7044. </technologies>
  7045. </device>
  7046. <device name="10MM" package="LED10MM">
  7047. <connects>
  7048. <connect gate="G$1" pin="A" pad="A"/>
  7049. <connect gate="G$1" pin="C" pad="K"/>
  7050. </connects>
  7051. <technologies>
  7052. <technology name=""/>
  7053. </technologies>
  7054. </device>
  7055. <device name="KA-3528ASYC" package="KA-3528ASYC">
  7056. <connects>
  7057. <connect gate="G$1" pin="A" pad="A"/>
  7058. <connect gate="G$1" pin="C" pad="C"/>
  7059. </connects>
  7060. <technologies>
  7061. <technology name=""/>
  7062. </technologies>
  7063. </device>
  7064. <device name="SML0805" package="SML0805">
  7065. <connects>
  7066. <connect gate="G$1" pin="A" pad="A"/>
  7067. <connect gate="G$1" pin="C" pad="C"/>
  7068. </connects>
  7069. <technologies>
  7070. <technology name=""/>
  7071. </technologies>
  7072. </device>
  7073. <device name="SML1206" package="SML1206">
  7074. <connects>
  7075. <connect gate="G$1" pin="A" pad="A"/>
  7076. <connect gate="G$1" pin="C" pad="C"/>
  7077. </connects>
  7078. <technologies>
  7079. <technology name=""/>
  7080. </technologies>
  7081. </device>
  7082. <device name="SML0603" package="SML0603">
  7083. <connects>
  7084. <connect gate="G$1" pin="A" pad="A"/>
  7085. <connect gate="G$1" pin="C" pad="C"/>
  7086. </connects>
  7087. <technologies>
  7088. <technology name=""/>
  7089. </technologies>
  7090. </device>
  7091. </devices>
  7092. </deviceset>
  7093. </devicesets>
  7094. </library>
  7095. <library name="capacitor-wima">
  7096. <description>&lt;b&gt;WIMA Capacitors&lt;/b&gt;&lt;p&gt;
  7097. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  7098. <packages>
  7099. <package name="C10B4">
  7100. <description>&lt;B&gt;MKS4&lt;/B&gt;, 13.4 x 4 mm, grid 10.16 mm</description>
  7101. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  7102. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  7103. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  7104. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  7105. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  7106. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  7107. <wire x1="-6.096" y1="2.032" x2="6.096" y2="2.032" width="0.1524" layer="21"/>
  7108. <wire x1="6.604" y1="1.524" x2="6.604" y2="-1.524" width="0.1524" layer="21"/>
  7109. <wire x1="6.096" y1="-2.032" x2="-6.096" y2="-2.032" width="0.1524" layer="21"/>
  7110. <wire x1="-6.604" y1="-1.524" x2="-6.604" y2="1.524" width="0.1524" layer="21"/>
  7111. <wire x1="6.096" y1="2.032" x2="6.604" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  7112. <wire x1="6.096" y1="-2.032" x2="6.604" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  7113. <wire x1="-6.604" y1="-1.524" x2="-6.096" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  7114. <wire x1="-6.604" y1="1.524" x2="-6.096" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  7115. <pad name="1" x="-5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7116. <pad name="2" x="5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7117. <text x="-3.429" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7118. <text x="-1.524" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7119. </package>
  7120. <package name="C10B5">
  7121. <description>&lt;B&gt;MKS4&lt;/B&gt;, 13.4 x 5 mm, grid 10.16 mm</description>
  7122. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  7123. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  7124. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  7125. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  7126. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  7127. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  7128. <wire x1="-6.096" y1="2.54" x2="6.096" y2="2.54" width="0.1524" layer="21"/>
  7129. <wire x1="6.604" y1="2.032" x2="6.604" y2="-2.032" width="0.1524" layer="21"/>
  7130. <wire x1="6.096" y1="-2.54" x2="-6.096" y2="-2.54" width="0.1524" layer="21"/>
  7131. <wire x1="-6.604" y1="-2.032" x2="-6.604" y2="2.032" width="0.1524" layer="21"/>
  7132. <wire x1="6.096" y1="2.54" x2="6.604" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  7133. <wire x1="6.096" y1="-2.54" x2="6.604" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  7134. <wire x1="-6.604" y1="-2.032" x2="-6.096" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  7135. <wire x1="-6.604" y1="2.032" x2="-6.096" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  7136. <pad name="1" x="-5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7137. <pad name="2" x="5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7138. <text x="-5.08" y="2.794" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7139. <text x="-1.524" y="-1.905" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7140. </package>
  7141. <package name="C10B6">
  7142. <description>&lt;B&gt;MKS4&lt;/B&gt;, 13.4 x 6 mm, grid 10.16 mm</description>
  7143. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  7144. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  7145. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  7146. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  7147. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  7148. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  7149. <wire x1="-6.096" y1="3.048" x2="6.096" y2="3.048" width="0.1524" layer="21"/>
  7150. <wire x1="6.604" y1="2.54" x2="6.604" y2="-2.54" width="0.1524" layer="21"/>
  7151. <wire x1="6.096" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
  7152. <wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
  7153. <wire x1="6.096" y1="3.048" x2="6.604" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  7154. <wire x1="6.096" y1="-3.048" x2="6.604" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  7155. <wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  7156. <wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  7157. <pad name="1" x="-5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7158. <pad name="2" x="5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7159. <text x="-5.08" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7160. <text x="-1.524" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7161. </package>
  7162. <package name="C15B5">
  7163. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 5 mm, grid 15 mm</description>
  7164. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  7165. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  7166. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  7167. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  7168. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  7169. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  7170. <wire x1="9.017" y1="2.032" x2="9.017" y2="-2.032" width="0.1524" layer="21"/>
  7171. <wire x1="8.509" y1="-2.54" x2="-8.509" y2="-2.54" width="0.1524" layer="21"/>
  7172. <wire x1="-9.017" y1="-2.032" x2="-9.017" y2="2.032" width="0.1524" layer="21"/>
  7173. <wire x1="-8.509" y1="2.54" x2="8.509" y2="2.54" width="0.1524" layer="21"/>
  7174. <wire x1="8.509" y1="2.54" x2="9.017" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  7175. <wire x1="8.509" y1="-2.54" x2="9.017" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  7176. <wire x1="-9.017" y1="-2.032" x2="-8.509" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  7177. <wire x1="-9.017" y1="2.032" x2="-8.509" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  7178. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7179. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7180. <text x="-7.493" y="2.794" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  7181. <text x="-3.429" y="-2.032" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  7182. </package>
  7183. <package name="C15B6">
  7184. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 6 mm, grid 15 mm</description>
  7185. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  7186. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  7187. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  7188. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  7189. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  7190. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  7191. <wire x1="9.017" y1="2.54" x2="9.017" y2="-2.54" width="0.1524" layer="21"/>
  7192. <wire x1="8.509" y1="-3.048" x2="-8.509" y2="-3.048" width="0.1524" layer="21"/>
  7193. <wire x1="-9.017" y1="-2.54" x2="-9.017" y2="2.54" width="0.1524" layer="21"/>
  7194. <wire x1="-8.509" y1="3.048" x2="8.509" y2="3.048" width="0.1524" layer="21"/>
  7195. <wire x1="8.509" y1="3.048" x2="9.017" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  7196. <wire x1="8.509" y1="-3.048" x2="9.017" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  7197. <wire x1="-9.017" y1="-2.54" x2="-8.509" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  7198. <wire x1="-9.017" y1="2.54" x2="-8.509" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  7199. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7200. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7201. <text x="-7.493" y="3.302" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  7202. <text x="-3.429" y="-2.032" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  7203. </package>
  7204. <package name="C15B7">
  7205. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 7 mm, grid 15 mm</description>
  7206. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  7207. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  7208. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  7209. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  7210. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  7211. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  7212. <wire x1="9.017" y1="3.048" x2="9.017" y2="-3.048" width="0.1524" layer="21"/>
  7213. <wire x1="8.509" y1="-3.556" x2="-8.509" y2="-3.556" width="0.1524" layer="21"/>
  7214. <wire x1="-9.017" y1="-3.048" x2="-9.017" y2="3.048" width="0.1524" layer="21"/>
  7215. <wire x1="-8.509" y1="3.556" x2="8.509" y2="3.556" width="0.1524" layer="21"/>
  7216. <wire x1="8.509" y1="3.556" x2="9.017" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  7217. <wire x1="8.509" y1="-3.556" x2="9.017" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  7218. <wire x1="-9.017" y1="-3.048" x2="-8.509" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  7219. <wire x1="-9.017" y1="3.048" x2="-8.509" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  7220. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7221. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7222. <text x="-7.493" y="3.81" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  7223. <text x="-3.429" y="-2.286" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  7224. </package>
  7225. <package name="C15B8">
  7226. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 8 mm, grid 15 mm</description>
  7227. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  7228. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  7229. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  7230. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  7231. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  7232. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  7233. <wire x1="9.017" y1="3.556" x2="9.017" y2="-3.556" width="0.1524" layer="21"/>
  7234. <wire x1="8.509" y1="-4.064" x2="-8.509" y2="-4.064" width="0.1524" layer="21"/>
  7235. <wire x1="-9.017" y1="-3.556" x2="-9.017" y2="3.556" width="0.1524" layer="21"/>
  7236. <wire x1="-8.509" y1="4.064" x2="8.509" y2="4.064" width="0.1524" layer="21"/>
  7237. <wire x1="8.509" y1="4.064" x2="9.017" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  7238. <wire x1="8.509" y1="-4.064" x2="9.017" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  7239. <wire x1="-9.017" y1="-3.556" x2="-8.509" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  7240. <wire x1="-9.017" y1="3.556" x2="-8.509" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  7241. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7242. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7243. <text x="-7.493" y="4.318" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  7244. <text x="-3.429" y="-2.54" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  7245. </package>
  7246. <package name="C15B9">
  7247. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 9 mm, grid 15 mm</description>
  7248. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  7249. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  7250. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  7251. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  7252. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  7253. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  7254. <wire x1="9.017" y1="3.937" x2="9.017" y2="-3.937" width="0.1524" layer="21"/>
  7255. <wire x1="8.509" y1="-4.445" x2="-8.509" y2="-4.445" width="0.1524" layer="21"/>
  7256. <wire x1="-9.017" y1="-3.937" x2="-9.017" y2="3.937" width="0.1524" layer="21"/>
  7257. <wire x1="-8.509" y1="4.445" x2="8.509" y2="4.445" width="0.1524" layer="21"/>
  7258. <wire x1="8.509" y1="4.445" x2="9.017" y2="3.937" width="0.1524" layer="21" curve="-90"/>
  7259. <wire x1="8.509" y1="-4.445" x2="9.017" y2="-3.937" width="0.1524" layer="21" curve="90"/>
  7260. <wire x1="-9.017" y1="-3.937" x2="-8.509" y2="-4.445" width="0.1524" layer="21" curve="90"/>
  7261. <wire x1="-9.017" y1="3.937" x2="-8.509" y2="4.445" width="0.1524" layer="21" curve="-90"/>
  7262. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7263. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  7264. <text x="-7.493" y="4.699" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  7265. <text x="-3.429" y="-2.54" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  7266. </package>
  7267. <package name="C2.5-2">
  7268. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 2.5 mm, grid 2.54 mm</description>
  7269. <wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
  7270. <wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
  7271. <wire x1="2.413" y1="1.016" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
  7272. <wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  7273. <wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  7274. <wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  7275. <wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  7276. <wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  7277. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  7278. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  7279. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  7280. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  7281. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  7282. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  7283. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  7284. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  7285. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7286. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7287. <text x="-1.651" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7288. <text x="-1.651" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7289. </package>
  7290. <package name="C2.5-4">
  7291. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 4 mm, grid 2.54 mm</description>
  7292. <wire x1="-2.159" y1="1.905" x2="2.159" y2="1.905" width="0.1524" layer="21"/>
  7293. <wire x1="2.159" y1="-1.905" x2="-2.159" y2="-1.905" width="0.1524" layer="21"/>
  7294. <wire x1="2.413" y1="1.651" x2="2.413" y2="-1.651" width="0.1524" layer="21"/>
  7295. <wire x1="-2.413" y1="1.651" x2="-2.413" y2="-1.651" width="0.1524" layer="21"/>
  7296. <wire x1="2.159" y1="1.905" x2="2.413" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  7297. <wire x1="-2.413" y1="1.651" x2="-2.159" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  7298. <wire x1="2.159" y1="-1.905" x2="2.413" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  7299. <wire x1="-2.413" y1="-1.651" x2="-2.159" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  7300. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  7301. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  7302. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  7303. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  7304. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  7305. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  7306. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  7307. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  7308. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7309. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7310. <text x="-1.651" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7311. <text x="-1.651" y="-3.429" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7312. </package>
  7313. <package name="C2.5-5">
  7314. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 5 mm, grid 2.54 mm</description>
  7315. <wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
  7316. <wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
  7317. <wire x1="2.413" y1="2.032" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
  7318. <wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
  7319. <wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  7320. <wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  7321. <wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  7322. <wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  7323. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  7324. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  7325. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  7326. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  7327. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  7328. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  7329. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  7330. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  7331. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7332. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7333. <text x="-1.778" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7334. <text x="-1.778" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7335. </package>
  7336. <package name="C2.5-6">
  7337. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 6 mm, grid 2.54 mm</description>
  7338. <wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
  7339. <wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
  7340. <wire x1="2.413" y1="2.54" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
  7341. <wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
  7342. <wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  7343. <wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  7344. <wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  7345. <wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  7346. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  7347. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  7348. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  7349. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  7350. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  7351. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  7352. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  7353. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  7354. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7355. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7356. <text x="2.667" y="0.762" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7357. <text x="-1.905" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7358. </package>
  7359. <package name="C22.5B10">
  7360. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 10 mm, grid 22.5 mm</description>
  7361. <wire x1="-12.827" y1="5.334" x2="12.827" y2="5.334" width="0.1524" layer="21"/>
  7362. <wire x1="13.335" y1="4.826" x2="13.335" y2="-4.826" width="0.1524" layer="21"/>
  7363. <wire x1="12.827" y1="-5.334" x2="-12.827" y2="-5.334" width="0.1524" layer="21"/>
  7364. <wire x1="-13.335" y1="-4.826" x2="-13.335" y2="4.826" width="0.1524" layer="21"/>
  7365. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7366. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7367. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7368. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7369. <wire x1="12.827" y1="5.334" x2="13.335" y2="4.826" width="0.1524" layer="21" curve="-90"/>
  7370. <wire x1="12.827" y1="-5.334" x2="13.335" y2="-4.826" width="0.1524" layer="21" curve="90"/>
  7371. <wire x1="-13.335" y1="-4.826" x2="-12.827" y2="-5.334" width="0.1524" layer="21" curve="90"/>
  7372. <wire x1="-13.335" y1="4.826" x2="-12.827" y2="5.334" width="0.1524" layer="21" curve="-90"/>
  7373. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7374. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  7375. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  7376. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  7377. <text x="-11.303" y="5.588" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7378. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7379. </package>
  7380. <package name="C22.5B11">
  7381. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 11 mm, grid 22.5 mm</description>
  7382. <wire x1="-12.827" y1="5.588" x2="12.827" y2="5.588" width="0.1524" layer="21"/>
  7383. <wire x1="13.335" y1="5.08" x2="13.335" y2="-5.08" width="0.1524" layer="21"/>
  7384. <wire x1="12.827" y1="-5.588" x2="-12.827" y2="-5.588" width="0.1524" layer="21"/>
  7385. <wire x1="-13.335" y1="-5.08" x2="-13.335" y2="5.08" width="0.1524" layer="21"/>
  7386. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7387. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7388. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7389. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7390. <wire x1="12.827" y1="5.588" x2="13.335" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  7391. <wire x1="12.827" y1="-5.588" x2="13.335" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  7392. <wire x1="-13.335" y1="-5.08" x2="-12.827" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  7393. <wire x1="-13.335" y1="5.08" x2="-12.827" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  7394. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7395. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  7396. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  7397. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  7398. <text x="-11.303" y="5.842" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7399. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7400. </package>
  7401. <package name="C22.5B6">
  7402. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 6 mm, grid 22.5 mm</description>
  7403. <wire x1="-12.827" y1="3.048" x2="12.827" y2="3.048" width="0.1524" layer="21"/>
  7404. <wire x1="13.335" y1="2.54" x2="13.335" y2="-2.54" width="0.1524" layer="21"/>
  7405. <wire x1="12.827" y1="-3.048" x2="-12.827" y2="-3.048" width="0.1524" layer="21"/>
  7406. <wire x1="-13.335" y1="-2.54" x2="-13.335" y2="2.54" width="0.1524" layer="21"/>
  7407. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7408. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7409. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7410. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7411. <wire x1="12.827" y1="3.048" x2="13.335" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  7412. <wire x1="12.827" y1="-3.048" x2="13.335" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  7413. <wire x1="-13.335" y1="-2.54" x2="-12.827" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  7414. <wire x1="-13.335" y1="2.54" x2="-12.827" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  7415. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7416. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  7417. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  7418. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  7419. <text x="-11.303" y="3.302" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7420. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7421. </package>
  7422. <package name="C22.5B7">
  7423. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 7 mm, grid 22.5 mm</description>
  7424. <wire x1="-12.827" y1="3.556" x2="12.827" y2="3.556" width="0.1524" layer="21"/>
  7425. <wire x1="13.335" y1="3.048" x2="13.335" y2="-3.048" width="0.1524" layer="21"/>
  7426. <wire x1="12.827" y1="-3.556" x2="-12.827" y2="-3.556" width="0.1524" layer="21"/>
  7427. <wire x1="-13.335" y1="-3.048" x2="-13.335" y2="3.048" width="0.1524" layer="21"/>
  7428. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7429. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7430. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7431. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7432. <wire x1="12.827" y1="3.556" x2="13.335" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  7433. <wire x1="12.827" y1="-3.556" x2="13.335" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  7434. <wire x1="-13.335" y1="-3.048" x2="-12.827" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  7435. <wire x1="-13.335" y1="3.048" x2="-12.827" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  7436. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7437. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  7438. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  7439. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  7440. <text x="-11.303" y="3.81" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7441. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7442. </package>
  7443. <package name="C22.5B8">
  7444. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 8 mm, grid 22.5 mm</description>
  7445. <wire x1="-12.827" y1="4.318" x2="12.827" y2="4.318" width="0.1524" layer="21"/>
  7446. <wire x1="13.335" y1="3.81" x2="13.335" y2="-3.81" width="0.1524" layer="21"/>
  7447. <wire x1="12.827" y1="-4.318" x2="-12.827" y2="-4.318" width="0.1524" layer="21"/>
  7448. <wire x1="-13.335" y1="-3.81" x2="-13.335" y2="3.81" width="0.1524" layer="21"/>
  7449. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7450. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7451. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7452. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7453. <wire x1="12.827" y1="4.318" x2="13.335" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  7454. <wire x1="12.827" y1="-4.318" x2="13.335" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  7455. <wire x1="-13.335" y1="-3.81" x2="-12.827" y2="-4.318" width="0.1524" layer="21" curve="90"/>
  7456. <wire x1="-13.335" y1="3.81" x2="-12.827" y2="4.318" width="0.1524" layer="21" curve="-90"/>
  7457. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7458. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  7459. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  7460. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  7461. <text x="-11.303" y="4.572" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7462. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7463. </package>
  7464. <package name="C27.5B11">
  7465. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 11 mm, grid 27.5 mm</description>
  7466. <wire x1="-15.24" y1="5.588" x2="15.24" y2="5.588" width="0.1524" layer="21"/>
  7467. <wire x1="15.748" y1="5.08" x2="15.748" y2="-5.08" width="0.1524" layer="21"/>
  7468. <wire x1="15.24" y1="-5.588" x2="-15.24" y2="-5.588" width="0.1524" layer="21"/>
  7469. <wire x1="-15.748" y1="-5.08" x2="-15.748" y2="5.08" width="0.1524" layer="21"/>
  7470. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7471. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7472. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7473. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7474. <wire x1="15.24" y1="5.588" x2="15.748" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  7475. <wire x1="15.24" y1="-5.588" x2="15.748" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  7476. <wire x1="-15.748" y1="-5.08" x2="-15.24" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  7477. <wire x1="-15.748" y1="5.08" x2="-15.24" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  7478. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7479. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  7480. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7481. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7482. <text x="-13.716" y="5.842" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7483. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7484. </package>
  7485. <package name="C27.5B13">
  7486. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 13 mm, grid 27.5 mm</description>
  7487. <wire x1="-15.24" y1="6.604" x2="15.24" y2="6.604" width="0.1524" layer="21"/>
  7488. <wire x1="15.748" y1="6.096" x2="15.748" y2="-6.096" width="0.1524" layer="21"/>
  7489. <wire x1="15.24" y1="-6.604" x2="-15.24" y2="-6.604" width="0.1524" layer="21"/>
  7490. <wire x1="-15.748" y1="-6.096" x2="-15.748" y2="6.096" width="0.1524" layer="21"/>
  7491. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7492. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7493. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7494. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7495. <wire x1="15.24" y1="6.604" x2="15.748" y2="6.096" width="0.1524" layer="21" curve="-90"/>
  7496. <wire x1="15.24" y1="-6.604" x2="15.748" y2="-6.096" width="0.1524" layer="21" curve="90"/>
  7497. <wire x1="-15.748" y1="-6.096" x2="-15.24" y2="-6.604" width="0.1524" layer="21" curve="90"/>
  7498. <wire x1="-15.748" y1="6.096" x2="-15.24" y2="6.604" width="0.1524" layer="21" curve="-90"/>
  7499. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7500. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  7501. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7502. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7503. <text x="-13.716" y="6.858" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7504. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7505. </package>
  7506. <package name="C27.5B15">
  7507. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 15 mm, grid 27.5 mm</description>
  7508. <wire x1="-15.24" y1="7.62" x2="15.24" y2="7.62" width="0.1524" layer="21"/>
  7509. <wire x1="15.748" y1="7.112" x2="15.748" y2="-7.112" width="0.1524" layer="21"/>
  7510. <wire x1="15.24" y1="-7.62" x2="-15.24" y2="-7.62" width="0.1524" layer="21"/>
  7511. <wire x1="-15.748" y1="-7.112" x2="-15.748" y2="7.112" width="0.1524" layer="21"/>
  7512. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7513. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7514. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7515. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7516. <wire x1="15.24" y1="7.62" x2="15.748" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  7517. <wire x1="15.24" y1="-7.62" x2="15.748" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  7518. <wire x1="-15.748" y1="-7.112" x2="-15.24" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  7519. <wire x1="-15.748" y1="7.112" x2="-15.24" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  7520. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7521. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  7522. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7523. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7524. <text x="-13.716" y="7.874" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7525. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7526. </package>
  7527. <package name="C27.5B17">
  7528. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 17 mm, grid 27.5 mm</description>
  7529. <wire x1="-15.24" y1="8.509" x2="15.24" y2="8.509" width="0.1524" layer="21"/>
  7530. <wire x1="15.748" y1="8.001" x2="15.748" y2="-8.001" width="0.1524" layer="21"/>
  7531. <wire x1="15.24" y1="-8.509" x2="-15.24" y2="-8.509" width="0.1524" layer="21"/>
  7532. <wire x1="-15.748" y1="-8.001" x2="-15.748" y2="8.001" width="0.1524" layer="21"/>
  7533. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7534. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7535. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7536. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7537. <wire x1="15.24" y1="8.509" x2="15.748" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  7538. <wire x1="15.24" y1="-8.509" x2="15.748" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  7539. <wire x1="-15.748" y1="-8.001" x2="-15.24" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  7540. <wire x1="-15.748" y1="8.001" x2="-15.24" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  7541. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7542. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  7543. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7544. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7545. <text x="-13.716" y="8.763" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7546. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7547. </package>
  7548. <package name="C27.5B20">
  7549. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 20 mm, grid 27.5 mm</description>
  7550. <wire x1="-15.24" y1="10.16" x2="15.24" y2="10.16" width="0.1524" layer="21"/>
  7551. <wire x1="15.748" y1="9.652" x2="15.748" y2="-9.652" width="0.1524" layer="21"/>
  7552. <wire x1="15.24" y1="-10.16" x2="-15.24" y2="-10.16" width="0.1524" layer="21"/>
  7553. <wire x1="-15.748" y1="-9.652" x2="-15.748" y2="9.652" width="0.1524" layer="21"/>
  7554. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7555. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7556. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7557. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7558. <wire x1="15.24" y1="10.16" x2="15.748" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  7559. <wire x1="15.24" y1="-10.16" x2="15.748" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  7560. <wire x1="-15.748" y1="-9.652" x2="-15.24" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  7561. <wire x1="-15.748" y1="9.652" x2="-15.24" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  7562. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7563. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  7564. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7565. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7566. <text x="-13.589" y="10.414" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7567. <text x="-5.08" y="-4.318" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7568. </package>
  7569. <package name="C27.5B9">
  7570. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 9 mm, grid 27.5 mm</description>
  7571. <wire x1="-15.24" y1="4.572" x2="15.24" y2="4.572" width="0.1524" layer="21"/>
  7572. <wire x1="15.748" y1="4.064" x2="15.748" y2="-4.064" width="0.1524" layer="21"/>
  7573. <wire x1="15.24" y1="-4.572" x2="-15.24" y2="-4.572" width="0.1524" layer="21"/>
  7574. <wire x1="-15.748" y1="-4.064" x2="-15.748" y2="4.064" width="0.1524" layer="21"/>
  7575. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7576. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7577. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7578. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7579. <wire x1="15.24" y1="4.572" x2="15.748" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  7580. <wire x1="15.24" y1="-4.572" x2="15.748" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  7581. <wire x1="-15.748" y1="-4.064" x2="-15.24" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  7582. <wire x1="-15.748" y1="4.064" x2="-15.24" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  7583. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7584. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  7585. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7586. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  7587. <text x="-13.589" y="4.826" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7588. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7589. </package>
  7590. <package name="C37.5B15">
  7591. <description>&lt;B&gt;MKP4&lt;/B&gt;, 42 x 15 mm, grid 37.5 mm</description>
  7592. <wire x1="-20.32" y1="7.62" x2="20.32" y2="7.62" width="0.1524" layer="21"/>
  7593. <wire x1="20.828" y1="7.112" x2="20.828" y2="-7.112" width="0.1524" layer="21"/>
  7594. <wire x1="20.32" y1="-7.62" x2="-20.32" y2="-7.62" width="0.1524" layer="21"/>
  7595. <wire x1="-20.828" y1="-7.112" x2="-20.828" y2="7.112" width="0.1524" layer="21"/>
  7596. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7597. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7598. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7599. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7600. <wire x1="20.32" y1="7.62" x2="20.828" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  7601. <wire x1="20.32" y1="-7.62" x2="20.828" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  7602. <wire x1="-20.828" y1="-7.112" x2="-20.32" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  7603. <wire x1="-20.828" y1="7.112" x2="-20.32" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  7604. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7605. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  7606. <pad name="1" x="-18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  7607. <pad name="2" x="18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  7608. <text x="-18.796" y="7.874" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7609. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7610. </package>
  7611. <package name="C37.5B19">
  7612. <description>&lt;B&gt;MKP4&lt;/B&gt;, 42 x 19 mm, grid 37.5 mm</description>
  7613. <wire x1="-20.32" y1="8.509" x2="20.32" y2="8.509" width="0.1524" layer="21"/>
  7614. <wire x1="20.828" y1="8.001" x2="20.828" y2="-8.001" width="0.1524" layer="21"/>
  7615. <wire x1="20.32" y1="-8.509" x2="-20.32" y2="-8.509" width="0.1524" layer="21"/>
  7616. <wire x1="-20.828" y1="-8.001" x2="-20.828" y2="8.001" width="0.1524" layer="21"/>
  7617. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7618. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7619. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7620. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7621. <wire x1="20.32" y1="8.509" x2="20.828" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  7622. <wire x1="20.32" y1="-8.509" x2="20.828" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  7623. <wire x1="-20.828" y1="-8.001" x2="-20.32" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  7624. <wire x1="-20.828" y1="8.001" x2="-20.32" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  7625. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7626. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  7627. <pad name="1" x="-18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  7628. <pad name="2" x="18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  7629. <text x="-18.796" y="8.89" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7630. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7631. </package>
  7632. <package name="C37.5B20">
  7633. <description>&lt;B&gt;MKP4&lt;/B&gt;, 42 x 20 mm, grid 37.5 mm</description>
  7634. <wire x1="-20.32" y1="10.16" x2="20.32" y2="10.16" width="0.1524" layer="21"/>
  7635. <wire x1="20.828" y1="9.652" x2="20.828" y2="-9.652" width="0.1524" layer="21"/>
  7636. <wire x1="20.32" y1="-10.16" x2="-20.32" y2="-10.16" width="0.1524" layer="21"/>
  7637. <wire x1="-20.828" y1="-9.652" x2="-20.828" y2="9.652" width="0.1524" layer="21"/>
  7638. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  7639. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  7640. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  7641. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  7642. <wire x1="20.32" y1="10.16" x2="20.828" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  7643. <wire x1="20.32" y1="-10.16" x2="20.828" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  7644. <wire x1="-20.828" y1="-9.652" x2="-20.32" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  7645. <wire x1="-20.828" y1="9.652" x2="-20.32" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  7646. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  7647. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  7648. <pad name="1" x="-18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  7649. <pad name="2" x="18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  7650. <text x="-18.796" y="10.414" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  7651. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  7652. </package>
  7653. <package name="C5B2.5">
  7654. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 2.5 mm, grid 5.08 mm</description>
  7655. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  7656. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  7657. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  7658. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  7659. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  7660. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  7661. <wire x1="-3.683" y1="1.016" x2="-3.683" y2="-1.016" width="0.1524" layer="21"/>
  7662. <wire x1="-3.429" y1="-1.27" x2="3.429" y2="-1.27" width="0.1524" layer="21"/>
  7663. <wire x1="3.683" y1="-1.016" x2="3.683" y2="1.016" width="0.1524" layer="21"/>
  7664. <wire x1="3.429" y1="1.27" x2="-3.429" y2="1.27" width="0.1524" layer="21"/>
  7665. <wire x1="3.429" y1="1.27" x2="3.683" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  7666. <wire x1="3.429" y1="-1.27" x2="3.683" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  7667. <wire x1="-3.683" y1="-1.016" x2="-3.429" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  7668. <wire x1="-3.683" y1="1.016" x2="-3.429" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  7669. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7670. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7671. <text x="-2.032" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7672. <text x="-2.032" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7673. </package>
  7674. <package name="C5B3">
  7675. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 3 mm, grid 5.08 mm</description>
  7676. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  7677. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  7678. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  7679. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  7680. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  7681. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  7682. <wire x1="-3.683" y1="1.27" x2="-3.683" y2="-1.27" width="0.1524" layer="21"/>
  7683. <wire x1="-3.429" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  7684. <wire x1="3.683" y1="-1.27" x2="3.683" y2="1.27" width="0.1524" layer="21"/>
  7685. <wire x1="3.429" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  7686. <wire x1="3.429" y1="1.524" x2="3.683" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  7687. <wire x1="3.429" y1="-1.524" x2="3.683" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  7688. <wire x1="-3.683" y1="-1.27" x2="-3.429" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  7689. <wire x1="-3.683" y1="1.27" x2="-3.429" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  7690. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7691. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7692. <text x="-2.54" y="1.778" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7693. <text x="-2.54" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7694. </package>
  7695. <package name="C5B3.5">
  7696. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 4 mm, grid 5.08 mm</description>
  7697. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  7698. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  7699. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  7700. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  7701. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  7702. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  7703. <wire x1="-3.683" y1="1.524" x2="-3.683" y2="-1.524" width="0.1524" layer="21"/>
  7704. <wire x1="-3.429" y1="-1.778" x2="3.429" y2="-1.778" width="0.1524" layer="21"/>
  7705. <wire x1="3.683" y1="-1.524" x2="3.683" y2="1.524" width="0.1524" layer="21"/>
  7706. <wire x1="3.429" y1="1.778" x2="-3.429" y2="1.778" width="0.1524" layer="21"/>
  7707. <wire x1="3.429" y1="1.778" x2="3.683" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  7708. <wire x1="3.429" y1="-1.778" x2="3.683" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  7709. <wire x1="-3.683" y1="-1.524" x2="-3.429" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  7710. <wire x1="-3.683" y1="1.524" x2="-3.429" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  7711. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7712. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7713. <text x="-2.54" y="2.032" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7714. <text x="-2.54" y="-3.302" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7715. </package>
  7716. <package name="C5B4.5">
  7717. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 4.5 mm, grid 5.08 mm</description>
  7718. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  7719. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  7720. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  7721. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  7722. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  7723. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  7724. <wire x1="-3.683" y1="2.032" x2="-3.683" y2="-2.032" width="0.1524" layer="21"/>
  7725. <wire x1="-3.429" y1="-2.286" x2="3.429" y2="-2.286" width="0.1524" layer="21"/>
  7726. <wire x1="3.683" y1="-2.032" x2="3.683" y2="2.032" width="0.1524" layer="21"/>
  7727. <wire x1="3.429" y1="2.286" x2="-3.429" y2="2.286" width="0.1524" layer="21"/>
  7728. <wire x1="3.429" y1="2.286" x2="3.683" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  7729. <wire x1="3.429" y1="-2.286" x2="3.683" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  7730. <wire x1="-3.683" y1="-2.032" x2="-3.429" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  7731. <wire x1="-3.683" y1="2.032" x2="-3.429" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  7732. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7733. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7734. <text x="-2.54" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7735. <text x="-2.54" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7736. </package>
  7737. <package name="C5B5">
  7738. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 5 mm, grid 5.08 mm</description>
  7739. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  7740. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  7741. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  7742. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  7743. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  7744. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  7745. <wire x1="-3.683" y1="2.286" x2="-3.683" y2="-2.286" width="0.1524" layer="21"/>
  7746. <wire x1="-3.429" y1="-2.54" x2="3.429" y2="-2.54" width="0.1524" layer="21"/>
  7747. <wire x1="3.683" y1="-2.286" x2="3.683" y2="2.286" width="0.1524" layer="21"/>
  7748. <wire x1="3.429" y1="2.54" x2="-3.429" y2="2.54" width="0.1524" layer="21"/>
  7749. <wire x1="3.429" y1="2.54" x2="3.683" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  7750. <wire x1="3.429" y1="-2.54" x2="3.683" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  7751. <wire x1="-3.683" y1="-2.286" x2="-3.429" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  7752. <wire x1="-3.683" y1="2.286" x2="-3.429" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  7753. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7754. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7755. <text x="-2.54" y="2.794" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7756. <text x="-2.54" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7757. </package>
  7758. <package name="C5B5.5">
  7759. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 5.5 mm, grid 5.08 mm</description>
  7760. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  7761. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  7762. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  7763. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  7764. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  7765. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  7766. <wire x1="-3.683" y1="2.54" x2="-3.683" y2="-2.54" width="0.1524" layer="21"/>
  7767. <wire x1="-3.429" y1="-2.794" x2="3.429" y2="-2.794" width="0.1524" layer="21"/>
  7768. <wire x1="3.683" y1="-2.54" x2="3.683" y2="2.54" width="0.1524" layer="21"/>
  7769. <wire x1="3.429" y1="2.794" x2="-3.429" y2="2.794" width="0.1524" layer="21"/>
  7770. <wire x1="3.429" y1="2.794" x2="3.683" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  7771. <wire x1="3.429" y1="-2.794" x2="3.683" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  7772. <wire x1="-3.683" y1="-2.54" x2="-3.429" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  7773. <wire x1="-3.683" y1="2.54" x2="-3.429" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  7774. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7775. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7776. <text x="-2.54" y="3.048" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7777. <text x="-2.54" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7778. </package>
  7779. <package name="C5B7.2">
  7780. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 7.2 mm, grid 5.08 mm</description>
  7781. <wire x1="-1.524" y1="0" x2="-0.4572" y2="0" width="0.1524" layer="21"/>
  7782. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="0.762" width="0.4064" layer="21"/>
  7783. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="-0.762" width="0.4064" layer="21"/>
  7784. <wire x1="0.4318" y1="0.762" x2="0.4318" y2="0" width="0.4064" layer="21"/>
  7785. <wire x1="0.4318" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  7786. <wire x1="0.4318" y1="0" x2="0.4318" y2="-0.762" width="0.4064" layer="21"/>
  7787. <wire x1="-3.683" y1="3.429" x2="-3.683" y2="-3.429" width="0.1524" layer="21"/>
  7788. <wire x1="-3.429" y1="-3.683" x2="3.429" y2="-3.683" width="0.1524" layer="21"/>
  7789. <wire x1="3.683" y1="-3.429" x2="3.683" y2="3.429" width="0.1524" layer="21"/>
  7790. <wire x1="3.429" y1="3.683" x2="-3.429" y2="3.683" width="0.1524" layer="21"/>
  7791. <wire x1="3.429" y1="3.683" x2="3.683" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  7792. <wire x1="3.429" y1="-3.683" x2="3.683" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  7793. <wire x1="-3.683" y1="-3.429" x2="-3.429" y2="-3.683" width="0.1524" layer="21" curve="90"/>
  7794. <wire x1="-3.683" y1="3.429" x2="-3.429" y2="3.683" width="0.1524" layer="21" curve="-90"/>
  7795. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7796. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7797. <text x="-2.54" y="4.064" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7798. <text x="-3.175" y="-2.921" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7799. </package>
  7800. <package name="C7.5B3">
  7801. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 3 mm, grid 7.62 mm</description>
  7802. <wire x1="4.826" y1="1.524" x2="-4.826" y2="1.524" width="0.1524" layer="21"/>
  7803. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="-1.27" width="0.1524" layer="21"/>
  7804. <wire x1="-4.826" y1="-1.524" x2="4.826" y2="-1.524" width="0.1524" layer="21"/>
  7805. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.1524" layer="21"/>
  7806. <wire x1="4.826" y1="1.524" x2="5.08" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  7807. <wire x1="4.826" y1="-1.524" x2="5.08" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  7808. <wire x1="-5.08" y1="-1.27" x2="-4.826" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  7809. <wire x1="-5.08" y1="1.27" x2="-4.826" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  7810. <wire x1="0.508" y1="0" x2="2.54" y2="0" width="0.1524" layer="21"/>
  7811. <wire x1="-2.54" y1="0" x2="-0.508" y2="0" width="0.1524" layer="21"/>
  7812. <wire x1="-0.508" y1="0.889" x2="-0.508" y2="0" width="0.4064" layer="21"/>
  7813. <wire x1="-0.508" y1="0" x2="-0.508" y2="-0.889" width="0.4064" layer="21"/>
  7814. <wire x1="0.508" y1="0.889" x2="0.508" y2="0" width="0.4064" layer="21"/>
  7815. <wire x1="0.508" y1="0" x2="0.508" y2="-0.889" width="0.4064" layer="21"/>
  7816. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  7817. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  7818. <text x="-3.81" y="1.778" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7819. <text x="-3.81" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7820. </package>
  7821. <package name="C7.5B4">
  7822. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 4 mm, grid 7.62 mm</description>
  7823. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  7824. <wire x1="-5.08" y1="1.778" x2="-5.08" y2="-1.778" width="0.1524" layer="21"/>
  7825. <wire x1="-4.826" y1="-2.032" x2="4.826" y2="-2.032" width="0.1524" layer="21"/>
  7826. <wire x1="5.08" y1="-1.778" x2="5.08" y2="1.778" width="0.1524" layer="21"/>
  7827. <wire x1="4.826" y1="2.032" x2="5.08" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  7828. <wire x1="4.826" y1="-2.032" x2="5.08" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  7829. <wire x1="-5.08" y1="-1.778" x2="-4.826" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  7830. <wire x1="-5.08" y1="1.778" x2="-4.826" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  7831. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  7832. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  7833. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  7834. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  7835. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  7836. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  7837. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  7838. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  7839. <text x="-3.81" y="2.286" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7840. <text x="-3.81" y="-3.556" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7841. </package>
  7842. <package name="C7.5B5">
  7843. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 5 mm, grid 7.62 mm</description>
  7844. <wire x1="4.953" y1="2.54" x2="-4.953" y2="2.54" width="0.1524" layer="21"/>
  7845. <wire x1="-5.207" y1="2.286" x2="-5.207" y2="-2.286" width="0.1524" layer="21"/>
  7846. <wire x1="-4.953" y1="-2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
  7847. <wire x1="5.207" y1="-2.286" x2="5.207" y2="2.286" width="0.1524" layer="21"/>
  7848. <wire x1="4.953" y1="2.54" x2="5.207" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  7849. <wire x1="4.953" y1="-2.54" x2="5.207" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  7850. <wire x1="-5.207" y1="-2.286" x2="-4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  7851. <wire x1="-5.207" y1="2.286" x2="-4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  7852. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  7853. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  7854. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  7855. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  7856. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  7857. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  7858. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  7859. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  7860. <text x="-3.81" y="2.794" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7861. <text x="-3.81" y="-4.064" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7862. </package>
  7863. <package name="C7.5B6">
  7864. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 6 mm, grid 7.62 mm</description>
  7865. <wire x1="4.953" y1="3.048" x2="-4.953" y2="3.048" width="0.1524" layer="21"/>
  7866. <wire x1="-5.207" y1="2.794" x2="-5.207" y2="-2.794" width="0.1524" layer="21"/>
  7867. <wire x1="-4.953" y1="-3.048" x2="4.953" y2="-3.048" width="0.1524" layer="21"/>
  7868. <wire x1="5.207" y1="-2.794" x2="5.207" y2="2.794" width="0.1524" layer="21"/>
  7869. <wire x1="4.953" y1="3.048" x2="5.207" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  7870. <wire x1="4.953" y1="-3.048" x2="5.207" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  7871. <wire x1="-5.207" y1="-2.794" x2="-4.953" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  7872. <wire x1="-5.207" y1="2.794" x2="-4.953" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  7873. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  7874. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  7875. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  7876. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  7877. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  7878. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  7879. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  7880. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  7881. <text x="-3.683" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7882. <text x="-0.889" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7883. </package>
  7884. <package name="C2.5-3">
  7885. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 3 mm, grid 2.54 mm</description>
  7886. <wire x1="-2.159" y1="1.524" x2="2.159" y2="1.524" width="0.1524" layer="21"/>
  7887. <wire x1="2.159" y1="-1.524" x2="-2.159" y2="-1.524" width="0.1524" layer="21"/>
  7888. <wire x1="2.413" y1="1.27" x2="2.413" y2="-1.27" width="0.1524" layer="21"/>
  7889. <wire x1="-2.413" y1="1.27" x2="-2.413" y2="-1.27" width="0.1524" layer="21"/>
  7890. <wire x1="2.159" y1="1.524" x2="2.413" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  7891. <wire x1="-2.413" y1="1.27" x2="-2.159" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  7892. <wire x1="2.159" y1="-1.524" x2="2.413" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  7893. <wire x1="-2.413" y1="-1.27" x2="-2.159" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  7894. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  7895. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  7896. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  7897. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  7898. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  7899. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  7900. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  7901. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  7902. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7903. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  7904. <text x="-1.651" y="1.778" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  7905. <text x="-1.651" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  7906. </package>
  7907. </packages>
  7908. <symbols>
  7909. <symbol name="C">
  7910. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  7911. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  7912. <text x="1.524" y="0.381" size="1.778" layer="95">&gt;NAME</text>
  7913. <text x="1.524" y="-4.699" size="1.778" layer="96">&gt;VALUE</text>
  7914. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  7915. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  7916. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  7917. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  7918. </symbol>
  7919. </symbols>
  7920. <devicesets>
  7921. <deviceset name="C" prefix="C" uservalue="yes">
  7922. <description>&lt;B&gt;CAPACITOR&lt;/B&gt;&lt;p&gt;
  7923. naming: grid - package width</description>
  7924. <gates>
  7925. <gate name="G$1" symbol="C" x="0" y="0"/>
  7926. </gates>
  7927. <devices>
  7928. <device name="10/4" package="C10B4">
  7929. <connects>
  7930. <connect gate="G$1" pin="1" pad="1"/>
  7931. <connect gate="G$1" pin="2" pad="2"/>
  7932. </connects>
  7933. <technologies>
  7934. <technology name=""/>
  7935. </technologies>
  7936. </device>
  7937. <device name="10/5" package="C10B5">
  7938. <connects>
  7939. <connect gate="G$1" pin="1" pad="1"/>
  7940. <connect gate="G$1" pin="2" pad="2"/>
  7941. </connects>
  7942. <technologies>
  7943. <technology name=""/>
  7944. </technologies>
  7945. </device>
  7946. <device name="10/6" package="C10B6">
  7947. <connects>
  7948. <connect gate="G$1" pin="1" pad="1"/>
  7949. <connect gate="G$1" pin="2" pad="2"/>
  7950. </connects>
  7951. <technologies>
  7952. <technology name=""/>
  7953. </technologies>
  7954. </device>
  7955. <device name="15/5" package="C15B5">
  7956. <connects>
  7957. <connect gate="G$1" pin="1" pad="1"/>
  7958. <connect gate="G$1" pin="2" pad="2"/>
  7959. </connects>
  7960. <technologies>
  7961. <technology name=""/>
  7962. </technologies>
  7963. </device>
  7964. <device name="15/6" package="C15B6">
  7965. <connects>
  7966. <connect gate="G$1" pin="1" pad="1"/>
  7967. <connect gate="G$1" pin="2" pad="2"/>
  7968. </connects>
  7969. <technologies>
  7970. <technology name=""/>
  7971. </technologies>
  7972. </device>
  7973. <device name="15/7" package="C15B7">
  7974. <connects>
  7975. <connect gate="G$1" pin="1" pad="1"/>
  7976. <connect gate="G$1" pin="2" pad="2"/>
  7977. </connects>
  7978. <technologies>
  7979. <technology name=""/>
  7980. </technologies>
  7981. </device>
  7982. <device name="15/8" package="C15B8">
  7983. <connects>
  7984. <connect gate="G$1" pin="1" pad="1"/>
  7985. <connect gate="G$1" pin="2" pad="2"/>
  7986. </connects>
  7987. <technologies>
  7988. <technology name=""/>
  7989. </technologies>
  7990. </device>
  7991. <device name="15/9" package="C15B9">
  7992. <connects>
  7993. <connect gate="G$1" pin="1" pad="1"/>
  7994. <connect gate="G$1" pin="2" pad="2"/>
  7995. </connects>
  7996. <technologies>
  7997. <technology name=""/>
  7998. </technologies>
  7999. </device>
  8000. <device name="2.5/2" package="C2.5-2">
  8001. <connects>
  8002. <connect gate="G$1" pin="1" pad="1"/>
  8003. <connect gate="G$1" pin="2" pad="2"/>
  8004. </connects>
  8005. <technologies>
  8006. <technology name=""/>
  8007. </technologies>
  8008. </device>
  8009. <device name="2.5/4" package="C2.5-4">
  8010. <connects>
  8011. <connect gate="G$1" pin="1" pad="1"/>
  8012. <connect gate="G$1" pin="2" pad="2"/>
  8013. </connects>
  8014. <technologies>
  8015. <technology name=""/>
  8016. </technologies>
  8017. </device>
  8018. <device name="2.5/5" package="C2.5-5">
  8019. <connects>
  8020. <connect gate="G$1" pin="1" pad="1"/>
  8021. <connect gate="G$1" pin="2" pad="2"/>
  8022. </connects>
  8023. <technologies>
  8024. <technology name=""/>
  8025. </technologies>
  8026. </device>
  8027. <device name="2.5/6" package="C2.5-6">
  8028. <connects>
  8029. <connect gate="G$1" pin="1" pad="1"/>
  8030. <connect gate="G$1" pin="2" pad="2"/>
  8031. </connects>
  8032. <technologies>
  8033. <technology name=""/>
  8034. </technologies>
  8035. </device>
  8036. <device name="22/10" package="C22.5B10">
  8037. <connects>
  8038. <connect gate="G$1" pin="1" pad="1"/>
  8039. <connect gate="G$1" pin="2" pad="2"/>
  8040. </connects>
  8041. <technologies>
  8042. <technology name=""/>
  8043. </technologies>
  8044. </device>
  8045. <device name="22/11" package="C22.5B11">
  8046. <connects>
  8047. <connect gate="G$1" pin="1" pad="1"/>
  8048. <connect gate="G$1" pin="2" pad="2"/>
  8049. </connects>
  8050. <technologies>
  8051. <technology name=""/>
  8052. </technologies>
  8053. </device>
  8054. <device name="22/6" package="C22.5B6">
  8055. <connects>
  8056. <connect gate="G$1" pin="1" pad="1"/>
  8057. <connect gate="G$1" pin="2" pad="2"/>
  8058. </connects>
  8059. <technologies>
  8060. <technology name=""/>
  8061. </technologies>
  8062. </device>
  8063. <device name="22/7" package="C22.5B7">
  8064. <connects>
  8065. <connect gate="G$1" pin="1" pad="1"/>
  8066. <connect gate="G$1" pin="2" pad="2"/>
  8067. </connects>
  8068. <technologies>
  8069. <technology name=""/>
  8070. </technologies>
  8071. </device>
  8072. <device name="22/8" package="C22.5B8">
  8073. <connects>
  8074. <connect gate="G$1" pin="1" pad="1"/>
  8075. <connect gate="G$1" pin="2" pad="2"/>
  8076. </connects>
  8077. <technologies>
  8078. <technology name=""/>
  8079. </technologies>
  8080. </device>
  8081. <device name="27/11" package="C27.5B11">
  8082. <connects>
  8083. <connect gate="G$1" pin="1" pad="1"/>
  8084. <connect gate="G$1" pin="2" pad="2"/>
  8085. </connects>
  8086. <technologies>
  8087. <technology name=""/>
  8088. </technologies>
  8089. </device>
  8090. <device name="27/13" package="C27.5B13">
  8091. <connects>
  8092. <connect gate="G$1" pin="1" pad="1"/>
  8093. <connect gate="G$1" pin="2" pad="2"/>
  8094. </connects>
  8095. <technologies>
  8096. <technology name=""/>
  8097. </technologies>
  8098. </device>
  8099. <device name="27/15" package="C27.5B15">
  8100. <connects>
  8101. <connect gate="G$1" pin="1" pad="1"/>
  8102. <connect gate="G$1" pin="2" pad="2"/>
  8103. </connects>
  8104. <technologies>
  8105. <technology name=""/>
  8106. </technologies>
  8107. </device>
  8108. <device name="27/17" package="C27.5B17">
  8109. <connects>
  8110. <connect gate="G$1" pin="1" pad="1"/>
  8111. <connect gate="G$1" pin="2" pad="2"/>
  8112. </connects>
  8113. <technologies>
  8114. <technology name=""/>
  8115. </technologies>
  8116. </device>
  8117. <device name="27/20" package="C27.5B20">
  8118. <connects>
  8119. <connect gate="G$1" pin="1" pad="1"/>
  8120. <connect gate="G$1" pin="2" pad="2"/>
  8121. </connects>
  8122. <technologies>
  8123. <technology name=""/>
  8124. </technologies>
  8125. </device>
  8126. <device name="27/9" package="C27.5B9">
  8127. <connects>
  8128. <connect gate="G$1" pin="1" pad="1"/>
  8129. <connect gate="G$1" pin="2" pad="2"/>
  8130. </connects>
  8131. <technologies>
  8132. <technology name=""/>
  8133. </technologies>
  8134. </device>
  8135. <device name="37/15" package="C37.5B15">
  8136. <connects>
  8137. <connect gate="G$1" pin="1" pad="1"/>
  8138. <connect gate="G$1" pin="2" pad="2"/>
  8139. </connects>
  8140. <technologies>
  8141. <technology name=""/>
  8142. </technologies>
  8143. </device>
  8144. <device name="37/19" package="C37.5B19">
  8145. <connects>
  8146. <connect gate="G$1" pin="1" pad="1"/>
  8147. <connect gate="G$1" pin="2" pad="2"/>
  8148. </connects>
  8149. <technologies>
  8150. <technology name=""/>
  8151. </technologies>
  8152. </device>
  8153. <device name="37/20" package="C37.5B20">
  8154. <connects>
  8155. <connect gate="G$1" pin="1" pad="1"/>
  8156. <connect gate="G$1" pin="2" pad="2"/>
  8157. </connects>
  8158. <technologies>
  8159. <technology name=""/>
  8160. </technologies>
  8161. </device>
  8162. <device name="5/2.5" package="C5B2.5">
  8163. <connects>
  8164. <connect gate="G$1" pin="1" pad="1"/>
  8165. <connect gate="G$1" pin="2" pad="2"/>
  8166. </connects>
  8167. <technologies>
  8168. <technology name=""/>
  8169. </technologies>
  8170. </device>
  8171. <device name="5/3" package="C5B3">
  8172. <connects>
  8173. <connect gate="G$1" pin="1" pad="1"/>
  8174. <connect gate="G$1" pin="2" pad="2"/>
  8175. </connects>
  8176. <technologies>
  8177. <technology name=""/>
  8178. </technologies>
  8179. </device>
  8180. <device name="5/3.5" package="C5B3.5">
  8181. <connects>
  8182. <connect gate="G$1" pin="1" pad="1"/>
  8183. <connect gate="G$1" pin="2" pad="2"/>
  8184. </connects>
  8185. <technologies>
  8186. <technology name=""/>
  8187. </technologies>
  8188. </device>
  8189. <device name="5/4.5" package="C5B4.5">
  8190. <connects>
  8191. <connect gate="G$1" pin="1" pad="1"/>
  8192. <connect gate="G$1" pin="2" pad="2"/>
  8193. </connects>
  8194. <technologies>
  8195. <technology name=""/>
  8196. </technologies>
  8197. </device>
  8198. <device name="5/5" package="C5B5">
  8199. <connects>
  8200. <connect gate="G$1" pin="1" pad="1"/>
  8201. <connect gate="G$1" pin="2" pad="2"/>
  8202. </connects>
  8203. <technologies>
  8204. <technology name=""/>
  8205. </technologies>
  8206. </device>
  8207. <device name="5/5.5" package="C5B5.5">
  8208. <connects>
  8209. <connect gate="G$1" pin="1" pad="1"/>
  8210. <connect gate="G$1" pin="2" pad="2"/>
  8211. </connects>
  8212. <technologies>
  8213. <technology name=""/>
  8214. </technologies>
  8215. </device>
  8216. <device name="5/7.2" package="C5B7.2">
  8217. <connects>
  8218. <connect gate="G$1" pin="1" pad="1"/>
  8219. <connect gate="G$1" pin="2" pad="2"/>
  8220. </connects>
  8221. <technologies>
  8222. <technology name=""/>
  8223. </technologies>
  8224. </device>
  8225. <device name="7.5/3" package="C7.5B3">
  8226. <connects>
  8227. <connect gate="G$1" pin="1" pad="1"/>
  8228. <connect gate="G$1" pin="2" pad="2"/>
  8229. </connects>
  8230. <technologies>
  8231. <technology name=""/>
  8232. </technologies>
  8233. </device>
  8234. <device name="7.5/4" package="C7.5B4">
  8235. <connects>
  8236. <connect gate="G$1" pin="1" pad="1"/>
  8237. <connect gate="G$1" pin="2" pad="2"/>
  8238. </connects>
  8239. <technologies>
  8240. <technology name=""/>
  8241. </technologies>
  8242. </device>
  8243. <device name="7.5/5" package="C7.5B5">
  8244. <connects>
  8245. <connect gate="G$1" pin="1" pad="1"/>
  8246. <connect gate="G$1" pin="2" pad="2"/>
  8247. </connects>
  8248. <technologies>
  8249. <technology name=""/>
  8250. </technologies>
  8251. </device>
  8252. <device name="7.5/6" package="C7.5B6">
  8253. <connects>
  8254. <connect gate="G$1" pin="1" pad="1"/>
  8255. <connect gate="G$1" pin="2" pad="2"/>
  8256. </connects>
  8257. <technologies>
  8258. <technology name=""/>
  8259. </technologies>
  8260. </device>
  8261. <device name="2,5-3" package="C2.5-3">
  8262. <connects>
  8263. <connect gate="G$1" pin="1" pad="1"/>
  8264. <connect gate="G$1" pin="2" pad="2"/>
  8265. </connects>
  8266. <technologies>
  8267. <technology name=""/>
  8268. </technologies>
  8269. </device>
  8270. </devices>
  8271. </deviceset>
  8272. </devicesets>
  8273. </library>
  8274. </libraries>
  8275. <attributes>
  8276. </attributes>
  8277. <variantdefs>
  8278. </variantdefs>
  8279. <classes>
  8280. <class number="0" name="default" width="2.032" drill="0">
  8281. <clearance class="0" value="0.205"/>
  8282. </class>
  8283. </classes>
  8284. <parts>
  8285. <part name="X3" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  8286. <part name="R1" library="resistor" deviceset="R-US_" device="0207/15" value="300k"/>
  8287. <part name="R2" library="resistor" deviceset="R-US_" device="0207/15" value="300k"/>
  8288. <part name="R3" library="resistor" deviceset="R-US_" device="0207/15" value="300k"/>
  8289. <part name="R4" library="resistor" deviceset="R-US_" device="0207/15" value="300k"/>
  8290. <part name="R5" library="resistor" deviceset="R-US_" device="0207/15" value="300k"/>
  8291. <part name="R6" library="resistor" deviceset="R-US_" device="0207/15" value="300k"/>
  8292. <part name="R7" library="resistor" deviceset="R-US_" device="0207/15" value="300k"/>
  8293. <part name="R8" library="resistor" deviceset="R-US_" device="0207/15" value="300k"/>
  8294. <part name="R9" library="resistor" deviceset="R-US_" device="0207/15" value="300k"/>
  8295. <part name="R17" library="resistor" deviceset="R-US_" device="0207/15" value="300k"/>
  8296. <part name="R18" library="resistor" deviceset="R-EU_" device="R1206" value="1.8k"/>
  8297. <part name="R19" library="resistor" deviceset="R-EU_" device="R1206" value="1.8k"/>
  8298. <part name="R20" library="resistor" deviceset="R-EU_" device="R1206" value="1.8k"/>
  8299. <part name="R21" library="resistor" deviceset="R-EU_" device="R1206" value="1.8k"/>
  8300. <part name="R22" library="resistor" deviceset="R-EU_" device="R1206" value="1.8k"/>
  8301. <part name="R23" library="resistor" deviceset="R-EU_" device="R1206" value="1.8k"/>
  8302. <part name="R24" library="resistor" deviceset="R-EU_" device="R1206" value="1.8k"/>
  8303. <part name="R25" library="resistor" deviceset="R-EU_" device="R1206" value="1.8k"/>
  8304. <part name="R26" library="resistor" deviceset="R-EU_" device="R1206" value="1.8k"/>
  8305. <part name="R34" library="resistor" deviceset="R-EU_" device="R1206" value="4.7k"/>
  8306. <part name="R35" library="resistor" deviceset="R-EU_" device="R1206" value="4.7k"/>
  8307. <part name="R36" library="resistor" deviceset="R-EU_" device="R1206" value="4.7k"/>
  8308. <part name="R37" library="resistor" deviceset="R-EU_" device="R1206" value="4.7k"/>
  8309. <part name="R38" library="resistor" deviceset="R-EU_" device="R1206" value="4.7k"/>
  8310. <part name="R39" library="resistor" deviceset="R-EU_" device="R1206" value="4.7k"/>
  8311. <part name="R40" library="resistor" deviceset="R-EU_" device="R1206" value="4.7k"/>
  8312. <part name="R41" library="resistor" deviceset="R-EU_" device="R1206" value="4.7k"/>
  8313. <part name="R42" library="resistor" deviceset="R-EU_" device="R1206" value="4.7k"/>
  8314. <part name="JP3" library="pinhead" deviceset="PINHD-2X6" device=""/>
  8315. <part name="JP4" library="pinhead" deviceset="PINHD-2X6" device=""/>
  8316. <part name="JP5" library="pinhead" deviceset="PINHD-2X6" device=""/>
  8317. <part name="JP6" library="pinhead" deviceset="PINHD-2X6" device=""/>
  8318. <part name="QF1" library="crystal" deviceset="8M10AHC49T" device=""/>
  8319. <part name="R10" library="resistor" deviceset="R-EU_" device="M1206" value="2.5k"/>
  8320. <part name="LED1" library="led" deviceset="LED" device="3MM"/>
  8321. <part name="JP7" library="pinhead" deviceset="PINHD-1X3" device="" value="USART"/>
  8322. <part name="U$3" library="mc33269dt" deviceset="MC33269DT" device=""/>
  8323. <part name="C1" library="capacitor-wima" deviceset="C" device="2.5/6"/>
  8324. <part name="JP8" library="pinhead" deviceset="PINHD-1X8" device="" value="SPI"/>
  8325. <part name="JP9" library="pinhead" deviceset="PINHD-1X3" device="" value="USB"/>
  8326. <part name="JP1" library="pinhead" deviceset="PINHD-1X8" device=""/>
  8327. <part name="R13" library="resistor" deviceset="R-EU_" device="M1206" value="2.5k"/>
  8328. <part name="LED2" library="led" deviceset="LED" device="3MM"/>
  8329. <part name="JP10" library="pinhead" deviceset="PINHD-1X3" device="" value="BOOT"/>
  8330. <part name="JP11" library="pinhead" deviceset="PINHD-1X3" device="" value="RST"/>
  8331. <part name="X4" library="con-phoenix-3.81" deviceset="1705621" device=""/>
  8332. <part name="R14" library="resistor" deviceset="R-US_" device="0207/15" value="300k"/>
  8333. <part name="R15" library="resistor" deviceset="R-EU_" device="R1206" value="1.8k"/>
  8334. <part name="R16" library="resistor" deviceset="R-EU_" device="R1206" value="4.7k"/>
  8335. <part name="JP12" library="pinhead" deviceset="PINHD-1X4" device=""/>
  8336. <part name="R11" library="resistor" deviceset="R-US_" device="0207/15" value="100"/>
  8337. <part name="R12" library="resistor" deviceset="R-US_" device="0207/15" value="10"/>
  8338. <part name="JP2" library="pinhead" deviceset="PINHD-1X6" device=""/>
  8339. <part name="JP13" library="pinhead" deviceset="PINHD-1X4" device=""/>
  8340. <part name="JP14" library="pinhead" deviceset="PINHD-1X1" device=""/>
  8341. </parts>
  8342. <sheets>
  8343. <sheet>
  8344. <plain>
  8345. </plain>
  8346. <instances>
  8347. <instance part="X3" gate="-1" x="-180.34" y="-99.06"/>
  8348. <instance part="X3" gate="-2" x="-180.34" y="-106.68"/>
  8349. <instance part="X3" gate="-3" x="-180.34" y="-114.3"/>
  8350. <instance part="X3" gate="-4" x="-180.34" y="-121.92"/>
  8351. <instance part="R1" gate="G$1" x="-172.72" y="27.94"/>
  8352. <instance part="R2" gate="G$1" x="-172.72" y="20.32"/>
  8353. <instance part="R3" gate="G$1" x="-172.72" y="12.7"/>
  8354. <instance part="R4" gate="G$1" x="-172.72" y="5.08"/>
  8355. <instance part="R5" gate="G$1" x="-172.72" y="-2.54"/>
  8356. <instance part="R6" gate="G$1" x="-172.72" y="-10.16"/>
  8357. <instance part="R7" gate="G$1" x="-172.72" y="-17.78"/>
  8358. <instance part="R8" gate="G$1" x="-172.72" y="-25.4"/>
  8359. <instance part="R9" gate="G$1" x="-172.72" y="-33.02"/>
  8360. <instance part="R17" gate="G$1" x="-160.02" y="-121.92"/>
  8361. <instance part="R18" gate="G$1" x="-144.78" y="27.94"/>
  8362. <instance part="R19" gate="G$1" x="-144.78" y="20.32"/>
  8363. <instance part="R20" gate="G$1" x="-144.78" y="12.7"/>
  8364. <instance part="R21" gate="G$1" x="-144.78" y="5.08"/>
  8365. <instance part="R22" gate="G$1" x="-144.78" y="-2.54"/>
  8366. <instance part="R23" gate="G$1" x="-144.78" y="-10.16"/>
  8367. <instance part="R24" gate="G$1" x="-144.78" y="-17.78"/>
  8368. <instance part="R25" gate="G$1" x="-144.78" y="-25.4"/>
  8369. <instance part="R26" gate="G$1" x="-144.78" y="-33.02"/>
  8370. <instance part="R34" gate="G$1" x="-71.12" y="40.64"/>
  8371. <instance part="R35" gate="G$1" x="-71.12" y="33.02"/>
  8372. <instance part="R36" gate="G$1" x="-71.12" y="25.4"/>
  8373. <instance part="R37" gate="G$1" x="-71.12" y="17.78"/>
  8374. <instance part="R38" gate="G$1" x="-71.12" y="10.16"/>
  8375. <instance part="R39" gate="G$1" x="-71.12" y="2.54"/>
  8376. <instance part="R40" gate="G$1" x="-71.12" y="-5.08"/>
  8377. <instance part="R41" gate="G$1" x="-71.12" y="-12.7"/>
  8378. <instance part="R42" gate="G$1" x="-71.12" y="-20.32"/>
  8379. <instance part="JP3" gate="A" x="10.16" y="66.04" rot="R90"/>
  8380. <instance part="JP4" gate="A" x="48.26" y="96.52" rot="R180"/>
  8381. <instance part="JP5" gate="A" x="12.7" y="129.54" rot="R270"/>
  8382. <instance part="JP6" gate="A" x="-25.4" y="99.06"/>
  8383. <instance part="QF1" gate="G$1" x="-25.4" y="63.5" rot="R90"/>
  8384. <instance part="R10" gate="G$1" x="66.04" y="129.54"/>
  8385. <instance part="LED1" gate="G$1" x="78.74" y="119.38"/>
  8386. <instance part="JP7" gate="A" x="40.64" y="129.54" rot="R180"/>
  8387. <instance part="U$3" gate="G$1" x="-104.14" y="-78.74" rot="R90"/>
  8388. <instance part="C1" gate="G$1" x="-88.9" y="-63.5"/>
  8389. <instance part="JP8" gate="A" x="-33.02" y="165.1" rot="MR0"/>
  8390. <instance part="JP9" gate="A" x="-12.7" y="147.32" rot="R180"/>
  8391. <instance part="JP1" gate="A" x="-66.04" y="124.46" rot="MR0"/>
  8392. <instance part="R13" gate="G$1" x="-5.08" y="93.98"/>
  8393. <instance part="LED2" gate="G$1" x="10.16" y="93.98" rot="R90"/>
  8394. <instance part="JP10" gate="A" x="-93.98" y="111.76" rot="R180"/>
  8395. <instance part="JP11" gate="A" x="-55.88" y="66.04" rot="R180"/>
  8396. <instance part="X4" gate="-1" x="-180.34" y="27.94"/>
  8397. <instance part="X4" gate="-2" x="-180.34" y="20.32"/>
  8398. <instance part="X4" gate="-3" x="-180.34" y="12.7"/>
  8399. <instance part="X4" gate="-4" x="-180.34" y="5.08"/>
  8400. <instance part="X4" gate="-5" x="-180.34" y="-2.54"/>
  8401. <instance part="X4" gate="-6" x="-180.34" y="-10.16"/>
  8402. <instance part="X4" gate="-7" x="-180.34" y="-17.78"/>
  8403. <instance part="X4" gate="-8" x="-180.34" y="-25.4"/>
  8404. <instance part="X4" gate="-9" x="-180.34" y="-33.02"/>
  8405. <instance part="X4" gate="-10" x="-180.34" y="-40.64"/>
  8406. <instance part="R14" gate="G$1" x="-172.72" y="-40.64"/>
  8407. <instance part="R15" gate="G$1" x="-147.32" y="-40.64"/>
  8408. <instance part="R16" gate="G$1" x="-71.12" y="-27.94"/>
  8409. <instance part="JP12" gate="A" x="40.64" y="167.64" rot="MR90"/>
  8410. <instance part="R11" gate="G$1" x="-71.12" y="86.36" rot="R90"/>
  8411. <instance part="R12" gate="G$1" x="-93.98" y="93.98" rot="R180"/>
  8412. <instance part="JP2" gate="A" x="-124.46" y="73.66" rot="R90"/>
  8413. <instance part="JP13" gate="A" x="-127" y="129.54" rot="R270"/>
  8414. <instance part="JP14" gate="G$1" x="-139.7" y="73.66" rot="R90"/>
  8415. </instances>
  8416. <busses>
  8417. </busses>
  8418. <nets>
  8419. <net name="N$18" class="0">
  8420. <segment>
  8421. <pinref part="R1" gate="G$1" pin="2"/>
  8422. <pinref part="R18" gate="G$1" pin="1"/>
  8423. <wire x1="-149.86" y1="27.94" x2="-165.1" y2="27.94" width="0.1524" layer="91"/>
  8424. <pinref part="R34" gate="G$1" pin="1"/>
  8425. <wire x1="-165.1" y1="27.94" x2="-167.64" y2="27.94" width="0.1524" layer="91"/>
  8426. <wire x1="-76.2" y1="40.64" x2="-83.82" y2="40.64" width="0.1524" layer="91"/>
  8427. <wire x1="-83.82" y1="40.64" x2="-119.38" y2="40.64" width="0.1524" layer="91"/>
  8428. <wire x1="-119.38" y1="40.64" x2="-165.1" y2="40.64" width="0.1524" layer="91"/>
  8429. <wire x1="-165.1" y1="40.64" x2="-165.1" y2="27.94" width="0.1524" layer="91"/>
  8430. <junction x="-165.1" y="27.94"/>
  8431. <wire x1="-119.38" y1="71.12" x2="-119.38" y2="40.64" width="0.1524" layer="91"/>
  8432. <junction x="-119.38" y="40.64"/>
  8433. <wire x1="-83.82" y1="40.64" x2="-83.82" y2="45.72" width="0.1524" layer="91"/>
  8434. <wire x1="-83.82" y1="45.72" x2="58.42" y2="45.72" width="0.1524" layer="91"/>
  8435. <junction x="-83.82" y="40.64"/>
  8436. <wire x1="58.42" y1="45.72" x2="58.42" y2="99.06" width="0.1524" layer="91"/>
  8437. <pinref part="JP4" gate="A" pin="7"/>
  8438. <wire x1="58.42" y1="99.06" x2="50.8" y2="99.06" width="0.1524" layer="91"/>
  8439. <pinref part="JP2" gate="A" pin="6"/>
  8440. </segment>
  8441. </net>
  8442. <net name="N$19" class="0">
  8443. <segment>
  8444. <pinref part="R2" gate="G$1" pin="2"/>
  8445. <pinref part="R19" gate="G$1" pin="1"/>
  8446. <wire x1="-149.86" y1="20.32" x2="-162.56" y2="20.32" width="0.1524" layer="91"/>
  8447. <pinref part="R35" gate="G$1" pin="1"/>
  8448. <wire x1="-162.56" y1="20.32" x2="-167.64" y2="20.32" width="0.1524" layer="91"/>
  8449. <wire x1="-76.2" y1="33.02" x2="-83.82" y2="33.02" width="0.1524" layer="91"/>
  8450. <wire x1="-83.82" y1="33.02" x2="-121.92" y2="33.02" width="0.1524" layer="91"/>
  8451. <wire x1="-121.92" y1="33.02" x2="-162.56" y2="33.02" width="0.1524" layer="91"/>
  8452. <wire x1="-162.56" y1="33.02" x2="-162.56" y2="20.32" width="0.1524" layer="91"/>
  8453. <junction x="-162.56" y="20.32"/>
  8454. <wire x1="-121.92" y1="71.12" x2="-121.92" y2="33.02" width="0.1524" layer="91"/>
  8455. <junction x="-121.92" y="33.02"/>
  8456. <pinref part="JP4" gate="A" pin="6"/>
  8457. <wire x1="43.18" y1="96.52" x2="38.1" y2="96.52" width="0.1524" layer="91"/>
  8458. <wire x1="38.1" y1="96.52" x2="38.1" y2="35.56" width="0.1524" layer="91"/>
  8459. <wire x1="38.1" y1="35.56" x2="-83.82" y2="35.56" width="0.1524" layer="91"/>
  8460. <wire x1="-83.82" y1="35.56" x2="-83.82" y2="33.02" width="0.1524" layer="91"/>
  8461. <junction x="-83.82" y="33.02"/>
  8462. <pinref part="JP2" gate="A" pin="5"/>
  8463. </segment>
  8464. </net>
  8465. <net name="N$20" class="0">
  8466. <segment>
  8467. <pinref part="R3" gate="G$1" pin="2"/>
  8468. <pinref part="R20" gate="G$1" pin="1"/>
  8469. <wire x1="-149.86" y1="12.7" x2="-160.02" y2="12.7" width="0.1524" layer="91"/>
  8470. <pinref part="R36" gate="G$1" pin="1"/>
  8471. <wire x1="-160.02" y1="12.7" x2="-167.64" y2="12.7" width="0.1524" layer="91"/>
  8472. <wire x1="-76.2" y1="25.4" x2="-83.82" y2="25.4" width="0.1524" layer="91"/>
  8473. <wire x1="-83.82" y1="25.4" x2="-124.46" y2="25.4" width="0.1524" layer="91"/>
  8474. <wire x1="-124.46" y1="25.4" x2="-160.02" y2="25.4" width="0.1524" layer="91"/>
  8475. <wire x1="-160.02" y1="25.4" x2="-160.02" y2="12.7" width="0.1524" layer="91"/>
  8476. <junction x="-160.02" y="12.7"/>
  8477. <wire x1="-124.46" y1="71.12" x2="-124.46" y2="25.4" width="0.1524" layer="91"/>
  8478. <junction x="-124.46" y="25.4"/>
  8479. <pinref part="JP4" gate="A" pin="5"/>
  8480. <wire x1="50.8" y1="96.52" x2="60.96" y2="96.52" width="0.1524" layer="91"/>
  8481. <wire x1="60.96" y1="96.52" x2="60.96" y2="27.94" width="0.1524" layer="91"/>
  8482. <wire x1="60.96" y1="27.94" x2="-83.82" y2="27.94" width="0.1524" layer="91"/>
  8483. <wire x1="-83.82" y1="27.94" x2="-83.82" y2="25.4" width="0.1524" layer="91"/>
  8484. <junction x="-83.82" y="25.4"/>
  8485. <pinref part="JP2" gate="A" pin="4"/>
  8486. </segment>
  8487. </net>
  8488. <net name="N$21" class="0">
  8489. <segment>
  8490. <pinref part="R4" gate="G$1" pin="2"/>
  8491. <pinref part="R21" gate="G$1" pin="1"/>
  8492. <wire x1="-149.86" y1="5.08" x2="-157.48" y2="5.08" width="0.1524" layer="91"/>
  8493. <pinref part="R37" gate="G$1" pin="1"/>
  8494. <wire x1="-157.48" y1="5.08" x2="-167.64" y2="5.08" width="0.1524" layer="91"/>
  8495. <wire x1="-76.2" y1="17.78" x2="-83.82" y2="17.78" width="0.1524" layer="91"/>
  8496. <wire x1="-83.82" y1="17.78" x2="-127" y2="17.78" width="0.1524" layer="91"/>
  8497. <wire x1="-127" y1="17.78" x2="-157.48" y2="17.78" width="0.1524" layer="91"/>
  8498. <wire x1="-157.48" y1="17.78" x2="-157.48" y2="5.08" width="0.1524" layer="91"/>
  8499. <junction x="-157.48" y="5.08"/>
  8500. <wire x1="-127" y1="71.12" x2="-127" y2="17.78" width="0.1524" layer="91"/>
  8501. <junction x="-127" y="17.78"/>
  8502. <pinref part="JP4" gate="A" pin="4"/>
  8503. <wire x1="43.18" y1="93.98" x2="35.56" y2="93.98" width="0.1524" layer="91"/>
  8504. <wire x1="35.56" y1="93.98" x2="35.56" y2="20.32" width="0.1524" layer="91"/>
  8505. <wire x1="35.56" y1="20.32" x2="-83.82" y2="20.32" width="0.1524" layer="91"/>
  8506. <wire x1="-83.82" y1="20.32" x2="-83.82" y2="17.78" width="0.1524" layer="91"/>
  8507. <junction x="-83.82" y="17.78"/>
  8508. <pinref part="JP2" gate="A" pin="3"/>
  8509. </segment>
  8510. </net>
  8511. <net name="N$22" class="0">
  8512. <segment>
  8513. <pinref part="R5" gate="G$1" pin="2"/>
  8514. <pinref part="R22" gate="G$1" pin="1"/>
  8515. <wire x1="-149.86" y1="-2.54" x2="-154.94" y2="-2.54" width="0.1524" layer="91"/>
  8516. <pinref part="R38" gate="G$1" pin="1"/>
  8517. <wire x1="-154.94" y1="-2.54" x2="-167.64" y2="-2.54" width="0.1524" layer="91"/>
  8518. <wire x1="-76.2" y1="10.16" x2="-83.82" y2="10.16" width="0.1524" layer="91"/>
  8519. <wire x1="-83.82" y1="10.16" x2="-129.54" y2="10.16" width="0.1524" layer="91"/>
  8520. <wire x1="-129.54" y1="10.16" x2="-154.94" y2="10.16" width="0.1524" layer="91"/>
  8521. <wire x1="-154.94" y1="10.16" x2="-154.94" y2="-2.54" width="0.1524" layer="91"/>
  8522. <junction x="-154.94" y="-2.54"/>
  8523. <wire x1="-129.54" y1="71.12" x2="-129.54" y2="10.16" width="0.1524" layer="91"/>
  8524. <junction x="-129.54" y="10.16"/>
  8525. <pinref part="JP4" gate="A" pin="3"/>
  8526. <wire x1="50.8" y1="93.98" x2="63.5" y2="93.98" width="0.1524" layer="91"/>
  8527. <wire x1="63.5" y1="93.98" x2="63.5" y2="12.7" width="0.1524" layer="91"/>
  8528. <wire x1="63.5" y1="12.7" x2="-83.82" y2="12.7" width="0.1524" layer="91"/>
  8529. <wire x1="-83.82" y1="12.7" x2="-83.82" y2="10.16" width="0.1524" layer="91"/>
  8530. <junction x="-83.82" y="10.16"/>
  8531. <pinref part="JP2" gate="A" pin="2"/>
  8532. </segment>
  8533. </net>
  8534. <net name="N$23" class="0">
  8535. <segment>
  8536. <pinref part="R6" gate="G$1" pin="2"/>
  8537. <pinref part="R23" gate="G$1" pin="1"/>
  8538. <wire x1="-149.86" y1="-10.16" x2="-165.1" y2="-10.16" width="0.1524" layer="91"/>
  8539. <pinref part="R39" gate="G$1" pin="1"/>
  8540. <wire x1="-165.1" y1="-10.16" x2="-167.64" y2="-10.16" width="0.1524" layer="91"/>
  8541. <wire x1="-76.2" y1="2.54" x2="-83.82" y2="2.54" width="0.1524" layer="91"/>
  8542. <wire x1="-83.82" y1="2.54" x2="-132.08" y2="2.54" width="0.1524" layer="91"/>
  8543. <wire x1="-132.08" y1="2.54" x2="-165.1" y2="2.54" width="0.1524" layer="91"/>
  8544. <wire x1="-165.1" y1="2.54" x2="-165.1" y2="-10.16" width="0.1524" layer="91"/>
  8545. <junction x="-165.1" y="-10.16"/>
  8546. <wire x1="-132.08" y1="71.12" x2="-132.08" y2="2.54" width="0.1524" layer="91"/>
  8547. <junction x="-132.08" y="2.54"/>
  8548. <pinref part="JP4" gate="A" pin="2"/>
  8549. <wire x1="43.18" y1="91.44" x2="33.02" y2="91.44" width="0.1524" layer="91"/>
  8550. <wire x1="33.02" y1="91.44" x2="33.02" y2="5.08" width="0.1524" layer="91"/>
  8551. <wire x1="33.02" y1="5.08" x2="-83.82" y2="5.08" width="0.1524" layer="91"/>
  8552. <wire x1="-83.82" y1="5.08" x2="-83.82" y2="2.54" width="0.1524" layer="91"/>
  8553. <junction x="-83.82" y="2.54"/>
  8554. <pinref part="JP2" gate="A" pin="1"/>
  8555. </segment>
  8556. </net>
  8557. <net name="N$24" class="0">
  8558. <segment>
  8559. <pinref part="R7" gate="G$1" pin="2"/>
  8560. <pinref part="R24" gate="G$1" pin="1"/>
  8561. <wire x1="-149.86" y1="-17.78" x2="-162.56" y2="-17.78" width="0.1524" layer="91"/>
  8562. <pinref part="R40" gate="G$1" pin="1"/>
  8563. <wire x1="-162.56" y1="-17.78" x2="-167.64" y2="-17.78" width="0.1524" layer="91"/>
  8564. <wire x1="-76.2" y1="-5.08" x2="-83.82" y2="-5.08" width="0.1524" layer="91"/>
  8565. <wire x1="-83.82" y1="-5.08" x2="-162.56" y2="-5.08" width="0.1524" layer="91"/>
  8566. <wire x1="-162.56" y1="-5.08" x2="-162.56" y2="-17.78" width="0.1524" layer="91"/>
  8567. <junction x="-162.56" y="-17.78"/>
  8568. <pinref part="JP4" gate="A" pin="1"/>
  8569. <wire x1="50.8" y1="91.44" x2="66.04" y2="91.44" width="0.1524" layer="91"/>
  8570. <wire x1="66.04" y1="91.44" x2="66.04" y2="-2.54" width="0.1524" layer="91"/>
  8571. <wire x1="66.04" y1="-2.54" x2="-83.82" y2="-2.54" width="0.1524" layer="91"/>
  8572. <wire x1="-83.82" y1="-2.54" x2="-83.82" y2="-5.08" width="0.1524" layer="91"/>
  8573. <junction x="-83.82" y="-5.08"/>
  8574. </segment>
  8575. </net>
  8576. <net name="N$25" class="0">
  8577. <segment>
  8578. <pinref part="R8" gate="G$1" pin="2"/>
  8579. <pinref part="R25" gate="G$1" pin="1"/>
  8580. <wire x1="-149.86" y1="-25.4" x2="-160.02" y2="-25.4" width="0.1524" layer="91"/>
  8581. <pinref part="R41" gate="G$1" pin="1"/>
  8582. <wire x1="-160.02" y1="-25.4" x2="-167.64" y2="-25.4" width="0.1524" layer="91"/>
  8583. <wire x1="-76.2" y1="-12.7" x2="-83.82" y2="-12.7" width="0.1524" layer="91"/>
  8584. <wire x1="-83.82" y1="-12.7" x2="-160.02" y2="-12.7" width="0.1524" layer="91"/>
  8585. <wire x1="-160.02" y1="-12.7" x2="-160.02" y2="-25.4" width="0.1524" layer="91"/>
  8586. <junction x="-160.02" y="-25.4"/>
  8587. <pinref part="JP3" gate="A" pin="12"/>
  8588. <wire x1="17.78" y1="71.12" x2="17.78" y2="73.66" width="0.1524" layer="91"/>
  8589. <wire x1="17.78" y1="73.66" x2="22.86" y2="73.66" width="0.1524" layer="91"/>
  8590. <wire x1="22.86" y1="73.66" x2="22.86" y2="-10.16" width="0.1524" layer="91"/>
  8591. <wire x1="22.86" y1="-10.16" x2="-83.82" y2="-10.16" width="0.1524" layer="91"/>
  8592. <wire x1="-83.82" y1="-10.16" x2="-83.82" y2="-12.7" width="0.1524" layer="91"/>
  8593. <junction x="-83.82" y="-12.7"/>
  8594. </segment>
  8595. </net>
  8596. <net name="N$26" class="0">
  8597. <segment>
  8598. <pinref part="R9" gate="G$1" pin="2"/>
  8599. <pinref part="R26" gate="G$1" pin="1"/>
  8600. <wire x1="-149.86" y1="-33.02" x2="-157.48" y2="-33.02" width="0.1524" layer="91"/>
  8601. <pinref part="R42" gate="G$1" pin="1"/>
  8602. <wire x1="-157.48" y1="-33.02" x2="-167.64" y2="-33.02" width="0.1524" layer="91"/>
  8603. <wire x1="-76.2" y1="-20.32" x2="-83.82" y2="-20.32" width="0.1524" layer="91"/>
  8604. <wire x1="-83.82" y1="-20.32" x2="-157.48" y2="-20.32" width="0.1524" layer="91"/>
  8605. <wire x1="-157.48" y1="-20.32" x2="-157.48" y2="-33.02" width="0.1524" layer="91"/>
  8606. <junction x="-157.48" y="-33.02"/>
  8607. <pinref part="JP3" gate="A" pin="11"/>
  8608. <wire x1="17.78" y1="63.5" x2="17.78" y2="-17.78" width="0.1524" layer="91"/>
  8609. <wire x1="17.78" y1="-17.78" x2="-83.82" y2="-17.78" width="0.1524" layer="91"/>
  8610. <wire x1="-83.82" y1="-17.78" x2="-83.82" y2="-20.32" width="0.1524" layer="91"/>
  8611. <junction x="-83.82" y="-20.32"/>
  8612. </segment>
  8613. </net>
  8614. <net name="N$36" class="0">
  8615. <segment>
  8616. <wire x1="-121.92" y1="132.08" x2="-121.92" y2="172.72" width="0.1524" layer="91"/>
  8617. <wire x1="-121.92" y1="172.72" x2="-109.22" y2="172.72" width="0.1524" layer="91"/>
  8618. <wire x1="-109.22" y1="172.72" x2="-109.22" y2="185.42" width="0.1524" layer="91"/>
  8619. <pinref part="JP5" gate="A" pin="1"/>
  8620. <wire x1="17.78" y1="132.08" x2="17.78" y2="175.26" width="0.1524" layer="91"/>
  8621. <pinref part="JP8" gate="A" pin="1"/>
  8622. <wire x1="17.78" y1="175.26" x2="-22.86" y2="175.26" width="0.1524" layer="91"/>
  8623. <wire x1="-22.86" y1="175.26" x2="-30.48" y2="175.26" width="0.1524" layer="91"/>
  8624. <wire x1="-109.22" y1="185.42" x2="-22.86" y2="185.42" width="0.1524" layer="91"/>
  8625. <wire x1="-22.86" y1="185.42" x2="-22.86" y2="175.26" width="0.1524" layer="91"/>
  8626. <junction x="-22.86" y="175.26"/>
  8627. <pinref part="JP13" gate="A" pin="1"/>
  8628. </segment>
  8629. </net>
  8630. <net name="N$37" class="0">
  8631. <segment>
  8632. <wire x1="-124.46" y1="132.08" x2="-124.46" y2="170.18" width="0.1524" layer="91"/>
  8633. <wire x1="-124.46" y1="170.18" x2="-106.68" y2="170.18" width="0.1524" layer="91"/>
  8634. <wire x1="-106.68" y1="170.18" x2="-106.68" y2="182.88" width="0.1524" layer="91"/>
  8635. <pinref part="JP5" gate="A" pin="4"/>
  8636. <wire x1="15.24" y1="124.46" x2="15.24" y2="114.3" width="0.1524" layer="91"/>
  8637. <wire x1="15.24" y1="114.3" x2="25.4" y2="114.3" width="0.1524" layer="91"/>
  8638. <wire x1="25.4" y1="114.3" x2="25.4" y2="172.72" width="0.1524" layer="91"/>
  8639. <pinref part="JP8" gate="A" pin="2"/>
  8640. <wire x1="25.4" y1="172.72" x2="-20.32" y2="172.72" width="0.1524" layer="91"/>
  8641. <wire x1="-20.32" y1="172.72" x2="-30.48" y2="172.72" width="0.1524" layer="91"/>
  8642. <wire x1="-106.68" y1="182.88" x2="-20.32" y2="182.88" width="0.1524" layer="91"/>
  8643. <wire x1="-20.32" y1="182.88" x2="-20.32" y2="172.72" width="0.1524" layer="91"/>
  8644. <junction x="-20.32" y="172.72"/>
  8645. <pinref part="JP13" gate="A" pin="2"/>
  8646. </segment>
  8647. </net>
  8648. <net name="N$39" class="0">
  8649. <segment>
  8650. <wire x1="-129.54" y1="132.08" x2="-129.54" y2="157.48" width="0.1524" layer="91"/>
  8651. <wire x1="-129.54" y1="157.48" x2="-114.3" y2="157.48" width="0.1524" layer="91"/>
  8652. <wire x1="-114.3" y1="157.48" x2="-114.3" y2="190.5" width="0.1524" layer="91"/>
  8653. <pinref part="JP5" gate="A" pin="3"/>
  8654. <pinref part="JP8" gate="A" pin="7"/>
  8655. <wire x1="15.24" y1="132.08" x2="15.24" y2="160.02" width="0.1524" layer="91"/>
  8656. <wire x1="15.24" y1="160.02" x2="-15.24" y2="160.02" width="0.1524" layer="91"/>
  8657. <wire x1="-15.24" y1="160.02" x2="-30.48" y2="160.02" width="0.1524" layer="91"/>
  8658. <wire x1="-114.3" y1="190.5" x2="-15.24" y2="190.5" width="0.1524" layer="91"/>
  8659. <wire x1="-15.24" y1="190.5" x2="-15.24" y2="160.02" width="0.1524" layer="91"/>
  8660. <junction x="-15.24" y="160.02"/>
  8661. <pinref part="JP13" gate="A" pin="4"/>
  8662. </segment>
  8663. </net>
  8664. <net name="N$38" class="0">
  8665. <segment>
  8666. <wire x1="-127" y1="132.08" x2="-127" y2="162.56" width="0.1524" layer="91"/>
  8667. <wire x1="-127" y1="162.56" x2="-111.76" y2="162.56" width="0.1524" layer="91"/>
  8668. <wire x1="-111.76" y1="162.56" x2="-111.76" y2="187.96" width="0.1524" layer="91"/>
  8669. <pinref part="JP5" gate="A" pin="2"/>
  8670. <wire x1="17.78" y1="124.46" x2="17.78" y2="116.84" width="0.1524" layer="91"/>
  8671. <wire x1="17.78" y1="116.84" x2="22.86" y2="116.84" width="0.1524" layer="91"/>
  8672. <pinref part="JP8" gate="A" pin="5"/>
  8673. <wire x1="22.86" y1="116.84" x2="22.86" y2="165.1" width="0.1524" layer="91"/>
  8674. <wire x1="22.86" y1="165.1" x2="-17.78" y2="165.1" width="0.1524" layer="91"/>
  8675. <wire x1="-17.78" y1="165.1" x2="-30.48" y2="165.1" width="0.1524" layer="91"/>
  8676. <wire x1="-111.76" y1="187.96" x2="-17.78" y2="187.96" width="0.1524" layer="91"/>
  8677. <wire x1="-17.78" y1="187.96" x2="-17.78" y2="165.1" width="0.1524" layer="91"/>
  8678. <junction x="-17.78" y="165.1"/>
  8679. <pinref part="JP13" gate="A" pin="3"/>
  8680. </segment>
  8681. </net>
  8682. <net name="N$40" class="0">
  8683. <segment>
  8684. <pinref part="JP11" gate="A" pin="3"/>
  8685. <wire x1="-53.34" y1="68.58" x2="-48.26" y2="68.58" width="0.1524" layer="91"/>
  8686. <wire x1="-48.26" y1="68.58" x2="-48.26" y2="73.66" width="0.1524" layer="91"/>
  8687. <wire x1="-48.26" y1="73.66" x2="-83.82" y2="73.66" width="0.1524" layer="91"/>
  8688. <wire x1="-88.9" y1="93.98" x2="-83.82" y2="93.98" width="0.1524" layer="91"/>
  8689. <wire x1="-83.82" y1="93.98" x2="-71.12" y2="93.98" width="0.1524" layer="91"/>
  8690. <wire x1="-71.12" y1="93.98" x2="-71.12" y2="91.44" width="0.1524" layer="91"/>
  8691. <wire x1="-71.12" y1="91.44" x2="-48.26" y2="91.44" width="0.1524" layer="91"/>
  8692. <pinref part="JP6" gate="A" pin="12"/>
  8693. <wire x1="-15.24" y1="86.36" x2="-15.24" y2="91.44" width="0.1524" layer="91"/>
  8694. <wire x1="-15.24" y1="91.44" x2="-20.32" y2="91.44" width="0.1524" layer="91"/>
  8695. <wire x1="-48.26" y1="91.44" x2="-48.26" y2="86.36" width="0.1524" layer="91"/>
  8696. <wire x1="-48.26" y1="86.36" x2="-15.24" y2="86.36" width="0.1524" layer="91"/>
  8697. <pinref part="JP8" gate="A" pin="4"/>
  8698. <wire x1="-30.48" y1="167.64" x2="-22.86" y2="167.64" width="0.1524" layer="91"/>
  8699. <wire x1="-22.86" y1="167.64" x2="-22.86" y2="149.86" width="0.1524" layer="91"/>
  8700. <wire x1="-22.86" y1="149.86" x2="-45.72" y2="149.86" width="0.1524" layer="91"/>
  8701. <wire x1="-45.72" y1="149.86" x2="-45.72" y2="91.44" width="0.1524" layer="91"/>
  8702. <wire x1="-45.72" y1="91.44" x2="-48.26" y2="91.44" width="0.1524" layer="91"/>
  8703. <junction x="-48.26" y="91.44"/>
  8704. <pinref part="R11" gate="G$1" pin="2"/>
  8705. <junction x="-71.12" y="91.44"/>
  8706. <pinref part="R12" gate="G$1" pin="1"/>
  8707. <wire x1="-83.82" y1="73.66" x2="-83.82" y2="93.98" width="0.1524" layer="91"/>
  8708. <junction x="-83.82" y="93.98"/>
  8709. <pinref part="JP10" gate="A" pin="1"/>
  8710. <wire x1="-91.44" y1="109.22" x2="-83.82" y2="109.22" width="0.1524" layer="91"/>
  8711. <wire x1="-83.82" y1="93.98" x2="-83.82" y2="109.22" width="0.1524" layer="91"/>
  8712. </segment>
  8713. </net>
  8714. <net name="N$10" class="0">
  8715. <segment>
  8716. <pinref part="JP3" gate="A" pin="5"/>
  8717. <wire x1="10.16" y1="63.5" x2="10.16" y2="53.34" width="0.1524" layer="91"/>
  8718. <wire x1="10.16" y1="53.34" x2="-25.4" y2="53.34" width="0.1524" layer="91"/>
  8719. <pinref part="QF1" gate="G$1" pin="1"/>
  8720. <wire x1="-25.4" y1="53.34" x2="-25.4" y2="60.96" width="0.1524" layer="91"/>
  8721. </segment>
  8722. </net>
  8723. <net name="N$11" class="0">
  8724. <segment>
  8725. <pinref part="QF1" gate="G$1" pin="3"/>
  8726. <wire x1="-25.4" y1="66.04" x2="-25.4" y2="83.82" width="0.1524" layer="91"/>
  8727. <wire x1="-25.4" y1="83.82" x2="10.16" y2="83.82" width="0.1524" layer="91"/>
  8728. <pinref part="JP3" gate="A" pin="6"/>
  8729. <wire x1="10.16" y1="83.82" x2="10.16" y2="71.12" width="0.1524" layer="91"/>
  8730. </segment>
  8731. </net>
  8732. <net name="N$12" class="0">
  8733. <segment>
  8734. <pinref part="JP3" gate="A" pin="7"/>
  8735. <wire x1="12.7" y1="63.5" x2="12.7" y2="55.88" width="0.1524" layer="91"/>
  8736. <wire x1="12.7" y1="55.88" x2="-35.56" y2="55.88" width="0.1524" layer="91"/>
  8737. <pinref part="JP11" gate="A" pin="2"/>
  8738. <wire x1="-53.34" y1="66.04" x2="-35.56" y2="66.04" width="0.1524" layer="91"/>
  8739. <wire x1="-35.56" y1="66.04" x2="-35.56" y2="55.88" width="0.1524" layer="91"/>
  8740. </segment>
  8741. </net>
  8742. <net name="N$14" class="0">
  8743. <segment>
  8744. <pinref part="R10" gate="G$1" pin="2"/>
  8745. <pinref part="LED1" gate="G$1" pin="A"/>
  8746. <wire x1="71.12" y1="129.54" x2="78.74" y2="129.54" width="0.1524" layer="91"/>
  8747. <wire x1="78.74" y1="129.54" x2="78.74" y2="121.92" width="0.1524" layer="91"/>
  8748. </segment>
  8749. </net>
  8750. <net name="N$16" class="0">
  8751. <segment>
  8752. <pinref part="JP4" gate="A" pin="8"/>
  8753. <wire x1="43.18" y1="99.06" x2="35.56" y2="99.06" width="0.1524" layer="91"/>
  8754. <wire x1="35.56" y1="99.06" x2="35.56" y2="109.22" width="0.1524" layer="91"/>
  8755. <pinref part="R10" gate="G$1" pin="1"/>
  8756. <wire x1="35.56" y1="109.22" x2="60.96" y2="109.22" width="0.1524" layer="91"/>
  8757. <wire x1="60.96" y1="109.22" x2="60.96" y2="129.54" width="0.1524" layer="91"/>
  8758. </segment>
  8759. </net>
  8760. <net name="N$27" class="0">
  8761. <segment>
  8762. <pinref part="JP4" gate="A" pin="9"/>
  8763. <wire x1="50.8" y1="101.6" x2="63.5" y2="101.6" width="0.1524" layer="91"/>
  8764. <wire x1="63.5" y1="101.6" x2="63.5" y2="127" width="0.1524" layer="91"/>
  8765. <wire x1="63.5" y1="127" x2="58.42" y2="127" width="0.1524" layer="91"/>
  8766. <pinref part="JP7" gate="A" pin="2"/>
  8767. <wire x1="58.42" y1="127" x2="58.42" y2="129.54" width="0.1524" layer="91"/>
  8768. <wire x1="58.42" y1="129.54" x2="43.18" y2="129.54" width="0.1524" layer="91"/>
  8769. </segment>
  8770. </net>
  8771. <net name="N$28" class="0">
  8772. <segment>
  8773. <pinref part="JP4" gate="A" pin="10"/>
  8774. <wire x1="43.18" y1="101.6" x2="38.1" y2="101.6" width="0.1524" layer="91"/>
  8775. <wire x1="38.1" y1="101.6" x2="38.1" y2="111.76" width="0.1524" layer="91"/>
  8776. <wire x1="38.1" y1="111.76" x2="53.34" y2="111.76" width="0.1524" layer="91"/>
  8777. <wire x1="53.34" y1="111.76" x2="53.34" y2="127" width="0.1524" layer="91"/>
  8778. <pinref part="JP7" gate="A" pin="1"/>
  8779. <wire x1="43.18" y1="127" x2="53.34" y2="127" width="0.1524" layer="91"/>
  8780. </segment>
  8781. </net>
  8782. <net name="N$31" class="0">
  8783. <segment>
  8784. <pinref part="JP5" gate="A" pin="8"/>
  8785. <wire x1="10.16" y1="124.46" x2="10.16" y2="116.84" width="0.1524" layer="91"/>
  8786. <wire x1="0" y1="144.78" x2="0" y2="116.84" width="0.1524" layer="91"/>
  8787. <wire x1="0" y1="116.84" x2="10.16" y2="116.84" width="0.1524" layer="91"/>
  8788. <pinref part="JP9" gate="A" pin="1"/>
  8789. <wire x1="-10.16" y1="144.78" x2="0" y2="144.78" width="0.1524" layer="91"/>
  8790. </segment>
  8791. </net>
  8792. <net name="N$32" class="0">
  8793. <segment>
  8794. <pinref part="JP5" gate="A" pin="9"/>
  8795. <wire x1="7.62" y1="132.08" x2="7.62" y2="147.32" width="0.1524" layer="91"/>
  8796. <pinref part="JP9" gate="A" pin="2"/>
  8797. <wire x1="7.62" y1="147.32" x2="-10.16" y2="147.32" width="0.1524" layer="91"/>
  8798. </segment>
  8799. </net>
  8800. <net name="N$35" class="0">
  8801. <segment>
  8802. <pinref part="JP6" gate="A" pin="1"/>
  8803. <wire x1="-27.94" y1="104.14" x2="-35.56" y2="104.14" width="0.1524" layer="91"/>
  8804. <wire x1="-35.56" y1="104.14" x2="-35.56" y2="134.62" width="0.1524" layer="91"/>
  8805. <pinref part="JP1" gate="A" pin="1"/>
  8806. <wire x1="-35.56" y1="134.62" x2="-63.5" y2="134.62" width="0.1524" layer="91"/>
  8807. </segment>
  8808. </net>
  8809. <net name="N$42" class="0">
  8810. <segment>
  8811. <pinref part="JP6" gate="A" pin="2"/>
  8812. <wire x1="-20.32" y1="104.14" x2="-15.24" y2="104.14" width="0.1524" layer="91"/>
  8813. <wire x1="-15.24" y1="104.14" x2="-15.24" y2="132.08" width="0.1524" layer="91"/>
  8814. <pinref part="JP1" gate="A" pin="2"/>
  8815. <wire x1="-15.24" y1="132.08" x2="-63.5" y2="132.08" width="0.1524" layer="91"/>
  8816. </segment>
  8817. </net>
  8818. <net name="N$45" class="0">
  8819. <segment>
  8820. <pinref part="JP6" gate="A" pin="3"/>
  8821. <wire x1="-27.94" y1="101.6" x2="-38.1" y2="101.6" width="0.1524" layer="91"/>
  8822. <wire x1="-38.1" y1="101.6" x2="-38.1" y2="129.54" width="0.1524" layer="91"/>
  8823. <pinref part="JP1" gate="A" pin="3"/>
  8824. <wire x1="-38.1" y1="129.54" x2="-63.5" y2="129.54" width="0.1524" layer="91"/>
  8825. </segment>
  8826. </net>
  8827. <net name="N$46" class="0">
  8828. <segment>
  8829. <pinref part="JP6" gate="A" pin="4"/>
  8830. <wire x1="-20.32" y1="101.6" x2="-12.7" y2="101.6" width="0.1524" layer="91"/>
  8831. <wire x1="-12.7" y1="101.6" x2="-12.7" y2="127" width="0.1524" layer="91"/>
  8832. <pinref part="JP1" gate="A" pin="4"/>
  8833. <wire x1="-12.7" y1="127" x2="-63.5" y2="127" width="0.1524" layer="91"/>
  8834. </segment>
  8835. </net>
  8836. <net name="N$47" class="0">
  8837. <segment>
  8838. <pinref part="JP6" gate="A" pin="5"/>
  8839. <wire x1="-27.94" y1="99.06" x2="-40.64" y2="99.06" width="0.1524" layer="91"/>
  8840. <wire x1="-40.64" y1="99.06" x2="-40.64" y2="124.46" width="0.1524" layer="91"/>
  8841. <pinref part="JP1" gate="A" pin="5"/>
  8842. <wire x1="-40.64" y1="124.46" x2="-63.5" y2="124.46" width="0.1524" layer="91"/>
  8843. </segment>
  8844. </net>
  8845. <net name="N$48" class="0">
  8846. <segment>
  8847. <pinref part="JP6" gate="A" pin="6"/>
  8848. <wire x1="-20.32" y1="99.06" x2="-10.16" y2="99.06" width="0.1524" layer="91"/>
  8849. <wire x1="-10.16" y1="99.06" x2="-10.16" y2="121.92" width="0.1524" layer="91"/>
  8850. <pinref part="JP1" gate="A" pin="6"/>
  8851. <wire x1="-10.16" y1="121.92" x2="-63.5" y2="121.92" width="0.1524" layer="91"/>
  8852. </segment>
  8853. </net>
  8854. <net name="N$49" class="0">
  8855. <segment>
  8856. <pinref part="JP6" gate="A" pin="7"/>
  8857. <wire x1="-27.94" y1="96.52" x2="-43.18" y2="96.52" width="0.1524" layer="91"/>
  8858. <wire x1="-43.18" y1="96.52" x2="-43.18" y2="119.38" width="0.1524" layer="91"/>
  8859. <pinref part="JP1" gate="A" pin="7"/>
  8860. <wire x1="-43.18" y1="119.38" x2="-63.5" y2="119.38" width="0.1524" layer="91"/>
  8861. </segment>
  8862. </net>
  8863. <net name="N$50" class="0">
  8864. <segment>
  8865. <pinref part="JP6" gate="A" pin="9"/>
  8866. <wire x1="-27.94" y1="93.98" x2="-48.26" y2="93.98" width="0.1524" layer="91"/>
  8867. <wire x1="-48.26" y1="93.98" x2="-48.26" y2="116.84" width="0.1524" layer="91"/>
  8868. <pinref part="JP1" gate="A" pin="8"/>
  8869. <wire x1="-48.26" y1="116.84" x2="-63.5" y2="116.84" width="0.1524" layer="91"/>
  8870. </segment>
  8871. </net>
  8872. <net name="N$51" class="0">
  8873. <segment>
  8874. <pinref part="JP6" gate="A" pin="10"/>
  8875. <pinref part="R13" gate="G$1" pin="1"/>
  8876. <wire x1="-10.16" y1="93.98" x2="-20.32" y2="93.98" width="0.1524" layer="91"/>
  8877. </segment>
  8878. </net>
  8879. <net name="N$52" class="0">
  8880. <segment>
  8881. <pinref part="R13" gate="G$1" pin="2"/>
  8882. <pinref part="LED2" gate="G$1" pin="A"/>
  8883. <wire x1="7.62" y1="93.98" x2="0" y2="93.98" width="0.1524" layer="91"/>
  8884. </segment>
  8885. </net>
  8886. <net name="N$56" class="0">
  8887. <segment>
  8888. <pinref part="JP6" gate="A" pin="8"/>
  8889. <wire x1="-20.32" y1="96.52" x2="-7.62" y2="96.52" width="0.1524" layer="91"/>
  8890. <wire x1="-7.62" y1="96.52" x2="-7.62" y2="109.22" width="0.1524" layer="91"/>
  8891. <wire x1="-7.62" y1="109.22" x2="-71.12" y2="109.22" width="0.1524" layer="91"/>
  8892. <wire x1="-71.12" y1="109.22" x2="-71.12" y2="111.76" width="0.1524" layer="91"/>
  8893. <pinref part="JP10" gate="A" pin="2"/>
  8894. <wire x1="-71.12" y1="111.76" x2="-91.44" y2="111.76" width="0.1524" layer="91"/>
  8895. </segment>
  8896. </net>
  8897. <net name="N$1" class="0">
  8898. <segment>
  8899. <pinref part="R14" gate="G$1" pin="2"/>
  8900. <pinref part="R15" gate="G$1" pin="1"/>
  8901. <wire x1="-152.4" y1="-40.64" x2="-160.02" y2="-40.64" width="0.1524" layer="91"/>
  8902. <wire x1="-160.02" y1="-40.64" x2="-167.64" y2="-40.64" width="0.1524" layer="91"/>
  8903. <wire x1="-160.02" y1="-40.64" x2="-160.02" y2="-35.56" width="0.1524" layer="91"/>
  8904. <junction x="-160.02" y="-40.64"/>
  8905. <wire x1="-160.02" y1="-35.56" x2="-116.84" y2="-35.56" width="0.1524" layer="91"/>
  8906. <wire x1="-116.84" y1="-35.56" x2="-116.84" y2="-27.94" width="0.1524" layer="91"/>
  8907. <pinref part="R16" gate="G$1" pin="1"/>
  8908. <wire x1="-116.84" y1="-27.94" x2="-83.82" y2="-27.94" width="0.1524" layer="91"/>
  8909. <pinref part="JP3" gate="A" pin="10"/>
  8910. <wire x1="-83.82" y1="-27.94" x2="-76.2" y2="-27.94" width="0.1524" layer="91"/>
  8911. <wire x1="15.24" y1="71.12" x2="15.24" y2="76.2" width="0.1524" layer="91"/>
  8912. <wire x1="15.24" y1="76.2" x2="0" y2="76.2" width="0.1524" layer="91"/>
  8913. <wire x1="0" y1="76.2" x2="0" y2="-25.4" width="0.1524" layer="91"/>
  8914. <wire x1="0" y1="-25.4" x2="-83.82" y2="-25.4" width="0.1524" layer="91"/>
  8915. <wire x1="-83.82" y1="-25.4" x2="-83.82" y2="-27.94" width="0.1524" layer="91"/>
  8916. <junction x="-83.82" y="-27.94"/>
  8917. </segment>
  8918. </net>
  8919. <net name="N$3" class="0">
  8920. <segment>
  8921. <pinref part="R1" gate="G$1" pin="1"/>
  8922. <pinref part="X4" gate="-1" pin="1A"/>
  8923. </segment>
  8924. </net>
  8925. <net name="N$4" class="0">
  8926. <segment>
  8927. <pinref part="R2" gate="G$1" pin="1"/>
  8928. <pinref part="X4" gate="-2" pin="1A"/>
  8929. </segment>
  8930. </net>
  8931. <net name="N$5" class="0">
  8932. <segment>
  8933. <pinref part="R3" gate="G$1" pin="1"/>
  8934. <pinref part="X4" gate="-3" pin="1A"/>
  8935. </segment>
  8936. </net>
  8937. <net name="N$6" class="0">
  8938. <segment>
  8939. <pinref part="R4" gate="G$1" pin="1"/>
  8940. <pinref part="X4" gate="-4" pin="1A"/>
  8941. </segment>
  8942. </net>
  8943. <net name="N$7" class="0">
  8944. <segment>
  8945. <pinref part="R5" gate="G$1" pin="1"/>
  8946. <pinref part="X4" gate="-5" pin="1A"/>
  8947. </segment>
  8948. </net>
  8949. <net name="N$8" class="0">
  8950. <segment>
  8951. <pinref part="R6" gate="G$1" pin="1"/>
  8952. <pinref part="X4" gate="-6" pin="1A"/>
  8953. </segment>
  8954. </net>
  8955. <net name="N$9" class="0">
  8956. <segment>
  8957. <pinref part="R7" gate="G$1" pin="1"/>
  8958. <pinref part="X4" gate="-7" pin="1A"/>
  8959. </segment>
  8960. </net>
  8961. <net name="N$13" class="0">
  8962. <segment>
  8963. <pinref part="R8" gate="G$1" pin="1"/>
  8964. <pinref part="X4" gate="-8" pin="1A"/>
  8965. </segment>
  8966. </net>
  8967. <net name="N$53" class="0">
  8968. <segment>
  8969. <pinref part="R9" gate="G$1" pin="1"/>
  8970. <pinref part="X4" gate="-9" pin="1A"/>
  8971. </segment>
  8972. </net>
  8973. <net name="N$54" class="0">
  8974. <segment>
  8975. <pinref part="R14" gate="G$1" pin="1"/>
  8976. <pinref part="X4" gate="-10" pin="1A"/>
  8977. </segment>
  8978. </net>
  8979. <net name="N$55" class="0">
  8980. <segment>
  8981. <pinref part="JP5" gate="A" pin="5"/>
  8982. <wire x1="12.7" y1="132.08" x2="12.7" y2="152.4" width="0.1524" layer="91"/>
  8983. <pinref part="JP12" gate="A" pin="1"/>
  8984. <wire x1="12.7" y1="152.4" x2="45.72" y2="152.4" width="0.1524" layer="91"/>
  8985. <wire x1="45.72" y1="152.4" x2="45.72" y2="165.1" width="0.1524" layer="91"/>
  8986. </segment>
  8987. </net>
  8988. <net name="N$57" class="0">
  8989. <segment>
  8990. <pinref part="JP5" gate="A" pin="6"/>
  8991. <wire x1="12.7" y1="124.46" x2="12.7" y2="111.76" width="0.1524" layer="91"/>
  8992. <wire x1="12.7" y1="111.76" x2="35.56" y2="111.76" width="0.1524" layer="91"/>
  8993. <wire x1="35.56" y1="111.76" x2="35.56" y2="139.7" width="0.1524" layer="91"/>
  8994. <pinref part="JP12" gate="A" pin="2"/>
  8995. <wire x1="35.56" y1="139.7" x2="43.18" y2="139.7" width="0.1524" layer="91"/>
  8996. <wire x1="43.18" y1="139.7" x2="43.18" y2="165.1" width="0.1524" layer="91"/>
  8997. </segment>
  8998. </net>
  8999. <net name="N$58" class="0">
  9000. <segment>
  9001. <pinref part="JP5" gate="A" pin="7"/>
  9002. <wire x1="10.16" y1="132.08" x2="10.16" y2="144.78" width="0.1524" layer="91"/>
  9003. <pinref part="JP12" gate="A" pin="3"/>
  9004. <wire x1="10.16" y1="144.78" x2="40.64" y2="144.78" width="0.1524" layer="91"/>
  9005. <wire x1="40.64" y1="144.78" x2="40.64" y2="165.1" width="0.1524" layer="91"/>
  9006. </segment>
  9007. </net>
  9008. <net name="N$59" class="0">
  9009. <segment>
  9010. <pinref part="JP5" gate="A" pin="10"/>
  9011. <wire x1="7.62" y1="124.46" x2="7.62" y2="119.38" width="0.1524" layer="91"/>
  9012. <wire x1="7.62" y1="119.38" x2="33.02" y2="119.38" width="0.1524" layer="91"/>
  9013. <wire x1="33.02" y1="119.38" x2="33.02" y2="142.24" width="0.1524" layer="91"/>
  9014. <pinref part="JP12" gate="A" pin="4"/>
  9015. <wire x1="33.02" y1="142.24" x2="38.1" y2="142.24" width="0.1524" layer="91"/>
  9016. <wire x1="38.1" y1="142.24" x2="38.1" y2="165.1" width="0.1524" layer="91"/>
  9017. </segment>
  9018. </net>
  9019. <net name="N$2" class="0">
  9020. <segment>
  9021. <pinref part="X3" gate="-4" pin="1A"/>
  9022. <pinref part="R17" gate="G$1" pin="1"/>
  9023. <wire x1="-177.8" y1="-121.92" x2="-165.1" y2="-121.92" width="0.1524" layer="91"/>
  9024. </segment>
  9025. </net>
  9026. <net name="N$17" class="0">
  9027. <segment>
  9028. <pinref part="X3" gate="-1" pin="1A"/>
  9029. <wire x1="-177.8" y1="-99.06" x2="-167.64" y2="-99.06" width="0.1524" layer="91"/>
  9030. <wire x1="-167.64" y1="-99.06" x2="-167.64" y2="-93.98" width="0.1524" layer="91"/>
  9031. <pinref part="U$3" gate="G$1" pin="VIN"/>
  9032. <wire x1="-167.64" y1="-93.98" x2="-109.22" y2="-93.98" width="0.1524" layer="91"/>
  9033. <wire x1="-109.22" y1="-93.98" x2="-109.22" y2="-91.44" width="0.1524" layer="91"/>
  9034. <pinref part="R34" gate="G$1" pin="2"/>
  9035. <pinref part="R35" gate="G$1" pin="2"/>
  9036. <wire x1="-66.04" y1="40.64" x2="-66.04" y2="33.02" width="0.1524" layer="91"/>
  9037. <pinref part="R36" gate="G$1" pin="2"/>
  9038. <wire x1="-66.04" y1="33.02" x2="-66.04" y2="25.4" width="0.1524" layer="91"/>
  9039. <junction x="-66.04" y="33.02"/>
  9040. <pinref part="R37" gate="G$1" pin="2"/>
  9041. <wire x1="-66.04" y1="25.4" x2="-66.04" y2="17.78" width="0.1524" layer="91"/>
  9042. <junction x="-66.04" y="25.4"/>
  9043. <pinref part="R38" gate="G$1" pin="2"/>
  9044. <wire x1="-66.04" y1="17.78" x2="-66.04" y2="10.16" width="0.1524" layer="91"/>
  9045. <junction x="-66.04" y="17.78"/>
  9046. <pinref part="R39" gate="G$1" pin="2"/>
  9047. <wire x1="-66.04" y1="10.16" x2="-66.04" y2="2.54" width="0.1524" layer="91"/>
  9048. <junction x="-66.04" y="10.16"/>
  9049. <pinref part="R40" gate="G$1" pin="2"/>
  9050. <wire x1="-66.04" y1="2.54" x2="-66.04" y2="-5.08" width="0.1524" layer="91"/>
  9051. <junction x="-66.04" y="2.54"/>
  9052. <pinref part="R41" gate="G$1" pin="2"/>
  9053. <wire x1="-66.04" y1="-5.08" x2="-66.04" y2="-12.7" width="0.1524" layer="91"/>
  9054. <junction x="-66.04" y="-5.08"/>
  9055. <pinref part="R42" gate="G$1" pin="2"/>
  9056. <wire x1="-66.04" y1="-12.7" x2="-66.04" y2="-20.32" width="0.1524" layer="91"/>
  9057. <junction x="-66.04" y="-12.7"/>
  9058. <junction x="-66.04" y="-20.32"/>
  9059. <wire x1="-66.04" y1="-93.98" x2="-66.04" y2="-27.94" width="0.1524" layer="91"/>
  9060. <wire x1="-66.04" y1="-27.94" x2="-66.04" y2="-20.32" width="0.1524" layer="91"/>
  9061. <pinref part="R16" gate="G$1" pin="2"/>
  9062. <junction x="-66.04" y="-27.94"/>
  9063. <wire x1="-109.22" y1="-93.98" x2="-66.04" y2="-93.98" width="0.1524" layer="91"/>
  9064. <junction x="-109.22" y="-93.98"/>
  9065. </segment>
  9066. </net>
  9067. <net name="N$29" class="0">
  9068. <segment>
  9069. <pinref part="R18" gate="G$1" pin="2"/>
  9070. <pinref part="R19" gate="G$1" pin="2"/>
  9071. <wire x1="-139.7" y1="27.94" x2="-139.7" y2="20.32" width="0.1524" layer="91"/>
  9072. <pinref part="R20" gate="G$1" pin="2"/>
  9073. <wire x1="-139.7" y1="20.32" x2="-139.7" y2="12.7" width="0.1524" layer="91"/>
  9074. <junction x="-139.7" y="20.32"/>
  9075. <pinref part="R21" gate="G$1" pin="2"/>
  9076. <wire x1="-139.7" y1="12.7" x2="-139.7" y2="5.08" width="0.1524" layer="91"/>
  9077. <junction x="-139.7" y="12.7"/>
  9078. <pinref part="R22" gate="G$1" pin="2"/>
  9079. <wire x1="-139.7" y1="5.08" x2="-139.7" y2="-2.54" width="0.1524" layer="91"/>
  9080. <junction x="-139.7" y="5.08"/>
  9081. <pinref part="R23" gate="G$1" pin="2"/>
  9082. <wire x1="-139.7" y1="-2.54" x2="-139.7" y2="-10.16" width="0.1524" layer="91"/>
  9083. <junction x="-139.7" y="-2.54"/>
  9084. <pinref part="R24" gate="G$1" pin="2"/>
  9085. <wire x1="-139.7" y1="-10.16" x2="-139.7" y2="-17.78" width="0.1524" layer="91"/>
  9086. <junction x="-139.7" y="-10.16"/>
  9087. <pinref part="R25" gate="G$1" pin="2"/>
  9088. <wire x1="-139.7" y1="-17.78" x2="-139.7" y2="-25.4" width="0.1524" layer="91"/>
  9089. <junction x="-139.7" y="-17.78"/>
  9090. <pinref part="R26" gate="G$1" pin="2"/>
  9091. <wire x1="-139.7" y1="-25.4" x2="-139.7" y2="-33.02" width="0.1524" layer="91"/>
  9092. <junction x="-139.7" y="-25.4"/>
  9093. <junction x="-139.7" y="-33.02"/>
  9094. <wire x1="-139.7" y1="-33.02" x2="-139.7" y2="-40.64" width="0.1524" layer="91"/>
  9095. <wire x1="-139.7" y1="-40.64" x2="-139.7" y2="-99.06" width="0.1524" layer="91"/>
  9096. <junction x="-139.7" y="27.94"/>
  9097. <pinref part="LED1" gate="G$1" pin="C"/>
  9098. <wire x1="-139.7" y1="71.12" x2="-139.7" y2="27.94" width="0.1524" layer="91"/>
  9099. <wire x1="-139.7" y1="-99.06" x2="-88.9" y2="-99.06" width="0.1524" layer="91"/>
  9100. <wire x1="-88.9" y1="-99.06" x2="-63.5" y2="-99.06" width="0.1524" layer="91"/>
  9101. <wire x1="-63.5" y1="-99.06" x2="78.74" y2="-99.06" width="0.1524" layer="91"/>
  9102. <wire x1="78.74" y1="-99.06" x2="78.74" y2="86.36" width="0.1524" layer="91"/>
  9103. <pinref part="JP7" gate="A" pin="3"/>
  9104. <wire x1="78.74" y1="86.36" x2="78.74" y2="109.22" width="0.1524" layer="91"/>
  9105. <wire x1="78.74" y1="109.22" x2="78.74" y2="114.3" width="0.1524" layer="91"/>
  9106. <wire x1="43.18" y1="132.08" x2="83.82" y2="132.08" width="0.1524" layer="91"/>
  9107. <wire x1="83.82" y1="132.08" x2="83.82" y2="109.22" width="0.1524" layer="91"/>
  9108. <wire x1="83.82" y1="109.22" x2="78.74" y2="109.22" width="0.1524" layer="91"/>
  9109. <junction x="78.74" y="109.22"/>
  9110. <wire x1="83.82" y1="170.18" x2="83.82" y2="149.86" width="0.1524" layer="91"/>
  9111. <junction x="83.82" y="132.08"/>
  9112. <pinref part="U$3" gate="G$1" pin="GND"/>
  9113. <wire x1="83.82" y1="149.86" x2="83.82" y2="132.08" width="0.1524" layer="91"/>
  9114. <wire x1="-96.52" y1="-78.74" x2="-88.9" y2="-78.74" width="0.1524" layer="91"/>
  9115. <wire x1="-88.9" y1="-78.74" x2="-88.9" y2="-99.06" width="0.1524" layer="91"/>
  9116. <junction x="-88.9" y="-99.06"/>
  9117. <pinref part="C1" gate="G$1" pin="2"/>
  9118. <wire x1="-88.9" y1="-68.58" x2="-88.9" y2="-78.74" width="0.1524" layer="91"/>
  9119. <junction x="-88.9" y="-78.74"/>
  9120. <wire x1="-71.12" y1="81.28" x2="-71.12" y2="78.74" width="0.1524" layer="91"/>
  9121. <wire x1="-71.12" y1="78.74" x2="-63.5" y2="78.74" width="0.1524" layer="91"/>
  9122. <junction x="-63.5" y="-99.06"/>
  9123. <pinref part="JP8" gate="A" pin="3"/>
  9124. <wire x1="-63.5" y1="78.74" x2="-63.5" y2="-99.06" width="0.1524" layer="91"/>
  9125. <wire x1="83.82" y1="170.18" x2="-20.32" y2="170.18" width="0.1524" layer="91"/>
  9126. <pinref part="JP8" gate="A" pin="6"/>
  9127. <wire x1="-20.32" y1="170.18" x2="-30.48" y2="170.18" width="0.1524" layer="91"/>
  9128. <wire x1="-30.48" y1="162.56" x2="-20.32" y2="162.56" width="0.1524" layer="91"/>
  9129. <wire x1="-20.32" y1="162.56" x2="-20.32" y2="170.18" width="0.1524" layer="91"/>
  9130. <junction x="-20.32" y="170.18"/>
  9131. <pinref part="JP9" gate="A" pin="3"/>
  9132. <wire x1="-10.16" y1="149.86" x2="10.16" y2="149.86" width="0.1524" layer="91"/>
  9133. <junction x="83.82" y="149.86"/>
  9134. <pinref part="LED2" gate="G$1" pin="C"/>
  9135. <wire x1="10.16" y1="149.86" x2="83.82" y2="149.86" width="0.1524" layer="91"/>
  9136. <wire x1="15.24" y1="93.98" x2="25.4" y2="93.98" width="0.1524" layer="91"/>
  9137. <wire x1="25.4" y1="93.98" x2="25.4" y2="86.36" width="0.1524" layer="91"/>
  9138. <wire x1="25.4" y1="86.36" x2="78.74" y2="86.36" width="0.1524" layer="91"/>
  9139. <junction x="78.74" y="86.36"/>
  9140. <pinref part="JP10" gate="A" pin="3"/>
  9141. <wire x1="-91.44" y1="114.3" x2="-76.2" y2="114.3" width="0.1524" layer="91"/>
  9142. <wire x1="-76.2" y1="114.3" x2="-71.12" y2="114.3" width="0.1524" layer="91"/>
  9143. <wire x1="-71.12" y1="114.3" x2="-71.12" y2="152.4" width="0.1524" layer="91"/>
  9144. <wire x1="-71.12" y1="152.4" x2="10.16" y2="152.4" width="0.1524" layer="91"/>
  9145. <wire x1="10.16" y1="152.4" x2="10.16" y2="149.86" width="0.1524" layer="91"/>
  9146. <junction x="10.16" y="149.86"/>
  9147. <wire x1="-53.34" y1="63.5" x2="-45.72" y2="63.5" width="0.1524" layer="91"/>
  9148. <wire x1="-45.72" y1="63.5" x2="-45.72" y2="78.74" width="0.1524" layer="91"/>
  9149. <wire x1="-45.72" y1="78.74" x2="-55.88" y2="78.74" width="0.1524" layer="91"/>
  9150. <wire x1="-55.88" y1="78.74" x2="-55.88" y2="99.06" width="0.1524" layer="91"/>
  9151. <wire x1="-55.88" y1="99.06" x2="-76.2" y2="99.06" width="0.1524" layer="91"/>
  9152. <wire x1="-76.2" y1="99.06" x2="-76.2" y2="114.3" width="0.1524" layer="91"/>
  9153. <junction x="-76.2" y="114.3"/>
  9154. <pinref part="JP11" gate="A" pin="1"/>
  9155. <pinref part="R15" gate="G$1" pin="2"/>
  9156. <wire x1="-142.24" y1="-40.64" x2="-139.7" y2="-40.64" width="0.1524" layer="91"/>
  9157. <junction x="-139.7" y="-40.64"/>
  9158. <pinref part="X3" gate="-2" pin="1A"/>
  9159. <wire x1="-177.8" y1="-106.68" x2="-88.9" y2="-106.68" width="0.1524" layer="91"/>
  9160. <wire x1="-88.9" y1="-106.68" x2="-88.9" y2="-99.06" width="0.1524" layer="91"/>
  9161. <pinref part="R17" gate="G$1" pin="2"/>
  9162. <wire x1="-154.94" y1="-121.92" x2="-88.9" y2="-121.92" width="0.1524" layer="91"/>
  9163. <wire x1="-88.9" y1="-121.92" x2="-88.9" y2="-106.68" width="0.1524" layer="91"/>
  9164. <junction x="-88.9" y="-106.68"/>
  9165. <pinref part="R11" gate="G$1" pin="1"/>
  9166. <pinref part="JP6" gate="A" pin="11"/>
  9167. <wire x1="-27.94" y1="91.44" x2="-27.94" y2="81.28" width="0.1524" layer="91"/>
  9168. <wire x1="-27.94" y1="81.28" x2="25.4" y2="81.28" width="0.1524" layer="91"/>
  9169. <wire x1="25.4" y1="81.28" x2="25.4" y2="86.36" width="0.1524" layer="91"/>
  9170. <junction x="25.4" y="86.36"/>
  9171. <pinref part="JP14" gate="G$1" pin="1"/>
  9172. </segment>
  9173. </net>
  9174. <net name="N$30" class="0">
  9175. <segment>
  9176. <pinref part="U$3" gate="G$1" pin="VOUT"/>
  9177. <wire x1="-109.22" y1="-66.04" x2="-109.22" y2="-55.88" width="0.1524" layer="91"/>
  9178. <pinref part="C1" gate="G$1" pin="1"/>
  9179. <wire x1="-88.9" y1="-60.96" x2="-88.9" y2="-55.88" width="0.1524" layer="91"/>
  9180. <wire x1="-88.9" y1="-55.88" x2="-109.22" y2="-55.88" width="0.1524" layer="91"/>
  9181. <junction x="-109.22" y="-55.88"/>
  9182. <wire x1="-109.22" y1="-55.88" x2="-109.22" y2="93.98" width="0.1524" layer="91"/>
  9183. <wire x1="-109.22" y1="93.98" x2="-99.06" y2="93.98" width="0.1524" layer="91"/>
  9184. <pinref part="R12" gate="G$1" pin="2"/>
  9185. </segment>
  9186. </net>
  9187. </nets>
  9188. </sheet>
  9189. </sheets>
  9190. <errors>
  9191. <approved hash="204,1,-160.02,132.08,U$2,GND,,,,"/>
  9192. <approved hash="204,1,-137.16,71.12,U$2,VIN,,,,"/>
  9193. <approved hash="104,1,-139.7,71.12,U$2,GND1,N$41,,,"/>
  9194. <approved hash="104,1,-142.24,71.12,U$2,GND2,N$41,,,"/>
  9195. <approved hash="104,1,-147.32,71.12,U$2,3V,N$40,,,"/>
  9196. </errors>
  9197. </schematic>
  9198. </drawing>
  9199. </eagle>