Mainboard.sch 301 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE eagle SYSTEM "eagle.dtd">
  3. <eagle version="7.2.0">
  4. <drawing>
  5. <settings>
  6. <setting alwaysvectorfont="no"/>
  7. <setting verticaltext="up"/>
  8. </settings>
  9. <grid distance="50" unitdist="mil" unit="mil" style="lines" multiple="1" display="yes" altdistance="0.01" altunitdist="inch" altunit="inch"/>
  10. <layers>
  11. <layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
  12. <layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
  13. <layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
  14. <layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
  15. <layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
  16. <layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
  17. <layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
  18. <layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
  19. <layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
  20. <layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
  21. <layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
  22. <layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
  23. <layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
  24. <layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
  25. <layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
  26. <layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
  27. <layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
  28. <layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
  29. <layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
  30. <layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
  31. <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
  32. <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
  33. <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
  34. <layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
  35. <layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
  36. <layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
  37. <layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
  38. <layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
  39. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
  40. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
  41. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
  42. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
  43. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
  44. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
  45. <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
  46. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
  47. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
  48. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
  49. <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
  50. <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
  51. <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
  52. <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
  53. <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
  54. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
  55. <layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
  56. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
  57. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
  58. <layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
  59. <layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
  60. <layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
  61. <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
  62. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  63. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  64. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  65. <layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
  66. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  67. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  68. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  69. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  70. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  71. </layers>
  72. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  73. <libraries>
  74. <library name="pinhead">
  75. <description>&lt;b&gt;Pin Header Connectors&lt;/b&gt;&lt;p&gt;
  76. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  77. <packages>
  78. <package name="2X06">
  79. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  80. <wire x1="-7.62" y1="-1.905" x2="-6.985" y2="-2.54" width="0.1524" layer="21"/>
  81. <wire x1="-5.715" y1="-2.54" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  82. <wire x1="-5.08" y1="-1.905" x2="-4.445" y2="-2.54" width="0.1524" layer="21"/>
  83. <wire x1="-3.175" y1="-2.54" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  84. <wire x1="-2.54" y1="-1.905" x2="-1.905" y2="-2.54" width="0.1524" layer="21"/>
  85. <wire x1="-0.635" y1="-2.54" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  86. <wire x1="0" y1="-1.905" x2="0.635" y2="-2.54" width="0.1524" layer="21"/>
  87. <wire x1="1.905" y1="-2.54" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  88. <wire x1="2.54" y1="-1.905" x2="3.175" y2="-2.54" width="0.1524" layer="21"/>
  89. <wire x1="4.445" y1="-2.54" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  90. <wire x1="-7.62" y1="-1.905" x2="-7.62" y2="1.905" width="0.1524" layer="21"/>
  91. <wire x1="-7.62" y1="1.905" x2="-6.985" y2="2.54" width="0.1524" layer="21"/>
  92. <wire x1="-6.985" y1="2.54" x2="-5.715" y2="2.54" width="0.1524" layer="21"/>
  93. <wire x1="-5.715" y1="2.54" x2="-5.08" y2="1.905" width="0.1524" layer="21"/>
  94. <wire x1="-5.08" y1="1.905" x2="-4.445" y2="2.54" width="0.1524" layer="21"/>
  95. <wire x1="-4.445" y1="2.54" x2="-3.175" y2="2.54" width="0.1524" layer="21"/>
  96. <wire x1="-3.175" y1="2.54" x2="-2.54" y2="1.905" width="0.1524" layer="21"/>
  97. <wire x1="-2.54" y1="1.905" x2="-1.905" y2="2.54" width="0.1524" layer="21"/>
  98. <wire x1="-1.905" y1="2.54" x2="-0.635" y2="2.54" width="0.1524" layer="21"/>
  99. <wire x1="-0.635" y1="2.54" x2="0" y2="1.905" width="0.1524" layer="21"/>
  100. <wire x1="0" y1="1.905" x2="0.635" y2="2.54" width="0.1524" layer="21"/>
  101. <wire x1="0.635" y1="2.54" x2="1.905" y2="2.54" width="0.1524" layer="21"/>
  102. <wire x1="1.905" y1="2.54" x2="2.54" y2="1.905" width="0.1524" layer="21"/>
  103. <wire x1="2.54" y1="1.905" x2="3.175" y2="2.54" width="0.1524" layer="21"/>
  104. <wire x1="3.175" y1="2.54" x2="4.445" y2="2.54" width="0.1524" layer="21"/>
  105. <wire x1="4.445" y1="2.54" x2="5.08" y2="1.905" width="0.1524" layer="21"/>
  106. <wire x1="-5.08" y1="1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  107. <wire x1="-2.54" y1="1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  108. <wire x1="0" y1="1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  109. <wire x1="2.54" y1="1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  110. <wire x1="5.08" y1="1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  111. <wire x1="3.175" y1="-2.54" x2="4.445" y2="-2.54" width="0.1524" layer="21"/>
  112. <wire x1="0.635" y1="-2.54" x2="1.905" y2="-2.54" width="0.1524" layer="21"/>
  113. <wire x1="-1.905" y1="-2.54" x2="-0.635" y2="-2.54" width="0.1524" layer="21"/>
  114. <wire x1="-4.445" y1="-2.54" x2="-3.175" y2="-2.54" width="0.1524" layer="21"/>
  115. <wire x1="-6.985" y1="-2.54" x2="-5.715" y2="-2.54" width="0.1524" layer="21"/>
  116. <wire x1="5.08" y1="-1.905" x2="5.715" y2="-2.54" width="0.1524" layer="21"/>
  117. <wire x1="6.985" y1="-2.54" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  118. <wire x1="5.08" y1="1.905" x2="5.715" y2="2.54" width="0.1524" layer="21"/>
  119. <wire x1="5.715" y1="2.54" x2="6.985" y2="2.54" width="0.1524" layer="21"/>
  120. <wire x1="6.985" y1="2.54" x2="7.62" y2="1.905" width="0.1524" layer="21"/>
  121. <wire x1="7.62" y1="1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  122. <wire x1="5.715" y1="-2.54" x2="6.985" y2="-2.54" width="0.1524" layer="21"/>
  123. <pad name="1" x="-6.35" y="-1.27" drill="1.016" shape="octagon"/>
  124. <pad name="2" x="-6.35" y="1.27" drill="1.016" shape="octagon"/>
  125. <pad name="3" x="-3.81" y="-1.27" drill="1.016" shape="octagon"/>
  126. <pad name="4" x="-3.81" y="1.27" drill="1.016" shape="octagon"/>
  127. <pad name="5" x="-1.27" y="-1.27" drill="1.016" shape="octagon"/>
  128. <pad name="6" x="-1.27" y="1.27" drill="1.016" shape="octagon"/>
  129. <pad name="7" x="1.27" y="-1.27" drill="1.016" shape="octagon"/>
  130. <pad name="8" x="1.27" y="1.27" drill="1.016" shape="octagon"/>
  131. <pad name="9" x="3.81" y="-1.27" drill="1.016" shape="octagon"/>
  132. <pad name="10" x="3.81" y="1.27" drill="1.016" shape="octagon"/>
  133. <pad name="11" x="6.35" y="-1.27" drill="1.016" shape="octagon"/>
  134. <pad name="12" x="6.35" y="1.27" drill="1.016" shape="octagon"/>
  135. <text x="-7.62" y="3.175" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  136. <text x="-7.62" y="-4.445" size="1.27" layer="27">&gt;VALUE</text>
  137. <rectangle x1="-6.604" y1="-1.524" x2="-6.096" y2="-1.016" layer="51"/>
  138. <rectangle x1="-6.604" y1="1.016" x2="-6.096" y2="1.524" layer="51"/>
  139. <rectangle x1="-4.064" y1="1.016" x2="-3.556" y2="1.524" layer="51"/>
  140. <rectangle x1="-4.064" y1="-1.524" x2="-3.556" y2="-1.016" layer="51"/>
  141. <rectangle x1="-1.524" y1="1.016" x2="-1.016" y2="1.524" layer="51"/>
  142. <rectangle x1="-1.524" y1="-1.524" x2="-1.016" y2="-1.016" layer="51"/>
  143. <rectangle x1="1.016" y1="1.016" x2="1.524" y2="1.524" layer="51"/>
  144. <rectangle x1="3.556" y1="1.016" x2="4.064" y2="1.524" layer="51"/>
  145. <rectangle x1="1.016" y1="-1.524" x2="1.524" y2="-1.016" layer="51"/>
  146. <rectangle x1="3.556" y1="-1.524" x2="4.064" y2="-1.016" layer="51"/>
  147. <rectangle x1="6.096" y1="1.016" x2="6.604" y2="1.524" layer="51"/>
  148. <rectangle x1="6.096" y1="-1.524" x2="6.604" y2="-1.016" layer="51"/>
  149. </package>
  150. <package name="2X06/90">
  151. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  152. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  153. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  154. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  155. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  156. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  157. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  158. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  159. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  160. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  161. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  162. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  163. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  164. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  165. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  166. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  167. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  168. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  169. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  170. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  171. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  172. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  173. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  174. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  175. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  176. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  177. <pad name="2" x="-6.35" y="-3.81" drill="1.016" shape="octagon"/>
  178. <pad name="4" x="-3.81" y="-3.81" drill="1.016" shape="octagon"/>
  179. <pad name="6" x="-1.27" y="-3.81" drill="1.016" shape="octagon"/>
  180. <pad name="8" x="1.27" y="-3.81" drill="1.016" shape="octagon"/>
  181. <pad name="10" x="3.81" y="-3.81" drill="1.016" shape="octagon"/>
  182. <pad name="12" x="6.35" y="-3.81" drill="1.016" shape="octagon"/>
  183. <pad name="1" x="-6.35" y="-6.35" drill="1.016" shape="octagon"/>
  184. <pad name="3" x="-3.81" y="-6.35" drill="1.016" shape="octagon"/>
  185. <pad name="5" x="-1.27" y="-6.35" drill="1.016" shape="octagon"/>
  186. <pad name="7" x="1.27" y="-6.35" drill="1.016" shape="octagon"/>
  187. <pad name="9" x="3.81" y="-6.35" drill="1.016" shape="octagon"/>
  188. <pad name="11" x="6.35" y="-6.35" drill="1.016" shape="octagon"/>
  189. <text x="-8.255" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  190. <text x="9.525" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  191. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  192. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  193. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  194. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  195. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  196. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  197. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  198. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  199. <rectangle x1="-6.731" y1="-5.461" x2="-5.969" y2="-4.699" layer="21"/>
  200. <rectangle x1="-6.731" y1="-4.699" x2="-5.969" y2="-2.921" layer="51"/>
  201. <rectangle x1="-4.191" y1="-4.699" x2="-3.429" y2="-2.921" layer="51"/>
  202. <rectangle x1="-4.191" y1="-5.461" x2="-3.429" y2="-4.699" layer="21"/>
  203. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  204. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  205. <rectangle x1="-1.651" y1="-5.461" x2="-0.889" y2="-4.699" layer="21"/>
  206. <rectangle x1="-1.651" y1="-4.699" x2="-0.889" y2="-2.921" layer="51"/>
  207. <rectangle x1="0.889" y1="-4.699" x2="1.651" y2="-2.921" layer="51"/>
  208. <rectangle x1="0.889" y1="-5.461" x2="1.651" y2="-4.699" layer="21"/>
  209. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  210. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  211. <rectangle x1="3.429" y1="-5.461" x2="4.191" y2="-4.699" layer="21"/>
  212. <rectangle x1="3.429" y1="-4.699" x2="4.191" y2="-2.921" layer="51"/>
  213. <rectangle x1="5.969" y1="-4.699" x2="6.731" y2="-2.921" layer="51"/>
  214. <rectangle x1="5.969" y1="-5.461" x2="6.731" y2="-4.699" layer="21"/>
  215. </package>
  216. <package name="1X05">
  217. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  218. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  219. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  220. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
  221. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  222. <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  223. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  224. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  225. <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  226. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  227. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  228. <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  229. <wire x1="1.905" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  230. <wire x1="1.27" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  231. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  232. <wire x1="-5.715" y1="1.27" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
  233. <wire x1="-4.445" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  234. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  235. <wire x1="-3.81" y1="-0.635" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  236. <wire x1="-3.81" y1="0.635" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  237. <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  238. <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  239. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  240. <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  241. <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  242. <wire x1="-3.175" y1="-1.27" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  243. <wire x1="-6.35" y1="0.635" x2="-6.35" y2="-0.635" width="0.1524" layer="21"/>
  244. <wire x1="-5.715" y1="1.27" x2="-6.35" y2="0.635" width="0.1524" layer="21"/>
  245. <wire x1="-6.35" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  246. <wire x1="-4.445" y1="-1.27" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  247. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.1524" layer="21"/>
  248. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.1524" layer="21"/>
  249. <wire x1="6.35" y1="0.635" x2="6.35" y2="-0.635" width="0.1524" layer="21"/>
  250. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  251. <wire x1="4.445" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  252. <wire x1="3.81" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  253. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  254. <pad name="1" x="-5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  255. <pad name="2" x="-2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  256. <pad name="3" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  257. <pad name="4" x="2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  258. <pad name="5" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  259. <text x="-6.4262" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  260. <text x="-6.35" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  261. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  262. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  263. <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
  264. <rectangle x1="-5.334" y1="-0.254" x2="-4.826" y2="0.254" layer="51"/>
  265. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  266. </package>
  267. <package name="1X05/90">
  268. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  269. <wire x1="-6.35" y1="-1.905" x2="-3.81" y2="-1.905" width="0.1524" layer="21"/>
  270. <wire x1="-3.81" y1="-1.905" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  271. <wire x1="-3.81" y1="0.635" x2="-6.35" y2="0.635" width="0.1524" layer="21"/>
  272. <wire x1="-6.35" y1="0.635" x2="-6.35" y2="-1.905" width="0.1524" layer="21"/>
  273. <wire x1="-5.08" y1="6.985" x2="-5.08" y2="1.27" width="0.762" layer="21"/>
  274. <wire x1="-3.81" y1="-1.905" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/>
  275. <wire x1="-1.27" y1="-1.905" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  276. <wire x1="-1.27" y1="0.635" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  277. <wire x1="-2.54" y1="6.985" x2="-2.54" y2="1.27" width="0.762" layer="21"/>
  278. <wire x1="-1.27" y1="-1.905" x2="1.27" y2="-1.905" width="0.1524" layer="21"/>
  279. <wire x1="1.27" y1="-1.905" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  280. <wire x1="1.27" y1="0.635" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  281. <wire x1="0" y1="6.985" x2="0" y2="1.27" width="0.762" layer="21"/>
  282. <wire x1="1.27" y1="-1.905" x2="3.81" y2="-1.905" width="0.1524" layer="21"/>
  283. <wire x1="3.81" y1="-1.905" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  284. <wire x1="3.81" y1="0.635" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  285. <wire x1="2.54" y1="6.985" x2="2.54" y2="1.27" width="0.762" layer="21"/>
  286. <wire x1="3.81" y1="-1.905" x2="6.35" y2="-1.905" width="0.1524" layer="21"/>
  287. <wire x1="6.35" y1="-1.905" x2="6.35" y2="0.635" width="0.1524" layer="21"/>
  288. <wire x1="6.35" y1="0.635" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  289. <wire x1="5.08" y1="6.985" x2="5.08" y2="1.27" width="0.762" layer="21"/>
  290. <pad name="1" x="-5.08" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  291. <pad name="2" x="-2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  292. <pad name="3" x="0" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  293. <pad name="4" x="2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  294. <pad name="5" x="5.08" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  295. <text x="-6.985" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  296. <text x="8.255" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  297. <rectangle x1="-5.461" y1="0.635" x2="-4.699" y2="1.143" layer="21"/>
  298. <rectangle x1="-2.921" y1="0.635" x2="-2.159" y2="1.143" layer="21"/>
  299. <rectangle x1="-0.381" y1="0.635" x2="0.381" y2="1.143" layer="21"/>
  300. <rectangle x1="2.159" y1="0.635" x2="2.921" y2="1.143" layer="21"/>
  301. <rectangle x1="4.699" y1="0.635" x2="5.461" y2="1.143" layer="21"/>
  302. <rectangle x1="-5.461" y1="-2.921" x2="-4.699" y2="-1.905" layer="21"/>
  303. <rectangle x1="-2.921" y1="-2.921" x2="-2.159" y2="-1.905" layer="21"/>
  304. <rectangle x1="-0.381" y1="-2.921" x2="0.381" y2="-1.905" layer="21"/>
  305. <rectangle x1="2.159" y1="-2.921" x2="2.921" y2="-1.905" layer="21"/>
  306. <rectangle x1="4.699" y1="-2.921" x2="5.461" y2="-1.905" layer="21"/>
  307. </package>
  308. <package name="1_05X2MM">
  309. <description>CON-M-1X5-200</description>
  310. <text x="-4.5" y="1.5" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  311. <text x="-4.75" y="-2.75" size="1.27" layer="27">&gt;VALUE</text>
  312. <wire x1="-5" y1="0.5" x2="-4.5" y2="1" width="0.1524" layer="21"/>
  313. <wire x1="-4.5" y1="1" x2="-3.5" y2="1" width="0.1524" layer="21"/>
  314. <wire x1="-3.5" y1="1" x2="-3" y2="0.5" width="0.1524" layer="21"/>
  315. <wire x1="-3" y1="-0.5" x2="-3.5" y2="-1" width="0.1524" layer="21"/>
  316. <wire x1="-3.5" y1="-1" x2="-4.5" y2="-1" width="0.1524" layer="21"/>
  317. <wire x1="-4.5" y1="-1" x2="-5" y2="-0.5" width="0.1524" layer="21"/>
  318. <wire x1="-5" y1="0.5" x2="-5" y2="-0.5" width="0.1524" layer="21"/>
  319. <pad name="1" x="-4" y="0" drill="1.016" diameter="1.3" shape="square" rot="R90"/>
  320. <rectangle x1="-4.254" y1="-0.254" x2="-3.746" y2="0.254" layer="51"/>
  321. <wire x1="-3" y1="0.5" x2="-2.5" y2="1" width="0.1524" layer="21"/>
  322. <wire x1="-2.5" y1="1" x2="-1.5" y2="1" width="0.1524" layer="21"/>
  323. <wire x1="-1.5" y1="1" x2="-1" y2="0.5" width="0.1524" layer="21"/>
  324. <wire x1="-1" y1="-0.5" x2="-1.5" y2="-1" width="0.1524" layer="21"/>
  325. <wire x1="-1.5" y1="-1" x2="-2.5" y2="-1" width="0.1524" layer="21"/>
  326. <wire x1="-2.5" y1="-1" x2="-3" y2="-0.5" width="0.1524" layer="21"/>
  327. <wire x1="-3" y1="0.5" x2="-3" y2="-0.5" width="0.1524" layer="21"/>
  328. <pad name="3" x="-2" y="0" drill="1.016" diameter="1.3" rot="R90"/>
  329. <rectangle x1="-2.254" y1="-0.254" x2="-1.746" y2="0.254" layer="51"/>
  330. <wire x1="-1" y1="0.5" x2="-0.5" y2="1" width="0.1524" layer="21"/>
  331. <wire x1="-0.5" y1="1" x2="0.5" y2="1" width="0.1524" layer="21"/>
  332. <wire x1="0.5" y1="1" x2="1" y2="0.5" width="0.1524" layer="21"/>
  333. <wire x1="1" y1="-0.5" x2="0.5" y2="-1" width="0.1524" layer="21"/>
  334. <wire x1="0.5" y1="-1" x2="-0.5" y2="-1" width="0.1524" layer="21"/>
  335. <wire x1="-0.5" y1="-1" x2="-1" y2="-0.5" width="0.1524" layer="21"/>
  336. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.1524" layer="21"/>
  337. <pad name="2" x="0" y="0" drill="1.016" diameter="1.3" rot="R90"/>
  338. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  339. <wire x1="1" y1="0.5" x2="1.5" y2="1" width="0.1524" layer="21"/>
  340. <wire x1="1.5" y1="1" x2="2.5" y2="1" width="0.1524" layer="21"/>
  341. <wire x1="2.5" y1="1" x2="3" y2="0.5" width="0.1524" layer="21"/>
  342. <wire x1="3" y1="-0.5" x2="2.5" y2="-1" width="0.1524" layer="21"/>
  343. <wire x1="2.5" y1="-1" x2="1.5" y2="-1" width="0.1524" layer="21"/>
  344. <wire x1="1.5" y1="-1" x2="1" y2="-0.5" width="0.1524" layer="21"/>
  345. <wire x1="1" y1="0.5" x2="1" y2="-0.5" width="0.1524" layer="21"/>
  346. <pad name="4" x="2" y="0" drill="1.016" diameter="1.3" rot="R90"/>
  347. <rectangle x1="1.746" y1="-0.254" x2="2.254" y2="0.254" layer="51"/>
  348. <wire x1="3" y1="0.5" x2="3.5" y2="1" width="0.1524" layer="21"/>
  349. <wire x1="3.5" y1="1" x2="4.5" y2="1" width="0.1524" layer="21"/>
  350. <wire x1="4.5" y1="1" x2="5" y2="0.5" width="0.1524" layer="21"/>
  351. <wire x1="5" y1="0.5" x2="5" y2="-0.5" width="0.1524" layer="21"/>
  352. <wire x1="5" y1="-0.5" x2="4.5" y2="-1" width="0.1524" layer="21"/>
  353. <wire x1="4.5" y1="-1" x2="3.5" y2="-1" width="0.1524" layer="21"/>
  354. <wire x1="3.5" y1="-1" x2="3" y2="-0.5" width="0.1524" layer="21"/>
  355. <wire x1="3" y1="0.5" x2="3" y2="-0.5" width="0.1524" layer="21"/>
  356. <pad name="5" x="4" y="0" drill="1.016" diameter="1.3" rot="R90"/>
  357. <rectangle x1="3.746" y1="-0.254" x2="4.254" y2="0.254" layer="51"/>
  358. </package>
  359. <package name="1X03">
  360. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  361. <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  362. <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  363. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  364. <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  365. <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  366. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  367. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  368. <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  369. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  370. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  371. <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  372. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  373. <wire x1="-3.175" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  374. <wire x1="-3.81" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  375. <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  376. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  377. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  378. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  379. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
  380. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  381. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  382. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  383. <pad name="1" x="-2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  384. <pad name="2" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  385. <pad name="3" x="2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  386. <text x="-3.8862" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  387. <text x="-3.81" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  388. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  389. <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
  390. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  391. </package>
  392. <package name="1X03/90">
  393. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  394. <wire x1="-3.81" y1="-1.905" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/>
  395. <wire x1="-1.27" y1="-1.905" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  396. <wire x1="-1.27" y1="0.635" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  397. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-1.905" width="0.1524" layer="21"/>
  398. <wire x1="-2.54" y1="6.985" x2="-2.54" y2="1.27" width="0.762" layer="21"/>
  399. <wire x1="-1.27" y1="-1.905" x2="1.27" y2="-1.905" width="0.1524" layer="21"/>
  400. <wire x1="1.27" y1="-1.905" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  401. <wire x1="1.27" y1="0.635" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  402. <wire x1="0" y1="6.985" x2="0" y2="1.27" width="0.762" layer="21"/>
  403. <wire x1="1.27" y1="-1.905" x2="3.81" y2="-1.905" width="0.1524" layer="21"/>
  404. <wire x1="3.81" y1="-1.905" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  405. <wire x1="3.81" y1="0.635" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  406. <wire x1="2.54" y1="6.985" x2="2.54" y2="1.27" width="0.762" layer="21"/>
  407. <pad name="1" x="-2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  408. <pad name="2" x="0" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  409. <pad name="3" x="2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  410. <text x="-4.445" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  411. <text x="5.715" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  412. <rectangle x1="-2.921" y1="0.635" x2="-2.159" y2="1.143" layer="21"/>
  413. <rectangle x1="-0.381" y1="0.635" x2="0.381" y2="1.143" layer="21"/>
  414. <rectangle x1="2.159" y1="0.635" x2="2.921" y2="1.143" layer="21"/>
  415. <rectangle x1="-2.921" y1="-2.921" x2="-2.159" y2="-1.905" layer="21"/>
  416. <rectangle x1="-0.381" y1="-2.921" x2="0.381" y2="-1.905" layer="21"/>
  417. <rectangle x1="2.159" y1="-2.921" x2="2.921" y2="-1.905" layer="21"/>
  418. </package>
  419. </packages>
  420. <symbols>
  421. <symbol name="PINH2X6">
  422. <wire x1="-6.35" y1="-10.16" x2="8.89" y2="-10.16" width="0.4064" layer="94"/>
  423. <wire x1="8.89" y1="-10.16" x2="8.89" y2="7.62" width="0.4064" layer="94"/>
  424. <wire x1="8.89" y1="7.62" x2="-6.35" y2="7.62" width="0.4064" layer="94"/>
  425. <wire x1="-6.35" y1="7.62" x2="-6.35" y2="-10.16" width="0.4064" layer="94"/>
  426. <text x="-6.35" y="8.255" size="1.778" layer="95">&gt;NAME</text>
  427. <text x="-6.35" y="-12.7" size="1.778" layer="96">&gt;VALUE</text>
  428. <pin name="1" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  429. <pin name="2" x="5.08" y="5.08" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  430. <pin name="3" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  431. <pin name="4" x="5.08" y="2.54" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  432. <pin name="5" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  433. <pin name="6" x="5.08" y="0" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  434. <pin name="7" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  435. <pin name="8" x="5.08" y="-2.54" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  436. <pin name="9" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  437. <pin name="10" x="5.08" y="-5.08" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  438. <pin name="11" x="-2.54" y="-7.62" visible="pad" length="short" direction="pas" function="dot"/>
  439. <pin name="12" x="5.08" y="-7.62" visible="pad" length="short" direction="pas" function="dot" rot="R180"/>
  440. </symbol>
  441. <symbol name="PINHD5">
  442. <wire x1="-6.35" y1="-7.62" x2="1.27" y2="-7.62" width="0.4064" layer="94"/>
  443. <wire x1="1.27" y1="-7.62" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  444. <wire x1="1.27" y1="7.62" x2="-6.35" y2="7.62" width="0.4064" layer="94"/>
  445. <wire x1="-6.35" y1="7.62" x2="-6.35" y2="-7.62" width="0.4064" layer="94"/>
  446. <text x="-6.35" y="8.255" size="1.778" layer="95">&gt;NAME</text>
  447. <text x="-6.35" y="-10.16" size="1.778" layer="96">&gt;VALUE</text>
  448. <pin name="1" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  449. <pin name="2" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  450. <pin name="3" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  451. <pin name="4" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  452. <pin name="5" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  453. </symbol>
  454. <symbol name="PINHD3">
  455. <wire x1="-6.35" y1="-5.08" x2="1.27" y2="-5.08" width="0.4064" layer="94"/>
  456. <wire x1="1.27" y1="-5.08" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  457. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  458. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/>
  459. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  460. <text x="-6.35" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  461. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  462. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  463. <pin name="3" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  464. </symbol>
  465. </symbols>
  466. <devicesets>
  467. <deviceset name="PINHD-2X6" prefix="JP" uservalue="yes">
  468. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  469. <gates>
  470. <gate name="A" symbol="PINH2X6" x="0" y="0"/>
  471. </gates>
  472. <devices>
  473. <device name="" package="2X06">
  474. <connects>
  475. <connect gate="A" pin="1" pad="1"/>
  476. <connect gate="A" pin="10" pad="10"/>
  477. <connect gate="A" pin="11" pad="11"/>
  478. <connect gate="A" pin="12" pad="12"/>
  479. <connect gate="A" pin="2" pad="2"/>
  480. <connect gate="A" pin="3" pad="3"/>
  481. <connect gate="A" pin="4" pad="4"/>
  482. <connect gate="A" pin="5" pad="5"/>
  483. <connect gate="A" pin="6" pad="6"/>
  484. <connect gate="A" pin="7" pad="7"/>
  485. <connect gate="A" pin="8" pad="8"/>
  486. <connect gate="A" pin="9" pad="9"/>
  487. </connects>
  488. <technologies>
  489. <technology name=""/>
  490. </technologies>
  491. </device>
  492. <device name="/90" package="2X06/90">
  493. <connects>
  494. <connect gate="A" pin="1" pad="1"/>
  495. <connect gate="A" pin="10" pad="10"/>
  496. <connect gate="A" pin="11" pad="11"/>
  497. <connect gate="A" pin="12" pad="12"/>
  498. <connect gate="A" pin="2" pad="2"/>
  499. <connect gate="A" pin="3" pad="3"/>
  500. <connect gate="A" pin="4" pad="4"/>
  501. <connect gate="A" pin="5" pad="5"/>
  502. <connect gate="A" pin="6" pad="6"/>
  503. <connect gate="A" pin="7" pad="7"/>
  504. <connect gate="A" pin="8" pad="8"/>
  505. <connect gate="A" pin="9" pad="9"/>
  506. </connects>
  507. <technologies>
  508. <technology name=""/>
  509. </technologies>
  510. </device>
  511. </devices>
  512. </deviceset>
  513. <deviceset name="PINHD-1X5" prefix="JP" uservalue="yes">
  514. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  515. <gates>
  516. <gate name="A" symbol="PINHD5" x="0" y="0"/>
  517. </gates>
  518. <devices>
  519. <device name="" package="1X05">
  520. <connects>
  521. <connect gate="A" pin="1" pad="1"/>
  522. <connect gate="A" pin="2" pad="2"/>
  523. <connect gate="A" pin="3" pad="3"/>
  524. <connect gate="A" pin="4" pad="4"/>
  525. <connect gate="A" pin="5" pad="5"/>
  526. </connects>
  527. <technologies>
  528. <technology name=""/>
  529. </technologies>
  530. </device>
  531. <device name="/90" package="1X05/90">
  532. <connects>
  533. <connect gate="A" pin="1" pad="1"/>
  534. <connect gate="A" pin="2" pad="2"/>
  535. <connect gate="A" pin="3" pad="3"/>
  536. <connect gate="A" pin="4" pad="4"/>
  537. <connect gate="A" pin="5" pad="5"/>
  538. </connects>
  539. <technologies>
  540. <technology name=""/>
  541. </technologies>
  542. </device>
  543. <device name="5X2MM" package="1_05X2MM">
  544. <connects>
  545. <connect gate="A" pin="1" pad="1"/>
  546. <connect gate="A" pin="2" pad="2"/>
  547. <connect gate="A" pin="3" pad="3"/>
  548. <connect gate="A" pin="4" pad="4"/>
  549. <connect gate="A" pin="5" pad="5"/>
  550. </connects>
  551. <technologies>
  552. <technology name=""/>
  553. </technologies>
  554. </device>
  555. </devices>
  556. </deviceset>
  557. <deviceset name="PINHD-1X3" prefix="JP" uservalue="yes">
  558. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  559. <gates>
  560. <gate name="A" symbol="PINHD3" x="0" y="0"/>
  561. </gates>
  562. <devices>
  563. <device name="" package="1X03">
  564. <connects>
  565. <connect gate="A" pin="1" pad="1"/>
  566. <connect gate="A" pin="2" pad="2"/>
  567. <connect gate="A" pin="3" pad="3"/>
  568. </connects>
  569. <technologies>
  570. <technology name=""/>
  571. </technologies>
  572. </device>
  573. <device name="/90" package="1X03/90">
  574. <connects>
  575. <connect gate="A" pin="1" pad="1"/>
  576. <connect gate="A" pin="2" pad="2"/>
  577. <connect gate="A" pin="3" pad="3"/>
  578. </connects>
  579. <technologies>
  580. <technology name=""/>
  581. </technologies>
  582. </device>
  583. </devices>
  584. </deviceset>
  585. </devicesets>
  586. </library>
  587. <library name="optocoupler">
  588. <description>&lt;b&gt;Opto Couplers&lt;/b&gt;&lt;p&gt;
  589. Siemens, Hewlett-Packard, Texas Instuments, Sharp, Motorola&lt;p&gt;
  590. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  591. <packages>
  592. <package name="DIL16">
  593. <description>&lt;b&gt;Dual In Line Package&lt;/b&gt;</description>
  594. <wire x1="10.16" y1="2.921" x2="-10.16" y2="2.921" width="0.1524" layer="21"/>
  595. <wire x1="-10.16" y1="-2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  596. <wire x1="10.16" y1="2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  597. <wire x1="-10.16" y1="2.921" x2="-10.16" y2="1.016" width="0.1524" layer="21"/>
  598. <wire x1="-10.16" y1="-2.921" x2="-10.16" y2="-1.016" width="0.1524" layer="21"/>
  599. <wire x1="-10.16" y1="1.016" x2="-10.16" y2="-1.016" width="0.1524" layer="21" curve="-180"/>
  600. <pad name="1" x="-8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  601. <pad name="2" x="-6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  602. <pad name="7" x="6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  603. <pad name="8" x="8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  604. <pad name="3" x="-3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  605. <pad name="4" x="-1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  606. <pad name="6" x="3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  607. <pad name="5" x="1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  608. <pad name="9" x="8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  609. <pad name="10" x="6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  610. <pad name="11" x="3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  611. <pad name="12" x="1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  612. <pad name="13" x="-1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  613. <pad name="14" x="-3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  614. <pad name="15" x="-6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  615. <pad name="16" x="-8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  616. <text x="-10.541" y="-2.921" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  617. <text x="-7.493" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  618. </package>
  619. </packages>
  620. <symbols>
  621. <symbol name="LTV847">
  622. <description>LTV847 4-opto DIP16</description>
  623. <wire x1="2.54" y1="0" x2="17.78" y2="0" width="0.254" layer="94"/>
  624. <wire x1="17.78" y1="0" x2="17.78" y2="40.64" width="0.254" layer="94"/>
  625. <wire x1="17.78" y1="40.64" x2="2.54" y2="40.64" width="0.254" layer="94"/>
  626. <wire x1="2.54" y1="40.64" x2="2.54" y2="0" width="0.254" layer="94"/>
  627. <pin name="P$1" x="-2.54" y="2.54" length="middle" direction="pas"/>
  628. <pin name="P$2" x="-2.54" y="7.62" length="middle" direction="pas"/>
  629. <pin name="P$3" x="-2.54" y="12.7" length="middle" direction="pas"/>
  630. <pin name="P$4" x="-2.54" y="17.78" length="middle" direction="pas"/>
  631. <pin name="P$5" x="-2.54" y="22.86" length="middle" direction="pas"/>
  632. <pin name="P$6" x="-2.54" y="27.94" length="middle" direction="pas"/>
  633. <pin name="P$7" x="-2.54" y="33.02" length="middle" direction="pas"/>
  634. <pin name="P$8" x="-2.54" y="38.1" length="middle" direction="pas"/>
  635. <pin name="P$9" x="22.86" y="2.54" length="middle" direction="pas" rot="R180"/>
  636. <pin name="P$10" x="22.86" y="7.62" length="middle" direction="pas" rot="R180"/>
  637. <pin name="P$11" x="22.86" y="12.7" length="middle" direction="pas" rot="R180"/>
  638. <pin name="P$12" x="22.86" y="17.78" length="middle" direction="pas" rot="R180"/>
  639. <pin name="P$13" x="22.86" y="22.86" length="middle" direction="pas" rot="R180"/>
  640. <pin name="P$14" x="22.86" y="27.94" length="middle" direction="pas" rot="R180"/>
  641. <pin name="P$15" x="22.86" y="33.02" length="middle" direction="pas" rot="R180"/>
  642. <pin name="P$16" x="22.86" y="38.1" length="middle" direction="pas" rot="R180"/>
  643. <wire x1="6.35" y1="35.56" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  644. <wire x1="7.62" y1="35.56" x2="8.89" y2="35.56" width="0.254" layer="94"/>
  645. <wire x1="7.62" y1="35.56" x2="6.35" y2="36.83" width="0.254" layer="94"/>
  646. <wire x1="6.35" y1="36.83" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  647. <wire x1="7.62" y1="36.83" x2="8.89" y2="36.83" width="0.254" layer="94"/>
  648. <wire x1="8.89" y1="36.83" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  649. <wire x1="3.81" y1="38.1" x2="7.62" y2="38.1" width="0.254" layer="94"/>
  650. <wire x1="7.62" y1="38.1" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  651. <wire x1="7.62" y1="35.56" x2="7.62" y2="33.02" width="0.254" layer="94"/>
  652. <wire x1="7.62" y1="33.02" x2="3.81" y2="33.02" width="0.254" layer="94"/>
  653. <wire x1="6.35" y1="25.4" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  654. <wire x1="7.62" y1="25.4" x2="8.89" y2="25.4" width="0.254" layer="94"/>
  655. <wire x1="7.62" y1="25.4" x2="6.35" y2="26.67" width="0.254" layer="94"/>
  656. <wire x1="6.35" y1="26.67" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  657. <wire x1="7.62" y1="26.67" x2="8.89" y2="26.67" width="0.254" layer="94"/>
  658. <wire x1="8.89" y1="26.67" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  659. <wire x1="3.81" y1="27.94" x2="7.62" y2="27.94" width="0.254" layer="94"/>
  660. <wire x1="7.62" y1="27.94" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  661. <wire x1="7.62" y1="25.4" x2="7.62" y2="22.86" width="0.254" layer="94"/>
  662. <wire x1="7.62" y1="22.86" x2="3.81" y2="22.86" width="0.254" layer="94"/>
  663. <wire x1="6.35" y1="15.24" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  664. <wire x1="7.62" y1="15.24" x2="8.89" y2="15.24" width="0.254" layer="94"/>
  665. <wire x1="7.62" y1="15.24" x2="6.35" y2="16.51" width="0.254" layer="94"/>
  666. <wire x1="6.35" y1="16.51" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  667. <wire x1="7.62" y1="16.51" x2="8.89" y2="16.51" width="0.254" layer="94"/>
  668. <wire x1="8.89" y1="16.51" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  669. <wire x1="3.81" y1="17.78" x2="7.62" y2="17.78" width="0.254" layer="94"/>
  670. <wire x1="7.62" y1="17.78" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  671. <wire x1="7.62" y1="15.24" x2="7.62" y2="12.7" width="0.254" layer="94"/>
  672. <wire x1="7.62" y1="12.7" x2="3.81" y2="12.7" width="0.254" layer="94"/>
  673. <wire x1="6.35" y1="5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  674. <wire x1="7.62" y1="5.08" x2="8.89" y2="5.08" width="0.254" layer="94"/>
  675. <wire x1="7.62" y1="5.08" x2="6.35" y2="6.35" width="0.254" layer="94"/>
  676. <wire x1="6.35" y1="6.35" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  677. <wire x1="7.62" y1="6.35" x2="8.89" y2="6.35" width="0.254" layer="94"/>
  678. <wire x1="8.89" y1="6.35" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  679. <wire x1="3.81" y1="7.62" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  680. <wire x1="7.62" y1="7.62" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  681. <wire x1="7.62" y1="5.08" x2="7.62" y2="2.54" width="0.254" layer="94"/>
  682. <wire x1="7.62" y1="2.54" x2="3.81" y2="2.54" width="0.254" layer="94"/>
  683. <wire x1="11.43" y1="36.83" x2="11.43" y2="35.56" width="0.254" layer="94"/>
  684. <wire x1="11.43" y1="35.56" x2="11.43" y2="34.29" width="0.254" layer="94"/>
  685. <wire x1="11.43" y1="35.56" x2="13.97" y2="38.1" width="0.254" layer="94"/>
  686. <wire x1="11.43" y1="35.56" x2="13.97" y2="33.02" width="0.254" layer="94"/>
  687. <wire x1="13.97" y1="33.02" x2="13.97" y2="34.29" width="0.254" layer="94"/>
  688. <wire x1="13.97" y1="33.02" x2="12.7" y2="33.02" width="0.254" layer="94"/>
  689. <wire x1="13.97" y1="38.1" x2="16.51" y2="38.1" width="0.254" layer="94"/>
  690. <wire x1="13.97" y1="33.02" x2="16.51" y2="33.02" width="0.254" layer="94"/>
  691. <wire x1="11.43" y1="26.67" x2="11.43" y2="25.4" width="0.254" layer="94"/>
  692. <wire x1="11.43" y1="25.4" x2="11.43" y2="24.13" width="0.254" layer="94"/>
  693. <wire x1="11.43" y1="25.4" x2="13.97" y2="27.94" width="0.254" layer="94"/>
  694. <wire x1="11.43" y1="25.4" x2="13.97" y2="22.86" width="0.254" layer="94"/>
  695. <wire x1="13.97" y1="22.86" x2="13.97" y2="24.13" width="0.254" layer="94"/>
  696. <wire x1="13.97" y1="22.86" x2="12.7" y2="22.86" width="0.254" layer="94"/>
  697. <wire x1="13.97" y1="27.94" x2="16.51" y2="27.94" width="0.254" layer="94"/>
  698. <wire x1="13.97" y1="22.86" x2="16.51" y2="22.86" width="0.254" layer="94"/>
  699. <wire x1="11.43" y1="16.51" x2="11.43" y2="15.24" width="0.254" layer="94"/>
  700. <wire x1="11.43" y1="15.24" x2="11.43" y2="13.97" width="0.254" layer="94"/>
  701. <wire x1="11.43" y1="15.24" x2="13.97" y2="17.78" width="0.254" layer="94"/>
  702. <wire x1="11.43" y1="15.24" x2="13.97" y2="12.7" width="0.254" layer="94"/>
  703. <wire x1="13.97" y1="12.7" x2="13.97" y2="13.97" width="0.254" layer="94"/>
  704. <wire x1="13.97" y1="12.7" x2="12.7" y2="12.7" width="0.254" layer="94"/>
  705. <wire x1="13.97" y1="17.78" x2="16.51" y2="17.78" width="0.254" layer="94"/>
  706. <wire x1="13.97" y1="12.7" x2="16.51" y2="12.7" width="0.254" layer="94"/>
  707. <wire x1="11.43" y1="6.35" x2="11.43" y2="5.08" width="0.254" layer="94"/>
  708. <wire x1="11.43" y1="5.08" x2="11.43" y2="3.81" width="0.254" layer="94"/>
  709. <wire x1="11.43" y1="5.08" x2="13.97" y2="7.62" width="0.254" layer="94"/>
  710. <wire x1="11.43" y1="5.08" x2="13.97" y2="2.54" width="0.254" layer="94"/>
  711. <wire x1="13.97" y1="2.54" x2="13.97" y2="3.81" width="0.254" layer="94"/>
  712. <wire x1="13.97" y1="2.54" x2="12.7" y2="2.54" width="0.254" layer="94"/>
  713. <wire x1="13.97" y1="7.62" x2="16.51" y2="7.62" width="0.254" layer="94"/>
  714. <wire x1="13.97" y1="2.54" x2="16.51" y2="2.54" width="0.254" layer="94"/>
  715. </symbol>
  716. </symbols>
  717. <devicesets>
  718. <deviceset name="LTV847">
  719. <description>LTV847 4-optocoupler DIP16</description>
  720. <gates>
  721. <gate name="G$1" symbol="LTV847" x="-10.16" y="-20.32"/>
  722. </gates>
  723. <devices>
  724. <device name="" package="DIL16">
  725. <connects>
  726. <connect gate="G$1" pin="P$1" pad="8"/>
  727. <connect gate="G$1" pin="P$10" pad="10"/>
  728. <connect gate="G$1" pin="P$11" pad="11"/>
  729. <connect gate="G$1" pin="P$12" pad="12"/>
  730. <connect gate="G$1" pin="P$13" pad="13"/>
  731. <connect gate="G$1" pin="P$14" pad="14"/>
  732. <connect gate="G$1" pin="P$15" pad="15"/>
  733. <connect gate="G$1" pin="P$16" pad="16"/>
  734. <connect gate="G$1" pin="P$2" pad="7"/>
  735. <connect gate="G$1" pin="P$3" pad="6"/>
  736. <connect gate="G$1" pin="P$4" pad="5"/>
  737. <connect gate="G$1" pin="P$5" pad="4"/>
  738. <connect gate="G$1" pin="P$6" pad="3"/>
  739. <connect gate="G$1" pin="P$7" pad="2"/>
  740. <connect gate="G$1" pin="P$8" pad="1"/>
  741. <connect gate="G$1" pin="P$9" pad="9"/>
  742. </connects>
  743. <technologies>
  744. <technology name=""/>
  745. </technologies>
  746. </device>
  747. </devices>
  748. </deviceset>
  749. </devicesets>
  750. </library>
  751. <library name="rcl">
  752. <description>&lt;b&gt;Resistors, Capacitors, Inductors&lt;/b&gt;&lt;p&gt;
  753. Based on the previous libraries:
  754. &lt;ul&gt;
  755. &lt;li&gt;r.lbr
  756. &lt;li&gt;cap.lbr
  757. &lt;li&gt;cap-fe.lbr
  758. &lt;li&gt;captant.lbr
  759. &lt;li&gt;polcap.lbr
  760. &lt;li&gt;ipc-smd.lbr
  761. &lt;/ul&gt;
  762. All SMD packages are defined according to the IPC specifications and CECC&lt;p&gt;
  763. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;p&gt;
  764. &lt;p&gt;
  765. for Electrolyt Capacitors see also :&lt;p&gt;
  766. www.bccomponents.com &lt;p&gt;
  767. www.panasonic.com&lt;p&gt;
  768. www.kemet.com&lt;p&gt;
  769. http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf &lt;b&gt;(SANYO)&lt;/b&gt;
  770. &lt;p&gt;
  771. for trimmer refence see : &lt;u&gt;www.electrospec-inc.com/cross_references/trimpotcrossref.asp&lt;/u&gt;&lt;p&gt;
  772. &lt;table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0&gt;
  773. &lt;tr valign="top"&gt;
  774. &lt;! &lt;td width="10"&gt;&amp;nbsp;&lt;/td&gt;
  775. &lt;td width="90%"&gt;
  776. &lt;b&gt;&lt;font color="#0000FF" size="4"&gt;TRIM-POT CROSS REFERENCE&lt;/font&gt;&lt;/b&gt;
  777. &lt;P&gt;
  778. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2&gt;
  779. &lt;TR&gt;
  780. &lt;TD COLSPAN=8&gt;
  781. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;RECTANGULAR MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  782. &lt;/TD&gt;
  783. &lt;/TR&gt;
  784. &lt;TR&gt;
  785. &lt;TD ALIGN=CENTER&gt;
  786. &lt;B&gt;
  787. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BOURNS&lt;/FONT&gt;
  788. &lt;/B&gt;
  789. &lt;/TD&gt;
  790. &lt;TD ALIGN=CENTER&gt;
  791. &lt;B&gt;
  792. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BI&amp;nbsp;TECH&lt;/FONT&gt;
  793. &lt;/B&gt;
  794. &lt;/TD&gt;
  795. &lt;TD ALIGN=CENTER&gt;
  796. &lt;B&gt;
  797. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;DALE-VISHAY&lt;/FONT&gt;
  798. &lt;/B&gt;
  799. &lt;/TD&gt;
  800. &lt;TD ALIGN=CENTER&gt;
  801. &lt;B&gt;
  802. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PHILIPS/MEPCO&lt;/FONT&gt;
  803. &lt;/B&gt;
  804. &lt;/TD&gt;
  805. &lt;TD ALIGN=CENTER&gt;
  806. &lt;B&gt;
  807. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MURATA&lt;/FONT&gt;
  808. &lt;/B&gt;
  809. &lt;/TD&gt;
  810. &lt;TD ALIGN=CENTER&gt;
  811. &lt;B&gt;
  812. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PANASONIC&lt;/FONT&gt;
  813. &lt;/B&gt;
  814. &lt;/TD&gt;
  815. &lt;TD ALIGN=CENTER&gt;
  816. &lt;B&gt;
  817. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;SPECTROL&lt;/FONT&gt;
  818. &lt;/B&gt;
  819. &lt;/TD&gt;
  820. &lt;TD ALIGN=CENTER&gt;
  821. &lt;B&gt;
  822. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MILSPEC&lt;/FONT&gt;
  823. &lt;/B&gt;
  824. &lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
  825. &lt;/TR&gt;
  826. &lt;TR&gt;
  827. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3 &gt;
  828. 3005P&lt;BR&gt;
  829. 3006P&lt;BR&gt;
  830. 3006W&lt;BR&gt;
  831. 3006Y&lt;BR&gt;
  832. 3009P&lt;BR&gt;
  833. 3009W&lt;BR&gt;
  834. 3009Y&lt;BR&gt;
  835. 3057J&lt;BR&gt;
  836. 3057L&lt;BR&gt;
  837. 3057P&lt;BR&gt;
  838. 3057Y&lt;BR&gt;
  839. 3059J&lt;BR&gt;
  840. 3059L&lt;BR&gt;
  841. 3059P&lt;BR&gt;
  842. 3059Y&lt;BR&gt;&lt;/FONT&gt;
  843. &lt;/TD&gt;
  844. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  845. -&lt;BR&gt;
  846. 89P&lt;BR&gt;
  847. 89W&lt;BR&gt;
  848. 89X&lt;BR&gt;
  849. 89PH&lt;BR&gt;
  850. 76P&lt;BR&gt;
  851. 89XH&lt;BR&gt;
  852. 78SLT&lt;BR&gt;
  853. 78L&amp;nbsp;ALT&lt;BR&gt;
  854. 56P&amp;nbsp;ALT&lt;BR&gt;
  855. 78P&amp;nbsp;ALT&lt;BR&gt;
  856. T8S&lt;BR&gt;
  857. 78L&lt;BR&gt;
  858. 56P&lt;BR&gt;
  859. 78P&lt;BR&gt;&lt;/FONT&gt;
  860. &lt;/TD&gt;
  861. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  862. -&lt;BR&gt;
  863. T18/784&lt;BR&gt;
  864. 783&lt;BR&gt;
  865. 781&lt;BR&gt;
  866. -&lt;BR&gt;
  867. -&lt;BR&gt;
  868. -&lt;BR&gt;
  869. 2199&lt;BR&gt;
  870. 1697/1897&lt;BR&gt;
  871. 1680/1880&lt;BR&gt;
  872. 2187&lt;BR&gt;
  873. -&lt;BR&gt;
  874. -&lt;BR&gt;
  875. -&lt;BR&gt;
  876. -&lt;BR&gt;&lt;/FONT&gt;
  877. &lt;/TD&gt;
  878. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  879. -&lt;BR&gt;
  880. 8035EKP/CT20/RJ-20P&lt;BR&gt;
  881. -&lt;BR&gt;
  882. RJ-20X&lt;BR&gt;
  883. -&lt;BR&gt;
  884. -&lt;BR&gt;
  885. -&lt;BR&gt;
  886. 1211L&lt;BR&gt;
  887. 8012EKQ&amp;nbsp;ALT&lt;BR&gt;
  888. 8012EKR&amp;nbsp;ALT&lt;BR&gt;
  889. 1211P&lt;BR&gt;
  890. 8012EKJ&lt;BR&gt;
  891. 8012EKL&lt;BR&gt;
  892. 8012EKQ&lt;BR&gt;
  893. 8012EKR&lt;BR&gt;&lt;/FONT&gt;
  894. &lt;/TD&gt;
  895. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  896. -&lt;BR&gt;
  897. 2101P&lt;BR&gt;
  898. 2101W&lt;BR&gt;
  899. 2101Y&lt;BR&gt;
  900. -&lt;BR&gt;
  901. -&lt;BR&gt;
  902. -&lt;BR&gt;
  903. -&lt;BR&gt;
  904. -&lt;BR&gt;
  905. -&lt;BR&gt;
  906. -&lt;BR&gt;
  907. -&lt;BR&gt;
  908. 2102L&lt;BR&gt;
  909. 2102S&lt;BR&gt;
  910. 2102Y&lt;BR&gt;&lt;/FONT&gt;
  911. &lt;/TD&gt;
  912. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  913. -&lt;BR&gt;
  914. EVMCOG&lt;BR&gt;
  915. -&lt;BR&gt;
  916. -&lt;BR&gt;
  917. -&lt;BR&gt;
  918. -&lt;BR&gt;
  919. -&lt;BR&gt;
  920. -&lt;BR&gt;
  921. -&lt;BR&gt;
  922. -&lt;BR&gt;
  923. -&lt;BR&gt;
  924. -&lt;BR&gt;
  925. -&lt;BR&gt;
  926. -&lt;BR&gt;
  927. -&lt;BR&gt;&lt;/FONT&gt;
  928. &lt;/TD&gt;
  929. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  930. -&lt;BR&gt;
  931. 43P&lt;BR&gt;
  932. 43W&lt;BR&gt;
  933. 43Y&lt;BR&gt;
  934. -&lt;BR&gt;
  935. -&lt;BR&gt;
  936. -&lt;BR&gt;
  937. -&lt;BR&gt;
  938. 40L&lt;BR&gt;
  939. 40P&lt;BR&gt;
  940. 40Y&lt;BR&gt;
  941. 70Y-T602&lt;BR&gt;
  942. 70L&lt;BR&gt;
  943. 70P&lt;BR&gt;
  944. 70Y&lt;BR&gt;&lt;/FONT&gt;
  945. &lt;/TD&gt;
  946. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  947. -&lt;BR&gt;
  948. -&lt;BR&gt;
  949. -&lt;BR&gt;
  950. -&lt;BR&gt;
  951. -&lt;BR&gt;
  952. -&lt;BR&gt;
  953. -&lt;BR&gt;
  954. -&lt;BR&gt;
  955. RT/RTR12&lt;BR&gt;
  956. RT/RTR12&lt;BR&gt;
  957. RT/RTR12&lt;BR&gt;
  958. -&lt;BR&gt;
  959. RJ/RJR12&lt;BR&gt;
  960. RJ/RJR12&lt;BR&gt;
  961. RJ/RJR12&lt;BR&gt;&lt;/FONT&gt;
  962. &lt;/TD&gt;
  963. &lt;/TR&gt;
  964. &lt;TR&gt;
  965. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  966. &lt;/TD&gt;
  967. &lt;/TR&gt;
  968. &lt;TR&gt;
  969. &lt;TD COLSPAN=8&gt;
  970. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SQUARE MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  971. &lt;/TD&gt;
  972. &lt;/TR&gt;
  973. &lt;TR&gt;
  974. &lt;TD ALIGN=CENTER&gt;
  975. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  976. &lt;/TD&gt;
  977. &lt;TD ALIGN=CENTER&gt;
  978. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  979. &lt;/TD&gt;
  980. &lt;TD ALIGN=CENTER&gt;
  981. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  982. &lt;/TD&gt;
  983. &lt;TD ALIGN=CENTER&gt;
  984. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  985. &lt;/TD&gt;
  986. &lt;TD ALIGN=CENTER&gt;
  987. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  988. &lt;/TD&gt;
  989. &lt;TD ALIGN=CENTER&gt;
  990. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  991. &lt;/TD&gt;
  992. &lt;TD ALIGN=CENTER&gt;
  993. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  994. &lt;/TD&gt;
  995. &lt;TD ALIGN=CENTER&gt;
  996. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  997. &lt;/TD&gt;
  998. &lt;/TR&gt;
  999. &lt;TR&gt;
  1000. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1001. 3250L&lt;BR&gt;
  1002. 3250P&lt;BR&gt;
  1003. 3250W&lt;BR&gt;
  1004. 3250X&lt;BR&gt;
  1005. 3252P&lt;BR&gt;
  1006. 3252W&lt;BR&gt;
  1007. 3252X&lt;BR&gt;
  1008. 3260P&lt;BR&gt;
  1009. 3260W&lt;BR&gt;
  1010. 3260X&lt;BR&gt;
  1011. 3262P&lt;BR&gt;
  1012. 3262W&lt;BR&gt;
  1013. 3262X&lt;BR&gt;
  1014. 3266P&lt;BR&gt;
  1015. 3266W&lt;BR&gt;
  1016. 3266X&lt;BR&gt;
  1017. 3290H&lt;BR&gt;
  1018. 3290P&lt;BR&gt;
  1019. 3290W&lt;BR&gt;
  1020. 3292P&lt;BR&gt;
  1021. 3292W&lt;BR&gt;
  1022. 3292X&lt;BR&gt;
  1023. 3296P&lt;BR&gt;
  1024. 3296W&lt;BR&gt;
  1025. 3296X&lt;BR&gt;
  1026. 3296Y&lt;BR&gt;
  1027. 3296Z&lt;BR&gt;
  1028. 3299P&lt;BR&gt;
  1029. 3299W&lt;BR&gt;
  1030. 3299X&lt;BR&gt;
  1031. 3299Y&lt;BR&gt;
  1032. 3299Z&lt;BR&gt;&lt;/FONT&gt;
  1033. &lt;/TD&gt;
  1034. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1035. -&lt;BR&gt;
  1036. 66P&amp;nbsp;ALT&lt;BR&gt;
  1037. 66W&amp;nbsp;ALT&lt;BR&gt;
  1038. 66X&amp;nbsp;ALT&lt;BR&gt;
  1039. 66P&amp;nbsp;ALT&lt;BR&gt;
  1040. 66W&amp;nbsp;ALT&lt;BR&gt;
  1041. 66X&amp;nbsp;ALT&lt;BR&gt;
  1042. -&lt;BR&gt;
  1043. 64W&amp;nbsp;ALT&lt;BR&gt;
  1044. -&lt;BR&gt;
  1045. 64P&amp;nbsp;ALT&lt;BR&gt;
  1046. 64W&amp;nbsp;ALT&lt;BR&gt;
  1047. 64X&amp;nbsp;ALT&lt;BR&gt;
  1048. 64P&lt;BR&gt;
  1049. 64W&lt;BR&gt;
  1050. 64X&lt;BR&gt;
  1051. 66X&amp;nbsp;ALT&lt;BR&gt;
  1052. 66P&amp;nbsp;ALT&lt;BR&gt;
  1053. 66W&amp;nbsp;ALT&lt;BR&gt;
  1054. 66P&lt;BR&gt;
  1055. 66W&lt;BR&gt;
  1056. 66X&lt;BR&gt;
  1057. 67P&lt;BR&gt;
  1058. 67W&lt;BR&gt;
  1059. 67X&lt;BR&gt;
  1060. 67Y&lt;BR&gt;
  1061. 67Z&lt;BR&gt;
  1062. 68P&lt;BR&gt;
  1063. 68W&lt;BR&gt;
  1064. 68X&lt;BR&gt;
  1065. 67Y&amp;nbsp;ALT&lt;BR&gt;
  1066. 67Z&amp;nbsp;ALT&lt;BR&gt;&lt;/FONT&gt;
  1067. &lt;/TD&gt;
  1068. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1069. 5050&lt;BR&gt;
  1070. 5091&lt;BR&gt;
  1071. 5080&lt;BR&gt;
  1072. 5087&lt;BR&gt;
  1073. -&lt;BR&gt;
  1074. -&lt;BR&gt;
  1075. -&lt;BR&gt;
  1076. -&lt;BR&gt;
  1077. -&lt;BR&gt;
  1078. -&lt;BR&gt;
  1079. -&lt;BR&gt;
  1080. T63YB&lt;BR&gt;
  1081. T63XB&lt;BR&gt;
  1082. -&lt;BR&gt;
  1083. -&lt;BR&gt;
  1084. -&lt;BR&gt;
  1085. 5887&lt;BR&gt;
  1086. 5891&lt;BR&gt;
  1087. 5880&lt;BR&gt;
  1088. -&lt;BR&gt;
  1089. -&lt;BR&gt;
  1090. -&lt;BR&gt;
  1091. T93Z&lt;BR&gt;
  1092. T93YA&lt;BR&gt;
  1093. T93XA&lt;BR&gt;
  1094. T93YB&lt;BR&gt;
  1095. T93XB&lt;BR&gt;
  1096. -&lt;BR&gt;
  1097. -&lt;BR&gt;
  1098. -&lt;BR&gt;
  1099. -&lt;BR&gt;
  1100. -&lt;BR&gt;&lt;/FONT&gt;
  1101. &lt;/TD&gt;
  1102. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1103. -&lt;BR&gt;
  1104. -&lt;BR&gt;
  1105. -&lt;BR&gt;
  1106. -&lt;BR&gt;
  1107. -&lt;BR&gt;
  1108. -&lt;BR&gt;
  1109. -&lt;BR&gt;
  1110. -&lt;BR&gt;
  1111. -&lt;BR&gt;
  1112. -&lt;BR&gt;
  1113. 8026EKP&lt;BR&gt;
  1114. 8026EKW&lt;BR&gt;
  1115. 8026EKM&lt;BR&gt;
  1116. 8026EKP&lt;BR&gt;
  1117. 8026EKB&lt;BR&gt;
  1118. 8026EKM&lt;BR&gt;
  1119. 1309X&lt;BR&gt;
  1120. 1309P&lt;BR&gt;
  1121. 1309W&lt;BR&gt;
  1122. 8024EKP&lt;BR&gt;
  1123. 8024EKW&lt;BR&gt;
  1124. 8024EKN&lt;BR&gt;
  1125. RJ-9P/CT9P&lt;BR&gt;
  1126. RJ-9W&lt;BR&gt;
  1127. RJ-9X&lt;BR&gt;
  1128. -&lt;BR&gt;
  1129. -&lt;BR&gt;
  1130. -&lt;BR&gt;
  1131. -&lt;BR&gt;
  1132. -&lt;BR&gt;
  1133. -&lt;BR&gt;
  1134. -&lt;BR&gt;&lt;/FONT&gt;
  1135. &lt;/TD&gt;
  1136. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1137. -&lt;BR&gt;
  1138. -&lt;BR&gt;
  1139. -&lt;BR&gt;
  1140. -&lt;BR&gt;
  1141. -&lt;BR&gt;
  1142. -&lt;BR&gt;
  1143. -&lt;BR&gt;
  1144. -&lt;BR&gt;
  1145. -&lt;BR&gt;
  1146. -&lt;BR&gt;
  1147. 3103P&lt;BR&gt;
  1148. 3103Y&lt;BR&gt;
  1149. 3103Z&lt;BR&gt;
  1150. 3103P&lt;BR&gt;
  1151. 3103Y&lt;BR&gt;
  1152. 3103Z&lt;BR&gt;
  1153. -&lt;BR&gt;
  1154. -&lt;BR&gt;
  1155. -&lt;BR&gt;
  1156. -&lt;BR&gt;
  1157. -&lt;BR&gt;
  1158. -&lt;BR&gt;
  1159. 3105P/3106P&lt;BR&gt;
  1160. 3105W/3106W&lt;BR&gt;
  1161. 3105X/3106X&lt;BR&gt;
  1162. 3105Y/3106Y&lt;BR&gt;
  1163. 3105Z/3105Z&lt;BR&gt;
  1164. 3102P&lt;BR&gt;
  1165. 3102W&lt;BR&gt;
  1166. 3102X&lt;BR&gt;
  1167. 3102Y&lt;BR&gt;
  1168. 3102Z&lt;BR&gt;&lt;/FONT&gt;
  1169. &lt;/TD&gt;
  1170. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1171. -&lt;BR&gt;
  1172. -&lt;BR&gt;
  1173. -&lt;BR&gt;
  1174. -&lt;BR&gt;
  1175. -&lt;BR&gt;
  1176. -&lt;BR&gt;
  1177. -&lt;BR&gt;
  1178. -&lt;BR&gt;
  1179. -&lt;BR&gt;
  1180. -&lt;BR&gt;
  1181. -&lt;BR&gt;
  1182. -&lt;BR&gt;
  1183. -&lt;BR&gt;
  1184. -&lt;BR&gt;
  1185. -&lt;BR&gt;
  1186. -&lt;BR&gt;
  1187. -&lt;BR&gt;
  1188. -&lt;BR&gt;
  1189. -&lt;BR&gt;
  1190. -&lt;BR&gt;
  1191. -&lt;BR&gt;
  1192. -&lt;BR&gt;
  1193. EVMCBG&lt;BR&gt;
  1194. EVMCCG&lt;BR&gt;
  1195. -&lt;BR&gt;
  1196. -&lt;BR&gt;
  1197. -&lt;BR&gt;
  1198. -&lt;BR&gt;
  1199. -&lt;BR&gt;
  1200. -&lt;BR&gt;
  1201. -&lt;BR&gt;
  1202. -&lt;BR&gt;&lt;/FONT&gt;
  1203. &lt;/TD&gt;
  1204. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1205. 55-1-X&lt;BR&gt;
  1206. 55-4-X&lt;BR&gt;
  1207. 55-3-X&lt;BR&gt;
  1208. 55-2-X&lt;BR&gt;
  1209. -&lt;BR&gt;
  1210. -&lt;BR&gt;
  1211. -&lt;BR&gt;
  1212. -&lt;BR&gt;
  1213. -&lt;BR&gt;
  1214. -&lt;BR&gt;
  1215. -&lt;BR&gt;
  1216. -&lt;BR&gt;
  1217. -&lt;BR&gt;
  1218. -&lt;BR&gt;
  1219. -&lt;BR&gt;
  1220. -&lt;BR&gt;
  1221. 50-2-X&lt;BR&gt;
  1222. 50-4-X&lt;BR&gt;
  1223. 50-3-X&lt;BR&gt;
  1224. -&lt;BR&gt;
  1225. -&lt;BR&gt;
  1226. -&lt;BR&gt;
  1227. 64P&lt;BR&gt;
  1228. 64W&lt;BR&gt;
  1229. 64X&lt;BR&gt;
  1230. 64Y&lt;BR&gt;
  1231. 64Z&lt;BR&gt;
  1232. -&lt;BR&gt;
  1233. -&lt;BR&gt;
  1234. -&lt;BR&gt;
  1235. -&lt;BR&gt;
  1236. -&lt;BR&gt;&lt;/FONT&gt;
  1237. &lt;/TD&gt;
  1238. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1239. RT/RTR22&lt;BR&gt;
  1240. RT/RTR22&lt;BR&gt;
  1241. RT/RTR22&lt;BR&gt;
  1242. RT/RTR22&lt;BR&gt;
  1243. RJ/RJR22&lt;BR&gt;
  1244. RJ/RJR22&lt;BR&gt;
  1245. RJ/RJR22&lt;BR&gt;
  1246. RT/RTR26&lt;BR&gt;
  1247. RT/RTR26&lt;BR&gt;
  1248. RT/RTR26&lt;BR&gt;
  1249. RJ/RJR26&lt;BR&gt;
  1250. RJ/RJR26&lt;BR&gt;
  1251. RJ/RJR26&lt;BR&gt;
  1252. RJ/RJR26&lt;BR&gt;
  1253. RJ/RJR26&lt;BR&gt;
  1254. RJ/RJR26&lt;BR&gt;
  1255. RT/RTR24&lt;BR&gt;
  1256. RT/RTR24&lt;BR&gt;
  1257. RT/RTR24&lt;BR&gt;
  1258. RJ/RJR24&lt;BR&gt;
  1259. RJ/RJR24&lt;BR&gt;
  1260. RJ/RJR24&lt;BR&gt;
  1261. RJ/RJR24&lt;BR&gt;
  1262. RJ/RJR24&lt;BR&gt;
  1263. RJ/RJR24&lt;BR&gt;
  1264. -&lt;BR&gt;
  1265. -&lt;BR&gt;
  1266. -&lt;BR&gt;
  1267. -&lt;BR&gt;
  1268. -&lt;BR&gt;
  1269. -&lt;BR&gt;
  1270. -&lt;BR&gt;&lt;/FONT&gt;
  1271. &lt;/TD&gt;
  1272. &lt;/TR&gt;
  1273. &lt;TR&gt;
  1274. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1275. &lt;/TD&gt;
  1276. &lt;/TR&gt;
  1277. &lt;TR&gt;
  1278. &lt;TD COLSPAN=8&gt;
  1279. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1280. &lt;/TD&gt;
  1281. &lt;/TR&gt;
  1282. &lt;TR&gt;
  1283. &lt;TD ALIGN=CENTER&gt;
  1284. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1285. &lt;/TD&gt;
  1286. &lt;TD ALIGN=CENTER&gt;
  1287. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1288. &lt;/TD&gt;
  1289. &lt;TD ALIGN=CENTER&gt;
  1290. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1291. &lt;/TD&gt;
  1292. &lt;TD ALIGN=CENTER&gt;
  1293. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1294. &lt;/TD&gt;
  1295. &lt;TD ALIGN=CENTER&gt;
  1296. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1297. &lt;/TD&gt;
  1298. &lt;TD ALIGN=CENTER&gt;
  1299. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1300. &lt;/TD&gt;
  1301. &lt;TD ALIGN=CENTER&gt;
  1302. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1303. &lt;/TD&gt;
  1304. &lt;TD ALIGN=CENTER&gt;
  1305. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1306. &lt;/TD&gt;
  1307. &lt;/TR&gt;
  1308. &lt;TR&gt;
  1309. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1310. 3323P&lt;BR&gt;
  1311. 3323S&lt;BR&gt;
  1312. 3323W&lt;BR&gt;
  1313. 3329H&lt;BR&gt;
  1314. 3329P&lt;BR&gt;
  1315. 3329W&lt;BR&gt;
  1316. 3339H&lt;BR&gt;
  1317. 3339P&lt;BR&gt;
  1318. 3339W&lt;BR&gt;
  1319. 3352E&lt;BR&gt;
  1320. 3352H&lt;BR&gt;
  1321. 3352K&lt;BR&gt;
  1322. 3352P&lt;BR&gt;
  1323. 3352T&lt;BR&gt;
  1324. 3352V&lt;BR&gt;
  1325. 3352W&lt;BR&gt;
  1326. 3362H&lt;BR&gt;
  1327. 3362M&lt;BR&gt;
  1328. 3362P&lt;BR&gt;
  1329. 3362R&lt;BR&gt;
  1330. 3362S&lt;BR&gt;
  1331. 3362U&lt;BR&gt;
  1332. 3362W&lt;BR&gt;
  1333. 3362X&lt;BR&gt;
  1334. 3386B&lt;BR&gt;
  1335. 3386C&lt;BR&gt;
  1336. 3386F&lt;BR&gt;
  1337. 3386H&lt;BR&gt;
  1338. 3386K&lt;BR&gt;
  1339. 3386M&lt;BR&gt;
  1340. 3386P&lt;BR&gt;
  1341. 3386S&lt;BR&gt;
  1342. 3386W&lt;BR&gt;
  1343. 3386X&lt;BR&gt;&lt;/FONT&gt;
  1344. &lt;/TD&gt;
  1345. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1346. 25P&lt;BR&gt;
  1347. 25S&lt;BR&gt;
  1348. 25RX&lt;BR&gt;
  1349. 82P&lt;BR&gt;
  1350. 82M&lt;BR&gt;
  1351. 82PA&lt;BR&gt;
  1352. -&lt;BR&gt;
  1353. -&lt;BR&gt;
  1354. -&lt;BR&gt;
  1355. 91E&lt;BR&gt;
  1356. 91X&lt;BR&gt;
  1357. 91T&lt;BR&gt;
  1358. 91B&lt;BR&gt;
  1359. 91A&lt;BR&gt;
  1360. 91V&lt;BR&gt;
  1361. 91W&lt;BR&gt;
  1362. 25W&lt;BR&gt;
  1363. 25V&lt;BR&gt;
  1364. 25P&lt;BR&gt;
  1365. -&lt;BR&gt;
  1366. 25S&lt;BR&gt;
  1367. 25U&lt;BR&gt;
  1368. 25RX&lt;BR&gt;
  1369. 25X&lt;BR&gt;
  1370. 72XW&lt;BR&gt;
  1371. 72XL&lt;BR&gt;
  1372. 72PM&lt;BR&gt;
  1373. 72RX&lt;BR&gt;
  1374. -&lt;BR&gt;
  1375. 72PX&lt;BR&gt;
  1376. 72P&lt;BR&gt;
  1377. 72RXW&lt;BR&gt;
  1378. 72RXL&lt;BR&gt;
  1379. 72X&lt;BR&gt;&lt;/FONT&gt;
  1380. &lt;/TD&gt;
  1381. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1382. -&lt;BR&gt;
  1383. -&lt;BR&gt;
  1384. -&lt;BR&gt;
  1385. T7YB&lt;BR&gt;
  1386. T7YA&lt;BR&gt;
  1387. -&lt;BR&gt;
  1388. -&lt;BR&gt;
  1389. -&lt;BR&gt;
  1390. -&lt;BR&gt;
  1391. -&lt;BR&gt;
  1392. -&lt;BR&gt;
  1393. -&lt;BR&gt;
  1394. -&lt;BR&gt;
  1395. -&lt;BR&gt;
  1396. -&lt;BR&gt;
  1397. -&lt;BR&gt;
  1398. -&lt;BR&gt;
  1399. TXD&lt;BR&gt;
  1400. TYA&lt;BR&gt;
  1401. TYP&lt;BR&gt;
  1402. -&lt;BR&gt;
  1403. TYD&lt;BR&gt;
  1404. TX&lt;BR&gt;
  1405. -&lt;BR&gt;
  1406. 150SX&lt;BR&gt;
  1407. 100SX&lt;BR&gt;
  1408. 102T&lt;BR&gt;
  1409. 101S&lt;BR&gt;
  1410. 190T&lt;BR&gt;
  1411. 150TX&lt;BR&gt;
  1412. 101&lt;BR&gt;
  1413. -&lt;BR&gt;
  1414. -&lt;BR&gt;
  1415. 101SX&lt;BR&gt;&lt;/FONT&gt;
  1416. &lt;/TD&gt;
  1417. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1418. ET6P&lt;BR&gt;
  1419. ET6S&lt;BR&gt;
  1420. ET6X&lt;BR&gt;
  1421. RJ-6W/8014EMW&lt;BR&gt;
  1422. RJ-6P/8014EMP&lt;BR&gt;
  1423. RJ-6X/8014EMX&lt;BR&gt;
  1424. TM7W&lt;BR&gt;
  1425. TM7P&lt;BR&gt;
  1426. TM7X&lt;BR&gt;
  1427. -&lt;BR&gt;
  1428. 8017SMS&lt;BR&gt;
  1429. -&lt;BR&gt;
  1430. 8017SMB&lt;BR&gt;
  1431. 8017SMA&lt;BR&gt;
  1432. -&lt;BR&gt;
  1433. -&lt;BR&gt;
  1434. CT-6W&lt;BR&gt;
  1435. CT-6H&lt;BR&gt;
  1436. CT-6P&lt;BR&gt;
  1437. CT-6R&lt;BR&gt;
  1438. -&lt;BR&gt;
  1439. CT-6V&lt;BR&gt;
  1440. CT-6X&lt;BR&gt;
  1441. -&lt;BR&gt;
  1442. -&lt;BR&gt;
  1443. 8038EKV&lt;BR&gt;
  1444. -&lt;BR&gt;
  1445. 8038EKX&lt;BR&gt;
  1446. -&lt;BR&gt;
  1447. -&lt;BR&gt;
  1448. 8038EKP&lt;BR&gt;
  1449. 8038EKZ&lt;BR&gt;
  1450. 8038EKW&lt;BR&gt;
  1451. -&lt;BR&gt;&lt;/FONT&gt;
  1452. &lt;/TD&gt;
  1453. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1454. -&lt;BR&gt;
  1455. -&lt;BR&gt;
  1456. -&lt;BR&gt;
  1457. 3321H&lt;BR&gt;
  1458. 3321P&lt;BR&gt;
  1459. 3321N&lt;BR&gt;
  1460. 1102H&lt;BR&gt;
  1461. 1102P&lt;BR&gt;
  1462. 1102T&lt;BR&gt;
  1463. RVA0911V304A&lt;BR&gt;
  1464. -&lt;BR&gt;
  1465. RVA0911H413A&lt;BR&gt;
  1466. RVG0707V100A&lt;BR&gt;
  1467. RVA0607V(H)306A&lt;BR&gt;
  1468. RVA1214H213A&lt;BR&gt;
  1469. -&lt;BR&gt;
  1470. -&lt;BR&gt;
  1471. -&lt;BR&gt;
  1472. -&lt;BR&gt;
  1473. -&lt;BR&gt;
  1474. -&lt;BR&gt;
  1475. -&lt;BR&gt;
  1476. -&lt;BR&gt;
  1477. -&lt;BR&gt;
  1478. 3104B&lt;BR&gt;
  1479. 3104C&lt;BR&gt;
  1480. 3104F&lt;BR&gt;
  1481. 3104H&lt;BR&gt;
  1482. -&lt;BR&gt;
  1483. 3104M&lt;BR&gt;
  1484. 3104P&lt;BR&gt;
  1485. 3104S&lt;BR&gt;
  1486. 3104W&lt;BR&gt;
  1487. 3104X&lt;BR&gt;&lt;/FONT&gt;
  1488. &lt;/TD&gt;
  1489. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1490. EVMQ0G&lt;BR&gt;
  1491. EVMQIG&lt;BR&gt;
  1492. EVMQ3G&lt;BR&gt;
  1493. EVMS0G&lt;BR&gt;
  1494. EVMQ0G&lt;BR&gt;
  1495. EVMG0G&lt;BR&gt;
  1496. -&lt;BR&gt;
  1497. -&lt;BR&gt;
  1498. -&lt;BR&gt;
  1499. EVMK4GA00B&lt;BR&gt;
  1500. EVM30GA00B&lt;BR&gt;
  1501. EVMK0GA00B&lt;BR&gt;
  1502. EVM38GA00B&lt;BR&gt;
  1503. EVMB6&lt;BR&gt;
  1504. EVLQ0&lt;BR&gt;
  1505. -&lt;BR&gt;
  1506. EVMMSG&lt;BR&gt;
  1507. EVMMBG&lt;BR&gt;
  1508. EVMMAG&lt;BR&gt;
  1509. -&lt;BR&gt;
  1510. -&lt;BR&gt;
  1511. EVMMCS&lt;BR&gt;
  1512. -&lt;BR&gt;
  1513. -&lt;BR&gt;
  1514. -&lt;BR&gt;
  1515. -&lt;BR&gt;
  1516. -&lt;BR&gt;
  1517. EVMM1&lt;BR&gt;
  1518. -&lt;BR&gt;
  1519. -&lt;BR&gt;
  1520. EVMM0&lt;BR&gt;
  1521. -&lt;BR&gt;
  1522. -&lt;BR&gt;
  1523. EVMM3&lt;BR&gt;&lt;/FONT&gt;
  1524. &lt;/TD&gt;
  1525. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1526. -&lt;BR&gt;
  1527. -&lt;BR&gt;
  1528. -&lt;BR&gt;
  1529. 62-3-1&lt;BR&gt;
  1530. 62-1-2&lt;BR&gt;
  1531. -&lt;BR&gt;
  1532. -&lt;BR&gt;
  1533. -&lt;BR&gt;
  1534. -&lt;BR&gt;
  1535. -&lt;BR&gt;
  1536. -&lt;BR&gt;
  1537. -&lt;BR&gt;
  1538. -&lt;BR&gt;
  1539. -&lt;BR&gt;
  1540. -&lt;BR&gt;
  1541. -&lt;BR&gt;
  1542. 67R&lt;BR&gt;
  1543. -&lt;BR&gt;
  1544. 67P&lt;BR&gt;
  1545. -&lt;BR&gt;
  1546. -&lt;BR&gt;
  1547. -&lt;BR&gt;
  1548. -&lt;BR&gt;
  1549. 67X&lt;BR&gt;
  1550. 63V&lt;BR&gt;
  1551. 63S&lt;BR&gt;
  1552. 63M&lt;BR&gt;
  1553. -&lt;BR&gt;
  1554. -&lt;BR&gt;
  1555. 63H&lt;BR&gt;
  1556. 63P&lt;BR&gt;
  1557. -&lt;BR&gt;
  1558. -&lt;BR&gt;
  1559. 63X&lt;BR&gt;&lt;/FONT&gt;
  1560. &lt;/TD&gt;
  1561. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1562. -&lt;BR&gt;
  1563. -&lt;BR&gt;
  1564. -&lt;BR&gt;
  1565. RJ/RJR50&lt;BR&gt;
  1566. RJ/RJR50&lt;BR&gt;
  1567. RJ/RJR50&lt;BR&gt;
  1568. -&lt;BR&gt;
  1569. -&lt;BR&gt;
  1570. -&lt;BR&gt;
  1571. -&lt;BR&gt;
  1572. -&lt;BR&gt;
  1573. -&lt;BR&gt;
  1574. -&lt;BR&gt;
  1575. -&lt;BR&gt;
  1576. -&lt;BR&gt;
  1577. -&lt;BR&gt;
  1578. -&lt;BR&gt;
  1579. -&lt;BR&gt;
  1580. -&lt;BR&gt;
  1581. -&lt;BR&gt;
  1582. -&lt;BR&gt;
  1583. -&lt;BR&gt;
  1584. -&lt;BR&gt;
  1585. -&lt;BR&gt;
  1586. -&lt;BR&gt;
  1587. -&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. -&lt;BR&gt;&lt;/FONT&gt;
  1596. &lt;/TD&gt;
  1597. &lt;/TR&gt;
  1598. &lt;/TABLE&gt;
  1599. &lt;P&gt;&amp;nbsp;&lt;P&gt;
  1600. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3&gt;
  1601. &lt;TR&gt;
  1602. &lt;TD COLSPAN=7&gt;
  1603. &lt;FONT color="#0000FF" SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SMD TRIM-POT CROSS REFERENCE&lt;/B&gt;&lt;/FONT&gt;
  1604. &lt;P&gt;
  1605. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1606. &lt;/TD&gt;
  1607. &lt;/TR&gt;
  1608. &lt;TR&gt;
  1609. &lt;TD&gt;
  1610. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1611. &lt;/TD&gt;
  1612. &lt;TD&gt;
  1613. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1614. &lt;/TD&gt;
  1615. &lt;TD&gt;
  1616. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1617. &lt;/TD&gt;
  1618. &lt;TD&gt;
  1619. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1620. &lt;/TD&gt;
  1621. &lt;TD&gt;
  1622. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1623. &lt;/TD&gt;
  1624. &lt;TD&gt;
  1625. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1626. &lt;/TD&gt;
  1627. &lt;TD&gt;
  1628. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1629. &lt;/TD&gt;
  1630. &lt;/TR&gt;
  1631. &lt;TR&gt;
  1632. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1633. 3224G&lt;BR&gt;
  1634. 3224J&lt;BR&gt;
  1635. 3224W&lt;BR&gt;
  1636. 3269P&lt;BR&gt;
  1637. 3269W&lt;BR&gt;
  1638. 3269X&lt;BR&gt;&lt;/FONT&gt;
  1639. &lt;/TD&gt;
  1640. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1641. 44G&lt;BR&gt;
  1642. 44J&lt;BR&gt;
  1643. 44W&lt;BR&gt;
  1644. 84P&lt;BR&gt;
  1645. 84W&lt;BR&gt;
  1646. 84X&lt;BR&gt;&lt;/FONT&gt;
  1647. &lt;/TD&gt;
  1648. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1649. -&lt;BR&gt;
  1650. -&lt;BR&gt;
  1651. -&lt;BR&gt;
  1652. ST63Z&lt;BR&gt;
  1653. ST63Y&lt;BR&gt;
  1654. -&lt;BR&gt;&lt;/FONT&gt;
  1655. &lt;/TD&gt;
  1656. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1657. -&lt;BR&gt;
  1658. -&lt;BR&gt;
  1659. -&lt;BR&gt;
  1660. ST5P&lt;BR&gt;
  1661. ST5W&lt;BR&gt;
  1662. ST5X&lt;BR&gt;&lt;/FONT&gt;
  1663. &lt;/TD&gt;
  1664. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1665. -&lt;BR&gt;
  1666. -&lt;BR&gt;
  1667. -&lt;BR&gt;
  1668. -&lt;BR&gt;
  1669. -&lt;BR&gt;
  1670. -&lt;BR&gt;&lt;/FONT&gt;
  1671. &lt;/TD&gt;
  1672. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1673. -&lt;BR&gt;
  1674. -&lt;BR&gt;
  1675. -&lt;BR&gt;
  1676. -&lt;BR&gt;
  1677. -&lt;BR&gt;
  1678. -&lt;BR&gt;&lt;/FONT&gt;
  1679. &lt;/TD&gt;
  1680. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1681. -&lt;BR&gt;
  1682. -&lt;BR&gt;
  1683. -&lt;BR&gt;
  1684. -&lt;BR&gt;
  1685. -&lt;BR&gt;
  1686. -&lt;BR&gt;&lt;/FONT&gt;
  1687. &lt;/TD&gt;
  1688. &lt;/TR&gt;
  1689. &lt;TR&gt;
  1690. &lt;TD COLSPAN=7&gt;&amp;nbsp;
  1691. &lt;/TD&gt;
  1692. &lt;/TR&gt;
  1693. &lt;TR&gt;
  1694. &lt;TD COLSPAN=7&gt;
  1695. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1696. &lt;/TD&gt;
  1697. &lt;/TR&gt;
  1698. &lt;TR&gt;
  1699. &lt;TD&gt;
  1700. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1701. &lt;/TD&gt;
  1702. &lt;TD&gt;
  1703. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1704. &lt;/TD&gt;
  1705. &lt;TD&gt;
  1706. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1707. &lt;/TD&gt;
  1708. &lt;TD&gt;
  1709. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1710. &lt;/TD&gt;
  1711. &lt;TD&gt;
  1712. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1713. &lt;/TD&gt;
  1714. &lt;TD&gt;
  1715. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1716. &lt;/TD&gt;
  1717. &lt;TD&gt;
  1718. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1719. &lt;/TD&gt;
  1720. &lt;/TR&gt;
  1721. &lt;TR&gt;
  1722. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1723. 3314G&lt;BR&gt;
  1724. 3314J&lt;BR&gt;
  1725. 3364A/B&lt;BR&gt;
  1726. 3364C/D&lt;BR&gt;
  1727. 3364W/X&lt;BR&gt;
  1728. 3313G&lt;BR&gt;
  1729. 3313J&lt;BR&gt;&lt;/FONT&gt;
  1730. &lt;/TD&gt;
  1731. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1732. 23B&lt;BR&gt;
  1733. 23A&lt;BR&gt;
  1734. 21X&lt;BR&gt;
  1735. 21W&lt;BR&gt;
  1736. -&lt;BR&gt;
  1737. 22B&lt;BR&gt;
  1738. 22A&lt;BR&gt;&lt;/FONT&gt;
  1739. &lt;/TD&gt;
  1740. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1741. ST5YL/ST53YL&lt;BR&gt;
  1742. ST5YJ/5T53YJ&lt;BR&gt;
  1743. ST-23A&lt;BR&gt;
  1744. ST-22B&lt;BR&gt;
  1745. ST-22&lt;BR&gt;
  1746. -&lt;BR&gt;
  1747. -&lt;BR&gt;&lt;/FONT&gt;
  1748. &lt;/TD&gt;
  1749. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1750. ST-4B&lt;BR&gt;
  1751. ST-4A&lt;BR&gt;
  1752. -&lt;BR&gt;
  1753. -&lt;BR&gt;
  1754. -&lt;BR&gt;
  1755. ST-3B&lt;BR&gt;
  1756. ST-3A&lt;BR&gt;&lt;/FONT&gt;
  1757. &lt;/TD&gt;
  1758. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1759. -&lt;BR&gt;
  1760. EVM-6YS&lt;BR&gt;
  1761. EVM-1E&lt;BR&gt;
  1762. EVM-1G&lt;BR&gt;
  1763. EVM-1D&lt;BR&gt;
  1764. -&lt;BR&gt;
  1765. -&lt;BR&gt;&lt;/FONT&gt;
  1766. &lt;/TD&gt;
  1767. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1768. G4B&lt;BR&gt;
  1769. G4A&lt;BR&gt;
  1770. TR04-3S1&lt;BR&gt;
  1771. TRG04-2S1&lt;BR&gt;
  1772. -&lt;BR&gt;
  1773. -&lt;BR&gt;
  1774. -&lt;BR&gt;&lt;/FONT&gt;
  1775. &lt;/TD&gt;
  1776. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1777. -&lt;BR&gt;
  1778. -&lt;BR&gt;
  1779. DVR-43A&lt;BR&gt;
  1780. CVR-42C&lt;BR&gt;
  1781. CVR-42A/C&lt;BR&gt;
  1782. -&lt;BR&gt;
  1783. -&lt;BR&gt;&lt;/FONT&gt;
  1784. &lt;/TD&gt;
  1785. &lt;/TR&gt;
  1786. &lt;/TABLE&gt;
  1787. &lt;P&gt;
  1788. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;ALT =&amp;nbsp;ALTERNATE&lt;/B&gt;&lt;/FONT&gt;
  1789. &lt;P&gt;
  1790. &amp;nbsp;
  1791. &lt;P&gt;
  1792. &lt;/td&gt;
  1793. &lt;/tr&gt;
  1794. &lt;/table&gt;</description>
  1795. <packages>
  1796. <package name="R0402">
  1797. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1798. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1799. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1800. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1801. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1802. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1803. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1804. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1805. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1806. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1807. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1808. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1809. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1810. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1811. </package>
  1812. <package name="R0603">
  1813. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1814. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  1815. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  1816. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  1817. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  1818. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  1819. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  1820. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1821. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1822. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1823. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1824. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  1825. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  1826. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1827. </package>
  1828. <package name="R0805">
  1829. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  1830. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1831. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1832. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1833. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1834. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1835. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1836. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1837. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1838. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1839. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1840. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1841. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1842. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1843. </package>
  1844. <package name="R0805W">
  1845. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;</description>
  1846. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1847. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1848. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1849. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1850. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1851. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1852. <smd name="1" x="-1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1853. <smd name="2" x="1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1854. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1855. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1856. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1857. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1858. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1859. </package>
  1860. <package name="R1206">
  1861. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1862. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  1863. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  1864. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1865. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1866. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1867. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1868. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1869. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1870. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1871. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1872. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  1873. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  1874. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1875. </package>
  1876. <package name="R1206W">
  1877. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1878. wave soldering</description>
  1879. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1880. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1881. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1882. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1883. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1884. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1885. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1886. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1887. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1888. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1889. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1890. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1891. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1892. </package>
  1893. <package name="R1210">
  1894. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1895. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1896. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1897. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1898. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1899. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1900. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1901. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1902. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1903. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1904. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1905. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1906. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1907. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  1908. </package>
  1909. <package name="R1210W">
  1910. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1911. wave soldering</description>
  1912. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1913. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1914. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1915. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1916. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1917. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1918. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1919. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1920. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1921. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1922. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1923. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1924. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  1925. </package>
  1926. <package name="R2010">
  1927. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1928. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1929. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1930. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1931. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1932. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1933. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1934. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1935. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1936. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1937. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1938. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1939. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1940. </package>
  1941. <package name="R2010W">
  1942. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1943. wave soldering</description>
  1944. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1945. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1946. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1947. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1948. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1949. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1950. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1951. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1952. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1953. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1954. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1955. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1956. </package>
  1957. <package name="R2012">
  1958. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1959. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1960. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1961. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1962. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1963. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1964. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1965. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1966. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1967. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1968. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1969. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1970. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1971. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1972. </package>
  1973. <package name="R2012W">
  1974. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1975. wave soldering</description>
  1976. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1977. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1978. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1979. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1980. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1981. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1982. <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1983. <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1984. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1985. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1986. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1987. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1988. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1989. </package>
  1990. <package name="R2512">
  1991. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1992. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1993. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1994. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1995. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1996. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1997. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1998. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1999. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2000. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2001. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2002. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2003. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2004. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2005. </package>
  2006. <package name="R2512W">
  2007. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2008. wave soldering</description>
  2009. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2010. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2011. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2012. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2013. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2014. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2015. <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
  2016. <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
  2017. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2018. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2019. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2020. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2021. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2022. </package>
  2023. <package name="R3216">
  2024. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2025. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2026. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2027. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2028. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2029. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2030. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2031. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2032. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2033. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2034. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2035. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2036. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2037. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2038. </package>
  2039. <package name="R3216W">
  2040. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2041. wave soldering</description>
  2042. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2043. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2044. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2045. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2046. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2047. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2048. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2049. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2050. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2051. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2052. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2053. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2054. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2055. </package>
  2056. <package name="R3225">
  2057. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2058. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2059. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2060. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2061. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2062. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2063. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2064. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2065. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2066. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2067. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2068. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2069. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2070. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2071. </package>
  2072. <package name="R3225W">
  2073. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2074. wave soldering</description>
  2075. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2076. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2077. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2078. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2079. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2080. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2081. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2082. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2083. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2084. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2085. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2086. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2087. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2088. </package>
  2089. <package name="R5025">
  2090. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2091. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2092. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2093. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2094. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2095. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2096. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2097. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2098. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2099. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2100. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2101. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2102. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2103. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2104. </package>
  2105. <package name="R5025W">
  2106. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2107. wave soldering</description>
  2108. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2109. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2110. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2111. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2112. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2113. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2114. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2115. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2116. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2117. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2118. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2119. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2120. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2121. </package>
  2122. <package name="R6332">
  2123. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2124. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2125. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2126. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2127. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2128. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2129. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2130. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2131. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2132. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2133. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2134. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2135. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2136. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2137. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2138. </package>
  2139. <package name="R6332W">
  2140. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;
  2141. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2142. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2143. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2144. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2145. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2146. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2147. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2148. <smd name="1" x="-3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2149. <smd name="2" x="3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2150. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2151. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2152. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2153. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2154. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2155. </package>
  2156. <package name="M0805">
  2157. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2158. MELF 0.10 W</description>
  2159. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2160. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2161. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2162. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2163. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2164. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2165. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2166. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2167. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2168. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2169. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2170. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2171. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2172. </package>
  2173. <package name="M1206">
  2174. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2175. MELF 0.25 W</description>
  2176. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2177. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2178. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2179. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2180. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2181. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2182. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2183. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2184. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2185. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2186. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2187. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2188. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2189. </package>
  2190. <package name="M1406">
  2191. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2192. MELF 0.12 W</description>
  2193. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2194. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2195. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2196. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2197. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2198. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2199. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2200. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2201. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2202. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2203. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2204. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2205. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2206. </package>
  2207. <package name="M2012">
  2208. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2209. MELF 0.10 W</description>
  2210. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2211. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2212. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2213. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2214. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2215. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2216. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2217. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2218. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2219. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2220. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2221. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2222. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2223. </package>
  2224. <package name="M2309">
  2225. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2226. MELF 0.25 W</description>
  2227. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2228. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2229. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2230. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2231. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2232. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2233. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2234. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2235. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2236. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2237. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2238. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2239. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2240. </package>
  2241. <package name="M3216">
  2242. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2243. MELF 0.25 W</description>
  2244. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2245. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2246. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2247. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2248. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2249. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2250. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2251. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2252. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2253. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2254. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2255. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2256. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2257. </package>
  2258. <package name="M3516">
  2259. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2260. MELF 0.12 W</description>
  2261. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2262. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2263. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2264. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2265. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2266. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2267. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2268. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2269. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2270. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2271. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2272. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2273. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  2274. </package>
  2275. <package name="M5923">
  2276. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2277. MELF 0.25 W</description>
  2278. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2279. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2280. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2281. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2282. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2283. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2284. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2285. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2286. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2287. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2288. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2289. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2290. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2291. </package>
  2292. <package name="0204/5">
  2293. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2294. type 0204, grid 5 mm</description>
  2295. <wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="51"/>
  2296. <wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="51"/>
  2297. <wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2298. <wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2299. <wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  2300. <wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  2301. <wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="51"/>
  2302. <wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2303. <wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2304. <wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2305. <wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2306. <wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2307. <wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
  2308. <wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2309. <wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
  2310. <wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2311. <wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2312. <wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="51"/>
  2313. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2314. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2315. <text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2316. <text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2317. <rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="51"/>
  2318. <rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="51"/>
  2319. </package>
  2320. <package name="0204/7">
  2321. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2322. type 0204, grid 7.5 mm</description>
  2323. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  2324. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  2325. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2326. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2327. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  2328. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  2329. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  2330. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2331. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2332. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2333. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2334. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2335. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  2336. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2337. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  2338. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2339. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2340. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  2341. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2342. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2343. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2344. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2345. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  2346. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  2347. </package>
  2348. <package name="0204V">
  2349. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2350. type 0204, grid 2.5 mm</description>
  2351. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="51"/>
  2352. <wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
  2353. <circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="51"/>
  2354. <circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="51"/>
  2355. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2356. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2357. <text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2358. <text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2359. </package>
  2360. <package name="0207/10">
  2361. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2362. type 0207, grid 10 mm</description>
  2363. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  2364. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  2365. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2366. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2367. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2368. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2369. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2370. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2371. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2372. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2373. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2374. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2375. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2376. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2377. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2378. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2379. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2380. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2381. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2382. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2383. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2384. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2385. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2386. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2387. </package>
  2388. <package name="0207/12">
  2389. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2390. type 0207, grid 12 mm</description>
  2391. <wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="51"/>
  2392. <wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="51"/>
  2393. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2394. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2395. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2396. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2397. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2398. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2399. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2400. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2401. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2402. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2403. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2404. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2405. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2406. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2407. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2408. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2409. <wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2410. <wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2411. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  2412. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  2413. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2414. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2415. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2416. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2417. <rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
  2418. <rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  2419. </package>
  2420. <package name="0207/15">
  2421. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2422. type 0207, grid 15mm</description>
  2423. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="51"/>
  2424. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="51"/>
  2425. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2426. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2427. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2428. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2429. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2430. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2431. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2432. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2433. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2434. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2435. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2436. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2437. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2438. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2439. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2440. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2441. <wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2442. <wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2443. <pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
  2444. <pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
  2445. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2446. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2447. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2448. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2449. <rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
  2450. <rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
  2451. </package>
  2452. <package name="0207/2V">
  2453. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2454. type 0207, grid 2.5 mm</description>
  2455. <wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="51"/>
  2456. <wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
  2457. <wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="51"/>
  2458. <circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
  2459. <circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="51"/>
  2460. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2461. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2462. <text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2463. <text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2464. </package>
  2465. <package name="0207/5V">
  2466. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2467. type 0207, grid 5 mm</description>
  2468. <wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="51"/>
  2469. <wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
  2470. <wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="51"/>
  2471. <circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
  2472. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2473. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2474. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2475. <text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2476. <text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2477. </package>
  2478. <package name="0207/7">
  2479. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2480. type 0207, grid 7.5 mm</description>
  2481. <wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="51"/>
  2482. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2483. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2484. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2485. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2486. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="51"/>
  2487. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2488. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2489. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2490. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2491. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2492. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2493. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2494. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2495. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2496. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2497. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="51"/>
  2498. <wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="51"/>
  2499. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2500. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2501. <text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2502. <text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2503. <rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="51"/>
  2504. <rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="51"/>
  2505. </package>
  2506. <package name="0309/10">
  2507. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2508. type 0309, grid 10mm</description>
  2509. <wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2510. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2511. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2512. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2513. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2514. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="51"/>
  2515. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2516. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2517. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2518. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2519. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2520. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2521. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2522. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2523. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2524. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2525. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="51"/>
  2526. <wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="51"/>
  2527. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2528. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2529. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2530. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2531. <rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="51"/>
  2532. <rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="51"/>
  2533. </package>
  2534. <package name="0309/12">
  2535. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2536. type 0309, grid 12.5 mm</description>
  2537. <wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  2538. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2539. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2540. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2541. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2542. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2543. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
  2544. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2545. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2546. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2547. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2548. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2549. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2550. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2551. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2552. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2553. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2554. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
  2555. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  2556. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  2557. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2558. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2559. <rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
  2560. <rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
  2561. </package>
  2562. <package name="0309V">
  2563. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2564. type 0309, grid 2.5 mm</description>
  2565. <wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="51"/>
  2566. <wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="51"/>
  2567. <circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
  2568. <circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="51"/>
  2569. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2570. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2571. <text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2572. <text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2573. <rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="51"/>
  2574. <rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="51"/>
  2575. <rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
  2576. </package>
  2577. <package name="0411/12">
  2578. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2579. type 0411, grid 12.5 mm</description>
  2580. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="51"/>
  2581. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="51"/>
  2582. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2583. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2584. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2585. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2586. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2587. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2588. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2589. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2590. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2591. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2592. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2593. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2594. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2595. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2596. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2597. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2598. <pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
  2599. <pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
  2600. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2601. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2602. <rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2603. <rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
  2604. </package>
  2605. <package name="0411/15">
  2606. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2607. type 0411, grid 15 mm</description>
  2608. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2609. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2610. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2611. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2612. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2613. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2614. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2615. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2616. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2617. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2618. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2619. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2620. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2621. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2622. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2623. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2624. <wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="51"/>
  2625. <wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="51"/>
  2626. <pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
  2627. <pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
  2628. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2629. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2630. <rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
  2631. <rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2632. </package>
  2633. <package name="0411V">
  2634. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2635. type 0411, grid 3.81 mm</description>
  2636. <wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="51"/>
  2637. <wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="51"/>
  2638. <circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
  2639. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2640. <pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
  2641. <pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
  2642. <text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2643. <text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2644. <rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
  2645. </package>
  2646. <package name="0414/15">
  2647. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2648. type 0414, grid 15 mm</description>
  2649. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="51"/>
  2650. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="51"/>
  2651. <wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
  2652. <wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
  2653. <wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  2654. <wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  2655. <wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
  2656. <wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2657. <wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2658. <wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2659. <wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2660. <wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2661. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  2662. <wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2663. <wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
  2664. <wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2665. <wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2666. <wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
  2667. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2668. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2669. <text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2670. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2671. <rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
  2672. <rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
  2673. </package>
  2674. <package name="0414V">
  2675. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2676. type 0414, grid 5 mm</description>
  2677. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2678. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2679. <circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
  2680. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2681. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2682. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2683. <text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2684. <text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2685. <rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
  2686. </package>
  2687. <package name="0617/17">
  2688. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2689. type 0617, grid 17.5 mm</description>
  2690. <wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="51"/>
  2691. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2692. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2693. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2694. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2695. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2696. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2697. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2698. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2699. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2700. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2701. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
  2702. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="51"/>
  2703. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2704. <wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
  2705. <wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="51"/>
  2706. <wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2707. <wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="51"/>
  2708. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2709. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2710. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2711. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2712. <pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
  2713. <pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
  2714. <text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2715. <text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2716. <rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="51"/>
  2717. <rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="51"/>
  2718. </package>
  2719. <package name="0617/22">
  2720. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2721. type 0617, grid 22.5 mm</description>
  2722. <wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2723. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2724. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2725. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2726. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2727. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2728. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2729. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2730. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2731. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2732. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2733. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2734. <wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2735. <wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="51"/>
  2736. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2737. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2738. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2739. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2740. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2741. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2742. <text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2743. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2744. <rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
  2745. <rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
  2746. </package>
  2747. <package name="0617V">
  2748. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2749. type 0617, grid 5 mm</description>
  2750. <wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="51"/>
  2751. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="51"/>
  2752. <circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
  2753. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2754. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2755. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2756. <text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2757. <text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2758. <rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2759. </package>
  2760. <package name="0922/22">
  2761. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2762. type 0922, grid 22.5 mm</description>
  2763. <wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="51"/>
  2764. <wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="51"/>
  2765. <wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
  2766. <wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2767. <wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2768. <wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2769. <wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2770. <wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2771. <wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
  2772. <wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2773. <wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
  2774. <wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2775. <wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2776. <wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
  2777. <wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  2778. <wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  2779. <wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
  2780. <wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
  2781. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2782. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2783. <text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2784. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2785. <rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="51"/>
  2786. <rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2787. <rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
  2788. <rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="51"/>
  2789. </package>
  2790. <package name="P0613V">
  2791. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2792. type 0613, grid 5 mm</description>
  2793. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2794. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2795. <circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
  2796. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2797. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2798. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2799. <text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2800. <text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2801. <rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2802. </package>
  2803. <package name="P0613/15">
  2804. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2805. type 0613, grid 15 mm</description>
  2806. <wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="51"/>
  2807. <wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="51"/>
  2808. <wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  2809. <wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  2810. <wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2811. <wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2812. <wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2813. <wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2814. <wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2815. <wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2816. <wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2817. <wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
  2818. <wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2819. <wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
  2820. <wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2821. <wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2822. <wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
  2823. <wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="51"/>
  2824. <wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
  2825. <wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
  2826. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="51"/>
  2827. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
  2828. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2829. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2830. <text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2831. <text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2832. <rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="51"/>
  2833. <rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="51"/>
  2834. </package>
  2835. <package name="P0817/22">
  2836. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2837. type 0817, grid 22.5 mm</description>
  2838. <wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2839. <wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
  2840. <wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2841. <wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2842. <wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2843. <wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2844. <wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2845. <wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
  2846. <wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2847. <wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
  2848. <wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2849. <wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2850. <wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
  2851. <wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="51"/>
  2852. <wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  2853. <wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  2854. <wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  2855. <wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  2856. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2857. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2858. <text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2859. <text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2860. <text x="6.604" y="-2.2606" size="1.27" layer="51" ratio="10" rot="R90">0817</text>
  2861. <rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2862. <rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
  2863. </package>
  2864. <package name="P0817V">
  2865. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2866. type 0817, grid 6.35 mm</description>
  2867. <wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="51"/>
  2868. <wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="51"/>
  2869. <circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
  2870. <circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="51"/>
  2871. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  2872. <pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
  2873. <text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2874. <text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2875. <text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
  2876. <rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
  2877. </package>
  2878. <package name="V234/12">
  2879. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2880. type V234, grid 12.5 mm</description>
  2881. <wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  2882. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2883. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2884. <wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  2885. <wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  2886. <wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
  2887. <wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
  2888. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  2889. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="51"/>
  2890. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="51"/>
  2891. <pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
  2892. <pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
  2893. <text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2894. <text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2895. <rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
  2896. <rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
  2897. </package>
  2898. <package name="V235/17">
  2899. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2900. type V235, grid 17.78 mm</description>
  2901. <wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
  2902. <wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
  2903. <wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
  2904. <wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
  2905. <wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="51"/>
  2906. <wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="51"/>
  2907. <wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
  2908. <wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  2909. <wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  2910. <wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
  2911. <pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
  2912. <pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
  2913. <text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2914. <text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2915. <rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
  2916. <rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
  2917. </package>
  2918. <package name="V526-0">
  2919. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2920. type V526-0, grid 2.5 mm</description>
  2921. <wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2922. <wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2923. <wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2924. <wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2925. <wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
  2926. <wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
  2927. <wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
  2928. <wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
  2929. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2930. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2931. <text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2932. <text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2933. </package>
  2934. <package name="MINI_MELF-0102R">
  2935. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2936. source Beyschlag</description>
  2937. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2938. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2939. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2940. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2941. <smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2942. <smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2943. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2944. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2945. </package>
  2946. <package name="MINI_MELF-0102W">
  2947. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;
  2948. source Beyschlag</description>
  2949. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2950. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2951. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2952. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2953. <smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2954. <smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2955. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2956. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2957. </package>
  2958. <package name="MINI_MELF-0204R">
  2959. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2960. source Beyschlag</description>
  2961. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2962. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2963. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2964. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2965. <wire x1="0.938" y1="0.6" x2="-0.938" y2="0.6" width="0.2032" layer="21"/>
  2966. <wire x1="-0.938" y1="-0.6" x2="0.938" y2="-0.6" width="0.2032" layer="21"/>
  2967. <smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2968. <smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2969. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2970. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2971. </package>
  2972. <package name="MINI_MELF-0204W">
  2973. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;
  2974. source Beyschlag</description>
  2975. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2976. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2977. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2978. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2979. <wire x1="0.684" y1="0.6" x2="-0.684" y2="0.6" width="0.2032" layer="21"/>
  2980. <wire x1="-0.684" y1="-0.6" x2="0.684" y2="-0.6" width="0.2032" layer="21"/>
  2981. <smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2982. <smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2983. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2984. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2985. </package>
  2986. <package name="MINI_MELF-0207R">
  2987. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2988. source Beyschlag</description>
  2989. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  2990. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  2991. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  2992. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  2993. <wire x1="1.2125" y1="1" x2="-1.2125" y2="1" width="0.2032" layer="21"/>
  2994. <wire x1="-1.2125" y1="-1" x2="1.2125" y2="-1" width="0.2032" layer="21"/>
  2995. <smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2996. <smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2997. <text x="-2.2225" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  2998. <text x="-2.2225" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2999. </package>
  3000. <package name="MINI_MELF-0207W">
  3001. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;
  3002. source Beyschlag</description>
  3003. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  3004. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  3005. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  3006. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  3007. <wire x1="1.149" y1="1" x2="-1.149" y2="1" width="0.2032" layer="21"/>
  3008. <wire x1="-1.149" y1="-1" x2="1.149" y2="-1" width="0.2032" layer="21"/>
  3009. <smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  3010. <smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  3011. <text x="-2.54" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  3012. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3013. </package>
  3014. <package name="0922V">
  3015. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3016. type 0922, grid 7.5 mm</description>
  3017. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  3018. <wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="51"/>
  3019. <circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
  3020. <circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
  3021. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3022. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3023. <text x="-0.508" y="1.6764" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3024. <text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3025. <text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
  3026. <rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  3027. </package>
  3028. <package name="RDH/15">
  3029. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3030. type RDH, grid 15 mm</description>
  3031. <wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="51"/>
  3032. <wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  3033. <wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  3034. <wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  3035. <wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  3036. <wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  3037. <wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
  3038. <wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  3039. <wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
  3040. <wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  3041. <wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  3042. <wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
  3043. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="51"/>
  3044. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
  3045. <wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
  3046. <wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="51"/>
  3047. <wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
  3048. <wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="51"/>
  3049. <wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  3050. <wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  3051. <wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  3052. <wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  3053. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  3054. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  3055. <text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3056. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3057. <text x="4.572" y="-1.7272" size="1.27" layer="51" ratio="10" rot="R90">RDH</text>
  3058. <rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="51"/>
  3059. <rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="51"/>
  3060. </package>
  3061. <package name="MINI_MELF-0102AX">
  3062. <description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>
  3063. <circle x="0" y="0" radius="0.6" width="0" layer="51"/>
  3064. <circle x="0" y="0" radius="0.6" width="0" layer="52"/>
  3065. <smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
  3066. <smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
  3067. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3068. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3069. <hole x="0" y="0" drill="1.3"/>
  3070. </package>
  3071. <package name="R0201">
  3072. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  3073. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  3074. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  3075. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  3076. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3077. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3078. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  3079. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  3080. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  3081. </package>
  3082. <package name="VTA52">
  3083. <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;
  3084. MIL SIZE RBR52&lt;br&gt;
  3085. Source: VISHAY .. vta56.pdf</description>
  3086. <wire x1="-15.24" y1="0" x2="-13.97" y2="0" width="0.6096" layer="51"/>
  3087. <wire x1="12.6225" y1="0.025" x2="12.6225" y2="4.725" width="0.1524" layer="21"/>
  3088. <wire x1="12.6225" y1="4.725" x2="-12.6225" y2="4.725" width="0.1524" layer="21"/>
  3089. <wire x1="-12.6225" y1="4.725" x2="-12.6225" y2="0.025" width="0.1524" layer="21"/>
  3090. <wire x1="-12.6225" y1="0.025" x2="-12.6225" y2="-4.65" width="0.1524" layer="21"/>
  3091. <wire x1="-12.6225" y1="-4.65" x2="12.6225" y2="-4.65" width="0.1524" layer="21"/>
  3092. <wire x1="12.6225" y1="-4.65" x2="12.6225" y2="0.025" width="0.1524" layer="21"/>
  3093. <wire x1="13.97" y1="0" x2="15.24" y2="0" width="0.6096" layer="51"/>
  3094. <pad name="1" x="-15.24" y="0" drill="1.1" shape="octagon"/>
  3095. <pad name="2" x="15.24" y="0" drill="1.1" shape="octagon"/>
  3096. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3097. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3098. <rectangle x1="-13.97" y1="-0.3048" x2="-12.5675" y2="0.3048" layer="21"/>
  3099. <rectangle x1="12.5675" y1="-0.3048" x2="13.97" y2="0.3048" layer="21"/>
  3100. </package>
  3101. <package name="VTA53">
  3102. <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;
  3103. MIL SIZE RBR53&lt;br&gt;
  3104. Source: VISHAY .. vta56.pdf</description>
  3105. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  3106. <wire x1="9.8975" y1="0" x2="9.8975" y2="4.7" width="0.1524" layer="21"/>
  3107. <wire x1="9.8975" y1="4.7" x2="-9.8975" y2="4.7" width="0.1524" layer="21"/>
  3108. <wire x1="-9.8975" y1="4.7" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  3109. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-4.675" width="0.1524" layer="21"/>
  3110. <wire x1="-9.8975" y1="-4.675" x2="9.8975" y2="-4.675" width="0.1524" layer="21"/>
  3111. <wire x1="9.8975" y1="-4.675" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  3112. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  3113. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  3114. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  3115. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3116. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3117. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  3118. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  3119. </package>
  3120. <package name="VTA54">
  3121. <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;
  3122. MIL SIZE RBR54&lt;br&gt;
  3123. Source: VISHAY .. vta56.pdf</description>
  3124. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  3125. <wire x1="9.8975" y1="0" x2="9.8975" y2="3.3" width="0.1524" layer="21"/>
  3126. <wire x1="9.8975" y1="3.3" x2="-9.8975" y2="3.3" width="0.1524" layer="21"/>
  3127. <wire x1="-9.8975" y1="3.3" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  3128. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-3.3" width="0.1524" layer="21"/>
  3129. <wire x1="-9.8975" y1="-3.3" x2="9.8975" y2="-3.3" width="0.1524" layer="21"/>
  3130. <wire x1="9.8975" y1="-3.3" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  3131. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  3132. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  3133. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  3134. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3135. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3136. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  3137. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  3138. </package>
  3139. <package name="VTA55">
  3140. <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;
  3141. MIL SIZE RBR55&lt;br&gt;
  3142. Source: VISHAY .. vta56.pdf</description>
  3143. <wire x1="-8.255" y1="0" x2="-6.985" y2="0" width="0.6096" layer="51"/>
  3144. <wire x1="6.405" y1="0" x2="6.405" y2="3.3" width="0.1524" layer="21"/>
  3145. <wire x1="6.405" y1="3.3" x2="-6.405" y2="3.3" width="0.1524" layer="21"/>
  3146. <wire x1="-6.405" y1="3.3" x2="-6.405" y2="0" width="0.1524" layer="21"/>
  3147. <wire x1="-6.405" y1="0" x2="-6.405" y2="-3.3" width="0.1524" layer="21"/>
  3148. <wire x1="-6.405" y1="-3.3" x2="6.405" y2="-3.3" width="0.1524" layer="21"/>
  3149. <wire x1="6.405" y1="-3.3" x2="6.405" y2="0" width="0.1524" layer="21"/>
  3150. <wire x1="6.985" y1="0" x2="8.255" y2="0" width="0.6096" layer="51"/>
  3151. <pad name="1" x="-8.255" y="0" drill="1.1" shape="octagon"/>
  3152. <pad name="2" x="8.255" y="0" drill="1.1" shape="octagon"/>
  3153. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3154. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3155. <rectangle x1="-6.985" y1="-0.3048" x2="-6.35" y2="0.3048" layer="21"/>
  3156. <rectangle x1="6.35" y1="-0.3048" x2="6.985" y2="0.3048" layer="21"/>
  3157. </package>
  3158. <package name="VTA56">
  3159. <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;
  3160. MIL SIZE RBR56&lt;br&gt;
  3161. Source: VISHAY .. vta56.pdf</description>
  3162. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  3163. <wire x1="4.5" y1="0" x2="4.5" y2="3.3" width="0.1524" layer="21"/>
  3164. <wire x1="4.5" y1="3.3" x2="-4.5" y2="3.3" width="0.1524" layer="21"/>
  3165. <wire x1="-4.5" y1="3.3" x2="-4.5" y2="0" width="0.1524" layer="21"/>
  3166. <wire x1="-4.5" y1="0" x2="-4.5" y2="-3.3" width="0.1524" layer="21"/>
  3167. <wire x1="-4.5" y1="-3.3" x2="4.5" y2="-3.3" width="0.1524" layer="21"/>
  3168. <wire x1="4.5" y1="-3.3" x2="4.5" y2="0" width="0.1524" layer="21"/>
  3169. <wire x1="5.08" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3170. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3171. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3172. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3173. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3174. <rectangle x1="-5.08" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  3175. <rectangle x1="4.445" y1="-0.3048" x2="5.08" y2="0.3048" layer="21"/>
  3176. </package>
  3177. <package name="VMTA55">
  3178. <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;
  3179. MIL SIZE RNC55&lt;br&gt;
  3180. Source: VISHAY .. vta56.pdf</description>
  3181. <wire x1="-5.08" y1="0" x2="-4.26" y2="0" width="0.6096" layer="51"/>
  3182. <wire x1="3.3375" y1="-1.45" x2="3.3375" y2="1.45" width="0.1524" layer="21"/>
  3183. <wire x1="3.3375" y1="1.45" x2="-3.3625" y2="1.45" width="0.1524" layer="21"/>
  3184. <wire x1="-3.3625" y1="1.45" x2="-3.3625" y2="-1.45" width="0.1524" layer="21"/>
  3185. <wire x1="-3.3625" y1="-1.45" x2="3.3375" y2="-1.45" width="0.1524" layer="21"/>
  3186. <wire x1="4.235" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  3187. <pad name="1" x="-5.08" y="0" drill="1.1" shape="octagon"/>
  3188. <pad name="2" x="5.08" y="0" drill="1.1" shape="octagon"/>
  3189. <text x="-3.175" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3190. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3191. <rectangle x1="-4.26" y1="-0.3048" x2="-3.3075" y2="0.3048" layer="21"/>
  3192. <rectangle x1="3.2825" y1="-0.3048" x2="4.235" y2="0.3048" layer="21"/>
  3193. </package>
  3194. <package name="VMTB60">
  3195. <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;
  3196. MIL SIZE RNC60&lt;br&gt;
  3197. Source: VISHAY .. vta56.pdf</description>
  3198. <wire x1="-6.35" y1="0" x2="-5.585" y2="0" width="0.6096" layer="51"/>
  3199. <wire x1="4.6875" y1="-1.95" x2="4.6875" y2="1.95" width="0.1524" layer="21"/>
  3200. <wire x1="4.6875" y1="1.95" x2="-4.6875" y2="1.95" width="0.1524" layer="21"/>
  3201. <wire x1="-4.6875" y1="1.95" x2="-4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3202. <wire x1="-4.6875" y1="-1.95" x2="4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3203. <wire x1="5.585" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3204. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3205. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3206. <text x="-4.445" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3207. <text x="-4.445" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3208. <rectangle x1="-5.585" y1="-0.3048" x2="-4.6325" y2="0.3048" layer="21"/>
  3209. <rectangle x1="4.6325" y1="-0.3048" x2="5.585" y2="0.3048" layer="21"/>
  3210. </package>
  3211. <package name="R4527">
  3212. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  3213. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  3214. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  3215. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  3216. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  3217. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3218. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3219. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3220. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3221. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3222. </package>
  3223. <package name="WSC0001">
  3224. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3225. Source: VISHAY wscwsn.pdf</description>
  3226. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3227. <wire x1="-3.075" y1="-1.8" x2="3.075" y2="-1.8" width="0.2032" layer="21"/>
  3228. <wire x1="3.075" y1="-1.8" x2="3.075" y2="1.8" width="0.2032" layer="51"/>
  3229. <wire x1="3.075" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3230. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3231. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3232. <wire x1="3.075" y1="1.606" x2="3.075" y2="1.8" width="0.2032" layer="21"/>
  3233. <wire x1="3.075" y1="-1.8" x2="3.075" y2="-1.606" width="0.2032" layer="21"/>
  3234. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3235. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3236. <text x="-2.544" y="2.229" size="1.27" layer="25">&gt;NAME</text>
  3237. <text x="-2.544" y="-3.501" size="1.27" layer="27">&gt;VALUE</text>
  3238. </package>
  3239. <package name="WSC0002">
  3240. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3241. Source: VISHAY wscwsn.pdf</description>
  3242. <wire x1="-5.55" y1="3.375" x2="-5.55" y2="-3.375" width="0.2032" layer="51"/>
  3243. <wire x1="-5.55" y1="-3.375" x2="5.55" y2="-3.375" width="0.2032" layer="21"/>
  3244. <wire x1="5.55" y1="-3.375" x2="5.55" y2="3.375" width="0.2032" layer="51"/>
  3245. <wire x1="5.55" y1="3.375" x2="-5.55" y2="3.375" width="0.2032" layer="21"/>
  3246. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3247. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3248. <text x="-5.65" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3249. <text x="-5.65" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3250. </package>
  3251. <package name="WSC01/2">
  3252. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3253. Source: VISHAY wscwsn.pdf</description>
  3254. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="-1.475" width="0.2032" layer="51"/>
  3255. <wire x1="-2.45" y1="-1.475" x2="2.45" y2="-1.475" width="0.2032" layer="21"/>
  3256. <wire x1="2.45" y1="-1.475" x2="2.45" y2="1.475" width="0.2032" layer="51"/>
  3257. <wire x1="2.45" y1="1.475" x2="-2.45" y2="1.475" width="0.2032" layer="21"/>
  3258. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="1.106" width="0.2032" layer="21"/>
  3259. <wire x1="-2.45" y1="-1.106" x2="-2.45" y2="-1.475" width="0.2032" layer="21"/>
  3260. <wire x1="2.45" y1="1.106" x2="2.45" y2="1.475" width="0.2032" layer="21"/>
  3261. <wire x1="2.45" y1="-1.475" x2="2.45" y2="-1.106" width="0.2032" layer="21"/>
  3262. <smd name="1" x="-2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3263. <smd name="2" x="2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3264. <text x="-2.544" y="1.904" size="1.27" layer="25">&gt;NAME</text>
  3265. <text x="-2.544" y="-3.176" size="1.27" layer="27">&gt;VALUE</text>
  3266. </package>
  3267. <package name="WSC2515">
  3268. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3269. Source: VISHAY wscwsn.pdf</description>
  3270. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3271. <wire x1="-3.075" y1="-1.8" x2="3.05" y2="-1.8" width="0.2032" layer="21"/>
  3272. <wire x1="3.05" y1="-1.8" x2="3.05" y2="1.8" width="0.2032" layer="51"/>
  3273. <wire x1="3.05" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3274. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3275. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3276. <wire x1="3.05" y1="1.606" x2="3.05" y2="1.8" width="0.2032" layer="21"/>
  3277. <wire x1="3.05" y1="-1.8" x2="3.05" y2="-1.606" width="0.2032" layer="21"/>
  3278. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3279. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3280. <text x="-3.2" y="2.15" size="1.27" layer="25">&gt;NAME</text>
  3281. <text x="-3.2" y="-3.4" size="1.27" layer="27">&gt;VALUE</text>
  3282. </package>
  3283. <package name="WSC4527">
  3284. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3285. Source: VISHAY wscwsn.pdf</description>
  3286. <wire x1="-5.675" y1="3.4" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3287. <wire x1="-5.675" y1="-3.375" x2="5.675" y2="-3.375" width="0.2032" layer="21"/>
  3288. <wire x1="5.675" y1="-3.375" x2="5.675" y2="3.4" width="0.2032" layer="51"/>
  3289. <wire x1="5.675" y1="3.4" x2="-5.675" y2="3.4" width="0.2032" layer="21"/>
  3290. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3291. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3292. <text x="-5.775" y="3.925" size="1.27" layer="25">&gt;NAME</text>
  3293. <text x="-5.775" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3294. </package>
  3295. <package name="WSC6927">
  3296. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3297. Source: VISHAY wscwsn.pdf</description>
  3298. <wire x1="-8.65" y1="3.375" x2="-8.65" y2="-3.375" width="0.2032" layer="51"/>
  3299. <wire x1="-8.65" y1="-3.375" x2="8.65" y2="-3.375" width="0.2032" layer="21"/>
  3300. <wire x1="8.65" y1="-3.375" x2="8.65" y2="3.375" width="0.2032" layer="51"/>
  3301. <wire x1="8.65" y1="3.375" x2="-8.65" y2="3.375" width="0.2032" layer="21"/>
  3302. <smd name="1" x="-7.95" y="0.025" dx="3.94" dy="5.97" layer="1"/>
  3303. <smd name="2" x="7.95" y="0" dx="3.94" dy="5.97" layer="1"/>
  3304. <text x="-8.75" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3305. <text x="-8.75" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3306. </package>
  3307. <package name="R1218">
  3308. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  3309. Source: http://www.vishay.com .. dcrcw.pdf</description>
  3310. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  3311. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  3312. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3313. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3314. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3315. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3316. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  3317. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  3318. </package>
  3319. <package name="1812X7R">
  3320. <description>&lt;b&gt;Chip Monolithic Ceramic Capacitors&lt;/b&gt; Medium Voltage High Capacitance for General Use&lt;p&gt;
  3321. Source: http://www.murata.com .. GRM43DR72E224KW01.pdf</description>
  3322. <wire x1="-1.1" y1="1.5" x2="1.1" y2="1.5" width="0.2032" layer="51"/>
  3323. <wire x1="1.1" y1="-1.5" x2="-1.1" y2="-1.5" width="0.2032" layer="51"/>
  3324. <wire x1="-0.6" y1="1.5" x2="0.6" y2="1.5" width="0.2032" layer="21"/>
  3325. <wire x1="0.6" y1="-1.5" x2="-0.6" y2="-1.5" width="0.2032" layer="21"/>
  3326. <smd name="1" x="-1.425" y="0" dx="0.8" dy="3.5" layer="1"/>
  3327. <smd name="2" x="1.425" y="0" dx="0.8" dy="3.5" layer="1" rot="R180"/>
  3328. <text x="-1.9456" y="1.9958" size="1.27" layer="25">&gt;NAME</text>
  3329. <text x="-1.9456" y="-3.7738" size="1.27" layer="27">&gt;VALUE</text>
  3330. <rectangle x1="-1.4" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
  3331. <rectangle x1="1.1" y1="-1.6" x2="1.4" y2="1.6" layer="51" rot="R180"/>
  3332. </package>
  3333. <package name="PRL1632">
  3334. <description>&lt;b&gt;PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)&lt;/b&gt;&lt;p&gt;
  3335. Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf</description>
  3336. <wire x1="0.7275" y1="-1.5228" x2="-0.7277" y2="-1.5228" width="0.1524" layer="51"/>
  3337. <wire x1="0.7275" y1="1.5228" x2="-0.7152" y2="1.5228" width="0.1524" layer="51"/>
  3338. <smd name="2" x="0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3339. <smd name="1" x="-0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3340. <text x="-1.4" y="1.8" size="1.27" layer="25">&gt;NAME</text>
  3341. <text x="-1.4" y="-3" size="1.27" layer="27">&gt;VALUE</text>
  3342. <rectangle x1="-0.8" y1="-1.6" x2="-0.4" y2="1.6" layer="51"/>
  3343. <rectangle x1="0.4" y1="-1.6" x2="0.8" y2="1.6" layer="51"/>
  3344. </package>
  3345. <package name="R01005">
  3346. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3347. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3348. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  3349. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  3350. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  3351. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  3352. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  3353. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  3354. </package>
  3355. </packages>
  3356. <symbols>
  3357. <symbol name="R-EU">
  3358. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  3359. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3360. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  3361. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3362. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  3363. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  3364. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  3365. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  3366. </symbol>
  3367. </symbols>
  3368. <devicesets>
  3369. <deviceset name="R-EU_" prefix="R" uservalue="yes">
  3370. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  3371. <gates>
  3372. <gate name="G$1" symbol="R-EU" x="0" y="0"/>
  3373. </gates>
  3374. <devices>
  3375. <device name="R0402" package="R0402">
  3376. <connects>
  3377. <connect gate="G$1" pin="1" pad="1"/>
  3378. <connect gate="G$1" pin="2" pad="2"/>
  3379. </connects>
  3380. <technologies>
  3381. <technology name=""/>
  3382. </technologies>
  3383. </device>
  3384. <device name="R0603" package="R0603">
  3385. <connects>
  3386. <connect gate="G$1" pin="1" pad="1"/>
  3387. <connect gate="G$1" pin="2" pad="2"/>
  3388. </connects>
  3389. <technologies>
  3390. <technology name=""/>
  3391. </technologies>
  3392. </device>
  3393. <device name="R0805" package="R0805">
  3394. <connects>
  3395. <connect gate="G$1" pin="1" pad="1"/>
  3396. <connect gate="G$1" pin="2" pad="2"/>
  3397. </connects>
  3398. <technologies>
  3399. <technology name=""/>
  3400. </technologies>
  3401. </device>
  3402. <device name="R0805W" package="R0805W">
  3403. <connects>
  3404. <connect gate="G$1" pin="1" pad="1"/>
  3405. <connect gate="G$1" pin="2" pad="2"/>
  3406. </connects>
  3407. <technologies>
  3408. <technology name=""/>
  3409. </technologies>
  3410. </device>
  3411. <device name="R1206" package="R1206">
  3412. <connects>
  3413. <connect gate="G$1" pin="1" pad="1"/>
  3414. <connect gate="G$1" pin="2" pad="2"/>
  3415. </connects>
  3416. <technologies>
  3417. <technology name=""/>
  3418. </technologies>
  3419. </device>
  3420. <device name="R1206W" package="R1206W">
  3421. <connects>
  3422. <connect gate="G$1" pin="1" pad="1"/>
  3423. <connect gate="G$1" pin="2" pad="2"/>
  3424. </connects>
  3425. <technologies>
  3426. <technology name=""/>
  3427. </technologies>
  3428. </device>
  3429. <device name="R1210" package="R1210">
  3430. <connects>
  3431. <connect gate="G$1" pin="1" pad="1"/>
  3432. <connect gate="G$1" pin="2" pad="2"/>
  3433. </connects>
  3434. <technologies>
  3435. <technology name=""/>
  3436. </technologies>
  3437. </device>
  3438. <device name="R1210W" package="R1210W">
  3439. <connects>
  3440. <connect gate="G$1" pin="1" pad="1"/>
  3441. <connect gate="G$1" pin="2" pad="2"/>
  3442. </connects>
  3443. <technologies>
  3444. <technology name=""/>
  3445. </technologies>
  3446. </device>
  3447. <device name="R2010" package="R2010">
  3448. <connects>
  3449. <connect gate="G$1" pin="1" pad="1"/>
  3450. <connect gate="G$1" pin="2" pad="2"/>
  3451. </connects>
  3452. <technologies>
  3453. <technology name=""/>
  3454. </technologies>
  3455. </device>
  3456. <device name="R2010W" package="R2010W">
  3457. <connects>
  3458. <connect gate="G$1" pin="1" pad="1"/>
  3459. <connect gate="G$1" pin="2" pad="2"/>
  3460. </connects>
  3461. <technologies>
  3462. <technology name=""/>
  3463. </technologies>
  3464. </device>
  3465. <device name="R2012" package="R2012">
  3466. <connects>
  3467. <connect gate="G$1" pin="1" pad="1"/>
  3468. <connect gate="G$1" pin="2" pad="2"/>
  3469. </connects>
  3470. <technologies>
  3471. <technology name=""/>
  3472. </technologies>
  3473. </device>
  3474. <device name="R2012W" package="R2012W">
  3475. <connects>
  3476. <connect gate="G$1" pin="1" pad="1"/>
  3477. <connect gate="G$1" pin="2" pad="2"/>
  3478. </connects>
  3479. <technologies>
  3480. <technology name=""/>
  3481. </technologies>
  3482. </device>
  3483. <device name="R2512" package="R2512">
  3484. <connects>
  3485. <connect gate="G$1" pin="1" pad="1"/>
  3486. <connect gate="G$1" pin="2" pad="2"/>
  3487. </connects>
  3488. <technologies>
  3489. <technology name=""/>
  3490. </technologies>
  3491. </device>
  3492. <device name="R2512W" package="R2512W">
  3493. <connects>
  3494. <connect gate="G$1" pin="1" pad="1"/>
  3495. <connect gate="G$1" pin="2" pad="2"/>
  3496. </connects>
  3497. <technologies>
  3498. <technology name=""/>
  3499. </technologies>
  3500. </device>
  3501. <device name="R3216" package="R3216">
  3502. <connects>
  3503. <connect gate="G$1" pin="1" pad="1"/>
  3504. <connect gate="G$1" pin="2" pad="2"/>
  3505. </connects>
  3506. <technologies>
  3507. <technology name=""/>
  3508. </technologies>
  3509. </device>
  3510. <device name="R3216W" package="R3216W">
  3511. <connects>
  3512. <connect gate="G$1" pin="1" pad="1"/>
  3513. <connect gate="G$1" pin="2" pad="2"/>
  3514. </connects>
  3515. <technologies>
  3516. <technology name=""/>
  3517. </technologies>
  3518. </device>
  3519. <device name="R3225" package="R3225">
  3520. <connects>
  3521. <connect gate="G$1" pin="1" pad="1"/>
  3522. <connect gate="G$1" pin="2" pad="2"/>
  3523. </connects>
  3524. <technologies>
  3525. <technology name=""/>
  3526. </technologies>
  3527. </device>
  3528. <device name="R3225W" package="R3225W">
  3529. <connects>
  3530. <connect gate="G$1" pin="1" pad="1"/>
  3531. <connect gate="G$1" pin="2" pad="2"/>
  3532. </connects>
  3533. <technologies>
  3534. <technology name=""/>
  3535. </technologies>
  3536. </device>
  3537. <device name="R5025" package="R5025">
  3538. <connects>
  3539. <connect gate="G$1" pin="1" pad="1"/>
  3540. <connect gate="G$1" pin="2" pad="2"/>
  3541. </connects>
  3542. <technologies>
  3543. <technology name=""/>
  3544. </technologies>
  3545. </device>
  3546. <device name="R5025W" package="R5025W">
  3547. <connects>
  3548. <connect gate="G$1" pin="1" pad="1"/>
  3549. <connect gate="G$1" pin="2" pad="2"/>
  3550. </connects>
  3551. <technologies>
  3552. <technology name=""/>
  3553. </technologies>
  3554. </device>
  3555. <device name="R6332" package="R6332">
  3556. <connects>
  3557. <connect gate="G$1" pin="1" pad="1"/>
  3558. <connect gate="G$1" pin="2" pad="2"/>
  3559. </connects>
  3560. <technologies>
  3561. <technology name=""/>
  3562. </technologies>
  3563. </device>
  3564. <device name="R6332W" package="R6332W">
  3565. <connects>
  3566. <connect gate="G$1" pin="1" pad="1"/>
  3567. <connect gate="G$1" pin="2" pad="2"/>
  3568. </connects>
  3569. <technologies>
  3570. <technology name=""/>
  3571. </technologies>
  3572. </device>
  3573. <device name="M0805" package="M0805">
  3574. <connects>
  3575. <connect gate="G$1" pin="1" pad="1"/>
  3576. <connect gate="G$1" pin="2" pad="2"/>
  3577. </connects>
  3578. <technologies>
  3579. <technology name=""/>
  3580. </technologies>
  3581. </device>
  3582. <device name="M1206" package="M1206">
  3583. <connects>
  3584. <connect gate="G$1" pin="1" pad="1"/>
  3585. <connect gate="G$1" pin="2" pad="2"/>
  3586. </connects>
  3587. <technologies>
  3588. <technology name=""/>
  3589. </technologies>
  3590. </device>
  3591. <device name="M1406" package="M1406">
  3592. <connects>
  3593. <connect gate="G$1" pin="1" pad="1"/>
  3594. <connect gate="G$1" pin="2" pad="2"/>
  3595. </connects>
  3596. <technologies>
  3597. <technology name=""/>
  3598. </technologies>
  3599. </device>
  3600. <device name="M2012" package="M2012">
  3601. <connects>
  3602. <connect gate="G$1" pin="1" pad="1"/>
  3603. <connect gate="G$1" pin="2" pad="2"/>
  3604. </connects>
  3605. <technologies>
  3606. <technology name=""/>
  3607. </technologies>
  3608. </device>
  3609. <device name="M2309" package="M2309">
  3610. <connects>
  3611. <connect gate="G$1" pin="1" pad="1"/>
  3612. <connect gate="G$1" pin="2" pad="2"/>
  3613. </connects>
  3614. <technologies>
  3615. <technology name=""/>
  3616. </technologies>
  3617. </device>
  3618. <device name="M3216" package="M3216">
  3619. <connects>
  3620. <connect gate="G$1" pin="1" pad="1"/>
  3621. <connect gate="G$1" pin="2" pad="2"/>
  3622. </connects>
  3623. <technologies>
  3624. <technology name=""/>
  3625. </technologies>
  3626. </device>
  3627. <device name="M3516" package="M3516">
  3628. <connects>
  3629. <connect gate="G$1" pin="1" pad="1"/>
  3630. <connect gate="G$1" pin="2" pad="2"/>
  3631. </connects>
  3632. <technologies>
  3633. <technology name=""/>
  3634. </technologies>
  3635. </device>
  3636. <device name="M5923" package="M5923">
  3637. <connects>
  3638. <connect gate="G$1" pin="1" pad="1"/>
  3639. <connect gate="G$1" pin="2" pad="2"/>
  3640. </connects>
  3641. <technologies>
  3642. <technology name=""/>
  3643. </technologies>
  3644. </device>
  3645. <device name="0204/5" package="0204/5">
  3646. <connects>
  3647. <connect gate="G$1" pin="1" pad="1"/>
  3648. <connect gate="G$1" pin="2" pad="2"/>
  3649. </connects>
  3650. <technologies>
  3651. <technology name=""/>
  3652. </technologies>
  3653. </device>
  3654. <device name="0204/7" package="0204/7">
  3655. <connects>
  3656. <connect gate="G$1" pin="1" pad="1"/>
  3657. <connect gate="G$1" pin="2" pad="2"/>
  3658. </connects>
  3659. <technologies>
  3660. <technology name=""/>
  3661. </technologies>
  3662. </device>
  3663. <device name="0204/2V" package="0204V">
  3664. <connects>
  3665. <connect gate="G$1" pin="1" pad="1"/>
  3666. <connect gate="G$1" pin="2" pad="2"/>
  3667. </connects>
  3668. <technologies>
  3669. <technology name=""/>
  3670. </technologies>
  3671. </device>
  3672. <device name="0207/10" package="0207/10">
  3673. <connects>
  3674. <connect gate="G$1" pin="1" pad="1"/>
  3675. <connect gate="G$1" pin="2" pad="2"/>
  3676. </connects>
  3677. <technologies>
  3678. <technology name=""/>
  3679. </technologies>
  3680. </device>
  3681. <device name="0207/12" package="0207/12">
  3682. <connects>
  3683. <connect gate="G$1" pin="1" pad="1"/>
  3684. <connect gate="G$1" pin="2" pad="2"/>
  3685. </connects>
  3686. <technologies>
  3687. <technology name=""/>
  3688. </technologies>
  3689. </device>
  3690. <device name="0207/15" package="0207/15">
  3691. <connects>
  3692. <connect gate="G$1" pin="1" pad="1"/>
  3693. <connect gate="G$1" pin="2" pad="2"/>
  3694. </connects>
  3695. <technologies>
  3696. <technology name=""/>
  3697. </technologies>
  3698. </device>
  3699. <device name="0207/2V" package="0207/2V">
  3700. <connects>
  3701. <connect gate="G$1" pin="1" pad="1"/>
  3702. <connect gate="G$1" pin="2" pad="2"/>
  3703. </connects>
  3704. <technologies>
  3705. <technology name=""/>
  3706. </technologies>
  3707. </device>
  3708. <device name="0207/5V" package="0207/5V">
  3709. <connects>
  3710. <connect gate="G$1" pin="1" pad="1"/>
  3711. <connect gate="G$1" pin="2" pad="2"/>
  3712. </connects>
  3713. <technologies>
  3714. <technology name=""/>
  3715. </technologies>
  3716. </device>
  3717. <device name="0207/7" package="0207/7">
  3718. <connects>
  3719. <connect gate="G$1" pin="1" pad="1"/>
  3720. <connect gate="G$1" pin="2" pad="2"/>
  3721. </connects>
  3722. <technologies>
  3723. <technology name=""/>
  3724. </technologies>
  3725. </device>
  3726. <device name="0309/10" package="0309/10">
  3727. <connects>
  3728. <connect gate="G$1" pin="1" pad="1"/>
  3729. <connect gate="G$1" pin="2" pad="2"/>
  3730. </connects>
  3731. <technologies>
  3732. <technology name=""/>
  3733. </technologies>
  3734. </device>
  3735. <device name="0309/12" package="0309/12">
  3736. <connects>
  3737. <connect gate="G$1" pin="1" pad="1"/>
  3738. <connect gate="G$1" pin="2" pad="2"/>
  3739. </connects>
  3740. <technologies>
  3741. <technology name=""/>
  3742. </technologies>
  3743. </device>
  3744. <device name="0309/V" package="0309V">
  3745. <connects>
  3746. <connect gate="G$1" pin="1" pad="1"/>
  3747. <connect gate="G$1" pin="2" pad="2"/>
  3748. </connects>
  3749. <technologies>
  3750. <technology name=""/>
  3751. </technologies>
  3752. </device>
  3753. <device name="0411/12" package="0411/12">
  3754. <connects>
  3755. <connect gate="G$1" pin="1" pad="1"/>
  3756. <connect gate="G$1" pin="2" pad="2"/>
  3757. </connects>
  3758. <technologies>
  3759. <technology name=""/>
  3760. </technologies>
  3761. </device>
  3762. <device name="0411/15" package="0411/15">
  3763. <connects>
  3764. <connect gate="G$1" pin="1" pad="1"/>
  3765. <connect gate="G$1" pin="2" pad="2"/>
  3766. </connects>
  3767. <technologies>
  3768. <technology name=""/>
  3769. </technologies>
  3770. </device>
  3771. <device name="0411/3V" package="0411V">
  3772. <connects>
  3773. <connect gate="G$1" pin="1" pad="1"/>
  3774. <connect gate="G$1" pin="2" pad="2"/>
  3775. </connects>
  3776. <technologies>
  3777. <technology name=""/>
  3778. </technologies>
  3779. </device>
  3780. <device name="0414/15" package="0414/15">
  3781. <connects>
  3782. <connect gate="G$1" pin="1" pad="1"/>
  3783. <connect gate="G$1" pin="2" pad="2"/>
  3784. </connects>
  3785. <technologies>
  3786. <technology name=""/>
  3787. </technologies>
  3788. </device>
  3789. <device name="0414/5V" package="0414V">
  3790. <connects>
  3791. <connect gate="G$1" pin="1" pad="1"/>
  3792. <connect gate="G$1" pin="2" pad="2"/>
  3793. </connects>
  3794. <technologies>
  3795. <technology name=""/>
  3796. </technologies>
  3797. </device>
  3798. <device name="0617/17" package="0617/17">
  3799. <connects>
  3800. <connect gate="G$1" pin="1" pad="1"/>
  3801. <connect gate="G$1" pin="2" pad="2"/>
  3802. </connects>
  3803. <technologies>
  3804. <technology name=""/>
  3805. </technologies>
  3806. </device>
  3807. <device name="0617/22" package="0617/22">
  3808. <connects>
  3809. <connect gate="G$1" pin="1" pad="1"/>
  3810. <connect gate="G$1" pin="2" pad="2"/>
  3811. </connects>
  3812. <technologies>
  3813. <technology name=""/>
  3814. </technologies>
  3815. </device>
  3816. <device name="0617/5V" package="0617V">
  3817. <connects>
  3818. <connect gate="G$1" pin="1" pad="1"/>
  3819. <connect gate="G$1" pin="2" pad="2"/>
  3820. </connects>
  3821. <technologies>
  3822. <technology name=""/>
  3823. </technologies>
  3824. </device>
  3825. <device name="0922/22" package="0922/22">
  3826. <connects>
  3827. <connect gate="G$1" pin="1" pad="1"/>
  3828. <connect gate="G$1" pin="2" pad="2"/>
  3829. </connects>
  3830. <technologies>
  3831. <technology name=""/>
  3832. </technologies>
  3833. </device>
  3834. <device name="0613/5V" package="P0613V">
  3835. <connects>
  3836. <connect gate="G$1" pin="1" pad="1"/>
  3837. <connect gate="G$1" pin="2" pad="2"/>
  3838. </connects>
  3839. <technologies>
  3840. <technology name=""/>
  3841. </technologies>
  3842. </device>
  3843. <device name="0613/15" package="P0613/15">
  3844. <connects>
  3845. <connect gate="G$1" pin="1" pad="1"/>
  3846. <connect gate="G$1" pin="2" pad="2"/>
  3847. </connects>
  3848. <technologies>
  3849. <technology name=""/>
  3850. </technologies>
  3851. </device>
  3852. <device name="0817/22" package="P0817/22">
  3853. <connects>
  3854. <connect gate="G$1" pin="1" pad="1"/>
  3855. <connect gate="G$1" pin="2" pad="2"/>
  3856. </connects>
  3857. <technologies>
  3858. <technology name=""/>
  3859. </technologies>
  3860. </device>
  3861. <device name="0817/7V" package="P0817V">
  3862. <connects>
  3863. <connect gate="G$1" pin="1" pad="1"/>
  3864. <connect gate="G$1" pin="2" pad="2"/>
  3865. </connects>
  3866. <technologies>
  3867. <technology name=""/>
  3868. </technologies>
  3869. </device>
  3870. <device name="V234/12" package="V234/12">
  3871. <connects>
  3872. <connect gate="G$1" pin="1" pad="1"/>
  3873. <connect gate="G$1" pin="2" pad="2"/>
  3874. </connects>
  3875. <technologies>
  3876. <technology name=""/>
  3877. </technologies>
  3878. </device>
  3879. <device name="V235/17" package="V235/17">
  3880. <connects>
  3881. <connect gate="G$1" pin="1" pad="1"/>
  3882. <connect gate="G$1" pin="2" pad="2"/>
  3883. </connects>
  3884. <technologies>
  3885. <technology name=""/>
  3886. </technologies>
  3887. </device>
  3888. <device name="V526-0" package="V526-0">
  3889. <connects>
  3890. <connect gate="G$1" pin="1" pad="1"/>
  3891. <connect gate="G$1" pin="2" pad="2"/>
  3892. </connects>
  3893. <technologies>
  3894. <technology name=""/>
  3895. </technologies>
  3896. </device>
  3897. <device name="MELF0102R" package="MINI_MELF-0102R">
  3898. <connects>
  3899. <connect gate="G$1" pin="1" pad="1"/>
  3900. <connect gate="G$1" pin="2" pad="2"/>
  3901. </connects>
  3902. <technologies>
  3903. <technology name=""/>
  3904. </technologies>
  3905. </device>
  3906. <device name="MELF0102W" package="MINI_MELF-0102W">
  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="MELF0204R" package="MINI_MELF-0204R">
  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="MELF0204W" package="MINI_MELF-0204W">
  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="MELF0207R" package="MINI_MELF-0207R">
  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="MELF0207W" package="MINI_MELF-0207W">
  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="0922V" package="0922V">
  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="RDH/15" package="RDH/15">
  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="MELF0102AX" package="MINI_MELF-0102AX">
  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="R0201" package="R0201">
  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="VTA52" package="VTA52">
  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="VTA53" package="VTA53">
  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="VTA54" package="VTA54">
  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="VTA55" package="VTA55">
  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="VTA56" package="VTA56">
  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="VMTA55" package="VMTA55">
  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="VMTB60" package="VMTB60">
  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="R4527" package="R4527">
  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="WSC0001" package="WSC0001">
  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="WSC0002" package="WSC0002">
  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="WSC01/2" package="WSC01/2">
  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="WSC2515" package="WSC2515">
  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="WSC4527" package="WSC4527">
  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="WSC6927" package="WSC6927">
  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="R1218" package="R1218">
  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="1812X7R" package="1812X7R">
  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="PRL1632" package="PRL1632">
  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="01005" package="R01005">
  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. </devices>
  4150. </deviceset>
  4151. </devicesets>
  4152. </library>
  4153. <library name="con-phoenix-3.81">
  4154. <description>&lt;b&gt;Phoenix Connectors&lt;/b&gt; Grid 3.81 mm&lt;p&gt;
  4155. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  4156. <packages>
  4157. <package name="1705566">
  4158. <description>&lt;b&gt;MKDSD 1,5/ 4-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  4159. Nennstrom: 8 A&lt;br&gt;
  4160. Bemessungsspannung: 200 V&lt;br&gt;
  4161. Raster: 3,81 mm&lt;br&gt;
  4162. Polzahl: 4&lt;br&gt;
  4163. Montageart: Löten&lt;br&gt;
  4164. Anschlussart: Schraubanschluss&lt;br&gt;
  4165. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  4166. Source: http://eshop.phoenixcontact.com .. 1705566.pdf</description>
  4167. <wire x1="-8.175" y1="-4.65" x2="-8.175" y2="-4.15" width="0.1016" layer="21"/>
  4168. <wire x1="8.175" y1="4.65" x2="-8.175" y2="4.65" width="0.1016" layer="21"/>
  4169. <wire x1="-8.175" y1="-4.15" x2="8.175" y2="-4.15" width="0.1016" layer="21"/>
  4170. <wire x1="-8.175" y1="-4.15" x2="-8.175" y2="-4.05" width="0.1016" layer="21"/>
  4171. <wire x1="-8.175" y1="2.7596" x2="-8.175" y2="4.65" width="0.1016" layer="21"/>
  4172. <wire x1="8.175" y1="-3.25" x2="-8.175" y2="-3.25" width="0.1016" layer="21"/>
  4173. <wire x1="8.175" y1="-3.05" x2="-8.175" y2="-3.05" width="0.1016" layer="21"/>
  4174. <wire x1="8.175" y1="2.2824" x2="-8.175" y2="2.2824" width="0.1016" layer="21"/>
  4175. <wire x1="8.175" y1="2.7596" x2="-8.175" y2="2.7596" width="0.1016" layer="21"/>
  4176. <wire x1="-8.175" y1="-4.05" x2="-8.175" y2="-3.25" width="0.1016" layer="21"/>
  4177. <wire x1="-8.175" y1="-3.25" x2="-8.175" y2="-3.05" width="0.1016" layer="21"/>
  4178. <wire x1="-8.175" y1="-3.05" x2="-8.175" y2="2.2824" width="0.1016" layer="21"/>
  4179. <wire x1="-8.175" y1="2.2824" x2="-8.175" y2="2.7596" width="0.1016" layer="21"/>
  4180. <wire x1="-5.004" y1="1.856" x2="-6.921" y2="-0.061" width="0.1016" layer="21"/>
  4181. <wire x1="-6.426" y1="-0.556" x2="-4.509" y2="1.361" width="0.1016" layer="21"/>
  4182. <wire x1="-5.715" y1="-0.75" x2="-5.715" y2="-0.7" width="0.1016" layer="21"/>
  4183. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-1.8" width="0.1016" layer="21"/>
  4184. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-0.75" width="0.1016" layer="21"/>
  4185. <wire x1="8.175" y1="-4.05" x2="-8.175" y2="-4.05" width="0.1016" layer="21"/>
  4186. <wire x1="8.175" y1="-4.05" x2="8.175" y2="-3.25" width="0.1016" layer="21"/>
  4187. <wire x1="8.175" y1="-3.25" x2="8.175" y2="-3.05" width="0.1016" layer="21"/>
  4188. <wire x1="8.175" y1="-4.65" x2="-8.175" y2="-4.65" width="0.1016" layer="21"/>
  4189. <wire x1="8.175" y1="-4.65" x2="8.175" y2="-4.15" width="0.1016" layer="21"/>
  4190. <wire x1="8.175" y1="-4.15" x2="8.175" y2="-4.05" width="0.1016" layer="21"/>
  4191. <wire x1="8.175" y1="2.2824" x2="8.175" y2="-3.05" width="0.1016" layer="21"/>
  4192. <wire x1="8.175" y1="2.7596" x2="8.175" y2="2.2824" width="0.1016" layer="21"/>
  4193. <wire x1="8.175" y1="2.7596" x2="8.175" y2="4.65" width="0.1016" layer="21"/>
  4194. <wire x1="-1.194" y1="1.856" x2="-3.111" y2="-0.061" width="0.1016" layer="21"/>
  4195. <wire x1="-2.616" y1="-0.556" x2="-0.699" y2="1.361" width="0.1016" layer="21"/>
  4196. <wire x1="-1.905" y1="-0.75" x2="-1.905" y2="-0.7" width="0.1016" layer="21"/>
  4197. <wire x1="-1.905" y1="-0.8" x2="-1.905" y2="-0.75" width="0.1016" layer="21"/>
  4198. <wire x1="2.616" y1="1.856" x2="0.699" y2="-0.061" width="0.1016" layer="21"/>
  4199. <wire x1="1.194" y1="-0.556" x2="3.111" y2="1.361" width="0.1016" layer="21"/>
  4200. <wire x1="1.905" y1="-0.75" x2="1.905" y2="-0.7" width="0.1016" layer="21"/>
  4201. <wire x1="1.905" y1="-0.8" x2="1.905" y2="-0.75" width="0.1016" layer="21"/>
  4202. <wire x1="6.426" y1="1.856" x2="4.509" y2="-0.061" width="0.1016" layer="21"/>
  4203. <wire x1="5.004" y1="-0.556" x2="6.921" y2="1.361" width="0.1016" layer="21"/>
  4204. <wire x1="5.715" y1="-0.75" x2="5.715" y2="-0.7" width="0.1016" layer="21"/>
  4205. <wire x1="5.715" y1="-0.8" x2="5.715" y2="-0.75" width="0.1016" layer="21"/>
  4206. <circle x="-5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  4207. <circle x="-1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  4208. <circle x="1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  4209. <circle x="5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  4210. <pad name="1.1" x="-5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  4211. <pad name="1.2" x="-5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  4212. <pad name="2.1" x="-1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  4213. <pad name="2.2" x="-1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  4214. <pad name="3.1" x="1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  4215. <pad name="3.2" x="1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  4216. <pad name="4.1" x="5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  4217. <pad name="4.2" x="5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  4218. <text x="-8.89" y="-3.81" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  4219. <text x="-6.985" y="5.08" size="1.27" layer="27">&gt;VALUE</text>
  4220. <polygon width="0.1016" layer="21">
  4221. <vertex x="-6.985" y="-1.27"/>
  4222. <vertex x="-6.35" y="-2.54"/>
  4223. <vertex x="-7.62" y="-2.54"/>
  4224. </polygon>
  4225. </package>
  4226. </packages>
  4227. <symbols>
  4228. <symbol name="SCHRAUBKLEMME_2">
  4229. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.254" layer="94"/>
  4230. <wire x1="-12.7" y1="1.27" x2="0" y2="1.27" width="0.254" layer="94"/>
  4231. <wire x1="-12.7" y1="1.27" x2="-12.7" y2="-1.27" width="0.254" layer="94"/>
  4232. <wire x1="0" y1="-1.27" x2="-12.7" y2="-1.27" width="0.254" layer="94"/>
  4233. <circle x="-11.43" y="0" radius="0.6839" width="0.254" layer="94"/>
  4234. <text x="-10.16" y="-0.889" size="1.778" layer="95">&gt;NAME</text>
  4235. <text x="-12.7" y="-3.81" size="1.778" layer="96">&gt;VALUE</text>
  4236. <pin name="1A" x="2.54" y="0" visible="off" length="short" direction="pas" rot="R180"/>
  4237. </symbol>
  4238. </symbols>
  4239. <devicesets>
  4240. <deviceset name="1705566" prefix="X">
  4241. <description>&lt;b&gt;MKDSD 1,5/ 4-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  4242. Nennstrom: 8 A&lt;br&gt;
  4243. Bemessungsspannung: 200 V&lt;br&gt;
  4244. Raster: 3,81 mm&lt;br&gt;
  4245. Polzahl: 4&lt;br&gt;
  4246. Montageart: Löten&lt;br&gt;
  4247. Anschlussart: Schraubanschluss&lt;br&gt;
  4248. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  4249. Source: http://eshop.phoenixcontact.com .. 1705566.pdf</description>
  4250. <gates>
  4251. <gate name="-1" symbol="SCHRAUBKLEMME_2" x="0" y="0" addlevel="always"/>
  4252. <gate name="-2" symbol="SCHRAUBKLEMME_2" x="0" y="-7.62" addlevel="always"/>
  4253. <gate name="-3" symbol="SCHRAUBKLEMME_2" x="0" y="-15.24" addlevel="always"/>
  4254. <gate name="-4" symbol="SCHRAUBKLEMME_2" x="0" y="-22.86" addlevel="always"/>
  4255. </gates>
  4256. <devices>
  4257. <device name="" package="1705566">
  4258. <connects>
  4259. <connect gate="-1" pin="1A" pad="1.1 1.2" route="any"/>
  4260. <connect gate="-2" pin="1A" pad="2.1 2.2" route="any"/>
  4261. <connect gate="-3" pin="1A" pad="3.1 3.2" route="any"/>
  4262. <connect gate="-4" pin="1A" pad="4.1 4.2" route="any"/>
  4263. </connects>
  4264. <technologies>
  4265. <technology name="">
  4266. <attribute name="MF" value="" constant="no"/>
  4267. <attribute name="MPN" value="" constant="no"/>
  4268. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  4269. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  4270. </technology>
  4271. </technologies>
  4272. </device>
  4273. </devices>
  4274. </deviceset>
  4275. </devicesets>
  4276. </library>
  4277. <library name="mc33269dt">
  4278. <packages>
  4279. <package name="MC33269DT">
  4280. <wire x1="-3.21" y1="-3.11" x2="3.39" y2="-3.11" width="0.127" layer="20"/>
  4281. <wire x1="3.39" y1="-3.11" x2="3.39" y2="3.09" width="0.127" layer="20"/>
  4282. <wire x1="3.39" y1="3.09" x2="2.39" y2="3.09" width="0.127" layer="20"/>
  4283. <wire x1="2.39" y1="3.09" x2="-2.21" y2="3.09" width="0.127" layer="20"/>
  4284. <wire x1="-2.21" y1="3.09" x2="-3.21" y2="3.09" width="0.127" layer="20"/>
  4285. <wire x1="-3.21" y1="3.09" x2="-3.21" y2="-3.11" width="0.127" layer="20"/>
  4286. <wire x1="-2.21" y1="3.09" x2="-2.21" y2="3.69" width="0.127" layer="20"/>
  4287. <wire x1="-2.21" y1="3.69" x2="-1.81" y2="4.09" width="0.127" layer="20"/>
  4288. <wire x1="-1.81" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  4289. <wire x1="-1.41" y1="4.09" x2="-1.37" y2="4.09" width="0.127" layer="20"/>
  4290. <wire x1="2.39" y1="3.09" x2="2.39" y2="3.69" width="0.127" layer="20"/>
  4291. <wire x1="2.39" y1="3.69" x2="1.99" y2="4.09" width="0.127" layer="20"/>
  4292. <wire x1="1.99" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  4293. <smd name="P1" x="-2.2" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  4294. <smd name="P3" x="2.38" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  4295. <smd name="P2" x="0.09" y="-3.59" dx="0.8" dy="1" layer="1" rot="R90"/>
  4296. <text x="-2.19" y="1.86" size="0.6096" layer="25">MC33269DT</text>
  4297. </package>
  4298. </packages>
  4299. <symbols>
  4300. <symbol name="MC33269DT">
  4301. <wire x1="-7.62" y1="7.62" x2="-7.62" y2="-2.54" width="0.254" layer="94"/>
  4302. <wire x1="-7.62" y1="-2.54" x2="7.62" y2="-2.54" width="0.254" layer="94"/>
  4303. <wire x1="7.62" y1="-2.54" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  4304. <wire x1="7.62" y1="7.62" x2="-7.62" y2="7.62" width="0.254" layer="94"/>
  4305. <text x="-5.08" y="10.16" size="1.27" layer="95">MC33269DT</text>
  4306. <text x="-5.08" y="5.08" size="1.27" layer="95">Vin</text>
  4307. <text x="2.54" y="5.08" size="1.27" layer="95">Vout</text>
  4308. <text x="-2.54" y="0" size="1.27" layer="95">GND</text>
  4309. <pin name="VIN" x="-12.7" y="5.08" visible="pad" length="middle" direction="in" swaplevel="3"/>
  4310. <pin name="VOUT" x="12.7" y="5.08" visible="pad" length="middle" direction="out" swaplevel="3" rot="R180"/>
  4311. <pin name="GND" x="0" y="-7.62" visible="pad" length="middle" direction="pwr" swaplevel="3" rot="R90"/>
  4312. </symbol>
  4313. </symbols>
  4314. <devicesets>
  4315. <deviceset name="MC33269DT">
  4316. <gates>
  4317. <gate name="G$1" symbol="MC33269DT" x="0" y="-2.54" swaplevel="3"/>
  4318. </gates>
  4319. <devices>
  4320. <device name="" package="MC33269DT">
  4321. <connects>
  4322. <connect gate="G$1" pin="GND" pad="P1"/>
  4323. <connect gate="G$1" pin="VIN" pad="P3"/>
  4324. <connect gate="G$1" pin="VOUT" pad="P2"/>
  4325. </connects>
  4326. <technologies>
  4327. <technology name=""/>
  4328. </technologies>
  4329. </device>
  4330. </devices>
  4331. </deviceset>
  4332. </devicesets>
  4333. </library>
  4334. <library name="capacitor-wima">
  4335. <description>&lt;b&gt;WIMA Capacitors&lt;/b&gt;&lt;p&gt;
  4336. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  4337. <packages>
  4338. <package name="C10B4">
  4339. <description>&lt;B&gt;MKS4&lt;/B&gt;, 13.4 x 4 mm, grid 10.16 mm</description>
  4340. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4341. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  4342. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  4343. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4344. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4345. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4346. <wire x1="-6.096" y1="2.032" x2="6.096" y2="2.032" width="0.1524" layer="21"/>
  4347. <wire x1="6.604" y1="1.524" x2="6.604" y2="-1.524" width="0.1524" layer="21"/>
  4348. <wire x1="6.096" y1="-2.032" x2="-6.096" y2="-2.032" width="0.1524" layer="21"/>
  4349. <wire x1="-6.604" y1="-1.524" x2="-6.604" y2="1.524" width="0.1524" layer="21"/>
  4350. <wire x1="6.096" y1="2.032" x2="6.604" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4351. <wire x1="6.096" y1="-2.032" x2="6.604" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4352. <wire x1="-6.604" y1="-1.524" x2="-6.096" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4353. <wire x1="-6.604" y1="1.524" x2="-6.096" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4354. <pad name="1" x="-5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4355. <pad name="2" x="5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4356. <text x="-3.429" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4357. <text x="-1.524" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4358. </package>
  4359. <package name="C10B5">
  4360. <description>&lt;B&gt;MKS4&lt;/B&gt;, 13.4 x 5 mm, grid 10.16 mm</description>
  4361. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4362. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  4363. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  4364. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4365. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4366. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4367. <wire x1="-6.096" y1="2.54" x2="6.096" y2="2.54" width="0.1524" layer="21"/>
  4368. <wire x1="6.604" y1="2.032" x2="6.604" y2="-2.032" width="0.1524" layer="21"/>
  4369. <wire x1="6.096" y1="-2.54" x2="-6.096" y2="-2.54" width="0.1524" layer="21"/>
  4370. <wire x1="-6.604" y1="-2.032" x2="-6.604" y2="2.032" width="0.1524" layer="21"/>
  4371. <wire x1="6.096" y1="2.54" x2="6.604" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4372. <wire x1="6.096" y1="-2.54" x2="6.604" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4373. <wire x1="-6.604" y1="-2.032" x2="-6.096" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4374. <wire x1="-6.604" y1="2.032" x2="-6.096" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4375. <pad name="1" x="-5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4376. <pad name="2" x="5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4377. <text x="-5.08" y="2.794" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4378. <text x="-1.524" y="-1.905" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4379. </package>
  4380. <package name="C10B6">
  4381. <description>&lt;B&gt;MKS4&lt;/B&gt;, 13.4 x 6 mm, grid 10.16 mm</description>
  4382. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4383. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  4384. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  4385. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4386. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4387. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4388. <wire x1="-6.096" y1="3.048" x2="6.096" y2="3.048" width="0.1524" layer="21"/>
  4389. <wire x1="6.604" y1="2.54" x2="6.604" y2="-2.54" width="0.1524" layer="21"/>
  4390. <wire x1="6.096" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
  4391. <wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
  4392. <wire x1="6.096" y1="3.048" x2="6.604" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4393. <wire x1="6.096" y1="-3.048" x2="6.604" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4394. <wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4395. <wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4396. <pad name="1" x="-5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4397. <pad name="2" x="5.08" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4398. <text x="-5.08" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4399. <text x="-1.524" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4400. </package>
  4401. <package name="C15B5">
  4402. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 5 mm, grid 15 mm</description>
  4403. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4404. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4405. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4406. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4407. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4408. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4409. <wire x1="9.017" y1="2.032" x2="9.017" y2="-2.032" width="0.1524" layer="21"/>
  4410. <wire x1="8.509" y1="-2.54" x2="-8.509" y2="-2.54" width="0.1524" layer="21"/>
  4411. <wire x1="-9.017" y1="-2.032" x2="-9.017" y2="2.032" width="0.1524" layer="21"/>
  4412. <wire x1="-8.509" y1="2.54" x2="8.509" y2="2.54" width="0.1524" layer="21"/>
  4413. <wire x1="8.509" y1="2.54" x2="9.017" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4414. <wire x1="8.509" y1="-2.54" x2="9.017" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4415. <wire x1="-9.017" y1="-2.032" x2="-8.509" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4416. <wire x1="-9.017" y1="2.032" x2="-8.509" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4417. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4418. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4419. <text x="-7.493" y="2.794" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  4420. <text x="-3.429" y="-2.032" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  4421. </package>
  4422. <package name="C15B6">
  4423. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 6 mm, grid 15 mm</description>
  4424. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4425. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4426. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4427. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4428. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4429. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4430. <wire x1="9.017" y1="2.54" x2="9.017" y2="-2.54" width="0.1524" layer="21"/>
  4431. <wire x1="8.509" y1="-3.048" x2="-8.509" y2="-3.048" width="0.1524" layer="21"/>
  4432. <wire x1="-9.017" y1="-2.54" x2="-9.017" y2="2.54" width="0.1524" layer="21"/>
  4433. <wire x1="-8.509" y1="3.048" x2="8.509" y2="3.048" width="0.1524" layer="21"/>
  4434. <wire x1="8.509" y1="3.048" x2="9.017" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4435. <wire x1="8.509" y1="-3.048" x2="9.017" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4436. <wire x1="-9.017" y1="-2.54" x2="-8.509" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4437. <wire x1="-9.017" y1="2.54" x2="-8.509" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4438. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4439. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4440. <text x="-7.493" y="3.302" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  4441. <text x="-3.429" y="-2.032" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  4442. </package>
  4443. <package name="C15B7">
  4444. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 7 mm, grid 15 mm</description>
  4445. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4446. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4447. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4448. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4449. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4450. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4451. <wire x1="9.017" y1="3.048" x2="9.017" y2="-3.048" width="0.1524" layer="21"/>
  4452. <wire x1="8.509" y1="-3.556" x2="-8.509" y2="-3.556" width="0.1524" layer="21"/>
  4453. <wire x1="-9.017" y1="-3.048" x2="-9.017" y2="3.048" width="0.1524" layer="21"/>
  4454. <wire x1="-8.509" y1="3.556" x2="8.509" y2="3.556" width="0.1524" layer="21"/>
  4455. <wire x1="8.509" y1="3.556" x2="9.017" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4456. <wire x1="8.509" y1="-3.556" x2="9.017" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4457. <wire x1="-9.017" y1="-3.048" x2="-8.509" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4458. <wire x1="-9.017" y1="3.048" x2="-8.509" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4459. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4460. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4461. <text x="-7.493" y="3.81" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  4462. <text x="-3.429" y="-2.286" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  4463. </package>
  4464. <package name="C15B8">
  4465. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 8 mm, grid 15 mm</description>
  4466. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4467. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4468. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4469. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4470. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4471. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4472. <wire x1="9.017" y1="3.556" x2="9.017" y2="-3.556" width="0.1524" layer="21"/>
  4473. <wire x1="8.509" y1="-4.064" x2="-8.509" y2="-4.064" width="0.1524" layer="21"/>
  4474. <wire x1="-9.017" y1="-3.556" x2="-9.017" y2="3.556" width="0.1524" layer="21"/>
  4475. <wire x1="-8.509" y1="4.064" x2="8.509" y2="4.064" width="0.1524" layer="21"/>
  4476. <wire x1="8.509" y1="4.064" x2="9.017" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4477. <wire x1="8.509" y1="-4.064" x2="9.017" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4478. <wire x1="-9.017" y1="-3.556" x2="-8.509" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  4479. <wire x1="-9.017" y1="3.556" x2="-8.509" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  4480. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4481. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4482. <text x="-7.493" y="4.318" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  4483. <text x="-3.429" y="-2.54" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  4484. </package>
  4485. <package name="C15B9">
  4486. <description>&lt;B&gt;MKS4&lt;/B&gt;, 18 x 9 mm, grid 15 mm</description>
  4487. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4488. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4489. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4490. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4491. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4492. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4493. <wire x1="9.017" y1="3.937" x2="9.017" y2="-3.937" width="0.1524" layer="21"/>
  4494. <wire x1="8.509" y1="-4.445" x2="-8.509" y2="-4.445" width="0.1524" layer="21"/>
  4495. <wire x1="-9.017" y1="-3.937" x2="-9.017" y2="3.937" width="0.1524" layer="21"/>
  4496. <wire x1="-8.509" y1="4.445" x2="8.509" y2="4.445" width="0.1524" layer="21"/>
  4497. <wire x1="8.509" y1="4.445" x2="9.017" y2="3.937" width="0.1524" layer="21" curve="-90"/>
  4498. <wire x1="8.509" y1="-4.445" x2="9.017" y2="-3.937" width="0.1524" layer="21" curve="90"/>
  4499. <wire x1="-9.017" y1="-3.937" x2="-8.509" y2="-4.445" width="0.1524" layer="21" curve="90"/>
  4500. <wire x1="-9.017" y1="3.937" x2="-8.509" y2="4.445" width="0.1524" layer="21" curve="-90"/>
  4501. <pad name="1" x="-7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4502. <pad name="2" x="7.493" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  4503. <text x="-7.493" y="4.699" size="1.397" layer="25" ratio="10">&gt;NAME</text>
  4504. <text x="-3.429" y="-2.54" size="1.397" layer="27" ratio="10">&gt;VALUE</text>
  4505. </package>
  4506. <package name="C2.5-2">
  4507. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 2.5 mm, grid 2.54 mm</description>
  4508. <wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
  4509. <wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
  4510. <wire x1="2.413" y1="1.016" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
  4511. <wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  4512. <wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  4513. <wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  4514. <wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  4515. <wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  4516. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4517. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4518. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4519. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4520. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4521. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4522. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4523. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  4524. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4525. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4526. <text x="-1.651" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4527. <text x="-1.651" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4528. </package>
  4529. <package name="C2.5-4">
  4530. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 4 mm, grid 2.54 mm</description>
  4531. <wire x1="-2.159" y1="1.905" x2="2.159" y2="1.905" width="0.1524" layer="21"/>
  4532. <wire x1="2.159" y1="-1.905" x2="-2.159" y2="-1.905" width="0.1524" layer="21"/>
  4533. <wire x1="2.413" y1="1.651" x2="2.413" y2="-1.651" width="0.1524" layer="21"/>
  4534. <wire x1="-2.413" y1="1.651" x2="-2.413" y2="-1.651" width="0.1524" layer="21"/>
  4535. <wire x1="2.159" y1="1.905" x2="2.413" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  4536. <wire x1="-2.413" y1="1.651" x2="-2.159" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  4537. <wire x1="2.159" y1="-1.905" x2="2.413" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  4538. <wire x1="-2.413" y1="-1.651" x2="-2.159" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  4539. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4540. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4541. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4542. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4543. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4544. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4545. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4546. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  4547. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4548. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4549. <text x="-1.651" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4550. <text x="-1.651" y="-3.429" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4551. </package>
  4552. <package name="C2.5-5">
  4553. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 5 mm, grid 2.54 mm</description>
  4554. <wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
  4555. <wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
  4556. <wire x1="2.413" y1="2.032" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
  4557. <wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
  4558. <wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4559. <wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  4560. <wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4561. <wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  4562. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4563. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4564. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4565. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4566. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4567. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4568. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4569. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  4570. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4571. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4572. <text x="-1.778" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4573. <text x="-1.778" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4574. </package>
  4575. <package name="C2.5-6">
  4576. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 6 mm, grid 2.54 mm</description>
  4577. <wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
  4578. <wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
  4579. <wire x1="2.413" y1="2.54" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
  4580. <wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
  4581. <wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4582. <wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  4583. <wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4584. <wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  4585. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  4586. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  4587. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  4588. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  4589. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  4590. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  4591. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  4592. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  4593. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4594. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4595. <text x="2.667" y="0.762" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4596. <text x="-1.905" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4597. </package>
  4598. <package name="C22.5B10">
  4599. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 10 mm, grid 22.5 mm</description>
  4600. <wire x1="-12.827" y1="5.334" x2="12.827" y2="5.334" width="0.1524" layer="21"/>
  4601. <wire x1="13.335" y1="4.826" x2="13.335" y2="-4.826" width="0.1524" layer="21"/>
  4602. <wire x1="12.827" y1="-5.334" x2="-12.827" y2="-5.334" width="0.1524" layer="21"/>
  4603. <wire x1="-13.335" y1="-4.826" x2="-13.335" y2="4.826" width="0.1524" layer="21"/>
  4604. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4605. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4606. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4607. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4608. <wire x1="12.827" y1="5.334" x2="13.335" y2="4.826" width="0.1524" layer="21" curve="-90"/>
  4609. <wire x1="12.827" y1="-5.334" x2="13.335" y2="-4.826" width="0.1524" layer="21" curve="90"/>
  4610. <wire x1="-13.335" y1="-4.826" x2="-12.827" y2="-5.334" width="0.1524" layer="21" curve="90"/>
  4611. <wire x1="-13.335" y1="4.826" x2="-12.827" y2="5.334" width="0.1524" layer="21" curve="-90"/>
  4612. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4613. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4614. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4615. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4616. <text x="-11.303" y="5.588" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4617. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4618. </package>
  4619. <package name="C22.5B11">
  4620. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 11 mm, grid 22.5 mm</description>
  4621. <wire x1="-12.827" y1="5.588" x2="12.827" y2="5.588" width="0.1524" layer="21"/>
  4622. <wire x1="13.335" y1="5.08" x2="13.335" y2="-5.08" width="0.1524" layer="21"/>
  4623. <wire x1="12.827" y1="-5.588" x2="-12.827" y2="-5.588" width="0.1524" layer="21"/>
  4624. <wire x1="-13.335" y1="-5.08" x2="-13.335" y2="5.08" width="0.1524" layer="21"/>
  4625. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4626. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4627. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4628. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4629. <wire x1="12.827" y1="5.588" x2="13.335" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  4630. <wire x1="12.827" y1="-5.588" x2="13.335" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  4631. <wire x1="-13.335" y1="-5.08" x2="-12.827" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  4632. <wire x1="-13.335" y1="5.08" x2="-12.827" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  4633. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4634. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4635. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4636. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4637. <text x="-11.303" y="5.842" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4638. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4639. </package>
  4640. <package name="C22.5B6">
  4641. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 6 mm, grid 22.5 mm</description>
  4642. <wire x1="-12.827" y1="3.048" x2="12.827" y2="3.048" width="0.1524" layer="21"/>
  4643. <wire x1="13.335" y1="2.54" x2="13.335" y2="-2.54" width="0.1524" layer="21"/>
  4644. <wire x1="12.827" y1="-3.048" x2="-12.827" y2="-3.048" width="0.1524" layer="21"/>
  4645. <wire x1="-13.335" y1="-2.54" x2="-13.335" y2="2.54" width="0.1524" layer="21"/>
  4646. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4647. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4648. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4649. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4650. <wire x1="12.827" y1="3.048" x2="13.335" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4651. <wire x1="12.827" y1="-3.048" x2="13.335" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4652. <wire x1="-13.335" y1="-2.54" x2="-12.827" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4653. <wire x1="-13.335" y1="2.54" x2="-12.827" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4654. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4655. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4656. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4657. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4658. <text x="-11.303" y="3.302" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4659. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4660. </package>
  4661. <package name="C22.5B7">
  4662. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 7 mm, grid 22.5 mm</description>
  4663. <wire x1="-12.827" y1="3.556" x2="12.827" y2="3.556" width="0.1524" layer="21"/>
  4664. <wire x1="13.335" y1="3.048" x2="13.335" y2="-3.048" width="0.1524" layer="21"/>
  4665. <wire x1="12.827" y1="-3.556" x2="-12.827" y2="-3.556" width="0.1524" layer="21"/>
  4666. <wire x1="-13.335" y1="-3.048" x2="-13.335" y2="3.048" width="0.1524" layer="21"/>
  4667. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4668. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4669. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4670. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4671. <wire x1="12.827" y1="3.556" x2="13.335" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4672. <wire x1="12.827" y1="-3.556" x2="13.335" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4673. <wire x1="-13.335" y1="-3.048" x2="-12.827" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4674. <wire x1="-13.335" y1="3.048" x2="-12.827" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4675. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4676. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4677. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4678. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4679. <text x="-11.303" y="3.81" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4680. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4681. </package>
  4682. <package name="C22.5B8">
  4683. <description>&lt;B&gt;MKS4&lt;/B&gt;, 27 x 8 mm, grid 22.5 mm</description>
  4684. <wire x1="-12.827" y1="4.318" x2="12.827" y2="4.318" width="0.1524" layer="21"/>
  4685. <wire x1="13.335" y1="3.81" x2="13.335" y2="-3.81" width="0.1524" layer="21"/>
  4686. <wire x1="12.827" y1="-4.318" x2="-12.827" y2="-4.318" width="0.1524" layer="21"/>
  4687. <wire x1="-13.335" y1="-3.81" x2="-13.335" y2="3.81" width="0.1524" layer="21"/>
  4688. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4689. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4690. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4691. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4692. <wire x1="12.827" y1="4.318" x2="13.335" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  4693. <wire x1="12.827" y1="-4.318" x2="13.335" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  4694. <wire x1="-13.335" y1="-3.81" x2="-12.827" y2="-4.318" width="0.1524" layer="21" curve="90"/>
  4695. <wire x1="-13.335" y1="3.81" x2="-12.827" y2="4.318" width="0.1524" layer="21" curve="-90"/>
  4696. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4697. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4698. <pad name="1" x="-11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4699. <pad name="2" x="11.303" y="0" drill="1.016" diameter="2.54" shape="octagon"/>
  4700. <text x="-11.303" y="4.572" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4701. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4702. </package>
  4703. <package name="C27.5B11">
  4704. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 11 mm, grid 27.5 mm</description>
  4705. <wire x1="-15.24" y1="5.588" x2="15.24" y2="5.588" width="0.1524" layer="21"/>
  4706. <wire x1="15.748" y1="5.08" x2="15.748" y2="-5.08" width="0.1524" layer="21"/>
  4707. <wire x1="15.24" y1="-5.588" x2="-15.24" y2="-5.588" width="0.1524" layer="21"/>
  4708. <wire x1="-15.748" y1="-5.08" x2="-15.748" y2="5.08" width="0.1524" layer="21"/>
  4709. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4710. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4711. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4712. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4713. <wire x1="15.24" y1="5.588" x2="15.748" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  4714. <wire x1="15.24" y1="-5.588" x2="15.748" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  4715. <wire x1="-15.748" y1="-5.08" x2="-15.24" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  4716. <wire x1="-15.748" y1="5.08" x2="-15.24" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  4717. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4718. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4719. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4720. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4721. <text x="-13.716" y="5.842" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4722. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4723. </package>
  4724. <package name="C27.5B13">
  4725. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 13 mm, grid 27.5 mm</description>
  4726. <wire x1="-15.24" y1="6.604" x2="15.24" y2="6.604" width="0.1524" layer="21"/>
  4727. <wire x1="15.748" y1="6.096" x2="15.748" y2="-6.096" width="0.1524" layer="21"/>
  4728. <wire x1="15.24" y1="-6.604" x2="-15.24" y2="-6.604" width="0.1524" layer="21"/>
  4729. <wire x1="-15.748" y1="-6.096" x2="-15.748" y2="6.096" width="0.1524" layer="21"/>
  4730. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4731. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4732. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4733. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4734. <wire x1="15.24" y1="6.604" x2="15.748" y2="6.096" width="0.1524" layer="21" curve="-90"/>
  4735. <wire x1="15.24" y1="-6.604" x2="15.748" y2="-6.096" width="0.1524" layer="21" curve="90"/>
  4736. <wire x1="-15.748" y1="-6.096" x2="-15.24" y2="-6.604" width="0.1524" layer="21" curve="90"/>
  4737. <wire x1="-15.748" y1="6.096" x2="-15.24" y2="6.604" width="0.1524" layer="21" curve="-90"/>
  4738. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4739. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4740. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4741. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4742. <text x="-13.716" y="6.858" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4743. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4744. </package>
  4745. <package name="C27.5B15">
  4746. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 15 mm, grid 27.5 mm</description>
  4747. <wire x1="-15.24" y1="7.62" x2="15.24" y2="7.62" width="0.1524" layer="21"/>
  4748. <wire x1="15.748" y1="7.112" x2="15.748" y2="-7.112" width="0.1524" layer="21"/>
  4749. <wire x1="15.24" y1="-7.62" x2="-15.24" y2="-7.62" width="0.1524" layer="21"/>
  4750. <wire x1="-15.748" y1="-7.112" x2="-15.748" y2="7.112" width="0.1524" layer="21"/>
  4751. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4752. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4753. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4754. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4755. <wire x1="15.24" y1="7.62" x2="15.748" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  4756. <wire x1="15.24" y1="-7.62" x2="15.748" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  4757. <wire x1="-15.748" y1="-7.112" x2="-15.24" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  4758. <wire x1="-15.748" y1="7.112" x2="-15.24" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  4759. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4760. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4761. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4762. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4763. <text x="-13.716" y="7.874" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4764. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4765. </package>
  4766. <package name="C27.5B17">
  4767. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 17 mm, grid 27.5 mm</description>
  4768. <wire x1="-15.24" y1="8.509" x2="15.24" y2="8.509" width="0.1524" layer="21"/>
  4769. <wire x1="15.748" y1="8.001" x2="15.748" y2="-8.001" width="0.1524" layer="21"/>
  4770. <wire x1="15.24" y1="-8.509" x2="-15.24" y2="-8.509" width="0.1524" layer="21"/>
  4771. <wire x1="-15.748" y1="-8.001" x2="-15.748" y2="8.001" width="0.1524" layer="21"/>
  4772. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4773. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4774. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4775. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4776. <wire x1="15.24" y1="8.509" x2="15.748" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  4777. <wire x1="15.24" y1="-8.509" x2="15.748" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  4778. <wire x1="-15.748" y1="-8.001" x2="-15.24" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  4779. <wire x1="-15.748" y1="8.001" x2="-15.24" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  4780. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4781. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4782. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4783. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4784. <text x="-13.716" y="8.763" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4785. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4786. </package>
  4787. <package name="C27.5B20">
  4788. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 20 mm, grid 27.5 mm</description>
  4789. <wire x1="-15.24" y1="10.16" x2="15.24" y2="10.16" width="0.1524" layer="21"/>
  4790. <wire x1="15.748" y1="9.652" x2="15.748" y2="-9.652" width="0.1524" layer="21"/>
  4791. <wire x1="15.24" y1="-10.16" x2="-15.24" y2="-10.16" width="0.1524" layer="21"/>
  4792. <wire x1="-15.748" y1="-9.652" x2="-15.748" y2="9.652" width="0.1524" layer="21"/>
  4793. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4794. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4795. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4796. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4797. <wire x1="15.24" y1="10.16" x2="15.748" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  4798. <wire x1="15.24" y1="-10.16" x2="15.748" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  4799. <wire x1="-15.748" y1="-9.652" x2="-15.24" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  4800. <wire x1="-15.748" y1="9.652" x2="-15.24" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  4801. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4802. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4803. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4804. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4805. <text x="-13.589" y="10.414" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4806. <text x="-5.08" y="-4.318" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4807. </package>
  4808. <package name="C27.5B9">
  4809. <description>&lt;B&gt;MKS4&lt;/B&gt;, 31.6 x 9 mm, grid 27.5 mm</description>
  4810. <wire x1="-15.24" y1="4.572" x2="15.24" y2="4.572" width="0.1524" layer="21"/>
  4811. <wire x1="15.748" y1="4.064" x2="15.748" y2="-4.064" width="0.1524" layer="21"/>
  4812. <wire x1="15.24" y1="-4.572" x2="-15.24" y2="-4.572" width="0.1524" layer="21"/>
  4813. <wire x1="-15.748" y1="-4.064" x2="-15.748" y2="4.064" width="0.1524" layer="21"/>
  4814. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4815. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4816. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4817. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4818. <wire x1="15.24" y1="4.572" x2="15.748" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  4819. <wire x1="15.24" y1="-4.572" x2="15.748" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  4820. <wire x1="-15.748" y1="-4.064" x2="-15.24" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  4821. <wire x1="-15.748" y1="4.064" x2="-15.24" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  4822. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4823. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4824. <pad name="1" x="-13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4825. <pad name="2" x="13.716" y="0" drill="1.1938" diameter="3.1496" shape="octagon"/>
  4826. <text x="-13.589" y="4.826" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4827. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4828. </package>
  4829. <package name="C37.5B15">
  4830. <description>&lt;B&gt;MKP4&lt;/B&gt;, 42 x 15 mm, grid 37.5 mm</description>
  4831. <wire x1="-20.32" y1="7.62" x2="20.32" y2="7.62" width="0.1524" layer="21"/>
  4832. <wire x1="20.828" y1="7.112" x2="20.828" y2="-7.112" width="0.1524" layer="21"/>
  4833. <wire x1="20.32" y1="-7.62" x2="-20.32" y2="-7.62" width="0.1524" layer="21"/>
  4834. <wire x1="-20.828" y1="-7.112" x2="-20.828" y2="7.112" width="0.1524" layer="21"/>
  4835. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4836. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4837. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4838. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4839. <wire x1="20.32" y1="7.62" x2="20.828" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  4840. <wire x1="20.32" y1="-7.62" x2="20.828" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  4841. <wire x1="-20.828" y1="-7.112" x2="-20.32" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  4842. <wire x1="-20.828" y1="7.112" x2="-20.32" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  4843. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4844. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4845. <pad name="1" x="-18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4846. <pad name="2" x="18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4847. <text x="-18.796" y="7.874" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4848. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4849. </package>
  4850. <package name="C37.5B19">
  4851. <description>&lt;B&gt;MKP4&lt;/B&gt;, 42 x 19 mm, grid 37.5 mm</description>
  4852. <wire x1="-20.32" y1="8.509" x2="20.32" y2="8.509" width="0.1524" layer="21"/>
  4853. <wire x1="20.828" y1="8.001" x2="20.828" y2="-8.001" width="0.1524" layer="21"/>
  4854. <wire x1="20.32" y1="-8.509" x2="-20.32" y2="-8.509" width="0.1524" layer="21"/>
  4855. <wire x1="-20.828" y1="-8.001" x2="-20.828" y2="8.001" width="0.1524" layer="21"/>
  4856. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4857. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4858. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4859. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4860. <wire x1="20.32" y1="8.509" x2="20.828" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  4861. <wire x1="20.32" y1="-8.509" x2="20.828" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  4862. <wire x1="-20.828" y1="-8.001" x2="-20.32" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  4863. <wire x1="-20.828" y1="8.001" x2="-20.32" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  4864. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4865. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4866. <pad name="1" x="-18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4867. <pad name="2" x="18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4868. <text x="-18.796" y="8.89" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4869. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4870. </package>
  4871. <package name="C37.5B20">
  4872. <description>&lt;B&gt;MKP4&lt;/B&gt;, 42 x 20 mm, grid 37.5 mm</description>
  4873. <wire x1="-20.32" y1="10.16" x2="20.32" y2="10.16" width="0.1524" layer="21"/>
  4874. <wire x1="20.828" y1="9.652" x2="20.828" y2="-9.652" width="0.1524" layer="21"/>
  4875. <wire x1="20.32" y1="-10.16" x2="-20.32" y2="-10.16" width="0.1524" layer="21"/>
  4876. <wire x1="-20.828" y1="-9.652" x2="-20.828" y2="9.652" width="0.1524" layer="21"/>
  4877. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4878. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4879. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4880. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4881. <wire x1="20.32" y1="10.16" x2="20.828" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  4882. <wire x1="20.32" y1="-10.16" x2="20.828" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  4883. <wire x1="-20.828" y1="-9.652" x2="-20.32" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  4884. <wire x1="-20.828" y1="9.652" x2="-20.32" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  4885. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4886. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4887. <pad name="1" x="-18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4888. <pad name="2" x="18.796" y="0" drill="1.3208" diameter="3.1496" shape="octagon"/>
  4889. <text x="-18.796" y="10.414" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4890. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4891. </package>
  4892. <package name="C5B2.5">
  4893. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 2.5 mm, grid 5.08 mm</description>
  4894. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4895. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4896. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4897. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4898. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4899. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4900. <wire x1="-3.683" y1="1.016" x2="-3.683" y2="-1.016" width="0.1524" layer="21"/>
  4901. <wire x1="-3.429" y1="-1.27" x2="3.429" y2="-1.27" width="0.1524" layer="21"/>
  4902. <wire x1="3.683" y1="-1.016" x2="3.683" y2="1.016" width="0.1524" layer="21"/>
  4903. <wire x1="3.429" y1="1.27" x2="-3.429" y2="1.27" width="0.1524" layer="21"/>
  4904. <wire x1="3.429" y1="1.27" x2="3.683" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  4905. <wire x1="3.429" y1="-1.27" x2="3.683" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  4906. <wire x1="-3.683" y1="-1.016" x2="-3.429" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  4907. <wire x1="-3.683" y1="1.016" x2="-3.429" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  4908. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4909. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4910. <text x="-2.032" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4911. <text x="-2.032" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4912. </package>
  4913. <package name="C5B3">
  4914. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 3 mm, grid 5.08 mm</description>
  4915. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4916. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4917. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4918. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4919. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4920. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4921. <wire x1="-3.683" y1="1.27" x2="-3.683" y2="-1.27" width="0.1524" layer="21"/>
  4922. <wire x1="-3.429" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  4923. <wire x1="3.683" y1="-1.27" x2="3.683" y2="1.27" width="0.1524" layer="21"/>
  4924. <wire x1="3.429" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  4925. <wire x1="3.429" y1="1.524" x2="3.683" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  4926. <wire x1="3.429" y1="-1.524" x2="3.683" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  4927. <wire x1="-3.683" y1="-1.27" x2="-3.429" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4928. <wire x1="-3.683" y1="1.27" x2="-3.429" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4929. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4930. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4931. <text x="-2.54" y="1.778" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4932. <text x="-2.54" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4933. </package>
  4934. <package name="C5B3.5">
  4935. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 4 mm, grid 5.08 mm</description>
  4936. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4937. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4938. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4939. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4940. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4941. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4942. <wire x1="-3.683" y1="1.524" x2="-3.683" y2="-1.524" width="0.1524" layer="21"/>
  4943. <wire x1="-3.429" y1="-1.778" x2="3.429" y2="-1.778" width="0.1524" layer="21"/>
  4944. <wire x1="3.683" y1="-1.524" x2="3.683" y2="1.524" width="0.1524" layer="21"/>
  4945. <wire x1="3.429" y1="1.778" x2="-3.429" y2="1.778" width="0.1524" layer="21"/>
  4946. <wire x1="3.429" y1="1.778" x2="3.683" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4947. <wire x1="3.429" y1="-1.778" x2="3.683" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4948. <wire x1="-3.683" y1="-1.524" x2="-3.429" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  4949. <wire x1="-3.683" y1="1.524" x2="-3.429" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  4950. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4951. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4952. <text x="-2.54" y="2.032" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4953. <text x="-2.54" y="-3.302" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4954. </package>
  4955. <package name="C5B4.5">
  4956. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 4.5 mm, grid 5.08 mm</description>
  4957. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4958. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4959. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4960. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4961. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4962. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4963. <wire x1="-3.683" y1="2.032" x2="-3.683" y2="-2.032" width="0.1524" layer="21"/>
  4964. <wire x1="-3.429" y1="-2.286" x2="3.429" y2="-2.286" width="0.1524" layer="21"/>
  4965. <wire x1="3.683" y1="-2.032" x2="3.683" y2="2.032" width="0.1524" layer="21"/>
  4966. <wire x1="3.429" y1="2.286" x2="-3.429" y2="2.286" width="0.1524" layer="21"/>
  4967. <wire x1="3.429" y1="2.286" x2="3.683" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4968. <wire x1="3.429" y1="-2.286" x2="3.683" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4969. <wire x1="-3.683" y1="-2.032" x2="-3.429" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  4970. <wire x1="-3.683" y1="2.032" x2="-3.429" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  4971. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4972. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4973. <text x="-2.54" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4974. <text x="-2.54" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4975. </package>
  4976. <package name="C5B5">
  4977. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 5 mm, grid 5.08 mm</description>
  4978. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4979. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4980. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4981. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4982. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4983. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4984. <wire x1="-3.683" y1="2.286" x2="-3.683" y2="-2.286" width="0.1524" layer="21"/>
  4985. <wire x1="-3.429" y1="-2.54" x2="3.429" y2="-2.54" width="0.1524" layer="21"/>
  4986. <wire x1="3.683" y1="-2.286" x2="3.683" y2="2.286" width="0.1524" layer="21"/>
  4987. <wire x1="3.429" y1="2.54" x2="-3.429" y2="2.54" width="0.1524" layer="21"/>
  4988. <wire x1="3.429" y1="2.54" x2="3.683" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  4989. <wire x1="3.429" y1="-2.54" x2="3.683" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  4990. <wire x1="-3.683" y1="-2.286" x2="-3.429" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4991. <wire x1="-3.683" y1="2.286" x2="-3.429" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4992. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4993. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  4994. <text x="-2.54" y="2.794" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4995. <text x="-2.54" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4996. </package>
  4997. <package name="C5B5.5">
  4998. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 5.5 mm, grid 5.08 mm</description>
  4999. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  5000. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  5001. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  5002. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  5003. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  5004. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  5005. <wire x1="-3.683" y1="2.54" x2="-3.683" y2="-2.54" width="0.1524" layer="21"/>
  5006. <wire x1="-3.429" y1="-2.794" x2="3.429" y2="-2.794" width="0.1524" layer="21"/>
  5007. <wire x1="3.683" y1="-2.54" x2="3.683" y2="2.54" width="0.1524" layer="21"/>
  5008. <wire x1="3.429" y1="2.794" x2="-3.429" y2="2.794" width="0.1524" layer="21"/>
  5009. <wire x1="3.429" y1="2.794" x2="3.683" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5010. <wire x1="3.429" y1="-2.794" x2="3.683" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5011. <wire x1="-3.683" y1="-2.54" x2="-3.429" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  5012. <wire x1="-3.683" y1="2.54" x2="-3.429" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  5013. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5014. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5015. <text x="-2.54" y="3.048" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5016. <text x="-2.54" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5017. </package>
  5018. <package name="C5B7.2">
  5019. <description>&lt;B&gt;MKS2&lt;/B&gt;, 7.5 x 7.2 mm, grid 5.08 mm</description>
  5020. <wire x1="-1.524" y1="0" x2="-0.4572" y2="0" width="0.1524" layer="21"/>
  5021. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="0.762" width="0.4064" layer="21"/>
  5022. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="-0.762" width="0.4064" layer="21"/>
  5023. <wire x1="0.4318" y1="0.762" x2="0.4318" y2="0" width="0.4064" layer="21"/>
  5024. <wire x1="0.4318" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  5025. <wire x1="0.4318" y1="0" x2="0.4318" y2="-0.762" width="0.4064" layer="21"/>
  5026. <wire x1="-3.683" y1="3.429" x2="-3.683" y2="-3.429" width="0.1524" layer="21"/>
  5027. <wire x1="-3.429" y1="-3.683" x2="3.429" y2="-3.683" width="0.1524" layer="21"/>
  5028. <wire x1="3.683" y1="-3.429" x2="3.683" y2="3.429" width="0.1524" layer="21"/>
  5029. <wire x1="3.429" y1="3.683" x2="-3.429" y2="3.683" width="0.1524" layer="21"/>
  5030. <wire x1="3.429" y1="3.683" x2="3.683" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  5031. <wire x1="3.429" y1="-3.683" x2="3.683" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  5032. <wire x1="-3.683" y1="-3.429" x2="-3.429" y2="-3.683" width="0.1524" layer="21" curve="90"/>
  5033. <wire x1="-3.683" y1="3.429" x2="-3.429" y2="3.683" width="0.1524" layer="21" curve="-90"/>
  5034. <pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5035. <pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5036. <text x="-2.54" y="4.064" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5037. <text x="-3.175" y="-2.921" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5038. </package>
  5039. <package name="C7.5B3">
  5040. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 3 mm, grid 7.62 mm</description>
  5041. <wire x1="4.826" y1="1.524" x2="-4.826" y2="1.524" width="0.1524" layer="21"/>
  5042. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="-1.27" width="0.1524" layer="21"/>
  5043. <wire x1="-4.826" y1="-1.524" x2="4.826" y2="-1.524" width="0.1524" layer="21"/>
  5044. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.1524" layer="21"/>
  5045. <wire x1="4.826" y1="1.524" x2="5.08" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  5046. <wire x1="4.826" y1="-1.524" x2="5.08" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  5047. <wire x1="-5.08" y1="-1.27" x2="-4.826" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  5048. <wire x1="-5.08" y1="1.27" x2="-4.826" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  5049. <wire x1="0.508" y1="0" x2="2.54" y2="0" width="0.1524" layer="21"/>
  5050. <wire x1="-2.54" y1="0" x2="-0.508" y2="0" width="0.1524" layer="21"/>
  5051. <wire x1="-0.508" y1="0.889" x2="-0.508" y2="0" width="0.4064" layer="21"/>
  5052. <wire x1="-0.508" y1="0" x2="-0.508" y2="-0.889" width="0.4064" layer="21"/>
  5053. <wire x1="0.508" y1="0.889" x2="0.508" y2="0" width="0.4064" layer="21"/>
  5054. <wire x1="0.508" y1="0" x2="0.508" y2="-0.889" width="0.4064" layer="21"/>
  5055. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5056. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5057. <text x="-3.81" y="1.778" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5058. <text x="-3.81" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5059. </package>
  5060. <package name="C7.5B4">
  5061. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 4 mm, grid 7.62 mm</description>
  5062. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  5063. <wire x1="-5.08" y1="1.778" x2="-5.08" y2="-1.778" width="0.1524" layer="21"/>
  5064. <wire x1="-4.826" y1="-2.032" x2="4.826" y2="-2.032" width="0.1524" layer="21"/>
  5065. <wire x1="5.08" y1="-1.778" x2="5.08" y2="1.778" width="0.1524" layer="21"/>
  5066. <wire x1="4.826" y1="2.032" x2="5.08" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  5067. <wire x1="4.826" y1="-2.032" x2="5.08" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  5068. <wire x1="-5.08" y1="-1.778" x2="-4.826" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  5069. <wire x1="-5.08" y1="1.778" x2="-4.826" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  5070. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  5071. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  5072. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  5073. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  5074. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  5075. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  5076. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5077. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5078. <text x="-3.81" y="2.286" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5079. <text x="-3.81" y="-3.556" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5080. </package>
  5081. <package name="C7.5B5">
  5082. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 5 mm, grid 7.62 mm</description>
  5083. <wire x1="4.953" y1="2.54" x2="-4.953" y2="2.54" width="0.1524" layer="21"/>
  5084. <wire x1="-5.207" y1="2.286" x2="-5.207" y2="-2.286" width="0.1524" layer="21"/>
  5085. <wire x1="-4.953" y1="-2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
  5086. <wire x1="5.207" y1="-2.286" x2="5.207" y2="2.286" width="0.1524" layer="21"/>
  5087. <wire x1="4.953" y1="2.54" x2="5.207" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  5088. <wire x1="4.953" y1="-2.54" x2="5.207" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  5089. <wire x1="-5.207" y1="-2.286" x2="-4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  5090. <wire x1="-5.207" y1="2.286" x2="-4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  5091. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  5092. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  5093. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  5094. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  5095. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  5096. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  5097. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5098. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5099. <text x="-3.81" y="2.794" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5100. <text x="-3.81" y="-4.064" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5101. </package>
  5102. <package name="C7.5B6">
  5103. <description>&lt;B&gt;MKS3&lt;/B&gt;, 10 x 6 mm, grid 7.62 mm</description>
  5104. <wire x1="4.953" y1="3.048" x2="-4.953" y2="3.048" width="0.1524" layer="21"/>
  5105. <wire x1="-5.207" y1="2.794" x2="-5.207" y2="-2.794" width="0.1524" layer="21"/>
  5106. <wire x1="-4.953" y1="-3.048" x2="4.953" y2="-3.048" width="0.1524" layer="21"/>
  5107. <wire x1="5.207" y1="-2.794" x2="5.207" y2="2.794" width="0.1524" layer="21"/>
  5108. <wire x1="4.953" y1="3.048" x2="5.207" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  5109. <wire x1="4.953" y1="-3.048" x2="5.207" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  5110. <wire x1="-5.207" y1="-2.794" x2="-4.953" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  5111. <wire x1="-5.207" y1="2.794" x2="-4.953" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  5112. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  5113. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  5114. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  5115. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  5116. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  5117. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  5118. <pad name="1" x="-3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5119. <pad name="2" x="3.81" y="0" drill="0.9144" diameter="1.905" shape="octagon"/>
  5120. <text x="-3.683" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5121. <text x="-0.889" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5122. </package>
  5123. <package name="C2.5-3">
  5124. <description>&lt;B&gt;MKS2&lt;/B&gt;, 5 x 3 mm, grid 2.54 mm</description>
  5125. <wire x1="-2.159" y1="1.524" x2="2.159" y2="1.524" width="0.1524" layer="21"/>
  5126. <wire x1="2.159" y1="-1.524" x2="-2.159" y2="-1.524" width="0.1524" layer="21"/>
  5127. <wire x1="2.413" y1="1.27" x2="2.413" y2="-1.27" width="0.1524" layer="21"/>
  5128. <wire x1="-2.413" y1="1.27" x2="-2.413" y2="-1.27" width="0.1524" layer="21"/>
  5129. <wire x1="2.159" y1="1.524" x2="2.413" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  5130. <wire x1="-2.413" y1="1.27" x2="-2.159" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  5131. <wire x1="2.159" y1="-1.524" x2="2.413" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  5132. <wire x1="-2.413" y1="-1.27" x2="-2.159" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  5133. <wire x1="1.27" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  5134. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  5135. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  5136. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  5137. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  5138. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  5139. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  5140. <wire x1="-0.381" y1="0" x2="-1.27" y2="0" width="0.1524" layer="51"/>
  5141. <pad name="1" x="-1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5142. <pad name="2" x="1.27" y="0" drill="0.8128" diameter="1.6002" shape="octagon"/>
  5143. <text x="-1.651" y="1.778" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5144. <text x="-1.651" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5145. </package>
  5146. </packages>
  5147. <symbols>
  5148. <symbol name="C">
  5149. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  5150. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  5151. <text x="1.524" y="0.381" size="1.778" layer="95">&gt;NAME</text>
  5152. <text x="1.524" y="-4.699" size="1.778" layer="96">&gt;VALUE</text>
  5153. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  5154. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  5155. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  5156. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  5157. </symbol>
  5158. </symbols>
  5159. <devicesets>
  5160. <deviceset name="C" prefix="C" uservalue="yes">
  5161. <description>&lt;B&gt;CAPACITOR&lt;/B&gt;&lt;p&gt;
  5162. naming: grid - package width</description>
  5163. <gates>
  5164. <gate name="G$1" symbol="C" x="0" y="0"/>
  5165. </gates>
  5166. <devices>
  5167. <device name="10/4" package="C10B4">
  5168. <connects>
  5169. <connect gate="G$1" pin="1" pad="1"/>
  5170. <connect gate="G$1" pin="2" pad="2"/>
  5171. </connects>
  5172. <technologies>
  5173. <technology name=""/>
  5174. </technologies>
  5175. </device>
  5176. <device name="10/5" package="C10B5">
  5177. <connects>
  5178. <connect gate="G$1" pin="1" pad="1"/>
  5179. <connect gate="G$1" pin="2" pad="2"/>
  5180. </connects>
  5181. <technologies>
  5182. <technology name=""/>
  5183. </technologies>
  5184. </device>
  5185. <device name="10/6" package="C10B6">
  5186. <connects>
  5187. <connect gate="G$1" pin="1" pad="1"/>
  5188. <connect gate="G$1" pin="2" pad="2"/>
  5189. </connects>
  5190. <technologies>
  5191. <technology name=""/>
  5192. </technologies>
  5193. </device>
  5194. <device name="15/5" package="C15B5">
  5195. <connects>
  5196. <connect gate="G$1" pin="1" pad="1"/>
  5197. <connect gate="G$1" pin="2" pad="2"/>
  5198. </connects>
  5199. <technologies>
  5200. <technology name=""/>
  5201. </technologies>
  5202. </device>
  5203. <device name="15/6" package="C15B6">
  5204. <connects>
  5205. <connect gate="G$1" pin="1" pad="1"/>
  5206. <connect gate="G$1" pin="2" pad="2"/>
  5207. </connects>
  5208. <technologies>
  5209. <technology name=""/>
  5210. </technologies>
  5211. </device>
  5212. <device name="15/7" package="C15B7">
  5213. <connects>
  5214. <connect gate="G$1" pin="1" pad="1"/>
  5215. <connect gate="G$1" pin="2" pad="2"/>
  5216. </connects>
  5217. <technologies>
  5218. <technology name=""/>
  5219. </technologies>
  5220. </device>
  5221. <device name="15/8" package="C15B8">
  5222. <connects>
  5223. <connect gate="G$1" pin="1" pad="1"/>
  5224. <connect gate="G$1" pin="2" pad="2"/>
  5225. </connects>
  5226. <technologies>
  5227. <technology name=""/>
  5228. </technologies>
  5229. </device>
  5230. <device name="15/9" package="C15B9">
  5231. <connects>
  5232. <connect gate="G$1" pin="1" pad="1"/>
  5233. <connect gate="G$1" pin="2" pad="2"/>
  5234. </connects>
  5235. <technologies>
  5236. <technology name=""/>
  5237. </technologies>
  5238. </device>
  5239. <device name="2.5/2" package="C2.5-2">
  5240. <connects>
  5241. <connect gate="G$1" pin="1" pad="1"/>
  5242. <connect gate="G$1" pin="2" pad="2"/>
  5243. </connects>
  5244. <technologies>
  5245. <technology name=""/>
  5246. </technologies>
  5247. </device>
  5248. <device name="2.5/4" package="C2.5-4">
  5249. <connects>
  5250. <connect gate="G$1" pin="1" pad="1"/>
  5251. <connect gate="G$1" pin="2" pad="2"/>
  5252. </connects>
  5253. <technologies>
  5254. <technology name=""/>
  5255. </technologies>
  5256. </device>
  5257. <device name="2.5/5" package="C2.5-5">
  5258. <connects>
  5259. <connect gate="G$1" pin="1" pad="1"/>
  5260. <connect gate="G$1" pin="2" pad="2"/>
  5261. </connects>
  5262. <technologies>
  5263. <technology name=""/>
  5264. </technologies>
  5265. </device>
  5266. <device name="2.5/6" package="C2.5-6">
  5267. <connects>
  5268. <connect gate="G$1" pin="1" pad="1"/>
  5269. <connect gate="G$1" pin="2" pad="2"/>
  5270. </connects>
  5271. <technologies>
  5272. <technology name=""/>
  5273. </technologies>
  5274. </device>
  5275. <device name="22/10" package="C22.5B10">
  5276. <connects>
  5277. <connect gate="G$1" pin="1" pad="1"/>
  5278. <connect gate="G$1" pin="2" pad="2"/>
  5279. </connects>
  5280. <technologies>
  5281. <technology name=""/>
  5282. </technologies>
  5283. </device>
  5284. <device name="22/11" package="C22.5B11">
  5285. <connects>
  5286. <connect gate="G$1" pin="1" pad="1"/>
  5287. <connect gate="G$1" pin="2" pad="2"/>
  5288. </connects>
  5289. <technologies>
  5290. <technology name=""/>
  5291. </technologies>
  5292. </device>
  5293. <device name="22/6" package="C22.5B6">
  5294. <connects>
  5295. <connect gate="G$1" pin="1" pad="1"/>
  5296. <connect gate="G$1" pin="2" pad="2"/>
  5297. </connects>
  5298. <technologies>
  5299. <technology name=""/>
  5300. </technologies>
  5301. </device>
  5302. <device name="22/7" package="C22.5B7">
  5303. <connects>
  5304. <connect gate="G$1" pin="1" pad="1"/>
  5305. <connect gate="G$1" pin="2" pad="2"/>
  5306. </connects>
  5307. <technologies>
  5308. <technology name=""/>
  5309. </technologies>
  5310. </device>
  5311. <device name="22/8" package="C22.5B8">
  5312. <connects>
  5313. <connect gate="G$1" pin="1" pad="1"/>
  5314. <connect gate="G$1" pin="2" pad="2"/>
  5315. </connects>
  5316. <technologies>
  5317. <technology name=""/>
  5318. </technologies>
  5319. </device>
  5320. <device name="27/11" package="C27.5B11">
  5321. <connects>
  5322. <connect gate="G$1" pin="1" pad="1"/>
  5323. <connect gate="G$1" pin="2" pad="2"/>
  5324. </connects>
  5325. <technologies>
  5326. <technology name=""/>
  5327. </technologies>
  5328. </device>
  5329. <device name="27/13" package="C27.5B13">
  5330. <connects>
  5331. <connect gate="G$1" pin="1" pad="1"/>
  5332. <connect gate="G$1" pin="2" pad="2"/>
  5333. </connects>
  5334. <technologies>
  5335. <technology name=""/>
  5336. </technologies>
  5337. </device>
  5338. <device name="27/15" package="C27.5B15">
  5339. <connects>
  5340. <connect gate="G$1" pin="1" pad="1"/>
  5341. <connect gate="G$1" pin="2" pad="2"/>
  5342. </connects>
  5343. <technologies>
  5344. <technology name=""/>
  5345. </technologies>
  5346. </device>
  5347. <device name="27/17" package="C27.5B17">
  5348. <connects>
  5349. <connect gate="G$1" pin="1" pad="1"/>
  5350. <connect gate="G$1" pin="2" pad="2"/>
  5351. </connects>
  5352. <technologies>
  5353. <technology name=""/>
  5354. </technologies>
  5355. </device>
  5356. <device name="27/20" package="C27.5B20">
  5357. <connects>
  5358. <connect gate="G$1" pin="1" pad="1"/>
  5359. <connect gate="G$1" pin="2" pad="2"/>
  5360. </connects>
  5361. <technologies>
  5362. <technology name=""/>
  5363. </technologies>
  5364. </device>
  5365. <device name="27/9" package="C27.5B9">
  5366. <connects>
  5367. <connect gate="G$1" pin="1" pad="1"/>
  5368. <connect gate="G$1" pin="2" pad="2"/>
  5369. </connects>
  5370. <technologies>
  5371. <technology name=""/>
  5372. </technologies>
  5373. </device>
  5374. <device name="37/15" package="C37.5B15">
  5375. <connects>
  5376. <connect gate="G$1" pin="1" pad="1"/>
  5377. <connect gate="G$1" pin="2" pad="2"/>
  5378. </connects>
  5379. <technologies>
  5380. <technology name=""/>
  5381. </technologies>
  5382. </device>
  5383. <device name="37/19" package="C37.5B19">
  5384. <connects>
  5385. <connect gate="G$1" pin="1" pad="1"/>
  5386. <connect gate="G$1" pin="2" pad="2"/>
  5387. </connects>
  5388. <technologies>
  5389. <technology name=""/>
  5390. </technologies>
  5391. </device>
  5392. <device name="37/20" package="C37.5B20">
  5393. <connects>
  5394. <connect gate="G$1" pin="1" pad="1"/>
  5395. <connect gate="G$1" pin="2" pad="2"/>
  5396. </connects>
  5397. <technologies>
  5398. <technology name=""/>
  5399. </technologies>
  5400. </device>
  5401. <device name="5/2.5" package="C5B2.5">
  5402. <connects>
  5403. <connect gate="G$1" pin="1" pad="1"/>
  5404. <connect gate="G$1" pin="2" pad="2"/>
  5405. </connects>
  5406. <technologies>
  5407. <technology name=""/>
  5408. </technologies>
  5409. </device>
  5410. <device name="5/3" package="C5B3">
  5411. <connects>
  5412. <connect gate="G$1" pin="1" pad="1"/>
  5413. <connect gate="G$1" pin="2" pad="2"/>
  5414. </connects>
  5415. <technologies>
  5416. <technology name=""/>
  5417. </technologies>
  5418. </device>
  5419. <device name="5/3.5" package="C5B3.5">
  5420. <connects>
  5421. <connect gate="G$1" pin="1" pad="1"/>
  5422. <connect gate="G$1" pin="2" pad="2"/>
  5423. </connects>
  5424. <technologies>
  5425. <technology name=""/>
  5426. </technologies>
  5427. </device>
  5428. <device name="5/4.5" package="C5B4.5">
  5429. <connects>
  5430. <connect gate="G$1" pin="1" pad="1"/>
  5431. <connect gate="G$1" pin="2" pad="2"/>
  5432. </connects>
  5433. <technologies>
  5434. <technology name=""/>
  5435. </technologies>
  5436. </device>
  5437. <device name="5/5" package="C5B5">
  5438. <connects>
  5439. <connect gate="G$1" pin="1" pad="1"/>
  5440. <connect gate="G$1" pin="2" pad="2"/>
  5441. </connects>
  5442. <technologies>
  5443. <technology name=""/>
  5444. </technologies>
  5445. </device>
  5446. <device name="5/5.5" package="C5B5.5">
  5447. <connects>
  5448. <connect gate="G$1" pin="1" pad="1"/>
  5449. <connect gate="G$1" pin="2" pad="2"/>
  5450. </connects>
  5451. <technologies>
  5452. <technology name=""/>
  5453. </technologies>
  5454. </device>
  5455. <device name="5/7.2" package="C5B7.2">
  5456. <connects>
  5457. <connect gate="G$1" pin="1" pad="1"/>
  5458. <connect gate="G$1" pin="2" pad="2"/>
  5459. </connects>
  5460. <technologies>
  5461. <technology name=""/>
  5462. </technologies>
  5463. </device>
  5464. <device name="7.5/3" package="C7.5B3">
  5465. <connects>
  5466. <connect gate="G$1" pin="1" pad="1"/>
  5467. <connect gate="G$1" pin="2" pad="2"/>
  5468. </connects>
  5469. <technologies>
  5470. <technology name=""/>
  5471. </technologies>
  5472. </device>
  5473. <device name="7.5/4" package="C7.5B4">
  5474. <connects>
  5475. <connect gate="G$1" pin="1" pad="1"/>
  5476. <connect gate="G$1" pin="2" pad="2"/>
  5477. </connects>
  5478. <technologies>
  5479. <technology name=""/>
  5480. </technologies>
  5481. </device>
  5482. <device name="7.5/5" package="C7.5B5">
  5483. <connects>
  5484. <connect gate="G$1" pin="1" pad="1"/>
  5485. <connect gate="G$1" pin="2" pad="2"/>
  5486. </connects>
  5487. <technologies>
  5488. <technology name=""/>
  5489. </technologies>
  5490. </device>
  5491. <device name="7.5/6" package="C7.5B6">
  5492. <connects>
  5493. <connect gate="G$1" pin="1" pad="1"/>
  5494. <connect gate="G$1" pin="2" pad="2"/>
  5495. </connects>
  5496. <technologies>
  5497. <technology name=""/>
  5498. </technologies>
  5499. </device>
  5500. <device name="2,5-3" package="C2.5-3">
  5501. <connects>
  5502. <connect gate="G$1" pin="1" pad="1"/>
  5503. <connect gate="G$1" pin="2" pad="2"/>
  5504. </connects>
  5505. <technologies>
  5506. <technology name=""/>
  5507. </technologies>
  5508. </device>
  5509. </devices>
  5510. </deviceset>
  5511. </devicesets>
  5512. </library>
  5513. <library name="crystal">
  5514. <description>&lt;b&gt;Crystals and Crystal Resonators&lt;/b&gt;&lt;p&gt;
  5515. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  5516. <packages>
  5517. <package name="HC49U">
  5518. <description>&lt;b&gt;Crystal Filter&lt;/b&gt;&lt;p&gt;
  5519. Source: www.ilsiamerica.com .. C1 IXF Series.pdf</description>
  5520. <wire x1="-2.921" y1="-2.286" x2="2.921" y2="-2.286" width="0.4064" layer="21"/>
  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="-1.778" x2="2.921" y2="-1.778" width="0.1524" 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" curve="-180"/>
  5525. <wire x1="2.921" y1="2.286" x2="2.921" y2="-2.286" width="0.4064" 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="1.778" x2="-2.921" y2="-1.778" width="0.1524" layer="21" curve="180"/>
  5528. <wire x1="-0.25" y1="1" x2="0.25" y2="1" width="0.1524" layer="51"/>
  5529. <wire x1="0.25" y1="1" x2="0.25" y2="-0.25" width="0.1524" layer="51"/>
  5530. <wire x1="0.25" y1="-0.25" x2="-0.25" y2="-0.25" width="0.1524" layer="51"/>
  5531. <wire x1="-0.25" y1="-0.25" x2="-0.25" y2="1" width="0.1524" layer="51"/>
  5532. <wire x1="0.75" y1="1" x2="0.75" y2="0.25" width="0.1524" layer="51"/>
  5533. <wire x1="0.75" y1="0.25" x2="0.75" y2="-0.5" width="0.1524" layer="51"/>
  5534. <wire x1="-0.75" y1="1" x2="-0.75" y2="0.25" width="0.1524" layer="51"/>
  5535. <wire x1="-0.75" y1="0.25" x2="-0.75" y2="-0.5" width="0.1524" layer="51"/>
  5536. <wire x1="0.75" y1="0.25" x2="1.5" y2="0.25" 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.5" x2="0.75" y2="-0.5" width="0.1524" layer="51"/>
  5539. <wire x1="0" y1="-1.25" x2="0" y2="-0.625" width="0.1524" layer="51"/>
  5540. <pad name="1" x="-2.413" y="0" drill="0.7" diameter="1.2"/>
  5541. <pad name="2" x="-0.027" y="0" drill="0.7" diameter="1.2"/>
  5542. <pad name="3" x="2.413" y="0" drill="0.7" diameter="1.2"/>
  5543. <text x="-5.08" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5544. <text x="-5.08" y="-4.191" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5545. </package>
  5546. </packages>
  5547. <symbols>
  5548. <symbol name="CRYSTAL-FILTER-3-POL">
  5549. <wire x1="1.016" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  5550. <wire x1="-2.54" y1="0" x2="-1.016" y2="0" width="0.1524" layer="94"/>
  5551. <wire x1="-0.381" y1="1.524" x2="-0.381" y2="-1.524" width="0.254" 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="1.016" y1="1.778" x2="1.016" y2="-1.778" 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.778" y1="1.905" x2="-1.778" y2="2.54" width="0.1524" layer="94"/>
  5558. <wire x1="-1.778" y1="2.54" x2="1.778" y2="2.54" width="0.1524" layer="94"/>
  5559. <wire x1="1.778" y1="2.54" x2="1.778" y2="1.905" width="0.1524" layer="94"/>
  5560. <wire x1="1.778" y1="-1.905" x2="1.778" y2="-2.54" width="0.1524" layer="94"/>
  5561. <wire x1="-1.778" y1="-2.54" x2="1.778" y2="-2.54" width="0.1524" layer="94"/>
  5562. <wire x1="-1.778" y1="-2.54" x2="-1.778" y2="-1.905" width="0.1524" layer="94"/>
  5563. <text x="2.54" y="1.016" size="1.778" layer="95">&gt;NAME</text>
  5564. <text x="2.54" y="-2.54" size="1.778" layer="96">&gt;VALUE</text>
  5565. <text x="-2.159" y="-1.143" size="0.8636" layer="93">1</text>
  5566. <text x="-1.016" y="-3.683" size="0.8636" layer="93">2</text>
  5567. <text x="1.524" y="-1.143" size="0.8636" layer="93">3</text>
  5568. <pin name="3" x="2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1" rot="R270"/>
  5569. <pin name="1" x="-2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1"/>
  5570. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  5571. </symbol>
  5572. </symbols>
  5573. <devicesets>
  5574. <deviceset name="8M10AHC49T" prefix="QF">
  5575. <description>&lt;b&gt;Monolithic Crystal Filters&lt;/b&gt;&lt;p&gt;
  5576. Source: www.vanlong.com</description>
  5577. <gates>
  5578. <gate name="G$1" symbol="CRYSTAL-FILTER-3-POL" x="0" y="0"/>
  5579. </gates>
  5580. <devices>
  5581. <device name="" package="HC49U">
  5582. <connects>
  5583. <connect gate="G$1" pin="1" pad="1"/>
  5584. <connect gate="G$1" pin="2" pad="2"/>
  5585. <connect gate="G$1" pin="3" pad="3"/>
  5586. </connects>
  5587. <technologies>
  5588. <technology name="">
  5589. <attribute name="MF" value="" constant="no"/>
  5590. <attribute name="MPN" value="" constant="no"/>
  5591. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  5592. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  5593. </technology>
  5594. </technologies>
  5595. </device>
  5596. </devices>
  5597. </deviceset>
  5598. </devicesets>
  5599. </library>
  5600. </libraries>
  5601. <attributes>
  5602. </attributes>
  5603. <variantdefs>
  5604. </variantdefs>
  5605. <classes>
  5606. <class number="0" name="default" width="0" drill="0">
  5607. </class>
  5608. </classes>
  5609. <parts>
  5610. <part name="JP1" library="pinhead" deviceset="PINHD-2X6" device=""/>
  5611. <part name="JP2" library="pinhead" deviceset="PINHD-2X6" device=""/>
  5612. <part name="JP3" library="pinhead" deviceset="PINHD-2X6" device=""/>
  5613. <part name="JP4" library="pinhead" deviceset="PINHD-2X6" device=""/>
  5614. <part name="U$1" library="optocoupler" deviceset="LTV847" device=""/>
  5615. <part name="U$2" library="optocoupler" deviceset="LTV847" device=""/>
  5616. <part name="R1" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5617. <part name="R2" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5618. <part name="R3" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5619. <part name="R4" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5620. <part name="R5" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5621. <part name="R6" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5622. <part name="R7" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5623. <part name="R8" library="rcl" deviceset="R-EU_" device="R1206" value="100"/>
  5624. <part name="X1" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  5625. <part name="X2" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  5626. <part name="X3" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  5627. <part name="JP5" library="pinhead" deviceset="PINHD-1X5" device=""/>
  5628. <part name="JP6" library="pinhead" deviceset="PINHD-1X3" device=""/>
  5629. <part name="X4" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  5630. <part name="R9" library="rcl" deviceset="R-EU_" device="R1206" value="1K"/>
  5631. <part name="R10" library="rcl" deviceset="R-EU_" device="R1206" value="1K"/>
  5632. <part name="R11" library="rcl" deviceset="R-EU_" device="R1206" value="1K"/>
  5633. <part name="R12" library="rcl" deviceset="R-EU_" device="R1206" value="1K"/>
  5634. <part name="U$3" library="mc33269dt" deviceset="MC33269DT" device=""/>
  5635. <part name="C1" library="capacitor-wima" deviceset="C" device="5/7.2" value="1000mkF"/>
  5636. <part name="R13" library="rcl" deviceset="R-EU_" device="R1206" value="500"/>
  5637. <part name="R14" library="rcl" deviceset="R-EU_" device="R1206" value="500"/>
  5638. <part name="R15" library="rcl" deviceset="R-EU_" device="R1206" value="500"/>
  5639. <part name="R16" library="rcl" deviceset="R-EU_" device="R1206" value="500"/>
  5640. <part name="R17" library="rcl" deviceset="R-EU_" device="R1206" value="500"/>
  5641. <part name="QF1" library="crystal" deviceset="8M10AHC49T" device=""/>
  5642. <part name="JP7" library="pinhead" deviceset="PINHD-1X3" device=""/>
  5643. <part name="JP8" library="pinhead" deviceset="PINHD-1X3" device=""/>
  5644. <part name="X5" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  5645. </parts>
  5646. <sheets>
  5647. <sheet>
  5648. <plain>
  5649. </plain>
  5650. <instances>
  5651. <instance part="JP1" gate="A" x="93.98" y="15.24" rot="R90"/>
  5652. <instance part="JP2" gate="A" x="172.72" y="71.12" rot="R180"/>
  5653. <instance part="JP3" gate="A" x="96.52" y="127" rot="R270"/>
  5654. <instance part="JP4" gate="A" x="40.64" y="76.2"/>
  5655. <instance part="U$1" gate="G$1" x="67.31" y="-33.02" rot="R270"/>
  5656. <instance part="U$2" gate="G$1" x="132.08" y="-33.02" rot="R270"/>
  5657. <instance part="R1" gate="G$1" x="170.18" y="-25.4" rot="R90"/>
  5658. <instance part="R2" gate="G$1" x="160.02" y="-25.4" rot="R90"/>
  5659. <instance part="R3" gate="G$1" x="149.86" y="-25.4" rot="R90"/>
  5660. <instance part="R4" gate="G$1" x="139.7" y="-25.4" rot="R90"/>
  5661. <instance part="R5" gate="G$1" x="105.41" y="-25.4" rot="R90"/>
  5662. <instance part="R6" gate="G$1" x="95.25" y="-25.4" rot="R90"/>
  5663. <instance part="R7" gate="G$1" x="85.09" y="-25.4" rot="R90"/>
  5664. <instance part="R8" gate="G$1" x="74.93" y="-25.4" rot="R90"/>
  5665. <instance part="X1" gate="-1" x="-33.02" y="-34.29" rot="R90"/>
  5666. <instance part="X1" gate="-2" x="-25.4" y="-34.29" rot="R90"/>
  5667. <instance part="X1" gate="-3" x="-17.78" y="-34.29" rot="R90"/>
  5668. <instance part="X1" gate="-4" x="-10.16" y="-34.29" rot="R90"/>
  5669. <instance part="X2" gate="-1" x="78.74" y="-93.98" rot="R90"/>
  5670. <instance part="X2" gate="-2" x="86.36" y="-93.98" rot="R90"/>
  5671. <instance part="X2" gate="-3" x="93.98" y="-93.98" rot="R90"/>
  5672. <instance part="X2" gate="-4" x="101.6" y="-93.98" rot="R90"/>
  5673. <instance part="X3" gate="-1" x="142.24" y="-93.98" rot="R90"/>
  5674. <instance part="X3" gate="-2" x="149.86" y="-93.98" rot="R90"/>
  5675. <instance part="X3" gate="-3" x="157.48" y="-93.98" rot="R90"/>
  5676. <instance part="X3" gate="-4" x="165.1" y="-93.98" rot="R90"/>
  5677. <instance part="JP5" gate="A" x="119.38" y="166.37" rot="R90"/>
  5678. <instance part="JP6" gate="A" x="99.06" y="166.37" rot="R90"/>
  5679. <instance part="X4" gate="-1" x="-43.18" y="86.36"/>
  5680. <instance part="X4" gate="-2" x="-43.18" y="78.74"/>
  5681. <instance part="X4" gate="-3" x="-43.18" y="71.12"/>
  5682. <instance part="X4" gate="-4" x="-43.18" y="63.5"/>
  5683. <instance part="R9" gate="G$1" x="-31.75" y="45.72" rot="R90"/>
  5684. <instance part="R10" gate="G$1" x="-22.86" y="45.72" rot="R90"/>
  5685. <instance part="R11" gate="G$1" x="-13.97" y="45.72" rot="R90"/>
  5686. <instance part="R12" gate="G$1" x="-6.35" y="45.72" rot="R90"/>
  5687. <instance part="U$3" gate="G$1" x="35.56" y="-12.7"/>
  5688. <instance part="C1" gate="G$1" x="54.61" y="-20.32"/>
  5689. <instance part="R13" gate="G$1" x="63.5" y="-21.59" rot="R90"/>
  5690. <instance part="R14" gate="G$1" x="11.43" y="86.36" rot="R180"/>
  5691. <instance part="R15" gate="G$1" x="11.43" y="78.74" rot="R180"/>
  5692. <instance part="R16" gate="G$1" x="11.43" y="71.12" rot="R180"/>
  5693. <instance part="R17" gate="G$1" x="11.43" y="63.5" rot="R180"/>
  5694. <instance part="QF1" gate="G$1" x="86.36" y="-2.54"/>
  5695. <instance part="JP7" gate="A" x="66.04" y="1.27" rot="R180"/>
  5696. <instance part="JP8" gate="A" x="6.35" y="44.45" rot="R180"/>
  5697. <instance part="X5" gate="-1" x="209.55" y="58.42" rot="R180"/>
  5698. <instance part="X5" gate="-2" x="209.55" y="66.04" rot="R180"/>
  5699. <instance part="X5" gate="-3" x="209.55" y="73.66" rot="R180"/>
  5700. <instance part="X5" gate="-4" x="209.55" y="81.28" rot="R180"/>
  5701. </instances>
  5702. <busses>
  5703. </busses>
  5704. <nets>
  5705. <net name="N$1" class="0">
  5706. <segment>
  5707. <pinref part="U$2" gate="G$1" pin="P$8"/>
  5708. <pinref part="R1" gate="G$1" pin="1"/>
  5709. </segment>
  5710. </net>
  5711. <net name="N$2" class="0">
  5712. <segment>
  5713. <pinref part="U$2" gate="G$1" pin="P$6"/>
  5714. <pinref part="R2" gate="G$1" pin="1"/>
  5715. </segment>
  5716. </net>
  5717. <net name="N$3" class="0">
  5718. <segment>
  5719. <pinref part="U$2" gate="G$1" pin="P$4"/>
  5720. <pinref part="R3" gate="G$1" pin="1"/>
  5721. </segment>
  5722. </net>
  5723. <net name="N$4" class="0">
  5724. <segment>
  5725. <pinref part="U$1" gate="G$1" pin="P$8"/>
  5726. <pinref part="R5" gate="G$1" pin="1"/>
  5727. </segment>
  5728. </net>
  5729. <net name="N$5" class="0">
  5730. <segment>
  5731. <pinref part="U$1" gate="G$1" pin="P$6"/>
  5732. <pinref part="R6" gate="G$1" pin="1"/>
  5733. </segment>
  5734. </net>
  5735. <net name="N$6" class="0">
  5736. <segment>
  5737. <pinref part="U$1" gate="G$1" pin="P$4"/>
  5738. <pinref part="R7" gate="G$1" pin="1"/>
  5739. </segment>
  5740. </net>
  5741. <net name="N$7" class="0">
  5742. <segment>
  5743. <pinref part="U$1" gate="G$1" pin="P$2"/>
  5744. <pinref part="R8" gate="G$1" pin="1"/>
  5745. </segment>
  5746. </net>
  5747. <net name="N$8" class="0">
  5748. <segment>
  5749. <pinref part="U$2" gate="G$1" pin="P$2"/>
  5750. <pinref part="R4" gate="G$1" pin="1"/>
  5751. </segment>
  5752. </net>
  5753. <net name="N$10" class="0">
  5754. <segment>
  5755. <pinref part="X1" gate="-3" pin="1A"/>
  5756. <wire x1="-17.78" y1="-31.75" x2="-17.78" y2="-25.4" width="0.1524" layer="91"/>
  5757. <wire x1="-17.78" y1="-25.4" x2="17.78" y2="-25.4" width="0.1524" layer="91"/>
  5758. <wire x1="17.78" y1="-25.4" x2="17.78" y2="-59.69" width="0.1524" layer="91"/>
  5759. <wire x1="17.78" y1="-59.69" x2="74.93" y2="-59.69" width="0.1524" layer="91"/>
  5760. <wire x1="74.93" y1="-59.69" x2="74.93" y2="-55.88" width="0.1524" layer="91"/>
  5761. <pinref part="U$1" gate="G$1" pin="P$12"/>
  5762. <wire x1="74.93" y1="-59.69" x2="85.09" y2="-59.69" width="0.1524" layer="91"/>
  5763. <wire x1="85.09" y1="-59.69" x2="85.09" y2="-55.88" width="0.1524" layer="91"/>
  5764. <junction x="74.93" y="-59.69"/>
  5765. <pinref part="U$1" gate="G$1" pin="P$14"/>
  5766. <wire x1="85.09" y1="-59.69" x2="95.25" y2="-59.69" width="0.1524" layer="91"/>
  5767. <wire x1="95.25" y1="-59.69" x2="95.25" y2="-55.88" width="0.1524" layer="91"/>
  5768. <junction x="85.09" y="-59.69"/>
  5769. <pinref part="U$1" gate="G$1" pin="P$16"/>
  5770. <wire x1="95.25" y1="-59.69" x2="105.41" y2="-59.69" width="0.1524" layer="91"/>
  5771. <wire x1="105.41" y1="-59.69" x2="105.41" y2="-55.88" width="0.1524" layer="91"/>
  5772. <junction x="95.25" y="-59.69"/>
  5773. <pinref part="U$2" gate="G$1" pin="P$10"/>
  5774. <wire x1="105.41" y1="-59.69" x2="124.46" y2="-59.69" width="0.1524" layer="91"/>
  5775. <wire x1="124.46" y1="-59.69" x2="139.7" y2="-59.69" width="0.1524" layer="91"/>
  5776. <wire x1="139.7" y1="-59.69" x2="139.7" y2="-55.88" width="0.1524" layer="91"/>
  5777. <junction x="105.41" y="-59.69"/>
  5778. <wire x1="139.7" y1="-59.69" x2="149.86" y2="-59.69" width="0.1524" layer="91"/>
  5779. <junction x="139.7" y="-59.69"/>
  5780. <wire x1="149.86" y1="-57.15" x2="149.86" y2="-58.42" width="0.1524" layer="91"/>
  5781. <pinref part="U$2" gate="G$1" pin="P$14"/>
  5782. <wire x1="149.86" y1="-58.42" x2="149.86" y2="-59.69" width="0.1524" layer="91"/>
  5783. <wire x1="149.86" y1="-59.69" x2="160.02" y2="-59.69" width="0.1524" layer="91"/>
  5784. <wire x1="160.02" y1="-59.69" x2="160.02" y2="-55.88" width="0.1524" layer="91"/>
  5785. <junction x="149.86" y="-59.69"/>
  5786. <pinref part="U$2" gate="G$1" pin="P$16"/>
  5787. <wire x1="160.02" y1="-59.69" x2="170.18" y2="-59.69" width="0.1524" layer="91"/>
  5788. <wire x1="170.18" y1="-59.69" x2="170.18" y2="-55.88" width="0.1524" layer="91"/>
  5789. <junction x="160.02" y="-59.69"/>
  5790. <pinref part="JP5" gate="A" pin="5"/>
  5791. <wire x1="124.46" y1="163.83" x2="124.46" y2="152.4" width="0.1524" layer="91"/>
  5792. <junction x="124.46" y="-59.69"/>
  5793. <pinref part="JP6" gate="A" pin="3"/>
  5794. <wire x1="124.46" y1="152.4" x2="124.46" y2="-59.69" width="0.1524" layer="91"/>
  5795. <wire x1="101.6" y1="163.83" x2="101.6" y2="152.4" width="0.1524" layer="91"/>
  5796. <wire x1="101.6" y1="152.4" x2="124.46" y2="152.4" width="0.1524" layer="91"/>
  5797. <junction x="124.46" y="152.4"/>
  5798. <pinref part="U$1" gate="G$1" pin="P$10"/>
  5799. <pinref part="U$2" gate="G$1" pin="P$12"/>
  5800. <wire x1="149.86" y1="-55.88" x2="149.86" y2="-57.15" width="0.1524" layer="91"/>
  5801. </segment>
  5802. </net>
  5803. <net name="N$11" class="0">
  5804. <segment>
  5805. <wire x1="119.38" y1="-16.51" x2="119.38" y2="30.48" width="0.1524" layer="91"/>
  5806. <pinref part="JP1" gate="A" pin="12"/>
  5807. <wire x1="119.38" y1="30.48" x2="101.6" y2="30.48" width="0.1524" layer="91"/>
  5808. <wire x1="101.6" y1="30.48" x2="101.6" y2="20.32" width="0.1524" layer="91"/>
  5809. <pinref part="R6" gate="G$1" pin="2"/>
  5810. <wire x1="95.25" y1="-20.32" x2="95.25" y2="-16.51" width="0.1524" layer="91"/>
  5811. <wire x1="95.25" y1="-16.51" x2="119.38" y2="-16.51" width="0.1524" layer="91"/>
  5812. </segment>
  5813. </net>
  5814. <net name="N$12" class="0">
  5815. <segment>
  5816. <pinref part="JP1" gate="A" pin="11"/>
  5817. <wire x1="101.6" y1="-15.24" x2="101.6" y2="12.7" width="0.1524" layer="91"/>
  5818. <wire x1="101.6" y1="-15.24" x2="85.09" y2="-15.24" width="0.1524" layer="91"/>
  5819. <pinref part="R7" gate="G$1" pin="2"/>
  5820. <wire x1="85.09" y1="-15.24" x2="85.09" y2="-20.32" width="0.1524" layer="91"/>
  5821. </segment>
  5822. </net>
  5823. <net name="N$13" class="0">
  5824. <segment>
  5825. <wire x1="105.41" y1="-13.97" x2="105.41" y2="29.21" width="0.1524" layer="91"/>
  5826. <wire x1="105.41" y1="29.21" x2="99.06" y2="29.21" width="0.1524" layer="91"/>
  5827. <pinref part="JP1" gate="A" pin="10"/>
  5828. <wire x1="99.06" y1="29.21" x2="99.06" y2="20.32" width="0.1524" layer="91"/>
  5829. <pinref part="R8" gate="G$1" pin="2"/>
  5830. <wire x1="74.93" y1="-20.32" x2="74.93" y2="-13.97" width="0.1524" layer="91"/>
  5831. <wire x1="74.93" y1="-13.97" x2="105.41" y2="-13.97" width="0.1524" layer="91"/>
  5832. </segment>
  5833. </net>
  5834. <net name="N$14" class="0">
  5835. <segment>
  5836. <pinref part="JP1" gate="A" pin="9"/>
  5837. <wire x1="99.06" y1="12.7" x2="99.06" y2="-12.7" width="0.1524" layer="91"/>
  5838. <pinref part="U$3" gate="G$1" pin="VOUT"/>
  5839. <wire x1="48.26" y1="-7.62" x2="48.26" y2="-12.7" width="0.1524" layer="91"/>
  5840. <wire x1="48.26" y1="-12.7" x2="54.61" y2="-12.7" width="0.1524" layer="91"/>
  5841. <pinref part="C1" gate="G$1" pin="1"/>
  5842. <wire x1="54.61" y1="-12.7" x2="63.5" y2="-12.7" width="0.1524" layer="91"/>
  5843. <wire x1="63.5" y1="-12.7" x2="76.2" y2="-12.7" width="0.1524" layer="91"/>
  5844. <wire x1="76.2" y1="-12.7" x2="99.06" y2="-12.7" width="0.1524" layer="91"/>
  5845. <wire x1="54.61" y1="-17.78" x2="54.61" y2="-12.7" width="0.1524" layer="91"/>
  5846. <junction x="54.61" y="-12.7"/>
  5847. <pinref part="R13" gate="G$1" pin="2"/>
  5848. <wire x1="63.5" y1="-16.51" x2="63.5" y2="-12.7" width="0.1524" layer="91"/>
  5849. <junction x="63.5" y="-12.7"/>
  5850. <pinref part="JP7" gate="A" pin="1"/>
  5851. <wire x1="68.58" y1="-1.27" x2="76.2" y2="-1.27" width="0.1524" layer="91"/>
  5852. <wire x1="76.2" y1="-1.27" x2="76.2" y2="-12.7" width="0.1524" layer="91"/>
  5853. <junction x="76.2" y="-12.7"/>
  5854. <pinref part="JP8" gate="A" pin="1"/>
  5855. <wire x1="8.89" y1="41.91" x2="54.61" y2="41.91" width="0.1524" layer="91"/>
  5856. <wire x1="54.61" y1="41.91" x2="54.61" y2="-12.7" width="0.1524" layer="91"/>
  5857. </segment>
  5858. </net>
  5859. <net name="N$16" class="0">
  5860. <segment>
  5861. <wire x1="120.65" y1="-17.78" x2="120.65" y2="35.56" width="0.1524" layer="91"/>
  5862. <wire x1="120.65" y1="35.56" x2="186.69" y2="35.56" width="0.1524" layer="91"/>
  5863. <wire x1="186.69" y1="35.56" x2="186.69" y2="66.04" width="0.1524" layer="91"/>
  5864. <pinref part="JP2" gate="A" pin="1"/>
  5865. <wire x1="186.69" y1="66.04" x2="175.26" y2="66.04" width="0.1524" layer="91"/>
  5866. <pinref part="R5" gate="G$1" pin="2"/>
  5867. <wire x1="120.65" y1="-17.78" x2="105.41" y2="-17.78" width="0.1524" layer="91"/>
  5868. <wire x1="105.41" y1="-17.78" x2="105.41" y2="-20.32" width="0.1524" layer="91"/>
  5869. </segment>
  5870. </net>
  5871. <net name="N$17" class="0">
  5872. <segment>
  5873. <pinref part="R4" gate="G$1" pin="2"/>
  5874. <pinref part="JP2" gate="A" pin="2"/>
  5875. <wire x1="139.7" y1="-20.32" x2="139.7" y2="66.04" width="0.1524" layer="91"/>
  5876. <wire x1="139.7" y1="66.04" x2="167.64" y2="66.04" width="0.1524" layer="91"/>
  5877. </segment>
  5878. </net>
  5879. <net name="N$18" class="0">
  5880. <segment>
  5881. <pinref part="R3" gate="G$1" pin="2"/>
  5882. <wire x1="149.86" y1="-20.32" x2="149.86" y2="34.29" width="0.1524" layer="91"/>
  5883. <wire x1="149.86" y1="34.29" x2="187.96" y2="34.29" width="0.1524" layer="91"/>
  5884. <pinref part="JP2" gate="A" pin="3"/>
  5885. <wire x1="187.96" y1="34.29" x2="187.96" y2="68.58" width="0.1524" layer="91"/>
  5886. <wire x1="187.96" y1="68.58" x2="175.26" y2="68.58" width="0.1524" layer="91"/>
  5887. </segment>
  5888. </net>
  5889. <net name="N$19" class="0">
  5890. <segment>
  5891. <pinref part="R2" gate="G$1" pin="2"/>
  5892. <pinref part="JP2" gate="A" pin="4"/>
  5893. <wire x1="160.02" y1="-20.32" x2="160.02" y2="68.58" width="0.1524" layer="91"/>
  5894. <wire x1="160.02" y1="68.58" x2="167.64" y2="68.58" width="0.1524" layer="91"/>
  5895. </segment>
  5896. </net>
  5897. <net name="N$20" class="0">
  5898. <segment>
  5899. <pinref part="R1" gate="G$1" pin="2"/>
  5900. <wire x1="170.18" y1="-20.32" x2="170.18" y2="33.02" width="0.1524" layer="91"/>
  5901. <wire x1="170.18" y1="33.02" x2="189.23" y2="33.02" width="0.1524" layer="91"/>
  5902. <pinref part="JP2" gate="A" pin="5"/>
  5903. <wire x1="189.23" y1="33.02" x2="189.23" y2="71.12" width="0.1524" layer="91"/>
  5904. <wire x1="189.23" y1="71.12" x2="175.26" y2="71.12" width="0.1524" layer="91"/>
  5905. </segment>
  5906. </net>
  5907. <net name="N$21" class="0">
  5908. <segment>
  5909. <pinref part="U$1" gate="G$1" pin="P$9"/>
  5910. <wire x1="69.85" y1="-55.88" x2="69.85" y2="-83.82" width="0.1524" layer="91"/>
  5911. <wire x1="69.85" y1="-83.82" x2="78.74" y2="-83.82" width="0.1524" layer="91"/>
  5912. <pinref part="X2" gate="-1" pin="1A"/>
  5913. <wire x1="78.74" y1="-83.82" x2="78.74" y2="-91.44" width="0.1524" layer="91"/>
  5914. </segment>
  5915. </net>
  5916. <net name="N$15" class="0">
  5917. <segment>
  5918. <pinref part="U$1" gate="G$1" pin="P$11"/>
  5919. <wire x1="80.01" y1="-55.88" x2="80.01" y2="-83.82" width="0.1524" layer="91"/>
  5920. <wire x1="80.01" y1="-83.82" x2="86.36" y2="-83.82" width="0.1524" layer="91"/>
  5921. <pinref part="X2" gate="-2" pin="1A"/>
  5922. <wire x1="86.36" y1="-83.82" x2="86.36" y2="-91.44" width="0.1524" layer="91"/>
  5923. </segment>
  5924. </net>
  5925. <net name="N$23" class="0">
  5926. <segment>
  5927. <pinref part="U$1" gate="G$1" pin="P$15"/>
  5928. <wire x1="100.33" y1="-55.88" x2="100.33" y2="-83.82" width="0.1524" layer="91"/>
  5929. <wire x1="100.33" y1="-83.82" x2="101.6" y2="-83.82" width="0.1524" layer="91"/>
  5930. <pinref part="X2" gate="-4" pin="1A"/>
  5931. <wire x1="101.6" y1="-83.82" x2="101.6" y2="-91.44" width="0.1524" layer="91"/>
  5932. </segment>
  5933. </net>
  5934. <net name="N$24" class="0">
  5935. <segment>
  5936. <pinref part="U$2" gate="G$1" pin="P$9"/>
  5937. <wire x1="134.62" y1="-55.88" x2="134.62" y2="-83.82" width="0.1524" layer="91"/>
  5938. <wire x1="134.62" y1="-83.82" x2="142.24" y2="-83.82" width="0.1524" layer="91"/>
  5939. <pinref part="X3" gate="-1" pin="1A"/>
  5940. <wire x1="142.24" y1="-83.82" x2="142.24" y2="-91.44" width="0.1524" layer="91"/>
  5941. </segment>
  5942. </net>
  5943. <net name="N$25" class="0">
  5944. <segment>
  5945. <wire x1="144.78" y1="-57.15" x2="144.78" y2="-58.42" width="0.1524" layer="91"/>
  5946. <wire x1="144.78" y1="-58.42" x2="144.78" y2="-83.82" width="0.1524" layer="91"/>
  5947. <wire x1="144.78" y1="-83.82" x2="149.86" y2="-83.82" width="0.1524" layer="91"/>
  5948. <pinref part="X3" gate="-2" pin="1A"/>
  5949. <wire x1="149.86" y1="-83.82" x2="149.86" y2="-91.44" width="0.1524" layer="91"/>
  5950. <pinref part="U$2" gate="G$1" pin="P$11"/>
  5951. <wire x1="144.78" y1="-55.88" x2="144.78" y2="-57.15" width="0.1524" layer="91"/>
  5952. </segment>
  5953. </net>
  5954. <net name="N$26" class="0">
  5955. <segment>
  5956. <pinref part="U$2" gate="G$1" pin="P$13"/>
  5957. <wire x1="154.94" y1="-55.88" x2="154.94" y2="-83.82" width="0.1524" layer="91"/>
  5958. <wire x1="154.94" y1="-83.82" x2="157.48" y2="-83.82" width="0.1524" layer="91"/>
  5959. <pinref part="X3" gate="-3" pin="1A"/>
  5960. <wire x1="157.48" y1="-83.82" x2="157.48" y2="-91.44" width="0.1524" layer="91"/>
  5961. </segment>
  5962. </net>
  5963. <net name="N$27" class="0">
  5964. <segment>
  5965. <pinref part="U$2" gate="G$1" pin="P$15"/>
  5966. <pinref part="X3" gate="-4" pin="1A"/>
  5967. <wire x1="165.1" y1="-55.88" x2="165.1" y2="-91.44" width="0.1524" layer="91"/>
  5968. </segment>
  5969. </net>
  5970. <net name="N$28" class="0">
  5971. <segment>
  5972. <pinref part="JP3" gate="A" pin="1"/>
  5973. <wire x1="101.6" y1="129.54" x2="101.6" y2="140.97" width="0.1524" layer="91"/>
  5974. <wire x1="101.6" y1="140.97" x2="121.92" y2="140.97" width="0.1524" layer="91"/>
  5975. <wire x1="121.92" y1="140.97" x2="121.92" y2="163.83" width="0.1524" layer="91"/>
  5976. <pinref part="JP5" gate="A" pin="4"/>
  5977. </segment>
  5978. </net>
  5979. <net name="N$29" class="0">
  5980. <segment>
  5981. <pinref part="JP3" gate="A" pin="2"/>
  5982. <wire x1="101.6" y1="121.92" x2="119.38" y2="121.92" width="0.1524" layer="91"/>
  5983. <wire x1="119.38" y1="121.92" x2="119.38" y2="163.83" width="0.1524" layer="91"/>
  5984. <pinref part="JP5" gate="A" pin="3"/>
  5985. </segment>
  5986. </net>
  5987. <net name="N$30" class="0">
  5988. <segment>
  5989. <pinref part="JP3" gate="A" pin="3"/>
  5990. <wire x1="99.06" y1="129.54" x2="99.06" y2="142.24" width="0.1524" layer="91"/>
  5991. <wire x1="99.06" y1="142.24" x2="116.84" y2="142.24" width="0.1524" layer="91"/>
  5992. <wire x1="116.84" y1="142.24" x2="116.84" y2="163.83" width="0.1524" layer="91"/>
  5993. <pinref part="JP5" gate="A" pin="2"/>
  5994. </segment>
  5995. </net>
  5996. <net name="N$31" class="0">
  5997. <segment>
  5998. <pinref part="JP3" gate="A" pin="4"/>
  5999. <wire x1="99.06" y1="121.92" x2="99.06" y2="115.57" width="0.1524" layer="91"/>
  6000. <wire x1="99.06" y1="115.57" x2="114.3" y2="115.57" width="0.1524" layer="91"/>
  6001. <wire x1="114.3" y1="115.57" x2="114.3" y2="163.83" width="0.1524" layer="91"/>
  6002. <pinref part="JP5" gate="A" pin="1"/>
  6003. </segment>
  6004. </net>
  6005. <net name="N$32" class="0">
  6006. <segment>
  6007. <pinref part="JP3" gate="A" pin="8"/>
  6008. <wire x1="93.98" y1="121.92" x2="93.98" y2="114.3" width="0.1524" layer="91"/>
  6009. <wire x1="93.98" y1="114.3" x2="106.68" y2="114.3" width="0.1524" layer="91"/>
  6010. <wire x1="106.68" y1="114.3" x2="106.68" y2="151.13" width="0.1524" layer="91"/>
  6011. <wire x1="106.68" y1="151.13" x2="99.06" y2="151.13" width="0.1524" layer="91"/>
  6012. <pinref part="JP6" gate="A" pin="2"/>
  6013. <wire x1="99.06" y1="151.13" x2="99.06" y2="163.83" width="0.1524" layer="91"/>
  6014. </segment>
  6015. </net>
  6016. <net name="N$33" class="0">
  6017. <segment>
  6018. <pinref part="JP3" gate="A" pin="9"/>
  6019. <wire x1="91.44" y1="129.54" x2="91.44" y2="142.24" width="0.1524" layer="91"/>
  6020. <wire x1="91.44" y1="142.24" x2="96.52" y2="142.24" width="0.1524" layer="91"/>
  6021. <pinref part="JP6" gate="A" pin="1"/>
  6022. <wire x1="96.52" y1="142.24" x2="96.52" y2="163.83" width="0.1524" layer="91"/>
  6023. </segment>
  6024. </net>
  6025. <net name="N$34" class="0">
  6026. <segment>
  6027. <pinref part="X4" gate="-4" pin="1A"/>
  6028. <pinref part="R9" gate="G$1" pin="2"/>
  6029. <wire x1="-40.64" y1="63.5" x2="-31.75" y2="63.5" width="0.1524" layer="91"/>
  6030. <wire x1="-31.75" y1="63.5" x2="-31.75" y2="50.8" width="0.1524" layer="91"/>
  6031. <pinref part="R17" gate="G$1" pin="2"/>
  6032. <wire x1="6.35" y1="63.5" x2="-31.75" y2="63.5" width="0.1524" layer="91"/>
  6033. <junction x="-31.75" y="63.5"/>
  6034. </segment>
  6035. </net>
  6036. <net name="N$35" class="0">
  6037. <segment>
  6038. <pinref part="X4" gate="-3" pin="1A"/>
  6039. <pinref part="R10" gate="G$1" pin="2"/>
  6040. <wire x1="-40.64" y1="71.12" x2="-22.86" y2="71.12" width="0.1524" layer="91"/>
  6041. <wire x1="-22.86" y1="71.12" x2="-22.86" y2="50.8" width="0.1524" layer="91"/>
  6042. <pinref part="R16" gate="G$1" pin="2"/>
  6043. <wire x1="6.35" y1="71.12" x2="-22.86" y2="71.12" width="0.1524" layer="91"/>
  6044. <junction x="-22.86" y="71.12"/>
  6045. </segment>
  6046. </net>
  6047. <net name="N$36" class="0">
  6048. <segment>
  6049. <pinref part="X4" gate="-2" pin="1A"/>
  6050. <pinref part="R11" gate="G$1" pin="2"/>
  6051. <wire x1="-40.64" y1="78.74" x2="-13.97" y2="78.74" width="0.1524" layer="91"/>
  6052. <wire x1="-13.97" y1="78.74" x2="-13.97" y2="50.8" width="0.1524" layer="91"/>
  6053. <pinref part="R15" gate="G$1" pin="2"/>
  6054. <wire x1="6.35" y1="78.74" x2="-13.97" y2="78.74" width="0.1524" layer="91"/>
  6055. <junction x="-13.97" y="78.74"/>
  6056. </segment>
  6057. </net>
  6058. <net name="N$37" class="0">
  6059. <segment>
  6060. <pinref part="X4" gate="-1" pin="1A"/>
  6061. <pinref part="R12" gate="G$1" pin="2"/>
  6062. <wire x1="-40.64" y1="86.36" x2="-6.35" y2="86.36" width="0.1524" layer="91"/>
  6063. <wire x1="-6.35" y1="86.36" x2="-6.35" y2="50.8" width="0.1524" layer="91"/>
  6064. <pinref part="R14" gate="G$1" pin="2"/>
  6065. <wire x1="6.35" y1="86.36" x2="-6.35" y2="86.36" width="0.1524" layer="91"/>
  6066. <junction x="-6.35" y="86.36"/>
  6067. </segment>
  6068. </net>
  6069. <net name="N$38" class="0">
  6070. <segment>
  6071. <pinref part="R9" gate="G$1" pin="1"/>
  6072. <wire x1="-31.75" y1="40.64" x2="-31.75" y2="34.29" width="0.1524" layer="91"/>
  6073. <wire x1="-31.75" y1="34.29" x2="-22.86" y2="34.29" width="0.1524" layer="91"/>
  6074. <pinref part="R12" gate="G$1" pin="1"/>
  6075. <wire x1="-22.86" y1="34.29" x2="-13.97" y2="34.29" width="0.1524" layer="91"/>
  6076. <wire x1="-13.97" y1="34.29" x2="-6.35" y2="34.29" width="0.1524" layer="91"/>
  6077. <wire x1="-6.35" y1="34.29" x2="-6.35" y2="40.64" width="0.1524" layer="91"/>
  6078. <pinref part="R10" gate="G$1" pin="1"/>
  6079. <wire x1="-22.86" y1="40.64" x2="-22.86" y2="34.29" width="0.1524" layer="91"/>
  6080. <junction x="-22.86" y="34.29"/>
  6081. <pinref part="R11" gate="G$1" pin="1"/>
  6082. <wire x1="-13.97" y1="40.64" x2="-13.97" y2="34.29" width="0.1524" layer="91"/>
  6083. <junction x="-13.97" y="34.29"/>
  6084. <pinref part="X1" gate="-2" pin="1A"/>
  6085. <wire x1="-25.4" y1="-31.75" x2="-25.4" y2="-24.13" width="0.1524" layer="91"/>
  6086. <wire x1="-25.4" y1="-24.13" x2="-6.35" y2="-24.13" width="0.1524" layer="91"/>
  6087. <pinref part="U$1" gate="G$1" pin="P$1"/>
  6088. <wire x1="-6.35" y1="-24.13" x2="19.05" y2="-24.13" width="0.1524" layer="91"/>
  6089. <wire x1="19.05" y1="-24.13" x2="19.05" y2="-30.48" width="0.1524" layer="91"/>
  6090. <wire x1="19.05" y1="-30.48" x2="35.56" y2="-30.48" width="0.1524" layer="91"/>
  6091. <pinref part="U$1" gate="G$1" pin="P$3"/>
  6092. <wire x1="35.56" y1="-30.48" x2="54.61" y2="-30.48" width="0.1524" layer="91"/>
  6093. <wire x1="54.61" y1="-30.48" x2="58.42" y2="-30.48" width="0.1524" layer="91"/>
  6094. <wire x1="58.42" y1="-30.48" x2="63.5" y2="-30.48" width="0.1524" layer="91"/>
  6095. <wire x1="63.5" y1="-30.48" x2="69.85" y2="-30.48" width="0.1524" layer="91"/>
  6096. <wire x1="69.85" y1="-30.48" x2="80.01" y2="-30.48" width="0.1524" layer="91"/>
  6097. <junction x="69.85" y="-30.48"/>
  6098. <pinref part="U$1" gate="G$1" pin="P$5"/>
  6099. <wire x1="80.01" y1="-30.48" x2="90.17" y2="-30.48" width="0.1524" layer="91"/>
  6100. <junction x="80.01" y="-30.48"/>
  6101. <pinref part="U$1" gate="G$1" pin="P$7"/>
  6102. <wire x1="90.17" y1="-30.48" x2="100.33" y2="-30.48" width="0.1524" layer="91"/>
  6103. <junction x="90.17" y="-30.48"/>
  6104. <pinref part="U$2" gate="G$1" pin="P$1"/>
  6105. <wire x1="100.33" y1="-30.48" x2="113.03" y2="-30.48" width="0.1524" layer="91"/>
  6106. <junction x="100.33" y="-30.48"/>
  6107. <pinref part="U$2" gate="G$1" pin="P$3"/>
  6108. <wire x1="113.03" y1="-30.48" x2="134.62" y2="-30.48" width="0.1524" layer="91"/>
  6109. <wire x1="134.62" y1="-30.48" x2="144.78" y2="-30.48" width="0.1524" layer="91"/>
  6110. <junction x="134.62" y="-30.48"/>
  6111. <pinref part="U$2" gate="G$1" pin="P$5"/>
  6112. <wire x1="144.78" y1="-30.48" x2="154.94" y2="-30.48" width="0.1524" layer="91"/>
  6113. <junction x="144.78" y="-30.48"/>
  6114. <pinref part="U$2" gate="G$1" pin="P$7"/>
  6115. <wire x1="154.94" y1="-30.48" x2="165.1" y2="-30.48" width="0.1524" layer="91"/>
  6116. <junction x="154.94" y="-30.48"/>
  6117. <pinref part="JP1" gate="A" pin="8"/>
  6118. <wire x1="96.52" y1="20.32" x2="96.52" y2="27.94" width="0.1524" layer="91"/>
  6119. <wire x1="96.52" y1="27.94" x2="113.03" y2="27.94" width="0.1524" layer="91"/>
  6120. <wire x1="113.03" y1="27.94" x2="113.03" y2="-30.48" width="0.1524" layer="91"/>
  6121. <junction x="113.03" y="-30.48"/>
  6122. <wire x1="-6.35" y1="34.29" x2="-6.35" y2="-24.13" width="0.1524" layer="91"/>
  6123. <junction x="-6.35" y="34.29"/>
  6124. <junction x="-6.35" y="-24.13"/>
  6125. <wire x1="35.56" y1="-19.05" x2="35.56" y2="-30.48" width="0.1524" layer="91"/>
  6126. <junction x="35.56" y="-30.48"/>
  6127. <pinref part="C1" gate="G$1" pin="2"/>
  6128. <wire x1="54.61" y1="-25.4" x2="54.61" y2="-30.48" width="0.1524" layer="91"/>
  6129. <junction x="54.61" y="-30.48"/>
  6130. <pinref part="R13" gate="G$1" pin="1"/>
  6131. <wire x1="63.5" y1="-26.67" x2="63.5" y2="-30.48" width="0.1524" layer="91"/>
  6132. <junction x="63.5" y="-30.48"/>
  6133. <pinref part="JP7" gate="A" pin="3"/>
  6134. <wire x1="68.58" y1="3.81" x2="80.01" y2="3.81" width="0.1524" layer="91"/>
  6135. <wire x1="80.01" y1="3.81" x2="80.01" y2="-30.48" width="0.1524" layer="91"/>
  6136. <pinref part="JP8" gate="A" pin="3"/>
  6137. <wire x1="8.89" y1="46.99" x2="58.42" y2="46.99" width="0.1524" layer="91"/>
  6138. <wire x1="58.42" y1="46.99" x2="58.42" y2="-30.48" width="0.1524" layer="91"/>
  6139. <junction x="58.42" y="-30.48"/>
  6140. </segment>
  6141. </net>
  6142. <net name="N$39" class="0">
  6143. <segment>
  6144. <pinref part="X1" gate="-1" pin="1A"/>
  6145. <wire x1="-33.02" y1="-7.62" x2="-33.02" y2="-31.75" width="0.1524" layer="91"/>
  6146. <pinref part="U$3" gate="G$1" pin="VIN"/>
  6147. <wire x1="-33.02" y1="-7.62" x2="22.86" y2="-7.62" width="0.1524" layer="91"/>
  6148. </segment>
  6149. </net>
  6150. <net name="N$9" class="0">
  6151. <segment>
  6152. <pinref part="JP4" gate="A" pin="3"/>
  6153. <wire x1="38.1" y1="78.74" x2="30.48" y2="78.74" width="0.1524" layer="91"/>
  6154. <wire x1="30.48" y1="78.74" x2="30.48" y2="86.36" width="0.1524" layer="91"/>
  6155. <pinref part="R14" gate="G$1" pin="1"/>
  6156. <wire x1="30.48" y1="86.36" x2="16.51" y2="86.36" width="0.1524" layer="91"/>
  6157. </segment>
  6158. </net>
  6159. <net name="N$40" class="0">
  6160. <segment>
  6161. <pinref part="JP4" gate="A" pin="4"/>
  6162. <wire x1="45.72" y1="78.74" x2="52.07" y2="78.74" width="0.1524" layer="91"/>
  6163. <wire x1="52.07" y1="78.74" x2="52.07" y2="87.63" width="0.1524" layer="91"/>
  6164. <wire x1="52.07" y1="87.63" x2="29.21" y2="87.63" width="0.1524" layer="91"/>
  6165. <wire x1="29.21" y1="87.63" x2="29.21" y2="78.74" width="0.1524" layer="91"/>
  6166. <pinref part="R15" gate="G$1" pin="1"/>
  6167. <wire x1="29.21" y1="78.74" x2="16.51" y2="78.74" width="0.1524" layer="91"/>
  6168. </segment>
  6169. </net>
  6170. <net name="N$41" class="0">
  6171. <segment>
  6172. <pinref part="JP4" gate="A" pin="5"/>
  6173. <wire x1="38.1" y1="76.2" x2="30.48" y2="76.2" width="0.1524" layer="91"/>
  6174. <wire x1="30.48" y1="76.2" x2="30.48" y2="71.12" width="0.1524" layer="91"/>
  6175. <pinref part="R16" gate="G$1" pin="1"/>
  6176. <wire x1="30.48" y1="71.12" x2="16.51" y2="71.12" width="0.1524" layer="91"/>
  6177. </segment>
  6178. </net>
  6179. <net name="N$42" class="0">
  6180. <segment>
  6181. <pinref part="JP4" gate="A" pin="6"/>
  6182. <wire x1="45.72" y1="76.2" x2="52.07" y2="76.2" width="0.1524" layer="91"/>
  6183. <wire x1="52.07" y1="76.2" x2="52.07" y2="63.5" width="0.1524" layer="91"/>
  6184. <pinref part="R17" gate="G$1" pin="1"/>
  6185. <wire x1="52.07" y1="63.5" x2="16.51" y2="63.5" width="0.1524" layer="91"/>
  6186. </segment>
  6187. </net>
  6188. <net name="N$43" class="0">
  6189. <segment>
  6190. <pinref part="JP1" gate="A" pin="5"/>
  6191. <wire x1="93.98" y1="12.7" x2="93.98" y2="7.62" width="0.1524" layer="91"/>
  6192. <wire x1="93.98" y1="7.62" x2="81.28" y2="7.62" width="0.1524" layer="91"/>
  6193. <wire x1="81.28" y1="7.62" x2="81.28" y2="-2.54" width="0.1524" layer="91"/>
  6194. <pinref part="QF1" gate="G$1" pin="1"/>
  6195. <wire x1="81.28" y1="-2.54" x2="83.82" y2="-2.54" width="0.1524" layer="91"/>
  6196. </segment>
  6197. </net>
  6198. <net name="N$44" class="0">
  6199. <segment>
  6200. <pinref part="JP1" gate="A" pin="6"/>
  6201. <wire x1="93.98" y1="20.32" x2="93.98" y2="25.4" width="0.1524" layer="91"/>
  6202. <wire x1="93.98" y1="25.4" x2="83.82" y2="25.4" width="0.1524" layer="91"/>
  6203. <wire x1="83.82" y1="25.4" x2="83.82" y2="2.54" width="0.1524" layer="91"/>
  6204. <wire x1="83.82" y1="2.54" x2="92.71" y2="2.54" width="0.1524" layer="91"/>
  6205. <wire x1="92.71" y1="2.54" x2="92.71" y2="-2.54" width="0.1524" layer="91"/>
  6206. <pinref part="QF1" gate="G$1" pin="3"/>
  6207. <wire x1="92.71" y1="-2.54" x2="88.9" y2="-2.54" width="0.1524" layer="91"/>
  6208. </segment>
  6209. </net>
  6210. <net name="N$45" class="0">
  6211. <segment>
  6212. <wire x1="67.31" y1="1.27" x2="78.74" y2="1.27" width="0.1524" layer="91"/>
  6213. <wire x1="78.74" y1="1.27" x2="78.74" y2="-10.16" width="0.1524" layer="91"/>
  6214. <pinref part="JP1" gate="A" pin="7"/>
  6215. <wire x1="78.74" y1="-10.16" x2="96.52" y2="-10.16" width="0.1524" layer="91"/>
  6216. <wire x1="96.52" y1="-10.16" x2="96.52" y2="12.7" width="0.1524" layer="91"/>
  6217. </segment>
  6218. </net>
  6219. <net name="N$46" class="0">
  6220. <segment>
  6221. <pinref part="JP4" gate="A" pin="8"/>
  6222. <wire x1="45.72" y1="73.66" x2="53.34" y2="73.66" width="0.1524" layer="91"/>
  6223. <pinref part="JP8" gate="A" pin="2"/>
  6224. <wire x1="53.34" y1="73.66" x2="53.34" y2="44.45" width="0.1524" layer="91"/>
  6225. <wire x1="53.34" y1="44.45" x2="8.89" y2="44.45" width="0.1524" layer="91"/>
  6226. </segment>
  6227. </net>
  6228. <net name="N$47" class="0">
  6229. <segment>
  6230. <pinref part="JP2" gate="A" pin="6"/>
  6231. <wire x1="167.64" y1="71.12" x2="157.48" y2="71.12" width="0.1524" layer="91"/>
  6232. <wire x1="157.48" y1="71.12" x2="157.48" y2="62.23" width="0.1524" layer="91"/>
  6233. <wire x1="157.48" y1="62.23" x2="199.39" y2="62.23" width="0.1524" layer="91"/>
  6234. <wire x1="199.39" y1="62.23" x2="199.39" y2="58.42" width="0.1524" layer="91"/>
  6235. <pinref part="X5" gate="-1" pin="1A"/>
  6236. <wire x1="199.39" y1="58.42" x2="207.01" y2="58.42" width="0.1524" layer="91"/>
  6237. </segment>
  6238. </net>
  6239. <net name="N$48" class="0">
  6240. <segment>
  6241. <pinref part="JP2" gate="A" pin="7"/>
  6242. <wire x1="175.26" y1="73.66" x2="190.5" y2="73.66" width="0.1524" layer="91"/>
  6243. <wire x1="190.5" y1="73.66" x2="190.5" y2="66.04" width="0.1524" layer="91"/>
  6244. <pinref part="X5" gate="-2" pin="1A"/>
  6245. <wire x1="190.5" y1="66.04" x2="207.01" y2="66.04" width="0.1524" layer="91"/>
  6246. </segment>
  6247. </net>
  6248. <net name="N$49" class="0">
  6249. <segment>
  6250. <pinref part="JP2" gate="A" pin="9"/>
  6251. <wire x1="175.26" y1="76.2" x2="191.77" y2="76.2" width="0.1524" layer="91"/>
  6252. <wire x1="191.77" y1="76.2" x2="191.77" y2="73.66" width="0.1524" layer="91"/>
  6253. <pinref part="X5" gate="-3" pin="1A"/>
  6254. <wire x1="191.77" y1="73.66" x2="207.01" y2="73.66" width="0.1524" layer="91"/>
  6255. </segment>
  6256. </net>
  6257. <net name="N$50" class="0">
  6258. <segment>
  6259. <pinref part="JP2" gate="A" pin="10"/>
  6260. <wire x1="167.64" y1="76.2" x2="161.29" y2="76.2" width="0.1524" layer="91"/>
  6261. <wire x1="161.29" y1="76.2" x2="161.29" y2="85.09" width="0.1524" layer="91"/>
  6262. <wire x1="161.29" y1="85.09" x2="203.2" y2="85.09" width="0.1524" layer="91"/>
  6263. <wire x1="203.2" y1="85.09" x2="203.2" y2="81.28" width="0.1524" layer="91"/>
  6264. <pinref part="X5" gate="-4" pin="1A"/>
  6265. <wire x1="203.2" y1="81.28" x2="207.01" y2="81.28" width="0.1524" layer="91"/>
  6266. </segment>
  6267. </net>
  6268. <net name="N$22" class="0">
  6269. <segment>
  6270. <pinref part="U$1" gate="G$1" pin="P$13"/>
  6271. <wire x1="90.17" y1="-55.88" x2="90.17" y2="-83.82" width="0.1524" layer="91"/>
  6272. <pinref part="X2" gate="-3" pin="1A"/>
  6273. <wire x1="90.17" y1="-83.82" x2="93.98" y2="-83.82" width="0.1524" layer="91"/>
  6274. <wire x1="93.98" y1="-83.82" x2="93.98" y2="-91.44" width="0.1524" layer="91"/>
  6275. </segment>
  6276. </net>
  6277. </nets>
  6278. </sheet>
  6279. </sheets>
  6280. </schematic>
  6281. </drawing>
  6282. </eagle>