mainboard.s#7 265 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE eagle SYSTEM "eagle.dtd">
  3. <eagle version="7.2.0">
  4. <drawing>
  5. <settings>
  6. <setting alwaysvectorfont="no"/>
  7. <setting verticaltext="up"/>
  8. </settings>
  9. <grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
  10. <layers>
  11. <layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
  12. <layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
  13. <layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
  14. <layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
  15. <layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
  16. <layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
  17. <layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
  18. <layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
  19. <layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
  20. <layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
  21. <layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
  22. <layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
  23. <layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
  24. <layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
  25. <layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
  26. <layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
  27. <layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
  28. <layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
  29. <layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
  30. <layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
  31. <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
  32. <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
  33. <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
  34. <layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
  35. <layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
  36. <layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
  37. <layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
  38. <layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
  39. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
  40. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
  41. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
  42. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
  43. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
  44. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
  45. <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
  46. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
  47. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
  48. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
  49. <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
  50. <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
  51. <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
  52. <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
  53. <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
  54. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
  55. <layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
  56. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
  57. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
  58. <layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
  59. <layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
  60. <layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
  61. <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
  62. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  63. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  64. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  65. <layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
  66. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  67. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  68. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  69. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  70. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  71. <layer number="99" name="SpiceOrder" color="5" fill="1" visible="yes" active="yes"/>
  72. </layers>
  73. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  74. <libraries>
  75. <library name="pinhead">
  76. <description>&lt;b&gt;Pin Header Connectors&lt;/b&gt;&lt;p&gt;
  77. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  78. <packages>
  79. <package name="1X08">
  80. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  81. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  82. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  83. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  84. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  85. <wire x1="2.54" y1="0.635" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  86. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  87. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  88. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  89. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  90. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  91. <wire x1="3.175" y1="-1.27" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  92. <wire x1="5.715" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  93. <wire x1="5.08" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  94. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  95. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  96. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  97. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  98. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  99. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  100. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  101. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  102. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  103. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  104. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  105. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  106. <wire x1="-5.08" y1="0.635" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
  107. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  108. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  109. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  110. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  111. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  112. <wire x1="-4.445" y1="-1.27" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  113. <wire x1="-1.905" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  114. <wire x1="-2.54" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  115. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  116. <wire x1="-9.525" y1="1.27" x2="-8.255" y2="1.27" width="0.1524" layer="21"/>
  117. <wire x1="-8.255" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  118. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  119. <wire x1="-7.62" y1="-0.635" x2="-8.255" y2="-1.27" width="0.1524" layer="21"/>
  120. <wire x1="-7.62" y1="0.635" x2="-6.985" y2="1.27" width="0.1524" layer="21"/>
  121. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  122. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  123. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  124. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  125. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  126. <wire x1="-6.985" y1="-1.27" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  127. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  128. <wire x1="-9.525" y1="1.27" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  129. <wire x1="-10.16" y1="-0.635" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  130. <wire x1="-8.255" y1="-1.27" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  131. <wire x1="8.255" y1="1.27" x2="9.525" y2="1.27" width="0.1524" layer="21"/>
  132. <wire x1="9.525" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  133. <wire x1="10.16" y1="0.635" x2="10.16" y2="-0.635" width="0.1524" layer="21"/>
  134. <wire x1="10.16" y1="-0.635" x2="9.525" y2="-1.27" width="0.1524" layer="21"/>
  135. <wire x1="8.255" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  136. <wire x1="7.62" y1="-0.635" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  137. <wire x1="9.525" y1="-1.27" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  138. <pad name="1" x="-8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  139. <pad name="2" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  140. <pad name="3" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  141. <pad name="4" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  142. <pad name="5" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  143. <pad name="6" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  144. <pad name="7" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  145. <pad name="8" x="8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  146. <text x="-10.2362" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  147. <text x="-10.16" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  148. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  149. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  150. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  151. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  152. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  153. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  154. <rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
  155. <rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
  156. </package>
  157. <package name="1X08/90">
  158. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  159. <wire x1="-10.16" y1="-1.905" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  160. <wire x1="-7.62" y1="-1.905" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  161. <wire x1="-7.62" y1="0.635" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  162. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-1.905" width="0.1524" layer="21"/>
  163. <wire x1="-8.89" y1="6.985" x2="-8.89" y2="1.27" width="0.762" layer="21"/>
  164. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  165. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  166. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  167. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  168. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  169. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  170. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  171. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  172. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  173. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  174. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  175. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  176. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  177. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  178. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  179. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  180. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  181. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  182. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  183. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  184. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  185. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  186. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  187. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  188. <wire x1="7.62" y1="-1.905" x2="10.16" y2="-1.905" width="0.1524" layer="21"/>
  189. <wire x1="10.16" y1="-1.905" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  190. <wire x1="10.16" y1="0.635" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  191. <wire x1="8.89" y1="6.985" x2="8.89" y2="1.27" width="0.762" layer="21"/>
  192. <pad name="1" x="-8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  193. <pad name="2" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  194. <pad name="3" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  195. <pad name="4" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  196. <pad name="5" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  197. <pad name="6" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  198. <pad name="7" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  199. <pad name="8" x="8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  200. <text x="-10.795" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  201. <text x="12.065" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  202. <rectangle x1="-9.271" y1="0.635" x2="-8.509" y2="1.143" layer="21"/>
  203. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  204. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  205. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  206. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  207. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  208. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  209. <rectangle x1="8.509" y1="0.635" x2="9.271" y2="1.143" layer="21"/>
  210. <rectangle x1="-9.271" y1="-2.921" x2="-8.509" y2="-1.905" layer="21"/>
  211. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  212. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  213. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  214. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  215. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  216. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  217. <rectangle x1="8.509" y1="-2.921" x2="9.271" y2="-1.905" layer="21"/>
  218. </package>
  219. <package name="1X10">
  220. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  221. <wire x1="7.62" y1="0.635" x2="8.255" y2="1.27" width="0.1524" layer="21"/>
  222. <wire x1="8.255" y1="1.27" x2="9.525" y2="1.27" width="0.1524" layer="21"/>
  223. <wire x1="9.525" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  224. <wire x1="10.16" y1="0.635" x2="10.16" y2="-0.635" width="0.1524" layer="21"/>
  225. <wire x1="10.16" y1="-0.635" x2="9.525" y2="-1.27" width="0.1524" layer="21"/>
  226. <wire x1="9.525" y1="-1.27" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
  227. <wire x1="8.255" y1="-1.27" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  228. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  229. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  230. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  231. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  232. <wire x1="5.08" y1="0.635" x2="5.715" y2="1.27" width="0.1524" layer="21"/>
  233. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  234. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  235. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  236. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  237. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  238. <wire x1="5.715" y1="-1.27" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  239. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  240. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  241. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  242. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  243. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  244. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  245. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  246. <wire x1="3.175" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  247. <wire x1="2.54" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  248. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  249. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  250. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  251. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  252. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  253. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  254. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  255. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  256. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  257. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  258. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  259. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  260. <wire x1="-7.62" y1="0.635" x2="-6.985" y2="1.27" width="0.1524" layer="21"/>
  261. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  262. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  263. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  264. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  265. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  266. <wire x1="-6.985" y1="-1.27" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  267. <wire x1="-4.445" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  268. <wire x1="-5.08" y1="-0.635" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  269. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  270. <wire x1="-12.065" y1="1.27" x2="-10.795" y2="1.27" width="0.1524" layer="21"/>
  271. <wire x1="-10.795" y1="1.27" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  272. <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  273. <wire x1="-10.16" y1="-0.635" x2="-10.795" y2="-1.27" width="0.1524" layer="21"/>
  274. <wire x1="-10.16" y1="0.635" x2="-9.525" y2="1.27" width="0.1524" layer="21"/>
  275. <wire x1="-9.525" y1="1.27" x2="-8.255" y2="1.27" width="0.1524" layer="21"/>
  276. <wire x1="-8.255" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  277. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  278. <wire x1="-7.62" y1="-0.635" x2="-8.255" y2="-1.27" width="0.1524" layer="21"/>
  279. <wire x1="-8.255" y1="-1.27" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
  280. <wire x1="-9.525" y1="-1.27" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
  281. <wire x1="-12.7" y1="0.635" x2="-12.7" y2="-0.635" width="0.1524" layer="21"/>
  282. <wire x1="-12.065" y1="1.27" x2="-12.7" y2="0.635" width="0.1524" layer="21"/>
  283. <wire x1="-12.7" y1="-0.635" x2="-12.065" y2="-1.27" width="0.1524" layer="21"/>
  284. <wire x1="-10.795" y1="-1.27" x2="-12.065" y2="-1.27" width="0.1524" layer="21"/>
  285. <wire x1="10.795" y1="1.27" x2="12.065" y2="1.27" width="0.1524" layer="21"/>
  286. <wire x1="12.065" y1="1.27" x2="12.7" y2="0.635" width="0.1524" layer="21"/>
  287. <wire x1="12.7" y1="0.635" x2="12.7" y2="-0.635" width="0.1524" layer="21"/>
  288. <wire x1="12.7" y1="-0.635" x2="12.065" y2="-1.27" width="0.1524" layer="21"/>
  289. <wire x1="10.795" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  290. <wire x1="10.16" y1="-0.635" x2="10.795" y2="-1.27" width="0.1524" layer="21"/>
  291. <wire x1="12.065" y1="-1.27" x2="10.795" y2="-1.27" width="0.1524" layer="21"/>
  292. <pad name="1" x="-11.43" y="0" drill="1.016" shape="long" rot="R90"/>
  293. <pad name="2" x="-8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  294. <pad name="3" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  295. <pad name="4" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  296. <pad name="5" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  297. <pad name="6" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  298. <pad name="7" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  299. <pad name="8" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  300. <pad name="9" x="8.89" y="0" drill="1.016" shape="long" rot="R90"/>
  301. <pad name="10" x="11.43" y="0" drill="1.016" shape="long" rot="R90"/>
  302. <text x="-12.7762" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  303. <text x="-12.7" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  304. <rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
  305. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  306. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  307. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  308. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  309. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  310. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  311. <rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
  312. <rectangle x1="-11.684" y1="-0.254" x2="-11.176" y2="0.254" layer="51"/>
  313. <rectangle x1="11.176" y1="-0.254" x2="11.684" y2="0.254" layer="51"/>
  314. </package>
  315. <package name="1X10/90">
  316. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  317. <wire x1="-12.7" y1="-1.905" x2="-10.16" y2="-1.905" width="0.1524" layer="21"/>
  318. <wire x1="-10.16" y1="-1.905" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  319. <wire x1="-10.16" y1="0.635" x2="-12.7" y2="0.635" width="0.1524" layer="21"/>
  320. <wire x1="-12.7" y1="0.635" x2="-12.7" y2="-1.905" width="0.1524" layer="21"/>
  321. <wire x1="-11.43" y1="6.985" x2="-11.43" y2="1.27" width="0.762" layer="21"/>
  322. <wire x1="-10.16" y1="-1.905" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  323. <wire x1="-7.62" y1="-1.905" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  324. <wire x1="-7.62" y1="0.635" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
  325. <wire x1="-8.89" y1="6.985" x2="-8.89" y2="1.27" width="0.762" layer="21"/>
  326. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  327. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  328. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  329. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  330. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  331. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  332. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  333. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  334. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  335. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  336. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  337. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  338. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  339. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  340. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  341. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  342. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  343. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  344. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  345. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  346. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  347. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  348. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  349. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  350. <wire x1="7.62" y1="-1.905" x2="10.16" y2="-1.905" width="0.1524" layer="21"/>
  351. <wire x1="10.16" y1="-1.905" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  352. <wire x1="10.16" y1="0.635" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  353. <wire x1="8.89" y1="6.985" x2="8.89" y2="1.27" width="0.762" layer="21"/>
  354. <wire x1="10.16" y1="-1.905" x2="12.7" y2="-1.905" width="0.1524" layer="21"/>
  355. <wire x1="12.7" y1="-1.905" x2="12.7" y2="0.635" width="0.1524" layer="21"/>
  356. <wire x1="12.7" y1="0.635" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
  357. <wire x1="11.43" y1="6.985" x2="11.43" y2="1.27" width="0.762" layer="21"/>
  358. <pad name="1" x="-11.43" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  359. <pad name="2" x="-8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  360. <pad name="3" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  361. <pad name="4" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  362. <pad name="5" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  363. <pad name="6" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  364. <pad name="7" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  365. <pad name="8" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  366. <pad name="9" x="8.89" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  367. <pad name="10" x="11.43" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  368. <text x="-13.335" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  369. <text x="14.605" y="-4.445" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  370. <rectangle x1="-11.811" y1="0.635" x2="-11.049" y2="1.143" layer="21"/>
  371. <rectangle x1="-9.271" y1="0.635" x2="-8.509" y2="1.143" layer="21"/>
  372. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  373. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  374. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  375. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  376. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  377. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  378. <rectangle x1="8.509" y1="0.635" x2="9.271" y2="1.143" layer="21"/>
  379. <rectangle x1="11.049" y1="0.635" x2="11.811" y2="1.143" layer="21"/>
  380. <rectangle x1="-11.811" y1="-2.921" x2="-11.049" y2="-1.905" layer="21"/>
  381. <rectangle x1="-9.271" y1="-2.921" x2="-8.509" y2="-1.905" layer="21"/>
  382. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  383. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  384. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  385. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  386. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  387. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  388. <rectangle x1="8.509" y1="-2.921" x2="9.271" y2="-1.905" layer="21"/>
  389. <rectangle x1="11.049" y1="-2.921" x2="11.811" y2="-1.905" layer="21"/>
  390. </package>
  391. <package name="1X04">
  392. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  393. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  394. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  395. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  396. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  397. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  398. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  399. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  400. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  401. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  402. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  403. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  404. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  405. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  406. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  407. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  408. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  409. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  410. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  411. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  412. <wire x1="-4.445" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  413. <wire x1="-5.08" y1="-0.635" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  414. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  415. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  416. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  417. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  418. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  419. <wire x1="3.175" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  420. <wire x1="2.54" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  421. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  422. <pad name="1" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  423. <pad name="2" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  424. <pad name="3" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  425. <pad name="4" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  426. <text x="-5.1562" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  427. <text x="-5.08" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  428. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  429. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  430. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  431. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  432. </package>
  433. <package name="1X04/90">
  434. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  435. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  436. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  437. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  438. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  439. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  440. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  441. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  442. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  443. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  444. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  445. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  446. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  447. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  448. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  449. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  450. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  451. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  452. <pad name="1" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  453. <pad name="2" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  454. <pad name="3" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  455. <pad name="4" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  456. <text x="-5.715" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  457. <text x="6.985" y="-4.445" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  458. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  459. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  460. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  461. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  462. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  463. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  464. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  465. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  466. </package>
  467. <package name="1X03">
  468. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  469. <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  470. <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  471. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  472. <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  473. <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  474. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  475. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  476. <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  477. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  478. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  479. <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  480. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  481. <wire x1="-3.175" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  482. <wire x1="-3.81" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  483. <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  484. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  485. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  486. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  487. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
  488. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  489. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  490. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  491. <pad name="1" x="-2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  492. <pad name="2" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  493. <pad name="3" x="2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  494. <text x="-3.8862" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  495. <text x="-3.81" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  496. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  497. <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
  498. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  499. </package>
  500. <package name="1X03/90">
  501. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  502. <wire x1="-3.81" y1="-1.905" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/>
  503. <wire x1="-1.27" y1="-1.905" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  504. <wire x1="-1.27" y1="0.635" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  505. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-1.905" width="0.1524" layer="21"/>
  506. <wire x1="-2.54" y1="6.985" x2="-2.54" y2="1.27" width="0.762" layer="21"/>
  507. <wire x1="-1.27" y1="-1.905" x2="1.27" y2="-1.905" width="0.1524" layer="21"/>
  508. <wire x1="1.27" y1="-1.905" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  509. <wire x1="1.27" y1="0.635" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  510. <wire x1="0" y1="6.985" x2="0" y2="1.27" width="0.762" layer="21"/>
  511. <wire x1="1.27" y1="-1.905" x2="3.81" y2="-1.905" width="0.1524" layer="21"/>
  512. <wire x1="3.81" y1="-1.905" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  513. <wire x1="3.81" y1="0.635" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  514. <wire x1="2.54" y1="6.985" x2="2.54" y2="1.27" width="0.762" layer="21"/>
  515. <pad name="1" x="-2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  516. <pad name="2" x="0" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  517. <pad name="3" x="2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  518. <text x="-4.445" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  519. <text x="5.715" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  520. <rectangle x1="-2.921" y1="0.635" x2="-2.159" y2="1.143" layer="21"/>
  521. <rectangle x1="-0.381" y1="0.635" x2="0.381" y2="1.143" layer="21"/>
  522. <rectangle x1="2.159" y1="0.635" x2="2.921" y2="1.143" layer="21"/>
  523. <rectangle x1="-2.921" y1="-2.921" x2="-2.159" y2="-1.905" layer="21"/>
  524. <rectangle x1="-0.381" y1="-2.921" x2="0.381" y2="-1.905" layer="21"/>
  525. <rectangle x1="2.159" y1="-2.921" x2="2.921" y2="-1.905" layer="21"/>
  526. </package>
  527. </packages>
  528. <symbols>
  529. <symbol name="PINHD8">
  530. <wire x1="-6.35" y1="-10.16" x2="1.27" y2="-10.16" width="0.4064" layer="94"/>
  531. <wire x1="1.27" y1="-10.16" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  532. <wire x1="1.27" y1="12.7" x2="-6.35" y2="12.7" width="0.4064" layer="94"/>
  533. <wire x1="-6.35" y1="12.7" x2="-6.35" y2="-10.16" width="0.4064" layer="94"/>
  534. <text x="-6.35" y="13.335" size="1.778" layer="95">&gt;NAME</text>
  535. <text x="-6.35" y="-12.7" size="1.778" layer="96">&gt;VALUE</text>
  536. <pin name="1" x="-2.54" y="10.16" visible="pad" length="short" direction="pas" function="dot"/>
  537. <pin name="2" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  538. <pin name="3" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  539. <pin name="4" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  540. <pin name="5" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  541. <pin name="6" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  542. <pin name="7" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  543. <pin name="8" x="-2.54" y="-7.62" visible="pad" length="short" direction="pas" function="dot"/>
  544. </symbol>
  545. <symbol name="PINHD10">
  546. <wire x1="-6.35" y1="-15.24" x2="1.27" y2="-15.24" width="0.4064" layer="94"/>
  547. <wire x1="1.27" y1="-15.24" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  548. <wire x1="1.27" y1="12.7" x2="-6.35" y2="12.7" width="0.4064" layer="94"/>
  549. <wire x1="-6.35" y1="12.7" x2="-6.35" y2="-15.24" width="0.4064" layer="94"/>
  550. <text x="-6.35" y="13.335" size="1.778" layer="95">&gt;NAME</text>
  551. <text x="-6.35" y="-17.78" size="1.778" layer="96">&gt;VALUE</text>
  552. <pin name="1" x="-2.54" y="10.16" visible="pad" length="short" direction="pas" function="dot"/>
  553. <pin name="2" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  554. <pin name="3" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  555. <pin name="4" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  556. <pin name="5" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  557. <pin name="6" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  558. <pin name="7" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  559. <pin name="8" x="-2.54" y="-7.62" visible="pad" length="short" direction="pas" function="dot"/>
  560. <pin name="9" x="-2.54" y="-10.16" visible="pad" length="short" direction="pas" function="dot"/>
  561. <pin name="10" x="-2.54" y="-12.7" visible="pad" length="short" direction="pas" function="dot"/>
  562. </symbol>
  563. <symbol name="PINHD4">
  564. <wire x1="-6.35" y1="-5.08" x2="1.27" y2="-5.08" width="0.4064" layer="94"/>
  565. <wire x1="1.27" y1="-5.08" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  566. <wire x1="1.27" y1="7.62" x2="-6.35" y2="7.62" width="0.4064" layer="94"/>
  567. <wire x1="-6.35" y1="7.62" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/>
  568. <text x="-6.35" y="8.255" size="1.778" layer="95">&gt;NAME</text>
  569. <text x="-6.35" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  570. <pin name="1" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  571. <pin name="2" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  572. <pin name="3" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  573. <pin name="4" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  574. </symbol>
  575. <symbol name="PINHD3">
  576. <wire x1="-6.35" y1="-5.08" x2="1.27" y2="-5.08" width="0.4064" layer="94"/>
  577. <wire x1="1.27" y1="-5.08" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  578. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  579. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/>
  580. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  581. <text x="-6.35" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  582. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  583. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  584. <pin name="3" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  585. </symbol>
  586. </symbols>
  587. <devicesets>
  588. <deviceset name="PINHD-1X8" prefix="JP" uservalue="yes">
  589. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  590. <gates>
  591. <gate name="A" symbol="PINHD8" x="0" y="0"/>
  592. </gates>
  593. <devices>
  594. <device name="" package="1X08">
  595. <connects>
  596. <connect gate="A" pin="1" pad="1"/>
  597. <connect gate="A" pin="2" pad="2"/>
  598. <connect gate="A" pin="3" pad="3"/>
  599. <connect gate="A" pin="4" pad="4"/>
  600. <connect gate="A" pin="5" pad="5"/>
  601. <connect gate="A" pin="6" pad="6"/>
  602. <connect gate="A" pin="7" pad="7"/>
  603. <connect gate="A" pin="8" pad="8"/>
  604. </connects>
  605. <technologies>
  606. <technology name=""/>
  607. </technologies>
  608. </device>
  609. <device name="/90" package="1X08/90">
  610. <connects>
  611. <connect gate="A" pin="1" pad="1"/>
  612. <connect gate="A" pin="2" pad="2"/>
  613. <connect gate="A" pin="3" pad="3"/>
  614. <connect gate="A" pin="4" pad="4"/>
  615. <connect gate="A" pin="5" pad="5"/>
  616. <connect gate="A" pin="6" pad="6"/>
  617. <connect gate="A" pin="7" pad="7"/>
  618. <connect gate="A" pin="8" pad="8"/>
  619. </connects>
  620. <technologies>
  621. <technology name=""/>
  622. </technologies>
  623. </device>
  624. </devices>
  625. </deviceset>
  626. <deviceset name="PINHD-1X10" prefix="JP" uservalue="yes">
  627. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  628. <gates>
  629. <gate name="A" symbol="PINHD10" x="0" y="0"/>
  630. </gates>
  631. <devices>
  632. <device name="" package="1X10">
  633. <connects>
  634. <connect gate="A" pin="1" pad="1"/>
  635. <connect gate="A" pin="10" pad="10"/>
  636. <connect gate="A" pin="2" pad="2"/>
  637. <connect gate="A" pin="3" pad="3"/>
  638. <connect gate="A" pin="4" pad="4"/>
  639. <connect gate="A" pin="5" pad="5"/>
  640. <connect gate="A" pin="6" pad="6"/>
  641. <connect gate="A" pin="7" pad="7"/>
  642. <connect gate="A" pin="8" pad="8"/>
  643. <connect gate="A" pin="9" pad="9"/>
  644. </connects>
  645. <technologies>
  646. <technology name=""/>
  647. </technologies>
  648. </device>
  649. <device name="/90" package="1X10/90">
  650. <connects>
  651. <connect gate="A" pin="1" pad="1"/>
  652. <connect gate="A" pin="10" pad="10"/>
  653. <connect gate="A" pin="2" pad="2"/>
  654. <connect gate="A" pin="3" pad="3"/>
  655. <connect gate="A" pin="4" pad="4"/>
  656. <connect gate="A" pin="5" pad="5"/>
  657. <connect gate="A" pin="6" pad="6"/>
  658. <connect gate="A" pin="7" pad="7"/>
  659. <connect gate="A" pin="8" pad="8"/>
  660. <connect gate="A" pin="9" pad="9"/>
  661. </connects>
  662. <technologies>
  663. <technology name=""/>
  664. </technologies>
  665. </device>
  666. </devices>
  667. </deviceset>
  668. <deviceset name="PINHD-1X4" prefix="JP" uservalue="yes">
  669. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  670. <gates>
  671. <gate name="A" symbol="PINHD4" x="0" y="0"/>
  672. </gates>
  673. <devices>
  674. <device name="" package="1X04">
  675. <connects>
  676. <connect gate="A" pin="1" pad="1"/>
  677. <connect gate="A" pin="2" pad="2"/>
  678. <connect gate="A" pin="3" pad="3"/>
  679. <connect gate="A" pin="4" pad="4"/>
  680. </connects>
  681. <technologies>
  682. <technology name=""/>
  683. </technologies>
  684. </device>
  685. <device name="/90" package="1X04/90">
  686. <connects>
  687. <connect gate="A" pin="1" pad="1"/>
  688. <connect gate="A" pin="2" pad="2"/>
  689. <connect gate="A" pin="3" pad="3"/>
  690. <connect gate="A" pin="4" pad="4"/>
  691. </connects>
  692. <technologies>
  693. <technology name=""/>
  694. </technologies>
  695. </device>
  696. </devices>
  697. </deviceset>
  698. <deviceset name="PINHD-1X3" prefix="JP" uservalue="yes">
  699. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  700. <gates>
  701. <gate name="A" symbol="PINHD3" x="0" y="0"/>
  702. </gates>
  703. <devices>
  704. <device name="" package="1X03">
  705. <connects>
  706. <connect gate="A" pin="1" pad="1"/>
  707. <connect gate="A" pin="2" pad="2"/>
  708. <connect gate="A" pin="3" pad="3"/>
  709. </connects>
  710. <technologies>
  711. <technology name=""/>
  712. </technologies>
  713. </device>
  714. <device name="/90" package="1X03/90">
  715. <connects>
  716. <connect gate="A" pin="1" pad="1"/>
  717. <connect gate="A" pin="2" pad="2"/>
  718. <connect gate="A" pin="3" pad="3"/>
  719. </connects>
  720. <technologies>
  721. <technology name=""/>
  722. </technologies>
  723. </device>
  724. </devices>
  725. </deviceset>
  726. </devicesets>
  727. </library>
  728. <library name="con-phoenix-3.81">
  729. <description>&lt;b&gt;Phoenix Connectors&lt;/b&gt; Grid 3.81 mm&lt;p&gt;
  730. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  731. <packages>
  732. <package name="1705566">
  733. <description>&lt;b&gt;MKDSD 1,5/ 4-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  734. Nennstrom: 8 A&lt;br&gt;
  735. Bemessungsspannung: 200 V&lt;br&gt;
  736. Raster: 3,81 mm&lt;br&gt;
  737. Polzahl: 4&lt;br&gt;
  738. Montageart: Löten&lt;br&gt;
  739. Anschlussart: Schraubanschluss&lt;br&gt;
  740. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  741. Source: http://eshop.phoenixcontact.com .. 1705566.pdf</description>
  742. <wire x1="-8.175" y1="-4.65" x2="-8.175" y2="-4.15" width="0.1016" layer="21"/>
  743. <wire x1="8.175" y1="4.65" x2="-8.175" y2="4.65" width="0.1016" layer="21"/>
  744. <wire x1="-8.175" y1="-4.15" x2="8.175" y2="-4.15" width="0.1016" layer="21"/>
  745. <wire x1="-8.175" y1="-4.15" x2="-8.175" y2="-4.05" width="0.1016" layer="21"/>
  746. <wire x1="-8.175" y1="2.7596" x2="-8.175" y2="4.65" width="0.1016" layer="21"/>
  747. <wire x1="8.175" y1="-3.25" x2="-8.175" y2="-3.25" width="0.1016" layer="21"/>
  748. <wire x1="8.175" y1="-3.05" x2="-8.175" y2="-3.05" width="0.1016" layer="21"/>
  749. <wire x1="8.175" y1="2.2824" x2="-8.175" y2="2.2824" width="0.1016" layer="21"/>
  750. <wire x1="8.175" y1="2.7596" x2="-8.175" y2="2.7596" width="0.1016" layer="21"/>
  751. <wire x1="-8.175" y1="-4.05" x2="-8.175" y2="-3.25" width="0.1016" layer="21"/>
  752. <wire x1="-8.175" y1="-3.25" x2="-8.175" y2="-3.05" width="0.1016" layer="21"/>
  753. <wire x1="-8.175" y1="-3.05" x2="-8.175" y2="2.2824" width="0.1016" layer="21"/>
  754. <wire x1="-8.175" y1="2.2824" x2="-8.175" y2="2.7596" width="0.1016" layer="21"/>
  755. <wire x1="-5.004" y1="1.856" x2="-6.921" y2="-0.061" width="0.1016" layer="21"/>
  756. <wire x1="-6.426" y1="-0.556" x2="-4.509" y2="1.361" width="0.1016" layer="21"/>
  757. <wire x1="-5.715" y1="-0.75" x2="-5.715" y2="-0.7" width="0.1016" layer="21"/>
  758. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-1.8" width="0.1016" layer="21"/>
  759. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-0.75" width="0.1016" layer="21"/>
  760. <wire x1="8.175" y1="-4.05" x2="-8.175" y2="-4.05" width="0.1016" layer="21"/>
  761. <wire x1="8.175" y1="-4.05" x2="8.175" y2="-3.25" width="0.1016" layer="21"/>
  762. <wire x1="8.175" y1="-3.25" x2="8.175" y2="-3.05" width="0.1016" layer="21"/>
  763. <wire x1="8.175" y1="-4.65" x2="-8.175" y2="-4.65" width="0.1016" layer="21"/>
  764. <wire x1="8.175" y1="-4.65" x2="8.175" y2="-4.15" width="0.1016" layer="21"/>
  765. <wire x1="8.175" y1="-4.15" x2="8.175" y2="-4.05" width="0.1016" layer="21"/>
  766. <wire x1="8.175" y1="2.2824" x2="8.175" y2="-3.05" width="0.1016" layer="21"/>
  767. <wire x1="8.175" y1="2.7596" x2="8.175" y2="2.2824" width="0.1016" layer="21"/>
  768. <wire x1="8.175" y1="2.7596" x2="8.175" y2="4.65" width="0.1016" layer="21"/>
  769. <wire x1="-1.194" y1="1.856" x2="-3.111" y2="-0.061" width="0.1016" layer="21"/>
  770. <wire x1="-2.616" y1="-0.556" x2="-0.699" y2="1.361" width="0.1016" layer="21"/>
  771. <wire x1="-1.905" y1="-0.75" x2="-1.905" y2="-0.7" width="0.1016" layer="21"/>
  772. <wire x1="-1.905" y1="-0.8" x2="-1.905" y2="-0.75" width="0.1016" layer="21"/>
  773. <wire x1="2.616" y1="1.856" x2="0.699" y2="-0.061" width="0.1016" layer="21"/>
  774. <wire x1="1.194" y1="-0.556" x2="3.111" y2="1.361" width="0.1016" layer="21"/>
  775. <wire x1="1.905" y1="-0.75" x2="1.905" y2="-0.7" width="0.1016" layer="21"/>
  776. <wire x1="1.905" y1="-0.8" x2="1.905" y2="-0.75" width="0.1016" layer="21"/>
  777. <wire x1="6.426" y1="1.856" x2="4.509" y2="-0.061" width="0.1016" layer="21"/>
  778. <wire x1="5.004" y1="-0.556" x2="6.921" y2="1.361" width="0.1016" layer="21"/>
  779. <wire x1="5.715" y1="-0.75" x2="5.715" y2="-0.7" width="0.1016" layer="21"/>
  780. <wire x1="5.715" y1="-0.8" x2="5.715" y2="-0.75" width="0.1016" layer="21"/>
  781. <circle x="-5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  782. <circle x="-1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  783. <circle x="1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  784. <circle x="5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  785. <pad name="1.1" x="-5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  786. <pad name="1.2" x="-5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  787. <pad name="2.1" x="-1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  788. <pad name="2.2" x="-1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  789. <pad name="3.1" x="1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  790. <pad name="3.2" x="1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  791. <pad name="4.1" x="5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  792. <pad name="4.2" x="5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  793. <text x="-8.89" y="-3.81" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  794. <text x="-6.985" y="5.08" size="1.27" layer="27">&gt;VALUE</text>
  795. <polygon width="0.1016" layer="21">
  796. <vertex x="-6.985" y="-1.27"/>
  797. <vertex x="-6.35" y="-2.54"/>
  798. <vertex x="-7.62" y="-2.54"/>
  799. </polygon>
  800. </package>
  801. <package name="1705605">
  802. <description>&lt;b&gt;MKDSD 1,5/ 8-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  803. Nennstrom: 8 A&lt;br&gt;
  804. Bemessungsspannung: 200 V&lt;br&gt;
  805. Raster: 3,81 mm&lt;br&gt;
  806. Polzahl: 8&lt;br&gt;
  807. Montageart: Löten&lt;br&gt;
  808. Anschlussart: Schraubanschluss&lt;br&gt;
  809. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  810. Source: http://eshop.phoenixcontact.com .. 1705605.pdf</description>
  811. <wire x1="-15.795" y1="-4.65" x2="-15.795" y2="-4.15" width="0.1016" layer="21"/>
  812. <wire x1="15.795" y1="4.65" x2="-15.795" y2="4.65" width="0.1016" layer="21"/>
  813. <wire x1="-15.795" y1="-4.15" x2="15.795" y2="-4.15" width="0.1016" layer="21"/>
  814. <wire x1="-15.795" y1="-4.15" x2="-15.795" y2="-4.05" width="0.1016" layer="21"/>
  815. <wire x1="-15.795" y1="2.7596" x2="-15.795" y2="4.65" width="0.1016" layer="21"/>
  816. <wire x1="15.795" y1="-3.25" x2="-15.795" y2="-3.25" width="0.1016" layer="21"/>
  817. <wire x1="15.795" y1="-3.05" x2="-15.795" y2="-3.05" width="0.1016" layer="21"/>
  818. <wire x1="15.795" y1="2.2824" x2="-15.795" y2="2.2824" width="0.1016" layer="21"/>
  819. <wire x1="15.795" y1="2.7596" x2="-15.795" y2="2.7596" width="0.1016" layer="21"/>
  820. <wire x1="-15.795" y1="-4.05" x2="-15.795" y2="-3.25" width="0.1016" layer="21"/>
  821. <wire x1="-15.795" y1="-3.25" x2="-15.795" y2="-3.05" width="0.1016" layer="21"/>
  822. <wire x1="-15.795" y1="-3.05" x2="-15.795" y2="2.2824" width="0.1016" layer="21"/>
  823. <wire x1="-15.795" y1="2.2824" x2="-15.795" y2="2.7596" width="0.1016" layer="21"/>
  824. <wire x1="-12.624" y1="1.856" x2="-14.541" y2="-0.061" width="0.1016" layer="21"/>
  825. <wire x1="-14.046" y1="-0.556" x2="-12.129" y2="1.361" width="0.1016" layer="21"/>
  826. <wire x1="-13.335" y1="-0.75" x2="-13.335" y2="-0.7" width="0.1016" layer="21"/>
  827. <wire x1="-13.335" y1="-0.8" x2="-13.335" y2="-1.8" width="0.1016" layer="21"/>
  828. <wire x1="-13.335" y1="-0.8" x2="-13.335" y2="-0.75" width="0.1016" layer="21"/>
  829. <wire x1="15.795" y1="-4.05" x2="-15.795" y2="-4.05" width="0.1016" layer="21"/>
  830. <wire x1="15.795" y1="-4.05" x2="15.795" y2="-3.25" width="0.1016" layer="21"/>
  831. <wire x1="15.795" y1="-3.25" x2="15.795" y2="-3.05" width="0.1016" layer="21"/>
  832. <wire x1="15.795" y1="-4.65" x2="-15.795" y2="-4.65" width="0.1016" layer="21"/>
  833. <wire x1="15.795" y1="-4.65" x2="15.795" y2="-4.15" width="0.1016" layer="21"/>
  834. <wire x1="15.795" y1="-4.15" x2="15.795" y2="-4.05" width="0.1016" layer="21"/>
  835. <wire x1="15.795" y1="2.2824" x2="15.795" y2="-3.05" width="0.1016" layer="21"/>
  836. <wire x1="15.795" y1="2.7596" x2="15.795" y2="2.2824" width="0.1016" layer="21"/>
  837. <wire x1="15.795" y1="2.7596" x2="15.795" y2="4.65" width="0.1016" layer="21"/>
  838. <wire x1="-8.814" y1="1.856" x2="-10.731" y2="-0.061" width="0.1016" layer="21"/>
  839. <wire x1="-10.236" y1="-0.556" x2="-8.319" y2="1.361" width="0.1016" layer="21"/>
  840. <wire x1="-9.525" y1="-0.75" x2="-9.525" y2="-0.7" width="0.1016" layer="21"/>
  841. <wire x1="-9.525" y1="-0.8" x2="-9.525" y2="-0.75" width="0.1016" layer="21"/>
  842. <wire x1="-5.004" y1="1.856" x2="-6.921" y2="-0.061" width="0.1016" layer="21"/>
  843. <wire x1="-6.426" y1="-0.556" x2="-4.509" y2="1.361" width="0.1016" layer="21"/>
  844. <wire x1="-5.715" y1="-0.75" x2="-5.715" y2="-0.7" width="0.1016" layer="21"/>
  845. <wire x1="-5.715" y1="-0.8" x2="-5.715" y2="-0.75" width="0.1016" layer="21"/>
  846. <wire x1="-1.194" y1="1.856" x2="-3.111" y2="-0.061" width="0.1016" layer="21"/>
  847. <wire x1="-2.616" y1="-0.556" x2="-0.699" y2="1.361" width="0.1016" layer="21"/>
  848. <wire x1="-1.905" y1="-0.75" x2="-1.905" y2="-0.7" width="0.1016" layer="21"/>
  849. <wire x1="-1.905" y1="-0.8" x2="-1.905" y2="-0.75" width="0.1016" layer="21"/>
  850. <wire x1="2.616" y1="1.856" x2="0.699" y2="-0.061" width="0.1016" layer="21"/>
  851. <wire x1="1.194" y1="-0.556" x2="3.111" y2="1.361" width="0.1016" layer="21"/>
  852. <wire x1="1.905" y1="-0.75" x2="1.905" y2="-0.7" width="0.1016" layer="21"/>
  853. <wire x1="1.905" y1="-0.8" x2="1.905" y2="-0.75" width="0.1016" layer="21"/>
  854. <wire x1="6.426" y1="1.856" x2="4.509" y2="-0.061" width="0.1016" layer="21"/>
  855. <wire x1="5.004" y1="-0.556" x2="6.921" y2="1.361" width="0.1016" layer="21"/>
  856. <wire x1="5.715" y1="-0.75" x2="5.715" y2="-0.7" width="0.1016" layer="21"/>
  857. <wire x1="5.715" y1="-0.8" x2="5.715" y2="-0.75" width="0.1016" layer="21"/>
  858. <wire x1="10.236" y1="1.856" x2="8.319" y2="-0.061" width="0.1016" layer="21"/>
  859. <wire x1="8.814" y1="-0.556" x2="10.731" y2="1.361" width="0.1016" layer="21"/>
  860. <wire x1="9.525" y1="-0.75" x2="9.525" y2="-0.7" width="0.1016" layer="21"/>
  861. <wire x1="9.525" y1="-0.8" x2="9.525" y2="-0.75" width="0.1016" layer="21"/>
  862. <wire x1="14.046" y1="1.856" x2="12.129" y2="-0.061" width="0.1016" layer="21"/>
  863. <wire x1="12.624" y1="-0.556" x2="14.541" y2="1.361" width="0.1016" layer="21"/>
  864. <wire x1="13.335" y1="-0.75" x2="13.335" y2="-0.7" width="0.1016" layer="21"/>
  865. <wire x1="13.335" y1="-0.8" x2="13.335" y2="-0.75" width="0.1016" layer="21"/>
  866. <circle x="-13.335" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  867. <circle x="-9.525" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  868. <circle x="-5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  869. <circle x="-1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  870. <circle x="1.905" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  871. <circle x="5.715" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  872. <circle x="9.525" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  873. <circle x="13.335" y="0.65" radius="1.4065" width="0.1016" layer="21"/>
  874. <pad name="1.1" x="-13.335" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  875. <pad name="1.2" x="-13.335" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  876. <pad name="2.1" x="-9.525" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  877. <pad name="2.2" x="-9.525" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  878. <pad name="3.1" x="-5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  879. <pad name="3.2" x="-5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  880. <pad name="4.1" x="-1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  881. <pad name="4.2" x="-1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  882. <pad name="5.1" x="1.905" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  883. <pad name="5.2" x="1.905" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  884. <pad name="6.1" x="5.715" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  885. <pad name="6.2" x="5.715" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  886. <pad name="7.1" x="9.525" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  887. <pad name="7.2" x="9.525" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  888. <pad name="8.1" x="13.335" y="-1.25" drill="0.5" diameter="0.9" rot="R90"/>
  889. <pad name="8.2" x="13.335" y="3.83" drill="0.5" diameter="0.9" rot="R90"/>
  890. <text x="-16.51" y="-3.81" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  891. <text x="-14.605" y="5.08" size="1.27" layer="27">&gt;VALUE</text>
  892. <polygon width="0.1016" layer="21">
  893. <vertex x="-14.605" y="-1.27"/>
  894. <vertex x="-13.97" y="-2.54"/>
  895. <vertex x="-15.24" y="-2.54"/>
  896. </polygon>
  897. </package>
  898. </packages>
  899. <symbols>
  900. <symbol name="SCHRAUBKLEMME_2">
  901. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.254" layer="94"/>
  902. <wire x1="-12.7" y1="1.27" x2="0" y2="1.27" width="0.254" layer="94"/>
  903. <wire x1="-12.7" y1="1.27" x2="-12.7" y2="-1.27" width="0.254" layer="94"/>
  904. <wire x1="0" y1="-1.27" x2="-12.7" y2="-1.27" width="0.254" layer="94"/>
  905. <circle x="-11.43" y="0" radius="0.6839" width="0.254" layer="94"/>
  906. <text x="-10.16" y="-0.889" size="1.778" layer="95">&gt;NAME</text>
  907. <text x="-12.7" y="-3.81" size="1.778" layer="96">&gt;VALUE</text>
  908. <pin name="1A" x="2.54" y="0" visible="off" length="short" direction="pas" rot="R180"/>
  909. </symbol>
  910. </symbols>
  911. <devicesets>
  912. <deviceset name="1705566" prefix="X">
  913. <description>&lt;b&gt;MKDSD 1,5/ 4-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  914. Nennstrom: 8 A&lt;br&gt;
  915. Bemessungsspannung: 200 V&lt;br&gt;
  916. Raster: 3,81 mm&lt;br&gt;
  917. Polzahl: 4&lt;br&gt;
  918. Montageart: Löten&lt;br&gt;
  919. Anschlussart: Schraubanschluss&lt;br&gt;
  920. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  921. Source: http://eshop.phoenixcontact.com .. 1705566.pdf</description>
  922. <gates>
  923. <gate name="-1" symbol="SCHRAUBKLEMME_2" x="0" y="0" addlevel="always"/>
  924. <gate name="-2" symbol="SCHRAUBKLEMME_2" x="0" y="-7.62" addlevel="always"/>
  925. <gate name="-3" symbol="SCHRAUBKLEMME_2" x="0" y="-15.24" addlevel="always"/>
  926. <gate name="-4" symbol="SCHRAUBKLEMME_2" x="0" y="-22.86" addlevel="always"/>
  927. </gates>
  928. <devices>
  929. <device name="" package="1705566">
  930. <connects>
  931. <connect gate="-1" pin="1A" pad="1.1 1.2" route="any"/>
  932. <connect gate="-2" pin="1A" pad="2.1 2.2" route="any"/>
  933. <connect gate="-3" pin="1A" pad="3.1 3.2" route="any"/>
  934. <connect gate="-4" pin="1A" pad="4.1 4.2" route="any"/>
  935. </connects>
  936. <technologies>
  937. <technology name="">
  938. <attribute name="MF" value="" constant="no"/>
  939. <attribute name="MPN" value="" constant="no"/>
  940. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  941. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  942. </technology>
  943. </technologies>
  944. </device>
  945. </devices>
  946. </deviceset>
  947. <deviceset name="1705605" prefix="X">
  948. <description>&lt;b&gt;MKDSD 1,5/10-3,81&lt;/b&gt; Printklemme&lt;p&gt;
  949. Nennstrom: 8 A&lt;br&gt;
  950. Bemessungsspannung: 200 V&lt;br&gt;
  951. Raster: 3,81 mm&lt;br&gt;
  952. Polzahl: 12&lt;br&gt;
  953. Montageart: Löten&lt;br&gt;
  954. Anschlussart: Schraubanschluss&lt;br&gt;
  955. Anschlussrichtung vom Leiter zur Platine: 0°&lt;br&gt;
  956. Source: http://eshop.phoenixcontact.com .. 1705605.pdf</description>
  957. <gates>
  958. <gate name="-1" symbol="SCHRAUBKLEMME_2" x="0" y="0" addlevel="always"/>
  959. <gate name="-2" symbol="SCHRAUBKLEMME_2" x="0" y="-7.62" addlevel="always"/>
  960. <gate name="-3" symbol="SCHRAUBKLEMME_2" x="0" y="-15.24" addlevel="always"/>
  961. <gate name="-4" symbol="SCHRAUBKLEMME_2" x="0" y="-22.86" addlevel="always"/>
  962. <gate name="-5" symbol="SCHRAUBKLEMME_2" x="0" y="-30.48" addlevel="always"/>
  963. <gate name="-6" symbol="SCHRAUBKLEMME_2" x="0" y="-38.1" addlevel="always"/>
  964. <gate name="-7" symbol="SCHRAUBKLEMME_2" x="0" y="-45.72" addlevel="always"/>
  965. <gate name="-8" symbol="SCHRAUBKLEMME_2" x="0" y="-53.34" addlevel="always"/>
  966. </gates>
  967. <devices>
  968. <device name="" package="1705605">
  969. <connects>
  970. <connect gate="-1" pin="1A" pad="1.1 1.2" route="any"/>
  971. <connect gate="-2" pin="1A" pad="2.1 2.2" route="any"/>
  972. <connect gate="-3" pin="1A" pad="3.1 3.2" route="any"/>
  973. <connect gate="-4" pin="1A" pad="4.1 4.2" route="any"/>
  974. <connect gate="-5" pin="1A" pad="5.1 5.2" route="any"/>
  975. <connect gate="-6" pin="1A" pad="6.1 6.2" route="any"/>
  976. <connect gate="-7" pin="1A" pad="7.1 7.2" route="any"/>
  977. <connect gate="-8" pin="1A" pad="8.1 8.2" route="any"/>
  978. </connects>
  979. <technologies>
  980. <technology name="">
  981. <attribute name="MF" value="" constant="no"/>
  982. <attribute name="MPN" value="" constant="no"/>
  983. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  984. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  985. </technology>
  986. </technologies>
  987. </device>
  988. </devices>
  989. </deviceset>
  990. </devicesets>
  991. </library>
  992. <library name="resistor">
  993. <description>&lt;b&gt;Resistors, Capacitors, Inductors&lt;/b&gt;&lt;p&gt;
  994. Based on the previous libraries:
  995. &lt;ul&gt;
  996. &lt;li&gt;r.lbr
  997. &lt;li&gt;cap.lbr
  998. &lt;li&gt;cap-fe.lbr
  999. &lt;li&gt;captant.lbr
  1000. &lt;li&gt;polcap.lbr
  1001. &lt;li&gt;ipc-smd.lbr
  1002. &lt;/ul&gt;
  1003. All SMD packages are defined according to the IPC specifications and CECC&lt;p&gt;
  1004. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;p&gt;
  1005. &lt;p&gt;
  1006. for Electrolyt Capacitors see also :&lt;p&gt;
  1007. www.bccomponents.com &lt;p&gt;
  1008. www.panasonic.com&lt;p&gt;
  1009. www.kemet.com&lt;p&gt;
  1010. &lt;p&gt;
  1011. for trimmer refence see : &lt;u&gt;www.electrospec-inc.com/cross_references/trimpotcrossref.asp&lt;/u&gt;&lt;p&gt;
  1012. &lt;map name="nav_main"&gt;
  1013. &lt;area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title=""&gt;
  1014. &lt;area shape="rect" coords="0,24,140,51" href="../about.asp" title=""&gt;
  1015. &lt;area shape="rect" coords="1,52,140,77" href="../rfq.asp" title=""&gt;
  1016. &lt;area shape="rect" coords="0,78,139,103" href="../products.asp" title=""&gt;
  1017. &lt;area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title=""&gt;
  1018. &lt;area shape="rect" coords="1,129,138,150" href="../edge.asp" title=""&gt;
  1019. &lt;area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title=""&gt;
  1020. &lt;area shape="rect" coords="0,179,139,201" href="../comments.asp" title=""&gt;
  1021. &lt;area shape="rect" coords="1,203,138,231" href="../directory.asp" title=""&gt;
  1022. &lt;area shape="default" nohref&gt;
  1023. &lt;/map&gt;
  1024. &lt;html&gt;
  1025. &lt;title&gt;&lt;/title&gt;
  1026. &lt;LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css"&gt;
  1027. &lt;body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"&gt;
  1028. &lt;table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%"&gt;
  1029. &lt;tr valign="top"&gt;
  1030. &lt;/td&gt;
  1031. &lt;! &lt;td width="10"&gt;&amp;nbsp;&lt;/td&gt;
  1032. &lt;td width="90%"&gt;
  1033. &lt;b&gt;&lt;font color="#0000FF" size="4"&gt;TRIM-POT CROSS REFERENCE&lt;/font&gt;&lt;/b&gt;
  1034. &lt;P&gt;
  1035. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2&gt;
  1036. &lt;TR&gt;
  1037. &lt;TD COLSPAN=8&gt;
  1038. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;RECTANGULAR MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1039. &lt;/TD&gt;
  1040. &lt;/TR&gt;
  1041. &lt;TR&gt;
  1042. &lt;TD ALIGN=CENTER&gt;
  1043. &lt;B&gt;
  1044. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BOURNS&lt;/FONT&gt;
  1045. &lt;/B&gt;
  1046. &lt;/TD&gt;
  1047. &lt;TD ALIGN=CENTER&gt;
  1048. &lt;B&gt;
  1049. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BI&amp;nbsp;TECH&lt;/FONT&gt;
  1050. &lt;/B&gt;
  1051. &lt;/TD&gt;
  1052. &lt;TD ALIGN=CENTER&gt;
  1053. &lt;B&gt;
  1054. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;DALE-VISHAY&lt;/FONT&gt;
  1055. &lt;/B&gt;
  1056. &lt;/TD&gt;
  1057. &lt;TD ALIGN=CENTER&gt;
  1058. &lt;B&gt;
  1059. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PHILIPS/MEPCO&lt;/FONT&gt;
  1060. &lt;/B&gt;
  1061. &lt;/TD&gt;
  1062. &lt;TD ALIGN=CENTER&gt;
  1063. &lt;B&gt;
  1064. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MURATA&lt;/FONT&gt;
  1065. &lt;/B&gt;
  1066. &lt;/TD&gt;
  1067. &lt;TD ALIGN=CENTER&gt;
  1068. &lt;B&gt;
  1069. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PANASONIC&lt;/FONT&gt;
  1070. &lt;/B&gt;
  1071. &lt;/TD&gt;
  1072. &lt;TD ALIGN=CENTER&gt;
  1073. &lt;B&gt;
  1074. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;SPECTROL&lt;/FONT&gt;
  1075. &lt;/B&gt;
  1076. &lt;/TD&gt;
  1077. &lt;TD ALIGN=CENTER&gt;
  1078. &lt;B&gt;
  1079. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MILSPEC&lt;/FONT&gt;
  1080. &lt;/B&gt;
  1081. &lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
  1082. &lt;/TR&gt;
  1083. &lt;TR&gt;
  1084. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3 &gt;
  1085. 3005P&lt;BR&gt;
  1086. 3006P&lt;BR&gt;
  1087. 3006W&lt;BR&gt;
  1088. 3006Y&lt;BR&gt;
  1089. 3009P&lt;BR&gt;
  1090. 3009W&lt;BR&gt;
  1091. 3009Y&lt;BR&gt;
  1092. 3057J&lt;BR&gt;
  1093. 3057L&lt;BR&gt;
  1094. 3057P&lt;BR&gt;
  1095. 3057Y&lt;BR&gt;
  1096. 3059J&lt;BR&gt;
  1097. 3059L&lt;BR&gt;
  1098. 3059P&lt;BR&gt;
  1099. 3059Y&lt;BR&gt;&lt;/FONT&gt;
  1100. &lt;/TD&gt;
  1101. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1102. -&lt;BR&gt;
  1103. 89P&lt;BR&gt;
  1104. 89W&lt;BR&gt;
  1105. 89X&lt;BR&gt;
  1106. 89PH&lt;BR&gt;
  1107. 76P&lt;BR&gt;
  1108. 89XH&lt;BR&gt;
  1109. 78SLT&lt;BR&gt;
  1110. 78L&amp;nbsp;ALT&lt;BR&gt;
  1111. 56P&amp;nbsp;ALT&lt;BR&gt;
  1112. 78P&amp;nbsp;ALT&lt;BR&gt;
  1113. T8S&lt;BR&gt;
  1114. 78L&lt;BR&gt;
  1115. 56P&lt;BR&gt;
  1116. 78P&lt;BR&gt;&lt;/FONT&gt;
  1117. &lt;/TD&gt;
  1118. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1119. -&lt;BR&gt;
  1120. T18/784&lt;BR&gt;
  1121. 783&lt;BR&gt;
  1122. 781&lt;BR&gt;
  1123. -&lt;BR&gt;
  1124. -&lt;BR&gt;
  1125. -&lt;BR&gt;
  1126. 2199&lt;BR&gt;
  1127. 1697/1897&lt;BR&gt;
  1128. 1680/1880&lt;BR&gt;
  1129. 2187&lt;BR&gt;
  1130. -&lt;BR&gt;
  1131. -&lt;BR&gt;
  1132. -&lt;BR&gt;
  1133. -&lt;BR&gt;&lt;/FONT&gt;
  1134. &lt;/TD&gt;
  1135. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1136. -&lt;BR&gt;
  1137. 8035EKP/CT20/RJ-20P&lt;BR&gt;
  1138. -&lt;BR&gt;
  1139. RJ-20X&lt;BR&gt;
  1140. -&lt;BR&gt;
  1141. -&lt;BR&gt;
  1142. -&lt;BR&gt;
  1143. 1211L&lt;BR&gt;
  1144. 8012EKQ&amp;nbsp;ALT&lt;BR&gt;
  1145. 8012EKR&amp;nbsp;ALT&lt;BR&gt;
  1146. 1211P&lt;BR&gt;
  1147. 8012EKJ&lt;BR&gt;
  1148. 8012EKL&lt;BR&gt;
  1149. 8012EKQ&lt;BR&gt;
  1150. 8012EKR&lt;BR&gt;&lt;/FONT&gt;
  1151. &lt;/TD&gt;
  1152. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1153. -&lt;BR&gt;
  1154. 2101P&lt;BR&gt;
  1155. 2101W&lt;BR&gt;
  1156. 2101Y&lt;BR&gt;
  1157. -&lt;BR&gt;
  1158. -&lt;BR&gt;
  1159. -&lt;BR&gt;
  1160. -&lt;BR&gt;
  1161. -&lt;BR&gt;
  1162. -&lt;BR&gt;
  1163. -&lt;BR&gt;
  1164. -&lt;BR&gt;
  1165. 2102L&lt;BR&gt;
  1166. 2102S&lt;BR&gt;
  1167. 2102Y&lt;BR&gt;&lt;/FONT&gt;
  1168. &lt;/TD&gt;
  1169. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1170. -&lt;BR&gt;
  1171. EVMCOG&lt;BR&gt;
  1172. -&lt;BR&gt;
  1173. -&lt;BR&gt;
  1174. -&lt;BR&gt;
  1175. -&lt;BR&gt;
  1176. -&lt;BR&gt;
  1177. -&lt;BR&gt;
  1178. -&lt;BR&gt;
  1179. -&lt;BR&gt;
  1180. -&lt;BR&gt;
  1181. -&lt;BR&gt;
  1182. -&lt;BR&gt;
  1183. -&lt;BR&gt;
  1184. -&lt;BR&gt;&lt;/FONT&gt;
  1185. &lt;/TD&gt;
  1186. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1187. -&lt;BR&gt;
  1188. 43P&lt;BR&gt;
  1189. 43W&lt;BR&gt;
  1190. 43Y&lt;BR&gt;
  1191. -&lt;BR&gt;
  1192. -&lt;BR&gt;
  1193. -&lt;BR&gt;
  1194. -&lt;BR&gt;
  1195. 40L&lt;BR&gt;
  1196. 40P&lt;BR&gt;
  1197. 40Y&lt;BR&gt;
  1198. 70Y-T602&lt;BR&gt;
  1199. 70L&lt;BR&gt;
  1200. 70P&lt;BR&gt;
  1201. 70Y&lt;BR&gt;&lt;/FONT&gt;
  1202. &lt;/TD&gt;
  1203. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1204. -&lt;BR&gt;
  1205. -&lt;BR&gt;
  1206. -&lt;BR&gt;
  1207. -&lt;BR&gt;
  1208. -&lt;BR&gt;
  1209. -&lt;BR&gt;
  1210. -&lt;BR&gt;
  1211. -&lt;BR&gt;
  1212. RT/RTR12&lt;BR&gt;
  1213. RT/RTR12&lt;BR&gt;
  1214. RT/RTR12&lt;BR&gt;
  1215. -&lt;BR&gt;
  1216. RJ/RJR12&lt;BR&gt;
  1217. RJ/RJR12&lt;BR&gt;
  1218. RJ/RJR12&lt;BR&gt;&lt;/FONT&gt;
  1219. &lt;/TD&gt;
  1220. &lt;/TR&gt;
  1221. &lt;TR&gt;
  1222. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1223. &lt;/TD&gt;
  1224. &lt;/TR&gt;
  1225. &lt;TR&gt;
  1226. &lt;TD COLSPAN=8&gt;
  1227. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SQUARE MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1228. &lt;/TD&gt;
  1229. &lt;/TR&gt;
  1230. &lt;TR&gt;
  1231. &lt;TD ALIGN=CENTER&gt;
  1232. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1233. &lt;/TD&gt;
  1234. &lt;TD ALIGN=CENTER&gt;
  1235. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1236. &lt;/TD&gt;
  1237. &lt;TD ALIGN=CENTER&gt;
  1238. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1239. &lt;/TD&gt;
  1240. &lt;TD ALIGN=CENTER&gt;
  1241. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1242. &lt;/TD&gt;
  1243. &lt;TD ALIGN=CENTER&gt;
  1244. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1245. &lt;/TD&gt;
  1246. &lt;TD ALIGN=CENTER&gt;
  1247. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1248. &lt;/TD&gt;
  1249. &lt;TD ALIGN=CENTER&gt;
  1250. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1251. &lt;/TD&gt;
  1252. &lt;TD ALIGN=CENTER&gt;
  1253. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1254. &lt;/TD&gt;
  1255. &lt;/TR&gt;
  1256. &lt;TR&gt;
  1257. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1258. 3250L&lt;BR&gt;
  1259. 3250P&lt;BR&gt;
  1260. 3250W&lt;BR&gt;
  1261. 3250X&lt;BR&gt;
  1262. 3252P&lt;BR&gt;
  1263. 3252W&lt;BR&gt;
  1264. 3252X&lt;BR&gt;
  1265. 3260P&lt;BR&gt;
  1266. 3260W&lt;BR&gt;
  1267. 3260X&lt;BR&gt;
  1268. 3262P&lt;BR&gt;
  1269. 3262W&lt;BR&gt;
  1270. 3262X&lt;BR&gt;
  1271. 3266P&lt;BR&gt;
  1272. 3266W&lt;BR&gt;
  1273. 3266X&lt;BR&gt;
  1274. 3290H&lt;BR&gt;
  1275. 3290P&lt;BR&gt;
  1276. 3290W&lt;BR&gt;
  1277. 3292P&lt;BR&gt;
  1278. 3292W&lt;BR&gt;
  1279. 3292X&lt;BR&gt;
  1280. 3296P&lt;BR&gt;
  1281. 3296W&lt;BR&gt;
  1282. 3296X&lt;BR&gt;
  1283. 3296Y&lt;BR&gt;
  1284. 3296Z&lt;BR&gt;
  1285. 3299P&lt;BR&gt;
  1286. 3299W&lt;BR&gt;
  1287. 3299X&lt;BR&gt;
  1288. 3299Y&lt;BR&gt;
  1289. 3299Z&lt;BR&gt;&lt;/FONT&gt;
  1290. &lt;/TD&gt;
  1291. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1292. -&lt;BR&gt;
  1293. 66P&amp;nbsp;ALT&lt;BR&gt;
  1294. 66W&amp;nbsp;ALT&lt;BR&gt;
  1295. 66X&amp;nbsp;ALT&lt;BR&gt;
  1296. 66P&amp;nbsp;ALT&lt;BR&gt;
  1297. 66W&amp;nbsp;ALT&lt;BR&gt;
  1298. 66X&amp;nbsp;ALT&lt;BR&gt;
  1299. -&lt;BR&gt;
  1300. 64W&amp;nbsp;ALT&lt;BR&gt;
  1301. -&lt;BR&gt;
  1302. 64P&amp;nbsp;ALT&lt;BR&gt;
  1303. 64W&amp;nbsp;ALT&lt;BR&gt;
  1304. 64X&amp;nbsp;ALT&lt;BR&gt;
  1305. 64P&lt;BR&gt;
  1306. 64W&lt;BR&gt;
  1307. 64X&lt;BR&gt;
  1308. 66X&amp;nbsp;ALT&lt;BR&gt;
  1309. 66P&amp;nbsp;ALT&lt;BR&gt;
  1310. 66W&amp;nbsp;ALT&lt;BR&gt;
  1311. 66P&lt;BR&gt;
  1312. 66W&lt;BR&gt;
  1313. 66X&lt;BR&gt;
  1314. 67P&lt;BR&gt;
  1315. 67W&lt;BR&gt;
  1316. 67X&lt;BR&gt;
  1317. 67Y&lt;BR&gt;
  1318. 67Z&lt;BR&gt;
  1319. 68P&lt;BR&gt;
  1320. 68W&lt;BR&gt;
  1321. 68X&lt;BR&gt;
  1322. 67Y&amp;nbsp;ALT&lt;BR&gt;
  1323. 67Z&amp;nbsp;ALT&lt;BR&gt;&lt;/FONT&gt;
  1324. &lt;/TD&gt;
  1325. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1326. 5050&lt;BR&gt;
  1327. 5091&lt;BR&gt;
  1328. 5080&lt;BR&gt;
  1329. 5087&lt;BR&gt;
  1330. -&lt;BR&gt;
  1331. -&lt;BR&gt;
  1332. -&lt;BR&gt;
  1333. -&lt;BR&gt;
  1334. -&lt;BR&gt;
  1335. -&lt;BR&gt;
  1336. -&lt;BR&gt;
  1337. T63YB&lt;BR&gt;
  1338. T63XB&lt;BR&gt;
  1339. -&lt;BR&gt;
  1340. -&lt;BR&gt;
  1341. -&lt;BR&gt;
  1342. 5887&lt;BR&gt;
  1343. 5891&lt;BR&gt;
  1344. 5880&lt;BR&gt;
  1345. -&lt;BR&gt;
  1346. -&lt;BR&gt;
  1347. -&lt;BR&gt;
  1348. T93Z&lt;BR&gt;
  1349. T93YA&lt;BR&gt;
  1350. T93XA&lt;BR&gt;
  1351. T93YB&lt;BR&gt;
  1352. T93XB&lt;BR&gt;
  1353. -&lt;BR&gt;
  1354. -&lt;BR&gt;
  1355. -&lt;BR&gt;
  1356. -&lt;BR&gt;
  1357. -&lt;BR&gt;&lt;/FONT&gt;
  1358. &lt;/TD&gt;
  1359. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1360. -&lt;BR&gt;
  1361. -&lt;BR&gt;
  1362. -&lt;BR&gt;
  1363. -&lt;BR&gt;
  1364. -&lt;BR&gt;
  1365. -&lt;BR&gt;
  1366. -&lt;BR&gt;
  1367. -&lt;BR&gt;
  1368. -&lt;BR&gt;
  1369. -&lt;BR&gt;
  1370. 8026EKP&lt;BR&gt;
  1371. 8026EKW&lt;BR&gt;
  1372. 8026EKM&lt;BR&gt;
  1373. 8026EKP&lt;BR&gt;
  1374. 8026EKB&lt;BR&gt;
  1375. 8026EKM&lt;BR&gt;
  1376. 1309X&lt;BR&gt;
  1377. 1309P&lt;BR&gt;
  1378. 1309W&lt;BR&gt;
  1379. 8024EKP&lt;BR&gt;
  1380. 8024EKW&lt;BR&gt;
  1381. 8024EKN&lt;BR&gt;
  1382. RJ-9P/CT9P&lt;BR&gt;
  1383. RJ-9W&lt;BR&gt;
  1384. RJ-9X&lt;BR&gt;
  1385. -&lt;BR&gt;
  1386. -&lt;BR&gt;
  1387. -&lt;BR&gt;
  1388. -&lt;BR&gt;
  1389. -&lt;BR&gt;
  1390. -&lt;BR&gt;
  1391. -&lt;BR&gt;&lt;/FONT&gt;
  1392. &lt;/TD&gt;
  1393. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1394. -&lt;BR&gt;
  1395. -&lt;BR&gt;
  1396. -&lt;BR&gt;
  1397. -&lt;BR&gt;
  1398. -&lt;BR&gt;
  1399. -&lt;BR&gt;
  1400. -&lt;BR&gt;
  1401. -&lt;BR&gt;
  1402. -&lt;BR&gt;
  1403. -&lt;BR&gt;
  1404. 3103P&lt;BR&gt;
  1405. 3103Y&lt;BR&gt;
  1406. 3103Z&lt;BR&gt;
  1407. 3103P&lt;BR&gt;
  1408. 3103Y&lt;BR&gt;
  1409. 3103Z&lt;BR&gt;
  1410. -&lt;BR&gt;
  1411. -&lt;BR&gt;
  1412. -&lt;BR&gt;
  1413. -&lt;BR&gt;
  1414. -&lt;BR&gt;
  1415. -&lt;BR&gt;
  1416. 3105P/3106P&lt;BR&gt;
  1417. 3105W/3106W&lt;BR&gt;
  1418. 3105X/3106X&lt;BR&gt;
  1419. 3105Y/3106Y&lt;BR&gt;
  1420. 3105Z/3105Z&lt;BR&gt;
  1421. 3102P&lt;BR&gt;
  1422. 3102W&lt;BR&gt;
  1423. 3102X&lt;BR&gt;
  1424. 3102Y&lt;BR&gt;
  1425. 3102Z&lt;BR&gt;&lt;/FONT&gt;
  1426. &lt;/TD&gt;
  1427. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1428. -&lt;BR&gt;
  1429. -&lt;BR&gt;
  1430. -&lt;BR&gt;
  1431. -&lt;BR&gt;
  1432. -&lt;BR&gt;
  1433. -&lt;BR&gt;
  1434. -&lt;BR&gt;
  1435. -&lt;BR&gt;
  1436. -&lt;BR&gt;
  1437. -&lt;BR&gt;
  1438. -&lt;BR&gt;
  1439. -&lt;BR&gt;
  1440. -&lt;BR&gt;
  1441. -&lt;BR&gt;
  1442. -&lt;BR&gt;
  1443. -&lt;BR&gt;
  1444. -&lt;BR&gt;
  1445. -&lt;BR&gt;
  1446. -&lt;BR&gt;
  1447. -&lt;BR&gt;
  1448. -&lt;BR&gt;
  1449. -&lt;BR&gt;
  1450. EVMCBG&lt;BR&gt;
  1451. EVMCCG&lt;BR&gt;
  1452. -&lt;BR&gt;
  1453. -&lt;BR&gt;
  1454. -&lt;BR&gt;
  1455. -&lt;BR&gt;
  1456. -&lt;BR&gt;
  1457. -&lt;BR&gt;
  1458. -&lt;BR&gt;
  1459. -&lt;BR&gt;&lt;/FONT&gt;
  1460. &lt;/TD&gt;
  1461. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1462. 55-1-X&lt;BR&gt;
  1463. 55-4-X&lt;BR&gt;
  1464. 55-3-X&lt;BR&gt;
  1465. 55-2-X&lt;BR&gt;
  1466. -&lt;BR&gt;
  1467. -&lt;BR&gt;
  1468. -&lt;BR&gt;
  1469. -&lt;BR&gt;
  1470. -&lt;BR&gt;
  1471. -&lt;BR&gt;
  1472. -&lt;BR&gt;
  1473. -&lt;BR&gt;
  1474. -&lt;BR&gt;
  1475. -&lt;BR&gt;
  1476. -&lt;BR&gt;
  1477. -&lt;BR&gt;
  1478. 50-2-X&lt;BR&gt;
  1479. 50-4-X&lt;BR&gt;
  1480. 50-3-X&lt;BR&gt;
  1481. -&lt;BR&gt;
  1482. -&lt;BR&gt;
  1483. -&lt;BR&gt;
  1484. 64P&lt;BR&gt;
  1485. 64W&lt;BR&gt;
  1486. 64X&lt;BR&gt;
  1487. 64Y&lt;BR&gt;
  1488. 64Z&lt;BR&gt;
  1489. -&lt;BR&gt;
  1490. -&lt;BR&gt;
  1491. -&lt;BR&gt;
  1492. -&lt;BR&gt;
  1493. -&lt;BR&gt;&lt;/FONT&gt;
  1494. &lt;/TD&gt;
  1495. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1496. RT/RTR22&lt;BR&gt;
  1497. RT/RTR22&lt;BR&gt;
  1498. RT/RTR22&lt;BR&gt;
  1499. RT/RTR22&lt;BR&gt;
  1500. RJ/RJR22&lt;BR&gt;
  1501. RJ/RJR22&lt;BR&gt;
  1502. RJ/RJR22&lt;BR&gt;
  1503. RT/RTR26&lt;BR&gt;
  1504. RT/RTR26&lt;BR&gt;
  1505. RT/RTR26&lt;BR&gt;
  1506. RJ/RJR26&lt;BR&gt;
  1507. RJ/RJR26&lt;BR&gt;
  1508. RJ/RJR26&lt;BR&gt;
  1509. RJ/RJR26&lt;BR&gt;
  1510. RJ/RJR26&lt;BR&gt;
  1511. RJ/RJR26&lt;BR&gt;
  1512. RT/RTR24&lt;BR&gt;
  1513. RT/RTR24&lt;BR&gt;
  1514. RT/RTR24&lt;BR&gt;
  1515. RJ/RJR24&lt;BR&gt;
  1516. RJ/RJR24&lt;BR&gt;
  1517. RJ/RJR24&lt;BR&gt;
  1518. RJ/RJR24&lt;BR&gt;
  1519. RJ/RJR24&lt;BR&gt;
  1520. RJ/RJR24&lt;BR&gt;
  1521. -&lt;BR&gt;
  1522. -&lt;BR&gt;
  1523. -&lt;BR&gt;
  1524. -&lt;BR&gt;
  1525. -&lt;BR&gt;
  1526. -&lt;BR&gt;
  1527. -&lt;BR&gt;&lt;/FONT&gt;
  1528. &lt;/TD&gt;
  1529. &lt;/TR&gt;
  1530. &lt;TR&gt;
  1531. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1532. &lt;/TD&gt;
  1533. &lt;/TR&gt;
  1534. &lt;TR&gt;
  1535. &lt;TD COLSPAN=8&gt;
  1536. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1537. &lt;/TD&gt;
  1538. &lt;/TR&gt;
  1539. &lt;TR&gt;
  1540. &lt;TD ALIGN=CENTER&gt;
  1541. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1542. &lt;/TD&gt;
  1543. &lt;TD ALIGN=CENTER&gt;
  1544. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1545. &lt;/TD&gt;
  1546. &lt;TD ALIGN=CENTER&gt;
  1547. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1548. &lt;/TD&gt;
  1549. &lt;TD ALIGN=CENTER&gt;
  1550. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1551. &lt;/TD&gt;
  1552. &lt;TD ALIGN=CENTER&gt;
  1553. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1554. &lt;/TD&gt;
  1555. &lt;TD ALIGN=CENTER&gt;
  1556. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1557. &lt;/TD&gt;
  1558. &lt;TD ALIGN=CENTER&gt;
  1559. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1560. &lt;/TD&gt;
  1561. &lt;TD ALIGN=CENTER&gt;
  1562. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1563. &lt;/TD&gt;
  1564. &lt;/TR&gt;
  1565. &lt;TR&gt;
  1566. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1567. 3323P&lt;BR&gt;
  1568. 3323S&lt;BR&gt;
  1569. 3323W&lt;BR&gt;
  1570. 3329H&lt;BR&gt;
  1571. 3329P&lt;BR&gt;
  1572. 3329W&lt;BR&gt;
  1573. 3339H&lt;BR&gt;
  1574. 3339P&lt;BR&gt;
  1575. 3339W&lt;BR&gt;
  1576. 3352E&lt;BR&gt;
  1577. 3352H&lt;BR&gt;
  1578. 3352K&lt;BR&gt;
  1579. 3352P&lt;BR&gt;
  1580. 3352T&lt;BR&gt;
  1581. 3352V&lt;BR&gt;
  1582. 3352W&lt;BR&gt;
  1583. 3362H&lt;BR&gt;
  1584. 3362M&lt;BR&gt;
  1585. 3362P&lt;BR&gt;
  1586. 3362R&lt;BR&gt;
  1587. 3362S&lt;BR&gt;
  1588. 3362U&lt;BR&gt;
  1589. 3362W&lt;BR&gt;
  1590. 3362X&lt;BR&gt;
  1591. 3386B&lt;BR&gt;
  1592. 3386C&lt;BR&gt;
  1593. 3386F&lt;BR&gt;
  1594. 3386H&lt;BR&gt;
  1595. 3386K&lt;BR&gt;
  1596. 3386M&lt;BR&gt;
  1597. 3386P&lt;BR&gt;
  1598. 3386S&lt;BR&gt;
  1599. 3386W&lt;BR&gt;
  1600. 3386X&lt;BR&gt;&lt;/FONT&gt;
  1601. &lt;/TD&gt;
  1602. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1603. 25P&lt;BR&gt;
  1604. 25S&lt;BR&gt;
  1605. 25RX&lt;BR&gt;
  1606. 82P&lt;BR&gt;
  1607. 82M&lt;BR&gt;
  1608. 82PA&lt;BR&gt;
  1609. -&lt;BR&gt;
  1610. -&lt;BR&gt;
  1611. -&lt;BR&gt;
  1612. 91E&lt;BR&gt;
  1613. 91X&lt;BR&gt;
  1614. 91T&lt;BR&gt;
  1615. 91B&lt;BR&gt;
  1616. 91A&lt;BR&gt;
  1617. 91V&lt;BR&gt;
  1618. 91W&lt;BR&gt;
  1619. 25W&lt;BR&gt;
  1620. 25V&lt;BR&gt;
  1621. 25P&lt;BR&gt;
  1622. -&lt;BR&gt;
  1623. 25S&lt;BR&gt;
  1624. 25U&lt;BR&gt;
  1625. 25RX&lt;BR&gt;
  1626. 25X&lt;BR&gt;
  1627. 72XW&lt;BR&gt;
  1628. 72XL&lt;BR&gt;
  1629. 72PM&lt;BR&gt;
  1630. 72RX&lt;BR&gt;
  1631. -&lt;BR&gt;
  1632. 72PX&lt;BR&gt;
  1633. 72P&lt;BR&gt;
  1634. 72RXW&lt;BR&gt;
  1635. 72RXL&lt;BR&gt;
  1636. 72X&lt;BR&gt;&lt;/FONT&gt;
  1637. &lt;/TD&gt;
  1638. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1639. -&lt;BR&gt;
  1640. -&lt;BR&gt;
  1641. -&lt;BR&gt;
  1642. T7YB&lt;BR&gt;
  1643. T7YA&lt;BR&gt;
  1644. -&lt;BR&gt;
  1645. -&lt;BR&gt;
  1646. -&lt;BR&gt;
  1647. -&lt;BR&gt;
  1648. -&lt;BR&gt;
  1649. -&lt;BR&gt;
  1650. -&lt;BR&gt;
  1651. -&lt;BR&gt;
  1652. -&lt;BR&gt;
  1653. -&lt;BR&gt;
  1654. -&lt;BR&gt;
  1655. -&lt;BR&gt;
  1656. TXD&lt;BR&gt;
  1657. TYA&lt;BR&gt;
  1658. TYP&lt;BR&gt;
  1659. -&lt;BR&gt;
  1660. TYD&lt;BR&gt;
  1661. TX&lt;BR&gt;
  1662. -&lt;BR&gt;
  1663. 150SX&lt;BR&gt;
  1664. 100SX&lt;BR&gt;
  1665. 102T&lt;BR&gt;
  1666. 101S&lt;BR&gt;
  1667. 190T&lt;BR&gt;
  1668. 150TX&lt;BR&gt;
  1669. 101&lt;BR&gt;
  1670. -&lt;BR&gt;
  1671. -&lt;BR&gt;
  1672. 101SX&lt;BR&gt;&lt;/FONT&gt;
  1673. &lt;/TD&gt;
  1674. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1675. ET6P&lt;BR&gt;
  1676. ET6S&lt;BR&gt;
  1677. ET6X&lt;BR&gt;
  1678. RJ-6W/8014EMW&lt;BR&gt;
  1679. RJ-6P/8014EMP&lt;BR&gt;
  1680. RJ-6X/8014EMX&lt;BR&gt;
  1681. TM7W&lt;BR&gt;
  1682. TM7P&lt;BR&gt;
  1683. TM7X&lt;BR&gt;
  1684. -&lt;BR&gt;
  1685. 8017SMS&lt;BR&gt;
  1686. -&lt;BR&gt;
  1687. 8017SMB&lt;BR&gt;
  1688. 8017SMA&lt;BR&gt;
  1689. -&lt;BR&gt;
  1690. -&lt;BR&gt;
  1691. CT-6W&lt;BR&gt;
  1692. CT-6H&lt;BR&gt;
  1693. CT-6P&lt;BR&gt;
  1694. CT-6R&lt;BR&gt;
  1695. -&lt;BR&gt;
  1696. CT-6V&lt;BR&gt;
  1697. CT-6X&lt;BR&gt;
  1698. -&lt;BR&gt;
  1699. -&lt;BR&gt;
  1700. 8038EKV&lt;BR&gt;
  1701. -&lt;BR&gt;
  1702. 8038EKX&lt;BR&gt;
  1703. -&lt;BR&gt;
  1704. -&lt;BR&gt;
  1705. 8038EKP&lt;BR&gt;
  1706. 8038EKZ&lt;BR&gt;
  1707. 8038EKW&lt;BR&gt;
  1708. -&lt;BR&gt;&lt;/FONT&gt;
  1709. &lt;/TD&gt;
  1710. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1711. -&lt;BR&gt;
  1712. -&lt;BR&gt;
  1713. -&lt;BR&gt;
  1714. 3321H&lt;BR&gt;
  1715. 3321P&lt;BR&gt;
  1716. 3321N&lt;BR&gt;
  1717. 1102H&lt;BR&gt;
  1718. 1102P&lt;BR&gt;
  1719. 1102T&lt;BR&gt;
  1720. RVA0911V304A&lt;BR&gt;
  1721. -&lt;BR&gt;
  1722. RVA0911H413A&lt;BR&gt;
  1723. RVG0707V100A&lt;BR&gt;
  1724. RVA0607V(H)306A&lt;BR&gt;
  1725. RVA1214H213A&lt;BR&gt;
  1726. -&lt;BR&gt;
  1727. -&lt;BR&gt;
  1728. -&lt;BR&gt;
  1729. -&lt;BR&gt;
  1730. -&lt;BR&gt;
  1731. -&lt;BR&gt;
  1732. -&lt;BR&gt;
  1733. -&lt;BR&gt;
  1734. -&lt;BR&gt;
  1735. 3104B&lt;BR&gt;
  1736. 3104C&lt;BR&gt;
  1737. 3104F&lt;BR&gt;
  1738. 3104H&lt;BR&gt;
  1739. -&lt;BR&gt;
  1740. 3104M&lt;BR&gt;
  1741. 3104P&lt;BR&gt;
  1742. 3104S&lt;BR&gt;
  1743. 3104W&lt;BR&gt;
  1744. 3104X&lt;BR&gt;&lt;/FONT&gt;
  1745. &lt;/TD&gt;
  1746. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1747. EVMQ0G&lt;BR&gt;
  1748. EVMQIG&lt;BR&gt;
  1749. EVMQ3G&lt;BR&gt;
  1750. EVMS0G&lt;BR&gt;
  1751. EVMQ0G&lt;BR&gt;
  1752. EVMG0G&lt;BR&gt;
  1753. -&lt;BR&gt;
  1754. -&lt;BR&gt;
  1755. -&lt;BR&gt;
  1756. EVMK4GA00B&lt;BR&gt;
  1757. EVM30GA00B&lt;BR&gt;
  1758. EVMK0GA00B&lt;BR&gt;
  1759. EVM38GA00B&lt;BR&gt;
  1760. EVMB6&lt;BR&gt;
  1761. EVLQ0&lt;BR&gt;
  1762. -&lt;BR&gt;
  1763. EVMMSG&lt;BR&gt;
  1764. EVMMBG&lt;BR&gt;
  1765. EVMMAG&lt;BR&gt;
  1766. -&lt;BR&gt;
  1767. -&lt;BR&gt;
  1768. EVMMCS&lt;BR&gt;
  1769. -&lt;BR&gt;
  1770. -&lt;BR&gt;
  1771. -&lt;BR&gt;
  1772. -&lt;BR&gt;
  1773. -&lt;BR&gt;
  1774. EVMM1&lt;BR&gt;
  1775. -&lt;BR&gt;
  1776. -&lt;BR&gt;
  1777. EVMM0&lt;BR&gt;
  1778. -&lt;BR&gt;
  1779. -&lt;BR&gt;
  1780. EVMM3&lt;BR&gt;&lt;/FONT&gt;
  1781. &lt;/TD&gt;
  1782. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1783. -&lt;BR&gt;
  1784. -&lt;BR&gt;
  1785. -&lt;BR&gt;
  1786. 62-3-1&lt;BR&gt;
  1787. 62-1-2&lt;BR&gt;
  1788. -&lt;BR&gt;
  1789. -&lt;BR&gt;
  1790. -&lt;BR&gt;
  1791. -&lt;BR&gt;
  1792. -&lt;BR&gt;
  1793. -&lt;BR&gt;
  1794. -&lt;BR&gt;
  1795. -&lt;BR&gt;
  1796. -&lt;BR&gt;
  1797. -&lt;BR&gt;
  1798. -&lt;BR&gt;
  1799. 67R&lt;BR&gt;
  1800. -&lt;BR&gt;
  1801. 67P&lt;BR&gt;
  1802. -&lt;BR&gt;
  1803. -&lt;BR&gt;
  1804. -&lt;BR&gt;
  1805. -&lt;BR&gt;
  1806. 67X&lt;BR&gt;
  1807. 63V&lt;BR&gt;
  1808. 63S&lt;BR&gt;
  1809. 63M&lt;BR&gt;
  1810. -&lt;BR&gt;
  1811. -&lt;BR&gt;
  1812. 63H&lt;BR&gt;
  1813. 63P&lt;BR&gt;
  1814. -&lt;BR&gt;
  1815. -&lt;BR&gt;
  1816. 63X&lt;BR&gt;&lt;/FONT&gt;
  1817. &lt;/TD&gt;
  1818. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1819. -&lt;BR&gt;
  1820. -&lt;BR&gt;
  1821. -&lt;BR&gt;
  1822. RJ/RJR50&lt;BR&gt;
  1823. RJ/RJR50&lt;BR&gt;
  1824. RJ/RJR50&lt;BR&gt;
  1825. -&lt;BR&gt;
  1826. -&lt;BR&gt;
  1827. -&lt;BR&gt;
  1828. -&lt;BR&gt;
  1829. -&lt;BR&gt;
  1830. -&lt;BR&gt;
  1831. -&lt;BR&gt;
  1832. -&lt;BR&gt;
  1833. -&lt;BR&gt;
  1834. -&lt;BR&gt;
  1835. -&lt;BR&gt;
  1836. -&lt;BR&gt;
  1837. -&lt;BR&gt;
  1838. -&lt;BR&gt;
  1839. -&lt;BR&gt;
  1840. -&lt;BR&gt;
  1841. -&lt;BR&gt;
  1842. -&lt;BR&gt;
  1843. -&lt;BR&gt;
  1844. -&lt;BR&gt;
  1845. -&lt;BR&gt;
  1846. -&lt;BR&gt;
  1847. -&lt;BR&gt;
  1848. -&lt;BR&gt;
  1849. -&lt;BR&gt;
  1850. -&lt;BR&gt;
  1851. -&lt;BR&gt;
  1852. -&lt;BR&gt;&lt;/FONT&gt;
  1853. &lt;/TD&gt;
  1854. &lt;/TR&gt;
  1855. &lt;/TABLE&gt;
  1856. &lt;P&gt;&amp;nbsp;&lt;P&gt;
  1857. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3&gt;
  1858. &lt;TR&gt;
  1859. &lt;TD COLSPAN=7&gt;
  1860. &lt;FONT color="#0000FF" SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SMD TRIM-POT CROSS REFERENCE&lt;/B&gt;&lt;/FONT&gt;
  1861. &lt;P&gt;
  1862. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1863. &lt;/TD&gt;
  1864. &lt;/TR&gt;
  1865. &lt;TR&gt;
  1866. &lt;TD&gt;
  1867. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1868. &lt;/TD&gt;
  1869. &lt;TD&gt;
  1870. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1871. &lt;/TD&gt;
  1872. &lt;TD&gt;
  1873. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1874. &lt;/TD&gt;
  1875. &lt;TD&gt;
  1876. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1877. &lt;/TD&gt;
  1878. &lt;TD&gt;
  1879. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1880. &lt;/TD&gt;
  1881. &lt;TD&gt;
  1882. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1883. &lt;/TD&gt;
  1884. &lt;TD&gt;
  1885. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1886. &lt;/TD&gt;
  1887. &lt;/TR&gt;
  1888. &lt;TR&gt;
  1889. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1890. 3224G&lt;BR&gt;
  1891. 3224J&lt;BR&gt;
  1892. 3224W&lt;BR&gt;
  1893. 3269P&lt;BR&gt;
  1894. 3269W&lt;BR&gt;
  1895. 3269X&lt;BR&gt;&lt;/FONT&gt;
  1896. &lt;/TD&gt;
  1897. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1898. 44G&lt;BR&gt;
  1899. 44J&lt;BR&gt;
  1900. 44W&lt;BR&gt;
  1901. 84P&lt;BR&gt;
  1902. 84W&lt;BR&gt;
  1903. 84X&lt;BR&gt;&lt;/FONT&gt;
  1904. &lt;/TD&gt;
  1905. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1906. -&lt;BR&gt;
  1907. -&lt;BR&gt;
  1908. -&lt;BR&gt;
  1909. ST63Z&lt;BR&gt;
  1910. ST63Y&lt;BR&gt;
  1911. -&lt;BR&gt;&lt;/FONT&gt;
  1912. &lt;/TD&gt;
  1913. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1914. -&lt;BR&gt;
  1915. -&lt;BR&gt;
  1916. -&lt;BR&gt;
  1917. ST5P&lt;BR&gt;
  1918. ST5W&lt;BR&gt;
  1919. ST5X&lt;BR&gt;&lt;/FONT&gt;
  1920. &lt;/TD&gt;
  1921. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1922. -&lt;BR&gt;
  1923. -&lt;BR&gt;
  1924. -&lt;BR&gt;
  1925. -&lt;BR&gt;
  1926. -&lt;BR&gt;
  1927. -&lt;BR&gt;&lt;/FONT&gt;
  1928. &lt;/TD&gt;
  1929. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1930. -&lt;BR&gt;
  1931. -&lt;BR&gt;
  1932. -&lt;BR&gt;
  1933. -&lt;BR&gt;
  1934. -&lt;BR&gt;
  1935. -&lt;BR&gt;&lt;/FONT&gt;
  1936. &lt;/TD&gt;
  1937. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1938. -&lt;BR&gt;
  1939. -&lt;BR&gt;
  1940. -&lt;BR&gt;
  1941. -&lt;BR&gt;
  1942. -&lt;BR&gt;
  1943. -&lt;BR&gt;&lt;/FONT&gt;
  1944. &lt;/TD&gt;
  1945. &lt;/TR&gt;
  1946. &lt;TR&gt;
  1947. &lt;TD COLSPAN=7&gt;&amp;nbsp;
  1948. &lt;/TD&gt;
  1949. &lt;/TR&gt;
  1950. &lt;TR&gt;
  1951. &lt;TD COLSPAN=7&gt;
  1952. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1953. &lt;/TD&gt;
  1954. &lt;/TR&gt;
  1955. &lt;TR&gt;
  1956. &lt;TD&gt;
  1957. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1958. &lt;/TD&gt;
  1959. &lt;TD&gt;
  1960. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1961. &lt;/TD&gt;
  1962. &lt;TD&gt;
  1963. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1964. &lt;/TD&gt;
  1965. &lt;TD&gt;
  1966. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1967. &lt;/TD&gt;
  1968. &lt;TD&gt;
  1969. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1970. &lt;/TD&gt;
  1971. &lt;TD&gt;
  1972. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1973. &lt;/TD&gt;
  1974. &lt;TD&gt;
  1975. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1976. &lt;/TD&gt;
  1977. &lt;/TR&gt;
  1978. &lt;TR&gt;
  1979. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1980. 3314G&lt;BR&gt;
  1981. 3314J&lt;BR&gt;
  1982. 3364A/B&lt;BR&gt;
  1983. 3364C/D&lt;BR&gt;
  1984. 3364W/X&lt;BR&gt;
  1985. 3313G&lt;BR&gt;
  1986. 3313J&lt;BR&gt;&lt;/FONT&gt;
  1987. &lt;/TD&gt;
  1988. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1989. 23B&lt;BR&gt;
  1990. 23A&lt;BR&gt;
  1991. 21X&lt;BR&gt;
  1992. 21W&lt;BR&gt;
  1993. -&lt;BR&gt;
  1994. 22B&lt;BR&gt;
  1995. 22A&lt;BR&gt;&lt;/FONT&gt;
  1996. &lt;/TD&gt;
  1997. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1998. ST5YL/ST53YL&lt;BR&gt;
  1999. ST5YJ/5T53YJ&lt;BR&gt;
  2000. ST-23A&lt;BR&gt;
  2001. ST-22B&lt;BR&gt;
  2002. ST-22&lt;BR&gt;
  2003. -&lt;BR&gt;
  2004. -&lt;BR&gt;&lt;/FONT&gt;
  2005. &lt;/TD&gt;
  2006. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2007. ST-4B&lt;BR&gt;
  2008. ST-4A&lt;BR&gt;
  2009. -&lt;BR&gt;
  2010. -&lt;BR&gt;
  2011. -&lt;BR&gt;
  2012. ST-3B&lt;BR&gt;
  2013. ST-3A&lt;BR&gt;&lt;/FONT&gt;
  2014. &lt;/TD&gt;
  2015. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2016. -&lt;BR&gt;
  2017. EVM-6YS&lt;BR&gt;
  2018. EVM-1E&lt;BR&gt;
  2019. EVM-1G&lt;BR&gt;
  2020. EVM-1D&lt;BR&gt;
  2021. -&lt;BR&gt;
  2022. -&lt;BR&gt;&lt;/FONT&gt;
  2023. &lt;/TD&gt;
  2024. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2025. G4B&lt;BR&gt;
  2026. G4A&lt;BR&gt;
  2027. TR04-3S1&lt;BR&gt;
  2028. TRG04-2S1&lt;BR&gt;
  2029. -&lt;BR&gt;
  2030. -&lt;BR&gt;
  2031. -&lt;BR&gt;&lt;/FONT&gt;
  2032. &lt;/TD&gt;
  2033. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  2034. -&lt;BR&gt;
  2035. -&lt;BR&gt;
  2036. DVR-43A&lt;BR&gt;
  2037. CVR-42C&lt;BR&gt;
  2038. CVR-42A/C&lt;BR&gt;
  2039. -&lt;BR&gt;
  2040. -&lt;BR&gt;&lt;/FONT&gt;
  2041. &lt;/TD&gt;
  2042. &lt;/TR&gt;
  2043. &lt;/TABLE&gt;
  2044. &lt;P&gt;
  2045. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;ALT =&amp;nbsp;ALTERNATE&lt;/B&gt;&lt;/FONT&gt;
  2046. &lt;P&gt;
  2047. &amp;nbsp;
  2048. &lt;P&gt;
  2049. &lt;/td&gt;
  2050. &lt;/tr&gt;
  2051. &lt;/table&gt;
  2052. &lt;/BODY&gt;&lt;/HTML&gt;</description>
  2053. <packages>
  2054. <package name="R0402">
  2055. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2056. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  2057. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  2058. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  2059. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  2060. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  2061. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  2062. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  2063. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  2064. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  2065. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  2066. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  2067. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  2068. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  2069. </package>
  2070. <package name="R0603">
  2071. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2072. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  2073. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  2074. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  2075. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  2076. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  2077. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  2078. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  2079. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  2080. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  2081. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  2082. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  2083. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  2084. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  2085. </package>
  2086. <package name="R0805">
  2087. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  2088. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2089. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2090. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2091. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2092. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2093. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2094. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  2095. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  2096. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2097. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2098. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2099. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2100. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  2101. </package>
  2102. <package name="R0805W">
  2103. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;</description>
  2104. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2105. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2106. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2107. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2108. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2109. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2110. <smd name="1" x="-1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  2111. <smd name="2" x="1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  2112. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2113. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2114. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2115. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2116. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  2117. </package>
  2118. <package name="R1206">
  2119. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2120. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  2121. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  2122. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2123. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2124. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2125. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2126. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  2127. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  2128. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2129. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2130. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  2131. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  2132. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2133. </package>
  2134. <package name="R1206W">
  2135. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2136. wave soldering</description>
  2137. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2138. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2139. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2140. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2141. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2142. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2143. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2144. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2145. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2146. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2147. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2148. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2149. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2150. </package>
  2151. <package name="R1210">
  2152. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2153. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2154. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2155. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2156. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2157. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2158. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2159. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2160. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2161. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2162. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2163. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2164. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2165. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  2166. </package>
  2167. <package name="R1210W">
  2168. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2169. wave soldering</description>
  2170. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2171. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2172. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2173. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2174. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2175. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2176. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2177. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2178. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2179. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2180. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2181. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2182. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2183. </package>
  2184. <package name="R2010">
  2185. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2186. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2187. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2188. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2189. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2190. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2191. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2192. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2193. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2194. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2195. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2196. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2197. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2198. </package>
  2199. <package name="R2010W">
  2200. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2201. wave soldering</description>
  2202. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2203. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2204. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2205. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2206. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2207. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2208. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2209. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2210. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2211. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2212. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2213. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2214. </package>
  2215. <package name="R2012">
  2216. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2217. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2218. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2219. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2220. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2221. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2222. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2223. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  2224. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  2225. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2226. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2227. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2228. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2229. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  2230. </package>
  2231. <package name="R2012W">
  2232. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2233. wave soldering</description>
  2234. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2235. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2236. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2237. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2238. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2239. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2240. <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
  2241. <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
  2242. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2243. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2244. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2245. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2246. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  2247. </package>
  2248. <package name="R2512">
  2249. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2250. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2251. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2252. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2253. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2254. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2255. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2256. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2257. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2258. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2259. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2260. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2261. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2262. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2263. </package>
  2264. <package name="R2512W">
  2265. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2266. wave soldering</description>
  2267. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2268. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2269. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2270. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2271. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2272. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2273. <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
  2274. <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
  2275. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2276. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2277. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2278. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2279. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2280. </package>
  2281. <package name="R3216">
  2282. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2283. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2284. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2285. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2286. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2287. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2288. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2289. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2290. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2291. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2292. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2293. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2294. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2295. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2296. </package>
  2297. <package name="R3216W">
  2298. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2299. wave soldering</description>
  2300. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2301. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2302. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2303. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2304. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2305. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2306. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2307. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  2308. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2309. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2310. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2311. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2312. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2313. </package>
  2314. <package name="R3225">
  2315. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2316. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2317. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2318. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2319. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2320. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2321. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2322. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2323. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2324. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2325. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2326. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2327. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2328. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2329. </package>
  2330. <package name="R3225W">
  2331. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2332. wave soldering</description>
  2333. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2334. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2335. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2336. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2337. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2338. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2339. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2340. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  2341. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2342. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2343. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2344. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2345. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2346. </package>
  2347. <package name="R5025">
  2348. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2349. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2350. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2351. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2352. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2353. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2354. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2355. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2356. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2357. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2358. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2359. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2360. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2361. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2362. </package>
  2363. <package name="R5025W">
  2364. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2365. wave soldering</description>
  2366. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2367. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2368. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2369. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2370. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2371. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2372. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2373. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  2374. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2375. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2376. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2377. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2378. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2379. </package>
  2380. <package name="R6332">
  2381. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2382. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2383. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2384. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2385. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2386. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2387. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2388. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2389. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2390. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2391. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2392. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2393. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2394. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2395. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2396. </package>
  2397. <package name="R6332W">
  2398. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;
  2399. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2400. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2401. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2402. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2403. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2404. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2405. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2406. <smd name="1" x="-3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2407. <smd name="2" x="3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2408. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2409. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2410. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2411. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2412. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2413. </package>
  2414. <package name="M0805">
  2415. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2416. MELF 0.10 W</description>
  2417. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2418. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2419. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2420. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2421. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2422. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2423. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2424. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2425. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2426. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2427. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2428. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2429. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2430. </package>
  2431. <package name="M1206">
  2432. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2433. MELF 0.25 W</description>
  2434. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2435. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2436. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2437. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2438. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2439. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2440. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2441. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2442. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2443. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2444. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2445. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2446. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2447. </package>
  2448. <package name="M1406">
  2449. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2450. MELF 0.12 W</description>
  2451. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2452. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2453. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2454. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2455. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2456. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2457. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2458. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2459. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2460. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2461. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2462. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2463. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2464. </package>
  2465. <package name="M2012">
  2466. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2467. MELF 0.10 W</description>
  2468. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2469. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2470. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2471. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2472. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2473. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2474. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2475. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2476. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2477. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2478. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2479. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2480. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2481. </package>
  2482. <package name="M2309">
  2483. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2484. MELF 0.25 W</description>
  2485. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2486. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2487. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2488. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2489. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2490. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2491. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2492. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2493. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2494. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2495. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2496. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2497. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2498. </package>
  2499. <package name="M3216">
  2500. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2501. MELF 0.25 W</description>
  2502. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2503. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2504. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2505. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2506. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2507. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2508. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2509. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2510. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2511. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2512. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2513. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2514. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2515. </package>
  2516. <package name="M3516">
  2517. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2518. MELF 0.12 W</description>
  2519. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2520. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2521. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2522. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2523. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2524. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2525. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2526. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2527. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2528. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2529. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2530. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2531. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  2532. </package>
  2533. <package name="M5923">
  2534. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2535. MELF 0.25 W</description>
  2536. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2537. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2538. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2539. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2540. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2541. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2542. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2543. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2544. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2545. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2546. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2547. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2548. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2549. </package>
  2550. <package name="0204/5">
  2551. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2552. type 0204, grid 5 mm</description>
  2553. <wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="51"/>
  2554. <wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="51"/>
  2555. <wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2556. <wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2557. <wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  2558. <wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  2559. <wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="51"/>
  2560. <wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2561. <wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2562. <wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2563. <wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2564. <wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2565. <wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
  2566. <wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2567. <wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
  2568. <wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2569. <wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2570. <wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="51"/>
  2571. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2572. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2573. <text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2574. <text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2575. <rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="51"/>
  2576. <rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="51"/>
  2577. </package>
  2578. <package name="0204/7">
  2579. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2580. type 0204, grid 7.5 mm</description>
  2581. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  2582. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  2583. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2584. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2585. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  2586. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  2587. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  2588. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2589. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2590. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2591. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2592. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2593. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  2594. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2595. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  2596. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2597. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2598. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  2599. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2600. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2601. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2602. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2603. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  2604. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  2605. </package>
  2606. <package name="0204V">
  2607. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2608. type 0204, grid 2.5 mm</description>
  2609. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="51"/>
  2610. <wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
  2611. <circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="51"/>
  2612. <circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="51"/>
  2613. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2614. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2615. <text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2616. <text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2617. </package>
  2618. <package name="0207/10">
  2619. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2620. type 0207, grid 10 mm</description>
  2621. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  2622. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  2623. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2624. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2625. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2626. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2627. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2628. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2629. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2630. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2631. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2632. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2633. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2634. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2635. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2636. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2637. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2638. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2639. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2640. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2641. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2642. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2643. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2644. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2645. </package>
  2646. <package name="0207/12">
  2647. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2648. type 0207, grid 12 mm</description>
  2649. <wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="51"/>
  2650. <wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="51"/>
  2651. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2652. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2653. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2654. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2655. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2656. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2657. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2658. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2659. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2660. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2661. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2662. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2663. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2664. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2665. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2666. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2667. <wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2668. <wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2669. <pad name="1" x="-6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2670. <pad name="2" x="6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2671. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2672. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2673. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2674. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2675. <rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
  2676. <rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  2677. </package>
  2678. <package name="0207/15">
  2679. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2680. type 0207, grid 15mm</description>
  2681. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="51"/>
  2682. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="51"/>
  2683. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2684. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2685. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2686. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2687. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2688. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2689. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2690. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2691. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2692. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2693. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2694. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2695. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2696. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2697. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2698. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2699. <wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2700. <wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2701. <pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
  2702. <pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
  2703. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2704. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2705. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2706. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2707. <rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
  2708. <rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
  2709. </package>
  2710. <package name="0207/2V">
  2711. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2712. type 0207, grid 2.5 mm</description>
  2713. <wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="51"/>
  2714. <wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
  2715. <wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="51"/>
  2716. <circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
  2717. <circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="51"/>
  2718. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2719. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2720. <text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2721. <text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2722. </package>
  2723. <package name="0207/5V">
  2724. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2725. type 0207, grid 5 mm</description>
  2726. <wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="51"/>
  2727. <wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
  2728. <wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="51"/>
  2729. <circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
  2730. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2731. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2732. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2733. <text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2734. <text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2735. </package>
  2736. <package name="0207/7">
  2737. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2738. type 0207, grid 7.5 mm</description>
  2739. <wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="51"/>
  2740. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2741. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2742. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2743. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2744. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="51"/>
  2745. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2746. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2747. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2748. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2749. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2750. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2751. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2752. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2753. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2754. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2755. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="51"/>
  2756. <wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="51"/>
  2757. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2758. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2759. <text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2760. <text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2761. <rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="51"/>
  2762. <rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="51"/>
  2763. </package>
  2764. <package name="0309/10">
  2765. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2766. type 0309, grid 10mm</description>
  2767. <wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2768. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2769. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2770. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2771. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2772. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="51"/>
  2773. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2774. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2775. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2776. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2777. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2778. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2779. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2780. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2781. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2782. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2783. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="51"/>
  2784. <wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="51"/>
  2785. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2786. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2787. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2788. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2789. <rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="51"/>
  2790. <rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="51"/>
  2791. </package>
  2792. <package name="0309/12">
  2793. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2794. type 0309, grid 12.5 mm</description>
  2795. <wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  2796. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2797. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2798. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2799. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2800. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2801. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
  2802. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2803. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2804. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2805. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2806. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2807. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2808. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2809. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2810. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2811. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2812. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
  2813. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  2814. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  2815. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2816. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2817. <rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
  2818. <rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
  2819. </package>
  2820. <package name="0309V">
  2821. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2822. type 0309, grid 2.5 mm</description>
  2823. <wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="51"/>
  2824. <wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="51"/>
  2825. <circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
  2826. <circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="51"/>
  2827. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2828. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2829. <text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2830. <text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2831. <rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="51"/>
  2832. <rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="51"/>
  2833. <rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
  2834. </package>
  2835. <package name="0411/12">
  2836. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2837. type 0411, grid 12.5 mm</description>
  2838. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="51"/>
  2839. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="51"/>
  2840. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2841. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2842. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2843. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2844. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2845. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2846. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2847. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2848. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2849. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2850. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2851. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2852. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2853. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2854. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2855. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2856. <pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
  2857. <pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
  2858. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2859. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2860. <rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2861. <rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
  2862. </package>
  2863. <package name="0411/15">
  2864. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2865. type 0411, grid 15 mm</description>
  2866. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2867. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2868. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2869. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2870. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2871. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2872. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2873. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2874. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2875. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2876. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2877. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2878. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2879. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2880. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2881. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2882. <wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="51"/>
  2883. <wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="51"/>
  2884. <pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
  2885. <pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
  2886. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2887. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2888. <rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
  2889. <rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2890. </package>
  2891. <package name="0411V">
  2892. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2893. type 0411, grid 3.81 mm</description>
  2894. <wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="51"/>
  2895. <wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="51"/>
  2896. <circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
  2897. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2898. <pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
  2899. <pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
  2900. <text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2901. <text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2902. <rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
  2903. </package>
  2904. <package name="0414/15">
  2905. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2906. type 0414, grid 15 mm</description>
  2907. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="51"/>
  2908. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="51"/>
  2909. <wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
  2910. <wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
  2911. <wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  2912. <wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  2913. <wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
  2914. <wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2915. <wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2916. <wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2917. <wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2918. <wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2919. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  2920. <wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2921. <wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
  2922. <wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2923. <wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2924. <wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
  2925. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2926. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2927. <text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2928. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2929. <rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
  2930. <rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
  2931. </package>
  2932. <package name="0414V">
  2933. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2934. type 0414, grid 5 mm</description>
  2935. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2936. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2937. <circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
  2938. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2939. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2940. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2941. <text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2942. <text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2943. <rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
  2944. </package>
  2945. <package name="0617/17">
  2946. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2947. type 0617, grid 17.5 mm</description>
  2948. <wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="51"/>
  2949. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2950. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2951. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2952. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2953. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2954. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2955. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2956. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2957. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2958. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2959. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
  2960. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="51"/>
  2961. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2962. <wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
  2963. <wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="51"/>
  2964. <wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2965. <wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="51"/>
  2966. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2967. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2968. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2969. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2970. <pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
  2971. <pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
  2972. <text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2973. <text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2974. <rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="51"/>
  2975. <rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="51"/>
  2976. </package>
  2977. <package name="0617/22">
  2978. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2979. type 0617, grid 22.5 mm</description>
  2980. <wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2981. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2982. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2983. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2984. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2985. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2986. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2987. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2988. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2989. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2990. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2991. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2992. <wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2993. <wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="51"/>
  2994. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2995. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2996. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2997. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2998. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2999. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  3000. <text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3001. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3002. <rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
  3003. <rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
  3004. </package>
  3005. <package name="0617V">
  3006. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3007. type 0617, grid 5 mm</description>
  3008. <wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="51"/>
  3009. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="51"/>
  3010. <circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
  3011. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  3012. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  3013. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3014. <text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3015. <text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3016. <rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  3017. </package>
  3018. <package name="0922/22">
  3019. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3020. type 0922, grid 22.5 mm</description>
  3021. <wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="51"/>
  3022. <wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="51"/>
  3023. <wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
  3024. <wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  3025. <wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  3026. <wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  3027. <wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  3028. <wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  3029. <wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
  3030. <wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  3031. <wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
  3032. <wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  3033. <wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  3034. <wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
  3035. <wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  3036. <wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  3037. <wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
  3038. <wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
  3039. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  3040. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  3041. <text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3042. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3043. <rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="51"/>
  3044. <rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  3045. <rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
  3046. <rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="51"/>
  3047. </package>
  3048. <package name="P0613V">
  3049. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3050. type 0613, grid 5 mm</description>
  3051. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  3052. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  3053. <circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
  3054. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  3055. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  3056. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3057. <text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3058. <text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3059. <rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  3060. </package>
  3061. <package name="P0613/15">
  3062. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3063. type 0613, grid 15 mm</description>
  3064. <wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="51"/>
  3065. <wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="51"/>
  3066. <wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3067. <wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3068. <wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3069. <wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3070. <wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  3071. <wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  3072. <wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  3073. <wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  3074. <wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  3075. <wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
  3076. <wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  3077. <wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
  3078. <wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  3079. <wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  3080. <wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
  3081. <wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="51"/>
  3082. <wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
  3083. <wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
  3084. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="51"/>
  3085. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
  3086. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  3087. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  3088. <text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3089. <text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3090. <rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="51"/>
  3091. <rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="51"/>
  3092. </package>
  3093. <package name="P0817/22">
  3094. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3095. type 0817, grid 22.5 mm</description>
  3096. <wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  3097. <wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
  3098. <wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  3099. <wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  3100. <wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  3101. <wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  3102. <wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  3103. <wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
  3104. <wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  3105. <wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
  3106. <wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  3107. <wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  3108. <wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
  3109. <wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="51"/>
  3110. <wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  3111. <wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  3112. <wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  3113. <wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  3114. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  3115. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  3116. <text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3117. <text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3118. <text x="6.604" y="-2.2606" size="1.27" layer="51" ratio="10" rot="R90">0817</text>
  3119. <rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  3120. <rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
  3121. </package>
  3122. <package name="P0817V">
  3123. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3124. type 0817, grid 6.35 mm</description>
  3125. <wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="51"/>
  3126. <wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="51"/>
  3127. <circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
  3128. <circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="51"/>
  3129. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3130. <pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
  3131. <text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3132. <text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3133. <text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
  3134. <rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
  3135. </package>
  3136. <package name="V234/12">
  3137. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3138. type V234, grid 12.5 mm</description>
  3139. <wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  3140. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3141. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3142. <wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  3143. <wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  3144. <wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
  3145. <wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
  3146. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  3147. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="51"/>
  3148. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="51"/>
  3149. <pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
  3150. <pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
  3151. <text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3152. <text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3153. <rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
  3154. <rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
  3155. </package>
  3156. <package name="V235/17">
  3157. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3158. type V235, grid 17.78 mm</description>
  3159. <wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
  3160. <wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
  3161. <wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
  3162. <wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
  3163. <wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="51"/>
  3164. <wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="51"/>
  3165. <wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
  3166. <wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3167. <wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3168. <wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
  3169. <pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
  3170. <pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
  3171. <text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3172. <text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3173. <rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
  3174. <rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
  3175. </package>
  3176. <package name="V526-0">
  3177. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3178. type V526-0, grid 2.5 mm</description>
  3179. <wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3180. <wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3181. <wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3182. <wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3183. <wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
  3184. <wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
  3185. <wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
  3186. <wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
  3187. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3188. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3189. <text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3190. <text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3191. </package>
  3192. <package name="MINI_MELF-0102R">
  3193. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;
  3194. source Beyschlag</description>
  3195. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  3196. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  3197. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  3198. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  3199. <smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  3200. <smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  3201. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3202. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3203. </package>
  3204. <package name="MINI_MELF-0102W">
  3205. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;
  3206. source Beyschlag</description>
  3207. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  3208. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  3209. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  3210. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  3211. <smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  3212. <smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  3213. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3214. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3215. </package>
  3216. <package name="MINI_MELF-0204R">
  3217. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;
  3218. source Beyschlag</description>
  3219. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  3220. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  3221. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  3222. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  3223. <wire x1="0.938" y1="0.6" x2="-0.938" y2="0.6" width="0.2032" layer="21"/>
  3224. <wire x1="-0.938" y1="-0.6" x2="0.938" y2="-0.6" width="0.2032" layer="21"/>
  3225. <smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  3226. <smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  3227. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3228. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3229. </package>
  3230. <package name="MINI_MELF-0204W">
  3231. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;
  3232. source Beyschlag</description>
  3233. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  3234. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  3235. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  3236. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  3237. <wire x1="0.684" y1="0.6" x2="-0.684" y2="0.6" width="0.2032" layer="21"/>
  3238. <wire x1="-0.684" y1="-0.6" x2="0.684" y2="-0.6" width="0.2032" layer="21"/>
  3239. <smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  3240. <smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  3241. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3242. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3243. </package>
  3244. <package name="MINI_MELF-0207R">
  3245. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;
  3246. source Beyschlag</description>
  3247. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  3248. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  3249. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  3250. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  3251. <wire x1="1.2125" y1="1" x2="-1.2125" y2="1" width="0.2032" layer="21"/>
  3252. <wire x1="-1.2125" y1="-1" x2="1.2125" y2="-1" width="0.2032" layer="21"/>
  3253. <smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  3254. <smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  3255. <text x="-2.2225" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  3256. <text x="-2.2225" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3257. </package>
  3258. <package name="MINI_MELF-0207W">
  3259. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;
  3260. source Beyschlag</description>
  3261. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  3262. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  3263. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  3264. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  3265. <wire x1="1.149" y1="1" x2="-1.149" y2="1" width="0.2032" layer="21"/>
  3266. <wire x1="-1.149" y1="-1" x2="1.149" y2="-1" width="0.2032" layer="21"/>
  3267. <smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  3268. <smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  3269. <text x="-2.54" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  3270. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3271. </package>
  3272. <package name="0922V">
  3273. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3274. type 0922, grid 7.5 mm</description>
  3275. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  3276. <wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="51"/>
  3277. <circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
  3278. <circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
  3279. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  3280. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  3281. <text x="-0.508" y="1.6764" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3282. <text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3283. <text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
  3284. <rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  3285. </package>
  3286. <package name="RDH/15">
  3287. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  3288. type RDH, grid 15 mm</description>
  3289. <wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="51"/>
  3290. <wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  3291. <wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  3292. <wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  3293. <wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  3294. <wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  3295. <wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
  3296. <wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  3297. <wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
  3298. <wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  3299. <wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  3300. <wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
  3301. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="51"/>
  3302. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
  3303. <wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
  3304. <wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="51"/>
  3305. <wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
  3306. <wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="51"/>
  3307. <wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  3308. <wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  3309. <wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  3310. <wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  3311. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  3312. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  3313. <text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3314. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3315. <text x="4.572" y="-1.7272" size="1.27" layer="51" ratio="10" rot="R90">RDH</text>
  3316. <rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="51"/>
  3317. <rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="51"/>
  3318. </package>
  3319. <package name="MINI_MELF-0102AX">
  3320. <description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>
  3321. <circle x="0" y="0" radius="0.6" width="0" layer="51"/>
  3322. <circle x="0" y="0" radius="0.6" width="0" layer="52"/>
  3323. <smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
  3324. <smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
  3325. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  3326. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  3327. <hole x="0" y="0" drill="1.3"/>
  3328. </package>
  3329. <package name="R0201">
  3330. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  3331. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  3332. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  3333. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  3334. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3335. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3336. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  3337. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  3338. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  3339. </package>
  3340. <package name="VTA52">
  3341. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3342. MIL SIZE RBR52&lt;br&gt;
  3343. Source: VISHAY .. vta56.pdf</description>
  3344. <wire x1="-15.24" y1="0" x2="-13.97" y2="0" width="0.6096" layer="51"/>
  3345. <wire x1="12.6225" y1="0.025" x2="12.6225" y2="4.725" width="0.1524" layer="21"/>
  3346. <wire x1="12.6225" y1="4.725" x2="-12.6225" y2="4.725" width="0.1524" layer="21"/>
  3347. <wire x1="-12.6225" y1="4.725" x2="-12.6225" y2="0.025" width="0.1524" layer="21"/>
  3348. <wire x1="-12.6225" y1="0.025" x2="-12.6225" y2="-4.65" width="0.1524" layer="21"/>
  3349. <wire x1="-12.6225" y1="-4.65" x2="12.6225" y2="-4.65" width="0.1524" layer="21"/>
  3350. <wire x1="12.6225" y1="-4.65" x2="12.6225" y2="0.025" width="0.1524" layer="21"/>
  3351. <wire x1="13.97" y1="0" x2="15.24" y2="0" width="0.6096" layer="51"/>
  3352. <pad name="1" x="-15.24" y="0" drill="1.1" shape="octagon"/>
  3353. <pad name="2" x="15.24" y="0" drill="1.1" shape="octagon"/>
  3354. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3355. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3356. <rectangle x1="-13.97" y1="-0.3048" x2="-12.5675" y2="0.3048" layer="21"/>
  3357. <rectangle x1="12.5675" y1="-0.3048" x2="13.97" y2="0.3048" layer="21"/>
  3358. </package>
  3359. <package name="VTA53">
  3360. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3361. MIL SIZE RBR53&lt;br&gt;
  3362. Source: VISHAY .. vta56.pdf</description>
  3363. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  3364. <wire x1="9.8975" y1="0" x2="9.8975" y2="4.7" width="0.1524" layer="21"/>
  3365. <wire x1="9.8975" y1="4.7" x2="-9.8975" y2="4.7" width="0.1524" layer="21"/>
  3366. <wire x1="-9.8975" y1="4.7" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  3367. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-4.675" width="0.1524" layer="21"/>
  3368. <wire x1="-9.8975" y1="-4.675" x2="9.8975" y2="-4.675" width="0.1524" layer="21"/>
  3369. <wire x1="9.8975" y1="-4.675" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  3370. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  3371. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  3372. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  3373. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3374. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3375. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  3376. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  3377. </package>
  3378. <package name="VTA54">
  3379. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3380. MIL SIZE RBR54&lt;br&gt;
  3381. Source: VISHAY .. vta56.pdf</description>
  3382. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  3383. <wire x1="9.8975" y1="0" x2="9.8975" y2="3.3" width="0.1524" layer="21"/>
  3384. <wire x1="9.8975" y1="3.3" x2="-9.8975" y2="3.3" width="0.1524" layer="21"/>
  3385. <wire x1="-9.8975" y1="3.3" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  3386. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-3.3" width="0.1524" layer="21"/>
  3387. <wire x1="-9.8975" y1="-3.3" x2="9.8975" y2="-3.3" width="0.1524" layer="21"/>
  3388. <wire x1="9.8975" y1="-3.3" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  3389. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  3390. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  3391. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  3392. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3393. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3394. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  3395. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  3396. </package>
  3397. <package name="VTA55">
  3398. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3399. MIL SIZE RBR55&lt;br&gt;
  3400. Source: VISHAY .. vta56.pdf</description>
  3401. <wire x1="-8.255" y1="0" x2="-6.985" y2="0" width="0.6096" layer="51"/>
  3402. <wire x1="6.405" y1="0" x2="6.405" y2="3.3" width="0.1524" layer="21"/>
  3403. <wire x1="6.405" y1="3.3" x2="-6.405" y2="3.3" width="0.1524" layer="21"/>
  3404. <wire x1="-6.405" y1="3.3" x2="-6.405" y2="0" width="0.1524" layer="21"/>
  3405. <wire x1="-6.405" y1="0" x2="-6.405" y2="-3.3" width="0.1524" layer="21"/>
  3406. <wire x1="-6.405" y1="-3.3" x2="6.405" y2="-3.3" width="0.1524" layer="21"/>
  3407. <wire x1="6.405" y1="-3.3" x2="6.405" y2="0" width="0.1524" layer="21"/>
  3408. <wire x1="6.985" y1="0" x2="8.255" y2="0" width="0.6096" layer="51"/>
  3409. <pad name="1" x="-8.255" y="0" drill="1.1" shape="octagon"/>
  3410. <pad name="2" x="8.255" y="0" drill="1.1" shape="octagon"/>
  3411. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3412. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3413. <rectangle x1="-6.985" y1="-0.3048" x2="-6.35" y2="0.3048" layer="21"/>
  3414. <rectangle x1="6.35" y1="-0.3048" x2="6.985" y2="0.3048" layer="21"/>
  3415. </package>
  3416. <package name="VTA56">
  3417. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3418. MIL SIZE RBR56&lt;br&gt;
  3419. Source: VISHAY .. vta56.pdf</description>
  3420. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  3421. <wire x1="4.5" y1="0" x2="4.5" y2="3.3" width="0.1524" layer="21"/>
  3422. <wire x1="4.5" y1="3.3" x2="-4.5" y2="3.3" width="0.1524" layer="21"/>
  3423. <wire x1="-4.5" y1="3.3" x2="-4.5" y2="0" width="0.1524" layer="21"/>
  3424. <wire x1="-4.5" y1="0" x2="-4.5" y2="-3.3" width="0.1524" layer="21"/>
  3425. <wire x1="-4.5" y1="-3.3" x2="4.5" y2="-3.3" width="0.1524" layer="21"/>
  3426. <wire x1="4.5" y1="-3.3" x2="4.5" y2="0" width="0.1524" layer="21"/>
  3427. <wire x1="5.08" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3428. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3429. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3430. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3431. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3432. <rectangle x1="-5.08" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  3433. <rectangle x1="4.445" y1="-0.3048" x2="5.08" y2="0.3048" layer="21"/>
  3434. </package>
  3435. <package name="VMTA55">
  3436. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3437. MIL SIZE RNC55&lt;br&gt;
  3438. Source: VISHAY .. vta56.pdf</description>
  3439. <wire x1="-5.08" y1="0" x2="-4.26" y2="0" width="0.6096" layer="51"/>
  3440. <wire x1="3.3375" y1="-1.45" x2="3.3375" y2="1.45" width="0.1524" layer="21"/>
  3441. <wire x1="3.3375" y1="1.45" x2="-3.3625" y2="1.45" width="0.1524" layer="21"/>
  3442. <wire x1="-3.3625" y1="1.45" x2="-3.3625" y2="-1.45" width="0.1524" layer="21"/>
  3443. <wire x1="-3.3625" y1="-1.45" x2="3.3375" y2="-1.45" width="0.1524" layer="21"/>
  3444. <wire x1="4.235" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  3445. <pad name="1" x="-5.08" y="0" drill="1.1" shape="octagon"/>
  3446. <pad name="2" x="5.08" y="0" drill="1.1" shape="octagon"/>
  3447. <text x="-3.175" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3448. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3449. <rectangle x1="-4.26" y1="-0.3048" x2="-3.3075" y2="0.3048" layer="21"/>
  3450. <rectangle x1="3.2825" y1="-0.3048" x2="4.235" y2="0.3048" layer="21"/>
  3451. </package>
  3452. <package name="VMTB60">
  3453. <description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;
  3454. MIL SIZE RNC60&lt;br&gt;
  3455. Source: VISHAY .. vta56.pdf</description>
  3456. <wire x1="-6.35" y1="0" x2="-5.585" y2="0" width="0.6096" layer="51"/>
  3457. <wire x1="4.6875" y1="-1.95" x2="4.6875" y2="1.95" width="0.1524" layer="21"/>
  3458. <wire x1="4.6875" y1="1.95" x2="-4.6875" y2="1.95" width="0.1524" layer="21"/>
  3459. <wire x1="-4.6875" y1="1.95" x2="-4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3460. <wire x1="-4.6875" y1="-1.95" x2="4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3461. <wire x1="5.585" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3462. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3463. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3464. <text x="-4.445" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3465. <text x="-4.445" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3466. <rectangle x1="-5.585" y1="-0.3048" x2="-4.6325" y2="0.3048" layer="21"/>
  3467. <rectangle x1="4.6325" y1="-0.3048" x2="5.585" y2="0.3048" layer="21"/>
  3468. </package>
  3469. <package name="R4527">
  3470. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  3471. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  3472. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  3473. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  3474. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  3475. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3476. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3477. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3478. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3479. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3480. </package>
  3481. <package name="WSC0001">
  3482. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3483. Source: VISHAY wscwsn.pdf</description>
  3484. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3485. <wire x1="-3.075" y1="-1.8" x2="3.075" y2="-1.8" width="0.2032" layer="21"/>
  3486. <wire x1="3.075" y1="-1.8" x2="3.075" y2="1.8" width="0.2032" layer="51"/>
  3487. <wire x1="3.075" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3488. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3489. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3490. <wire x1="3.075" y1="1.606" x2="3.075" y2="1.8" width="0.2032" layer="21"/>
  3491. <wire x1="3.075" y1="-1.8" x2="3.075" y2="-1.606" width="0.2032" layer="21"/>
  3492. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3493. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3494. <text x="-2.544" y="2.229" size="1.27" layer="25">&gt;NAME</text>
  3495. <text x="-2.544" y="-3.501" size="1.27" layer="27">&gt;VALUE</text>
  3496. </package>
  3497. <package name="WSC0002">
  3498. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3499. Source: VISHAY wscwsn.pdf</description>
  3500. <wire x1="-5.55" y1="3.375" x2="-5.55" y2="-3.375" width="0.2032" layer="51"/>
  3501. <wire x1="-5.55" y1="-3.375" x2="5.55" y2="-3.375" width="0.2032" layer="21"/>
  3502. <wire x1="5.55" y1="-3.375" x2="5.55" y2="3.375" width="0.2032" layer="51"/>
  3503. <wire x1="5.55" y1="3.375" x2="-5.55" y2="3.375" width="0.2032" layer="21"/>
  3504. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3505. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3506. <text x="-5.65" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3507. <text x="-5.65" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3508. </package>
  3509. <package name="WSC01/2">
  3510. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3511. Source: VISHAY wscwsn.pdf</description>
  3512. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="-1.475" width="0.2032" layer="51"/>
  3513. <wire x1="-2.45" y1="-1.475" x2="2.45" y2="-1.475" width="0.2032" layer="21"/>
  3514. <wire x1="2.45" y1="-1.475" x2="2.45" y2="1.475" width="0.2032" layer="51"/>
  3515. <wire x1="2.45" y1="1.475" x2="-2.45" y2="1.475" width="0.2032" layer="21"/>
  3516. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="1.106" width="0.2032" layer="21"/>
  3517. <wire x1="-2.45" y1="-1.106" x2="-2.45" y2="-1.475" width="0.2032" layer="21"/>
  3518. <wire x1="2.45" y1="1.106" x2="2.45" y2="1.475" width="0.2032" layer="21"/>
  3519. <wire x1="2.45" y1="-1.475" x2="2.45" y2="-1.106" width="0.2032" layer="21"/>
  3520. <smd name="1" x="-2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3521. <smd name="2" x="2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3522. <text x="-2.544" y="1.904" size="1.27" layer="25">&gt;NAME</text>
  3523. <text x="-2.544" y="-3.176" size="1.27" layer="27">&gt;VALUE</text>
  3524. </package>
  3525. <package name="WSC2515">
  3526. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3527. Source: VISHAY wscwsn.pdf</description>
  3528. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3529. <wire x1="-3.075" y1="-1.8" x2="3.05" y2="-1.8" width="0.2032" layer="21"/>
  3530. <wire x1="3.05" y1="-1.8" x2="3.05" y2="1.8" width="0.2032" layer="51"/>
  3531. <wire x1="3.05" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3532. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3533. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3534. <wire x1="3.05" y1="1.606" x2="3.05" y2="1.8" width="0.2032" layer="21"/>
  3535. <wire x1="3.05" y1="-1.8" x2="3.05" y2="-1.606" width="0.2032" layer="21"/>
  3536. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3537. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3538. <text x="-3.2" y="2.15" size="1.27" layer="25">&gt;NAME</text>
  3539. <text x="-3.2" y="-3.4" size="1.27" layer="27">&gt;VALUE</text>
  3540. </package>
  3541. <package name="WSC4527">
  3542. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3543. Source: VISHAY wscwsn.pdf</description>
  3544. <wire x1="-5.675" y1="3.4" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3545. <wire x1="-5.675" y1="-3.375" x2="5.675" y2="-3.375" width="0.2032" layer="21"/>
  3546. <wire x1="5.675" y1="-3.375" x2="5.675" y2="3.4" width="0.2032" layer="51"/>
  3547. <wire x1="5.675" y1="3.4" x2="-5.675" y2="3.4" width="0.2032" layer="21"/>
  3548. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3549. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3550. <text x="-5.775" y="3.925" size="1.27" layer="25">&gt;NAME</text>
  3551. <text x="-5.775" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3552. </package>
  3553. <package name="WSC6927">
  3554. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3555. Source: VISHAY wscwsn.pdf</description>
  3556. <wire x1="-8.65" y1="3.375" x2="-8.65" y2="-3.375" width="0.2032" layer="51"/>
  3557. <wire x1="-8.65" y1="-3.375" x2="8.65" y2="-3.375" width="0.2032" layer="21"/>
  3558. <wire x1="8.65" y1="-3.375" x2="8.65" y2="3.375" width="0.2032" layer="51"/>
  3559. <wire x1="8.65" y1="3.375" x2="-8.65" y2="3.375" width="0.2032" layer="21"/>
  3560. <smd name="1" x="-7.95" y="0.025" dx="3.94" dy="5.97" layer="1"/>
  3561. <smd name="2" x="7.95" y="0" dx="3.94" dy="5.97" layer="1"/>
  3562. <text x="-8.75" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3563. <text x="-8.75" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3564. </package>
  3565. <package name="R1218">
  3566. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  3567. Source: http://www.vishay.com .. dcrcw.pdf</description>
  3568. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  3569. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  3570. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3571. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3572. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3573. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3574. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  3575. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  3576. </package>
  3577. <package name="1812X7R">
  3578. <description>&lt;b&gt;Chip Monolithic Ceramic Capacitors&lt;/b&gt; Medium Voltage High Capacitance for General Use&lt;p&gt;
  3579. Source: http://www.murata.com .. GRM43DR72E224KW01.pdf</description>
  3580. <wire x1="-1.1" y1="1.5" x2="1.1" y2="1.5" width="0.2032" layer="51"/>
  3581. <wire x1="1.1" y1="-1.5" x2="-1.1" y2="-1.5" width="0.2032" layer="51"/>
  3582. <wire x1="-0.6" y1="1.5" x2="0.6" y2="1.5" width="0.2032" layer="21"/>
  3583. <wire x1="0.6" y1="-1.5" x2="-0.6" y2="-1.5" width="0.2032" layer="21"/>
  3584. <smd name="1" x="-1.425" y="0" dx="0.8" dy="3.5" layer="1"/>
  3585. <smd name="2" x="1.425" y="0" dx="0.8" dy="3.5" layer="1" rot="R180"/>
  3586. <text x="-1.9456" y="1.9958" size="1.27" layer="25">&gt;NAME</text>
  3587. <text x="-1.9456" y="-3.7738" size="1.27" layer="27">&gt;VALUE</text>
  3588. <rectangle x1="-1.4" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
  3589. <rectangle x1="1.1" y1="-1.6" x2="1.4" y2="1.6" layer="51" rot="R180"/>
  3590. </package>
  3591. <package name="PRL1632">
  3592. <description>&lt;b&gt;PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)&lt;/b&gt;&lt;p&gt;
  3593. Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf</description>
  3594. <wire x1="0.7275" y1="-1.5228" x2="-0.7277" y2="-1.5228" width="0.1524" layer="51"/>
  3595. <wire x1="0.7275" y1="1.5228" x2="-0.7152" y2="1.5228" width="0.1524" layer="51"/>
  3596. <smd name="2" x="0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3597. <smd name="1" x="-0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3598. <text x="-1.4" y="1.8" size="1.27" layer="25">&gt;NAME</text>
  3599. <text x="-1.4" y="-3" size="1.27" layer="27">&gt;VALUE</text>
  3600. <rectangle x1="-0.8" y1="-1.6" x2="-0.4" y2="1.6" layer="51"/>
  3601. <rectangle x1="0.4" y1="-1.6" x2="0.8" y2="1.6" layer="51"/>
  3602. </package>
  3603. <package name="R01005">
  3604. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3605. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3606. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  3607. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  3608. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  3609. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  3610. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  3611. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  3612. </package>
  3613. </packages>
  3614. <symbols>
  3615. <symbol name="R-EU-1">
  3616. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  3617. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3618. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  3619. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  3620. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  3621. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  3622. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  3623. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  3624. </symbol>
  3625. </symbols>
  3626. <devicesets>
  3627. <deviceset name="R-EU_" prefix="R" uservalue="yes">
  3628. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  3629. <gates>
  3630. <gate name="G$1" symbol="R-EU-1" x="0" y="0"/>
  3631. </gates>
  3632. <devices>
  3633. <device name="R0402" package="R0402">
  3634. <connects>
  3635. <connect gate="G$1" pin="1" pad="1"/>
  3636. <connect gate="G$1" pin="2" pad="2"/>
  3637. </connects>
  3638. <technologies>
  3639. <technology name=""/>
  3640. </technologies>
  3641. </device>
  3642. <device name="R0603" package="R0603">
  3643. <connects>
  3644. <connect gate="G$1" pin="1" pad="1"/>
  3645. <connect gate="G$1" pin="2" pad="2"/>
  3646. </connects>
  3647. <technologies>
  3648. <technology name=""/>
  3649. </technologies>
  3650. </device>
  3651. <device name="R0805" package="R0805">
  3652. <connects>
  3653. <connect gate="G$1" pin="1" pad="1"/>
  3654. <connect gate="G$1" pin="2" pad="2"/>
  3655. </connects>
  3656. <technologies>
  3657. <technology name=""/>
  3658. </technologies>
  3659. </device>
  3660. <device name="R0805W" package="R0805W">
  3661. <connects>
  3662. <connect gate="G$1" pin="1" pad="1"/>
  3663. <connect gate="G$1" pin="2" pad="2"/>
  3664. </connects>
  3665. <technologies>
  3666. <technology name=""/>
  3667. </technologies>
  3668. </device>
  3669. <device name="R1206" package="R1206">
  3670. <connects>
  3671. <connect gate="G$1" pin="1" pad="1"/>
  3672. <connect gate="G$1" pin="2" pad="2"/>
  3673. </connects>
  3674. <technologies>
  3675. <technology name=""/>
  3676. </technologies>
  3677. </device>
  3678. <device name="R1206W" package="R1206W">
  3679. <connects>
  3680. <connect gate="G$1" pin="1" pad="1"/>
  3681. <connect gate="G$1" pin="2" pad="2"/>
  3682. </connects>
  3683. <technologies>
  3684. <technology name=""/>
  3685. </technologies>
  3686. </device>
  3687. <device name="R1210" package="R1210">
  3688. <connects>
  3689. <connect gate="G$1" pin="1" pad="1"/>
  3690. <connect gate="G$1" pin="2" pad="2"/>
  3691. </connects>
  3692. <technologies>
  3693. <technology name=""/>
  3694. </technologies>
  3695. </device>
  3696. <device name="R1210W" package="R1210W">
  3697. <connects>
  3698. <connect gate="G$1" pin="1" pad="1"/>
  3699. <connect gate="G$1" pin="2" pad="2"/>
  3700. </connects>
  3701. <technologies>
  3702. <technology name=""/>
  3703. </technologies>
  3704. </device>
  3705. <device name="R2010" package="R2010">
  3706. <connects>
  3707. <connect gate="G$1" pin="1" pad="1"/>
  3708. <connect gate="G$1" pin="2" pad="2"/>
  3709. </connects>
  3710. <technologies>
  3711. <technology name=""/>
  3712. </technologies>
  3713. </device>
  3714. <device name="R2010W" package="R2010W">
  3715. <connects>
  3716. <connect gate="G$1" pin="1" pad="1"/>
  3717. <connect gate="G$1" pin="2" pad="2"/>
  3718. </connects>
  3719. <technologies>
  3720. <technology name=""/>
  3721. </technologies>
  3722. </device>
  3723. <device name="R2012" package="R2012">
  3724. <connects>
  3725. <connect gate="G$1" pin="1" pad="1"/>
  3726. <connect gate="G$1" pin="2" pad="2"/>
  3727. </connects>
  3728. <technologies>
  3729. <technology name=""/>
  3730. </technologies>
  3731. </device>
  3732. <device name="R2012W" package="R2012W">
  3733. <connects>
  3734. <connect gate="G$1" pin="1" pad="1"/>
  3735. <connect gate="G$1" pin="2" pad="2"/>
  3736. </connects>
  3737. <technologies>
  3738. <technology name=""/>
  3739. </technologies>
  3740. </device>
  3741. <device name="R2512" package="R2512">
  3742. <connects>
  3743. <connect gate="G$1" pin="1" pad="1"/>
  3744. <connect gate="G$1" pin="2" pad="2"/>
  3745. </connects>
  3746. <technologies>
  3747. <technology name=""/>
  3748. </technologies>
  3749. </device>
  3750. <device name="R2512W" package="R2512W">
  3751. <connects>
  3752. <connect gate="G$1" pin="1" pad="1"/>
  3753. <connect gate="G$1" pin="2" pad="2"/>
  3754. </connects>
  3755. <technologies>
  3756. <technology name=""/>
  3757. </technologies>
  3758. </device>
  3759. <device name="R3216" package="R3216">
  3760. <connects>
  3761. <connect gate="G$1" pin="1" pad="1"/>
  3762. <connect gate="G$1" pin="2" pad="2"/>
  3763. </connects>
  3764. <technologies>
  3765. <technology name=""/>
  3766. </technologies>
  3767. </device>
  3768. <device name="R3216W" package="R3216W">
  3769. <connects>
  3770. <connect gate="G$1" pin="1" pad="1"/>
  3771. <connect gate="G$1" pin="2" pad="2"/>
  3772. </connects>
  3773. <technologies>
  3774. <technology name=""/>
  3775. </technologies>
  3776. </device>
  3777. <device name="R3225" package="R3225">
  3778. <connects>
  3779. <connect gate="G$1" pin="1" pad="1"/>
  3780. <connect gate="G$1" pin="2" pad="2"/>
  3781. </connects>
  3782. <technologies>
  3783. <technology name=""/>
  3784. </technologies>
  3785. </device>
  3786. <device name="R3225W" package="R3225W">
  3787. <connects>
  3788. <connect gate="G$1" pin="1" pad="1"/>
  3789. <connect gate="G$1" pin="2" pad="2"/>
  3790. </connects>
  3791. <technologies>
  3792. <technology name=""/>
  3793. </technologies>
  3794. </device>
  3795. <device name="R5025" package="R5025">
  3796. <connects>
  3797. <connect gate="G$1" pin="1" pad="1"/>
  3798. <connect gate="G$1" pin="2" pad="2"/>
  3799. </connects>
  3800. <technologies>
  3801. <technology name=""/>
  3802. </technologies>
  3803. </device>
  3804. <device name="R5025W" package="R5025W">
  3805. <connects>
  3806. <connect gate="G$1" pin="1" pad="1"/>
  3807. <connect gate="G$1" pin="2" pad="2"/>
  3808. </connects>
  3809. <technologies>
  3810. <technology name=""/>
  3811. </technologies>
  3812. </device>
  3813. <device name="R6332" package="R6332">
  3814. <connects>
  3815. <connect gate="G$1" pin="1" pad="1"/>
  3816. <connect gate="G$1" pin="2" pad="2"/>
  3817. </connects>
  3818. <technologies>
  3819. <technology name=""/>
  3820. </technologies>
  3821. </device>
  3822. <device name="R6332W" package="R6332W">
  3823. <connects>
  3824. <connect gate="G$1" pin="1" pad="1"/>
  3825. <connect gate="G$1" pin="2" pad="2"/>
  3826. </connects>
  3827. <technologies>
  3828. <technology name=""/>
  3829. </technologies>
  3830. </device>
  3831. <device name="M0805" package="M0805">
  3832. <connects>
  3833. <connect gate="G$1" pin="1" pad="1"/>
  3834. <connect gate="G$1" pin="2" pad="2"/>
  3835. </connects>
  3836. <technologies>
  3837. <technology name=""/>
  3838. </technologies>
  3839. </device>
  3840. <device name="M1206" package="M1206">
  3841. <connects>
  3842. <connect gate="G$1" pin="1" pad="1"/>
  3843. <connect gate="G$1" pin="2" pad="2"/>
  3844. </connects>
  3845. <technologies>
  3846. <technology name=""/>
  3847. </technologies>
  3848. </device>
  3849. <device name="M1406" package="M1406">
  3850. <connects>
  3851. <connect gate="G$1" pin="1" pad="1"/>
  3852. <connect gate="G$1" pin="2" pad="2"/>
  3853. </connects>
  3854. <technologies>
  3855. <technology name=""/>
  3856. </technologies>
  3857. </device>
  3858. <device name="M2012" package="M2012">
  3859. <connects>
  3860. <connect gate="G$1" pin="1" pad="1"/>
  3861. <connect gate="G$1" pin="2" pad="2"/>
  3862. </connects>
  3863. <technologies>
  3864. <technology name=""/>
  3865. </technologies>
  3866. </device>
  3867. <device name="M2309" package="M2309">
  3868. <connects>
  3869. <connect gate="G$1" pin="1" pad="1"/>
  3870. <connect gate="G$1" pin="2" pad="2"/>
  3871. </connects>
  3872. <technologies>
  3873. <technology name=""/>
  3874. </technologies>
  3875. </device>
  3876. <device name="M3216" package="M3216">
  3877. <connects>
  3878. <connect gate="G$1" pin="1" pad="1"/>
  3879. <connect gate="G$1" pin="2" pad="2"/>
  3880. </connects>
  3881. <technologies>
  3882. <technology name=""/>
  3883. </technologies>
  3884. </device>
  3885. <device name="M3516" package="M3516">
  3886. <connects>
  3887. <connect gate="G$1" pin="1" pad="1"/>
  3888. <connect gate="G$1" pin="2" pad="2"/>
  3889. </connects>
  3890. <technologies>
  3891. <technology name=""/>
  3892. </technologies>
  3893. </device>
  3894. <device name="M5923" package="M5923">
  3895. <connects>
  3896. <connect gate="G$1" pin="1" pad="1"/>
  3897. <connect gate="G$1" pin="2" pad="2"/>
  3898. </connects>
  3899. <technologies>
  3900. <technology name=""/>
  3901. </technologies>
  3902. </device>
  3903. <device name="0204/5" package="0204/5">
  3904. <connects>
  3905. <connect gate="G$1" pin="1" pad="1"/>
  3906. <connect gate="G$1" pin="2" pad="2"/>
  3907. </connects>
  3908. <technologies>
  3909. <technology name=""/>
  3910. </technologies>
  3911. </device>
  3912. <device name="0204/7" package="0204/7">
  3913. <connects>
  3914. <connect gate="G$1" pin="1" pad="1"/>
  3915. <connect gate="G$1" pin="2" pad="2"/>
  3916. </connects>
  3917. <technologies>
  3918. <technology name=""/>
  3919. </technologies>
  3920. </device>
  3921. <device name="0204/2V" package="0204V">
  3922. <connects>
  3923. <connect gate="G$1" pin="1" pad="1"/>
  3924. <connect gate="G$1" pin="2" pad="2"/>
  3925. </connects>
  3926. <technologies>
  3927. <technology name=""/>
  3928. </technologies>
  3929. </device>
  3930. <device name="0207/10" package="0207/10">
  3931. <connects>
  3932. <connect gate="G$1" pin="1" pad="1"/>
  3933. <connect gate="G$1" pin="2" pad="2"/>
  3934. </connects>
  3935. <technologies>
  3936. <technology name=""/>
  3937. </technologies>
  3938. </device>
  3939. <device name="0207/12" package="0207/12">
  3940. <connects>
  3941. <connect gate="G$1" pin="1" pad="1"/>
  3942. <connect gate="G$1" pin="2" pad="2"/>
  3943. </connects>
  3944. <technologies>
  3945. <technology name=""/>
  3946. </technologies>
  3947. </device>
  3948. <device name="0207/15" package="0207/15">
  3949. <connects>
  3950. <connect gate="G$1" pin="1" pad="1"/>
  3951. <connect gate="G$1" pin="2" pad="2"/>
  3952. </connects>
  3953. <technologies>
  3954. <technology name=""/>
  3955. </technologies>
  3956. </device>
  3957. <device name="0207/2V" package="0207/2V">
  3958. <connects>
  3959. <connect gate="G$1" pin="1" pad="1"/>
  3960. <connect gate="G$1" pin="2" pad="2"/>
  3961. </connects>
  3962. <technologies>
  3963. <technology name=""/>
  3964. </technologies>
  3965. </device>
  3966. <device name="0207/5V" package="0207/5V">
  3967. <connects>
  3968. <connect gate="G$1" pin="1" pad="1"/>
  3969. <connect gate="G$1" pin="2" pad="2"/>
  3970. </connects>
  3971. <technologies>
  3972. <technology name=""/>
  3973. </technologies>
  3974. </device>
  3975. <device name="0207/7" package="0207/7">
  3976. <connects>
  3977. <connect gate="G$1" pin="1" pad="1"/>
  3978. <connect gate="G$1" pin="2" pad="2"/>
  3979. </connects>
  3980. <technologies>
  3981. <technology name=""/>
  3982. </technologies>
  3983. </device>
  3984. <device name="0309/10" package="0309/10">
  3985. <connects>
  3986. <connect gate="G$1" pin="1" pad="1"/>
  3987. <connect gate="G$1" pin="2" pad="2"/>
  3988. </connects>
  3989. <technologies>
  3990. <technology name=""/>
  3991. </technologies>
  3992. </device>
  3993. <device name="0309/12" package="0309/12">
  3994. <connects>
  3995. <connect gate="G$1" pin="1" pad="1"/>
  3996. <connect gate="G$1" pin="2" pad="2"/>
  3997. </connects>
  3998. <technologies>
  3999. <technology name=""/>
  4000. </technologies>
  4001. </device>
  4002. <device name="0309/V" package="0309V">
  4003. <connects>
  4004. <connect gate="G$1" pin="1" pad="1"/>
  4005. <connect gate="G$1" pin="2" pad="2"/>
  4006. </connects>
  4007. <technologies>
  4008. <technology name=""/>
  4009. </technologies>
  4010. </device>
  4011. <device name="0411/12" package="0411/12">
  4012. <connects>
  4013. <connect gate="G$1" pin="1" pad="1"/>
  4014. <connect gate="G$1" pin="2" pad="2"/>
  4015. </connects>
  4016. <technologies>
  4017. <technology name=""/>
  4018. </technologies>
  4019. </device>
  4020. <device name="0411/15" package="0411/15">
  4021. <connects>
  4022. <connect gate="G$1" pin="1" pad="1"/>
  4023. <connect gate="G$1" pin="2" pad="2"/>
  4024. </connects>
  4025. <technologies>
  4026. <technology name=""/>
  4027. </technologies>
  4028. </device>
  4029. <device name="0411/3V" package="0411V">
  4030. <connects>
  4031. <connect gate="G$1" pin="1" pad="1"/>
  4032. <connect gate="G$1" pin="2" pad="2"/>
  4033. </connects>
  4034. <technologies>
  4035. <technology name=""/>
  4036. </technologies>
  4037. </device>
  4038. <device name="0414/15" package="0414/15">
  4039. <connects>
  4040. <connect gate="G$1" pin="1" pad="1"/>
  4041. <connect gate="G$1" pin="2" pad="2"/>
  4042. </connects>
  4043. <technologies>
  4044. <technology name=""/>
  4045. </technologies>
  4046. </device>
  4047. <device name="0414/5V" package="0414V">
  4048. <connects>
  4049. <connect gate="G$1" pin="1" pad="1"/>
  4050. <connect gate="G$1" pin="2" pad="2"/>
  4051. </connects>
  4052. <technologies>
  4053. <technology name=""/>
  4054. </technologies>
  4055. </device>
  4056. <device name="0617/17" package="0617/17">
  4057. <connects>
  4058. <connect gate="G$1" pin="1" pad="1"/>
  4059. <connect gate="G$1" pin="2" pad="2"/>
  4060. </connects>
  4061. <technologies>
  4062. <technology name=""/>
  4063. </technologies>
  4064. </device>
  4065. <device name="0617/22" package="0617/22">
  4066. <connects>
  4067. <connect gate="G$1" pin="1" pad="1"/>
  4068. <connect gate="G$1" pin="2" pad="2"/>
  4069. </connects>
  4070. <technologies>
  4071. <technology name=""/>
  4072. </technologies>
  4073. </device>
  4074. <device name="0617/5V" package="0617V">
  4075. <connects>
  4076. <connect gate="G$1" pin="1" pad="1"/>
  4077. <connect gate="G$1" pin="2" pad="2"/>
  4078. </connects>
  4079. <technologies>
  4080. <technology name=""/>
  4081. </technologies>
  4082. </device>
  4083. <device name="0922/22" package="0922/22">
  4084. <connects>
  4085. <connect gate="G$1" pin="1" pad="1"/>
  4086. <connect gate="G$1" pin="2" pad="2"/>
  4087. </connects>
  4088. <technologies>
  4089. <technology name=""/>
  4090. </technologies>
  4091. </device>
  4092. <device name="0613/5V" package="P0613V">
  4093. <connects>
  4094. <connect gate="G$1" pin="1" pad="1"/>
  4095. <connect gate="G$1" pin="2" pad="2"/>
  4096. </connects>
  4097. <technologies>
  4098. <technology name=""/>
  4099. </technologies>
  4100. </device>
  4101. <device name="0613/15" package="P0613/15">
  4102. <connects>
  4103. <connect gate="G$1" pin="1" pad="1"/>
  4104. <connect gate="G$1" pin="2" pad="2"/>
  4105. </connects>
  4106. <technologies>
  4107. <technology name=""/>
  4108. </technologies>
  4109. </device>
  4110. <device name="0817/22" package="P0817/22">
  4111. <connects>
  4112. <connect gate="G$1" pin="1" pad="1"/>
  4113. <connect gate="G$1" pin="2" pad="2"/>
  4114. </connects>
  4115. <technologies>
  4116. <technology name=""/>
  4117. </technologies>
  4118. </device>
  4119. <device name="0817/7V" package="P0817V">
  4120. <connects>
  4121. <connect gate="G$1" pin="1" pad="1"/>
  4122. <connect gate="G$1" pin="2" pad="2"/>
  4123. </connects>
  4124. <technologies>
  4125. <technology name=""/>
  4126. </technologies>
  4127. </device>
  4128. <device name="V234/12" package="V234/12">
  4129. <connects>
  4130. <connect gate="G$1" pin="1" pad="1"/>
  4131. <connect gate="G$1" pin="2" pad="2"/>
  4132. </connects>
  4133. <technologies>
  4134. <technology name=""/>
  4135. </technologies>
  4136. </device>
  4137. <device name="V235/17" package="V235/17">
  4138. <connects>
  4139. <connect gate="G$1" pin="1" pad="1"/>
  4140. <connect gate="G$1" pin="2" pad="2"/>
  4141. </connects>
  4142. <technologies>
  4143. <technology name=""/>
  4144. </technologies>
  4145. </device>
  4146. <device name="V526-0" package="V526-0">
  4147. <connects>
  4148. <connect gate="G$1" pin="1" pad="1"/>
  4149. <connect gate="G$1" pin="2" pad="2"/>
  4150. </connects>
  4151. <technologies>
  4152. <technology name=""/>
  4153. </technologies>
  4154. </device>
  4155. <device name="MELF0102R" package="MINI_MELF-0102R">
  4156. <connects>
  4157. <connect gate="G$1" pin="1" pad="1"/>
  4158. <connect gate="G$1" pin="2" pad="2"/>
  4159. </connects>
  4160. <technologies>
  4161. <technology name=""/>
  4162. </technologies>
  4163. </device>
  4164. <device name="MELF0102W" package="MINI_MELF-0102W">
  4165. <connects>
  4166. <connect gate="G$1" pin="1" pad="1"/>
  4167. <connect gate="G$1" pin="2" pad="2"/>
  4168. </connects>
  4169. <technologies>
  4170. <technology name=""/>
  4171. </technologies>
  4172. </device>
  4173. <device name="MELF0204R" package="MINI_MELF-0204R">
  4174. <connects>
  4175. <connect gate="G$1" pin="1" pad="1"/>
  4176. <connect gate="G$1" pin="2" pad="2"/>
  4177. </connects>
  4178. <technologies>
  4179. <technology name=""/>
  4180. </technologies>
  4181. </device>
  4182. <device name="MELF0204W" package="MINI_MELF-0204W">
  4183. <connects>
  4184. <connect gate="G$1" pin="1" pad="1"/>
  4185. <connect gate="G$1" pin="2" pad="2"/>
  4186. </connects>
  4187. <technologies>
  4188. <technology name=""/>
  4189. </technologies>
  4190. </device>
  4191. <device name="MELF0207R" package="MINI_MELF-0207R">
  4192. <connects>
  4193. <connect gate="G$1" pin="1" pad="1"/>
  4194. <connect gate="G$1" pin="2" pad="2"/>
  4195. </connects>
  4196. <technologies>
  4197. <technology name=""/>
  4198. </technologies>
  4199. </device>
  4200. <device name="MELF0207W" package="MINI_MELF-0207W">
  4201. <connects>
  4202. <connect gate="G$1" pin="1" pad="1"/>
  4203. <connect gate="G$1" pin="2" pad="2"/>
  4204. </connects>
  4205. <technologies>
  4206. <technology name=""/>
  4207. </technologies>
  4208. </device>
  4209. <device name="0922V" package="0922V">
  4210. <connects>
  4211. <connect gate="G$1" pin="1" pad="1"/>
  4212. <connect gate="G$1" pin="2" pad="2"/>
  4213. </connects>
  4214. <technologies>
  4215. <technology name=""/>
  4216. </technologies>
  4217. </device>
  4218. <device name="RDH/15" package="RDH/15">
  4219. <connects>
  4220. <connect gate="G$1" pin="1" pad="1"/>
  4221. <connect gate="G$1" pin="2" pad="2"/>
  4222. </connects>
  4223. <technologies>
  4224. <technology name=""/>
  4225. </technologies>
  4226. </device>
  4227. <device name="MELF0102AX" package="MINI_MELF-0102AX">
  4228. <connects>
  4229. <connect gate="G$1" pin="1" pad="1"/>
  4230. <connect gate="G$1" pin="2" pad="2"/>
  4231. </connects>
  4232. <technologies>
  4233. <technology name=""/>
  4234. </technologies>
  4235. </device>
  4236. <device name="R0201" package="R0201">
  4237. <connects>
  4238. <connect gate="G$1" pin="1" pad="1"/>
  4239. <connect gate="G$1" pin="2" pad="2"/>
  4240. </connects>
  4241. <technologies>
  4242. <technology name=""/>
  4243. </technologies>
  4244. </device>
  4245. <device name="VTA52" package="VTA52">
  4246. <connects>
  4247. <connect gate="G$1" pin="1" pad="1"/>
  4248. <connect gate="G$1" pin="2" pad="2"/>
  4249. </connects>
  4250. <technologies>
  4251. <technology name=""/>
  4252. </technologies>
  4253. </device>
  4254. <device name="VTA53" package="VTA53">
  4255. <connects>
  4256. <connect gate="G$1" pin="1" pad="1"/>
  4257. <connect gate="G$1" pin="2" pad="2"/>
  4258. </connects>
  4259. <technologies>
  4260. <technology name=""/>
  4261. </technologies>
  4262. </device>
  4263. <device name="VTA54" package="VTA54">
  4264. <connects>
  4265. <connect gate="G$1" pin="1" pad="1"/>
  4266. <connect gate="G$1" pin="2" pad="2"/>
  4267. </connects>
  4268. <technologies>
  4269. <technology name=""/>
  4270. </technologies>
  4271. </device>
  4272. <device name="VTA55" package="VTA55">
  4273. <connects>
  4274. <connect gate="G$1" pin="1" pad="1"/>
  4275. <connect gate="G$1" pin="2" pad="2"/>
  4276. </connects>
  4277. <technologies>
  4278. <technology name=""/>
  4279. </technologies>
  4280. </device>
  4281. <device name="VTA56" package="VTA56">
  4282. <connects>
  4283. <connect gate="G$1" pin="1" pad="1"/>
  4284. <connect gate="G$1" pin="2" pad="2"/>
  4285. </connects>
  4286. <technologies>
  4287. <technology name=""/>
  4288. </technologies>
  4289. </device>
  4290. <device name="VMTA55" package="VMTA55">
  4291. <connects>
  4292. <connect gate="G$1" pin="1" pad="1"/>
  4293. <connect gate="G$1" pin="2" pad="2"/>
  4294. </connects>
  4295. <technologies>
  4296. <technology name=""/>
  4297. </technologies>
  4298. </device>
  4299. <device name="VMTB60" package="VMTB60">
  4300. <connects>
  4301. <connect gate="G$1" pin="1" pad="1"/>
  4302. <connect gate="G$1" pin="2" pad="2"/>
  4303. </connects>
  4304. <technologies>
  4305. <technology name=""/>
  4306. </technologies>
  4307. </device>
  4308. <device name="R4527" package="R4527">
  4309. <connects>
  4310. <connect gate="G$1" pin="1" pad="1"/>
  4311. <connect gate="G$1" pin="2" pad="2"/>
  4312. </connects>
  4313. <technologies>
  4314. <technology name=""/>
  4315. </technologies>
  4316. </device>
  4317. <device name="WSC0001" package="WSC0001">
  4318. <connects>
  4319. <connect gate="G$1" pin="1" pad="1"/>
  4320. <connect gate="G$1" pin="2" pad="2"/>
  4321. </connects>
  4322. <technologies>
  4323. <technology name=""/>
  4324. </technologies>
  4325. </device>
  4326. <device name="WSC0002" package="WSC0002">
  4327. <connects>
  4328. <connect gate="G$1" pin="1" pad="1"/>
  4329. <connect gate="G$1" pin="2" pad="2"/>
  4330. </connects>
  4331. <technologies>
  4332. <technology name=""/>
  4333. </technologies>
  4334. </device>
  4335. <device name="WSC01/2" package="WSC01/2">
  4336. <connects>
  4337. <connect gate="G$1" pin="1" pad="1"/>
  4338. <connect gate="G$1" pin="2" pad="2"/>
  4339. </connects>
  4340. <technologies>
  4341. <technology name=""/>
  4342. </technologies>
  4343. </device>
  4344. <device name="WSC2515" package="WSC2515">
  4345. <connects>
  4346. <connect gate="G$1" pin="1" pad="1"/>
  4347. <connect gate="G$1" pin="2" pad="2"/>
  4348. </connects>
  4349. <technologies>
  4350. <technology name=""/>
  4351. </technologies>
  4352. </device>
  4353. <device name="WSC4527" package="WSC4527">
  4354. <connects>
  4355. <connect gate="G$1" pin="1" pad="1"/>
  4356. <connect gate="G$1" pin="2" pad="2"/>
  4357. </connects>
  4358. <technologies>
  4359. <technology name=""/>
  4360. </technologies>
  4361. </device>
  4362. <device name="WSC6927" package="WSC6927">
  4363. <connects>
  4364. <connect gate="G$1" pin="1" pad="1"/>
  4365. <connect gate="G$1" pin="2" pad="2"/>
  4366. </connects>
  4367. <technologies>
  4368. <technology name=""/>
  4369. </technologies>
  4370. </device>
  4371. <device name="R1218" package="R1218">
  4372. <connects>
  4373. <connect gate="G$1" pin="1" pad="1"/>
  4374. <connect gate="G$1" pin="2" pad="2"/>
  4375. </connects>
  4376. <technologies>
  4377. <technology name=""/>
  4378. </technologies>
  4379. </device>
  4380. <device name="1812X7R" package="1812X7R">
  4381. <connects>
  4382. <connect gate="G$1" pin="1" pad="1"/>
  4383. <connect gate="G$1" pin="2" pad="2"/>
  4384. </connects>
  4385. <technologies>
  4386. <technology name=""/>
  4387. </technologies>
  4388. </device>
  4389. <device name="PRL1632" package="PRL1632">
  4390. <connects>
  4391. <connect gate="G$1" pin="1" pad="1"/>
  4392. <connect gate="G$1" pin="2" pad="2"/>
  4393. </connects>
  4394. <technologies>
  4395. <technology name=""/>
  4396. </technologies>
  4397. </device>
  4398. <device name="01005" package="R01005">
  4399. <connects>
  4400. <connect gate="G$1" pin="1" pad="1"/>
  4401. <connect gate="G$1" pin="2" pad="2"/>
  4402. </connects>
  4403. <technologies>
  4404. <technology name=""/>
  4405. </technologies>
  4406. </device>
  4407. </devices>
  4408. </deviceset>
  4409. </devicesets>
  4410. </library>
  4411. <library name="optocoupler">
  4412. <description>&lt;b&gt;Opto Couplers&lt;/b&gt;&lt;p&gt;
  4413. Siemens, Hewlett-Packard, Texas Instuments, Sharp, Motorola&lt;p&gt;
  4414. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  4415. <packages>
  4416. <package name="DIL16">
  4417. <description>&lt;b&gt;Dual In Line Package&lt;/b&gt;</description>
  4418. <wire x1="10.16" y1="2.921" x2="-10.16" y2="2.921" width="0.1524" layer="21"/>
  4419. <wire x1="-10.16" y1="-2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  4420. <wire x1="10.16" y1="2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  4421. <wire x1="-10.16" y1="2.921" x2="-10.16" y2="1.016" width="0.1524" layer="21"/>
  4422. <wire x1="-10.16" y1="-2.921" x2="-10.16" y2="-1.016" width="0.1524" layer="21"/>
  4423. <wire x1="-10.16" y1="1.016" x2="-10.16" y2="-1.016" width="0.1524" layer="21" curve="-180"/>
  4424. <pad name="1" x="-8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4425. <pad name="2" x="-6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4426. <pad name="7" x="6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4427. <pad name="8" x="8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4428. <pad name="3" x="-3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4429. <pad name="4" x="-1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4430. <pad name="6" x="3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4431. <pad name="5" x="1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  4432. <pad name="9" x="8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4433. <pad name="10" x="6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4434. <pad name="11" x="3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4435. <pad name="12" x="1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4436. <pad name="13" x="-1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4437. <pad name="14" x="-3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4438. <pad name="15" x="-6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4439. <pad name="16" x="-8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  4440. <text x="-10.541" y="-2.921" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  4441. <text x="-7.493" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4442. </package>
  4443. </packages>
  4444. <symbols>
  4445. <symbol name="LTV847">
  4446. <description>LTV847 4-opto DIP16</description>
  4447. <wire x1="2.54" y1="0" x2="17.78" y2="0" width="0.254" layer="94"/>
  4448. <wire x1="17.78" y1="0" x2="17.78" y2="40.64" width="0.254" layer="94"/>
  4449. <wire x1="17.78" y1="40.64" x2="2.54" y2="40.64" width="0.254" layer="94"/>
  4450. <wire x1="2.54" y1="40.64" x2="2.54" y2="0" width="0.254" layer="94"/>
  4451. <pin name="P$1" x="-2.54" y="2.54" length="middle" direction="pas"/>
  4452. <pin name="P$2" x="-2.54" y="7.62" length="middle" direction="pas"/>
  4453. <pin name="P$3" x="-2.54" y="12.7" length="middle" direction="pas"/>
  4454. <pin name="P$4" x="-2.54" y="17.78" length="middle" direction="pas"/>
  4455. <pin name="P$5" x="-2.54" y="22.86" length="middle" direction="pas"/>
  4456. <pin name="P$6" x="-2.54" y="27.94" length="middle" direction="pas"/>
  4457. <pin name="P$7" x="-2.54" y="33.02" length="middle" direction="pas"/>
  4458. <pin name="P$8" x="-2.54" y="38.1" length="middle" direction="pas"/>
  4459. <pin name="P$9" x="22.86" y="2.54" length="middle" direction="pas" rot="R180"/>
  4460. <pin name="P$10" x="22.86" y="7.62" length="middle" direction="pas" rot="R180"/>
  4461. <pin name="P$11" x="22.86" y="12.7" length="middle" direction="pas" rot="R180"/>
  4462. <pin name="P$12" x="22.86" y="17.78" length="middle" direction="pas" rot="R180"/>
  4463. <pin name="P$13" x="22.86" y="22.86" length="middle" direction="pas" rot="R180"/>
  4464. <pin name="P$14" x="22.86" y="27.94" length="middle" direction="pas" rot="R180"/>
  4465. <pin name="P$15" x="22.86" y="33.02" length="middle" direction="pas" rot="R180"/>
  4466. <pin name="P$16" x="22.86" y="38.1" length="middle" direction="pas" rot="R180"/>
  4467. <wire x1="6.35" y1="35.56" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  4468. <wire x1="7.62" y1="35.56" x2="8.89" y2="35.56" width="0.254" layer="94"/>
  4469. <wire x1="7.62" y1="35.56" x2="6.35" y2="36.83" width="0.254" layer="94"/>
  4470. <wire x1="6.35" y1="36.83" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  4471. <wire x1="7.62" y1="36.83" x2="8.89" y2="36.83" width="0.254" layer="94"/>
  4472. <wire x1="8.89" y1="36.83" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  4473. <wire x1="3.81" y1="38.1" x2="7.62" y2="38.1" width="0.254" layer="94"/>
  4474. <wire x1="7.62" y1="38.1" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  4475. <wire x1="7.62" y1="35.56" x2="7.62" y2="33.02" width="0.254" layer="94"/>
  4476. <wire x1="7.62" y1="33.02" x2="3.81" y2="33.02" width="0.254" layer="94"/>
  4477. <wire x1="6.35" y1="25.4" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  4478. <wire x1="7.62" y1="25.4" x2="8.89" y2="25.4" width="0.254" layer="94"/>
  4479. <wire x1="7.62" y1="25.4" x2="6.35" y2="26.67" width="0.254" layer="94"/>
  4480. <wire x1="6.35" y1="26.67" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  4481. <wire x1="7.62" y1="26.67" x2="8.89" y2="26.67" width="0.254" layer="94"/>
  4482. <wire x1="8.89" y1="26.67" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  4483. <wire x1="3.81" y1="27.94" x2="7.62" y2="27.94" width="0.254" layer="94"/>
  4484. <wire x1="7.62" y1="27.94" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  4485. <wire x1="7.62" y1="25.4" x2="7.62" y2="22.86" width="0.254" layer="94"/>
  4486. <wire x1="7.62" y1="22.86" x2="3.81" y2="22.86" width="0.254" layer="94"/>
  4487. <wire x1="6.35" y1="15.24" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  4488. <wire x1="7.62" y1="15.24" x2="8.89" y2="15.24" width="0.254" layer="94"/>
  4489. <wire x1="7.62" y1="15.24" x2="6.35" y2="16.51" width="0.254" layer="94"/>
  4490. <wire x1="6.35" y1="16.51" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  4491. <wire x1="7.62" y1="16.51" x2="8.89" y2="16.51" width="0.254" layer="94"/>
  4492. <wire x1="8.89" y1="16.51" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  4493. <wire x1="3.81" y1="17.78" x2="7.62" y2="17.78" width="0.254" layer="94"/>
  4494. <wire x1="7.62" y1="17.78" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  4495. <wire x1="7.62" y1="15.24" x2="7.62" y2="12.7" width="0.254" layer="94"/>
  4496. <wire x1="7.62" y1="12.7" x2="3.81" y2="12.7" width="0.254" layer="94"/>
  4497. <wire x1="6.35" y1="5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  4498. <wire x1="7.62" y1="5.08" x2="8.89" y2="5.08" width="0.254" layer="94"/>
  4499. <wire x1="7.62" y1="5.08" x2="6.35" y2="6.35" width="0.254" layer="94"/>
  4500. <wire x1="6.35" y1="6.35" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  4501. <wire x1="7.62" y1="6.35" x2="8.89" y2="6.35" width="0.254" layer="94"/>
  4502. <wire x1="8.89" y1="6.35" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  4503. <wire x1="3.81" y1="7.62" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  4504. <wire x1="7.62" y1="7.62" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  4505. <wire x1="7.62" y1="5.08" x2="7.62" y2="2.54" width="0.254" layer="94"/>
  4506. <wire x1="7.62" y1="2.54" x2="3.81" y2="2.54" width="0.254" layer="94"/>
  4507. <wire x1="11.43" y1="36.83" x2="11.43" y2="35.56" width="0.254" layer="94"/>
  4508. <wire x1="11.43" y1="35.56" x2="11.43" y2="34.29" width="0.254" layer="94"/>
  4509. <wire x1="11.43" y1="35.56" x2="13.97" y2="38.1" width="0.254" layer="94"/>
  4510. <wire x1="11.43" y1="35.56" x2="13.97" y2="33.02" width="0.254" layer="94"/>
  4511. <wire x1="13.97" y1="33.02" x2="13.97" y2="34.29" width="0.254" layer="94"/>
  4512. <wire x1="13.97" y1="33.02" x2="12.7" y2="33.02" width="0.254" layer="94"/>
  4513. <wire x1="13.97" y1="38.1" x2="16.51" y2="38.1" width="0.254" layer="94"/>
  4514. <wire x1="13.97" y1="33.02" x2="16.51" y2="33.02" width="0.254" layer="94"/>
  4515. <wire x1="11.43" y1="26.67" x2="11.43" y2="25.4" width="0.254" layer="94"/>
  4516. <wire x1="11.43" y1="25.4" x2="11.43" y2="24.13" width="0.254" layer="94"/>
  4517. <wire x1="11.43" y1="25.4" x2="13.97" y2="27.94" width="0.254" layer="94"/>
  4518. <wire x1="11.43" y1="25.4" x2="13.97" y2="22.86" width="0.254" layer="94"/>
  4519. <wire x1="13.97" y1="22.86" x2="13.97" y2="24.13" width="0.254" layer="94"/>
  4520. <wire x1="13.97" y1="22.86" x2="12.7" y2="22.86" width="0.254" layer="94"/>
  4521. <wire x1="13.97" y1="27.94" x2="16.51" y2="27.94" width="0.254" layer="94"/>
  4522. <wire x1="13.97" y1="22.86" x2="16.51" y2="22.86" width="0.254" layer="94"/>
  4523. <wire x1="11.43" y1="16.51" x2="11.43" y2="15.24" width="0.254" layer="94"/>
  4524. <wire x1="11.43" y1="15.24" x2="11.43" y2="13.97" width="0.254" layer="94"/>
  4525. <wire x1="11.43" y1="15.24" x2="13.97" y2="17.78" width="0.254" layer="94"/>
  4526. <wire x1="11.43" y1="15.24" x2="13.97" y2="12.7" width="0.254" layer="94"/>
  4527. <wire x1="13.97" y1="12.7" x2="13.97" y2="13.97" width="0.254" layer="94"/>
  4528. <wire x1="13.97" y1="12.7" x2="12.7" y2="12.7" width="0.254" layer="94"/>
  4529. <wire x1="13.97" y1="17.78" x2="16.51" y2="17.78" width="0.254" layer="94"/>
  4530. <wire x1="13.97" y1="12.7" x2="16.51" y2="12.7" width="0.254" layer="94"/>
  4531. <wire x1="11.43" y1="6.35" x2="11.43" y2="5.08" width="0.254" layer="94"/>
  4532. <wire x1="11.43" y1="5.08" x2="11.43" y2="3.81" width="0.254" layer="94"/>
  4533. <wire x1="11.43" y1="5.08" x2="13.97" y2="7.62" width="0.254" layer="94"/>
  4534. <wire x1="11.43" y1="5.08" x2="13.97" y2="2.54" width="0.254" layer="94"/>
  4535. <wire x1="13.97" y1="2.54" x2="13.97" y2="3.81" width="0.254" layer="94"/>
  4536. <wire x1="13.97" y1="2.54" x2="12.7" y2="2.54" width="0.254" layer="94"/>
  4537. <wire x1="13.97" y1="7.62" x2="16.51" y2="7.62" width="0.254" layer="94"/>
  4538. <wire x1="13.97" y1="2.54" x2="16.51" y2="2.54" width="0.254" layer="94"/>
  4539. </symbol>
  4540. </symbols>
  4541. <devicesets>
  4542. <deviceset name="LTV847">
  4543. <description>LTV847 4-optocoupler DIP16</description>
  4544. <gates>
  4545. <gate name="G$1" symbol="LTV847" x="-10.16" y="-20.32"/>
  4546. </gates>
  4547. <devices>
  4548. <device name="" package="DIL16">
  4549. <connects>
  4550. <connect gate="G$1" pin="P$1" pad="8"/>
  4551. <connect gate="G$1" pin="P$10" pad="10"/>
  4552. <connect gate="G$1" pin="P$11" pad="11"/>
  4553. <connect gate="G$1" pin="P$12" pad="12"/>
  4554. <connect gate="G$1" pin="P$13" pad="13"/>
  4555. <connect gate="G$1" pin="P$14" pad="14"/>
  4556. <connect gate="G$1" pin="P$15" pad="15"/>
  4557. <connect gate="G$1" pin="P$16" pad="16"/>
  4558. <connect gate="G$1" pin="P$2" pad="7"/>
  4559. <connect gate="G$1" pin="P$3" pad="6"/>
  4560. <connect gate="G$1" pin="P$4" pad="5"/>
  4561. <connect gate="G$1" pin="P$5" pad="4"/>
  4562. <connect gate="G$1" pin="P$6" pad="3"/>
  4563. <connect gate="G$1" pin="P$7" pad="2"/>
  4564. <connect gate="G$1" pin="P$8" pad="1"/>
  4565. <connect gate="G$1" pin="P$9" pad="9"/>
  4566. </connects>
  4567. <technologies>
  4568. <technology name=""/>
  4569. </technologies>
  4570. </device>
  4571. </devices>
  4572. </deviceset>
  4573. </devicesets>
  4574. </library>
  4575. <library name="con-cypressindustries">
  4576. <description>&lt;b&gt;Connectors from Cypress Industries&lt;/b&gt;&lt;p&gt;
  4577. www.cypressindustries.com&lt;br&gt;
  4578. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  4579. <packages>
  4580. <package name="32005-201">
  4581. <description>&lt;b&gt;MINI USB-B R/A SMT W/ REAR&lt;/b&gt;&lt;p&gt;
  4582. Source: http://www.cypressindustries.com/pdf/32005-201.pdf</description>
  4583. <wire x1="-5.9182" y1="3.8416" x2="-3.6879" y2="3.8416" width="0.1016" layer="51"/>
  4584. <wire x1="-3.6879" y1="3.8416" x2="-3.6879" y2="4.8799" width="0.1016" layer="51"/>
  4585. <wire x1="-3.6879" y1="4.8799" x2="-3.3245" y2="4.8799" width="0.1016" layer="51"/>
  4586. <wire x1="-3.3245" y1="4.8799" x2="-3.3245" y2="4.4646" width="0.1016" layer="51"/>
  4587. <wire x1="-3.3245" y1="4.4646" x2="-2.7015" y2="4.4646" width="0.1016" layer="51"/>
  4588. <wire x1="-2.7015" y1="4.4646" x2="-2.7015" y2="4.8799" width="0.1016" layer="51"/>
  4589. <wire x1="-2.7015" y1="4.8799" x2="-2.3093" y2="4.8799" width="0.1016" layer="51"/>
  4590. <wire x1="-2.3093" y1="4.8799" x2="-2.3093" y2="3.8416" width="0.1016" layer="51"/>
  4591. <wire x1="-1.5825" y1="3.8416" x2="0.7266" y2="3.8416" width="0.1016" layer="21"/>
  4592. <wire x1="2.8032" y1="3.8416" x2="0.7266" y2="3.8416" width="0.1016" layer="51"/>
  4593. <wire x1="0.7266" y1="3.8416" x2="0.519" y2="4.0492" width="0.1016" layer="21" curve="-90"/>
  4594. <wire x1="0.519" y1="4.0492" x2="0.519" y2="4.205" width="0.1016" layer="21"/>
  4595. <wire x1="0.519" y1="4.205" x2="2.907" y2="4.205" width="0.1016" layer="51"/>
  4596. <wire x1="2.907" y1="4.205" x2="3.4781" y2="3.6339" width="0.1016" layer="51" curve="-90"/>
  4597. <wire x1="-5.9182" y1="-3.8415" x2="-5.9182" y2="-3.8414" width="0.1016" layer="21"/>
  4598. <wire x1="-5.9182" y1="-3.8414" x2="-5.9182" y2="3.8416" width="0.1016" layer="21"/>
  4599. <wire x1="-1.8171" y1="2.9591" x2="-4.5685" y2="2.7514" width="0.1016" layer="21"/>
  4600. <wire x1="-4.5685" y1="2.7514" x2="-4.828" y2="2.5438" width="0.1016" layer="21" curve="68.629849"/>
  4601. <wire x1="-4.828" y1="2.5438" x2="-4.828" y2="1.9727" width="0.1016" layer="21" curve="34.099487"/>
  4602. <wire x1="-4.828" y1="1.9727" x2="-4.5685" y2="1.7651" width="0.1016" layer="21" curve="68.629849"/>
  4603. <wire x1="-4.5685" y1="1.7651" x2="-1.8171" y2="1.5055" width="0.1016" layer="21"/>
  4604. <wire x1="-1.8171" y1="1.5055" x2="-1.8171" y2="1.7132" width="0.1016" layer="21"/>
  4605. <wire x1="-1.8171" y1="1.7132" x2="-4.2051" y2="1.9727" width="0.1016" layer="21"/>
  4606. <wire x1="-4.2051" y1="1.9727" x2="-4.2051" y2="2.4919" width="0.1016" layer="21"/>
  4607. <wire x1="-4.2051" y1="2.4919" x2="-1.8171" y2="2.7514" width="0.1016" layer="21"/>
  4608. <wire x1="-1.8171" y1="2.7514" x2="-1.8171" y2="2.9591" width="0.1016" layer="21"/>
  4609. <wire x1="2.8032" y1="3.8416" x2="3.0627" y2="3.5821" width="0.1016" layer="51" curve="-90"/>
  4610. <wire x1="3.0627" y1="3.5821" x2="3.0627" y2="3.011" width="0.1016" layer="51"/>
  4611. <wire x1="3.0627" y1="3.011" x2="3.4261" y2="3.011" width="0.1016" layer="21"/>
  4612. <wire x1="1.713" y1="4.2569" x2="1.713" y2="4.8799" width="0.1016" layer="51"/>
  4613. <wire x1="1.713" y1="4.8799" x2="2.1283" y2="4.8799" width="0.1016" layer="51"/>
  4614. <wire x1="2.1283" y1="4.8799" x2="2.1283" y2="4.4646" width="0.1016" layer="51"/>
  4615. <wire x1="2.1283" y1="4.4646" x2="2.6474" y2="4.4646" width="0.1016" layer="51"/>
  4616. <wire x1="2.6474" y1="4.4646" x2="2.6474" y2="4.8799" width="0.1016" layer="51"/>
  4617. <wire x1="2.6474" y1="4.8799" x2="3.0627" y2="4.8799" width="0.1016" layer="51"/>
  4618. <wire x1="3.0627" y1="4.8799" x2="3.0627" y2="4.2569" width="0.1016" layer="51"/>
  4619. <wire x1="0.5709" y1="1.7651" x2="0.5709" y2="-1.765" width="0.1016" layer="21"/>
  4620. <wire x1="1.0381" y1="-1.8169" x2="1.0381" y2="1.817" width="0.1016" layer="21"/>
  4621. <wire x1="1.0381" y1="1.817" x2="0.8305" y2="2.0246" width="0.1016" layer="21" curve="90.055225"/>
  4622. <wire x1="0.8305" y1="2.0246" x2="0.8304" y2="2.0246" width="0.1016" layer="21"/>
  4623. <wire x1="0.8304" y1="2.0246" x2="0.5709" y2="1.7651" width="0.1016" layer="21" curve="89.955858"/>
  4624. <wire x1="1.5573" y1="-2.0246" x2="3.4261" y2="-2.0246" width="0.1016" layer="21"/>
  4625. <wire x1="3.0627" y1="-1.9726" x2="3.0627" y2="1.9727" width="0.1016" layer="51"/>
  4626. <wire x1="-4.5684" y1="1.2459" x2="-0.5192" y2="1.0383" width="0.1016" layer="21"/>
  4627. <wire x1="-0.5192" y1="1.0383" x2="-0.3116" y2="0.8306" width="0.1016" layer="21" curve="-83.771817"/>
  4628. <wire x1="-4.5685" y1="1.2459" x2="-4.7761" y2="1.0383" width="0.1016" layer="21" curve="90"/>
  4629. <wire x1="-4.7761" y1="1.0383" x2="-4.7761" y2="1.0382" width="0.1016" layer="21"/>
  4630. <wire x1="-4.7761" y1="1.0382" x2="-4.5685" y2="0.8306" width="0.1016" layer="21" curve="90"/>
  4631. <wire x1="-4.5685" y1="0.8306" x2="-1.1422" y2="0.623" width="0.1016" layer="21"/>
  4632. <wire x1="-5.9182" y1="-3.8414" x2="-3.6879" y2="-3.8414" width="0.1016" layer="51"/>
  4633. <wire x1="-3.6879" y1="-3.8414" x2="-3.6879" y2="-4.8797" width="0.1016" layer="51"/>
  4634. <wire x1="-3.6879" y1="-4.8797" x2="-3.3245" y2="-4.8797" width="0.1016" layer="51"/>
  4635. <wire x1="-3.3245" y1="-4.8797" x2="-3.3245" y2="-4.4644" width="0.1016" layer="51"/>
  4636. <wire x1="-3.3245" y1="-4.4644" x2="-2.7015" y2="-4.4644" width="0.1016" layer="51"/>
  4637. <wire x1="-2.7015" y1="-4.4644" x2="-2.7015" y2="-4.8797" width="0.1016" layer="51"/>
  4638. <wire x1="-2.7015" y1="-4.8797" x2="-2.3093" y2="-4.8797" width="0.1016" layer="51"/>
  4639. <wire x1="-2.3093" y1="-4.8797" x2="-2.3093" y2="-3.8414" width="0.1016" layer="51"/>
  4640. <wire x1="-2.3093" y1="-3.8414" x2="2.8032" y2="-3.8414" width="0.1016" layer="51"/>
  4641. <wire x1="0.7266" y1="-3.8414" x2="0.519" y2="-4.049" width="0.1016" layer="21" curve="90"/>
  4642. <wire x1="0.519" y1="-4.049" x2="0.519" y2="-4.2048" width="0.1016" layer="21"/>
  4643. <wire x1="0.519" y1="-4.2048" x2="2.907" y2="-4.2048" width="0.1016" layer="51"/>
  4644. <wire x1="2.907" y1="-4.2048" x2="3.4781" y2="-3.6337" width="0.1016" layer="51" curve="90.020069"/>
  4645. <wire x1="-1.8171" y1="-2.9589" x2="-4.5685" y2="-2.7512" width="0.1016" layer="21"/>
  4646. <wire x1="-4.5685" y1="-2.7512" x2="-4.828" y2="-2.5436" width="0.1016" layer="21" curve="-68.629849"/>
  4647. <wire x1="-4.828" y1="-2.5436" x2="-4.828" y2="-1.9725" width="0.1016" layer="21" curve="-34.099487"/>
  4648. <wire x1="-4.828" y1="-1.9725" x2="-4.5685" y2="-1.7649" width="0.1016" layer="21" curve="-68.629849"/>
  4649. <wire x1="-4.5685" y1="-1.7649" x2="-1.8171" y2="-1.5053" width="0.1016" layer="21"/>
  4650. <wire x1="-1.8171" y1="-1.5053" x2="-1.8171" y2="-1.713" width="0.1016" layer="21"/>
  4651. <wire x1="-1.8171" y1="-1.713" x2="-4.2051" y2="-1.9725" width="0.1016" layer="21"/>
  4652. <wire x1="-4.2051" y1="-1.9725" x2="-4.2051" y2="-2.4917" width="0.1016" layer="21"/>
  4653. <wire x1="-4.2051" y1="-2.4917" x2="-1.8171" y2="-2.7512" width="0.1016" layer="21"/>
  4654. <wire x1="-1.8171" y1="-2.7512" x2="-1.8171" y2="-2.9589" width="0.1016" layer="21"/>
  4655. <wire x1="2.8032" y1="-3.8414" x2="3.0627" y2="-3.5819" width="0.1016" layer="51" curve="90.044176"/>
  4656. <wire x1="3.0627" y1="-3.5819" x2="3.0627" y2="-3.0108" width="0.1016" layer="51"/>
  4657. <wire x1="3.0627" y1="-3.0108" x2="3.4261" y2="-3.0108" width="0.1016" layer="21"/>
  4658. <wire x1="1.713" y1="-4.2567" x2="1.713" y2="-4.8797" width="0.1016" layer="51"/>
  4659. <wire x1="1.713" y1="-4.8797" x2="2.1283" y2="-4.8797" width="0.1016" layer="51"/>
  4660. <wire x1="2.1283" y1="-4.8797" x2="2.1283" y2="-4.4644" width="0.1016" layer="51"/>
  4661. <wire x1="2.1283" y1="-4.4644" x2="2.6474" y2="-4.4644" width="0.1016" layer="51"/>
  4662. <wire x1="2.6474" y1="-4.4644" x2="2.6474" y2="-4.8797" width="0.1016" layer="51"/>
  4663. <wire x1="2.6474" y1="-4.8797" x2="3.0627" y2="-4.8797" width="0.1016" layer="51"/>
  4664. <wire x1="3.0627" y1="-4.8797" x2="3.0627" y2="-4.2567" width="0.1016" layer="51"/>
  4665. <wire x1="1.0381" y1="-1.8168" x2="0.8305" y2="-2.0244" width="0.1016" layer="21" curve="-90.055225"/>
  4666. <wire x1="0.8304" y1="-2.0244" x2="0.5709" y2="-1.7649" width="0.1016" layer="21" curve="-89.867677"/>
  4667. <wire x1="1.5573" y1="-1.9725" x2="1.5573" y2="2.0248" width="0.1016" layer="51"/>
  4668. <wire x1="1.5573" y1="2.0248" x2="3.4261" y2="2.0248" width="0.1016" layer="21"/>
  4669. <wire x1="-4.5684" y1="-1.2457" x2="-0.5192" y2="-1.0381" width="0.1016" layer="21"/>
  4670. <wire x1="-0.5192" y1="-1.0381" x2="-0.3116" y2="-0.8304" width="0.1016" layer="21" curve="83.722654"/>
  4671. <wire x1="-0.3116" y1="-0.8304" x2="-0.3116" y2="0.8307" width="0.1016" layer="21"/>
  4672. <wire x1="-4.5685" y1="-1.2457" x2="-4.7761" y2="-1.0381" width="0.1016" layer="21" curve="-90"/>
  4673. <wire x1="-4.7761" y1="-1.038" x2="-4.5685" y2="-0.8304" width="0.1016" layer="21" curve="-90"/>
  4674. <wire x1="-4.5685" y1="-0.8304" x2="-1.1422" y2="-0.6228" width="0.1016" layer="21"/>
  4675. <wire x1="-1.1422" y1="-0.6228" x2="-1.1422" y2="0.6232" width="0.1016" layer="21"/>
  4676. <wire x1="-1.5826" y1="-3.8414" x2="0.7267" y2="-3.8415" width="0.1016" layer="21"/>
  4677. <wire x1="-5.9182" y1="-3.8414" x2="-4.4146" y2="-3.8414" width="0.1016" layer="21"/>
  4678. <wire x1="-5.9182" y1="3.8416" x2="-4.4147" y2="3.8415" width="0.1016" layer="21"/>
  4679. <wire x1="-2.3093" y1="3.8416" x2="0.7265" y2="3.8415" width="0.1016" layer="51"/>
  4680. <wire x1="3.4781" y1="-2.0245" x2="3.4781" y2="-3.0109" width="0.1016" layer="21"/>
  4681. <wire x1="3.4781" y1="3.634" x2="3.478" y2="-3.0109" width="0.1016" layer="51"/>
  4682. <wire x1="3.4782" y1="3.011" x2="3.4782" y2="2.0246" width="0.1016" layer="21"/>
  4683. <smd name="M1" x="-3" y="-4.45" dx="2.5" dy="2" layer="1"/>
  4684. <smd name="M2" x="-3" y="4.45" dx="2.5" dy="2" layer="1"/>
  4685. <smd name="M4" x="2.9" y="-4.45" dx="3.3" dy="2" layer="1"/>
  4686. <smd name="M3" x="2.9" y="4.45" dx="3.3" dy="2" layer="1"/>
  4687. <smd name="1" x="3" y="1.6" dx="3.1" dy="0.5" layer="1"/>
  4688. <smd name="2" x="3" y="0.8" dx="3.1" dy="0.5" layer="1"/>
  4689. <smd name="3" x="3" y="0" dx="3.1" dy="0.5" layer="1"/>
  4690. <smd name="4" x="3" y="-0.8" dx="3.1" dy="0.5" layer="1"/>
  4691. <smd name="5" x="3" y="-1.6" dx="3.1" dy="0.5" layer="1"/>
  4692. <text x="-4.445" y="5.715" size="1.27" layer="25">&gt;NAME</text>
  4693. <text x="-4.445" y="-6.985" size="1.27" layer="27">&gt;VALUE</text>
  4694. <hole x="0" y="2.2" drill="0.9"/>
  4695. <hole x="0" y="-2.2" drill="0.9"/>
  4696. </package>
  4697. <package name="32005-301">
  4698. <description>&lt;b&gt;MINI USB-B R/A SMT W/O REAR&lt;/b&gt;&lt;p&gt;
  4699. Source: http://www.cypressindustries.com/pdf/32005-301.pdf</description>
  4700. <wire x1="-5.9228" y1="3.8473" x2="3.1598" y2="3.8473" width="0.1016" layer="51"/>
  4701. <wire x1="2.9404" y1="3.7967" x2="2.9404" y2="2.5986" width="0.1016" layer="51"/>
  4702. <wire x1="2.9404" y1="2.5986" x2="1.8098" y2="2.5986" width="0.1016" layer="21"/>
  4703. <wire x1="1.8098" y1="3.7798" x2="1.8098" y2="-3.8473" width="0.1016" layer="51"/>
  4704. <wire x1="3.1597" y1="-3.8473" x2="-5.9228" y2="-3.8473" width="0.1016" layer="51"/>
  4705. <wire x1="-5.9228" y1="-3.8473" x2="-5.9228" y2="3.8473" width="0.1016" layer="21"/>
  4706. <wire x1="2.9573" y1="-3.8217" x2="2.9573" y2="-2.6998" width="0.1016" layer="51"/>
  4707. <wire x1="2.9573" y1="-2.6998" x2="1.8098" y2="-2.6998" width="0.1016" layer="21"/>
  4708. <wire x1="-5.9182" y1="3.8416" x2="-3.6879" y2="3.8416" width="0.1016" layer="51"/>
  4709. <wire x1="-3.6879" y1="3.8416" x2="-3.6879" y2="4.8799" width="0.1016" layer="51"/>
  4710. <wire x1="-3.6879" y1="4.8799" x2="-3.3245" y2="4.8799" width="0.1016" layer="51"/>
  4711. <wire x1="-3.3245" y1="4.8799" x2="-3.3245" y2="4.4646" width="0.1016" layer="51"/>
  4712. <wire x1="-3.3245" y1="4.4646" x2="-2.7015" y2="4.4646" width="0.1016" layer="51"/>
  4713. <wire x1="-2.7015" y1="4.4646" x2="-2.7015" y2="4.8799" width="0.1016" layer="51"/>
  4714. <wire x1="-2.7015" y1="4.8799" x2="-2.3093" y2="4.8799" width="0.1016" layer="51"/>
  4715. <wire x1="-2.3093" y1="4.8799" x2="-2.3093" y2="3.8416" width="0.1016" layer="51"/>
  4716. <wire x1="-5.9182" y1="-3.8415" x2="-5.9182" y2="-3.8414" width="0.1016" layer="21"/>
  4717. <wire x1="-5.9182" y1="-3.8414" x2="-5.9182" y2="3.8416" width="0.1016" layer="21"/>
  4718. <wire x1="-1.8171" y1="2.9591" x2="-4.5685" y2="2.7514" width="0.1016" layer="21"/>
  4719. <wire x1="-4.5685" y1="2.7514" x2="-4.828" y2="2.5438" width="0.1016" layer="21" curve="68.629849"/>
  4720. <wire x1="-4.828" y1="2.5438" x2="-4.828" y2="1.9727" width="0.1016" layer="21" curve="34.099487"/>
  4721. <wire x1="-4.828" y1="1.9727" x2="-4.5685" y2="1.7651" width="0.1016" layer="21" curve="68.629849"/>
  4722. <wire x1="-4.5685" y1="1.7651" x2="-1.8171" y2="1.5055" width="0.1016" layer="21"/>
  4723. <wire x1="-1.8171" y1="1.5055" x2="-1.8171" y2="1.7132" width="0.1016" layer="21"/>
  4724. <wire x1="-1.8171" y1="1.7132" x2="-4.2051" y2="1.9727" width="0.1016" layer="21"/>
  4725. <wire x1="-4.2051" y1="1.9727" x2="-4.2051" y2="2.4919" width="0.1016" layer="21"/>
  4726. <wire x1="-4.2051" y1="2.4919" x2="-1.8171" y2="2.7514" width="0.1016" layer="21"/>
  4727. <wire x1="-1.8171" y1="2.7514" x2="-1.8171" y2="2.9591" width="0.1016" layer="21"/>
  4728. <wire x1="1.713" y1="3.8856" x2="1.713" y2="4.8799" width="0.1016" layer="51"/>
  4729. <wire x1="1.713" y1="4.8799" x2="2.1283" y2="4.8799" width="0.1016" layer="51"/>
  4730. <wire x1="2.1283" y1="4.8799" x2="2.1283" y2="4.4646" width="0.1016" layer="51"/>
  4731. <wire x1="2.1283" y1="4.4646" x2="2.6474" y2="4.4646" width="0.1016" layer="51"/>
  4732. <wire x1="2.6474" y1="4.4646" x2="2.6474" y2="4.8799" width="0.1016" layer="51"/>
  4733. <wire x1="2.6474" y1="4.8799" x2="3.1639" y2="4.8799" width="0.1016" layer="51"/>
  4734. <wire x1="3.1639" y1="4.8799" x2="3.1639" y2="3.8519" width="0.1016" layer="51"/>
  4735. <wire x1="-4.5684" y1="1.2459" x2="-0.5192" y2="1.0383" width="0.1016" layer="21"/>
  4736. <wire x1="-0.5192" y1="1.0383" x2="-0.3116" y2="0.8306" width="0.1016" layer="21" curve="-83.771817"/>
  4737. <wire x1="-4.5685" y1="1.2459" x2="-4.7761" y2="1.0383" width="0.1016" layer="21" curve="90"/>
  4738. <wire x1="-4.7761" y1="1.0383" x2="-4.7761" y2="1.0382" width="0.1016" layer="21"/>
  4739. <wire x1="-4.7761" y1="1.0382" x2="-4.5685" y2="0.8306" width="0.1016" layer="21" curve="90"/>
  4740. <wire x1="-4.5685" y1="0.8306" x2="-1.1422" y2="0.623" width="0.1016" layer="21"/>
  4741. <wire x1="-5.9182" y1="-3.8414" x2="-3.6879" y2="-3.8414" width="0.1016" layer="51"/>
  4742. <wire x1="-3.6879" y1="-3.8414" x2="-3.6879" y2="-4.8797" width="0.1016" layer="51"/>
  4743. <wire x1="-3.6879" y1="-4.8797" x2="-3.3245" y2="-4.8797" width="0.1016" layer="51"/>
  4744. <wire x1="-3.3245" y1="-4.8797" x2="-3.3245" y2="-4.4644" width="0.1016" layer="51"/>
  4745. <wire x1="-3.3245" y1="-4.4644" x2="-2.7015" y2="-4.4644" width="0.1016" layer="51"/>
  4746. <wire x1="-2.7015" y1="-4.4644" x2="-2.7015" y2="-4.8797" width="0.1016" layer="51"/>
  4747. <wire x1="-2.7015" y1="-4.8797" x2="-2.3093" y2="-4.8797" width="0.1016" layer="51"/>
  4748. <wire x1="-2.3093" y1="-4.8797" x2="-2.3093" y2="-3.8414" width="0.1016" layer="51"/>
  4749. <wire x1="-1.8171" y1="-2.9589" x2="-4.5685" y2="-2.7512" width="0.1016" layer="21"/>
  4750. <wire x1="-4.5685" y1="-2.7512" x2="-4.828" y2="-2.5436" width="0.1016" layer="21" curve="-68.629849"/>
  4751. <wire x1="-4.828" y1="-2.5436" x2="-4.828" y2="-1.9725" width="0.1016" layer="21" curve="-34.099487"/>
  4752. <wire x1="-4.828" y1="-1.9725" x2="-4.5685" y2="-1.7649" width="0.1016" layer="21" curve="-68.629849"/>
  4753. <wire x1="-4.5685" y1="-1.7649" x2="-1.8171" y2="-1.5053" width="0.1016" layer="21"/>
  4754. <wire x1="-1.8171" y1="-1.5053" x2="-1.8171" y2="-1.713" width="0.1016" layer="21"/>
  4755. <wire x1="-1.8171" y1="-1.713" x2="-4.2051" y2="-1.9725" width="0.1016" layer="21"/>
  4756. <wire x1="-4.2051" y1="-1.9725" x2="-4.2051" y2="-2.4917" width="0.1016" layer="21"/>
  4757. <wire x1="-4.2051" y1="-2.4917" x2="-1.8171" y2="-2.7512" width="0.1016" layer="21"/>
  4758. <wire x1="-1.8171" y1="-2.7512" x2="-1.8171" y2="-2.9589" width="0.1016" layer="21"/>
  4759. <wire x1="1.713" y1="-3.8855" x2="1.713" y2="-4.8797" width="0.1016" layer="51"/>
  4760. <wire x1="1.713" y1="-4.8797" x2="2.1283" y2="-4.8797" width="0.1016" layer="51"/>
  4761. <wire x1="2.1283" y1="-4.8797" x2="2.1283" y2="-4.4644" width="0.1016" layer="51"/>
  4762. <wire x1="2.1283" y1="-4.4644" x2="2.6474" y2="-4.4644" width="0.1016" layer="51"/>
  4763. <wire x1="2.6474" y1="-4.4644" x2="2.6474" y2="-4.8797" width="0.1016" layer="51"/>
  4764. <wire x1="2.6474" y1="-4.8797" x2="3.1627" y2="-4.8797" width="0.1016" layer="51"/>
  4765. <wire x1="3.1627" y1="-4.8797" x2="3.1627" y2="-3.8518" width="0.1016" layer="51"/>
  4766. <wire x1="-4.5684" y1="-1.2457" x2="-0.5192" y2="-1.0381" width="0.1016" layer="21"/>
  4767. <wire x1="-0.5192" y1="-1.0381" x2="-0.3116" y2="-0.8304" width="0.1016" layer="21" curve="83.722654"/>
  4768. <wire x1="-0.3116" y1="-0.8304" x2="-0.3116" y2="0.8307" width="0.1016" layer="21"/>
  4769. <wire x1="-4.5685" y1="-1.2457" x2="-4.7761" y2="-1.0381" width="0.1016" layer="21" curve="-90"/>
  4770. <wire x1="-4.7761" y1="-1.038" x2="-4.5685" y2="-0.8304" width="0.1016" layer="21" curve="-90"/>
  4771. <wire x1="-4.5685" y1="-0.8304" x2="-1.1422" y2="-0.6228" width="0.1016" layer="21"/>
  4772. <wire x1="-1.1422" y1="-0.6228" x2="-1.1422" y2="0.6232" width="0.1016" layer="21"/>
  4773. <wire x1="-5.9182" y1="-3.8414" x2="-4.4146" y2="-3.8414" width="0.1016" layer="21"/>
  4774. <wire x1="-5.9182" y1="3.8416" x2="-4.4147" y2="3.8415" width="0.1016" layer="21"/>
  4775. <wire x1="1.0842" y1="-3.8472" x2="-1.6031" y2="-3.8472" width="0.1016" layer="21"/>
  4776. <wire x1="-1.5523" y1="3.8472" x2="0.9831" y2="3.8473" width="0.1016" layer="21"/>
  4777. <wire x1="2.9404" y1="3.3243" x2="2.9404" y2="2.5986" width="0.1016" layer="21"/>
  4778. <wire x1="1.8098" y1="2.5986" x2="1.8099" y2="3.3243" width="0.1016" layer="21"/>
  4779. <wire x1="1.8098" y1="-2.6999" x2="1.8098" y2="-3.3242" width="0.1016" layer="21"/>
  4780. <wire x1="2.9573" y1="-3.3324" x2="2.9573" y2="-2.6998" width="0.1016" layer="21"/>
  4781. <smd name="M1" x="-3" y="-4.45" dx="2.5" dy="2" layer="1"/>
  4782. <smd name="M2" x="-3" y="4.45" dx="2.5" dy="2" layer="1"/>
  4783. <smd name="M4" x="2.9" y="-4.45" dx="3.3" dy="2" layer="1"/>
  4784. <smd name="M3" x="2.9" y="4.45" dx="3.3" dy="2" layer="1"/>
  4785. <smd name="1" x="3" y="1.6" dx="3.1" dy="0.5" layer="1"/>
  4786. <smd name="2" x="3" y="0.8" dx="3.1" dy="0.5" layer="1"/>
  4787. <smd name="3" x="3" y="0" dx="3.1" dy="0.5" layer="1"/>
  4788. <smd name="4" x="3" y="-0.8" dx="3.1" dy="0.5" layer="1"/>
  4789. <smd name="5" x="3" y="-1.6" dx="3.1" dy="0.5" layer="1"/>
  4790. <text x="-4.445" y="5.715" size="1.27" layer="25">&gt;NAME</text>
  4791. <text x="-4.445" y="-6.985" size="1.27" layer="27">&gt;VALUE</text>
  4792. <hole x="0" y="2.2" drill="0.9"/>
  4793. <hole x="0" y="-2.2" drill="0.9"/>
  4794. </package>
  4795. </packages>
  4796. <symbols>
  4797. <symbol name="MINI-USB-5">
  4798. <wire x1="-2.54" y1="6.35" x2="-2.54" y2="-6.35" width="0.254" layer="94"/>
  4799. <wire x1="-2.54" y1="-6.35" x2="-1.27" y2="-7.62" width="0.254" layer="94" curve="90"/>
  4800. <wire x1="-1.27" y1="-7.62" x2="0" y2="-7.62" width="0.254" layer="94"/>
  4801. <wire x1="0" y1="-7.62" x2="1.016" y2="-8.128" width="0.254" layer="94" curve="-53.130102"/>
  4802. <wire x1="1.016" y1="-8.128" x2="2.54" y2="-8.89" width="0.254" layer="94" curve="53.130102"/>
  4803. <wire x1="2.54" y1="-8.89" x2="5.08" y2="-8.89" width="0.254" layer="94"/>
  4804. <wire x1="5.08" y1="-8.89" x2="6.35" y2="-7.62" width="0.254" layer="94" curve="90"/>
  4805. <wire x1="6.35" y1="-7.62" x2="6.35" y2="7.62" width="0.254" layer="94"/>
  4806. <wire x1="-2.54" y1="6.35" x2="-1.27" y2="7.62" width="0.254" layer="94" curve="-90"/>
  4807. <wire x1="-1.27" y1="7.62" x2="0" y2="7.62" width="0.254" layer="94"/>
  4808. <wire x1="0" y1="7.62" x2="1.016" y2="8.128" width="0.254" layer="94" curve="53.130102"/>
  4809. <wire x1="1.016" y1="8.128" x2="2.54" y2="8.89" width="0.254" layer="94" curve="-53.130102"/>
  4810. <wire x1="2.54" y1="8.89" x2="5.08" y2="8.89" width="0.254" layer="94"/>
  4811. <wire x1="5.08" y1="8.89" x2="6.35" y2="7.62" width="0.254" layer="94" curve="-90"/>
  4812. <wire x1="0" y1="5.08" x2="0" y2="-5.08" width="0.254" layer="94"/>
  4813. <wire x1="0" y1="-5.08" x2="1.27" y2="-6.35" width="0.254" layer="94"/>
  4814. <wire x1="1.27" y1="-6.35" x2="3.81" y2="-6.35" width="0.254" layer="94"/>
  4815. <wire x1="3.81" y1="-6.35" x2="3.81" y2="6.35" width="0.254" layer="94"/>
  4816. <wire x1="3.81" y1="6.35" x2="1.27" y2="6.35" width="0.254" layer="94"/>
  4817. <wire x1="1.27" y1="6.35" x2="0" y2="5.08" width="0.254" layer="94"/>
  4818. <text x="-2.54" y="11.43" size="1.778" layer="95">&gt;NAME</text>
  4819. <text x="10.16" y="-7.62" size="1.778" layer="96" rot="R90">&gt;VALUE</text>
  4820. <pin name="1" x="-5.08" y="5.08" visible="pin" direction="pas"/>
  4821. <pin name="2" x="-5.08" y="2.54" visible="pin" direction="pas"/>
  4822. <pin name="3" x="-5.08" y="0" visible="pin" direction="pas"/>
  4823. <pin name="4" x="-5.08" y="-2.54" visible="pin" direction="pas"/>
  4824. <pin name="5" x="-5.08" y="-5.08" visible="pin" direction="pas"/>
  4825. </symbol>
  4826. <symbol name="SHIELD_4">
  4827. <wire x1="-2.54" y1="0" x2="0" y2="0" width="0.254" layer="94" style="shortdash"/>
  4828. <wire x1="0" y1="0" x2="2.54" y2="0" width="0.254" layer="94" style="shortdash"/>
  4829. <wire x1="2.54" y1="0" x2="5.08" y2="0" width="0.254" layer="94" style="shortdash"/>
  4830. <wire x1="-2.54" y1="-1.27" x2="-2.54" y2="0" width="0.1524" layer="94"/>
  4831. <wire x1="0" y1="-1.27" x2="0" y2="0" width="0.1524" layer="94"/>
  4832. <wire x1="2.54" y1="-1.27" x2="2.54" y2="0" width="0.1524" layer="94"/>
  4833. <wire x1="5.08" y1="0" x2="7.62" y2="2.54" width="0.254" layer="94" style="shortdash" curve="90"/>
  4834. <wire x1="7.62" y1="2.54" x2="7.62" y2="17.78" width="0.254" layer="94" style="shortdash"/>
  4835. <wire x1="7.62" y1="17.78" x2="5.08" y2="20.32" width="0.254" layer="94" style="shortdash" curve="90"/>
  4836. <wire x1="5.08" y1="20.32" x2="0" y2="20.32" width="0.254" layer="94" style="shortdash"/>
  4837. <text x="7.62" y="-2.54" size="1.778" layer="95">&gt;NAME</text>
  4838. <pin name="S1" x="-2.54" y="-2.54" visible="off" length="short" direction="pas" rot="R90"/>
  4839. <pin name="S2" x="0" y="-2.54" visible="off" length="short" direction="pas" rot="R90"/>
  4840. <pin name="S3" x="2.54" y="-2.54" visible="off" length="short" direction="pas" rot="R90"/>
  4841. <pin name="S4" x="5.08" y="-2.54" visible="off" length="short" direction="pas" rot="R90"/>
  4842. </symbol>
  4843. </symbols>
  4844. <devicesets>
  4845. <deviceset name="MINI-USB-SCHIELD-" prefix="X">
  4846. <description>&lt;b&gt;MINI USB-B Conector&lt;/b&gt;&lt;p&gt;
  4847. Source: www.cypressindustries.com</description>
  4848. <gates>
  4849. <gate name="G$1" symbol="MINI-USB-5" x="0" y="0"/>
  4850. <gate name="S" symbol="SHIELD_4" x="0" y="-10.16" addlevel="always"/>
  4851. </gates>
  4852. <devices>
  4853. <device name="32005-201" package="32005-201">
  4854. <connects>
  4855. <connect gate="G$1" pin="1" pad="1"/>
  4856. <connect gate="G$1" pin="2" pad="2"/>
  4857. <connect gate="G$1" pin="3" pad="3"/>
  4858. <connect gate="G$1" pin="4" pad="4"/>
  4859. <connect gate="G$1" pin="5" pad="5"/>
  4860. <connect gate="S" pin="S1" pad="M1"/>
  4861. <connect gate="S" pin="S2" pad="M2"/>
  4862. <connect gate="S" pin="S3" pad="M3"/>
  4863. <connect gate="S" pin="S4" pad="M4"/>
  4864. </connects>
  4865. <technologies>
  4866. <technology name="">
  4867. <attribute name="MF" value="" constant="no"/>
  4868. <attribute name="MPN" value="" constant="no"/>
  4869. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  4870. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  4871. </technology>
  4872. </technologies>
  4873. </device>
  4874. <device name="32005-301" package="32005-301">
  4875. <connects>
  4876. <connect gate="G$1" pin="1" pad="1"/>
  4877. <connect gate="G$1" pin="2" pad="2"/>
  4878. <connect gate="G$1" pin="3" pad="3"/>
  4879. <connect gate="G$1" pin="4" pad="4"/>
  4880. <connect gate="G$1" pin="5" pad="5"/>
  4881. <connect gate="S" pin="S1" pad="M1"/>
  4882. <connect gate="S" pin="S2" pad="M2"/>
  4883. <connect gate="S" pin="S3" pad="M3"/>
  4884. <connect gate="S" pin="S4" pad="M4"/>
  4885. </connects>
  4886. <technologies>
  4887. <technology name="">
  4888. <attribute name="MF" value="" constant="no"/>
  4889. <attribute name="MPN" value="" constant="no"/>
  4890. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  4891. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  4892. </technology>
  4893. </technologies>
  4894. </device>
  4895. </devices>
  4896. </deviceset>
  4897. </devicesets>
  4898. </library>
  4899. </libraries>
  4900. <attributes>
  4901. </attributes>
  4902. <variantdefs>
  4903. </variantdefs>
  4904. <classes>
  4905. <class number="0" name="default" width="0" drill="0">
  4906. </class>
  4907. </classes>
  4908. <parts>
  4909. <part name="JP1" library="pinhead" deviceset="PINHD-1X8" device="" value="PORT1"/>
  4910. <part name="JP2" library="pinhead" deviceset="PINHD-1X10" device="" value="PORT2"/>
  4911. <part name="JP3" library="pinhead" deviceset="PINHD-1X8" device="" value="PORT3"/>
  4912. <part name="JP4" library="pinhead" deviceset="PINHD-1X8" device="" value="PORT4"/>
  4913. <part name="X1" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  4914. <part name="JP5" library="pinhead" deviceset="PINHD-1X4" device="" value="SPI"/>
  4915. <part name="R1" library="resistor" deviceset="R-EU_" device="R1206" value="1K"/>
  4916. <part name="U$1" library="optocoupler" deviceset="LTV847" device=""/>
  4917. <part name="X3" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  4918. <part name="X4" library="con-cypressindustries" deviceset="MINI-USB-SCHIELD-" device="32005-301"/>
  4919. <part name="X2" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  4920. <part name="X5" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  4921. <part name="X6" library="con-phoenix-3.81" deviceset="1705566" device=""/>
  4922. <part name="R2" library="resistor" deviceset="R-EU_" device="R1206" value="1K"/>
  4923. <part name="R3" library="resistor" deviceset="R-EU_" device="R1206" value="2K"/>
  4924. <part name="R4" library="resistor" deviceset="R-EU_" device="R1206" value="2K"/>
  4925. <part name="R5" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4926. <part name="R6" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4927. <part name="R7" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4928. <part name="R8" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4929. <part name="JP6" library="pinhead" deviceset="PINHD-1X3" device=""/>
  4930. <part name="U$2" library="optocoupler" deviceset="LTV847" device=""/>
  4931. <part name="R9" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4932. <part name="R10" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4933. <part name="R11" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4934. <part name="R12" library="resistor" deviceset="R-EU_" device="R1206" value="100"/>
  4935. <part name="X7" library="con-phoenix-3.81" deviceset="1705605" device=""/>
  4936. </parts>
  4937. <sheets>
  4938. <sheet>
  4939. <plain>
  4940. <text x="332.74" y="53.34" size="1.778" layer="91">+5V</text>
  4941. <text x="332.74" y="45.72" size="1.778" layer="91">+5V OPTO</text>
  4942. <text x="332.74" y="38.1" size="1.778" layer="91">GND</text>
  4943. <text x="332.74" y="30.48" size="1.778" layer="91">GND F</text>
  4944. </plain>
  4945. <instances>
  4946. <instance part="JP1" gate="A" x="15.24" y="43.18" rot="MR0"/>
  4947. <instance part="JP2" gate="A" x="127" y="53.34" rot="MR0"/>
  4948. <instance part="JP3" gate="A" x="124.46" y="-45.72" rot="MR0"/>
  4949. <instance part="JP4" gate="A" x="-2.54" y="-15.24" rot="MR0"/>
  4950. <instance part="X1" gate="-1" x="78.74" y="55.88" rot="MR0"/>
  4951. <instance part="X1" gate="-2" x="78.74" y="48.26" rot="MR0"/>
  4952. <instance part="X1" gate="-3" x="78.74" y="40.64" rot="MR0"/>
  4953. <instance part="X1" gate="-4" x="78.74" y="33.02" rot="MR0"/>
  4954. <instance part="JP5" gate="A" x="60.96" y="33.02"/>
  4955. <instance part="R1" gate="G$1" x="218.44" y="91.44"/>
  4956. <instance part="U$1" gate="G$1" x="187.96" y="10.16"/>
  4957. <instance part="X3" gate="-1" x="317.5" y="53.34" rot="MR0"/>
  4958. <instance part="X3" gate="-2" x="317.5" y="45.72" rot="MR0"/>
  4959. <instance part="X3" gate="-3" x="317.5" y="38.1" rot="MR0"/>
  4960. <instance part="X3" gate="-4" x="317.5" y="30.48" rot="MR0"/>
  4961. <instance part="X4" gate="G$1" x="266.7" y="-12.7"/>
  4962. <instance part="X4" gate="S" x="266.7" y="-22.86"/>
  4963. <instance part="X2" gate="-1" x="226.06" y="106.68" rot="MR0"/>
  4964. <instance part="X2" gate="-2" x="226.06" y="99.06" rot="MR0"/>
  4965. <instance part="X2" gate="-3" x="226.06" y="91.44" rot="MR0"/>
  4966. <instance part="X2" gate="-4" x="226.06" y="83.82" rot="MR0"/>
  4967. <instance part="X5" gate="-1" x="233.68" y="40.64" rot="MR0"/>
  4968. <instance part="X5" gate="-2" x="233.68" y="33.02" rot="MR0"/>
  4969. <instance part="X5" gate="-3" x="233.68" y="25.4" rot="MR0"/>
  4970. <instance part="X5" gate="-4" x="233.68" y="17.78" rot="MR0"/>
  4971. <instance part="X6" gate="-1" x="91.44" y="-5.08" rot="MR0"/>
  4972. <instance part="X6" gate="-2" x="91.44" y="-12.7" rot="MR0"/>
  4973. <instance part="X6" gate="-3" x="91.44" y="-20.32" rot="MR0"/>
  4974. <instance part="X6" gate="-4" x="91.44" y="-27.94" rot="MR0"/>
  4975. <instance part="R2" gate="G$1" x="218.44" y="83.82"/>
  4976. <instance part="R3" gate="G$1" x="248.92" y="83.82"/>
  4977. <instance part="R4" gate="G$1" x="248.92" y="91.44"/>
  4978. <instance part="R5" gate="G$1" x="180.34" y="48.26"/>
  4979. <instance part="R6" gate="G$1" x="180.34" y="38.1"/>
  4980. <instance part="R7" gate="G$1" x="180.34" y="27.94"/>
  4981. <instance part="R8" gate="G$1" x="180.34" y="17.78"/>
  4982. <instance part="JP6" gate="A" x="213.36" y="-20.32"/>
  4983. <instance part="U$2" gate="G$1" x="38.1" y="-38.1"/>
  4984. <instance part="R9" gate="G$1" x="30.48" y="0"/>
  4985. <instance part="R10" gate="G$1" x="30.48" y="-10.16"/>
  4986. <instance part="R11" gate="G$1" x="30.48" y="-20.32"/>
  4987. <instance part="R12" gate="G$1" x="30.48" y="-30.48"/>
  4988. <instance part="X7" gate="-1" x="289.56" y="165.1" rot="MR0"/>
  4989. <instance part="X7" gate="-2" x="289.56" y="157.48" rot="MR0"/>
  4990. <instance part="X7" gate="-3" x="289.56" y="149.86" rot="MR0"/>
  4991. <instance part="X7" gate="-4" x="289.56" y="142.24" rot="MR0"/>
  4992. <instance part="X7" gate="-5" x="289.56" y="134.62" rot="MR0"/>
  4993. <instance part="X7" gate="-6" x="289.56" y="127" rot="MR0"/>
  4994. <instance part="X7" gate="-7" x="289.56" y="119.38" rot="MR0"/>
  4995. <instance part="X7" gate="-8" x="289.56" y="111.76" rot="MR0"/>
  4996. </instances>
  4997. <busses>
  4998. </busses>
  4999. <nets>
  5000. <net name="N$1" class="0">
  5001. <segment>
  5002. <pinref part="JP1" gate="A" pin="1"/>
  5003. <wire x1="17.78" y1="53.34" x2="71.12" y2="53.34" width="0.1524" layer="91"/>
  5004. <wire x1="71.12" y1="53.34" x2="71.12" y2="55.88" width="0.1524" layer="91"/>
  5005. <pinref part="X1" gate="-1" pin="1A"/>
  5006. <wire x1="71.12" y1="55.88" x2="76.2" y2="55.88" width="0.1524" layer="91"/>
  5007. </segment>
  5008. </net>
  5009. <net name="N$2" class="0">
  5010. <segment>
  5011. <pinref part="JP1" gate="A" pin="2"/>
  5012. <wire x1="17.78" y1="50.8" x2="71.12" y2="50.8" width="0.1524" layer="91"/>
  5013. <wire x1="71.12" y1="50.8" x2="71.12" y2="48.26" width="0.1524" layer="91"/>
  5014. <pinref part="X1" gate="-2" pin="1A"/>
  5015. <wire x1="71.12" y1="48.26" x2="76.2" y2="48.26" width="0.1524" layer="91"/>
  5016. </segment>
  5017. </net>
  5018. <net name="N$3" class="0">
  5019. <segment>
  5020. <pinref part="JP1" gate="A" pin="3"/>
  5021. <wire x1="17.78" y1="48.26" x2="68.58" y2="48.26" width="0.1524" layer="91"/>
  5022. <wire x1="68.58" y1="48.26" x2="68.58" y2="40.64" width="0.1524" layer="91"/>
  5023. <pinref part="X1" gate="-3" pin="1A"/>
  5024. <wire x1="68.58" y1="40.64" x2="76.2" y2="40.64" width="0.1524" layer="91"/>
  5025. </segment>
  5026. </net>
  5027. <net name="N$4" class="0">
  5028. <segment>
  5029. <pinref part="JP1" gate="A" pin="4"/>
  5030. <wire x1="17.78" y1="45.72" x2="66.04" y2="45.72" width="0.1524" layer="91"/>
  5031. <wire x1="66.04" y1="45.72" x2="66.04" y2="33.02" width="0.1524" layer="91"/>
  5032. <pinref part="X1" gate="-4" pin="1A"/>
  5033. <wire x1="66.04" y1="33.02" x2="76.2" y2="33.02" width="0.1524" layer="91"/>
  5034. </segment>
  5035. </net>
  5036. <net name="N$5" class="0">
  5037. <segment>
  5038. <pinref part="JP1" gate="A" pin="5"/>
  5039. <wire x1="17.78" y1="43.18" x2="50.8" y2="43.18" width="0.1524" layer="91"/>
  5040. <wire x1="50.8" y1="43.18" x2="50.8" y2="38.1" width="0.1524" layer="91"/>
  5041. <pinref part="JP5" gate="A" pin="1"/>
  5042. <wire x1="50.8" y1="38.1" x2="58.42" y2="38.1" width="0.1524" layer="91"/>
  5043. </segment>
  5044. </net>
  5045. <net name="N$6" class="0">
  5046. <segment>
  5047. <pinref part="JP1" gate="A" pin="6"/>
  5048. <wire x1="17.78" y1="40.64" x2="48.26" y2="40.64" width="0.1524" layer="91"/>
  5049. <wire x1="48.26" y1="40.64" x2="48.26" y2="35.56" width="0.1524" layer="91"/>
  5050. <pinref part="JP5" gate="A" pin="2"/>
  5051. <wire x1="48.26" y1="35.56" x2="58.42" y2="35.56" width="0.1524" layer="91"/>
  5052. </segment>
  5053. </net>
  5054. <net name="N$7" class="0">
  5055. <segment>
  5056. <pinref part="JP1" gate="A" pin="7"/>
  5057. <wire x1="17.78" y1="38.1" x2="45.72" y2="38.1" width="0.1524" layer="91"/>
  5058. <wire x1="45.72" y1="38.1" x2="45.72" y2="33.02" width="0.1524" layer="91"/>
  5059. <pinref part="JP5" gate="A" pin="3"/>
  5060. <wire x1="45.72" y1="33.02" x2="58.42" y2="33.02" width="0.1524" layer="91"/>
  5061. </segment>
  5062. </net>
  5063. <net name="N$8" class="0">
  5064. <segment>
  5065. <pinref part="JP1" gate="A" pin="8"/>
  5066. <wire x1="17.78" y1="35.56" x2="40.64" y2="35.56" width="0.1524" layer="91"/>
  5067. <wire x1="40.64" y1="35.56" x2="40.64" y2="30.48" width="0.1524" layer="91"/>
  5068. <pinref part="JP5" gate="A" pin="4"/>
  5069. <wire x1="40.64" y1="30.48" x2="58.42" y2="30.48" width="0.1524" layer="91"/>
  5070. </segment>
  5071. </net>
  5072. <net name="N$33" class="0">
  5073. <segment>
  5074. <pinref part="JP3" gate="A" pin="8"/>
  5075. <wire x1="127" y1="-53.34" x2="304.8" y2="-53.34" width="0.1524" layer="91"/>
  5076. <wire x1="304.8" y1="-53.34" x2="304.8" y2="53.34" width="0.1524" layer="91"/>
  5077. <pinref part="X3" gate="-1" pin="1A"/>
  5078. <wire x1="304.8" y1="53.34" x2="314.96" y2="53.34" width="0.1524" layer="91"/>
  5079. </segment>
  5080. </net>
  5081. <net name="N$35" class="0">
  5082. <segment>
  5083. <pinref part="JP3" gate="A" pin="4"/>
  5084. <wire x1="127" y1="-43.18" x2="251.46" y2="-43.18" width="0.1524" layer="91"/>
  5085. <wire x1="251.46" y1="-43.18" x2="251.46" y2="-10.16" width="0.1524" layer="91"/>
  5086. <pinref part="X4" gate="G$1" pin="2"/>
  5087. <wire x1="251.46" y1="-10.16" x2="261.62" y2="-10.16" width="0.1524" layer="91"/>
  5088. </segment>
  5089. </net>
  5090. <net name="N$36" class="0">
  5091. <segment>
  5092. <pinref part="JP3" gate="A" pin="5"/>
  5093. <wire x1="127" y1="-45.72" x2="254" y2="-45.72" width="0.1524" layer="91"/>
  5094. <wire x1="254" y1="-45.72" x2="254" y2="-12.7" width="0.1524" layer="91"/>
  5095. <pinref part="X4" gate="G$1" pin="3"/>
  5096. <wire x1="254" y1="-12.7" x2="261.62" y2="-12.7" width="0.1524" layer="91"/>
  5097. </segment>
  5098. </net>
  5099. <net name="N$9" class="0">
  5100. <segment>
  5101. <pinref part="JP2" gate="A" pin="2"/>
  5102. <wire x1="129.54" y1="60.96" x2="167.64" y2="60.96" width="0.1524" layer="91"/>
  5103. <wire x1="167.64" y1="60.96" x2="167.64" y2="106.68" width="0.1524" layer="91"/>
  5104. <pinref part="X2" gate="-1" pin="1A"/>
  5105. <wire x1="167.64" y1="106.68" x2="223.52" y2="106.68" width="0.1524" layer="91"/>
  5106. </segment>
  5107. </net>
  5108. <net name="N$10" class="0">
  5109. <segment>
  5110. <pinref part="JP2" gate="A" pin="3"/>
  5111. <wire x1="129.54" y1="58.42" x2="170.18" y2="58.42" width="0.1524" layer="91"/>
  5112. <wire x1="170.18" y1="58.42" x2="170.18" y2="99.06" width="0.1524" layer="91"/>
  5113. <wire x1="170.18" y1="99.06" x2="226.06" y2="99.06" width="0.1524" layer="91"/>
  5114. </segment>
  5115. </net>
  5116. <net name="N$11" class="0">
  5117. <segment>
  5118. <pinref part="X2" gate="-3" pin="1A"/>
  5119. <pinref part="R1" gate="G$1" pin="2"/>
  5120. <wire x1="223.52" y1="91.44" x2="223.52" y2="93.98" width="0.1524" layer="91"/>
  5121. <junction x="223.52" y="91.44"/>
  5122. <pinref part="R4" gate="G$1" pin="1"/>
  5123. <wire x1="223.52" y1="93.98" x2="243.84" y2="93.98" width="0.1524" layer="91"/>
  5124. <wire x1="243.84" y1="93.98" x2="243.84" y2="91.44" width="0.1524" layer="91"/>
  5125. </segment>
  5126. </net>
  5127. <net name="N$12" class="0">
  5128. <segment>
  5129. <pinref part="X2" gate="-4" pin="1A"/>
  5130. <pinref part="R2" gate="G$1" pin="2"/>
  5131. <wire x1="223.52" y1="83.82" x2="223.52" y2="86.36" width="0.1524" layer="91"/>
  5132. <junction x="223.52" y="83.82"/>
  5133. <pinref part="R3" gate="G$1" pin="1"/>
  5134. <wire x1="223.52" y1="86.36" x2="243.84" y2="86.36" width="0.1524" layer="91"/>
  5135. <wire x1="243.84" y1="86.36" x2="243.84" y2="83.82" width="0.1524" layer="91"/>
  5136. </segment>
  5137. </net>
  5138. <net name="N$16" class="0">
  5139. <segment>
  5140. <pinref part="JP2" gate="A" pin="4"/>
  5141. <wire x1="129.54" y1="55.88" x2="172.72" y2="55.88" width="0.1524" layer="91"/>
  5142. <wire x1="172.72" y1="55.88" x2="172.72" y2="91.44" width="0.1524" layer="91"/>
  5143. <pinref part="R1" gate="G$1" pin="1"/>
  5144. <wire x1="172.72" y1="91.44" x2="213.36" y2="91.44" width="0.1524" layer="91"/>
  5145. </segment>
  5146. </net>
  5147. <net name="N$17" class="0">
  5148. <segment>
  5149. <pinref part="JP2" gate="A" pin="5"/>
  5150. <wire x1="129.54" y1="53.34" x2="175.26" y2="53.34" width="0.1524" layer="91"/>
  5151. <wire x1="175.26" y1="53.34" x2="175.26" y2="83.82" width="0.1524" layer="91"/>
  5152. <pinref part="R2" gate="G$1" pin="1"/>
  5153. <wire x1="175.26" y1="83.82" x2="213.36" y2="83.82" width="0.1524" layer="91"/>
  5154. </segment>
  5155. </net>
  5156. <net name="N$14" class="0">
  5157. <segment>
  5158. <pinref part="U$1" gate="G$1" pin="P$8"/>
  5159. <pinref part="R5" gate="G$1" pin="2"/>
  5160. </segment>
  5161. </net>
  5162. <net name="N$18" class="0">
  5163. <segment>
  5164. <pinref part="U$1" gate="G$1" pin="P$6"/>
  5165. <pinref part="R6" gate="G$1" pin="2"/>
  5166. </segment>
  5167. </net>
  5168. <net name="N$19" class="0">
  5169. <segment>
  5170. <pinref part="U$1" gate="G$1" pin="P$4"/>
  5171. <pinref part="R7" gate="G$1" pin="2"/>
  5172. </segment>
  5173. </net>
  5174. <net name="N$20" class="0">
  5175. <segment>
  5176. <pinref part="U$1" gate="G$1" pin="P$2"/>
  5177. <pinref part="R8" gate="G$1" pin="2"/>
  5178. </segment>
  5179. </net>
  5180. <net name="N$21" class="0">
  5181. <segment>
  5182. <pinref part="JP2" gate="A" pin="6"/>
  5183. <pinref part="R5" gate="G$1" pin="1"/>
  5184. <wire x1="129.54" y1="50.8" x2="175.26" y2="50.8" width="0.1524" layer="91"/>
  5185. <wire x1="175.26" y1="50.8" x2="175.26" y2="48.26" width="0.1524" layer="91"/>
  5186. </segment>
  5187. </net>
  5188. <net name="N$22" class="0">
  5189. <segment>
  5190. <pinref part="JP2" gate="A" pin="7"/>
  5191. <wire x1="129.54" y1="48.26" x2="172.72" y2="48.26" width="0.1524" layer="91"/>
  5192. <wire x1="172.72" y1="48.26" x2="172.72" y2="38.1" width="0.1524" layer="91"/>
  5193. <pinref part="R6" gate="G$1" pin="1"/>
  5194. <wire x1="172.72" y1="38.1" x2="175.26" y2="38.1" width="0.1524" layer="91"/>
  5195. </segment>
  5196. </net>
  5197. <net name="N$23" class="0">
  5198. <segment>
  5199. <pinref part="JP2" gate="A" pin="8"/>
  5200. <wire x1="129.54" y1="45.72" x2="170.18" y2="45.72" width="0.1524" layer="91"/>
  5201. <wire x1="170.18" y1="45.72" x2="170.18" y2="27.94" width="0.1524" layer="91"/>
  5202. <pinref part="R7" gate="G$1" pin="1"/>
  5203. <wire x1="170.18" y1="27.94" x2="175.26" y2="27.94" width="0.1524" layer="91"/>
  5204. </segment>
  5205. </net>
  5206. <net name="N$24" class="0">
  5207. <segment>
  5208. <pinref part="JP2" gate="A" pin="9"/>
  5209. <wire x1="129.54" y1="43.18" x2="167.64" y2="43.18" width="0.1524" layer="91"/>
  5210. <wire x1="167.64" y1="43.18" x2="167.64" y2="17.78" width="0.1524" layer="91"/>
  5211. <pinref part="R8" gate="G$1" pin="1"/>
  5212. <wire x1="167.64" y1="17.78" x2="175.26" y2="17.78" width="0.1524" layer="91"/>
  5213. </segment>
  5214. </net>
  5215. <net name="N$26" class="0">
  5216. <segment>
  5217. <pinref part="U$1" gate="G$1" pin="P$15"/>
  5218. <pinref part="X5" gate="-1" pin="1A"/>
  5219. <wire x1="210.82" y1="43.18" x2="231.14" y2="43.18" width="0.1524" layer="91"/>
  5220. <wire x1="231.14" y1="43.18" x2="231.14" y2="40.64" width="0.1524" layer="91"/>
  5221. </segment>
  5222. </net>
  5223. <net name="N$28" class="0">
  5224. <segment>
  5225. <pinref part="U$1" gate="G$1" pin="P$11"/>
  5226. <pinref part="X5" gate="-3" pin="1A"/>
  5227. <wire x1="210.82" y1="22.86" x2="231.14" y2="22.86" width="0.1524" layer="91"/>
  5228. <wire x1="231.14" y1="22.86" x2="231.14" y2="25.4" width="0.1524" layer="91"/>
  5229. </segment>
  5230. </net>
  5231. <net name="N$29" class="0">
  5232. <segment>
  5233. <pinref part="U$1" gate="G$1" pin="P$9"/>
  5234. <pinref part="X5" gate="-4" pin="1A"/>
  5235. <wire x1="210.82" y1="12.7" x2="231.14" y2="12.7" width="0.1524" layer="91"/>
  5236. <wire x1="231.14" y1="12.7" x2="231.14" y2="17.78" width="0.1524" layer="91"/>
  5237. </segment>
  5238. </net>
  5239. <net name="N$31" class="0">
  5240. <segment>
  5241. <pinref part="JP3" gate="A" pin="6"/>
  5242. <wire x1="127" y1="-48.26" x2="198.12" y2="-48.26" width="0.1524" layer="91"/>
  5243. <wire x1="198.12" y1="-48.26" x2="198.12" y2="-20.32" width="0.1524" layer="91"/>
  5244. <pinref part="JP6" gate="A" pin="2"/>
  5245. <wire x1="198.12" y1="-20.32" x2="210.82" y2="-20.32" width="0.1524" layer="91"/>
  5246. </segment>
  5247. </net>
  5248. <net name="N$32" class="0">
  5249. <segment>
  5250. <pinref part="JP3" gate="A" pin="7"/>
  5251. <wire x1="127" y1="-50.8" x2="200.66" y2="-50.8" width="0.1524" layer="91"/>
  5252. <wire x1="200.66" y1="-50.8" x2="200.66" y2="-22.86" width="0.1524" layer="91"/>
  5253. <pinref part="JP6" gate="A" pin="3"/>
  5254. <wire x1="200.66" y1="-22.86" x2="210.82" y2="-22.86" width="0.1524" layer="91"/>
  5255. </segment>
  5256. </net>
  5257. <net name="N$13" class="0">
  5258. <segment>
  5259. <pinref part="U$2" gate="G$1" pin="P$8"/>
  5260. <pinref part="R9" gate="G$1" pin="2"/>
  5261. </segment>
  5262. </net>
  5263. <net name="N$15" class="0">
  5264. <segment>
  5265. <pinref part="U$2" gate="G$1" pin="P$6"/>
  5266. <pinref part="R10" gate="G$1" pin="2"/>
  5267. </segment>
  5268. </net>
  5269. <net name="N$34" class="0">
  5270. <segment>
  5271. <pinref part="U$2" gate="G$1" pin="P$4"/>
  5272. <pinref part="R11" gate="G$1" pin="2"/>
  5273. </segment>
  5274. </net>
  5275. <net name="N$37" class="0">
  5276. <segment>
  5277. <pinref part="U$2" gate="G$1" pin="P$2"/>
  5278. <pinref part="R12" gate="G$1" pin="2"/>
  5279. </segment>
  5280. </net>
  5281. <net name="N$38" class="0">
  5282. <segment>
  5283. <pinref part="JP4" gate="A" pin="2"/>
  5284. <wire x1="0" y1="-7.62" x2="25.4" y2="-7.62" width="0.1524" layer="91"/>
  5285. <wire x1="25.4" y1="-7.62" x2="25.4" y2="0" width="0.1524" layer="91"/>
  5286. <pinref part="R9" gate="G$1" pin="1"/>
  5287. </segment>
  5288. </net>
  5289. <net name="N$39" class="0">
  5290. <segment>
  5291. <pinref part="JP4" gate="A" pin="3"/>
  5292. <pinref part="R10" gate="G$1" pin="1"/>
  5293. <wire x1="0" y1="-10.16" x2="25.4" y2="-10.16" width="0.1524" layer="91"/>
  5294. </segment>
  5295. </net>
  5296. <net name="N$40" class="0">
  5297. <segment>
  5298. <pinref part="JP4" gate="A" pin="4"/>
  5299. <pinref part="R11" gate="G$1" pin="1"/>
  5300. <wire x1="0" y1="-12.7" x2="25.4" y2="-12.7" width="0.1524" layer="91"/>
  5301. <wire x1="25.4" y1="-12.7" x2="25.4" y2="-20.32" width="0.1524" layer="91"/>
  5302. </segment>
  5303. </net>
  5304. <net name="N$41" class="0">
  5305. <segment>
  5306. <pinref part="JP4" gate="A" pin="5"/>
  5307. <wire x1="0" y1="-15.24" x2="22.86" y2="-15.24" width="0.1524" layer="91"/>
  5308. <wire x1="22.86" y1="-15.24" x2="22.86" y2="-30.48" width="0.1524" layer="91"/>
  5309. <pinref part="R12" gate="G$1" pin="1"/>
  5310. <wire x1="22.86" y1="-30.48" x2="25.4" y2="-30.48" width="0.1524" layer="91"/>
  5311. </segment>
  5312. </net>
  5313. <net name="N$42" class="0">
  5314. <segment>
  5315. <pinref part="U$2" gate="G$1" pin="P$7"/>
  5316. <pinref part="U$2" gate="G$1" pin="P$5"/>
  5317. <wire x1="35.56" y1="-5.08" x2="35.56" y2="-15.24" width="0.1524" layer="91"/>
  5318. <pinref part="U$2" gate="G$1" pin="P$3"/>
  5319. <wire x1="35.56" y1="-15.24" x2="35.56" y2="-25.4" width="0.1524" layer="91"/>
  5320. <junction x="35.56" y="-15.24"/>
  5321. <pinref part="U$2" gate="G$1" pin="P$1"/>
  5322. <wire x1="35.56" y1="-25.4" x2="35.56" y2="-35.56" width="0.1524" layer="91"/>
  5323. <junction x="35.56" y="-25.4"/>
  5324. <wire x1="35.56" y1="-35.56" x2="35.56" y2="-48.26" width="0.1524" layer="91"/>
  5325. <wire x1="35.56" y1="-48.26" x2="111.76" y2="-48.26" width="0.1524" layer="91"/>
  5326. <junction x="35.56" y="-35.56"/>
  5327. <wire x1="111.76" y1="-48.26" x2="111.76" y2="-27.94" width="0.1524" layer="91"/>
  5328. <wire x1="111.76" y1="-27.94" x2="134.62" y2="-27.94" width="0.1524" layer="91"/>
  5329. <pinref part="U$1" gate="G$1" pin="P$7"/>
  5330. <pinref part="U$1" gate="G$1" pin="P$5"/>
  5331. <wire x1="185.42" y1="43.18" x2="185.42" y2="33.02" width="0.1524" layer="91"/>
  5332. <pinref part="U$1" gate="G$1" pin="P$3"/>
  5333. <wire x1="185.42" y1="33.02" x2="185.42" y2="22.86" width="0.1524" layer="91"/>
  5334. <junction x="185.42" y="33.02"/>
  5335. <pinref part="U$1" gate="G$1" pin="P$1"/>
  5336. <wire x1="185.42" y1="22.86" x2="185.42" y2="12.7" width="0.1524" layer="91"/>
  5337. <junction x="185.42" y="22.86"/>
  5338. <pinref part="R4" gate="G$1" pin="2"/>
  5339. <pinref part="R3" gate="G$1" pin="2"/>
  5340. <wire x1="254" y1="91.44" x2="254" y2="83.82" width="0.1524" layer="91"/>
  5341. <pinref part="JP3" gate="A" pin="1"/>
  5342. <wire x1="127" y1="-35.56" x2="134.62" y2="-35.56" width="0.1524" layer="91"/>
  5343. <wire x1="134.62" y1="-35.56" x2="195.58" y2="-35.56" width="0.1524" layer="91"/>
  5344. <wire x1="185.42" y1="-35.56" x2="195.58" y2="-35.56" width="0.1524" layer="91"/>
  5345. <wire x1="195.58" y1="-35.56" x2="256.54" y2="-35.56" width="0.1524" layer="91"/>
  5346. <wire x1="256.54" y1="-35.56" x2="302.26" y2="-35.56" width="0.1524" layer="91"/>
  5347. <wire x1="302.26" y1="-35.56" x2="302.26" y2="38.1" width="0.1524" layer="91"/>
  5348. <pinref part="X3" gate="-3" pin="1A"/>
  5349. <wire x1="302.26" y1="38.1" x2="314.96" y2="38.1" width="0.1524" layer="91"/>
  5350. <pinref part="X4" gate="G$1" pin="5"/>
  5351. <wire x1="261.62" y1="-17.78" x2="256.54" y2="-17.78" width="0.1524" layer="91"/>
  5352. <wire x1="256.54" y1="-17.78" x2="256.54" y2="-35.56" width="0.1524" layer="91"/>
  5353. <junction x="256.54" y="-35.56"/>
  5354. <wire x1="254" y1="83.82" x2="254" y2="38.1" width="0.1524" layer="91"/>
  5355. <wire x1="254" y1="38.1" x2="302.26" y2="38.1" width="0.1524" layer="91"/>
  5356. <junction x="254" y="83.82"/>
  5357. <junction x="302.26" y="38.1"/>
  5358. <wire x1="185.42" y1="12.7" x2="185.42" y2="-35.56" width="0.1524" layer="91"/>
  5359. <junction x="185.42" y="12.7"/>
  5360. <junction x="185.42" y="-35.56"/>
  5361. <pinref part="JP6" gate="A" pin="1"/>
  5362. <wire x1="210.82" y1="-17.78" x2="195.58" y2="-17.78" width="0.1524" layer="91"/>
  5363. <wire x1="195.58" y1="-17.78" x2="195.58" y2="-35.56" width="0.1524" layer="91"/>
  5364. <junction x="195.58" y="-35.56"/>
  5365. <wire x1="134.62" y1="-27.94" x2="134.62" y2="-35.56" width="0.1524" layer="91"/>
  5366. <junction x="134.62" y="-35.56"/>
  5367. </segment>
  5368. </net>
  5369. <net name="N$43" class="0">
  5370. <segment>
  5371. <pinref part="U$2" gate="G$1" pin="P$15"/>
  5372. <pinref part="X6" gate="-1" pin="1A"/>
  5373. <wire x1="60.96" y1="-5.08" x2="88.9" y2="-5.08" width="0.1524" layer="91"/>
  5374. </segment>
  5375. </net>
  5376. <net name="N$44" class="0">
  5377. <segment>
  5378. <pinref part="U$2" gate="G$1" pin="P$13"/>
  5379. <wire x1="60.96" y1="-15.24" x2="78.74" y2="-15.24" width="0.1524" layer="91"/>
  5380. <wire x1="78.74" y1="-15.24" x2="78.74" y2="-12.7" width="0.1524" layer="91"/>
  5381. <pinref part="X6" gate="-2" pin="1A"/>
  5382. <wire x1="78.74" y1="-12.7" x2="88.9" y2="-12.7" width="0.1524" layer="91"/>
  5383. </segment>
  5384. </net>
  5385. <net name="N$45" class="0">
  5386. <segment>
  5387. <pinref part="U$2" gate="G$1" pin="P$11"/>
  5388. <wire x1="60.96" y1="-25.4" x2="81.28" y2="-25.4" width="0.1524" layer="91"/>
  5389. <wire x1="81.28" y1="-25.4" x2="81.28" y2="-20.32" width="0.1524" layer="91"/>
  5390. <pinref part="X6" gate="-3" pin="1A"/>
  5391. <wire x1="81.28" y1="-20.32" x2="88.9" y2="-20.32" width="0.1524" layer="91"/>
  5392. </segment>
  5393. </net>
  5394. <net name="N$46" class="0">
  5395. <segment>
  5396. <pinref part="U$2" gate="G$1" pin="P$9"/>
  5397. <wire x1="60.96" y1="-35.56" x2="83.82" y2="-35.56" width="0.1524" layer="91"/>
  5398. <wire x1="83.82" y1="-35.56" x2="83.82" y2="-27.94" width="0.1524" layer="91"/>
  5399. <pinref part="X6" gate="-4" pin="1A"/>
  5400. <wire x1="83.82" y1="-27.94" x2="88.9" y2="-27.94" width="0.1524" layer="91"/>
  5401. </segment>
  5402. </net>
  5403. <net name="N$47" class="0">
  5404. <segment>
  5405. <pinref part="U$2" gate="G$1" pin="P$10"/>
  5406. <pinref part="U$2" gate="G$1" pin="P$12"/>
  5407. <wire x1="60.96" y1="-30.48" x2="60.96" y2="-20.32" width="0.1524" layer="91"/>
  5408. <pinref part="U$2" gate="G$1" pin="P$14"/>
  5409. <wire x1="60.96" y1="-20.32" x2="60.96" y2="-10.16" width="0.1524" layer="91"/>
  5410. <junction x="60.96" y="-20.32"/>
  5411. <pinref part="U$2" gate="G$1" pin="P$16"/>
  5412. <wire x1="60.96" y1="-10.16" x2="60.96" y2="0" width="0.1524" layer="91"/>
  5413. <junction x="60.96" y="-10.16"/>
  5414. <wire x1="60.96" y1="0" x2="60.96" y2="2.54" width="0.1524" layer="91"/>
  5415. <wire x1="60.96" y1="2.54" x2="210.82" y2="2.54" width="0.1524" layer="91"/>
  5416. <junction x="60.96" y="0"/>
  5417. <wire x1="210.82" y1="10.16" x2="215.9" y2="10.16" width="0.1524" layer="91"/>
  5418. <pinref part="X3" gate="-2" pin="1A"/>
  5419. <wire x1="215.9" y1="10.16" x2="307.34" y2="10.16" width="0.1524" layer="91"/>
  5420. <wire x1="307.34" y1="45.72" x2="314.96" y2="45.72" width="0.1524" layer="91"/>
  5421. <wire x1="307.34" y1="10.16" x2="307.34" y2="45.72" width="0.1524" layer="91"/>
  5422. <wire x1="210.82" y1="2.54" x2="210.82" y2="10.16" width="0.1524" layer="91"/>
  5423. <pinref part="U$1" gate="G$1" pin="P$16"/>
  5424. <wire x1="215.9" y1="10.16" x2="215.9" y2="17.78" width="0.1524" layer="91"/>
  5425. <wire x1="215.9" y1="17.78" x2="215.9" y2="27.94" width="0.1524" layer="91"/>
  5426. <wire x1="215.9" y1="27.94" x2="215.9" y2="38.1" width="0.1524" layer="91"/>
  5427. <wire x1="215.9" y1="38.1" x2="215.9" y2="48.26" width="0.1524" layer="91"/>
  5428. <wire x1="215.9" y1="48.26" x2="210.82" y2="48.26" width="0.1524" layer="91"/>
  5429. <junction x="215.9" y="10.16"/>
  5430. <pinref part="U$1" gate="G$1" pin="P$14"/>
  5431. <wire x1="210.82" y1="38.1" x2="215.9" y2="38.1" width="0.1524" layer="91"/>
  5432. <junction x="215.9" y="38.1"/>
  5433. <pinref part="U$1" gate="G$1" pin="P$10"/>
  5434. <wire x1="210.82" y1="17.78" x2="215.9" y2="17.78" width="0.1524" layer="91"/>
  5435. <junction x="215.9" y="17.78"/>
  5436. <pinref part="U$1" gate="G$1" pin="P$12"/>
  5437. <wire x1="210.82" y1="27.94" x2="215.9" y2="27.94" width="0.1524" layer="91"/>
  5438. <junction x="215.9" y="27.94"/>
  5439. </segment>
  5440. </net>
  5441. <net name="N$48" class="0">
  5442. <segment>
  5443. <pinref part="JP2" gate="A" pin="1"/>
  5444. <wire x1="129.54" y1="63.5" x2="144.78" y2="63.5" width="0.1524" layer="91"/>
  5445. <wire x1="144.78" y1="63.5" x2="144.78" y2="165.1" width="0.1524" layer="91"/>
  5446. <pinref part="X7" gate="-1" pin="1A"/>
  5447. <wire x1="144.78" y1="165.1" x2="287.02" y2="165.1" width="0.1524" layer="91"/>
  5448. </segment>
  5449. </net>
  5450. <net name="N$49" class="0">
  5451. <segment>
  5452. <pinref part="JP2" gate="A" pin="10"/>
  5453. <wire x1="129.54" y1="40.64" x2="147.32" y2="40.64" width="0.1524" layer="91"/>
  5454. <wire x1="147.32" y1="40.64" x2="147.32" y2="157.48" width="0.1524" layer="91"/>
  5455. <pinref part="X7" gate="-2" pin="1A"/>
  5456. <wire x1="147.32" y1="157.48" x2="287.02" y2="157.48" width="0.1524" layer="91"/>
  5457. </segment>
  5458. </net>
  5459. <net name="N$50" class="0">
  5460. <segment>
  5461. <pinref part="JP3" gate="A" pin="2"/>
  5462. <wire x1="127" y1="-38.1" x2="149.86" y2="-38.1" width="0.1524" layer="91"/>
  5463. <wire x1="149.86" y1="-38.1" x2="149.86" y2="149.86" width="0.1524" layer="91"/>
  5464. <pinref part="X7" gate="-3" pin="1A"/>
  5465. <wire x1="149.86" y1="149.86" x2="287.02" y2="149.86" width="0.1524" layer="91"/>
  5466. </segment>
  5467. </net>
  5468. <net name="N$51" class="0">
  5469. <segment>
  5470. <pinref part="JP3" gate="A" pin="3"/>
  5471. <wire x1="127" y1="-40.64" x2="152.4" y2="-40.64" width="0.1524" layer="91"/>
  5472. <wire x1="152.4" y1="-40.64" x2="152.4" y2="142.24" width="0.1524" layer="91"/>
  5473. <pinref part="X7" gate="-4" pin="1A"/>
  5474. <wire x1="152.4" y1="142.24" x2="287.02" y2="142.24" width="0.1524" layer="91"/>
  5475. </segment>
  5476. </net>
  5477. <net name="N$52" class="0">
  5478. <segment>
  5479. <pinref part="JP4" gate="A" pin="1"/>
  5480. <wire x1="0" y1="-5.08" x2="12.7" y2="-5.08" width="0.1524" layer="91"/>
  5481. <wire x1="12.7" y1="-5.08" x2="12.7" y2="12.7" width="0.1524" layer="91"/>
  5482. <wire x1="12.7" y1="12.7" x2="154.94" y2="12.7" width="0.1524" layer="91"/>
  5483. <wire x1="154.94" y1="12.7" x2="154.94" y2="134.62" width="0.1524" layer="91"/>
  5484. <pinref part="X7" gate="-5" pin="1A"/>
  5485. <wire x1="154.94" y1="134.62" x2="287.02" y2="134.62" width="0.1524" layer="91"/>
  5486. </segment>
  5487. </net>
  5488. <net name="N$53" class="0">
  5489. <segment>
  5490. <pinref part="JP4" gate="A" pin="6"/>
  5491. <wire x1="0" y1="-17.78" x2="15.24" y2="-17.78" width="0.1524" layer="91"/>
  5492. <wire x1="15.24" y1="-17.78" x2="15.24" y2="10.16" width="0.1524" layer="91"/>
  5493. <wire x1="15.24" y1="10.16" x2="157.48" y2="10.16" width="0.1524" layer="91"/>
  5494. <pinref part="X7" gate="-6" pin="1A"/>
  5495. <wire x1="157.48" y1="10.16" x2="157.48" y2="127" width="0.1524" layer="91"/>
  5496. <wire x1="157.48" y1="127" x2="287.02" y2="127" width="0.1524" layer="91"/>
  5497. </segment>
  5498. </net>
  5499. <net name="N$54" class="0">
  5500. <segment>
  5501. <pinref part="JP4" gate="A" pin="7"/>
  5502. <wire x1="0" y1="-20.32" x2="17.78" y2="-20.32" width="0.1524" layer="91"/>
  5503. <wire x1="17.78" y1="-20.32" x2="17.78" y2="7.62" width="0.1524" layer="91"/>
  5504. <wire x1="17.78" y1="7.62" x2="160.02" y2="7.62" width="0.1524" layer="91"/>
  5505. <wire x1="160.02" y1="7.62" x2="160.02" y2="119.38" width="0.1524" layer="91"/>
  5506. <pinref part="X7" gate="-7" pin="1A"/>
  5507. <wire x1="160.02" y1="119.38" x2="287.02" y2="119.38" width="0.1524" layer="91"/>
  5508. </segment>
  5509. </net>
  5510. <net name="N$55" class="0">
  5511. <segment>
  5512. <pinref part="JP4" gate="A" pin="8"/>
  5513. <wire x1="0" y1="-22.86" x2="20.32" y2="-22.86" width="0.1524" layer="91"/>
  5514. <wire x1="20.32" y1="-22.86" x2="20.32" y2="5.08" width="0.1524" layer="91"/>
  5515. <wire x1="20.32" y1="5.08" x2="162.56" y2="5.08" width="0.1524" layer="91"/>
  5516. <wire x1="162.56" y1="5.08" x2="162.56" y2="111.76" width="0.1524" layer="91"/>
  5517. <wire x1="162.56" y1="111.76" x2="287.02" y2="111.76" width="0.1524" layer="91"/>
  5518. <wire x1="289.56" y1="111.76" x2="287.02" y2="111.76" width="0.1524" layer="91"/>
  5519. </segment>
  5520. </net>
  5521. <net name="N$25" class="0">
  5522. <segment>
  5523. <pinref part="U$1" gate="G$1" pin="P$13"/>
  5524. <pinref part="X5" gate="-2" pin="1A"/>
  5525. <wire x1="210.82" y1="33.02" x2="231.14" y2="33.02" width="0.1524" layer="91"/>
  5526. </segment>
  5527. </net>
  5528. </nets>
  5529. </sheet>
  5530. </sheets>
  5531. </schematic>
  5532. </drawing>
  5533. </eagle>