Dialer.s#8 341 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE eagle SYSTEM "eagle.dtd">
  3. <eagle version="7.2.0">
  4. <drawing>
  5. <settings>
  6. <setting alwaysvectorfont="no"/>
  7. <setting verticaltext="up"/>
  8. </settings>
  9. <grid distance="50" unitdist="mil" unit="mil" style="lines" multiple="1" display="yes" altdistance="0.01" altunitdist="inch" altunit="inch"/>
  10. <layers>
  11. <layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
  12. <layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
  13. <layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
  14. <layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
  15. <layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
  16. <layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
  17. <layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
  18. <layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
  19. <layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
  20. <layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
  21. <layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
  22. <layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
  23. <layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
  24. <layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
  25. <layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
  26. <layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
  27. <layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
  28. <layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
  29. <layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
  30. <layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
  31. <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
  32. <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
  33. <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
  34. <layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
  35. <layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
  36. <layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
  37. <layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
  38. <layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
  39. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
  40. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
  41. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
  42. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
  43. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
  44. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
  45. <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
  46. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
  47. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
  48. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
  49. <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
  50. <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
  51. <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
  52. <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
  53. <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
  54. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
  55. <layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
  56. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
  57. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
  58. <layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
  59. <layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
  60. <layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
  61. <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
  62. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  63. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  64. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  65. <layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
  66. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  67. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  68. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  69. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  70. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  71. <layer number="99" name="SpiceOrder" color="5" fill="1" visible="yes" active="yes"/>
  72. </layers>
  73. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  74. <libraries>
  75. <library name="stm8s103">
  76. <description>&lt;b&gt;STM8S103 in TSSOP-20, SO-20 and LQFP32&lt;/b&gt;
  77. &lt;br /&gt;
  78. Source:
  79. &lt;a href="http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00226640.pdf"&gt;STM8S103K3, STM8S103F3, STM8S103F2 Datasheet&lt;/a&gt;</description>
  80. <packages>
  81. <package name="TSSOP20">
  82. <description>&lt;b&gt;Thin Shrink Small Outline Plastic 20&lt;/b&gt;&lt;p&gt;
  83. MAX3223-MAX3243.pdf</description>
  84. <wire x1="-3.1646" y1="-2.2828" x2="3.1646" y2="-2.2828" width="0.1524" layer="21"/>
  85. <wire x1="3.1646" y1="2.2828" x2="3.1646" y2="-2.2828" width="0.1524" layer="21"/>
  86. <wire x1="3.1646" y1="2.2828" x2="-3.1646" y2="2.2828" width="0.1524" layer="21"/>
  87. <wire x1="-3.1646" y1="-2.2828" x2="-3.1646" y2="2.2828" width="0.1524" layer="21"/>
  88. <wire x1="-2.936" y1="-2.0542" x2="2.936" y2="-2.0542" width="0.0508" layer="21"/>
  89. <wire x1="2.936" y1="2.0542" x2="2.936" y2="-2.0542" width="0.0508" layer="21"/>
  90. <wire x1="2.936" y1="2.0542" x2="-2.936" y2="2.0542" width="0.0508" layer="21"/>
  91. <wire x1="-2.936" y1="-2.0542" x2="-2.936" y2="2.0542" width="0.0508" layer="21"/>
  92. <circle x="-2.2756" y="-1.2192" radius="0.4572" width="0.1524" layer="21"/>
  93. <smd name="1" x="-2.925" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  94. <smd name="2" x="-2.275" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  95. <smd name="3" x="-1.625" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  96. <smd name="4" x="-0.975" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  97. <smd name="5" x="-0.325" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  98. <smd name="6" x="0.325" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  99. <smd name="7" x="0.975" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  100. <smd name="8" x="1.625" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  101. <smd name="9" x="2.275" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  102. <smd name="10" x="2.925" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  103. <smd name="11" x="2.925" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  104. <smd name="12" x="2.275" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  105. <smd name="13" x="1.625" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  106. <smd name="14" x="0.975" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  107. <smd name="15" x="0.325" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  108. <smd name="16" x="-0.325" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  109. <smd name="17" x="-0.975" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  110. <smd name="18" x="-1.625" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  111. <smd name="19" x="-2.275" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  112. <smd name="20" x="-2.925" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
  113. <text x="-3.5456" y="-2.0828" size="1.016" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  114. <text x="4.5362" y="-2.0828" size="1.016" layer="27" ratio="10" rot="R90">&gt;VALUE</text>
  115. <rectangle x1="-3.0266" y1="-3.121" x2="-2.8234" y2="-2.2828" layer="51"/>
  116. <rectangle x1="-2.3766" y1="-3.121" x2="-2.1734" y2="-2.2828" layer="51"/>
  117. <rectangle x1="-1.7266" y1="-3.121" x2="-1.5234" y2="-2.2828" layer="51"/>
  118. <rectangle x1="-1.0766" y1="-3.121" x2="-0.8734" y2="-2.2828" layer="51"/>
  119. <rectangle x1="-0.4266" y1="-3.121" x2="-0.2234" y2="-2.2828" layer="51"/>
  120. <rectangle x1="0.2234" y1="-3.121" x2="0.4266" y2="-2.2828" layer="51"/>
  121. <rectangle x1="0.8734" y1="-3.121" x2="1.0766" y2="-2.2828" layer="51"/>
  122. <rectangle x1="1.5234" y1="-3.121" x2="1.7266" y2="-2.2828" layer="51"/>
  123. <rectangle x1="2.1734" y1="-3.121" x2="2.3766" y2="-2.2828" layer="51"/>
  124. <rectangle x1="2.8234" y1="-3.121" x2="3.0266" y2="-2.2828" layer="51"/>
  125. <rectangle x1="2.8234" y1="2.2828" x2="3.0266" y2="3.121" layer="51"/>
  126. <rectangle x1="2.1734" y1="2.2828" x2="2.3766" y2="3.121" layer="51"/>
  127. <rectangle x1="1.5234" y1="2.2828" x2="1.7266" y2="3.121" layer="51"/>
  128. <rectangle x1="0.8734" y1="2.2828" x2="1.0766" y2="3.121" layer="51"/>
  129. <rectangle x1="0.2234" y1="2.2828" x2="0.4266" y2="3.121" layer="51"/>
  130. <rectangle x1="-0.4266" y1="2.2828" x2="-0.2234" y2="3.121" layer="51"/>
  131. <rectangle x1="-1.0766" y1="2.2828" x2="-0.8734" y2="3.121" layer="51"/>
  132. <rectangle x1="-1.7266" y1="2.2828" x2="-1.5234" y2="3.121" layer="51"/>
  133. <rectangle x1="-2.3766" y1="2.2828" x2="-2.1734" y2="3.121" layer="51"/>
  134. <rectangle x1="-3.0266" y1="2.2828" x2="-2.8234" y2="3.121" layer="51"/>
  135. </package>
  136. <package name="SO20W">
  137. <description>&lt;b&gt;SMALL OUTLINE INTEGRATED CIRCUIT&lt;/b&gt;&lt;p&gt;
  138. wide body 7.5 mm/JEDEC MS-013AC</description>
  139. <wire x1="-6.895" y1="5.9" x2="6.895" y2="5.9" width="0.1998" layer="39"/>
  140. <wire x1="6.895" y1="-5.9" x2="-6.895" y2="-5.9" width="0.1998" layer="39"/>
  141. <wire x1="-6.895" y1="-5.9" x2="-6.895" y2="5.9" width="0.1998" layer="39"/>
  142. <wire x1="6.46" y1="-3.7" x2="-6.46" y2="-3.7" width="0.2032" layer="51"/>
  143. <wire x1="-6.46" y1="-3.7" x2="-6.46" y2="-3.2" width="0.2032" layer="51"/>
  144. <wire x1="-6.46" y1="-3.2" x2="-6.46" y2="3.7" width="0.2032" layer="51"/>
  145. <wire x1="-6.46" y1="3.7" x2="6.46" y2="3.7" width="0.2032" layer="51"/>
  146. <wire x1="6.46" y1="-3.2" x2="-6.46" y2="-3.2" width="0.2032" layer="51"/>
  147. <wire x1="6.46" y1="3.7" x2="6.46" y2="-3.2" width="0.2032" layer="51"/>
  148. <wire x1="6.46" y1="-3.2" x2="6.46" y2="-3.7" width="0.2032" layer="51"/>
  149. <wire x1="6.895" y1="5.9" x2="6.895" y2="-5.9" width="0.1998" layer="39"/>
  150. <smd name="2" x="-4.445" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  151. <smd name="13" x="3.175" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  152. <smd name="1" x="-5.715" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  153. <smd name="3" x="-3.175" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  154. <smd name="4" x="-1.905" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  155. <smd name="14" x="1.905" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  156. <smd name="12" x="4.445" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  157. <smd name="11" x="5.715" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  158. <smd name="6" x="0.635" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  159. <smd name="9" x="4.445" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  160. <smd name="5" x="-0.635" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  161. <smd name="7" x="1.905" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  162. <smd name="10" x="5.715" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  163. <smd name="8" x="3.175" y="-4.6" dx="0.6" dy="2.2" layer="1"/>
  164. <smd name="15" x="0.635" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  165. <smd name="16" x="-0.635" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  166. <smd name="17" x="-1.905" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  167. <smd name="18" x="-3.175" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  168. <smd name="19" x="-4.445" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  169. <smd name="20" x="-5.715" y="4.6" dx="0.6" dy="2.2" layer="1"/>
  170. <text x="-5.715" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  171. <text x="-5.715" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  172. <rectangle x1="-5.9601" y1="-5.32" x2="-5.4699" y2="-3.8001" layer="51"/>
  173. <rectangle x1="-4.6901" y1="-5.32" x2="-4.1999" y2="-3.8001" layer="51"/>
  174. <rectangle x1="-3.4201" y1="-5.32" x2="-2.9299" y2="-3.8001" layer="51"/>
  175. <rectangle x1="-2.1501" y1="-5.32" x2="-1.6599" y2="-3.8001" layer="51"/>
  176. <rectangle x1="-0.8801" y1="-5.32" x2="-0.3899" y2="-3.8001" layer="51"/>
  177. <rectangle x1="0.3899" y1="-5.32" x2="0.8801" y2="-3.8001" layer="51"/>
  178. <rectangle x1="1.6599" y1="-5.32" x2="2.1501" y2="-3.8001" layer="51"/>
  179. <rectangle x1="2.9299" y1="-5.32" x2="3.4201" y2="-3.8001" layer="51"/>
  180. <rectangle x1="4.1999" y1="-5.32" x2="4.6901" y2="-3.8001" layer="51"/>
  181. <rectangle x1="5.4699" y1="-5.32" x2="5.9601" y2="-3.8001" layer="51"/>
  182. <rectangle x1="5.4699" y1="3.8001" x2="5.9601" y2="5.32" layer="51"/>
  183. <rectangle x1="4.1999" y1="3.8001" x2="4.6901" y2="5.32" layer="51"/>
  184. <rectangle x1="2.9299" y1="3.8001" x2="3.4201" y2="5.32" layer="51"/>
  185. <rectangle x1="1.6599" y1="3.8001" x2="2.1501" y2="5.32" layer="51"/>
  186. <rectangle x1="0.3899" y1="3.8001" x2="0.8801" y2="5.32" layer="51"/>
  187. <rectangle x1="-0.8801" y1="3.8001" x2="-0.3899" y2="5.32" layer="51"/>
  188. <rectangle x1="-2.1501" y1="3.8001" x2="-1.6599" y2="5.32" layer="51"/>
  189. <rectangle x1="-3.4201" y1="3.8001" x2="-2.9299" y2="5.32" layer="51"/>
  190. <rectangle x1="-4.6901" y1="3.8001" x2="-4.1999" y2="5.32" layer="51"/>
  191. <rectangle x1="-5.9601" y1="3.8001" x2="-5.4699" y2="5.32" layer="51"/>
  192. </package>
  193. </packages>
  194. <symbols>
  195. <symbol name="STM8S103F">
  196. <wire x1="-33.02" y1="27.94" x2="35.56" y2="27.94" width="0.254" layer="94"/>
  197. <wire x1="35.56" y1="27.94" x2="35.56" y2="-30.48" width="0.254" layer="94"/>
  198. <wire x1="35.56" y1="-30.48" x2="-33.02" y2="-30.48" width="0.254" layer="94"/>
  199. <wire x1="-33.02" y1="-30.48" x2="-33.02" y2="27.94" width="0.254" layer="94"/>
  200. <pin name="NRST" x="-38.1" y="22.86" length="middle" function="dot"/>
  201. <pin name="VDDA" x="-38.1" y="17.78" length="middle" direction="pwr"/>
  202. <pin name="PA0/USART1_CTS/ADC_IN0" x="-38.1" y="15.24" length="middle"/>
  203. <pin name="PA1/USART1_RTS/ADC_IN1" x="-38.1" y="7.62" length="middle"/>
  204. <pin name="PA3/USART1_RX/ADC_IN3" x="-38.1" y="5.08" length="middle"/>
  205. <pin name="PA2/USART1_TX/ADC_IN2" x="-38.1" y="-2.54" length="middle"/>
  206. <pin name="PA10" x="40.64" y="25.4" length="middle" rot="R180"/>
  207. <pin name="PA13/SWDIO" x="40.64" y="22.86" length="middle" rot="R180"/>
  208. <pin name="PA14/SWD_CLK" x="40.64" y="20.32" length="middle" rot="R180"/>
  209. <pin name="BOOT0" x="40.64" y="17.78" length="middle" rot="R180"/>
  210. <pin name="PF0-OSC_IN" x="40.64" y="15.24" length="middle" function="clk" rot="R180"/>
  211. <pin name="PF1-OSC_OUT" x="40.64" y="12.7" length="middle" function="clk" rot="R180"/>
  212. <pin name="PA4/SPI1_NSS/ADC_IN4" x="40.64" y="5.08" length="middle" rot="R180"/>
  213. <pin name="PA6/SPI_MISO/ADC_IN6" x="40.64" y="-2.54" length="middle" rot="R180"/>
  214. <pin name="PA5/SPI1_SCK/ADC_IN5" x="40.64" y="-5.08" length="middle" rot="R180"/>
  215. <pin name="PA7/SPI_MOSI/ADC_IN7" x="40.64" y="-15.24" length="middle" rot="R180"/>
  216. <pin name="PB0/ADC_IN8" x="40.64" y="-17.78" length="middle" rot="R180"/>
  217. <pin name="VSS" x="40.64" y="-20.32" length="middle" direction="pwr" rot="R180"/>
  218. <pin name="VDD" x="40.64" y="-22.86" length="middle" direction="pwr" rot="R180"/>
  219. <pin name="PA9" x="40.64" y="-25.4" length="middle" rot="R180"/>
  220. <text x="-33.02" y="27.94" size="1.27" layer="96">&gt;VALUE</text>
  221. <text x="-33.02" y="30.48" size="1.27" layer="95">&gt;NAME</text>
  222. </symbol>
  223. </symbols>
  224. <devicesets>
  225. <deviceset name="STM8S103F*" prefix="IC">
  226. <description>STM8S103F*</description>
  227. <gates>
  228. <gate name="G$1" symbol="STM8S103F" x="0" y="0"/>
  229. </gates>
  230. <devices>
  231. <device name="P" package="TSSOP20">
  232. <connects>
  233. <connect gate="G$1" pin="BOOT0" pad="1"/>
  234. <connect gate="G$1" pin="NRST" pad="4"/>
  235. <connect gate="G$1" pin="PA0/USART1_CTS/ADC_IN0" pad="6"/>
  236. <connect gate="G$1" pin="PA1/USART1_RTS/ADC_IN1" pad="7"/>
  237. <connect gate="G$1" pin="PA10" pad="18"/>
  238. <connect gate="G$1" pin="PA13/SWDIO" pad="19"/>
  239. <connect gate="G$1" pin="PA14/SWD_CLK" pad="20"/>
  240. <connect gate="G$1" pin="PA2/USART1_TX/ADC_IN2" pad="8"/>
  241. <connect gate="G$1" pin="PA3/USART1_RX/ADC_IN3" pad="9"/>
  242. <connect gate="G$1" pin="PA4/SPI1_NSS/ADC_IN4" pad="10"/>
  243. <connect gate="G$1" pin="PA5/SPI1_SCK/ADC_IN5" pad="11"/>
  244. <connect gate="G$1" pin="PA6/SPI_MISO/ADC_IN6" pad="12"/>
  245. <connect gate="G$1" pin="PA7/SPI_MOSI/ADC_IN7" pad="13"/>
  246. <connect gate="G$1" pin="PA9" pad="17"/>
  247. <connect gate="G$1" pin="PB0/ADC_IN8" pad="14"/>
  248. <connect gate="G$1" pin="PF0-OSC_IN" pad="2"/>
  249. <connect gate="G$1" pin="PF1-OSC_OUT" pad="3"/>
  250. <connect gate="G$1" pin="VDD" pad="16"/>
  251. <connect gate="G$1" pin="VDDA" pad="5"/>
  252. <connect gate="G$1" pin="VSS" pad="15"/>
  253. </connects>
  254. <technologies>
  255. <technology name=""/>
  256. </technologies>
  257. </device>
  258. <device name="M" package="SO20W">
  259. <connects>
  260. <connect gate="G$1" pin="BOOT0" pad="1"/>
  261. <connect gate="G$1" pin="NRST" pad="4"/>
  262. <connect gate="G$1" pin="PA0/USART1_CTS/ADC_IN0" pad="6"/>
  263. <connect gate="G$1" pin="PA1/USART1_RTS/ADC_IN1" pad="7"/>
  264. <connect gate="G$1" pin="PA10" pad="18"/>
  265. <connect gate="G$1" pin="PA13/SWDIO" pad="19"/>
  266. <connect gate="G$1" pin="PA14/SWD_CLK" pad="20"/>
  267. <connect gate="G$1" pin="PA2/USART1_TX/ADC_IN2" pad="8"/>
  268. <connect gate="G$1" pin="PA3/USART1_RX/ADC_IN3" pad="9"/>
  269. <connect gate="G$1" pin="PA4/SPI1_NSS/ADC_IN4" pad="10"/>
  270. <connect gate="G$1" pin="PA5/SPI1_SCK/ADC_IN5" pad="11"/>
  271. <connect gate="G$1" pin="PA6/SPI_MISO/ADC_IN6" pad="12"/>
  272. <connect gate="G$1" pin="PA7/SPI_MOSI/ADC_IN7" pad="13"/>
  273. <connect gate="G$1" pin="PA9" pad="17"/>
  274. <connect gate="G$1" pin="PB0/ADC_IN8" pad="14"/>
  275. <connect gate="G$1" pin="PF0-OSC_IN" pad="2"/>
  276. <connect gate="G$1" pin="PF1-OSC_OUT" pad="3"/>
  277. <connect gate="G$1" pin="VDD" pad="16"/>
  278. <connect gate="G$1" pin="VDDA" pad="5"/>
  279. <connect gate="G$1" pin="VSS" pad="15"/>
  280. </connects>
  281. <technologies>
  282. <technology name=""/>
  283. </technologies>
  284. </device>
  285. </devices>
  286. </deviceset>
  287. </devicesets>
  288. </library>
  289. <library name="crystal">
  290. <description>&lt;b&gt;Crystals and Crystal Resonators&lt;/b&gt;&lt;p&gt;
  291. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  292. <packages>
  293. <package name="UM1">
  294. <description>&lt;b&gt;Crystal Filter&lt;/b&gt;&lt;p&gt;
  295. Source: www.ilsiamerica.com .. C1 IXF Series.pdf</description>
  296. <wire x1="-2.396" y1="-1.411" x2="2.421" y2="-1.411" width="0.4064" layer="21"/>
  297. <wire x1="-2.421" y1="1.361" x2="2.396" y2="1.361" width="0.4064" layer="21"/>
  298. <wire x1="-2.396" y1="-0.903" x2="2.421" y2="-0.903" width="0.1524" layer="21"/>
  299. <wire x1="2.396" y1="0.853" x2="-2.421" y2="0.853" width="0.1524" layer="21"/>
  300. <wire x1="2.396" y1="0.853" x2="2.421" y2="-0.903" width="0.1524" layer="21" curve="-180"/>
  301. <wire x1="2.396" y1="1.361" x2="2.421" y2="-1.411" width="0.4064" layer="21" curve="-180"/>
  302. <wire x1="-2.421" y1="1.361" x2="-2.396" y2="-1.411" width="0.4064" layer="21" curve="180"/>
  303. <wire x1="-2.421" y1="0.853" x2="-2.396" y2="-0.903" width="0.1524" layer="21" curve="180"/>
  304. <pad name="1" x="-1.875" y="0" drill="0.7" diameter="1.2"/>
  305. <pad name="2" x="-0.027" y="0" drill="0.7" diameter="1.2"/>
  306. <pad name="3" x="1.875" y="0" drill="0.7" diameter="1.2"/>
  307. <text x="-3.81" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  308. <text x="-3.81" y="-3.175" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  309. </package>
  310. </packages>
  311. <symbols>
  312. <symbol name="CRYSTAL-FILTER-3-POL">
  313. <wire x1="1.016" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  314. <wire x1="-2.54" y1="0" x2="-1.016" y2="0" width="0.1524" layer="94"/>
  315. <wire x1="-0.381" y1="1.524" x2="-0.381" y2="-1.524" width="0.254" layer="94"/>
  316. <wire x1="-0.381" y1="-1.524" x2="0.381" y2="-1.524" width="0.254" layer="94"/>
  317. <wire x1="0.381" y1="-1.524" x2="0.381" y2="1.524" width="0.254" layer="94"/>
  318. <wire x1="0.381" y1="1.524" x2="-0.381" y2="1.524" width="0.254" layer="94"/>
  319. <wire x1="1.016" y1="1.778" x2="1.016" y2="-1.778" width="0.254" layer="94"/>
  320. <wire x1="-1.016" y1="1.778" x2="-1.016" y2="-1.778" width="0.254" layer="94"/>
  321. <wire x1="-1.778" y1="1.905" x2="-1.778" y2="2.54" width="0.1524" layer="94"/>
  322. <wire x1="-1.778" y1="2.54" x2="1.778" y2="2.54" width="0.1524" layer="94"/>
  323. <wire x1="1.778" y1="2.54" x2="1.778" y2="1.905" width="0.1524" layer="94"/>
  324. <wire x1="1.778" y1="-1.905" x2="1.778" y2="-2.54" width="0.1524" layer="94"/>
  325. <wire x1="-1.778" y1="-2.54" x2="1.778" y2="-2.54" width="0.1524" layer="94"/>
  326. <wire x1="-1.778" y1="-2.54" x2="-1.778" y2="-1.905" width="0.1524" layer="94"/>
  327. <text x="2.54" y="1.016" size="1.778" layer="95">&gt;NAME</text>
  328. <text x="2.54" y="-2.54" size="1.778" layer="96">&gt;VALUE</text>
  329. <text x="-2.159" y="-1.143" size="0.8636" layer="93">1</text>
  330. <text x="-1.016" y="-3.683" size="0.8636" layer="93">2</text>
  331. <text x="1.524" y="-1.143" size="0.8636" layer="93">3</text>
  332. <pin name="3" x="2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1" rot="R270"/>
  333. <pin name="1" x="-2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1"/>
  334. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  335. </symbol>
  336. </symbols>
  337. <devicesets>
  338. <deviceset name="17M15AUM1" prefix="QF">
  339. <description>&lt;b&gt;Monolithic Crystal Filters&lt;/b&gt;&lt;p&gt;
  340. Source: www.vanlong.com</description>
  341. <gates>
  342. <gate name="G$1" symbol="CRYSTAL-FILTER-3-POL" x="0" y="0"/>
  343. </gates>
  344. <devices>
  345. <device name="" package="UM1">
  346. <connects>
  347. <connect gate="G$1" pin="1" pad="1"/>
  348. <connect gate="G$1" pin="2" pad="2"/>
  349. <connect gate="G$1" pin="3" pad="3"/>
  350. </connects>
  351. <technologies>
  352. <technology name="">
  353. <attribute name="MF" value="" constant="no"/>
  354. <attribute name="MPN" value="" constant="no"/>
  355. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  356. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  357. </technology>
  358. </technologies>
  359. </device>
  360. </devices>
  361. </deviceset>
  362. </devicesets>
  363. </library>
  364. <library name="mc33269dt">
  365. <packages>
  366. <package name="MC33269DT">
  367. <wire x1="-3.21" y1="-3.11" x2="3.39" y2="-3.11" width="0.127" layer="20"/>
  368. <wire x1="3.39" y1="-3.11" x2="3.39" y2="3.09" width="0.127" layer="20"/>
  369. <wire x1="3.39" y1="3.09" x2="2.39" y2="3.09" width="0.127" layer="20"/>
  370. <wire x1="2.39" y1="3.09" x2="-2.21" y2="3.09" width="0.127" layer="20"/>
  371. <wire x1="-2.21" y1="3.09" x2="-3.21" y2="3.09" width="0.127" layer="20"/>
  372. <wire x1="-3.21" y1="3.09" x2="-3.21" y2="-3.11" width="0.127" layer="20"/>
  373. <wire x1="-2.21" y1="3.09" x2="-2.21" y2="3.69" width="0.127" layer="20"/>
  374. <wire x1="-2.21" y1="3.69" x2="-1.81" y2="4.09" width="0.127" layer="20"/>
  375. <wire x1="-1.81" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  376. <wire x1="-1.41" y1="4.09" x2="-1.37" y2="4.09" width="0.127" layer="20"/>
  377. <wire x1="2.39" y1="3.09" x2="2.39" y2="3.69" width="0.127" layer="20"/>
  378. <wire x1="2.39" y1="3.69" x2="1.99" y2="4.09" width="0.127" layer="20"/>
  379. <wire x1="1.99" y1="4.09" x2="-1.41" y2="4.09" width="0.127" layer="20"/>
  380. <smd name="P1" x="-2.2" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  381. <smd name="P3" x="2.38" y="-4.59" dx="2.8" dy="1" layer="1" rot="R90"/>
  382. <smd name="P2" x="0.09" y="-3.59" dx="0.8" dy="1" layer="1" rot="R90"/>
  383. <text x="-2.19" y="1.86" size="0.6096" layer="25">MC33269DT</text>
  384. </package>
  385. </packages>
  386. <symbols>
  387. <symbol name="MC33269DT">
  388. <wire x1="-7.62" y1="7.62" x2="-7.62" y2="-2.54" width="0.254" layer="94"/>
  389. <wire x1="-7.62" y1="-2.54" x2="7.62" y2="-2.54" width="0.254" layer="94"/>
  390. <wire x1="7.62" y1="-2.54" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  391. <wire x1="7.62" y1="7.62" x2="-7.62" y2="7.62" width="0.254" layer="94"/>
  392. <text x="-5.08" y="10.16" size="1.27" layer="95">MC33269DT</text>
  393. <text x="-5.08" y="5.08" size="1.27" layer="95">Vin</text>
  394. <text x="2.54" y="5.08" size="1.27" layer="95">Vout</text>
  395. <text x="-2.54" y="0" size="1.27" layer="95">GND</text>
  396. <pin name="VIN" x="-12.7" y="5.08" visible="pad" length="middle" direction="in" swaplevel="3"/>
  397. <pin name="VOUT" x="12.7" y="5.08" visible="pad" length="middle" direction="out" swaplevel="3" rot="R180"/>
  398. <pin name="GND" x="0" y="-7.62" visible="pad" length="middle" direction="pwr" swaplevel="3" rot="R90"/>
  399. </symbol>
  400. </symbols>
  401. <devicesets>
  402. <deviceset name="MC33269DT">
  403. <gates>
  404. <gate name="G$1" symbol="MC33269DT" x="0" y="-2.54" swaplevel="3"/>
  405. </gates>
  406. <devices>
  407. <device name="" package="MC33269DT">
  408. <connects>
  409. <connect gate="G$1" pin="GND" pad="P1"/>
  410. <connect gate="G$1" pin="VIN" pad="P3"/>
  411. <connect gate="G$1" pin="VOUT" pad="P2"/>
  412. </connects>
  413. <technologies>
  414. <technology name=""/>
  415. </technologies>
  416. </device>
  417. </devices>
  418. </deviceset>
  419. </devicesets>
  420. </library>
  421. <library name="optocoupler">
  422. <description>&lt;b&gt;Opto Couplers&lt;/b&gt;&lt;p&gt;
  423. Siemens, Hewlett-Packard, Texas Instuments, Sharp, Motorola&lt;p&gt;
  424. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  425. <packages>
  426. <package name="DIL16">
  427. <description>&lt;b&gt;Dual In Line Package&lt;/b&gt;</description>
  428. <wire x1="10.16" y1="2.921" x2="-10.16" y2="2.921" width="0.1524" layer="21"/>
  429. <wire x1="-10.16" y1="-2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  430. <wire x1="10.16" y1="2.921" x2="10.16" y2="-2.921" width="0.1524" layer="21"/>
  431. <wire x1="-10.16" y1="2.921" x2="-10.16" y2="1.016" width="0.1524" layer="21"/>
  432. <wire x1="-10.16" y1="-2.921" x2="-10.16" y2="-1.016" width="0.1524" layer="21"/>
  433. <wire x1="-10.16" y1="1.016" x2="-10.16" y2="-1.016" width="0.1524" layer="21" curve="-180"/>
  434. <pad name="1" x="-8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  435. <pad name="2" x="-6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  436. <pad name="7" x="6.35" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  437. <pad name="8" x="8.89" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  438. <pad name="3" x="-3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  439. <pad name="4" x="-1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  440. <pad name="6" x="3.81" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  441. <pad name="5" x="1.27" y="-3.81" drill="0.8128" shape="offset" rot="R270"/>
  442. <pad name="9" x="8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  443. <pad name="10" x="6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  444. <pad name="11" x="3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  445. <pad name="12" x="1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  446. <pad name="13" x="-1.27" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  447. <pad name="14" x="-3.81" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  448. <pad name="15" x="-6.35" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  449. <pad name="16" x="-8.89" y="3.81" drill="0.8128" shape="offset" rot="R90"/>
  450. <text x="-10.541" y="-2.921" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  451. <text x="-7.493" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  452. </package>
  453. </packages>
  454. <symbols>
  455. <symbol name="LTV847">
  456. <description>LTV847 4-opto DIP16</description>
  457. <wire x1="2.54" y1="0" x2="17.78" y2="0" width="0.254" layer="94"/>
  458. <wire x1="17.78" y1="0" x2="17.78" y2="40.64" width="0.254" layer="94"/>
  459. <wire x1="17.78" y1="40.64" x2="2.54" y2="40.64" width="0.254" layer="94"/>
  460. <wire x1="2.54" y1="40.64" x2="2.54" y2="0" width="0.254" layer="94"/>
  461. <pin name="P$1" x="-2.54" y="2.54" length="middle" direction="pas"/>
  462. <pin name="P$2" x="-2.54" y="7.62" length="middle" direction="pas"/>
  463. <pin name="P$3" x="-2.54" y="12.7" length="middle" direction="pas"/>
  464. <pin name="P$4" x="-2.54" y="17.78" length="middle" direction="pas"/>
  465. <pin name="P$5" x="-2.54" y="22.86" length="middle" direction="pas"/>
  466. <pin name="P$6" x="-2.54" y="27.94" length="middle" direction="pas"/>
  467. <pin name="P$7" x="-2.54" y="33.02" length="middle" direction="pas"/>
  468. <pin name="P$8" x="-2.54" y="38.1" length="middle" direction="pas"/>
  469. <pin name="P$9" x="22.86" y="2.54" length="middle" direction="pas" rot="R180"/>
  470. <pin name="P$10" x="22.86" y="7.62" length="middle" direction="pas" rot="R180"/>
  471. <pin name="P$11" x="22.86" y="12.7" length="middle" direction="pas" rot="R180"/>
  472. <pin name="P$12" x="22.86" y="17.78" length="middle" direction="pas" rot="R180"/>
  473. <pin name="P$13" x="22.86" y="22.86" length="middle" direction="pas" rot="R180"/>
  474. <pin name="P$14" x="22.86" y="27.94" length="middle" direction="pas" rot="R180"/>
  475. <pin name="P$15" x="22.86" y="33.02" length="middle" direction="pas" rot="R180"/>
  476. <pin name="P$16" x="22.86" y="38.1" length="middle" direction="pas" rot="R180"/>
  477. <wire x1="6.35" y1="35.56" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  478. <wire x1="7.62" y1="35.56" x2="8.89" y2="35.56" width="0.254" layer="94"/>
  479. <wire x1="7.62" y1="35.56" x2="6.35" y2="36.83" width="0.254" layer="94"/>
  480. <wire x1="6.35" y1="36.83" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  481. <wire x1="7.62" y1="36.83" x2="8.89" y2="36.83" width="0.254" layer="94"/>
  482. <wire x1="8.89" y1="36.83" x2="7.62" y2="35.56" width="0.254" layer="94"/>
  483. <wire x1="3.81" y1="38.1" x2="7.62" y2="38.1" width="0.254" layer="94"/>
  484. <wire x1="7.62" y1="38.1" x2="7.62" y2="36.83" width="0.254" layer="94"/>
  485. <wire x1="7.62" y1="35.56" x2="7.62" y2="33.02" width="0.254" layer="94"/>
  486. <wire x1="7.62" y1="33.02" x2="3.81" y2="33.02" width="0.254" layer="94"/>
  487. <wire x1="6.35" y1="25.4" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  488. <wire x1="7.62" y1="25.4" x2="8.89" y2="25.4" width="0.254" layer="94"/>
  489. <wire x1="7.62" y1="25.4" x2="6.35" y2="26.67" width="0.254" layer="94"/>
  490. <wire x1="6.35" y1="26.67" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  491. <wire x1="7.62" y1="26.67" x2="8.89" y2="26.67" width="0.254" layer="94"/>
  492. <wire x1="8.89" y1="26.67" x2="7.62" y2="25.4" width="0.254" layer="94"/>
  493. <wire x1="3.81" y1="27.94" x2="7.62" y2="27.94" width="0.254" layer="94"/>
  494. <wire x1="7.62" y1="27.94" x2="7.62" y2="26.67" width="0.254" layer="94"/>
  495. <wire x1="7.62" y1="25.4" x2="7.62" y2="22.86" width="0.254" layer="94"/>
  496. <wire x1="7.62" y1="22.86" x2="3.81" y2="22.86" width="0.254" layer="94"/>
  497. <wire x1="6.35" y1="15.24" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  498. <wire x1="7.62" y1="15.24" x2="8.89" y2="15.24" width="0.254" layer="94"/>
  499. <wire x1="7.62" y1="15.24" x2="6.35" y2="16.51" width="0.254" layer="94"/>
  500. <wire x1="6.35" y1="16.51" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  501. <wire x1="7.62" y1="16.51" x2="8.89" y2="16.51" width="0.254" layer="94"/>
  502. <wire x1="8.89" y1="16.51" x2="7.62" y2="15.24" width="0.254" layer="94"/>
  503. <wire x1="3.81" y1="17.78" x2="7.62" y2="17.78" width="0.254" layer="94"/>
  504. <wire x1="7.62" y1="17.78" x2="7.62" y2="16.51" width="0.254" layer="94"/>
  505. <wire x1="7.62" y1="15.24" x2="7.62" y2="12.7" width="0.254" layer="94"/>
  506. <wire x1="7.62" y1="12.7" x2="3.81" y2="12.7" width="0.254" layer="94"/>
  507. <wire x1="6.35" y1="5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  508. <wire x1="7.62" y1="5.08" x2="8.89" y2="5.08" width="0.254" layer="94"/>
  509. <wire x1="7.62" y1="5.08" x2="6.35" y2="6.35" width="0.254" layer="94"/>
  510. <wire x1="6.35" y1="6.35" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  511. <wire x1="7.62" y1="6.35" x2="8.89" y2="6.35" width="0.254" layer="94"/>
  512. <wire x1="8.89" y1="6.35" x2="7.62" y2="5.08" width="0.254" layer="94"/>
  513. <wire x1="3.81" y1="7.62" x2="7.62" y2="7.62" width="0.254" layer="94"/>
  514. <wire x1="7.62" y1="7.62" x2="7.62" y2="6.35" width="0.254" layer="94"/>
  515. <wire x1="7.62" y1="5.08" x2="7.62" y2="2.54" width="0.254" layer="94"/>
  516. <wire x1="7.62" y1="2.54" x2="3.81" y2="2.54" width="0.254" layer="94"/>
  517. <wire x1="11.43" y1="36.83" x2="11.43" y2="35.56" width="0.254" layer="94"/>
  518. <wire x1="11.43" y1="35.56" x2="11.43" y2="34.29" width="0.254" layer="94"/>
  519. <wire x1="11.43" y1="35.56" x2="13.97" y2="38.1" width="0.254" layer="94"/>
  520. <wire x1="11.43" y1="35.56" x2="13.97" y2="33.02" width="0.254" layer="94"/>
  521. <wire x1="13.97" y1="33.02" x2="13.97" y2="34.29" width="0.254" layer="94"/>
  522. <wire x1="13.97" y1="33.02" x2="12.7" y2="33.02" width="0.254" layer="94"/>
  523. <wire x1="13.97" y1="38.1" x2="16.51" y2="38.1" width="0.254" layer="94"/>
  524. <wire x1="13.97" y1="33.02" x2="16.51" y2="33.02" width="0.254" layer="94"/>
  525. <wire x1="11.43" y1="26.67" x2="11.43" y2="25.4" width="0.254" layer="94"/>
  526. <wire x1="11.43" y1="25.4" x2="11.43" y2="24.13" width="0.254" layer="94"/>
  527. <wire x1="11.43" y1="25.4" x2="13.97" y2="27.94" width="0.254" layer="94"/>
  528. <wire x1="11.43" y1="25.4" x2="13.97" y2="22.86" width="0.254" layer="94"/>
  529. <wire x1="13.97" y1="22.86" x2="13.97" y2="24.13" width="0.254" layer="94"/>
  530. <wire x1="13.97" y1="22.86" x2="12.7" y2="22.86" width="0.254" layer="94"/>
  531. <wire x1="13.97" y1="27.94" x2="16.51" y2="27.94" width="0.254" layer="94"/>
  532. <wire x1="13.97" y1="22.86" x2="16.51" y2="22.86" width="0.254" layer="94"/>
  533. <wire x1="11.43" y1="16.51" x2="11.43" y2="15.24" width="0.254" layer="94"/>
  534. <wire x1="11.43" y1="15.24" x2="11.43" y2="13.97" width="0.254" layer="94"/>
  535. <wire x1="11.43" y1="15.24" x2="13.97" y2="17.78" width="0.254" layer="94"/>
  536. <wire x1="11.43" y1="15.24" x2="13.97" y2="12.7" width="0.254" layer="94"/>
  537. <wire x1="13.97" y1="12.7" x2="13.97" y2="13.97" width="0.254" layer="94"/>
  538. <wire x1="13.97" y1="12.7" x2="12.7" y2="12.7" width="0.254" layer="94"/>
  539. <wire x1="13.97" y1="17.78" x2="16.51" y2="17.78" width="0.254" layer="94"/>
  540. <wire x1="13.97" y1="12.7" x2="16.51" y2="12.7" width="0.254" layer="94"/>
  541. <wire x1="11.43" y1="6.35" x2="11.43" y2="5.08" width="0.254" layer="94"/>
  542. <wire x1="11.43" y1="5.08" x2="11.43" y2="3.81" width="0.254" layer="94"/>
  543. <wire x1="11.43" y1="5.08" x2="13.97" y2="7.62" width="0.254" layer="94"/>
  544. <wire x1="11.43" y1="5.08" x2="13.97" y2="2.54" width="0.254" layer="94"/>
  545. <wire x1="13.97" y1="2.54" x2="13.97" y2="3.81" width="0.254" layer="94"/>
  546. <wire x1="13.97" y1="2.54" x2="12.7" y2="2.54" width="0.254" layer="94"/>
  547. <wire x1="13.97" y1="7.62" x2="16.51" y2="7.62" width="0.254" layer="94"/>
  548. <wire x1="13.97" y1="2.54" x2="16.51" y2="2.54" width="0.254" layer="94"/>
  549. </symbol>
  550. </symbols>
  551. <devicesets>
  552. <deviceset name="LTV847">
  553. <description>LTV847 4-optocoupler DIP16</description>
  554. <gates>
  555. <gate name="G$1" symbol="LTV847" x="-10.16" y="-20.32"/>
  556. </gates>
  557. <devices>
  558. <device name="" package="DIL16">
  559. <connects>
  560. <connect gate="G$1" pin="P$1" pad="8"/>
  561. <connect gate="G$1" pin="P$10" pad="10"/>
  562. <connect gate="G$1" pin="P$11" pad="11"/>
  563. <connect gate="G$1" pin="P$12" pad="12"/>
  564. <connect gate="G$1" pin="P$13" pad="13"/>
  565. <connect gate="G$1" pin="P$14" pad="14"/>
  566. <connect gate="G$1" pin="P$15" pad="15"/>
  567. <connect gate="G$1" pin="P$16" pad="16"/>
  568. <connect gate="G$1" pin="P$2" pad="7"/>
  569. <connect gate="G$1" pin="P$3" pad="6"/>
  570. <connect gate="G$1" pin="P$4" pad="5"/>
  571. <connect gate="G$1" pin="P$5" pad="4"/>
  572. <connect gate="G$1" pin="P$6" pad="3"/>
  573. <connect gate="G$1" pin="P$7" pad="2"/>
  574. <connect gate="G$1" pin="P$8" pad="1"/>
  575. <connect gate="G$1" pin="P$9" pad="9"/>
  576. </connects>
  577. <technologies>
  578. <technology name=""/>
  579. </technologies>
  580. </device>
  581. </devices>
  582. </deviceset>
  583. </devicesets>
  584. </library>
  585. <library name="resistor">
  586. <description>&lt;b&gt;Resistors, Capacitors, Inductors&lt;/b&gt;&lt;p&gt;
  587. Based on the previous libraries:
  588. &lt;ul&gt;
  589. &lt;li&gt;r.lbr
  590. &lt;li&gt;cap.lbr
  591. &lt;li&gt;cap-fe.lbr
  592. &lt;li&gt;captant.lbr
  593. &lt;li&gt;polcap.lbr
  594. &lt;li&gt;ipc-smd.lbr
  595. &lt;/ul&gt;
  596. All SMD packages are defined according to the IPC specifications and CECC&lt;p&gt;
  597. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;p&gt;
  598. &lt;p&gt;
  599. for Electrolyt Capacitors see also :&lt;p&gt;
  600. www.bccomponents.com &lt;p&gt;
  601. www.panasonic.com&lt;p&gt;
  602. www.kemet.com&lt;p&gt;
  603. &lt;p&gt;
  604. for trimmer refence see : &lt;u&gt;www.electrospec-inc.com/cross_references/trimpotcrossref.asp&lt;/u&gt;&lt;p&gt;
  605. &lt;map name="nav_main"&gt;
  606. &lt;area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title=""&gt;
  607. &lt;area shape="rect" coords="0,24,140,51" href="../about.asp" title=""&gt;
  608. &lt;area shape="rect" coords="1,52,140,77" href="../rfq.asp" title=""&gt;
  609. &lt;area shape="rect" coords="0,78,139,103" href="../products.asp" title=""&gt;
  610. &lt;area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title=""&gt;
  611. &lt;area shape="rect" coords="1,129,138,150" href="../edge.asp" title=""&gt;
  612. &lt;area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title=""&gt;
  613. &lt;area shape="rect" coords="0,179,139,201" href="../comments.asp" title=""&gt;
  614. &lt;area shape="rect" coords="1,203,138,231" href="../directory.asp" title=""&gt;
  615. &lt;area shape="default" nohref&gt;
  616. &lt;/map&gt;
  617. &lt;html&gt;
  618. &lt;title&gt;&lt;/title&gt;
  619. &lt;LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css"&gt;
  620. &lt;body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"&gt;
  621. &lt;table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%"&gt;
  622. &lt;tr valign="top"&gt;
  623. &lt;/td&gt;
  624. &lt;! &lt;td width="10"&gt;&amp;nbsp;&lt;/td&gt;
  625. &lt;td width="90%"&gt;
  626. &lt;b&gt;&lt;font color="#0000FF" size="4"&gt;TRIM-POT CROSS REFERENCE&lt;/font&gt;&lt;/b&gt;
  627. &lt;P&gt;
  628. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2&gt;
  629. &lt;TR&gt;
  630. &lt;TD COLSPAN=8&gt;
  631. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;RECTANGULAR MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  632. &lt;/TD&gt;
  633. &lt;/TR&gt;
  634. &lt;TR&gt;
  635. &lt;TD ALIGN=CENTER&gt;
  636. &lt;B&gt;
  637. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BOURNS&lt;/FONT&gt;
  638. &lt;/B&gt;
  639. &lt;/TD&gt;
  640. &lt;TD ALIGN=CENTER&gt;
  641. &lt;B&gt;
  642. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;BI&amp;nbsp;TECH&lt;/FONT&gt;
  643. &lt;/B&gt;
  644. &lt;/TD&gt;
  645. &lt;TD ALIGN=CENTER&gt;
  646. &lt;B&gt;
  647. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;DALE-VISHAY&lt;/FONT&gt;
  648. &lt;/B&gt;
  649. &lt;/TD&gt;
  650. &lt;TD ALIGN=CENTER&gt;
  651. &lt;B&gt;
  652. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PHILIPS/MEPCO&lt;/FONT&gt;
  653. &lt;/B&gt;
  654. &lt;/TD&gt;
  655. &lt;TD ALIGN=CENTER&gt;
  656. &lt;B&gt;
  657. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MURATA&lt;/FONT&gt;
  658. &lt;/B&gt;
  659. &lt;/TD&gt;
  660. &lt;TD ALIGN=CENTER&gt;
  661. &lt;B&gt;
  662. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;PANASONIC&lt;/FONT&gt;
  663. &lt;/B&gt;
  664. &lt;/TD&gt;
  665. &lt;TD ALIGN=CENTER&gt;
  666. &lt;B&gt;
  667. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;SPECTROL&lt;/FONT&gt;
  668. &lt;/B&gt;
  669. &lt;/TD&gt;
  670. &lt;TD ALIGN=CENTER&gt;
  671. &lt;B&gt;
  672. &lt;FONT SIZE=3 FACE=ARIAL color="#FF0000"&gt;MILSPEC&lt;/FONT&gt;
  673. &lt;/B&gt;
  674. &lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
  675. &lt;/TR&gt;
  676. &lt;TR&gt;
  677. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3 &gt;
  678. 3005P&lt;BR&gt;
  679. 3006P&lt;BR&gt;
  680. 3006W&lt;BR&gt;
  681. 3006Y&lt;BR&gt;
  682. 3009P&lt;BR&gt;
  683. 3009W&lt;BR&gt;
  684. 3009Y&lt;BR&gt;
  685. 3057J&lt;BR&gt;
  686. 3057L&lt;BR&gt;
  687. 3057P&lt;BR&gt;
  688. 3057Y&lt;BR&gt;
  689. 3059J&lt;BR&gt;
  690. 3059L&lt;BR&gt;
  691. 3059P&lt;BR&gt;
  692. 3059Y&lt;BR&gt;&lt;/FONT&gt;
  693. &lt;/TD&gt;
  694. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  695. -&lt;BR&gt;
  696. 89P&lt;BR&gt;
  697. 89W&lt;BR&gt;
  698. 89X&lt;BR&gt;
  699. 89PH&lt;BR&gt;
  700. 76P&lt;BR&gt;
  701. 89XH&lt;BR&gt;
  702. 78SLT&lt;BR&gt;
  703. 78L&amp;nbsp;ALT&lt;BR&gt;
  704. 56P&amp;nbsp;ALT&lt;BR&gt;
  705. 78P&amp;nbsp;ALT&lt;BR&gt;
  706. T8S&lt;BR&gt;
  707. 78L&lt;BR&gt;
  708. 56P&lt;BR&gt;
  709. 78P&lt;BR&gt;&lt;/FONT&gt;
  710. &lt;/TD&gt;
  711. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  712. -&lt;BR&gt;
  713. T18/784&lt;BR&gt;
  714. 783&lt;BR&gt;
  715. 781&lt;BR&gt;
  716. -&lt;BR&gt;
  717. -&lt;BR&gt;
  718. -&lt;BR&gt;
  719. 2199&lt;BR&gt;
  720. 1697/1897&lt;BR&gt;
  721. 1680/1880&lt;BR&gt;
  722. 2187&lt;BR&gt;
  723. -&lt;BR&gt;
  724. -&lt;BR&gt;
  725. -&lt;BR&gt;
  726. -&lt;BR&gt;&lt;/FONT&gt;
  727. &lt;/TD&gt;
  728. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  729. -&lt;BR&gt;
  730. 8035EKP/CT20/RJ-20P&lt;BR&gt;
  731. -&lt;BR&gt;
  732. RJ-20X&lt;BR&gt;
  733. -&lt;BR&gt;
  734. -&lt;BR&gt;
  735. -&lt;BR&gt;
  736. 1211L&lt;BR&gt;
  737. 8012EKQ&amp;nbsp;ALT&lt;BR&gt;
  738. 8012EKR&amp;nbsp;ALT&lt;BR&gt;
  739. 1211P&lt;BR&gt;
  740. 8012EKJ&lt;BR&gt;
  741. 8012EKL&lt;BR&gt;
  742. 8012EKQ&lt;BR&gt;
  743. 8012EKR&lt;BR&gt;&lt;/FONT&gt;
  744. &lt;/TD&gt;
  745. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  746. -&lt;BR&gt;
  747. 2101P&lt;BR&gt;
  748. 2101W&lt;BR&gt;
  749. 2101Y&lt;BR&gt;
  750. -&lt;BR&gt;
  751. -&lt;BR&gt;
  752. -&lt;BR&gt;
  753. -&lt;BR&gt;
  754. -&lt;BR&gt;
  755. -&lt;BR&gt;
  756. -&lt;BR&gt;
  757. -&lt;BR&gt;
  758. 2102L&lt;BR&gt;
  759. 2102S&lt;BR&gt;
  760. 2102Y&lt;BR&gt;&lt;/FONT&gt;
  761. &lt;/TD&gt;
  762. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  763. -&lt;BR&gt;
  764. EVMCOG&lt;BR&gt;
  765. -&lt;BR&gt;
  766. -&lt;BR&gt;
  767. -&lt;BR&gt;
  768. -&lt;BR&gt;
  769. -&lt;BR&gt;
  770. -&lt;BR&gt;
  771. -&lt;BR&gt;
  772. -&lt;BR&gt;
  773. -&lt;BR&gt;
  774. -&lt;BR&gt;
  775. -&lt;BR&gt;
  776. -&lt;BR&gt;
  777. -&lt;BR&gt;&lt;/FONT&gt;
  778. &lt;/TD&gt;
  779. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  780. -&lt;BR&gt;
  781. 43P&lt;BR&gt;
  782. 43W&lt;BR&gt;
  783. 43Y&lt;BR&gt;
  784. -&lt;BR&gt;
  785. -&lt;BR&gt;
  786. -&lt;BR&gt;
  787. -&lt;BR&gt;
  788. 40L&lt;BR&gt;
  789. 40P&lt;BR&gt;
  790. 40Y&lt;BR&gt;
  791. 70Y-T602&lt;BR&gt;
  792. 70L&lt;BR&gt;
  793. 70P&lt;BR&gt;
  794. 70Y&lt;BR&gt;&lt;/FONT&gt;
  795. &lt;/TD&gt;
  796. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  797. -&lt;BR&gt;
  798. -&lt;BR&gt;
  799. -&lt;BR&gt;
  800. -&lt;BR&gt;
  801. -&lt;BR&gt;
  802. -&lt;BR&gt;
  803. -&lt;BR&gt;
  804. -&lt;BR&gt;
  805. RT/RTR12&lt;BR&gt;
  806. RT/RTR12&lt;BR&gt;
  807. RT/RTR12&lt;BR&gt;
  808. -&lt;BR&gt;
  809. RJ/RJR12&lt;BR&gt;
  810. RJ/RJR12&lt;BR&gt;
  811. RJ/RJR12&lt;BR&gt;&lt;/FONT&gt;
  812. &lt;/TD&gt;
  813. &lt;/TR&gt;
  814. &lt;TR&gt;
  815. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  816. &lt;/TD&gt;
  817. &lt;/TR&gt;
  818. &lt;TR&gt;
  819. &lt;TD COLSPAN=8&gt;
  820. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SQUARE MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  821. &lt;/TD&gt;
  822. &lt;/TR&gt;
  823. &lt;TR&gt;
  824. &lt;TD ALIGN=CENTER&gt;
  825. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  826. &lt;/TD&gt;
  827. &lt;TD ALIGN=CENTER&gt;
  828. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  829. &lt;/TD&gt;
  830. &lt;TD ALIGN=CENTER&gt;
  831. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  832. &lt;/TD&gt;
  833. &lt;TD ALIGN=CENTER&gt;
  834. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  835. &lt;/TD&gt;
  836. &lt;TD ALIGN=CENTER&gt;
  837. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  838. &lt;/TD&gt;
  839. &lt;TD ALIGN=CENTER&gt;
  840. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  841. &lt;/TD&gt;
  842. &lt;TD ALIGN=CENTER&gt;
  843. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  844. &lt;/TD&gt;
  845. &lt;TD ALIGN=CENTER&gt;
  846. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  847. &lt;/TD&gt;
  848. &lt;/TR&gt;
  849. &lt;TR&gt;
  850. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  851. 3250L&lt;BR&gt;
  852. 3250P&lt;BR&gt;
  853. 3250W&lt;BR&gt;
  854. 3250X&lt;BR&gt;
  855. 3252P&lt;BR&gt;
  856. 3252W&lt;BR&gt;
  857. 3252X&lt;BR&gt;
  858. 3260P&lt;BR&gt;
  859. 3260W&lt;BR&gt;
  860. 3260X&lt;BR&gt;
  861. 3262P&lt;BR&gt;
  862. 3262W&lt;BR&gt;
  863. 3262X&lt;BR&gt;
  864. 3266P&lt;BR&gt;
  865. 3266W&lt;BR&gt;
  866. 3266X&lt;BR&gt;
  867. 3290H&lt;BR&gt;
  868. 3290P&lt;BR&gt;
  869. 3290W&lt;BR&gt;
  870. 3292P&lt;BR&gt;
  871. 3292W&lt;BR&gt;
  872. 3292X&lt;BR&gt;
  873. 3296P&lt;BR&gt;
  874. 3296W&lt;BR&gt;
  875. 3296X&lt;BR&gt;
  876. 3296Y&lt;BR&gt;
  877. 3296Z&lt;BR&gt;
  878. 3299P&lt;BR&gt;
  879. 3299W&lt;BR&gt;
  880. 3299X&lt;BR&gt;
  881. 3299Y&lt;BR&gt;
  882. 3299Z&lt;BR&gt;&lt;/FONT&gt;
  883. &lt;/TD&gt;
  884. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  885. -&lt;BR&gt;
  886. 66P&amp;nbsp;ALT&lt;BR&gt;
  887. 66W&amp;nbsp;ALT&lt;BR&gt;
  888. 66X&amp;nbsp;ALT&lt;BR&gt;
  889. 66P&amp;nbsp;ALT&lt;BR&gt;
  890. 66W&amp;nbsp;ALT&lt;BR&gt;
  891. 66X&amp;nbsp;ALT&lt;BR&gt;
  892. -&lt;BR&gt;
  893. 64W&amp;nbsp;ALT&lt;BR&gt;
  894. -&lt;BR&gt;
  895. 64P&amp;nbsp;ALT&lt;BR&gt;
  896. 64W&amp;nbsp;ALT&lt;BR&gt;
  897. 64X&amp;nbsp;ALT&lt;BR&gt;
  898. 64P&lt;BR&gt;
  899. 64W&lt;BR&gt;
  900. 64X&lt;BR&gt;
  901. 66X&amp;nbsp;ALT&lt;BR&gt;
  902. 66P&amp;nbsp;ALT&lt;BR&gt;
  903. 66W&amp;nbsp;ALT&lt;BR&gt;
  904. 66P&lt;BR&gt;
  905. 66W&lt;BR&gt;
  906. 66X&lt;BR&gt;
  907. 67P&lt;BR&gt;
  908. 67W&lt;BR&gt;
  909. 67X&lt;BR&gt;
  910. 67Y&lt;BR&gt;
  911. 67Z&lt;BR&gt;
  912. 68P&lt;BR&gt;
  913. 68W&lt;BR&gt;
  914. 68X&lt;BR&gt;
  915. 67Y&amp;nbsp;ALT&lt;BR&gt;
  916. 67Z&amp;nbsp;ALT&lt;BR&gt;&lt;/FONT&gt;
  917. &lt;/TD&gt;
  918. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  919. 5050&lt;BR&gt;
  920. 5091&lt;BR&gt;
  921. 5080&lt;BR&gt;
  922. 5087&lt;BR&gt;
  923. -&lt;BR&gt;
  924. -&lt;BR&gt;
  925. -&lt;BR&gt;
  926. -&lt;BR&gt;
  927. -&lt;BR&gt;
  928. -&lt;BR&gt;
  929. -&lt;BR&gt;
  930. T63YB&lt;BR&gt;
  931. T63XB&lt;BR&gt;
  932. -&lt;BR&gt;
  933. -&lt;BR&gt;
  934. -&lt;BR&gt;
  935. 5887&lt;BR&gt;
  936. 5891&lt;BR&gt;
  937. 5880&lt;BR&gt;
  938. -&lt;BR&gt;
  939. -&lt;BR&gt;
  940. -&lt;BR&gt;
  941. T93Z&lt;BR&gt;
  942. T93YA&lt;BR&gt;
  943. T93XA&lt;BR&gt;
  944. T93YB&lt;BR&gt;
  945. T93XB&lt;BR&gt;
  946. -&lt;BR&gt;
  947. -&lt;BR&gt;
  948. -&lt;BR&gt;
  949. -&lt;BR&gt;
  950. -&lt;BR&gt;&lt;/FONT&gt;
  951. &lt;/TD&gt;
  952. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  953. -&lt;BR&gt;
  954. -&lt;BR&gt;
  955. -&lt;BR&gt;
  956. -&lt;BR&gt;
  957. -&lt;BR&gt;
  958. -&lt;BR&gt;
  959. -&lt;BR&gt;
  960. -&lt;BR&gt;
  961. -&lt;BR&gt;
  962. -&lt;BR&gt;
  963. 8026EKP&lt;BR&gt;
  964. 8026EKW&lt;BR&gt;
  965. 8026EKM&lt;BR&gt;
  966. 8026EKP&lt;BR&gt;
  967. 8026EKB&lt;BR&gt;
  968. 8026EKM&lt;BR&gt;
  969. 1309X&lt;BR&gt;
  970. 1309P&lt;BR&gt;
  971. 1309W&lt;BR&gt;
  972. 8024EKP&lt;BR&gt;
  973. 8024EKW&lt;BR&gt;
  974. 8024EKN&lt;BR&gt;
  975. RJ-9P/CT9P&lt;BR&gt;
  976. RJ-9W&lt;BR&gt;
  977. RJ-9X&lt;BR&gt;
  978. -&lt;BR&gt;
  979. -&lt;BR&gt;
  980. -&lt;BR&gt;
  981. -&lt;BR&gt;
  982. -&lt;BR&gt;
  983. -&lt;BR&gt;
  984. -&lt;BR&gt;&lt;/FONT&gt;
  985. &lt;/TD&gt;
  986. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  987. -&lt;BR&gt;
  988. -&lt;BR&gt;
  989. -&lt;BR&gt;
  990. -&lt;BR&gt;
  991. -&lt;BR&gt;
  992. -&lt;BR&gt;
  993. -&lt;BR&gt;
  994. -&lt;BR&gt;
  995. -&lt;BR&gt;
  996. -&lt;BR&gt;
  997. 3103P&lt;BR&gt;
  998. 3103Y&lt;BR&gt;
  999. 3103Z&lt;BR&gt;
  1000. 3103P&lt;BR&gt;
  1001. 3103Y&lt;BR&gt;
  1002. 3103Z&lt;BR&gt;
  1003. -&lt;BR&gt;
  1004. -&lt;BR&gt;
  1005. -&lt;BR&gt;
  1006. -&lt;BR&gt;
  1007. -&lt;BR&gt;
  1008. -&lt;BR&gt;
  1009. 3105P/3106P&lt;BR&gt;
  1010. 3105W/3106W&lt;BR&gt;
  1011. 3105X/3106X&lt;BR&gt;
  1012. 3105Y/3106Y&lt;BR&gt;
  1013. 3105Z/3105Z&lt;BR&gt;
  1014. 3102P&lt;BR&gt;
  1015. 3102W&lt;BR&gt;
  1016. 3102X&lt;BR&gt;
  1017. 3102Y&lt;BR&gt;
  1018. 3102Z&lt;BR&gt;&lt;/FONT&gt;
  1019. &lt;/TD&gt;
  1020. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1021. -&lt;BR&gt;
  1022. -&lt;BR&gt;
  1023. -&lt;BR&gt;
  1024. -&lt;BR&gt;
  1025. -&lt;BR&gt;
  1026. -&lt;BR&gt;
  1027. -&lt;BR&gt;
  1028. -&lt;BR&gt;
  1029. -&lt;BR&gt;
  1030. -&lt;BR&gt;
  1031. -&lt;BR&gt;
  1032. -&lt;BR&gt;
  1033. -&lt;BR&gt;
  1034. -&lt;BR&gt;
  1035. -&lt;BR&gt;
  1036. -&lt;BR&gt;
  1037. -&lt;BR&gt;
  1038. -&lt;BR&gt;
  1039. -&lt;BR&gt;
  1040. -&lt;BR&gt;
  1041. -&lt;BR&gt;
  1042. -&lt;BR&gt;
  1043. EVMCBG&lt;BR&gt;
  1044. EVMCCG&lt;BR&gt;
  1045. -&lt;BR&gt;
  1046. -&lt;BR&gt;
  1047. -&lt;BR&gt;
  1048. -&lt;BR&gt;
  1049. -&lt;BR&gt;
  1050. -&lt;BR&gt;
  1051. -&lt;BR&gt;
  1052. -&lt;BR&gt;&lt;/FONT&gt;
  1053. &lt;/TD&gt;
  1054. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1055. 55-1-X&lt;BR&gt;
  1056. 55-4-X&lt;BR&gt;
  1057. 55-3-X&lt;BR&gt;
  1058. 55-2-X&lt;BR&gt;
  1059. -&lt;BR&gt;
  1060. -&lt;BR&gt;
  1061. -&lt;BR&gt;
  1062. -&lt;BR&gt;
  1063. -&lt;BR&gt;
  1064. -&lt;BR&gt;
  1065. -&lt;BR&gt;
  1066. -&lt;BR&gt;
  1067. -&lt;BR&gt;
  1068. -&lt;BR&gt;
  1069. -&lt;BR&gt;
  1070. -&lt;BR&gt;
  1071. 50-2-X&lt;BR&gt;
  1072. 50-4-X&lt;BR&gt;
  1073. 50-3-X&lt;BR&gt;
  1074. -&lt;BR&gt;
  1075. -&lt;BR&gt;
  1076. -&lt;BR&gt;
  1077. 64P&lt;BR&gt;
  1078. 64W&lt;BR&gt;
  1079. 64X&lt;BR&gt;
  1080. 64Y&lt;BR&gt;
  1081. 64Z&lt;BR&gt;
  1082. -&lt;BR&gt;
  1083. -&lt;BR&gt;
  1084. -&lt;BR&gt;
  1085. -&lt;BR&gt;
  1086. -&lt;BR&gt;&lt;/FONT&gt;
  1087. &lt;/TD&gt;
  1088. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1089. RT/RTR22&lt;BR&gt;
  1090. RT/RTR22&lt;BR&gt;
  1091. RT/RTR22&lt;BR&gt;
  1092. RT/RTR22&lt;BR&gt;
  1093. RJ/RJR22&lt;BR&gt;
  1094. RJ/RJR22&lt;BR&gt;
  1095. RJ/RJR22&lt;BR&gt;
  1096. RT/RTR26&lt;BR&gt;
  1097. RT/RTR26&lt;BR&gt;
  1098. RT/RTR26&lt;BR&gt;
  1099. RJ/RJR26&lt;BR&gt;
  1100. RJ/RJR26&lt;BR&gt;
  1101. RJ/RJR26&lt;BR&gt;
  1102. RJ/RJR26&lt;BR&gt;
  1103. RJ/RJR26&lt;BR&gt;
  1104. RJ/RJR26&lt;BR&gt;
  1105. RT/RTR24&lt;BR&gt;
  1106. RT/RTR24&lt;BR&gt;
  1107. RT/RTR24&lt;BR&gt;
  1108. RJ/RJR24&lt;BR&gt;
  1109. RJ/RJR24&lt;BR&gt;
  1110. RJ/RJR24&lt;BR&gt;
  1111. RJ/RJR24&lt;BR&gt;
  1112. RJ/RJR24&lt;BR&gt;
  1113. RJ/RJR24&lt;BR&gt;
  1114. -&lt;BR&gt;
  1115. -&lt;BR&gt;
  1116. -&lt;BR&gt;
  1117. -&lt;BR&gt;
  1118. -&lt;BR&gt;
  1119. -&lt;BR&gt;
  1120. -&lt;BR&gt;&lt;/FONT&gt;
  1121. &lt;/TD&gt;
  1122. &lt;/TR&gt;
  1123. &lt;TR&gt;
  1124. &lt;TD COLSPAN=8&gt;&amp;nbsp;
  1125. &lt;/TD&gt;
  1126. &lt;/TR&gt;
  1127. &lt;TR&gt;
  1128. &lt;TD COLSPAN=8&gt;
  1129. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1130. &lt;/TD&gt;
  1131. &lt;/TR&gt;
  1132. &lt;TR&gt;
  1133. &lt;TD ALIGN=CENTER&gt;
  1134. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;
  1135. &lt;/TD&gt;
  1136. &lt;TD ALIGN=CENTER&gt;
  1137. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1138. &lt;/TD&gt;
  1139. &lt;TD ALIGN=CENTER&gt;
  1140. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1141. &lt;/TD&gt;
  1142. &lt;TD ALIGN=CENTER&gt;
  1143. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1144. &lt;/TD&gt;
  1145. &lt;TD ALIGN=CENTER&gt;
  1146. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;
  1147. &lt;/TD&gt;
  1148. &lt;TD ALIGN=CENTER&gt;
  1149. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1150. &lt;/TD&gt;
  1151. &lt;TD ALIGN=CENTER&gt;
  1152. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;
  1153. &lt;/TD&gt;
  1154. &lt;TD ALIGN=CENTER&gt;
  1155. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;
  1156. &lt;/TD&gt;
  1157. &lt;/TR&gt;
  1158. &lt;TR&gt;
  1159. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1160. 3323P&lt;BR&gt;
  1161. 3323S&lt;BR&gt;
  1162. 3323W&lt;BR&gt;
  1163. 3329H&lt;BR&gt;
  1164. 3329P&lt;BR&gt;
  1165. 3329W&lt;BR&gt;
  1166. 3339H&lt;BR&gt;
  1167. 3339P&lt;BR&gt;
  1168. 3339W&lt;BR&gt;
  1169. 3352E&lt;BR&gt;
  1170. 3352H&lt;BR&gt;
  1171. 3352K&lt;BR&gt;
  1172. 3352P&lt;BR&gt;
  1173. 3352T&lt;BR&gt;
  1174. 3352V&lt;BR&gt;
  1175. 3352W&lt;BR&gt;
  1176. 3362H&lt;BR&gt;
  1177. 3362M&lt;BR&gt;
  1178. 3362P&lt;BR&gt;
  1179. 3362R&lt;BR&gt;
  1180. 3362S&lt;BR&gt;
  1181. 3362U&lt;BR&gt;
  1182. 3362W&lt;BR&gt;
  1183. 3362X&lt;BR&gt;
  1184. 3386B&lt;BR&gt;
  1185. 3386C&lt;BR&gt;
  1186. 3386F&lt;BR&gt;
  1187. 3386H&lt;BR&gt;
  1188. 3386K&lt;BR&gt;
  1189. 3386M&lt;BR&gt;
  1190. 3386P&lt;BR&gt;
  1191. 3386S&lt;BR&gt;
  1192. 3386W&lt;BR&gt;
  1193. 3386X&lt;BR&gt;&lt;/FONT&gt;
  1194. &lt;/TD&gt;
  1195. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1196. 25P&lt;BR&gt;
  1197. 25S&lt;BR&gt;
  1198. 25RX&lt;BR&gt;
  1199. 82P&lt;BR&gt;
  1200. 82M&lt;BR&gt;
  1201. 82PA&lt;BR&gt;
  1202. -&lt;BR&gt;
  1203. -&lt;BR&gt;
  1204. -&lt;BR&gt;
  1205. 91E&lt;BR&gt;
  1206. 91X&lt;BR&gt;
  1207. 91T&lt;BR&gt;
  1208. 91B&lt;BR&gt;
  1209. 91A&lt;BR&gt;
  1210. 91V&lt;BR&gt;
  1211. 91W&lt;BR&gt;
  1212. 25W&lt;BR&gt;
  1213. 25V&lt;BR&gt;
  1214. 25P&lt;BR&gt;
  1215. -&lt;BR&gt;
  1216. 25S&lt;BR&gt;
  1217. 25U&lt;BR&gt;
  1218. 25RX&lt;BR&gt;
  1219. 25X&lt;BR&gt;
  1220. 72XW&lt;BR&gt;
  1221. 72XL&lt;BR&gt;
  1222. 72PM&lt;BR&gt;
  1223. 72RX&lt;BR&gt;
  1224. -&lt;BR&gt;
  1225. 72PX&lt;BR&gt;
  1226. 72P&lt;BR&gt;
  1227. 72RXW&lt;BR&gt;
  1228. 72RXL&lt;BR&gt;
  1229. 72X&lt;BR&gt;&lt;/FONT&gt;
  1230. &lt;/TD&gt;
  1231. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1232. -&lt;BR&gt;
  1233. -&lt;BR&gt;
  1234. -&lt;BR&gt;
  1235. T7YB&lt;BR&gt;
  1236. T7YA&lt;BR&gt;
  1237. -&lt;BR&gt;
  1238. -&lt;BR&gt;
  1239. -&lt;BR&gt;
  1240. -&lt;BR&gt;
  1241. -&lt;BR&gt;
  1242. -&lt;BR&gt;
  1243. -&lt;BR&gt;
  1244. -&lt;BR&gt;
  1245. -&lt;BR&gt;
  1246. -&lt;BR&gt;
  1247. -&lt;BR&gt;
  1248. -&lt;BR&gt;
  1249. TXD&lt;BR&gt;
  1250. TYA&lt;BR&gt;
  1251. TYP&lt;BR&gt;
  1252. -&lt;BR&gt;
  1253. TYD&lt;BR&gt;
  1254. TX&lt;BR&gt;
  1255. -&lt;BR&gt;
  1256. 150SX&lt;BR&gt;
  1257. 100SX&lt;BR&gt;
  1258. 102T&lt;BR&gt;
  1259. 101S&lt;BR&gt;
  1260. 190T&lt;BR&gt;
  1261. 150TX&lt;BR&gt;
  1262. 101&lt;BR&gt;
  1263. -&lt;BR&gt;
  1264. -&lt;BR&gt;
  1265. 101SX&lt;BR&gt;&lt;/FONT&gt;
  1266. &lt;/TD&gt;
  1267. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1268. ET6P&lt;BR&gt;
  1269. ET6S&lt;BR&gt;
  1270. ET6X&lt;BR&gt;
  1271. RJ-6W/8014EMW&lt;BR&gt;
  1272. RJ-6P/8014EMP&lt;BR&gt;
  1273. RJ-6X/8014EMX&lt;BR&gt;
  1274. TM7W&lt;BR&gt;
  1275. TM7P&lt;BR&gt;
  1276. TM7X&lt;BR&gt;
  1277. -&lt;BR&gt;
  1278. 8017SMS&lt;BR&gt;
  1279. -&lt;BR&gt;
  1280. 8017SMB&lt;BR&gt;
  1281. 8017SMA&lt;BR&gt;
  1282. -&lt;BR&gt;
  1283. -&lt;BR&gt;
  1284. CT-6W&lt;BR&gt;
  1285. CT-6H&lt;BR&gt;
  1286. CT-6P&lt;BR&gt;
  1287. CT-6R&lt;BR&gt;
  1288. -&lt;BR&gt;
  1289. CT-6V&lt;BR&gt;
  1290. CT-6X&lt;BR&gt;
  1291. -&lt;BR&gt;
  1292. -&lt;BR&gt;
  1293. 8038EKV&lt;BR&gt;
  1294. -&lt;BR&gt;
  1295. 8038EKX&lt;BR&gt;
  1296. -&lt;BR&gt;
  1297. -&lt;BR&gt;
  1298. 8038EKP&lt;BR&gt;
  1299. 8038EKZ&lt;BR&gt;
  1300. 8038EKW&lt;BR&gt;
  1301. -&lt;BR&gt;&lt;/FONT&gt;
  1302. &lt;/TD&gt;
  1303. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1304. -&lt;BR&gt;
  1305. -&lt;BR&gt;
  1306. -&lt;BR&gt;
  1307. 3321H&lt;BR&gt;
  1308. 3321P&lt;BR&gt;
  1309. 3321N&lt;BR&gt;
  1310. 1102H&lt;BR&gt;
  1311. 1102P&lt;BR&gt;
  1312. 1102T&lt;BR&gt;
  1313. RVA0911V304A&lt;BR&gt;
  1314. -&lt;BR&gt;
  1315. RVA0911H413A&lt;BR&gt;
  1316. RVG0707V100A&lt;BR&gt;
  1317. RVA0607V(H)306A&lt;BR&gt;
  1318. RVA1214H213A&lt;BR&gt;
  1319. -&lt;BR&gt;
  1320. -&lt;BR&gt;
  1321. -&lt;BR&gt;
  1322. -&lt;BR&gt;
  1323. -&lt;BR&gt;
  1324. -&lt;BR&gt;
  1325. -&lt;BR&gt;
  1326. -&lt;BR&gt;
  1327. -&lt;BR&gt;
  1328. 3104B&lt;BR&gt;
  1329. 3104C&lt;BR&gt;
  1330. 3104F&lt;BR&gt;
  1331. 3104H&lt;BR&gt;
  1332. -&lt;BR&gt;
  1333. 3104M&lt;BR&gt;
  1334. 3104P&lt;BR&gt;
  1335. 3104S&lt;BR&gt;
  1336. 3104W&lt;BR&gt;
  1337. 3104X&lt;BR&gt;&lt;/FONT&gt;
  1338. &lt;/TD&gt;
  1339. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1340. EVMQ0G&lt;BR&gt;
  1341. EVMQIG&lt;BR&gt;
  1342. EVMQ3G&lt;BR&gt;
  1343. EVMS0G&lt;BR&gt;
  1344. EVMQ0G&lt;BR&gt;
  1345. EVMG0G&lt;BR&gt;
  1346. -&lt;BR&gt;
  1347. -&lt;BR&gt;
  1348. -&lt;BR&gt;
  1349. EVMK4GA00B&lt;BR&gt;
  1350. EVM30GA00B&lt;BR&gt;
  1351. EVMK0GA00B&lt;BR&gt;
  1352. EVM38GA00B&lt;BR&gt;
  1353. EVMB6&lt;BR&gt;
  1354. EVLQ0&lt;BR&gt;
  1355. -&lt;BR&gt;
  1356. EVMMSG&lt;BR&gt;
  1357. EVMMBG&lt;BR&gt;
  1358. EVMMAG&lt;BR&gt;
  1359. -&lt;BR&gt;
  1360. -&lt;BR&gt;
  1361. EVMMCS&lt;BR&gt;
  1362. -&lt;BR&gt;
  1363. -&lt;BR&gt;
  1364. -&lt;BR&gt;
  1365. -&lt;BR&gt;
  1366. -&lt;BR&gt;
  1367. EVMM1&lt;BR&gt;
  1368. -&lt;BR&gt;
  1369. -&lt;BR&gt;
  1370. EVMM0&lt;BR&gt;
  1371. -&lt;BR&gt;
  1372. -&lt;BR&gt;
  1373. EVMM3&lt;BR&gt;&lt;/FONT&gt;
  1374. &lt;/TD&gt;
  1375. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1376. -&lt;BR&gt;
  1377. -&lt;BR&gt;
  1378. -&lt;BR&gt;
  1379. 62-3-1&lt;BR&gt;
  1380. 62-1-2&lt;BR&gt;
  1381. -&lt;BR&gt;
  1382. -&lt;BR&gt;
  1383. -&lt;BR&gt;
  1384. -&lt;BR&gt;
  1385. -&lt;BR&gt;
  1386. -&lt;BR&gt;
  1387. -&lt;BR&gt;
  1388. -&lt;BR&gt;
  1389. -&lt;BR&gt;
  1390. -&lt;BR&gt;
  1391. -&lt;BR&gt;
  1392. 67R&lt;BR&gt;
  1393. -&lt;BR&gt;
  1394. 67P&lt;BR&gt;
  1395. -&lt;BR&gt;
  1396. -&lt;BR&gt;
  1397. -&lt;BR&gt;
  1398. -&lt;BR&gt;
  1399. 67X&lt;BR&gt;
  1400. 63V&lt;BR&gt;
  1401. 63S&lt;BR&gt;
  1402. 63M&lt;BR&gt;
  1403. -&lt;BR&gt;
  1404. -&lt;BR&gt;
  1405. 63H&lt;BR&gt;
  1406. 63P&lt;BR&gt;
  1407. -&lt;BR&gt;
  1408. -&lt;BR&gt;
  1409. 63X&lt;BR&gt;&lt;/FONT&gt;
  1410. &lt;/TD&gt;
  1411. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1412. -&lt;BR&gt;
  1413. -&lt;BR&gt;
  1414. -&lt;BR&gt;
  1415. RJ/RJR50&lt;BR&gt;
  1416. RJ/RJR50&lt;BR&gt;
  1417. RJ/RJR50&lt;BR&gt;
  1418. -&lt;BR&gt;
  1419. -&lt;BR&gt;
  1420. -&lt;BR&gt;
  1421. -&lt;BR&gt;
  1422. -&lt;BR&gt;
  1423. -&lt;BR&gt;
  1424. -&lt;BR&gt;
  1425. -&lt;BR&gt;
  1426. -&lt;BR&gt;
  1427. -&lt;BR&gt;
  1428. -&lt;BR&gt;
  1429. -&lt;BR&gt;
  1430. -&lt;BR&gt;
  1431. -&lt;BR&gt;
  1432. -&lt;BR&gt;
  1433. -&lt;BR&gt;
  1434. -&lt;BR&gt;
  1435. -&lt;BR&gt;
  1436. -&lt;BR&gt;
  1437. -&lt;BR&gt;
  1438. -&lt;BR&gt;
  1439. -&lt;BR&gt;
  1440. -&lt;BR&gt;
  1441. -&lt;BR&gt;
  1442. -&lt;BR&gt;
  1443. -&lt;BR&gt;
  1444. -&lt;BR&gt;
  1445. -&lt;BR&gt;&lt;/FONT&gt;
  1446. &lt;/TD&gt;
  1447. &lt;/TR&gt;
  1448. &lt;/TABLE&gt;
  1449. &lt;P&gt;&amp;nbsp;&lt;P&gt;
  1450. &lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3&gt;
  1451. &lt;TR&gt;
  1452. &lt;TD COLSPAN=7&gt;
  1453. &lt;FONT color="#0000FF" SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SMD TRIM-POT CROSS REFERENCE&lt;/B&gt;&lt;/FONT&gt;
  1454. &lt;P&gt;
  1455. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;
  1456. &lt;/TD&gt;
  1457. &lt;/TR&gt;
  1458. &lt;TR&gt;
  1459. &lt;TD&gt;
  1460. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1461. &lt;/TD&gt;
  1462. &lt;TD&gt;
  1463. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1464. &lt;/TD&gt;
  1465. &lt;TD&gt;
  1466. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1467. &lt;/TD&gt;
  1468. &lt;TD&gt;
  1469. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1470. &lt;/TD&gt;
  1471. &lt;TD&gt;
  1472. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1473. &lt;/TD&gt;
  1474. &lt;TD&gt;
  1475. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1476. &lt;/TD&gt;
  1477. &lt;TD&gt;
  1478. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1479. &lt;/TD&gt;
  1480. &lt;/TR&gt;
  1481. &lt;TR&gt;
  1482. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1483. 3224G&lt;BR&gt;
  1484. 3224J&lt;BR&gt;
  1485. 3224W&lt;BR&gt;
  1486. 3269P&lt;BR&gt;
  1487. 3269W&lt;BR&gt;
  1488. 3269X&lt;BR&gt;&lt;/FONT&gt;
  1489. &lt;/TD&gt;
  1490. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1491. 44G&lt;BR&gt;
  1492. 44J&lt;BR&gt;
  1493. 44W&lt;BR&gt;
  1494. 84P&lt;BR&gt;
  1495. 84W&lt;BR&gt;
  1496. 84X&lt;BR&gt;&lt;/FONT&gt;
  1497. &lt;/TD&gt;
  1498. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1499. -&lt;BR&gt;
  1500. -&lt;BR&gt;
  1501. -&lt;BR&gt;
  1502. ST63Z&lt;BR&gt;
  1503. ST63Y&lt;BR&gt;
  1504. -&lt;BR&gt;&lt;/FONT&gt;
  1505. &lt;/TD&gt;
  1506. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1507. -&lt;BR&gt;
  1508. -&lt;BR&gt;
  1509. -&lt;BR&gt;
  1510. ST5P&lt;BR&gt;
  1511. ST5W&lt;BR&gt;
  1512. ST5X&lt;BR&gt;&lt;/FONT&gt;
  1513. &lt;/TD&gt;
  1514. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1515. -&lt;BR&gt;
  1516. -&lt;BR&gt;
  1517. -&lt;BR&gt;
  1518. -&lt;BR&gt;
  1519. -&lt;BR&gt;
  1520. -&lt;BR&gt;&lt;/FONT&gt;
  1521. &lt;/TD&gt;
  1522. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1523. -&lt;BR&gt;
  1524. -&lt;BR&gt;
  1525. -&lt;BR&gt;
  1526. -&lt;BR&gt;
  1527. -&lt;BR&gt;
  1528. -&lt;BR&gt;&lt;/FONT&gt;
  1529. &lt;/TD&gt;
  1530. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1531. -&lt;BR&gt;
  1532. -&lt;BR&gt;
  1533. -&lt;BR&gt;
  1534. -&lt;BR&gt;
  1535. -&lt;BR&gt;
  1536. -&lt;BR&gt;&lt;/FONT&gt;
  1537. &lt;/TD&gt;
  1538. &lt;/TR&gt;
  1539. &lt;TR&gt;
  1540. &lt;TD COLSPAN=7&gt;&amp;nbsp;
  1541. &lt;/TD&gt;
  1542. &lt;/TR&gt;
  1543. &lt;TR&gt;
  1544. &lt;TD COLSPAN=7&gt;
  1545. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;
  1546. &lt;/TD&gt;
  1547. &lt;/TR&gt;
  1548. &lt;TR&gt;
  1549. &lt;TD&gt;
  1550. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;
  1551. &lt;/TD&gt;
  1552. &lt;TD&gt;
  1553. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;
  1554. &lt;/TD&gt;
  1555. &lt;TD&gt;
  1556. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;
  1557. &lt;/TD&gt;
  1558. &lt;TD&gt;
  1559. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;
  1560. &lt;/TD&gt;
  1561. &lt;TD&gt;
  1562. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;
  1563. &lt;/TD&gt;
  1564. &lt;TD&gt;
  1565. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;
  1566. &lt;/TD&gt;
  1567. &lt;TD&gt;
  1568. &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;
  1569. &lt;/TD&gt;
  1570. &lt;/TR&gt;
  1571. &lt;TR&gt;
  1572. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1573. 3314G&lt;BR&gt;
  1574. 3314J&lt;BR&gt;
  1575. 3364A/B&lt;BR&gt;
  1576. 3364C/D&lt;BR&gt;
  1577. 3364W/X&lt;BR&gt;
  1578. 3313G&lt;BR&gt;
  1579. 3313J&lt;BR&gt;&lt;/FONT&gt;
  1580. &lt;/TD&gt;
  1581. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1582. 23B&lt;BR&gt;
  1583. 23A&lt;BR&gt;
  1584. 21X&lt;BR&gt;
  1585. 21W&lt;BR&gt;
  1586. -&lt;BR&gt;
  1587. 22B&lt;BR&gt;
  1588. 22A&lt;BR&gt;&lt;/FONT&gt;
  1589. &lt;/TD&gt;
  1590. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1591. ST5YL/ST53YL&lt;BR&gt;
  1592. ST5YJ/5T53YJ&lt;BR&gt;
  1593. ST-23A&lt;BR&gt;
  1594. ST-22B&lt;BR&gt;
  1595. ST-22&lt;BR&gt;
  1596. -&lt;BR&gt;
  1597. -&lt;BR&gt;&lt;/FONT&gt;
  1598. &lt;/TD&gt;
  1599. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1600. ST-4B&lt;BR&gt;
  1601. ST-4A&lt;BR&gt;
  1602. -&lt;BR&gt;
  1603. -&lt;BR&gt;
  1604. -&lt;BR&gt;
  1605. ST-3B&lt;BR&gt;
  1606. ST-3A&lt;BR&gt;&lt;/FONT&gt;
  1607. &lt;/TD&gt;
  1608. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1609. -&lt;BR&gt;
  1610. EVM-6YS&lt;BR&gt;
  1611. EVM-1E&lt;BR&gt;
  1612. EVM-1G&lt;BR&gt;
  1613. EVM-1D&lt;BR&gt;
  1614. -&lt;BR&gt;
  1615. -&lt;BR&gt;&lt;/FONT&gt;
  1616. &lt;/TD&gt;
  1617. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1618. G4B&lt;BR&gt;
  1619. G4A&lt;BR&gt;
  1620. TR04-3S1&lt;BR&gt;
  1621. TRG04-2S1&lt;BR&gt;
  1622. -&lt;BR&gt;
  1623. -&lt;BR&gt;
  1624. -&lt;BR&gt;&lt;/FONT&gt;
  1625. &lt;/TD&gt;
  1626. &lt;TD BGCOLOR="#cccccc" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;
  1627. -&lt;BR&gt;
  1628. -&lt;BR&gt;
  1629. DVR-43A&lt;BR&gt;
  1630. CVR-42C&lt;BR&gt;
  1631. CVR-42A/C&lt;BR&gt;
  1632. -&lt;BR&gt;
  1633. -&lt;BR&gt;&lt;/FONT&gt;
  1634. &lt;/TD&gt;
  1635. &lt;/TR&gt;
  1636. &lt;/TABLE&gt;
  1637. &lt;P&gt;
  1638. &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;ALT =&amp;nbsp;ALTERNATE&lt;/B&gt;&lt;/FONT&gt;
  1639. &lt;P&gt;
  1640. &amp;nbsp;
  1641. &lt;P&gt;
  1642. &lt;/td&gt;
  1643. &lt;/tr&gt;
  1644. &lt;/table&gt;
  1645. &lt;/BODY&gt;&lt;/HTML&gt;</description>
  1646. <packages>
  1647. <package name="R0402">
  1648. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1649. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1650. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1651. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1652. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1653. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1654. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1655. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1656. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1657. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1658. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1659. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1660. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1661. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1662. </package>
  1663. <package name="R0603">
  1664. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1665. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  1666. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  1667. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  1668. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  1669. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  1670. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  1671. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1672. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1673. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1674. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1675. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  1676. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  1677. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1678. </package>
  1679. <package name="R0805">
  1680. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  1681. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1682. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1683. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1684. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1685. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1686. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1687. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1688. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1689. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1690. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1691. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1692. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1693. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1694. </package>
  1695. <package name="R0805W">
  1696. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;</description>
  1697. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1698. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1699. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1700. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1701. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1702. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1703. <smd name="1" x="-1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1704. <smd name="2" x="1.0525" y="0" dx="1.5" dy="1" layer="1"/>
  1705. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1706. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1707. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1708. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1709. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1710. </package>
  1711. <package name="R1206">
  1712. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1713. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  1714. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  1715. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1716. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1717. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1718. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1719. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1720. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1721. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1722. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1723. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  1724. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  1725. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1726. </package>
  1727. <package name="R1206W">
  1728. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1729. wave soldering</description>
  1730. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1731. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1732. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1733. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1734. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1735. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1736. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1737. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1738. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1739. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1740. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1741. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1742. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1743. </package>
  1744. <package name="R1210">
  1745. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1746. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1747. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1748. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1749. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1750. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1751. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1752. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1753. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1754. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1755. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1756. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1757. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1758. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  1759. </package>
  1760. <package name="R1210W">
  1761. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1762. wave soldering</description>
  1763. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1764. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1765. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1766. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1767. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1768. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1769. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1770. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1771. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1772. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1773. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1774. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1775. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  1776. </package>
  1777. <package name="R2010">
  1778. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1779. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1780. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1781. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1782. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1783. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1784. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1785. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1786. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1787. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1788. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1789. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1790. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1791. </package>
  1792. <package name="R2010W">
  1793. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1794. wave soldering</description>
  1795. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1796. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1797. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1798. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1799. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1800. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1801. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1802. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1803. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1804. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1805. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1806. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1807. </package>
  1808. <package name="R2012">
  1809. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1810. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1811. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1812. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1813. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1814. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1815. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1816. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1817. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1818. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1819. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1820. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1821. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1822. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1823. </package>
  1824. <package name="R2012W">
  1825. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1826. wave soldering</description>
  1827. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1828. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1829. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1830. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1831. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1832. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1833. <smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1834. <smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
  1835. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1836. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1837. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1838. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1839. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1840. </package>
  1841. <package name="R2512">
  1842. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1843. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1844. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1845. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1846. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1847. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1848. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1849. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1850. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1851. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1852. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1853. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1854. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1855. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1856. </package>
  1857. <package name="R2512W">
  1858. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1859. wave soldering</description>
  1860. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1861. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1862. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1863. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1864. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1865. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1866. <smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1867. <smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
  1868. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1869. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1870. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1871. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1872. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1873. </package>
  1874. <package name="R3216">
  1875. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1876. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1877. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1878. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1879. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1880. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1881. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1882. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1883. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1884. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1885. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1886. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1887. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1888. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1889. </package>
  1890. <package name="R3216W">
  1891. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1892. wave soldering</description>
  1893. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1894. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1895. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1896. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1897. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1898. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1899. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1900. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
  1901. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1902. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1903. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1904. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1905. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1906. </package>
  1907. <package name="R3225">
  1908. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1909. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1910. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1911. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1912. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1913. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1914. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1915. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1916. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1917. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1918. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1919. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1920. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1921. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1922. </package>
  1923. <package name="R3225W">
  1924. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1925. wave soldering</description>
  1926. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1927. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1928. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1929. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1930. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1931. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1932. <smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1933. <smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
  1934. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1935. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1936. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1937. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1938. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1939. </package>
  1940. <package name="R5025">
  1941. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1942. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1943. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1944. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1945. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1946. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1947. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1948. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1949. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1950. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1951. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1952. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1953. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1954. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1955. </package>
  1956. <package name="R5025W">
  1957. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1958. wave soldering</description>
  1959. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1960. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1961. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1962. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1963. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1964. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1965. <smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1966. <smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
  1967. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1968. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1969. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1970. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1971. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1972. </package>
  1973. <package name="R6332">
  1974. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1975. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  1976. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1977. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1978. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1979. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1980. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1981. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1982. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1983. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1984. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1985. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1986. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1987. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1988. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1989. </package>
  1990. <package name="R6332W">
  1991. <description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;
  1992. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  1993. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1994. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1995. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1996. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1997. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1998. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1999. <smd name="1" x="-3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2000. <smd name="2" x="3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
  2001. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2002. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2003. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2004. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2005. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2006. </package>
  2007. <package name="M0805">
  2008. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2009. MELF 0.10 W</description>
  2010. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2011. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2012. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2013. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2014. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2015. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2016. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2017. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2018. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2019. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2020. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2021. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2022. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2023. </package>
  2024. <package name="M1206">
  2025. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2026. MELF 0.25 W</description>
  2027. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2028. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2029. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2030. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2031. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2032. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2033. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2034. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2035. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2036. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2037. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2038. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2039. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2040. </package>
  2041. <package name="M1406">
  2042. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2043. MELF 0.12 W</description>
  2044. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2045. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2046. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2047. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2048. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2049. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2050. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2051. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2052. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2053. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2054. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2055. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2056. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2057. </package>
  2058. <package name="M2012">
  2059. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2060. MELF 0.10 W</description>
  2061. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2062. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2063. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2064. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2065. <wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="51"/>
  2066. <wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="51"/>
  2067. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2068. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
  2069. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2070. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2071. <rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="51"/>
  2072. <rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="51"/>
  2073. <rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
  2074. </package>
  2075. <package name="M2309">
  2076. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2077. MELF 0.25 W</description>
  2078. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2079. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2080. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2081. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2082. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2083. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2084. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2085. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2086. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2087. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2088. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2089. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2090. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2091. </package>
  2092. <package name="M3216">
  2093. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2094. MELF 0.25 W</description>
  2095. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2096. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2097. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2098. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2099. <wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="51"/>
  2100. <wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="51"/>
  2101. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2102. <smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
  2103. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2104. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2105. <rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="51"/>
  2106. <rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="51"/>
  2107. <rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
  2108. </package>
  2109. <package name="M3516">
  2110. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2111. MELF 0.12 W</description>
  2112. <wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
  2113. <wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
  2114. <wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
  2115. <wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
  2116. <wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="51"/>
  2117. <wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="51"/>
  2118. <smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2119. <smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
  2120. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2121. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2122. <rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="51"/>
  2123. <rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="51"/>
  2124. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  2125. </package>
  2126. <package name="M5923">
  2127. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2128. MELF 0.25 W</description>
  2129. <wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
  2130. <wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
  2131. <wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
  2132. <wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
  2133. <wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="51"/>
  2134. <wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="51"/>
  2135. <smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2136. <smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
  2137. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2138. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2139. <rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="51"/>
  2140. <rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="51"/>
  2141. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2142. </package>
  2143. <package name="0204/5">
  2144. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2145. type 0204, grid 5 mm</description>
  2146. <wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="51"/>
  2147. <wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="51"/>
  2148. <wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2149. <wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2150. <wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  2151. <wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  2152. <wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="51"/>
  2153. <wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2154. <wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
  2155. <wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2156. <wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
  2157. <wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2158. <wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
  2159. <wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2160. <wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
  2161. <wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
  2162. <wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
  2163. <wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="51"/>
  2164. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2165. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2166. <text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2167. <text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2168. <rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="51"/>
  2169. <rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="51"/>
  2170. </package>
  2171. <package name="0204/7">
  2172. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2173. type 0204, grid 7.5 mm</description>
  2174. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  2175. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  2176. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2177. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2178. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  2179. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  2180. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  2181. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2182. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  2183. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2184. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  2185. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2186. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  2187. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2188. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  2189. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  2190. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  2191. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  2192. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2193. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2194. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  2195. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  2196. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  2197. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  2198. </package>
  2199. <package name="0204V">
  2200. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2201. type 0204, grid 2.5 mm</description>
  2202. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="51"/>
  2203. <wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
  2204. <circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="51"/>
  2205. <circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="51"/>
  2206. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2207. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2208. <text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2209. <text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2210. </package>
  2211. <package name="0207/10">
  2212. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2213. type 0207, grid 10 mm</description>
  2214. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  2215. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  2216. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2217. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2218. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2219. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2220. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2221. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2222. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2223. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2224. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2225. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2226. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2227. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2228. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2229. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2230. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2231. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2232. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2233. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2234. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2235. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2236. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2237. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2238. </package>
  2239. <package name="0207/12">
  2240. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2241. type 0207, grid 12 mm</description>
  2242. <wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="51"/>
  2243. <wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="51"/>
  2244. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2245. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2246. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2247. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2248. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2249. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2250. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2251. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2252. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2253. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2254. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2255. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2256. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2257. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2258. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2259. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2260. <wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2261. <wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2262. <pad name="1" x="-6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2263. <pad name="2" x="6.35" y="0" drill="0.8128" diameter="1.9304"/>
  2264. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2265. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2266. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2267. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2268. <rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
  2269. <rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  2270. </package>
  2271. <package name="0207/15">
  2272. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2273. type 0207, grid 15mm</description>
  2274. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="51"/>
  2275. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="51"/>
  2276. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2277. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2278. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2279. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2280. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  2281. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2282. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2283. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2284. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2285. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2286. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2287. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2288. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2289. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2290. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2291. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  2292. <wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
  2293. <wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
  2294. <pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
  2295. <pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
  2296. <text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2297. <text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2298. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  2299. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  2300. <rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
  2301. <rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
  2302. </package>
  2303. <package name="0207/2V">
  2304. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2305. type 0207, grid 2.5 mm</description>
  2306. <wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="51"/>
  2307. <wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
  2308. <wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="51"/>
  2309. <circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
  2310. <circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="51"/>
  2311. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2312. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2313. <text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2314. <text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2315. </package>
  2316. <package name="0207/5V">
  2317. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2318. type 0207, grid 5 mm</description>
  2319. <wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="51"/>
  2320. <wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
  2321. <wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="51"/>
  2322. <circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
  2323. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2324. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  2325. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  2326. <text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2327. <text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2328. </package>
  2329. <package name="0207/7">
  2330. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2331. type 0207, grid 7.5 mm</description>
  2332. <wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="51"/>
  2333. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  2334. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  2335. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  2336. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  2337. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="51"/>
  2338. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2339. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  2340. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2341. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  2342. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2343. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  2344. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2345. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  2346. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  2347. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  2348. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="51"/>
  2349. <wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="51"/>
  2350. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  2351. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  2352. <text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2353. <text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2354. <rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="51"/>
  2355. <rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="51"/>
  2356. </package>
  2357. <package name="0309/10">
  2358. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2359. type 0309, grid 10mm</description>
  2360. <wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2361. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2362. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2363. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2364. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2365. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="51"/>
  2366. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2367. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2368. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2369. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2370. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2371. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2372. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2373. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2374. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2375. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2376. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="51"/>
  2377. <wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="51"/>
  2378. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  2379. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  2380. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2381. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2382. <rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="51"/>
  2383. <rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="51"/>
  2384. </package>
  2385. <package name="0309/12">
  2386. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2387. type 0309, grid 12.5 mm</description>
  2388. <wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  2389. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  2390. <wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2391. <wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2392. <wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2393. <wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2394. <wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
  2395. <wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2396. <wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  2397. <wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2398. <wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
  2399. <wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2400. <wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
  2401. <wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2402. <wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
  2403. <wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
  2404. <wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  2405. <wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
  2406. <pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
  2407. <pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
  2408. <text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2409. <text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2410. <rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
  2411. <rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
  2412. </package>
  2413. <package name="0309V">
  2414. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2415. type 0309, grid 2.5 mm</description>
  2416. <wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="51"/>
  2417. <wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="51"/>
  2418. <circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
  2419. <circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="51"/>
  2420. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2421. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2422. <text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2423. <text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2424. <rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="51"/>
  2425. <rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="51"/>
  2426. <rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
  2427. </package>
  2428. <package name="0411/12">
  2429. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2430. type 0411, grid 12.5 mm</description>
  2431. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="51"/>
  2432. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="51"/>
  2433. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2434. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2435. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2436. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2437. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2438. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2439. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2440. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2441. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2442. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2443. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2444. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2445. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2446. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2447. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2448. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2449. <pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
  2450. <pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
  2451. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2452. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2453. <rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2454. <rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
  2455. </package>
  2456. <package name="0411/15">
  2457. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2458. type 0411, grid 15 mm</description>
  2459. <wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
  2460. <wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  2461. <wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2462. <wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  2463. <wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2464. <wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2465. <wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
  2466. <wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2467. <wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
  2468. <wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2469. <wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
  2470. <wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2471. <wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
  2472. <wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
  2473. <wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
  2474. <wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
  2475. <wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="51"/>
  2476. <wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="51"/>
  2477. <pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
  2478. <pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
  2479. <text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2480. <text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2481. <rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
  2482. <rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
  2483. </package>
  2484. <package name="0411V">
  2485. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2486. type 0411, grid 3.81 mm</description>
  2487. <wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="51"/>
  2488. <wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="51"/>
  2489. <circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
  2490. <circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="51"/>
  2491. <pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
  2492. <pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
  2493. <text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2494. <text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2495. <rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
  2496. </package>
  2497. <package name="0414/15">
  2498. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2499. type 0414, grid 15 mm</description>
  2500. <wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="51"/>
  2501. <wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="51"/>
  2502. <wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
  2503. <wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
  2504. <wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  2505. <wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  2506. <wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
  2507. <wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2508. <wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
  2509. <wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2510. <wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
  2511. <wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2512. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  2513. <wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2514. <wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
  2515. <wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
  2516. <wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
  2517. <wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
  2518. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2519. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2520. <text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2521. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2522. <rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
  2523. <rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
  2524. </package>
  2525. <package name="0414V">
  2526. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2527. type 0414, grid 5 mm</description>
  2528. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2529. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2530. <circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
  2531. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2532. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2533. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2534. <text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2535. <text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2536. <rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
  2537. </package>
  2538. <package name="0617/17">
  2539. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2540. type 0617, grid 17.5 mm</description>
  2541. <wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="51"/>
  2542. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2543. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2544. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2545. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2546. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2547. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2548. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2549. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2550. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2551. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2552. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
  2553. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="51"/>
  2554. <wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2555. <wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
  2556. <wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="51"/>
  2557. <wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2558. <wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="51"/>
  2559. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2560. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2561. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2562. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2563. <pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
  2564. <pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
  2565. <text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2566. <text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2567. <rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="51"/>
  2568. <rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="51"/>
  2569. </package>
  2570. <package name="0617/22">
  2571. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2572. type 0617, grid 22.5 mm</description>
  2573. <wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2574. <wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
  2575. <wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2576. <wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
  2577. <wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2578. <wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
  2579. <wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2580. <wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
  2581. <wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2582. <wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
  2583. <wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
  2584. <wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
  2585. <wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
  2586. <wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="51"/>
  2587. <wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2588. <wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2589. <wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2590. <wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2591. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2592. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2593. <text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2594. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2595. <rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
  2596. <rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
  2597. </package>
  2598. <package name="0617V">
  2599. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2600. type 0617, grid 5 mm</description>
  2601. <wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="51"/>
  2602. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="51"/>
  2603. <circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
  2604. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2605. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2606. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2607. <text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2608. <text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2609. <rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2610. </package>
  2611. <package name="0922/22">
  2612. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2613. type 0922, grid 22.5 mm</description>
  2614. <wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="51"/>
  2615. <wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="51"/>
  2616. <wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
  2617. <wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2618. <wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
  2619. <wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2620. <wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
  2621. <wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2622. <wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
  2623. <wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2624. <wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
  2625. <wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
  2626. <wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
  2627. <wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
  2628. <wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  2629. <wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  2630. <wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
  2631. <wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
  2632. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2633. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2634. <text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2635. <text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2636. <rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="51"/>
  2637. <rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2638. <rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
  2639. <rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="51"/>
  2640. </package>
  2641. <package name="P0613V">
  2642. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2643. type 0613, grid 5 mm</description>
  2644. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2645. <wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="51"/>
  2646. <circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
  2647. <circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="51"/>
  2648. <pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
  2649. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2650. <text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2651. <text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2652. <rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2653. </package>
  2654. <package name="P0613/15">
  2655. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2656. type 0613, grid 15 mm</description>
  2657. <wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="51"/>
  2658. <wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="51"/>
  2659. <wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  2660. <wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  2661. <wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  2662. <wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  2663. <wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2664. <wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
  2665. <wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2666. <wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
  2667. <wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2668. <wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
  2669. <wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2670. <wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
  2671. <wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
  2672. <wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
  2673. <wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
  2674. <wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="51"/>
  2675. <wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
  2676. <wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
  2677. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="51"/>
  2678. <wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
  2679. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2680. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2681. <text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2682. <text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2683. <rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="51"/>
  2684. <rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="51"/>
  2685. </package>
  2686. <package name="P0817/22">
  2687. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2688. type 0817, grid 22.5 mm</description>
  2689. <wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="51"/>
  2690. <wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
  2691. <wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2692. <wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
  2693. <wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2694. <wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
  2695. <wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2696. <wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
  2697. <wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2698. <wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
  2699. <wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
  2700. <wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
  2701. <wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
  2702. <wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="51"/>
  2703. <wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  2704. <wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  2705. <wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  2706. <wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  2707. <pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
  2708. <pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
  2709. <text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2710. <text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2711. <text x="6.604" y="-2.2606" size="1.27" layer="51" ratio="10" rot="R90">0817</text>
  2712. <rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
  2713. <rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
  2714. </package>
  2715. <package name="P0817V">
  2716. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2717. type 0817, grid 6.35 mm</description>
  2718. <wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="51"/>
  2719. <wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="51"/>
  2720. <circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
  2721. <circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="51"/>
  2722. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  2723. <pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
  2724. <text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2725. <text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2726. <text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
  2727. <rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
  2728. </package>
  2729. <package name="V234/12">
  2730. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2731. type V234, grid 12.5 mm</description>
  2732. <wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  2733. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  2734. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  2735. <wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  2736. <wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  2737. <wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
  2738. <wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
  2739. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  2740. <wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="51"/>
  2741. <wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="51"/>
  2742. <pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
  2743. <pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
  2744. <text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2745. <text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2746. <rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
  2747. <rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
  2748. </package>
  2749. <package name="V235/17">
  2750. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2751. type V235, grid 17.78 mm</description>
  2752. <wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
  2753. <wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
  2754. <wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
  2755. <wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
  2756. <wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="51"/>
  2757. <wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="51"/>
  2758. <wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
  2759. <wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  2760. <wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  2761. <wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
  2762. <pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
  2763. <pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
  2764. <text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2765. <text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2766. <rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
  2767. <rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
  2768. </package>
  2769. <package name="V526-0">
  2770. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2771. type V526-0, grid 2.5 mm</description>
  2772. <wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  2773. <wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  2774. <wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  2775. <wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  2776. <wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
  2777. <wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
  2778. <wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
  2779. <wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
  2780. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  2781. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  2782. <text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2783. <text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2784. </package>
  2785. <package name="MINI_MELF-0102R">
  2786. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2787. source Beyschlag</description>
  2788. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2789. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2790. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2791. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2792. <smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2793. <smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
  2794. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2795. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2796. </package>
  2797. <package name="MINI_MELF-0102W">
  2798. <description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;
  2799. source Beyschlag</description>
  2800. <wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="51"/>
  2801. <wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="51"/>
  2802. <wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="51"/>
  2803. <wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="51"/>
  2804. <smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2805. <smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
  2806. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2807. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2808. </package>
  2809. <package name="MINI_MELF-0204R">
  2810. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2811. source Beyschlag</description>
  2812. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2813. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2814. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2815. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2816. <wire x1="0.938" y1="0.6" x2="-0.938" y2="0.6" width="0.2032" layer="21"/>
  2817. <wire x1="-0.938" y1="-0.6" x2="0.938" y2="-0.6" width="0.2032" layer="21"/>
  2818. <smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2819. <smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
  2820. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2821. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2822. </package>
  2823. <package name="MINI_MELF-0204W">
  2824. <description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;
  2825. source Beyschlag</description>
  2826. <wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="51"/>
  2827. <wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="51"/>
  2828. <wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="51"/>
  2829. <wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="51"/>
  2830. <wire x1="0.684" y1="0.6" x2="-0.684" y2="0.6" width="0.2032" layer="21"/>
  2831. <wire x1="-0.684" y1="-0.6" x2="0.684" y2="-0.6" width="0.2032" layer="21"/>
  2832. <smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2833. <smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
  2834. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2835. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2836. </package>
  2837. <package name="MINI_MELF-0207R">
  2838. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;
  2839. source Beyschlag</description>
  2840. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  2841. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  2842. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  2843. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  2844. <wire x1="1.2125" y1="1" x2="-1.2125" y2="1" width="0.2032" layer="21"/>
  2845. <wire x1="-1.2125" y1="-1" x2="1.2125" y2="-1" width="0.2032" layer="21"/>
  2846. <smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2847. <smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
  2848. <text x="-2.2225" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  2849. <text x="-2.2225" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2850. </package>
  2851. <package name="MINI_MELF-0207W">
  2852. <description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;
  2853. source Beyschlag</description>
  2854. <wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="51"/>
  2855. <wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="51"/>
  2856. <wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="51"/>
  2857. <wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="51"/>
  2858. <wire x1="1.149" y1="1" x2="-1.149" y2="1" width="0.2032" layer="21"/>
  2859. <wire x1="-1.149" y1="-1" x2="1.149" y2="-1" width="0.2032" layer="21"/>
  2860. <smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  2861. <smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
  2862. <text x="-2.54" y="1.5875" size="1.27" layer="25">&gt;NAME</text>
  2863. <text x="-2.54" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2864. </package>
  2865. <package name="0922V">
  2866. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2867. type 0922, grid 7.5 mm</description>
  2868. <wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="51"/>
  2869. <wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="51"/>
  2870. <circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
  2871. <circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
  2872. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  2873. <pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
  2874. <text x="-0.508" y="1.6764" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2875. <text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2876. <text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
  2877. <rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
  2878. </package>
  2879. <package name="RDH/15">
  2880. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2881. type RDH, grid 15 mm</description>
  2882. <wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="51"/>
  2883. <wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  2884. <wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
  2885. <wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  2886. <wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
  2887. <wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  2888. <wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
  2889. <wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  2890. <wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
  2891. <wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
  2892. <wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
  2893. <wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
  2894. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="51"/>
  2895. <wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
  2896. <wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
  2897. <wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="51"/>
  2898. <wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
  2899. <wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="51"/>
  2900. <wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  2901. <wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
  2902. <wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  2903. <wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
  2904. <pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
  2905. <pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
  2906. <text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2907. <text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2908. <text x="4.572" y="-1.7272" size="1.27" layer="51" ratio="10" rot="R90">RDH</text>
  2909. <rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="51"/>
  2910. <rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="51"/>
  2911. </package>
  2912. <package name="MINI_MELF-0102AX">
  2913. <description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>
  2914. <circle x="0" y="0" radius="0.6" width="0" layer="51"/>
  2915. <circle x="0" y="0" radius="0.6" width="0" layer="52"/>
  2916. <smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
  2917. <smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
  2918. <text x="-1.27" y="0.9525" size="1.27" layer="25">&gt;NAME</text>
  2919. <text x="-1.27" y="-2.2225" size="1.27" layer="27">&gt;VALUE</text>
  2920. <hole x="0" y="0" drill="1.3"/>
  2921. </package>
  2922. <package name="R0201">
  2923. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  2924. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  2925. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  2926. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  2927. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  2928. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  2929. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  2930. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  2931. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  2932. </package>
  2933. <package name="VTA52">
  2934. <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;
  2935. MIL SIZE RBR52&lt;br&gt;
  2936. Source: VISHAY .. vta56.pdf</description>
  2937. <wire x1="-15.24" y1="0" x2="-13.97" y2="0" width="0.6096" layer="51"/>
  2938. <wire x1="12.6225" y1="0.025" x2="12.6225" y2="4.725" width="0.1524" layer="21"/>
  2939. <wire x1="12.6225" y1="4.725" x2="-12.6225" y2="4.725" width="0.1524" layer="21"/>
  2940. <wire x1="-12.6225" y1="4.725" x2="-12.6225" y2="0.025" width="0.1524" layer="21"/>
  2941. <wire x1="-12.6225" y1="0.025" x2="-12.6225" y2="-4.65" width="0.1524" layer="21"/>
  2942. <wire x1="-12.6225" y1="-4.65" x2="12.6225" y2="-4.65" width="0.1524" layer="21"/>
  2943. <wire x1="12.6225" y1="-4.65" x2="12.6225" y2="0.025" width="0.1524" layer="21"/>
  2944. <wire x1="13.97" y1="0" x2="15.24" y2="0" width="0.6096" layer="51"/>
  2945. <pad name="1" x="-15.24" y="0" drill="1.1" shape="octagon"/>
  2946. <pad name="2" x="15.24" y="0" drill="1.1" shape="octagon"/>
  2947. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2948. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2949. <rectangle x1="-13.97" y1="-0.3048" x2="-12.5675" y2="0.3048" layer="21"/>
  2950. <rectangle x1="12.5675" y1="-0.3048" x2="13.97" y2="0.3048" layer="21"/>
  2951. </package>
  2952. <package name="VTA53">
  2953. <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;
  2954. MIL SIZE RBR53&lt;br&gt;
  2955. Source: VISHAY .. vta56.pdf</description>
  2956. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  2957. <wire x1="9.8975" y1="0" x2="9.8975" y2="4.7" width="0.1524" layer="21"/>
  2958. <wire x1="9.8975" y1="4.7" x2="-9.8975" y2="4.7" width="0.1524" layer="21"/>
  2959. <wire x1="-9.8975" y1="4.7" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  2960. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-4.675" width="0.1524" layer="21"/>
  2961. <wire x1="-9.8975" y1="-4.675" x2="9.8975" y2="-4.675" width="0.1524" layer="21"/>
  2962. <wire x1="9.8975" y1="-4.675" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  2963. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  2964. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  2965. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  2966. <text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2967. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2968. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  2969. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  2970. </package>
  2971. <package name="VTA54">
  2972. <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;
  2973. MIL SIZE RBR54&lt;br&gt;
  2974. Source: VISHAY .. vta56.pdf</description>
  2975. <wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="51"/>
  2976. <wire x1="9.8975" y1="0" x2="9.8975" y2="3.3" width="0.1524" layer="21"/>
  2977. <wire x1="9.8975" y1="3.3" x2="-9.8975" y2="3.3" width="0.1524" layer="21"/>
  2978. <wire x1="-9.8975" y1="3.3" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
  2979. <wire x1="-9.8975" y1="0" x2="-9.8975" y2="-3.3" width="0.1524" layer="21"/>
  2980. <wire x1="-9.8975" y1="-3.3" x2="9.8975" y2="-3.3" width="0.1524" layer="21"/>
  2981. <wire x1="9.8975" y1="-3.3" x2="9.8975" y2="0" width="0.1524" layer="21"/>
  2982. <wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="51"/>
  2983. <pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
  2984. <pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
  2985. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  2986. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  2987. <rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
  2988. <rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
  2989. </package>
  2990. <package name="VTA55">
  2991. <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;
  2992. MIL SIZE RBR55&lt;br&gt;
  2993. Source: VISHAY .. vta56.pdf</description>
  2994. <wire x1="-8.255" y1="0" x2="-6.985" y2="0" width="0.6096" layer="51"/>
  2995. <wire x1="6.405" y1="0" x2="6.405" y2="3.3" width="0.1524" layer="21"/>
  2996. <wire x1="6.405" y1="3.3" x2="-6.405" y2="3.3" width="0.1524" layer="21"/>
  2997. <wire x1="-6.405" y1="3.3" x2="-6.405" y2="0" width="0.1524" layer="21"/>
  2998. <wire x1="-6.405" y1="0" x2="-6.405" y2="-3.3" width="0.1524" layer="21"/>
  2999. <wire x1="-6.405" y1="-3.3" x2="6.405" y2="-3.3" width="0.1524" layer="21"/>
  3000. <wire x1="6.405" y1="-3.3" x2="6.405" y2="0" width="0.1524" layer="21"/>
  3001. <wire x1="6.985" y1="0" x2="8.255" y2="0" width="0.6096" layer="51"/>
  3002. <pad name="1" x="-8.255" y="0" drill="1.1" shape="octagon"/>
  3003. <pad name="2" x="8.255" y="0" drill="1.1" shape="octagon"/>
  3004. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3005. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3006. <rectangle x1="-6.985" y1="-0.3048" x2="-6.35" y2="0.3048" layer="21"/>
  3007. <rectangle x1="6.35" y1="-0.3048" x2="6.985" y2="0.3048" layer="21"/>
  3008. </package>
  3009. <package name="VTA56">
  3010. <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;
  3011. MIL SIZE RBR56&lt;br&gt;
  3012. Source: VISHAY .. vta56.pdf</description>
  3013. <wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="51"/>
  3014. <wire x1="4.5" y1="0" x2="4.5" y2="3.3" width="0.1524" layer="21"/>
  3015. <wire x1="4.5" y1="3.3" x2="-4.5" y2="3.3" width="0.1524" layer="21"/>
  3016. <wire x1="-4.5" y1="3.3" x2="-4.5" y2="0" width="0.1524" layer="21"/>
  3017. <wire x1="-4.5" y1="0" x2="-4.5" y2="-3.3" width="0.1524" layer="21"/>
  3018. <wire x1="-4.5" y1="-3.3" x2="4.5" y2="-3.3" width="0.1524" layer="21"/>
  3019. <wire x1="4.5" y1="-3.3" x2="4.5" y2="0" width="0.1524" layer="21"/>
  3020. <wire x1="5.08" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3021. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3022. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3023. <text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3024. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3025. <rectangle x1="-5.08" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
  3026. <rectangle x1="4.445" y1="-0.3048" x2="5.08" y2="0.3048" layer="21"/>
  3027. </package>
  3028. <package name="VMTA55">
  3029. <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;
  3030. MIL SIZE RNC55&lt;br&gt;
  3031. Source: VISHAY .. vta56.pdf</description>
  3032. <wire x1="-5.08" y1="0" x2="-4.26" y2="0" width="0.6096" layer="51"/>
  3033. <wire x1="3.3375" y1="-1.45" x2="3.3375" y2="1.45" width="0.1524" layer="21"/>
  3034. <wire x1="3.3375" y1="1.45" x2="-3.3625" y2="1.45" width="0.1524" layer="21"/>
  3035. <wire x1="-3.3625" y1="1.45" x2="-3.3625" y2="-1.45" width="0.1524" layer="21"/>
  3036. <wire x1="-3.3625" y1="-1.45" x2="3.3375" y2="-1.45" width="0.1524" layer="21"/>
  3037. <wire x1="4.235" y1="0" x2="5.08" y2="0" width="0.6096" layer="51"/>
  3038. <pad name="1" x="-5.08" y="0" drill="1.1" shape="octagon"/>
  3039. <pad name="2" x="5.08" y="0" drill="1.1" shape="octagon"/>
  3040. <text x="-3.175" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3041. <text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3042. <rectangle x1="-4.26" y1="-0.3048" x2="-3.3075" y2="0.3048" layer="21"/>
  3043. <rectangle x1="3.2825" y1="-0.3048" x2="4.235" y2="0.3048" layer="21"/>
  3044. </package>
  3045. <package name="VMTB60">
  3046. <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;
  3047. MIL SIZE RNC60&lt;br&gt;
  3048. Source: VISHAY .. vta56.pdf</description>
  3049. <wire x1="-6.35" y1="0" x2="-5.585" y2="0" width="0.6096" layer="51"/>
  3050. <wire x1="4.6875" y1="-1.95" x2="4.6875" y2="1.95" width="0.1524" layer="21"/>
  3051. <wire x1="4.6875" y1="1.95" x2="-4.6875" y2="1.95" width="0.1524" layer="21"/>
  3052. <wire x1="-4.6875" y1="1.95" x2="-4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3053. <wire x1="-4.6875" y1="-1.95" x2="4.6875" y2="-1.95" width="0.1524" layer="21"/>
  3054. <wire x1="5.585" y1="0" x2="6.35" y2="0" width="0.6096" layer="51"/>
  3055. <pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
  3056. <pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
  3057. <text x="-4.445" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3058. <text x="-4.445" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3059. <rectangle x1="-5.585" y1="-0.3048" x2="-4.6325" y2="0.3048" layer="21"/>
  3060. <rectangle x1="4.6325" y1="-0.3048" x2="5.585" y2="0.3048" layer="21"/>
  3061. </package>
  3062. <package name="R4527">
  3063. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  3064. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  3065. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  3066. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  3067. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  3068. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3069. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3070. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3071. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3072. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3073. </package>
  3074. <package name="WSC0001">
  3075. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3076. Source: VISHAY wscwsn.pdf</description>
  3077. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3078. <wire x1="-3.075" y1="-1.8" x2="3.075" y2="-1.8" width="0.2032" layer="21"/>
  3079. <wire x1="3.075" y1="-1.8" x2="3.075" y2="1.8" width="0.2032" layer="51"/>
  3080. <wire x1="3.075" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3081. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3082. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3083. <wire x1="3.075" y1="1.606" x2="3.075" y2="1.8" width="0.2032" layer="21"/>
  3084. <wire x1="3.075" y1="-1.8" x2="3.075" y2="-1.606" width="0.2032" layer="21"/>
  3085. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3086. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3087. <text x="-2.544" y="2.229" size="1.27" layer="25">&gt;NAME</text>
  3088. <text x="-2.544" y="-3.501" size="1.27" layer="27">&gt;VALUE</text>
  3089. </package>
  3090. <package name="WSC0002">
  3091. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3092. Source: VISHAY wscwsn.pdf</description>
  3093. <wire x1="-5.55" y1="3.375" x2="-5.55" y2="-3.375" width="0.2032" layer="51"/>
  3094. <wire x1="-5.55" y1="-3.375" x2="5.55" y2="-3.375" width="0.2032" layer="21"/>
  3095. <wire x1="5.55" y1="-3.375" x2="5.55" y2="3.375" width="0.2032" layer="51"/>
  3096. <wire x1="5.55" y1="3.375" x2="-5.55" y2="3.375" width="0.2032" layer="21"/>
  3097. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3098. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3099. <text x="-5.65" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3100. <text x="-5.65" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3101. </package>
  3102. <package name="WSC01/2">
  3103. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3104. Source: VISHAY wscwsn.pdf</description>
  3105. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="-1.475" width="0.2032" layer="51"/>
  3106. <wire x1="-2.45" y1="-1.475" x2="2.45" y2="-1.475" width="0.2032" layer="21"/>
  3107. <wire x1="2.45" y1="-1.475" x2="2.45" y2="1.475" width="0.2032" layer="51"/>
  3108. <wire x1="2.45" y1="1.475" x2="-2.45" y2="1.475" width="0.2032" layer="21"/>
  3109. <wire x1="-2.45" y1="1.475" x2="-2.45" y2="1.106" width="0.2032" layer="21"/>
  3110. <wire x1="-2.45" y1="-1.106" x2="-2.45" y2="-1.475" width="0.2032" layer="21"/>
  3111. <wire x1="2.45" y1="1.106" x2="2.45" y2="1.475" width="0.2032" layer="21"/>
  3112. <wire x1="2.45" y1="-1.475" x2="2.45" y2="-1.106" width="0.2032" layer="21"/>
  3113. <smd name="1" x="-2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3114. <smd name="2" x="2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
  3115. <text x="-2.544" y="1.904" size="1.27" layer="25">&gt;NAME</text>
  3116. <text x="-2.544" y="-3.176" size="1.27" layer="27">&gt;VALUE</text>
  3117. </package>
  3118. <package name="WSC2515">
  3119. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3120. Source: VISHAY wscwsn.pdf</description>
  3121. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="51"/>
  3122. <wire x1="-3.075" y1="-1.8" x2="3.05" y2="-1.8" width="0.2032" layer="21"/>
  3123. <wire x1="3.05" y1="-1.8" x2="3.05" y2="1.8" width="0.2032" layer="51"/>
  3124. <wire x1="3.05" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
  3125. <wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
  3126. <wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
  3127. <wire x1="3.05" y1="1.606" x2="3.05" y2="1.8" width="0.2032" layer="21"/>
  3128. <wire x1="3.05" y1="-1.8" x2="3.05" y2="-1.606" width="0.2032" layer="21"/>
  3129. <smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3130. <smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
  3131. <text x="-3.2" y="2.15" size="1.27" layer="25">&gt;NAME</text>
  3132. <text x="-3.2" y="-3.4" size="1.27" layer="27">&gt;VALUE</text>
  3133. </package>
  3134. <package name="WSC4527">
  3135. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3136. Source: VISHAY wscwsn.pdf</description>
  3137. <wire x1="-5.675" y1="3.4" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  3138. <wire x1="-5.675" y1="-3.375" x2="5.675" y2="-3.375" width="0.2032" layer="21"/>
  3139. <wire x1="5.675" y1="-3.375" x2="5.675" y2="3.4" width="0.2032" layer="51"/>
  3140. <wire x1="5.675" y1="3.4" x2="-5.675" y2="3.4" width="0.2032" layer="21"/>
  3141. <smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
  3142. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  3143. <text x="-5.775" y="3.925" size="1.27" layer="25">&gt;NAME</text>
  3144. <text x="-5.775" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3145. </package>
  3146. <package name="WSC6927">
  3147. <description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;
  3148. Source: VISHAY wscwsn.pdf</description>
  3149. <wire x1="-8.65" y1="3.375" x2="-8.65" y2="-3.375" width="0.2032" layer="51"/>
  3150. <wire x1="-8.65" y1="-3.375" x2="8.65" y2="-3.375" width="0.2032" layer="21"/>
  3151. <wire x1="8.65" y1="-3.375" x2="8.65" y2="3.375" width="0.2032" layer="51"/>
  3152. <wire x1="8.65" y1="3.375" x2="-8.65" y2="3.375" width="0.2032" layer="21"/>
  3153. <smd name="1" x="-7.95" y="0.025" dx="3.94" dy="5.97" layer="1"/>
  3154. <smd name="2" x="7.95" y="0" dx="3.94" dy="5.97" layer="1"/>
  3155. <text x="-8.75" y="3.9" size="1.27" layer="25">&gt;NAME</text>
  3156. <text x="-8.75" y="-5.15" size="1.27" layer="27">&gt;VALUE</text>
  3157. </package>
  3158. <package name="R1218">
  3159. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  3160. Source: http://www.vishay.com .. dcrcw.pdf</description>
  3161. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  3162. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  3163. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3164. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  3165. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3166. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3167. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  3168. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  3169. </package>
  3170. <package name="1812X7R">
  3171. <description>&lt;b&gt;Chip Monolithic Ceramic Capacitors&lt;/b&gt; Medium Voltage High Capacitance for General Use&lt;p&gt;
  3172. Source: http://www.murata.com .. GRM43DR72E224KW01.pdf</description>
  3173. <wire x1="-1.1" y1="1.5" x2="1.1" y2="1.5" width="0.2032" layer="51"/>
  3174. <wire x1="1.1" y1="-1.5" x2="-1.1" y2="-1.5" width="0.2032" layer="51"/>
  3175. <wire x1="-0.6" y1="1.5" x2="0.6" y2="1.5" width="0.2032" layer="21"/>
  3176. <wire x1="0.6" y1="-1.5" x2="-0.6" y2="-1.5" width="0.2032" layer="21"/>
  3177. <smd name="1" x="-1.425" y="0" dx="0.8" dy="3.5" layer="1"/>
  3178. <smd name="2" x="1.425" y="0" dx="0.8" dy="3.5" layer="1" rot="R180"/>
  3179. <text x="-1.9456" y="1.9958" size="1.27" layer="25">&gt;NAME</text>
  3180. <text x="-1.9456" y="-3.7738" size="1.27" layer="27">&gt;VALUE</text>
  3181. <rectangle x1="-1.4" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
  3182. <rectangle x1="1.1" y1="-1.6" x2="1.4" y2="1.6" layer="51" rot="R180"/>
  3183. </package>
  3184. <package name="PRL1632">
  3185. <description>&lt;b&gt;PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)&lt;/b&gt;&lt;p&gt;
  3186. Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf</description>
  3187. <wire x1="0.7275" y1="-1.5228" x2="-0.7277" y2="-1.5228" width="0.1524" layer="51"/>
  3188. <wire x1="0.7275" y1="1.5228" x2="-0.7152" y2="1.5228" width="0.1524" layer="51"/>
  3189. <smd name="2" x="0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3190. <smd name="1" x="-0.822" y="0" dx="1" dy="3.2" layer="1"/>
  3191. <text x="-1.4" y="1.8" size="1.27" layer="25">&gt;NAME</text>
  3192. <text x="-1.4" y="-3" size="1.27" layer="27">&gt;VALUE</text>
  3193. <rectangle x1="-0.8" y1="-1.6" x2="-0.4" y2="1.6" layer="51"/>
  3194. <rectangle x1="0.4" y1="-1.6" x2="0.8" y2="1.6" layer="51"/>
  3195. </package>
  3196. <package name="R01005">
  3197. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3198. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  3199. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  3200. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  3201. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  3202. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  3203. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  3204. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  3205. </package>
  3206. <package name="C0402">
  3207. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3208. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  3209. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  3210. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  3211. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  3212. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  3213. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  3214. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  3215. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  3216. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3217. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3218. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  3219. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  3220. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  3221. </package>
  3222. <package name="C0504">
  3223. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3224. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3225. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3226. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3227. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3228. <wire x1="-0.294" y1="0.559" x2="0.294" y2="0.559" width="0.1016" layer="51"/>
  3229. <wire x1="-0.294" y1="-0.559" x2="0.294" y2="-0.559" width="0.1016" layer="51"/>
  3230. <smd name="1" x="-0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3231. <smd name="2" x="0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3232. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3233. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3234. <rectangle x1="-0.6604" y1="-0.6223" x2="-0.2804" y2="0.6276" layer="51"/>
  3235. <rectangle x1="0.2794" y1="-0.6223" x2="0.6594" y2="0.6276" layer="51"/>
  3236. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  3237. </package>
  3238. <package name="C0603">
  3239. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3240. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3241. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3242. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3243. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3244. <wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
  3245. <wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
  3246. <smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3247. <smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3248. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3249. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3250. <rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
  3251. <rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
  3252. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  3253. </package>
  3254. <package name="C0805">
  3255. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;</description>
  3256. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  3257. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  3258. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  3259. <wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
  3260. <wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
  3261. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  3262. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  3263. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  3264. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3265. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3266. <rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
  3267. <rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
  3268. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  3269. </package>
  3270. <package name="C1206">
  3271. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3272. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  3273. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  3274. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  3275. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  3276. <wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
  3277. <wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
  3278. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3279. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3280. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3281. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3282. <rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
  3283. <rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
  3284. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  3285. </package>
  3286. <package name="C1210">
  3287. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3288. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  3289. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  3290. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  3291. <wire x1="-0.9652" y1="1.2446" x2="0.9652" y2="1.2446" width="0.1016" layer="51"/>
  3292. <wire x1="-0.9652" y1="-1.2446" x2="0.9652" y2="-1.2446" width="0.1016" layer="51"/>
  3293. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  3294. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3295. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3296. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  3297. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  3298. <rectangle x1="-1.7018" y1="-1.2954" x2="-0.9517" y2="1.3045" layer="51"/>
  3299. <rectangle x1="0.9517" y1="-1.3045" x2="1.7018" y2="1.2954" layer="51"/>
  3300. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  3301. </package>
  3302. <package name="C1310">
  3303. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3304. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3305. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3306. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3307. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3308. <wire x1="-0.294" y1="0.559" x2="0.294" y2="0.559" width="0.1016" layer="51"/>
  3309. <wire x1="-0.294" y1="-0.559" x2="0.294" y2="-0.559" width="0.1016" layer="51"/>
  3310. <smd name="1" x="-0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3311. <smd name="2" x="0.7" y="0" dx="1" dy="1.3" layer="1"/>
  3312. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3313. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3314. <rectangle x1="-0.6604" y1="-0.6223" x2="-0.2804" y2="0.6276" layer="51"/>
  3315. <rectangle x1="0.2794" y1="-0.6223" x2="0.6594" y2="0.6276" layer="51"/>
  3316. <rectangle x1="-0.1001" y1="-0.3" x2="0.1001" y2="0.3" layer="35"/>
  3317. </package>
  3318. <package name="C1608">
  3319. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3320. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  3321. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  3322. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  3323. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  3324. <wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
  3325. <wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
  3326. <smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3327. <smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
  3328. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  3329. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  3330. <rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
  3331. <rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
  3332. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  3333. </package>
  3334. <package name="C1812">
  3335. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3336. <wire x1="-2.973" y1="1.983" x2="2.973" y2="1.983" width="0.0508" layer="39"/>
  3337. <wire x1="2.973" y1="-1.983" x2="-2.973" y2="-1.983" width="0.0508" layer="39"/>
  3338. <wire x1="-2.973" y1="-1.983" x2="-2.973" y2="1.983" width="0.0508" layer="39"/>
  3339. <wire x1="-1.4732" y1="1.6002" x2="1.4732" y2="1.6002" width="0.1016" layer="51"/>
  3340. <wire x1="-1.4478" y1="-1.6002" x2="1.4732" y2="-1.6002" width="0.1016" layer="51"/>
  3341. <wire x1="2.973" y1="1.983" x2="2.973" y2="-1.983" width="0.0508" layer="39"/>
  3342. <smd name="1" x="-1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3343. <smd name="2" x="1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3344. <text x="-1.905" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3345. <text x="-1.905" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3346. <rectangle x1="-2.3876" y1="-1.651" x2="-1.4376" y2="1.649" layer="51"/>
  3347. <rectangle x1="1.4478" y1="-1.651" x2="2.3978" y2="1.649" layer="51"/>
  3348. <rectangle x1="-0.3" y1="-0.4001" x2="0.3" y2="0.4001" layer="35"/>
  3349. </package>
  3350. <package name="C1825">
  3351. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3352. <wire x1="-2.973" y1="3.483" x2="2.973" y2="3.483" width="0.0508" layer="39"/>
  3353. <wire x1="2.973" y1="-3.483" x2="-2.973" y2="-3.483" width="0.0508" layer="39"/>
  3354. <wire x1="-2.973" y1="-3.483" x2="-2.973" y2="3.483" width="0.0508" layer="39"/>
  3355. <wire x1="-1.4986" y1="3.2766" x2="1.4732" y2="3.2766" width="0.1016" layer="51"/>
  3356. <wire x1="-1.4732" y1="-3.2766" x2="1.4986" y2="-3.2766" width="0.1016" layer="51"/>
  3357. <wire x1="2.973" y1="3.483" x2="2.973" y2="-3.483" width="0.0508" layer="39"/>
  3358. <smd name="1" x="-1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3359. <smd name="2" x="1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3360. <text x="-1.905" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3361. <text x="-1.905" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3362. <rectangle x1="-2.413" y1="-3.3528" x2="-1.463" y2="3.3472" layer="51"/>
  3363. <rectangle x1="1.4478" y1="-3.3528" x2="2.3978" y2="3.3472" layer="51"/>
  3364. <rectangle x1="-0.7" y1="-0.7" x2="0.7" y2="0.7" layer="35"/>
  3365. </package>
  3366. <package name="C2012">
  3367. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3368. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  3369. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  3370. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  3371. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  3372. <wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
  3373. <wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
  3374. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  3375. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  3376. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3377. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3378. <rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
  3379. <rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
  3380. <rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
  3381. </package>
  3382. <package name="C3216">
  3383. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3384. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  3385. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  3386. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  3387. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  3388. <wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
  3389. <wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
  3390. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3391. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  3392. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  3393. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  3394. <rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
  3395. <rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
  3396. <rectangle x1="-0.3" y1="-0.5001" x2="0.3" y2="0.5001" layer="35"/>
  3397. </package>
  3398. <package name="C3225">
  3399. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3400. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  3401. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  3402. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  3403. <wire x1="-0.9652" y1="1.2446" x2="0.9652" y2="1.2446" width="0.1016" layer="51"/>
  3404. <wire x1="-0.9652" y1="-1.2446" x2="0.9652" y2="-1.2446" width="0.1016" layer="51"/>
  3405. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  3406. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3407. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  3408. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  3409. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  3410. <rectangle x1="-1.7018" y1="-1.2954" x2="-0.9517" y2="1.3045" layer="51"/>
  3411. <rectangle x1="0.9517" y1="-1.3045" x2="1.7018" y2="1.2954" layer="51"/>
  3412. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  3413. </package>
  3414. <package name="C4532">
  3415. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3416. <wire x1="-2.973" y1="1.983" x2="2.973" y2="1.983" width="0.0508" layer="39"/>
  3417. <wire x1="2.973" y1="-1.983" x2="-2.973" y2="-1.983" width="0.0508" layer="39"/>
  3418. <wire x1="-2.973" y1="-1.983" x2="-2.973" y2="1.983" width="0.0508" layer="39"/>
  3419. <wire x1="-1.4732" y1="1.6002" x2="1.4732" y2="1.6002" width="0.1016" layer="51"/>
  3420. <wire x1="-1.4478" y1="-1.6002" x2="1.4732" y2="-1.6002" width="0.1016" layer="51"/>
  3421. <wire x1="2.973" y1="1.983" x2="2.973" y2="-1.983" width="0.0508" layer="39"/>
  3422. <smd name="1" x="-1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3423. <smd name="2" x="1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
  3424. <text x="-1.905" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  3425. <text x="-1.905" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  3426. <rectangle x1="-2.3876" y1="-1.651" x2="-1.4376" y2="1.649" layer="51"/>
  3427. <rectangle x1="1.4478" y1="-1.651" x2="2.3978" y2="1.649" layer="51"/>
  3428. <rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
  3429. </package>
  3430. <package name="C4564">
  3431. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  3432. <wire x1="-2.973" y1="3.483" x2="2.973" y2="3.483" width="0.0508" layer="39"/>
  3433. <wire x1="2.973" y1="-3.483" x2="-2.973" y2="-3.483" width="0.0508" layer="39"/>
  3434. <wire x1="-2.973" y1="-3.483" x2="-2.973" y2="3.483" width="0.0508" layer="39"/>
  3435. <wire x1="-1.4986" y1="3.2766" x2="1.4732" y2="3.2766" width="0.1016" layer="51"/>
  3436. <wire x1="-1.4732" y1="-3.2766" x2="1.4986" y2="-3.2766" width="0.1016" layer="51"/>
  3437. <wire x1="2.973" y1="3.483" x2="2.973" y2="-3.483" width="0.0508" layer="39"/>
  3438. <smd name="1" x="-1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3439. <smd name="2" x="1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
  3440. <text x="-1.905" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  3441. <text x="-1.905" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  3442. <rectangle x1="-2.413" y1="-3.3528" x2="-1.463" y2="3.3472" layer="51"/>
  3443. <rectangle x1="1.4478" y1="-3.3528" x2="2.3978" y2="3.3472" layer="51"/>
  3444. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  3445. </package>
  3446. <package name="C025-024X044">
  3447. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3448. grid 2.5 mm, outline 2.4 x 4.4 mm</description>
  3449. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="21"/>
  3450. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3451. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3452. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  3453. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="21"/>
  3454. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  3455. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  3456. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  3457. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  3458. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  3459. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="51"/>
  3460. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="51"/>
  3461. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3462. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3463. <text x="-1.778" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3464. <text x="-1.778" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3465. </package>
  3466. <package name="C025-025X050">
  3467. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3468. grid 2.5 mm, outline 2.5 x 5 mm</description>
  3469. <wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
  3470. <wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
  3471. <wire x1="2.413" y1="1.016" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
  3472. <wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  3473. <wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3474. <wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3475. <wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3476. <wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3477. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3478. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3479. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3480. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3481. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3482. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3483. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3484. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3485. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3486. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3487. <text x="-2.286" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3488. <text x="-2.286" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3489. </package>
  3490. <package name="C025-030X050">
  3491. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3492. grid 2.5 mm, outline 3 x 5 mm</description>
  3493. <wire x1="-2.159" y1="1.524" x2="2.159" y2="1.524" width="0.1524" layer="21"/>
  3494. <wire x1="2.159" y1="-1.524" x2="-2.159" y2="-1.524" width="0.1524" layer="21"/>
  3495. <wire x1="2.413" y1="1.27" x2="2.413" y2="-1.27" width="0.1524" layer="21"/>
  3496. <wire x1="-2.413" y1="1.27" x2="-2.413" y2="-1.27" width="0.1524" layer="21"/>
  3497. <wire x1="2.159" y1="1.524" x2="2.413" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3498. <wire x1="-2.413" y1="1.27" x2="-2.159" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3499. <wire x1="2.159" y1="-1.524" x2="2.413" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3500. <wire x1="-2.413" y1="-1.27" x2="-2.159" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3501. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3502. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3503. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3504. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3505. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3506. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3507. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3508. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3509. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3510. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3511. <text x="-2.286" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3512. <text x="-2.286" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3513. </package>
  3514. <package name="C025-040X050">
  3515. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3516. grid 2.5 mm, outline 4 x 5 mm</description>
  3517. <wire x1="-2.159" y1="1.905" x2="2.159" y2="1.905" width="0.1524" layer="21"/>
  3518. <wire x1="2.159" y1="-1.905" x2="-2.159" y2="-1.905" width="0.1524" layer="21"/>
  3519. <wire x1="2.413" y1="1.651" x2="2.413" y2="-1.651" width="0.1524" layer="21"/>
  3520. <wire x1="-2.413" y1="1.651" x2="-2.413" y2="-1.651" width="0.1524" layer="21"/>
  3521. <wire x1="2.159" y1="1.905" x2="2.413" y2="1.651" width="0.1524" layer="21" curve="-90"/>
  3522. <wire x1="-2.413" y1="1.651" x2="-2.159" y2="1.905" width="0.1524" layer="21" curve="-90"/>
  3523. <wire x1="2.159" y1="-1.905" x2="2.413" y2="-1.651" width="0.1524" layer="21" curve="90"/>
  3524. <wire x1="-2.413" y1="-1.651" x2="-2.159" y2="-1.905" width="0.1524" layer="21" curve="90"/>
  3525. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3526. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3527. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3528. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3529. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3530. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3531. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3532. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3533. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3534. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3535. <text x="-2.286" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3536. <text x="-2.286" y="-3.429" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3537. </package>
  3538. <package name="C025-050X050">
  3539. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3540. grid 2.5 mm, outline 5 x 5 mm</description>
  3541. <wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
  3542. <wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
  3543. <wire x1="2.413" y1="2.032" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
  3544. <wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
  3545. <wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3546. <wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3547. <wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3548. <wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3549. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3550. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3551. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3552. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3553. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3554. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3555. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3556. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3557. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3558. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3559. <text x="-2.286" y="2.54" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3560. <text x="-2.286" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3561. </package>
  3562. <package name="C025-060X050">
  3563. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3564. grid 2.5 mm, outline 6 x 5 mm</description>
  3565. <wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
  3566. <wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
  3567. <wire x1="2.413" y1="2.54" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
  3568. <wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
  3569. <wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3570. <wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  3571. <wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3572. <wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  3573. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3574. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3575. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3576. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3577. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3578. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3579. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3580. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3581. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3582. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3583. <text x="-2.286" y="3.048" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3584. <text x="-2.032" y="-2.413" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3585. </package>
  3586. <package name="C025_050-024X070">
  3587. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3588. grid 2.5 mm + 5 mm, outline 2.4 x 7 mm</description>
  3589. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="51"/>
  3590. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3591. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3592. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  3593. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="51"/>
  3594. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  3595. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  3596. <wire x1="-4.191" y1="-1.143" x2="-3.9624" y2="-1.143" width="0.1524" layer="21"/>
  3597. <wire x1="-4.191" y1="1.143" x2="-3.9624" y2="1.143" width="0.1524" layer="21"/>
  3598. <wire x1="-4.699" y1="-0.635" x2="-4.191" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3599. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  3600. <wire x1="-4.699" y1="0.635" x2="-4.191" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3601. <wire x1="-4.699" y1="-0.635" x2="-4.699" y2="0.635" width="0.1524" layer="21"/>
  3602. <wire x1="-3.429" y1="1.143" x2="-2.5654" y2="1.143" width="0.1524" layer="21"/>
  3603. <wire x1="-3.429" y1="-1.143" x2="-2.5654" y2="-1.143" width="0.1524" layer="21"/>
  3604. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  3605. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  3606. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="51"/>
  3607. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="51"/>
  3608. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  3609. <pad name="2" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3610. <pad name="3" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3611. <text x="-3.81" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3612. <text x="-3.81" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3613. </package>
  3614. <package name="C025_050-025X075">
  3615. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3616. grid 2.5 + 5 mm, outline 2.5 x 7.5 mm</description>
  3617. <wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
  3618. <wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
  3619. <wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  3620. <wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3621. <wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3622. <wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3623. <wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3624. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3625. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3626. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3627. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3628. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3629. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3630. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3631. <wire x1="4.953" y1="1.016" x2="4.953" y2="-1.016" width="0.1524" layer="21"/>
  3632. <wire x1="4.699" y1="1.27" x2="4.953" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3633. <wire x1="4.699" y1="-1.27" x2="4.953" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3634. <wire x1="2.794" y1="1.27" x2="4.699" y2="1.27" width="0.1524" layer="21"/>
  3635. <wire x1="4.699" y1="-1.27" x2="2.794" y2="-1.27" width="0.1524" layer="21"/>
  3636. <wire x1="2.413" y1="1.016" x2="2.413" y2="0.762" width="0.1524" layer="21"/>
  3637. <wire x1="2.413" y1="-0.762" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
  3638. <wire x1="2.413" y1="0.254" x2="2.413" y2="-0.254" width="0.1524" layer="21"/>
  3639. <wire x1="1.778" y1="0" x2="2.286" y2="0" width="0.1524" layer="51"/>
  3640. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3641. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3642. <wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="51"/>
  3643. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3644. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3645. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3646. <text x="-2.159" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3647. <text x="-2.159" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3648. </package>
  3649. <package name="C025_050-035X075">
  3650. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3651. grid 2.5 + 5 mm, outline 3.5 x 7.5 mm</description>
  3652. <wire x1="-2.159" y1="1.778" x2="2.159" y2="1.778" width="0.1524" layer="21"/>
  3653. <wire x1="2.159" y1="-1.778" x2="-2.159" y2="-1.778" width="0.1524" layer="21"/>
  3654. <wire x1="-2.413" y1="1.524" x2="-2.413" y2="-1.524" width="0.1524" layer="21"/>
  3655. <wire x1="2.159" y1="1.778" x2="2.413" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3656. <wire x1="-2.413" y1="1.524" x2="-2.159" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  3657. <wire x1="2.159" y1="-1.778" x2="2.413" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3658. <wire x1="-2.413" y1="-1.524" x2="-2.159" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  3659. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3660. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3661. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3662. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3663. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3664. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3665. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3666. <wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
  3667. <wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3668. <wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3669. <wire x1="2.794" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
  3670. <wire x1="4.699" y1="-1.778" x2="2.794" y2="-1.778" width="0.1524" layer="21"/>
  3671. <wire x1="2.413" y1="1.524" x2="2.413" y2="1.016" width="0.1524" layer="21"/>
  3672. <wire x1="2.413" y1="-1.016" x2="2.413" y2="-1.524" width="0.1524" layer="21"/>
  3673. <wire x1="2.413" y1="0.508" x2="2.413" y2="-0.508" width="0.1524" layer="21"/>
  3674. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  3675. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3676. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3677. <wire x1="2.286" y1="0" x2="1.778" y2="0" width="0.1524" layer="51"/>
  3678. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3679. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3680. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3681. <text x="-2.286" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3682. <text x="-2.286" y="-3.302" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3683. </package>
  3684. <package name="C025_050-045X075">
  3685. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3686. grid 2.5 + 5 mm, outline 4.5 x 7.5 mm</description>
  3687. <wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
  3688. <wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
  3689. <wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
  3690. <wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3691. <wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3692. <wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3693. <wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3694. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3695. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3696. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3697. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3698. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3699. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3700. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3701. <wire x1="4.953" y1="2.032" x2="4.953" y2="-2.032" width="0.1524" layer="21"/>
  3702. <wire x1="4.699" y1="2.286" x2="4.953" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3703. <wire x1="4.699" y1="-2.286" x2="4.953" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3704. <wire x1="2.794" y1="2.286" x2="4.699" y2="2.286" width="0.1524" layer="21"/>
  3705. <wire x1="4.699" y1="-2.286" x2="2.794" y2="-2.286" width="0.1524" layer="21"/>
  3706. <wire x1="2.413" y1="2.032" x2="2.413" y2="1.397" width="0.1524" layer="21"/>
  3707. <wire x1="2.413" y1="-1.397" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
  3708. <wire x1="2.413" y1="0.762" x2="2.413" y2="-0.762" width="0.1524" layer="21"/>
  3709. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3710. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3711. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  3712. <wire x1="2.286" y1="0" x2="1.778" y2="0" width="0.1524" layer="51"/>
  3713. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3714. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3715. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3716. <text x="-2.286" y="2.667" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3717. <text x="-2.286" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3718. </package>
  3719. <package name="C025_050-055X075">
  3720. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3721. grid 2.5 + 5 mm, outline 5.5 x 7.5 mm</description>
  3722. <wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
  3723. <wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
  3724. <wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
  3725. <wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3726. <wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  3727. <wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3728. <wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  3729. <wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
  3730. <wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
  3731. <wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
  3732. <wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
  3733. <wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
  3734. <wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
  3735. <wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
  3736. <wire x1="4.953" y1="2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
  3737. <wire x1="4.699" y1="2.794" x2="4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3738. <wire x1="4.699" y1="-2.794" x2="4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3739. <wire x1="2.794" y1="2.794" x2="4.699" y2="2.794" width="0.1524" layer="21"/>
  3740. <wire x1="4.699" y1="-2.794" x2="2.794" y2="-2.794" width="0.1524" layer="21"/>
  3741. <wire x1="2.413" y1="2.54" x2="2.413" y2="2.032" width="0.1524" layer="21"/>
  3742. <wire x1="2.413" y1="-2.032" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
  3743. <wire x1="2.413" y1="0.762" x2="2.413" y2="-0.762" width="0.1524" layer="21"/>
  3744. <wire x1="1.778" y1="0" x2="2.286" y2="0" width="0.1524" layer="51"/>
  3745. <wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
  3746. <wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="51"/>
  3747. <wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="51"/>
  3748. <pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  3749. <pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  3750. <pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  3751. <text x="-2.286" y="3.175" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3752. <text x="-2.032" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3753. </package>
  3754. <package name="C050-024X044">
  3755. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3756. grid 5 mm, outline 2.4 x 4.4 mm</description>
  3757. <wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="51"/>
  3758. <wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  3759. <wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  3760. <wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
  3761. <wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="51"/>
  3762. <wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
  3763. <wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
  3764. <wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
  3765. <wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3766. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
  3767. <wire x1="0.3302" y1="0.762" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3768. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
  3769. <wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="21"/>
  3770. <wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="21"/>
  3771. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3772. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3773. <text x="-2.159" y="1.397" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3774. <text x="-2.159" y="-2.667" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3775. <rectangle x1="2.159" y1="-0.381" x2="2.54" y2="0.381" layer="51"/>
  3776. <rectangle x1="-2.54" y1="-0.381" x2="-2.159" y2="0.381" layer="51"/>
  3777. </package>
  3778. <package name="C050-025X075">
  3779. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3780. grid 5 mm, outline 2.5 x 7.5 mm</description>
  3781. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3782. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3783. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3784. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3785. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3786. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3787. <wire x1="-3.683" y1="1.016" x2="-3.683" y2="-1.016" width="0.1524" layer="21"/>
  3788. <wire x1="-3.429" y1="-1.27" x2="3.429" y2="-1.27" width="0.1524" layer="21"/>
  3789. <wire x1="3.683" y1="-1.016" x2="3.683" y2="1.016" width="0.1524" layer="21"/>
  3790. <wire x1="3.429" y1="1.27" x2="-3.429" y2="1.27" width="0.1524" layer="21"/>
  3791. <wire x1="3.429" y1="1.27" x2="3.683" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  3792. <wire x1="3.429" y1="-1.27" x2="3.683" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  3793. <wire x1="-3.683" y1="-1.016" x2="-3.429" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3794. <wire x1="-3.683" y1="1.016" x2="-3.429" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3795. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3796. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3797. <text x="-3.429" y="1.651" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3798. <text x="-3.429" y="-2.794" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3799. </package>
  3800. <package name="C050-045X075">
  3801. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3802. grid 5 mm, outline 4.5 x 7.5 mm</description>
  3803. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3804. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3805. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3806. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3807. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3808. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3809. <wire x1="-3.683" y1="2.032" x2="-3.683" y2="-2.032" width="0.1524" layer="21"/>
  3810. <wire x1="-3.429" y1="-2.286" x2="3.429" y2="-2.286" width="0.1524" layer="21"/>
  3811. <wire x1="3.683" y1="-2.032" x2="3.683" y2="2.032" width="0.1524" layer="21"/>
  3812. <wire x1="3.429" y1="2.286" x2="-3.429" y2="2.286" width="0.1524" layer="21"/>
  3813. <wire x1="3.429" y1="2.286" x2="3.683" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3814. <wire x1="3.429" y1="-2.286" x2="3.683" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3815. <wire x1="-3.683" y1="-2.032" x2="-3.429" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3816. <wire x1="-3.683" y1="2.032" x2="-3.429" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3817. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3818. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3819. <text x="-3.556" y="2.667" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3820. <text x="-3.556" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3821. </package>
  3822. <package name="C050-030X075">
  3823. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3824. grid 5 mm, outline 3 x 7.5 mm</description>
  3825. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3826. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3827. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3828. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3829. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3830. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3831. <wire x1="-3.683" y1="1.27" x2="-3.683" y2="-1.27" width="0.1524" layer="21"/>
  3832. <wire x1="-3.429" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
  3833. <wire x1="3.683" y1="-1.27" x2="3.683" y2="1.27" width="0.1524" layer="21"/>
  3834. <wire x1="3.429" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
  3835. <wire x1="3.429" y1="1.524" x2="3.683" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3836. <wire x1="3.429" y1="-1.524" x2="3.683" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3837. <wire x1="-3.683" y1="-1.27" x2="-3.429" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3838. <wire x1="-3.683" y1="1.27" x2="-3.429" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3839. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3840. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3841. <text x="-3.556" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3842. <text x="-3.556" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3843. </package>
  3844. <package name="C050-050X075">
  3845. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3846. grid 5 mm, outline 5 x 7.5 mm</description>
  3847. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3848. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3849. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3850. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3851. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3852. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3853. <wire x1="-3.683" y1="2.286" x2="-3.683" y2="-2.286" width="0.1524" layer="21"/>
  3854. <wire x1="-3.429" y1="-2.54" x2="3.429" y2="-2.54" width="0.1524" layer="21"/>
  3855. <wire x1="3.683" y1="-2.286" x2="3.683" y2="2.286" width="0.1524" layer="21"/>
  3856. <wire x1="3.429" y1="2.54" x2="-3.429" y2="2.54" width="0.1524" layer="21"/>
  3857. <wire x1="3.429" y1="2.54" x2="3.683" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3858. <wire x1="3.429" y1="-2.54" x2="3.683" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3859. <wire x1="-3.683" y1="-2.286" x2="-3.429" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3860. <wire x1="-3.683" y1="2.286" x2="-3.429" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3861. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3862. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3863. <text x="-3.429" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3864. <text x="-3.175" y="-2.159" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3865. </package>
  3866. <package name="C050-055X075">
  3867. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3868. grid 5 mm, outline 5.5 x 7.5 mm</description>
  3869. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  3870. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  3871. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  3872. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  3873. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  3874. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3875. <wire x1="-3.683" y1="2.54" x2="-3.683" y2="-2.54" width="0.1524" layer="21"/>
  3876. <wire x1="-3.429" y1="-2.794" x2="3.429" y2="-2.794" width="0.1524" layer="21"/>
  3877. <wire x1="3.683" y1="-2.54" x2="3.683" y2="2.54" width="0.1524" layer="21"/>
  3878. <wire x1="3.429" y1="2.794" x2="-3.429" y2="2.794" width="0.1524" layer="21"/>
  3879. <wire x1="3.429" y1="2.794" x2="3.683" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3880. <wire x1="3.429" y1="-2.794" x2="3.683" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3881. <wire x1="-3.683" y1="-2.54" x2="-3.429" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  3882. <wire x1="-3.683" y1="2.54" x2="-3.429" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  3883. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3884. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3885. <text x="-3.429" y="3.175" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3886. <text x="-3.302" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3887. </package>
  3888. <package name="C050-075X075">
  3889. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3890. grid 5 mm, outline 7.5 x 7.5 mm</description>
  3891. <wire x1="-1.524" y1="0" x2="-0.4572" y2="0" width="0.1524" layer="21"/>
  3892. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="0.762" width="0.4064" layer="21"/>
  3893. <wire x1="-0.4572" y1="0" x2="-0.4572" y2="-0.762" width="0.4064" layer="21"/>
  3894. <wire x1="0.4318" y1="0.762" x2="0.4318" y2="0" width="0.4064" layer="21"/>
  3895. <wire x1="0.4318" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  3896. <wire x1="0.4318" y1="0" x2="0.4318" y2="-0.762" width="0.4064" layer="21"/>
  3897. <wire x1="-3.683" y1="3.429" x2="-3.683" y2="-3.429" width="0.1524" layer="21"/>
  3898. <wire x1="-3.429" y1="-3.683" x2="3.429" y2="-3.683" width="0.1524" layer="21"/>
  3899. <wire x1="3.683" y1="-3.429" x2="3.683" y2="3.429" width="0.1524" layer="21"/>
  3900. <wire x1="3.429" y1="3.683" x2="-3.429" y2="3.683" width="0.1524" layer="21"/>
  3901. <wire x1="3.429" y1="3.683" x2="3.683" y2="3.429" width="0.1524" layer="21" curve="-90"/>
  3902. <wire x1="3.429" y1="-3.683" x2="3.683" y2="-3.429" width="0.1524" layer="21" curve="90"/>
  3903. <wire x1="-3.683" y1="-3.429" x2="-3.429" y2="-3.683" width="0.1524" layer="21" curve="90"/>
  3904. <wire x1="-3.683" y1="3.429" x2="-3.429" y2="3.683" width="0.1524" layer="21" curve="-90"/>
  3905. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3906. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3907. <text x="-3.429" y="4.064" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3908. <text x="-3.175" y="-2.921" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3909. </package>
  3910. <package name="C050H075X075">
  3911. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3912. Horizontal, grid 5 mm, outline 7.5 x 7.5 mm</description>
  3913. <wire x1="-3.683" y1="7.112" x2="-3.683" y2="0.508" width="0.1524" layer="21"/>
  3914. <wire x1="-3.683" y1="0.508" x2="-3.302" y2="0.508" width="0.1524" layer="21"/>
  3915. <wire x1="-3.302" y1="0.508" x2="-1.778" y2="0.508" width="0.1524" layer="51"/>
  3916. <wire x1="-1.778" y1="0.508" x2="1.778" y2="0.508" width="0.1524" layer="21"/>
  3917. <wire x1="1.778" y1="0.508" x2="3.302" y2="0.508" width="0.1524" layer="51"/>
  3918. <wire x1="3.302" y1="0.508" x2="3.683" y2="0.508" width="0.1524" layer="21"/>
  3919. <wire x1="3.683" y1="0.508" x2="3.683" y2="7.112" width="0.1524" layer="21"/>
  3920. <wire x1="3.175" y1="7.62" x2="-3.175" y2="7.62" width="0.1524" layer="21"/>
  3921. <wire x1="-0.3048" y1="2.413" x2="-0.3048" y2="1.778" width="0.3048" layer="21"/>
  3922. <wire x1="-0.3048" y1="1.778" x2="-0.3048" y2="1.143" width="0.3048" layer="21"/>
  3923. <wire x1="-0.3048" y1="1.778" x2="-1.651" y2="1.778" width="0.1524" layer="21"/>
  3924. <wire x1="0.3302" y1="2.413" x2="0.3302" y2="1.778" width="0.3048" layer="21"/>
  3925. <wire x1="0.3302" y1="1.778" x2="0.3302" y2="1.143" width="0.3048" layer="21"/>
  3926. <wire x1="0.3302" y1="1.778" x2="1.651" y2="1.778" width="0.1524" layer="21"/>
  3927. <wire x1="-3.683" y1="7.112" x2="-3.175" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  3928. <wire x1="3.175" y1="7.62" x2="3.683" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  3929. <wire x1="-2.54" y1="0" x2="-2.54" y2="0.254" width="0.508" layer="51"/>
  3930. <wire x1="2.54" y1="0" x2="2.54" y2="0.254" width="0.508" layer="51"/>
  3931. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  3932. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  3933. <text x="-3.302" y="8.001" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3934. <text x="-3.175" y="3.175" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3935. <rectangle x1="-2.794" y1="0.127" x2="-2.286" y2="0.508" layer="51"/>
  3936. <rectangle x1="2.286" y1="0.127" x2="2.794" y2="0.508" layer="51"/>
  3937. </package>
  3938. <package name="C075-032X103">
  3939. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3940. grid 7.5 mm, outline 3.2 x 10.3 mm</description>
  3941. <wire x1="4.826" y1="1.524" x2="-4.826" y2="1.524" width="0.1524" layer="21"/>
  3942. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="-1.27" width="0.1524" layer="21"/>
  3943. <wire x1="-4.826" y1="-1.524" x2="4.826" y2="-1.524" width="0.1524" layer="21"/>
  3944. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.1524" layer="21"/>
  3945. <wire x1="4.826" y1="1.524" x2="5.08" y2="1.27" width="0.1524" layer="21" curve="-90"/>
  3946. <wire x1="4.826" y1="-1.524" x2="5.08" y2="-1.27" width="0.1524" layer="21" curve="90"/>
  3947. <wire x1="-5.08" y1="-1.27" x2="-4.826" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  3948. <wire x1="-5.08" y1="1.27" x2="-4.826" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  3949. <wire x1="0.508" y1="0" x2="2.54" y2="0" width="0.1524" layer="21"/>
  3950. <wire x1="-2.54" y1="0" x2="-0.508" y2="0" width="0.1524" layer="21"/>
  3951. <wire x1="-0.508" y1="0.889" x2="-0.508" y2="0" width="0.4064" layer="21"/>
  3952. <wire x1="-0.508" y1="0" x2="-0.508" y2="-0.889" width="0.4064" layer="21"/>
  3953. <wire x1="0.508" y1="0.889" x2="0.508" y2="0" width="0.4064" layer="21"/>
  3954. <wire x1="0.508" y1="0" x2="0.508" y2="-0.889" width="0.4064" layer="21"/>
  3955. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  3956. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  3957. <text x="-4.826" y="1.905" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3958. <text x="-4.826" y="-3.048" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3959. </package>
  3960. <package name="C075-042X103">
  3961. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3962. grid 7.5 mm, outline 4.2 x 10.3 mm</description>
  3963. <wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
  3964. <wire x1="-5.08" y1="1.778" x2="-5.08" y2="-1.778" width="0.1524" layer="21"/>
  3965. <wire x1="-4.826" y1="-2.032" x2="4.826" y2="-2.032" width="0.1524" layer="21"/>
  3966. <wire x1="5.08" y1="-1.778" x2="5.08" y2="1.778" width="0.1524" layer="21"/>
  3967. <wire x1="4.826" y1="2.032" x2="5.08" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  3968. <wire x1="4.826" y1="-2.032" x2="5.08" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  3969. <wire x1="-5.08" y1="-1.778" x2="-4.826" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  3970. <wire x1="-5.08" y1="1.778" x2="-4.826" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  3971. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  3972. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  3973. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  3974. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  3975. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  3976. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  3977. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  3978. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  3979. <text x="-4.699" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  3980. <text x="-0.635" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  3981. </package>
  3982. <package name="C075-052X106">
  3983. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  3984. grid 7.5 mm, outline 5.2 x 10.6 mm</description>
  3985. <wire x1="4.953" y1="2.54" x2="-4.953" y2="2.54" width="0.1524" layer="21"/>
  3986. <wire x1="-5.207" y1="2.286" x2="-5.207" y2="-2.286" width="0.1524" layer="21"/>
  3987. <wire x1="-4.953" y1="-2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
  3988. <wire x1="5.207" y1="-2.286" x2="5.207" y2="2.286" width="0.1524" layer="21"/>
  3989. <wire x1="4.953" y1="2.54" x2="5.207" y2="2.286" width="0.1524" layer="21" curve="-90"/>
  3990. <wire x1="4.953" y1="-2.54" x2="5.207" y2="-2.286" width="0.1524" layer="21" curve="90"/>
  3991. <wire x1="-5.207" y1="-2.286" x2="-4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  3992. <wire x1="-5.207" y1="2.286" x2="-4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  3993. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  3994. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  3995. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  3996. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  3997. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  3998. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  3999. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  4000. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  4001. <text x="-4.826" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4002. <text x="-0.635" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4003. </package>
  4004. <package name="C102-043X133">
  4005. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4006. grid 10.2 mm, outline 4.3 x 13.3 mm</description>
  4007. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4008. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  4009. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  4010. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4011. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4012. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4013. <wire x1="-6.096" y1="2.032" x2="6.096" y2="2.032" width="0.1524" layer="21"/>
  4014. <wire x1="6.604" y1="1.524" x2="6.604" y2="-1.524" width="0.1524" layer="21"/>
  4015. <wire x1="6.096" y1="-2.032" x2="-6.096" y2="-2.032" width="0.1524" layer="21"/>
  4016. <wire x1="-6.604" y1="-1.524" x2="-6.604" y2="1.524" width="0.1524" layer="21"/>
  4017. <wire x1="6.096" y1="2.032" x2="6.604" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4018. <wire x1="6.096" y1="-2.032" x2="6.604" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4019. <wire x1="-6.604" y1="-1.524" x2="-6.096" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4020. <wire x1="-6.604" y1="1.524" x2="-6.096" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4021. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  4022. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  4023. <text x="-6.096" y="2.413" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4024. <text x="-1.524" y="-1.651" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4025. </package>
  4026. <package name="C102-054X133">
  4027. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4028. grid 10.2 mm, outline 5.4 x 13.3 mm</description>
  4029. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4030. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  4031. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  4032. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4033. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4034. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4035. <wire x1="-6.096" y1="2.54" x2="6.096" y2="2.54" width="0.1524" layer="21"/>
  4036. <wire x1="6.604" y1="2.032" x2="6.604" y2="-2.032" width="0.1524" layer="21"/>
  4037. <wire x1="6.096" y1="-2.54" x2="-6.096" y2="-2.54" width="0.1524" layer="21"/>
  4038. <wire x1="-6.604" y1="-2.032" x2="-6.604" y2="2.032" width="0.1524" layer="21"/>
  4039. <wire x1="6.096" y1="2.54" x2="6.604" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4040. <wire x1="6.096" y1="-2.54" x2="6.604" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4041. <wire x1="-6.604" y1="-2.032" x2="-6.096" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4042. <wire x1="-6.604" y1="2.032" x2="-6.096" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4043. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  4044. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  4045. <text x="-6.096" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4046. <text x="-1.524" y="-1.905" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4047. </package>
  4048. <package name="C102-064X133">
  4049. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4050. grid 10.2 mm, outline 6.4 x 13.3 mm</description>
  4051. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4052. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  4053. <wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
  4054. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4055. <wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4056. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4057. <wire x1="-6.096" y1="3.048" x2="6.096" y2="3.048" width="0.1524" layer="21"/>
  4058. <wire x1="6.604" y1="2.54" x2="6.604" y2="-2.54" width="0.1524" layer="21"/>
  4059. <wire x1="6.096" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
  4060. <wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
  4061. <wire x1="6.096" y1="3.048" x2="6.604" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4062. <wire x1="6.096" y1="-3.048" x2="6.604" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4063. <wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4064. <wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4065. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  4066. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  4067. <text x="-6.096" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4068. <text x="-1.524" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4069. </package>
  4070. <package name="C102_152-062X184">
  4071. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4072. grid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm</description>
  4073. <wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
  4074. <wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
  4075. <wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
  4076. <wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
  4077. <wire x1="-3.683" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
  4078. <wire x1="-2.286" y1="0" x2="3.683" y2="0" width="0.1524" layer="21"/>
  4079. <wire x1="6.477" y1="0" x2="8.636" y2="0" width="0.1524" layer="21"/>
  4080. <wire x1="-6.096" y1="3.048" x2="6.223" y2="3.048" width="0.1524" layer="21"/>
  4081. <wire x1="6.223" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
  4082. <wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
  4083. <wire x1="6.223" y1="3.048" x2="6.731" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4084. <wire x1="6.223" y1="-3.048" x2="6.731" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4085. <wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4086. <wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4087. <wire x1="6.731" y1="2.54" x2="6.731" y2="-2.54" width="0.1524" layer="21"/>
  4088. <wire x1="11.176" y1="3.048" x2="11.684" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4089. <wire x1="11.176" y1="-3.048" x2="11.684" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4090. <wire x1="11.176" y1="-3.048" x2="7.112" y2="-3.048" width="0.1524" layer="21"/>
  4091. <wire x1="7.112" y1="3.048" x2="11.176" y2="3.048" width="0.1524" layer="21"/>
  4092. <wire x1="11.684" y1="2.54" x2="11.684" y2="-2.54" width="0.1524" layer="21"/>
  4093. <pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
  4094. <pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
  4095. <pad name="3" x="10.033" y="0" drill="1.016" shape="octagon"/>
  4096. <text x="-5.969" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4097. <text x="-1.524" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4098. </package>
  4099. <package name="C150-054X183">
  4100. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4101. grid 15 mm, outline 5.4 x 18.3 mm</description>
  4102. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4103. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4104. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4105. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4106. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4107. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4108. <wire x1="9.017" y1="2.032" x2="9.017" y2="-2.032" width="0.1524" layer="21"/>
  4109. <wire x1="8.509" y1="-2.54" x2="-8.509" y2="-2.54" width="0.1524" layer="21"/>
  4110. <wire x1="-9.017" y1="-2.032" x2="-9.017" y2="2.032" width="0.1524" layer="21"/>
  4111. <wire x1="-8.509" y1="2.54" x2="8.509" y2="2.54" width="0.1524" layer="21"/>
  4112. <wire x1="8.509" y1="2.54" x2="9.017" y2="2.032" width="0.1524" layer="21" curve="-90"/>
  4113. <wire x1="8.509" y1="-2.54" x2="9.017" y2="-2.032" width="0.1524" layer="21" curve="90"/>
  4114. <wire x1="-9.017" y1="-2.032" x2="-8.509" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4115. <wire x1="-9.017" y1="2.032" x2="-8.509" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4116. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4117. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4118. <text x="-8.382" y="2.921" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4119. <text x="-3.429" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4120. </package>
  4121. <package name="C150-064X183">
  4122. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4123. grid 15 mm, outline 6.4 x 18.3 mm</description>
  4124. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4125. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4126. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4127. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4128. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4129. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4130. <wire x1="9.017" y1="2.54" x2="9.017" y2="-2.54" width="0.1524" layer="21"/>
  4131. <wire x1="8.509" y1="-3.048" x2="-8.509" y2="-3.048" width="0.1524" layer="21"/>
  4132. <wire x1="-9.017" y1="-2.54" x2="-9.017" y2="2.54" width="0.1524" layer="21"/>
  4133. <wire x1="-8.509" y1="3.048" x2="8.509" y2="3.048" width="0.1524" layer="21"/>
  4134. <wire x1="8.509" y1="3.048" x2="9.017" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4135. <wire x1="8.509" y1="-3.048" x2="9.017" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4136. <wire x1="-9.017" y1="-2.54" x2="-8.509" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4137. <wire x1="-9.017" y1="2.54" x2="-8.509" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4138. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4139. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4140. <text x="-8.509" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4141. <text x="-3.429" y="-2.032" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4142. </package>
  4143. <package name="C150-072X183">
  4144. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4145. grid 15 mm, outline 7.2 x 18.3 mm</description>
  4146. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4147. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4148. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4149. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4150. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4151. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4152. <wire x1="9.017" y1="3.048" x2="9.017" y2="-3.048" width="0.1524" layer="21"/>
  4153. <wire x1="8.509" y1="-3.556" x2="-8.509" y2="-3.556" width="0.1524" layer="21"/>
  4154. <wire x1="-9.017" y1="-3.048" x2="-9.017" y2="3.048" width="0.1524" layer="21"/>
  4155. <wire x1="-8.509" y1="3.556" x2="8.509" y2="3.556" width="0.1524" layer="21"/>
  4156. <wire x1="8.509" y1="3.556" x2="9.017" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4157. <wire x1="8.509" y1="-3.556" x2="9.017" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4158. <wire x1="-9.017" y1="-3.048" x2="-8.509" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4159. <wire x1="-9.017" y1="3.048" x2="-8.509" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4160. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4161. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4162. <text x="-8.509" y="3.937" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4163. <text x="-3.429" y="-2.286" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4164. </package>
  4165. <package name="C150-084X183">
  4166. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4167. grid 15 mm, outline 8.4 x 18.3 mm</description>
  4168. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4169. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4170. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4171. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4172. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4173. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4174. <wire x1="9.017" y1="3.556" x2="9.017" y2="-3.556" width="0.1524" layer="21"/>
  4175. <wire x1="8.509" y1="-4.064" x2="-8.509" y2="-4.064" width="0.1524" layer="21"/>
  4176. <wire x1="-9.017" y1="-3.556" x2="-9.017" y2="3.556" width="0.1524" layer="21"/>
  4177. <wire x1="-8.509" y1="4.064" x2="8.509" y2="4.064" width="0.1524" layer="21"/>
  4178. <wire x1="8.509" y1="4.064" x2="9.017" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4179. <wire x1="8.509" y1="-4.064" x2="9.017" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4180. <wire x1="-9.017" y1="-3.556" x2="-8.509" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  4181. <wire x1="-9.017" y1="3.556" x2="-8.509" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  4182. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4183. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4184. <text x="-8.509" y="4.445" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4185. <text x="-3.429" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4186. </package>
  4187. <package name="C150-091X182">
  4188. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4189. grid 15 mm, outline 9.1 x 18.2 mm</description>
  4190. <wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
  4191. <wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
  4192. <wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
  4193. <wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
  4194. <wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
  4195. <wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
  4196. <wire x1="9.017" y1="3.937" x2="9.017" y2="-3.937" width="0.1524" layer="21"/>
  4197. <wire x1="8.509" y1="-4.445" x2="-8.509" y2="-4.445" width="0.1524" layer="21"/>
  4198. <wire x1="-9.017" y1="-3.937" x2="-9.017" y2="3.937" width="0.1524" layer="21"/>
  4199. <wire x1="-8.509" y1="4.445" x2="8.509" y2="4.445" width="0.1524" layer="21"/>
  4200. <wire x1="8.509" y1="4.445" x2="9.017" y2="3.937" width="0.1524" layer="21" curve="-90"/>
  4201. <wire x1="8.509" y1="-4.445" x2="9.017" y2="-3.937" width="0.1524" layer="21" curve="90"/>
  4202. <wire x1="-9.017" y1="-3.937" x2="-8.509" y2="-4.445" width="0.1524" layer="21" curve="90"/>
  4203. <wire x1="-9.017" y1="3.937" x2="-8.509" y2="4.445" width="0.1524" layer="21" curve="-90"/>
  4204. <pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
  4205. <pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
  4206. <text x="-8.509" y="4.826" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4207. <text x="-3.429" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4208. </package>
  4209. <package name="C225-062X268">
  4210. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4211. grid 22.5 mm, outline 6.2 x 26.8 mm</description>
  4212. <wire x1="-12.827" y1="3.048" x2="12.827" y2="3.048" width="0.1524" layer="21"/>
  4213. <wire x1="13.335" y1="2.54" x2="13.335" y2="-2.54" width="0.1524" layer="21"/>
  4214. <wire x1="12.827" y1="-3.048" x2="-12.827" y2="-3.048" width="0.1524" layer="21"/>
  4215. <wire x1="-13.335" y1="-2.54" x2="-13.335" y2="2.54" width="0.1524" layer="21"/>
  4216. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4217. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4218. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4219. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4220. <wire x1="12.827" y1="3.048" x2="13.335" y2="2.54" width="0.1524" layer="21" curve="-90"/>
  4221. <wire x1="12.827" y1="-3.048" x2="13.335" y2="-2.54" width="0.1524" layer="21" curve="90"/>
  4222. <wire x1="-13.335" y1="-2.54" x2="-12.827" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4223. <wire x1="-13.335" y1="2.54" x2="-12.827" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4224. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4225. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4226. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4227. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4228. <text x="-12.7" y="3.429" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4229. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4230. </package>
  4231. <package name="C225-074X268">
  4232. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4233. grid 22.5 mm, outline 7.4 x 26.8 mm</description>
  4234. <wire x1="-12.827" y1="3.556" x2="12.827" y2="3.556" width="0.1524" layer="21"/>
  4235. <wire x1="13.335" y1="3.048" x2="13.335" y2="-3.048" width="0.1524" layer="21"/>
  4236. <wire x1="12.827" y1="-3.556" x2="-12.827" y2="-3.556" width="0.1524" layer="21"/>
  4237. <wire x1="-13.335" y1="-3.048" x2="-13.335" y2="3.048" width="0.1524" layer="21"/>
  4238. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4239. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4240. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4241. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4242. <wire x1="12.827" y1="3.556" x2="13.335" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4243. <wire x1="12.827" y1="-3.556" x2="13.335" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4244. <wire x1="-13.335" y1="-3.048" x2="-12.827" y2="-3.556" width="0.1524" layer="21" curve="90"/>
  4245. <wire x1="-13.335" y1="3.048" x2="-12.827" y2="3.556" width="0.1524" layer="21" curve="-90"/>
  4246. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4247. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4248. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4249. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4250. <text x="-12.827" y="3.937" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4251. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4252. </package>
  4253. <package name="C225-087X268">
  4254. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4255. grid 22.5 mm, outline 8.7 x 26.8 mm</description>
  4256. <wire x1="-12.827" y1="4.318" x2="12.827" y2="4.318" width="0.1524" layer="21"/>
  4257. <wire x1="13.335" y1="3.81" x2="13.335" y2="-3.81" width="0.1524" layer="21"/>
  4258. <wire x1="12.827" y1="-4.318" x2="-12.827" y2="-4.318" width="0.1524" layer="21"/>
  4259. <wire x1="-13.335" y1="-3.81" x2="-13.335" y2="3.81" width="0.1524" layer="21"/>
  4260. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4261. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4262. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4263. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4264. <wire x1="12.827" y1="4.318" x2="13.335" y2="3.81" width="0.1524" layer="21" curve="-90"/>
  4265. <wire x1="12.827" y1="-4.318" x2="13.335" y2="-3.81" width="0.1524" layer="21" curve="90"/>
  4266. <wire x1="-13.335" y1="-3.81" x2="-12.827" y2="-4.318" width="0.1524" layer="21" curve="90"/>
  4267. <wire x1="-13.335" y1="3.81" x2="-12.827" y2="4.318" width="0.1524" layer="21" curve="-90"/>
  4268. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4269. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4270. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4271. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4272. <text x="-12.827" y="4.699" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4273. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4274. </package>
  4275. <package name="C225-108X268">
  4276. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4277. grid 22.5 mm, outline 10.8 x 26.8 mm</description>
  4278. <wire x1="-12.827" y1="5.334" x2="12.827" y2="5.334" width="0.1524" layer="21"/>
  4279. <wire x1="13.335" y1="4.826" x2="13.335" y2="-4.826" width="0.1524" layer="21"/>
  4280. <wire x1="12.827" y1="-5.334" x2="-12.827" y2="-5.334" width="0.1524" layer="21"/>
  4281. <wire x1="-13.335" y1="-4.826" x2="-13.335" y2="4.826" width="0.1524" layer="21"/>
  4282. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4283. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4284. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4285. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4286. <wire x1="12.827" y1="5.334" x2="13.335" y2="4.826" width="0.1524" layer="21" curve="-90"/>
  4287. <wire x1="12.827" y1="-5.334" x2="13.335" y2="-4.826" width="0.1524" layer="21" curve="90"/>
  4288. <wire x1="-13.335" y1="-4.826" x2="-12.827" y2="-5.334" width="0.1524" layer="21" curve="90"/>
  4289. <wire x1="-13.335" y1="4.826" x2="-12.827" y2="5.334" width="0.1524" layer="21" curve="-90"/>
  4290. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4291. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4292. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4293. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4294. <text x="-12.954" y="5.715" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4295. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4296. </package>
  4297. <package name="C225-113X268">
  4298. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4299. grid 22.5 mm, outline 11.3 x 26.8 mm</description>
  4300. <wire x1="-12.827" y1="5.588" x2="12.827" y2="5.588" width="0.1524" layer="21"/>
  4301. <wire x1="13.335" y1="5.08" x2="13.335" y2="-5.08" width="0.1524" layer="21"/>
  4302. <wire x1="12.827" y1="-5.588" x2="-12.827" y2="-5.588" width="0.1524" layer="21"/>
  4303. <wire x1="-13.335" y1="-5.08" x2="-13.335" y2="5.08" width="0.1524" layer="21"/>
  4304. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4305. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4306. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4307. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4308. <wire x1="12.827" y1="5.588" x2="13.335" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  4309. <wire x1="12.827" y1="-5.588" x2="13.335" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  4310. <wire x1="-13.335" y1="-5.08" x2="-12.827" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  4311. <wire x1="-13.335" y1="5.08" x2="-12.827" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  4312. <wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4313. <wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
  4314. <pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
  4315. <pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
  4316. <text x="-12.954" y="5.969" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4317. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4318. </package>
  4319. <package name="C275-093X316">
  4320. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4321. grid 27.5 mm, outline 9.3 x 31.6 mm</description>
  4322. <wire x1="-15.24" y1="4.572" x2="15.24" y2="4.572" width="0.1524" layer="21"/>
  4323. <wire x1="15.748" y1="4.064" x2="15.748" y2="-4.064" width="0.1524" layer="21"/>
  4324. <wire x1="15.24" y1="-4.572" x2="-15.24" y2="-4.572" width="0.1524" layer="21"/>
  4325. <wire x1="-15.748" y1="-4.064" x2="-15.748" y2="4.064" width="0.1524" layer="21"/>
  4326. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4327. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4328. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4329. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4330. <wire x1="15.24" y1="4.572" x2="15.748" y2="4.064" width="0.1524" layer="21" curve="-90"/>
  4331. <wire x1="15.24" y1="-4.572" x2="15.748" y2="-4.064" width="0.1524" layer="21" curve="90"/>
  4332. <wire x1="-15.748" y1="-4.064" x2="-15.24" y2="-4.572" width="0.1524" layer="21" curve="90"/>
  4333. <wire x1="-15.748" y1="4.064" x2="-15.24" y2="4.572" width="0.1524" layer="21" curve="-90"/>
  4334. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4335. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4336. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4337. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4338. <text x="-15.24" y="4.953" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4339. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4340. </package>
  4341. <package name="C275-113X316">
  4342. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4343. grid 27.5 mm, outline 11.3 x 31.6 mm</description>
  4344. <wire x1="-15.24" y1="5.588" x2="15.24" y2="5.588" width="0.1524" layer="21"/>
  4345. <wire x1="15.748" y1="5.08" x2="15.748" y2="-5.08" width="0.1524" layer="21"/>
  4346. <wire x1="15.24" y1="-5.588" x2="-15.24" y2="-5.588" width="0.1524" layer="21"/>
  4347. <wire x1="-15.748" y1="-5.08" x2="-15.748" y2="5.08" width="0.1524" layer="21"/>
  4348. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4349. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4350. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4351. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4352. <wire x1="15.24" y1="5.588" x2="15.748" y2="5.08" width="0.1524" layer="21" curve="-90"/>
  4353. <wire x1="15.24" y1="-5.588" x2="15.748" y2="-5.08" width="0.1524" layer="21" curve="90"/>
  4354. <wire x1="-15.748" y1="-5.08" x2="-15.24" y2="-5.588" width="0.1524" layer="21" curve="90"/>
  4355. <wire x1="-15.748" y1="5.08" x2="-15.24" y2="5.588" width="0.1524" layer="21" curve="-90"/>
  4356. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4357. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4358. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4359. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4360. <text x="-15.24" y="5.969" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4361. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4362. </package>
  4363. <package name="C275-134X316">
  4364. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4365. grid 27.5 mm, outline 13.4 x 31.6 mm</description>
  4366. <wire x1="-15.24" y1="6.604" x2="15.24" y2="6.604" width="0.1524" layer="21"/>
  4367. <wire x1="15.748" y1="6.096" x2="15.748" y2="-6.096" width="0.1524" layer="21"/>
  4368. <wire x1="15.24" y1="-6.604" x2="-15.24" y2="-6.604" width="0.1524" layer="21"/>
  4369. <wire x1="-15.748" y1="-6.096" x2="-15.748" y2="6.096" width="0.1524" layer="21"/>
  4370. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4371. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4372. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4373. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4374. <wire x1="15.24" y1="6.604" x2="15.748" y2="6.096" width="0.1524" layer="21" curve="-90"/>
  4375. <wire x1="15.24" y1="-6.604" x2="15.748" y2="-6.096" width="0.1524" layer="21" curve="90"/>
  4376. <wire x1="-15.748" y1="-6.096" x2="-15.24" y2="-6.604" width="0.1524" layer="21" curve="90"/>
  4377. <wire x1="-15.748" y1="6.096" x2="-15.24" y2="6.604" width="0.1524" layer="21" curve="-90"/>
  4378. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4379. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4380. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4381. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4382. <text x="-15.24" y="6.985" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4383. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4384. </package>
  4385. <package name="C275-205X316">
  4386. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4387. grid 27.5 mm, outline 20.5 x 31.6 mm</description>
  4388. <wire x1="-15.24" y1="10.16" x2="15.24" y2="10.16" width="0.1524" layer="21"/>
  4389. <wire x1="15.748" y1="9.652" x2="15.748" y2="-9.652" width="0.1524" layer="21"/>
  4390. <wire x1="15.24" y1="-10.16" x2="-15.24" y2="-10.16" width="0.1524" layer="21"/>
  4391. <wire x1="-15.748" y1="-9.652" x2="-15.748" y2="9.652" width="0.1524" layer="21"/>
  4392. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4393. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4394. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4395. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4396. <wire x1="15.24" y1="10.16" x2="15.748" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  4397. <wire x1="15.24" y1="-10.16" x2="15.748" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  4398. <wire x1="-15.748" y1="-9.652" x2="-15.24" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  4399. <wire x1="-15.748" y1="9.652" x2="-15.24" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  4400. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4401. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4402. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4403. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4404. <text x="-15.24" y="10.541" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4405. <text x="-5.08" y="-4.318" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4406. </package>
  4407. <package name="C325-137X374">
  4408. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4409. grid 32.5 mm, outline 13.7 x 37.4 mm</description>
  4410. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  4411. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  4412. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  4413. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  4414. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  4415. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  4416. <wire x1="18.542" y1="6.731" x2="18.542" y2="-6.731" width="0.1524" layer="21"/>
  4417. <wire x1="-18.542" y1="6.731" x2="-18.542" y2="-6.731" width="0.1524" layer="21"/>
  4418. <wire x1="-18.542" y1="-6.731" x2="18.542" y2="-6.731" width="0.1524" layer="21"/>
  4419. <wire x1="18.542" y1="6.731" x2="-18.542" y2="6.731" width="0.1524" layer="21"/>
  4420. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  4421. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  4422. <text x="-18.2372" y="7.0612" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4423. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4424. </package>
  4425. <package name="C325-162X374">
  4426. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4427. grid 32.5 mm, outline 16.2 x 37.4 mm</description>
  4428. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  4429. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  4430. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  4431. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  4432. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  4433. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  4434. <wire x1="18.542" y1="8.001" x2="18.542" y2="-8.001" width="0.1524" layer="21"/>
  4435. <wire x1="-18.542" y1="8.001" x2="-18.542" y2="-8.001" width="0.1524" layer="21"/>
  4436. <wire x1="-18.542" y1="-8.001" x2="18.542" y2="-8.001" width="0.1524" layer="21"/>
  4437. <wire x1="18.542" y1="8.001" x2="-18.542" y2="8.001" width="0.1524" layer="21"/>
  4438. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  4439. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  4440. <text x="-18.3642" y="8.3312" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4441. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4442. </package>
  4443. <package name="C325-182X374">
  4444. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4445. grid 32.5 mm, outline 18.2 x 37.4 mm</description>
  4446. <wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
  4447. <wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
  4448. <wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
  4449. <wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
  4450. <wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
  4451. <wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
  4452. <wire x1="18.542" y1="9.017" x2="18.542" y2="-9.017" width="0.1524" layer="21"/>
  4453. <wire x1="-18.542" y1="9.017" x2="-18.542" y2="-9.017" width="0.1524" layer="21"/>
  4454. <wire x1="-18.542" y1="-9.017" x2="18.542" y2="-9.017" width="0.1524" layer="21"/>
  4455. <wire x1="18.542" y1="9.017" x2="-18.542" y2="9.017" width="0.1524" layer="21"/>
  4456. <pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
  4457. <pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
  4458. <text x="-18.3642" y="9.3472" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4459. <text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4460. </package>
  4461. <package name="C375-192X418">
  4462. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4463. grid 37.5 mm, outline 19.2 x 41.8 mm</description>
  4464. <wire x1="-20.32" y1="8.509" x2="20.32" y2="8.509" width="0.1524" layer="21"/>
  4465. <wire x1="20.828" y1="8.001" x2="20.828" y2="-8.001" width="0.1524" layer="21"/>
  4466. <wire x1="20.32" y1="-8.509" x2="-20.32" y2="-8.509" width="0.1524" layer="21"/>
  4467. <wire x1="-20.828" y1="-8.001" x2="-20.828" y2="8.001" width="0.1524" layer="21"/>
  4468. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4469. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4470. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4471. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4472. <wire x1="20.32" y1="8.509" x2="20.828" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  4473. <wire x1="20.32" y1="-8.509" x2="20.828" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  4474. <wire x1="-20.828" y1="-8.001" x2="-20.32" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  4475. <wire x1="-20.828" y1="8.001" x2="-20.32" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  4476. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4477. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4478. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  4479. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  4480. <text x="-20.447" y="8.89" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4481. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4482. </package>
  4483. <package name="C375-203X418">
  4484. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4485. grid 37.5 mm, outline 20.3 x 41.8 mm</description>
  4486. <wire x1="-20.32" y1="10.16" x2="20.32" y2="10.16" width="0.1524" layer="21"/>
  4487. <wire x1="20.828" y1="9.652" x2="20.828" y2="-9.652" width="0.1524" layer="21"/>
  4488. <wire x1="20.32" y1="-10.16" x2="-20.32" y2="-10.16" width="0.1524" layer="21"/>
  4489. <wire x1="-20.828" y1="-9.652" x2="-20.828" y2="9.652" width="0.1524" layer="21"/>
  4490. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4491. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4492. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4493. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4494. <wire x1="20.32" y1="10.16" x2="20.828" y2="9.652" width="0.1524" layer="21" curve="-90"/>
  4495. <wire x1="20.32" y1="-10.16" x2="20.828" y2="-9.652" width="0.1524" layer="21" curve="90"/>
  4496. <wire x1="-20.828" y1="-9.652" x2="-20.32" y2="-10.16" width="0.1524" layer="21" curve="90"/>
  4497. <wire x1="-20.828" y1="9.652" x2="-20.32" y2="10.16" width="0.1524" layer="21" curve="-90"/>
  4498. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4499. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4500. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  4501. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  4502. <text x="-20.32" y="10.541" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4503. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4504. </package>
  4505. <package name="C050-035X075">
  4506. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4507. grid 5 mm, outline 3.5 x 7.5 mm</description>
  4508. <wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
  4509. <wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
  4510. <wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
  4511. <wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
  4512. <wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
  4513. <wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
  4514. <wire x1="-3.683" y1="1.524" x2="-3.683" y2="-1.524" width="0.1524" layer="21"/>
  4515. <wire x1="-3.429" y1="-1.778" x2="3.429" y2="-1.778" width="0.1524" layer="21"/>
  4516. <wire x1="3.683" y1="-1.524" x2="3.683" y2="1.524" width="0.1524" layer="21"/>
  4517. <wire x1="3.429" y1="1.778" x2="-3.429" y2="1.778" width="0.1524" layer="21"/>
  4518. <wire x1="3.429" y1="1.778" x2="3.683" y2="1.524" width="0.1524" layer="21" curve="-90"/>
  4519. <wire x1="3.429" y1="-1.778" x2="3.683" y2="-1.524" width="0.1524" layer="21" curve="90"/>
  4520. <wire x1="-3.683" y1="-1.524" x2="-3.429" y2="-1.778" width="0.1524" layer="21" curve="90"/>
  4521. <wire x1="-3.683" y1="1.524" x2="-3.429" y2="1.778" width="0.1524" layer="21" curve="-90"/>
  4522. <pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
  4523. <pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
  4524. <text x="-3.556" y="2.159" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4525. <text x="-3.556" y="-3.429" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4526. </package>
  4527. <package name="C375-155X418">
  4528. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4529. grid 37.5 mm, outline 15.5 x 41.8 mm</description>
  4530. <wire x1="-20.32" y1="7.62" x2="20.32" y2="7.62" width="0.1524" layer="21"/>
  4531. <wire x1="20.828" y1="7.112" x2="20.828" y2="-7.112" width="0.1524" layer="21"/>
  4532. <wire x1="20.32" y1="-7.62" x2="-20.32" y2="-7.62" width="0.1524" layer="21"/>
  4533. <wire x1="-20.828" y1="-7.112" x2="-20.828" y2="7.112" width="0.1524" layer="21"/>
  4534. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4535. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4536. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4537. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4538. <wire x1="20.32" y1="7.62" x2="20.828" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  4539. <wire x1="20.32" y1="-7.62" x2="20.828" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  4540. <wire x1="-20.828" y1="-7.112" x2="-20.32" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  4541. <wire x1="-20.828" y1="7.112" x2="-20.32" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  4542. <wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4543. <wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
  4544. <pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
  4545. <pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
  4546. <text x="-20.447" y="8.001" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4547. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4548. </package>
  4549. <package name="C075-063X106">
  4550. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4551. grid 7.5 mm, outline 6.3 x 10.6 mm</description>
  4552. <wire x1="4.953" y1="3.048" x2="-4.953" y2="3.048" width="0.1524" layer="21"/>
  4553. <wire x1="-5.207" y1="2.794" x2="-5.207" y2="-2.794" width="0.1524" layer="21"/>
  4554. <wire x1="-4.953" y1="-3.048" x2="4.953" y2="-3.048" width="0.1524" layer="21"/>
  4555. <wire x1="5.207" y1="-2.794" x2="5.207" y2="2.794" width="0.1524" layer="21"/>
  4556. <wire x1="4.953" y1="3.048" x2="5.207" y2="2.794" width="0.1524" layer="21" curve="-90"/>
  4557. <wire x1="4.953" y1="-3.048" x2="5.207" y2="-2.794" width="0.1524" layer="21" curve="90"/>
  4558. <wire x1="-5.207" y1="-2.794" x2="-4.953" y2="-3.048" width="0.1524" layer="21" curve="90"/>
  4559. <wire x1="-5.207" y1="2.794" x2="-4.953" y2="3.048" width="0.1524" layer="21" curve="-90"/>
  4560. <wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
  4561. <wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
  4562. <wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
  4563. <wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
  4564. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
  4565. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
  4566. <pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
  4567. <pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
  4568. <text x="-4.826" y="3.429" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  4569. <text x="-0.635" y="-2.54" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  4570. </package>
  4571. <package name="C275-154X316">
  4572. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4573. grid 27.5 mm, outline 15.4 x 31.6 mm</description>
  4574. <wire x1="-15.24" y1="7.62" x2="15.24" y2="7.62" width="0.1524" layer="21"/>
  4575. <wire x1="15.748" y1="7.112" x2="15.748" y2="-7.112" width="0.1524" layer="21"/>
  4576. <wire x1="15.24" y1="-7.62" x2="-15.24" y2="-7.62" width="0.1524" layer="21"/>
  4577. <wire x1="-15.748" y1="-7.112" x2="-15.748" y2="7.112" width="0.1524" layer="21"/>
  4578. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4579. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4580. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4581. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4582. <wire x1="15.24" y1="7.62" x2="15.748" y2="7.112" width="0.1524" layer="21" curve="-90"/>
  4583. <wire x1="15.24" y1="-7.62" x2="15.748" y2="-7.112" width="0.1524" layer="21" curve="90"/>
  4584. <wire x1="-15.748" y1="-7.112" x2="-15.24" y2="-7.62" width="0.1524" layer="21" curve="90"/>
  4585. <wire x1="-15.748" y1="7.112" x2="-15.24" y2="7.62" width="0.1524" layer="21" curve="-90"/>
  4586. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4587. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4588. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4589. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4590. <text x="-15.24" y="8.001" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4591. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4592. </package>
  4593. <package name="C275-173X316">
  4594. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4595. grid 27.5 mm, outline 17.3 x 31.6 mm</description>
  4596. <wire x1="-15.24" y1="8.509" x2="15.24" y2="8.509" width="0.1524" layer="21"/>
  4597. <wire x1="15.748" y1="8.001" x2="15.748" y2="-8.001" width="0.1524" layer="21"/>
  4598. <wire x1="15.24" y1="-8.509" x2="-15.24" y2="-8.509" width="0.1524" layer="21"/>
  4599. <wire x1="-15.748" y1="-8.001" x2="-15.748" y2="8.001" width="0.1524" layer="21"/>
  4600. <wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
  4601. <wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
  4602. <wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
  4603. <wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
  4604. <wire x1="15.24" y1="8.509" x2="15.748" y2="8.001" width="0.1524" layer="21" curve="-90"/>
  4605. <wire x1="15.24" y1="-8.509" x2="15.748" y2="-8.001" width="0.1524" layer="21" curve="90"/>
  4606. <wire x1="-15.748" y1="-8.001" x2="-15.24" y2="-8.509" width="0.1524" layer="21" curve="90"/>
  4607. <wire x1="-15.748" y1="8.001" x2="-15.24" y2="8.509" width="0.1524" layer="21" curve="-90"/>
  4608. <wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
  4609. <wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
  4610. <pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
  4611. <pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
  4612. <text x="-15.24" y="8.89" size="1.778" layer="25" ratio="10">&gt;NAME</text>
  4613. <text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">&gt;VALUE</text>
  4614. </package>
  4615. <package name="C0402K">
  4616. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0204 reflow solder&lt;/b&gt;&lt;p&gt;
  4617. Metric Code Size 1005</description>
  4618. <wire x1="-0.425" y1="0.2" x2="0.425" y2="0.2" width="0.1016" layer="51"/>
  4619. <wire x1="0.425" y1="-0.2" x2="-0.425" y2="-0.2" width="0.1016" layer="51"/>
  4620. <smd name="1" x="-0.6" y="0" dx="0.925" dy="0.74" layer="1"/>
  4621. <smd name="2" x="0.6" y="0" dx="0.925" dy="0.74" layer="1"/>
  4622. <text x="-0.5" y="0.425" size="1.016" layer="25">&gt;NAME</text>
  4623. <text x="-0.5" y="-1.45" size="1.016" layer="27">&gt;VALUE</text>
  4624. <rectangle x1="-0.5" y1="-0.25" x2="-0.225" y2="0.25" layer="51"/>
  4625. <rectangle x1="0.225" y1="-0.25" x2="0.5" y2="0.25" layer="51"/>
  4626. </package>
  4627. <package name="C0603K">
  4628. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0603 reflow solder&lt;/b&gt;&lt;p&gt;
  4629. Metric Code Size 1608</description>
  4630. <wire x1="-0.725" y1="0.35" x2="0.725" y2="0.35" width="0.1016" layer="51"/>
  4631. <wire x1="0.725" y1="-0.35" x2="-0.725" y2="-0.35" width="0.1016" layer="51"/>
  4632. <smd name="1" x="-0.875" y="0" dx="1.05" dy="1.08" layer="1"/>
  4633. <smd name="2" x="0.875" y="0" dx="1.05" dy="1.08" layer="1"/>
  4634. <text x="-0.8" y="0.65" size="1.016" layer="25">&gt;NAME</text>
  4635. <text x="-0.8" y="-1.65" size="1.016" layer="27">&gt;VALUE</text>
  4636. <rectangle x1="-0.8" y1="-0.4" x2="-0.45" y2="0.4" layer="51"/>
  4637. <rectangle x1="0.45" y1="-0.4" x2="0.8" y2="0.4" layer="51"/>
  4638. </package>
  4639. <package name="C0805K">
  4640. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0805 reflow solder&lt;/b&gt;&lt;p&gt;
  4641. Metric Code Size 2012</description>
  4642. <wire x1="-0.925" y1="0.6" x2="0.925" y2="0.6" width="0.1016" layer="51"/>
  4643. <wire x1="0.925" y1="-0.6" x2="-0.925" y2="-0.6" width="0.1016" layer="51"/>
  4644. <smd name="1" x="-1" y="0" dx="1.3" dy="1.6" layer="1"/>
  4645. <smd name="2" x="1" y="0" dx="1.3" dy="1.6" layer="1"/>
  4646. <text x="-1" y="0.875" size="1.016" layer="25">&gt;NAME</text>
  4647. <text x="-1" y="-1.9" size="1.016" layer="27">&gt;VALUE</text>
  4648. <rectangle x1="-1" y1="-0.65" x2="-0.5" y2="0.65" layer="51"/>
  4649. <rectangle x1="0.5" y1="-0.65" x2="1" y2="0.65" layer="51"/>
  4650. </package>
  4651. <package name="C1206K">
  4652. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1206 reflow solder&lt;/b&gt;&lt;p&gt;
  4653. Metric Code Size 3216</description>
  4654. <wire x1="-1.525" y1="0.75" x2="1.525" y2="0.75" width="0.1016" layer="51"/>
  4655. <wire x1="1.525" y1="-0.75" x2="-1.525" y2="-0.75" width="0.1016" layer="51"/>
  4656. <smd name="1" x="-1.5" y="0" dx="1.5" dy="2" layer="1"/>
  4657. <smd name="2" x="1.5" y="0" dx="1.5" dy="2" layer="1"/>
  4658. <text x="-1.6" y="1.1" size="1.016" layer="25">&gt;NAME</text>
  4659. <text x="-1.6" y="-2.1" size="1.016" layer="27">&gt;VALUE</text>
  4660. <rectangle x1="-1.6" y1="-0.8" x2="-1.1" y2="0.8" layer="51"/>
  4661. <rectangle x1="1.1" y1="-0.8" x2="1.6" y2="0.8" layer="51"/>
  4662. </package>
  4663. <package name="C1210K">
  4664. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1210 reflow solder&lt;/b&gt;&lt;p&gt;
  4665. Metric Code Size 3225</description>
  4666. <wire x1="-1.525" y1="1.175" x2="1.525" y2="1.175" width="0.1016" layer="51"/>
  4667. <wire x1="1.525" y1="-1.175" x2="-1.525" y2="-1.175" width="0.1016" layer="51"/>
  4668. <smd name="1" x="-1.5" y="0" dx="1.5" dy="2.9" layer="1"/>
  4669. <smd name="2" x="1.5" y="0" dx="1.5" dy="2.9" layer="1"/>
  4670. <text x="-1.6" y="1.55" size="1.016" layer="25">&gt;NAME</text>
  4671. <text x="-1.6" y="-2.575" size="1.016" layer="27">&gt;VALUE</text>
  4672. <rectangle x1="-1.6" y1="-1.25" x2="-1.1" y2="1.25" layer="51"/>
  4673. <rectangle x1="1.1" y1="-1.25" x2="1.6" y2="1.25" layer="51"/>
  4674. </package>
  4675. <package name="C1812K">
  4676. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1812 reflow solder&lt;/b&gt;&lt;p&gt;
  4677. Metric Code Size 4532</description>
  4678. <wire x1="-2.175" y1="1.525" x2="2.175" y2="1.525" width="0.1016" layer="51"/>
  4679. <wire x1="2.175" y1="-1.525" x2="-2.175" y2="-1.525" width="0.1016" layer="51"/>
  4680. <smd name="1" x="-2.05" y="0" dx="1.8" dy="3.7" layer="1"/>
  4681. <smd name="2" x="2.05" y="0" dx="1.8" dy="3.7" layer="1"/>
  4682. <text x="-2.25" y="1.95" size="1.016" layer="25">&gt;NAME</text>
  4683. <text x="-2.25" y="-2.975" size="1.016" layer="27">&gt;VALUE</text>
  4684. <rectangle x1="-2.25" y1="-1.6" x2="-1.65" y2="1.6" layer="51"/>
  4685. <rectangle x1="1.65" y1="-1.6" x2="2.25" y2="1.6" layer="51"/>
  4686. </package>
  4687. <package name="C1825K">
  4688. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1825 reflow solder&lt;/b&gt;&lt;p&gt;
  4689. Metric Code Size 4564</description>
  4690. <wire x1="-1.525" y1="3.125" x2="1.525" y2="3.125" width="0.1016" layer="51"/>
  4691. <wire x1="1.525" y1="-3.125" x2="-1.525" y2="-3.125" width="0.1016" layer="51"/>
  4692. <smd name="1" x="-1.5" y="0" dx="1.8" dy="6.9" layer="1"/>
  4693. <smd name="2" x="1.5" y="0" dx="1.8" dy="6.9" layer="1"/>
  4694. <text x="-1.6" y="3.55" size="1.016" layer="25">&gt;NAME</text>
  4695. <text x="-1.6" y="-4.625" size="1.016" layer="27">&gt;VALUE</text>
  4696. <rectangle x1="-1.6" y1="-3.2" x2="-1.1" y2="3.2" layer="51"/>
  4697. <rectangle x1="1.1" y1="-3.2" x2="1.6" y2="3.2" layer="51"/>
  4698. </package>
  4699. <package name="C2220K">
  4700. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 2220 reflow solder&lt;/b&gt;&lt;p&gt;Metric Code Size 5650</description>
  4701. <wire x1="-2.725" y1="2.425" x2="2.725" y2="2.425" width="0.1016" layer="51"/>
  4702. <wire x1="2.725" y1="-2.425" x2="-2.725" y2="-2.425" width="0.1016" layer="51"/>
  4703. <smd name="1" x="-2.55" y="0" dx="1.85" dy="5.5" layer="1"/>
  4704. <smd name="2" x="2.55" y="0" dx="1.85" dy="5.5" layer="1"/>
  4705. <text x="-2.8" y="2.95" size="1.016" layer="25">&gt;NAME</text>
  4706. <text x="-2.8" y="-3.975" size="1.016" layer="27">&gt;VALUE</text>
  4707. <rectangle x1="-2.8" y1="-2.5" x2="-2.2" y2="2.5" layer="51"/>
  4708. <rectangle x1="2.2" y1="-2.5" x2="2.8" y2="2.5" layer="51"/>
  4709. </package>
  4710. <package name="C2225K">
  4711. <description>&lt;b&gt;Ceramic Chip Capacitor KEMET 2225 reflow solder&lt;/b&gt;&lt;p&gt;Metric Code Size 5664</description>
  4712. <wire x1="-2.725" y1="3.075" x2="2.725" y2="3.075" width="0.1016" layer="51"/>
  4713. <wire x1="2.725" y1="-3.075" x2="-2.725" y2="-3.075" width="0.1016" layer="51"/>
  4714. <smd name="1" x="-2.55" y="0" dx="1.85" dy="6.8" layer="1"/>
  4715. <smd name="2" x="2.55" y="0" dx="1.85" dy="6.8" layer="1"/>
  4716. <text x="-2.8" y="3.6" size="1.016" layer="25">&gt;NAME</text>
  4717. <text x="-2.8" y="-4.575" size="1.016" layer="27">&gt;VALUE</text>
  4718. <rectangle x1="-2.8" y1="-3.15" x2="-2.2" y2="3.15" layer="51"/>
  4719. <rectangle x1="2.2" y1="-3.15" x2="2.8" y2="3.15" layer="51"/>
  4720. </package>
  4721. <package name="HPC0201">
  4722. <description>&lt;b&gt; &lt;/b&gt;&lt;p&gt;
  4723. Source: http://www.vishay.com/docs/10129/hpc0201a.pdf</description>
  4724. <smd name="1" x="-0.18" y="0" dx="0.2" dy="0.35" layer="1"/>
  4725. <smd name="2" x="0.18" y="0" dx="0.2" dy="0.35" layer="1"/>
  4726. <text x="-0.75" y="0.74" size="1.27" layer="25">&gt;NAME</text>
  4727. <text x="-0.785" y="-1.865" size="1.27" layer="27">&gt;VALUE</text>
  4728. <rectangle x1="-0.305" y1="-0.15" x2="0.305" y2="0.15" layer="51"/>
  4729. </package>
  4730. <package name="C0201">
  4731. <description>Source: http://www.avxcorp.com/docs/catalogs/cx5r.pdf</description>
  4732. <smd name="1" x="-0.25" y="0" dx="0.25" dy="0.35" layer="1"/>
  4733. <smd name="2" x="0.25" y="0" dx="0.25" dy="0.35" layer="1"/>
  4734. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  4735. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  4736. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  4737. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  4738. <rectangle x1="-0.15" y1="0.1" x2="0.15" y2="0.15" layer="51"/>
  4739. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="-0.1" layer="51"/>
  4740. </package>
  4741. <package name="C1808">
  4742. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4743. Source: AVX .. aphvc.pdf</description>
  4744. <wire x1="-1.4732" y1="0.9502" x2="1.4732" y2="0.9502" width="0.1016" layer="51"/>
  4745. <wire x1="-1.4478" y1="-0.9502" x2="1.4732" y2="-0.9502" width="0.1016" layer="51"/>
  4746. <smd name="1" x="-1.95" y="0" dx="1.6" dy="2.2" layer="1"/>
  4747. <smd name="2" x="1.95" y="0" dx="1.6" dy="2.2" layer="1"/>
  4748. <text x="-2.233" y="1.827" size="1.27" layer="25">&gt;NAME</text>
  4749. <text x="-2.233" y="-2.842" size="1.27" layer="27">&gt;VALUE</text>
  4750. <rectangle x1="-2.275" y1="-1.015" x2="-1.225" y2="1.015" layer="51"/>
  4751. <rectangle x1="1.225" y1="-1.015" x2="2.275" y2="1.015" layer="51"/>
  4752. </package>
  4753. <package name="C3640">
  4754. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
  4755. Source: AVX .. aphvc.pdf</description>
  4756. <wire x1="-3.8322" y1="5.0496" x2="3.8322" y2="5.0496" width="0.1016" layer="51"/>
  4757. <wire x1="-3.8322" y1="-5.0496" x2="3.8322" y2="-5.0496" width="0.1016" layer="51"/>
  4758. <smd name="1" x="-4.267" y="0" dx="2.6" dy="10.7" layer="1"/>
  4759. <smd name="2" x="4.267" y="0" dx="2.6" dy="10.7" layer="1"/>
  4760. <text x="-4.647" y="6.465" size="1.27" layer="25">&gt;NAME</text>
  4761. <text x="-4.647" y="-7.255" size="1.27" layer="27">&gt;VALUE</text>
  4762. <rectangle x1="-4.57" y1="-5.1" x2="-3.05" y2="5.1" layer="51"/>
  4763. <rectangle x1="3.05" y1="-5.1" x2="4.5688" y2="5.1" layer="51"/>
  4764. </package>
  4765. <package name="C01005">
  4766. <description>&lt;b&gt;CAPACITOR&lt;/b&gt;</description>
  4767. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  4768. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  4769. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  4770. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  4771. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  4772. <smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  4773. <smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
  4774. <text x="-0.4" y="0.3" size="1.27" layer="25">&gt;NAME</text>
  4775. <text x="-0.4" y="-1.6" size="1.27" layer="27">&gt;VALUE</text>
  4776. <rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="51"/>
  4777. <rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="51"/>
  4778. <rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="51"/>
  4779. <rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="51"/>
  4780. </package>
  4781. </packages>
  4782. <symbols>
  4783. <symbol name="R-EU-1">
  4784. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  4785. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  4786. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  4787. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  4788. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  4789. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  4790. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  4791. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  4792. </symbol>
  4793. <symbol name="C-EU-1">
  4794. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  4795. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  4796. <text x="1.524" y="0.381" size="1.778" layer="95">&gt;NAME</text>
  4797. <text x="1.524" y="-4.699" size="1.778" layer="96">&gt;VALUE</text>
  4798. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  4799. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  4800. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  4801. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  4802. </symbol>
  4803. </symbols>
  4804. <devicesets>
  4805. <deviceset name="R-EU_" prefix="R" uservalue="yes">
  4806. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  4807. <gates>
  4808. <gate name="G$1" symbol="R-EU-1" x="0" y="0"/>
  4809. </gates>
  4810. <devices>
  4811. <device name="R0402" package="R0402">
  4812. <connects>
  4813. <connect gate="G$1" pin="1" pad="1"/>
  4814. <connect gate="G$1" pin="2" pad="2"/>
  4815. </connects>
  4816. <technologies>
  4817. <technology name=""/>
  4818. </technologies>
  4819. </device>
  4820. <device name="R0603" package="R0603">
  4821. <connects>
  4822. <connect gate="G$1" pin="1" pad="1"/>
  4823. <connect gate="G$1" pin="2" pad="2"/>
  4824. </connects>
  4825. <technologies>
  4826. <technology name=""/>
  4827. </technologies>
  4828. </device>
  4829. <device name="R0805" package="R0805">
  4830. <connects>
  4831. <connect gate="G$1" pin="1" pad="1"/>
  4832. <connect gate="G$1" pin="2" pad="2"/>
  4833. </connects>
  4834. <technologies>
  4835. <technology name=""/>
  4836. </technologies>
  4837. </device>
  4838. <device name="R0805W" package="R0805W">
  4839. <connects>
  4840. <connect gate="G$1" pin="1" pad="1"/>
  4841. <connect gate="G$1" pin="2" pad="2"/>
  4842. </connects>
  4843. <technologies>
  4844. <technology name=""/>
  4845. </technologies>
  4846. </device>
  4847. <device name="R1206" package="R1206">
  4848. <connects>
  4849. <connect gate="G$1" pin="1" pad="1"/>
  4850. <connect gate="G$1" pin="2" pad="2"/>
  4851. </connects>
  4852. <technologies>
  4853. <technology name=""/>
  4854. </technologies>
  4855. </device>
  4856. <device name="R1206W" package="R1206W">
  4857. <connects>
  4858. <connect gate="G$1" pin="1" pad="1"/>
  4859. <connect gate="G$1" pin="2" pad="2"/>
  4860. </connects>
  4861. <technologies>
  4862. <technology name=""/>
  4863. </technologies>
  4864. </device>
  4865. <device name="R1210" package="R1210">
  4866. <connects>
  4867. <connect gate="G$1" pin="1" pad="1"/>
  4868. <connect gate="G$1" pin="2" pad="2"/>
  4869. </connects>
  4870. <technologies>
  4871. <technology name=""/>
  4872. </technologies>
  4873. </device>
  4874. <device name="R1210W" package="R1210W">
  4875. <connects>
  4876. <connect gate="G$1" pin="1" pad="1"/>
  4877. <connect gate="G$1" pin="2" pad="2"/>
  4878. </connects>
  4879. <technologies>
  4880. <technology name=""/>
  4881. </technologies>
  4882. </device>
  4883. <device name="R2010" package="R2010">
  4884. <connects>
  4885. <connect gate="G$1" pin="1" pad="1"/>
  4886. <connect gate="G$1" pin="2" pad="2"/>
  4887. </connects>
  4888. <technologies>
  4889. <technology name=""/>
  4890. </technologies>
  4891. </device>
  4892. <device name="R2010W" package="R2010W">
  4893. <connects>
  4894. <connect gate="G$1" pin="1" pad="1"/>
  4895. <connect gate="G$1" pin="2" pad="2"/>
  4896. </connects>
  4897. <technologies>
  4898. <technology name=""/>
  4899. </technologies>
  4900. </device>
  4901. <device name="R2012" package="R2012">
  4902. <connects>
  4903. <connect gate="G$1" pin="1" pad="1"/>
  4904. <connect gate="G$1" pin="2" pad="2"/>
  4905. </connects>
  4906. <technologies>
  4907. <technology name=""/>
  4908. </technologies>
  4909. </device>
  4910. <device name="R2012W" package="R2012W">
  4911. <connects>
  4912. <connect gate="G$1" pin="1" pad="1"/>
  4913. <connect gate="G$1" pin="2" pad="2"/>
  4914. </connects>
  4915. <technologies>
  4916. <technology name=""/>
  4917. </technologies>
  4918. </device>
  4919. <device name="R2512" package="R2512">
  4920. <connects>
  4921. <connect gate="G$1" pin="1" pad="1"/>
  4922. <connect gate="G$1" pin="2" pad="2"/>
  4923. </connects>
  4924. <technologies>
  4925. <technology name=""/>
  4926. </technologies>
  4927. </device>
  4928. <device name="R2512W" package="R2512W">
  4929. <connects>
  4930. <connect gate="G$1" pin="1" pad="1"/>
  4931. <connect gate="G$1" pin="2" pad="2"/>
  4932. </connects>
  4933. <technologies>
  4934. <technology name=""/>
  4935. </technologies>
  4936. </device>
  4937. <device name="R3216" package="R3216">
  4938. <connects>
  4939. <connect gate="G$1" pin="1" pad="1"/>
  4940. <connect gate="G$1" pin="2" pad="2"/>
  4941. </connects>
  4942. <technologies>
  4943. <technology name=""/>
  4944. </technologies>
  4945. </device>
  4946. <device name="R3216W" package="R3216W">
  4947. <connects>
  4948. <connect gate="G$1" pin="1" pad="1"/>
  4949. <connect gate="G$1" pin="2" pad="2"/>
  4950. </connects>
  4951. <technologies>
  4952. <technology name=""/>
  4953. </technologies>
  4954. </device>
  4955. <device name="R3225" package="R3225">
  4956. <connects>
  4957. <connect gate="G$1" pin="1" pad="1"/>
  4958. <connect gate="G$1" pin="2" pad="2"/>
  4959. </connects>
  4960. <technologies>
  4961. <technology name=""/>
  4962. </technologies>
  4963. </device>
  4964. <device name="R3225W" package="R3225W">
  4965. <connects>
  4966. <connect gate="G$1" pin="1" pad="1"/>
  4967. <connect gate="G$1" pin="2" pad="2"/>
  4968. </connects>
  4969. <technologies>
  4970. <technology name=""/>
  4971. </technologies>
  4972. </device>
  4973. <device name="R5025" package="R5025">
  4974. <connects>
  4975. <connect gate="G$1" pin="1" pad="1"/>
  4976. <connect gate="G$1" pin="2" pad="2"/>
  4977. </connects>
  4978. <technologies>
  4979. <technology name=""/>
  4980. </technologies>
  4981. </device>
  4982. <device name="R5025W" package="R5025W">
  4983. <connects>
  4984. <connect gate="G$1" pin="1" pad="1"/>
  4985. <connect gate="G$1" pin="2" pad="2"/>
  4986. </connects>
  4987. <technologies>
  4988. <technology name=""/>
  4989. </technologies>
  4990. </device>
  4991. <device name="R6332" package="R6332">
  4992. <connects>
  4993. <connect gate="G$1" pin="1" pad="1"/>
  4994. <connect gate="G$1" pin="2" pad="2"/>
  4995. </connects>
  4996. <technologies>
  4997. <technology name=""/>
  4998. </technologies>
  4999. </device>
  5000. <device name="R6332W" package="R6332W">
  5001. <connects>
  5002. <connect gate="G$1" pin="1" pad="1"/>
  5003. <connect gate="G$1" pin="2" pad="2"/>
  5004. </connects>
  5005. <technologies>
  5006. <technology name=""/>
  5007. </technologies>
  5008. </device>
  5009. <device name="M0805" package="M0805">
  5010. <connects>
  5011. <connect gate="G$1" pin="1" pad="1"/>
  5012. <connect gate="G$1" pin="2" pad="2"/>
  5013. </connects>
  5014. <technologies>
  5015. <technology name=""/>
  5016. </technologies>
  5017. </device>
  5018. <device name="M1206" package="M1206">
  5019. <connects>
  5020. <connect gate="G$1" pin="1" pad="1"/>
  5021. <connect gate="G$1" pin="2" pad="2"/>
  5022. </connects>
  5023. <technologies>
  5024. <technology name=""/>
  5025. </technologies>
  5026. </device>
  5027. <device name="M1406" package="M1406">
  5028. <connects>
  5029. <connect gate="G$1" pin="1" pad="1"/>
  5030. <connect gate="G$1" pin="2" pad="2"/>
  5031. </connects>
  5032. <technologies>
  5033. <technology name=""/>
  5034. </technologies>
  5035. </device>
  5036. <device name="M2012" package="M2012">
  5037. <connects>
  5038. <connect gate="G$1" pin="1" pad="1"/>
  5039. <connect gate="G$1" pin="2" pad="2"/>
  5040. </connects>
  5041. <technologies>
  5042. <technology name=""/>
  5043. </technologies>
  5044. </device>
  5045. <device name="M2309" package="M2309">
  5046. <connects>
  5047. <connect gate="G$1" pin="1" pad="1"/>
  5048. <connect gate="G$1" pin="2" pad="2"/>
  5049. </connects>
  5050. <technologies>
  5051. <technology name=""/>
  5052. </technologies>
  5053. </device>
  5054. <device name="M3216" package="M3216">
  5055. <connects>
  5056. <connect gate="G$1" pin="1" pad="1"/>
  5057. <connect gate="G$1" pin="2" pad="2"/>
  5058. </connects>
  5059. <technologies>
  5060. <technology name=""/>
  5061. </technologies>
  5062. </device>
  5063. <device name="M3516" package="M3516">
  5064. <connects>
  5065. <connect gate="G$1" pin="1" pad="1"/>
  5066. <connect gate="G$1" pin="2" pad="2"/>
  5067. </connects>
  5068. <technologies>
  5069. <technology name=""/>
  5070. </technologies>
  5071. </device>
  5072. <device name="M5923" package="M5923">
  5073. <connects>
  5074. <connect gate="G$1" pin="1" pad="1"/>
  5075. <connect gate="G$1" pin="2" pad="2"/>
  5076. </connects>
  5077. <technologies>
  5078. <technology name=""/>
  5079. </technologies>
  5080. </device>
  5081. <device name="0204/5" package="0204/5">
  5082. <connects>
  5083. <connect gate="G$1" pin="1" pad="1"/>
  5084. <connect gate="G$1" pin="2" pad="2"/>
  5085. </connects>
  5086. <technologies>
  5087. <technology name=""/>
  5088. </technologies>
  5089. </device>
  5090. <device name="0204/7" package="0204/7">
  5091. <connects>
  5092. <connect gate="G$1" pin="1" pad="1"/>
  5093. <connect gate="G$1" pin="2" pad="2"/>
  5094. </connects>
  5095. <technologies>
  5096. <technology name=""/>
  5097. </technologies>
  5098. </device>
  5099. <device name="0204/2V" package="0204V">
  5100. <connects>
  5101. <connect gate="G$1" pin="1" pad="1"/>
  5102. <connect gate="G$1" pin="2" pad="2"/>
  5103. </connects>
  5104. <technologies>
  5105. <technology name=""/>
  5106. </technologies>
  5107. </device>
  5108. <device name="0207/10" package="0207/10">
  5109. <connects>
  5110. <connect gate="G$1" pin="1" pad="1"/>
  5111. <connect gate="G$1" pin="2" pad="2"/>
  5112. </connects>
  5113. <technologies>
  5114. <technology name=""/>
  5115. </technologies>
  5116. </device>
  5117. <device name="0207/12" package="0207/12">
  5118. <connects>
  5119. <connect gate="G$1" pin="1" pad="1"/>
  5120. <connect gate="G$1" pin="2" pad="2"/>
  5121. </connects>
  5122. <technologies>
  5123. <technology name=""/>
  5124. </technologies>
  5125. </device>
  5126. <device name="0207/15" package="0207/15">
  5127. <connects>
  5128. <connect gate="G$1" pin="1" pad="1"/>
  5129. <connect gate="G$1" pin="2" pad="2"/>
  5130. </connects>
  5131. <technologies>
  5132. <technology name=""/>
  5133. </technologies>
  5134. </device>
  5135. <device name="0207/2V" package="0207/2V">
  5136. <connects>
  5137. <connect gate="G$1" pin="1" pad="1"/>
  5138. <connect gate="G$1" pin="2" pad="2"/>
  5139. </connects>
  5140. <technologies>
  5141. <technology name=""/>
  5142. </technologies>
  5143. </device>
  5144. <device name="0207/5V" package="0207/5V">
  5145. <connects>
  5146. <connect gate="G$1" pin="1" pad="1"/>
  5147. <connect gate="G$1" pin="2" pad="2"/>
  5148. </connects>
  5149. <technologies>
  5150. <technology name=""/>
  5151. </technologies>
  5152. </device>
  5153. <device name="0207/7" package="0207/7">
  5154. <connects>
  5155. <connect gate="G$1" pin="1" pad="1"/>
  5156. <connect gate="G$1" pin="2" pad="2"/>
  5157. </connects>
  5158. <technologies>
  5159. <technology name=""/>
  5160. </technologies>
  5161. </device>
  5162. <device name="0309/10" package="0309/10">
  5163. <connects>
  5164. <connect gate="G$1" pin="1" pad="1"/>
  5165. <connect gate="G$1" pin="2" pad="2"/>
  5166. </connects>
  5167. <technologies>
  5168. <technology name=""/>
  5169. </technologies>
  5170. </device>
  5171. <device name="0309/12" package="0309/12">
  5172. <connects>
  5173. <connect gate="G$1" pin="1" pad="1"/>
  5174. <connect gate="G$1" pin="2" pad="2"/>
  5175. </connects>
  5176. <technologies>
  5177. <technology name=""/>
  5178. </technologies>
  5179. </device>
  5180. <device name="0309/V" package="0309V">
  5181. <connects>
  5182. <connect gate="G$1" pin="1" pad="1"/>
  5183. <connect gate="G$1" pin="2" pad="2"/>
  5184. </connects>
  5185. <technologies>
  5186. <technology name=""/>
  5187. </technologies>
  5188. </device>
  5189. <device name="0411/12" package="0411/12">
  5190. <connects>
  5191. <connect gate="G$1" pin="1" pad="1"/>
  5192. <connect gate="G$1" pin="2" pad="2"/>
  5193. </connects>
  5194. <technologies>
  5195. <technology name=""/>
  5196. </technologies>
  5197. </device>
  5198. <device name="0411/15" package="0411/15">
  5199. <connects>
  5200. <connect gate="G$1" pin="1" pad="1"/>
  5201. <connect gate="G$1" pin="2" pad="2"/>
  5202. </connects>
  5203. <technologies>
  5204. <technology name=""/>
  5205. </technologies>
  5206. </device>
  5207. <device name="0411/3V" package="0411V">
  5208. <connects>
  5209. <connect gate="G$1" pin="1" pad="1"/>
  5210. <connect gate="G$1" pin="2" pad="2"/>
  5211. </connects>
  5212. <technologies>
  5213. <technology name=""/>
  5214. </technologies>
  5215. </device>
  5216. <device name="0414/15" package="0414/15">
  5217. <connects>
  5218. <connect gate="G$1" pin="1" pad="1"/>
  5219. <connect gate="G$1" pin="2" pad="2"/>
  5220. </connects>
  5221. <technologies>
  5222. <technology name=""/>
  5223. </technologies>
  5224. </device>
  5225. <device name="0414/5V" package="0414V">
  5226. <connects>
  5227. <connect gate="G$1" pin="1" pad="1"/>
  5228. <connect gate="G$1" pin="2" pad="2"/>
  5229. </connects>
  5230. <technologies>
  5231. <technology name=""/>
  5232. </technologies>
  5233. </device>
  5234. <device name="0617/17" package="0617/17">
  5235. <connects>
  5236. <connect gate="G$1" pin="1" pad="1"/>
  5237. <connect gate="G$1" pin="2" pad="2"/>
  5238. </connects>
  5239. <technologies>
  5240. <technology name=""/>
  5241. </technologies>
  5242. </device>
  5243. <device name="0617/22" package="0617/22">
  5244. <connects>
  5245. <connect gate="G$1" pin="1" pad="1"/>
  5246. <connect gate="G$1" pin="2" pad="2"/>
  5247. </connects>
  5248. <technologies>
  5249. <technology name=""/>
  5250. </technologies>
  5251. </device>
  5252. <device name="0617/5V" package="0617V">
  5253. <connects>
  5254. <connect gate="G$1" pin="1" pad="1"/>
  5255. <connect gate="G$1" pin="2" pad="2"/>
  5256. </connects>
  5257. <technologies>
  5258. <technology name=""/>
  5259. </technologies>
  5260. </device>
  5261. <device name="0922/22" package="0922/22">
  5262. <connects>
  5263. <connect gate="G$1" pin="1" pad="1"/>
  5264. <connect gate="G$1" pin="2" pad="2"/>
  5265. </connects>
  5266. <technologies>
  5267. <technology name=""/>
  5268. </technologies>
  5269. </device>
  5270. <device name="0613/5V" package="P0613V">
  5271. <connects>
  5272. <connect gate="G$1" pin="1" pad="1"/>
  5273. <connect gate="G$1" pin="2" pad="2"/>
  5274. </connects>
  5275. <technologies>
  5276. <technology name=""/>
  5277. </technologies>
  5278. </device>
  5279. <device name="0613/15" package="P0613/15">
  5280. <connects>
  5281. <connect gate="G$1" pin="1" pad="1"/>
  5282. <connect gate="G$1" pin="2" pad="2"/>
  5283. </connects>
  5284. <technologies>
  5285. <technology name=""/>
  5286. </technologies>
  5287. </device>
  5288. <device name="0817/22" package="P0817/22">
  5289. <connects>
  5290. <connect gate="G$1" pin="1" pad="1"/>
  5291. <connect gate="G$1" pin="2" pad="2"/>
  5292. </connects>
  5293. <technologies>
  5294. <technology name=""/>
  5295. </technologies>
  5296. </device>
  5297. <device name="0817/7V" package="P0817V">
  5298. <connects>
  5299. <connect gate="G$1" pin="1" pad="1"/>
  5300. <connect gate="G$1" pin="2" pad="2"/>
  5301. </connects>
  5302. <technologies>
  5303. <technology name=""/>
  5304. </technologies>
  5305. </device>
  5306. <device name="V234/12" package="V234/12">
  5307. <connects>
  5308. <connect gate="G$1" pin="1" pad="1"/>
  5309. <connect gate="G$1" pin="2" pad="2"/>
  5310. </connects>
  5311. <technologies>
  5312. <technology name=""/>
  5313. </technologies>
  5314. </device>
  5315. <device name="V235/17" package="V235/17">
  5316. <connects>
  5317. <connect gate="G$1" pin="1" pad="1"/>
  5318. <connect gate="G$1" pin="2" pad="2"/>
  5319. </connects>
  5320. <technologies>
  5321. <technology name=""/>
  5322. </technologies>
  5323. </device>
  5324. <device name="V526-0" package="V526-0">
  5325. <connects>
  5326. <connect gate="G$1" pin="1" pad="1"/>
  5327. <connect gate="G$1" pin="2" pad="2"/>
  5328. </connects>
  5329. <technologies>
  5330. <technology name=""/>
  5331. </technologies>
  5332. </device>
  5333. <device name="MELF0102R" package="MINI_MELF-0102R">
  5334. <connects>
  5335. <connect gate="G$1" pin="1" pad="1"/>
  5336. <connect gate="G$1" pin="2" pad="2"/>
  5337. </connects>
  5338. <technologies>
  5339. <technology name=""/>
  5340. </technologies>
  5341. </device>
  5342. <device name="MELF0102W" package="MINI_MELF-0102W">
  5343. <connects>
  5344. <connect gate="G$1" pin="1" pad="1"/>
  5345. <connect gate="G$1" pin="2" pad="2"/>
  5346. </connects>
  5347. <technologies>
  5348. <technology name=""/>
  5349. </technologies>
  5350. </device>
  5351. <device name="MELF0204R" package="MINI_MELF-0204R">
  5352. <connects>
  5353. <connect gate="G$1" pin="1" pad="1"/>
  5354. <connect gate="G$1" pin="2" pad="2"/>
  5355. </connects>
  5356. <technologies>
  5357. <technology name=""/>
  5358. </technologies>
  5359. </device>
  5360. <device name="MELF0204W" package="MINI_MELF-0204W">
  5361. <connects>
  5362. <connect gate="G$1" pin="1" pad="1"/>
  5363. <connect gate="G$1" pin="2" pad="2"/>
  5364. </connects>
  5365. <technologies>
  5366. <technology name=""/>
  5367. </technologies>
  5368. </device>
  5369. <device name="MELF0207R" package="MINI_MELF-0207R">
  5370. <connects>
  5371. <connect gate="G$1" pin="1" pad="1"/>
  5372. <connect gate="G$1" pin="2" pad="2"/>
  5373. </connects>
  5374. <technologies>
  5375. <technology name=""/>
  5376. </technologies>
  5377. </device>
  5378. <device name="MELF0207W" package="MINI_MELF-0207W">
  5379. <connects>
  5380. <connect gate="G$1" pin="1" pad="1"/>
  5381. <connect gate="G$1" pin="2" pad="2"/>
  5382. </connects>
  5383. <technologies>
  5384. <technology name=""/>
  5385. </technologies>
  5386. </device>
  5387. <device name="0922V" package="0922V">
  5388. <connects>
  5389. <connect gate="G$1" pin="1" pad="1"/>
  5390. <connect gate="G$1" pin="2" pad="2"/>
  5391. </connects>
  5392. <technologies>
  5393. <technology name=""/>
  5394. </technologies>
  5395. </device>
  5396. <device name="RDH/15" package="RDH/15">
  5397. <connects>
  5398. <connect gate="G$1" pin="1" pad="1"/>
  5399. <connect gate="G$1" pin="2" pad="2"/>
  5400. </connects>
  5401. <technologies>
  5402. <technology name=""/>
  5403. </technologies>
  5404. </device>
  5405. <device name="MELF0102AX" package="MINI_MELF-0102AX">
  5406. <connects>
  5407. <connect gate="G$1" pin="1" pad="1"/>
  5408. <connect gate="G$1" pin="2" pad="2"/>
  5409. </connects>
  5410. <technologies>
  5411. <technology name=""/>
  5412. </technologies>
  5413. </device>
  5414. <device name="R0201" package="R0201">
  5415. <connects>
  5416. <connect gate="G$1" pin="1" pad="1"/>
  5417. <connect gate="G$1" pin="2" pad="2"/>
  5418. </connects>
  5419. <technologies>
  5420. <technology name=""/>
  5421. </technologies>
  5422. </device>
  5423. <device name="VTA52" package="VTA52">
  5424. <connects>
  5425. <connect gate="G$1" pin="1" pad="1"/>
  5426. <connect gate="G$1" pin="2" pad="2"/>
  5427. </connects>
  5428. <technologies>
  5429. <technology name=""/>
  5430. </technologies>
  5431. </device>
  5432. <device name="VTA53" package="VTA53">
  5433. <connects>
  5434. <connect gate="G$1" pin="1" pad="1"/>
  5435. <connect gate="G$1" pin="2" pad="2"/>
  5436. </connects>
  5437. <technologies>
  5438. <technology name=""/>
  5439. </technologies>
  5440. </device>
  5441. <device name="VTA54" package="VTA54">
  5442. <connects>
  5443. <connect gate="G$1" pin="1" pad="1"/>
  5444. <connect gate="G$1" pin="2" pad="2"/>
  5445. </connects>
  5446. <technologies>
  5447. <technology name=""/>
  5448. </technologies>
  5449. </device>
  5450. <device name="VTA55" package="VTA55">
  5451. <connects>
  5452. <connect gate="G$1" pin="1" pad="1"/>
  5453. <connect gate="G$1" pin="2" pad="2"/>
  5454. </connects>
  5455. <technologies>
  5456. <technology name=""/>
  5457. </technologies>
  5458. </device>
  5459. <device name="VTA56" package="VTA56">
  5460. <connects>
  5461. <connect gate="G$1" pin="1" pad="1"/>
  5462. <connect gate="G$1" pin="2" pad="2"/>
  5463. </connects>
  5464. <technologies>
  5465. <technology name=""/>
  5466. </technologies>
  5467. </device>
  5468. <device name="VMTA55" package="VMTA55">
  5469. <connects>
  5470. <connect gate="G$1" pin="1" pad="1"/>
  5471. <connect gate="G$1" pin="2" pad="2"/>
  5472. </connects>
  5473. <technologies>
  5474. <technology name=""/>
  5475. </technologies>
  5476. </device>
  5477. <device name="VMTB60" package="VMTB60">
  5478. <connects>
  5479. <connect gate="G$1" pin="1" pad="1"/>
  5480. <connect gate="G$1" pin="2" pad="2"/>
  5481. </connects>
  5482. <technologies>
  5483. <technology name=""/>
  5484. </technologies>
  5485. </device>
  5486. <device name="R4527" package="R4527">
  5487. <connects>
  5488. <connect gate="G$1" pin="1" pad="1"/>
  5489. <connect gate="G$1" pin="2" pad="2"/>
  5490. </connects>
  5491. <technologies>
  5492. <technology name=""/>
  5493. </technologies>
  5494. </device>
  5495. <device name="WSC0001" package="WSC0001">
  5496. <connects>
  5497. <connect gate="G$1" pin="1" pad="1"/>
  5498. <connect gate="G$1" pin="2" pad="2"/>
  5499. </connects>
  5500. <technologies>
  5501. <technology name=""/>
  5502. </technologies>
  5503. </device>
  5504. <device name="WSC0002" package="WSC0002">
  5505. <connects>
  5506. <connect gate="G$1" pin="1" pad="1"/>
  5507. <connect gate="G$1" pin="2" pad="2"/>
  5508. </connects>
  5509. <technologies>
  5510. <technology name=""/>
  5511. </technologies>
  5512. </device>
  5513. <device name="WSC01/2" package="WSC01/2">
  5514. <connects>
  5515. <connect gate="G$1" pin="1" pad="1"/>
  5516. <connect gate="G$1" pin="2" pad="2"/>
  5517. </connects>
  5518. <technologies>
  5519. <technology name=""/>
  5520. </technologies>
  5521. </device>
  5522. <device name="WSC2515" package="WSC2515">
  5523. <connects>
  5524. <connect gate="G$1" pin="1" pad="1"/>
  5525. <connect gate="G$1" pin="2" pad="2"/>
  5526. </connects>
  5527. <technologies>
  5528. <technology name=""/>
  5529. </technologies>
  5530. </device>
  5531. <device name="WSC4527" package="WSC4527">
  5532. <connects>
  5533. <connect gate="G$1" pin="1" pad="1"/>
  5534. <connect gate="G$1" pin="2" pad="2"/>
  5535. </connects>
  5536. <technologies>
  5537. <technology name=""/>
  5538. </technologies>
  5539. </device>
  5540. <device name="WSC6927" package="WSC6927">
  5541. <connects>
  5542. <connect gate="G$1" pin="1" pad="1"/>
  5543. <connect gate="G$1" pin="2" pad="2"/>
  5544. </connects>
  5545. <technologies>
  5546. <technology name=""/>
  5547. </technologies>
  5548. </device>
  5549. <device name="R1218" package="R1218">
  5550. <connects>
  5551. <connect gate="G$1" pin="1" pad="1"/>
  5552. <connect gate="G$1" pin="2" pad="2"/>
  5553. </connects>
  5554. <technologies>
  5555. <technology name=""/>
  5556. </technologies>
  5557. </device>
  5558. <device name="1812X7R" package="1812X7R">
  5559. <connects>
  5560. <connect gate="G$1" pin="1" pad="1"/>
  5561. <connect gate="G$1" pin="2" pad="2"/>
  5562. </connects>
  5563. <technologies>
  5564. <technology name=""/>
  5565. </technologies>
  5566. </device>
  5567. <device name="PRL1632" package="PRL1632">
  5568. <connects>
  5569. <connect gate="G$1" pin="1" pad="1"/>
  5570. <connect gate="G$1" pin="2" pad="2"/>
  5571. </connects>
  5572. <technologies>
  5573. <technology name=""/>
  5574. </technologies>
  5575. </device>
  5576. <device name="01005" package="R01005">
  5577. <connects>
  5578. <connect gate="G$1" pin="1" pad="1"/>
  5579. <connect gate="G$1" pin="2" pad="2"/>
  5580. </connects>
  5581. <technologies>
  5582. <technology name=""/>
  5583. </technologies>
  5584. </device>
  5585. </devices>
  5586. </deviceset>
  5587. <deviceset name="C-EU" prefix="C" uservalue="yes">
  5588. <description>&lt;B&gt;CAPACITOR&lt;/B&gt;, European symbol</description>
  5589. <gates>
  5590. <gate name="G$1" symbol="C-EU-1" x="0" y="0"/>
  5591. </gates>
  5592. <devices>
  5593. <device name="C0402" package="C0402">
  5594. <connects>
  5595. <connect gate="G$1" pin="1" pad="1"/>
  5596. <connect gate="G$1" pin="2" pad="2"/>
  5597. </connects>
  5598. <technologies>
  5599. <technology name=""/>
  5600. </technologies>
  5601. </device>
  5602. <device name="C0504" package="C0504">
  5603. <connects>
  5604. <connect gate="G$1" pin="1" pad="1"/>
  5605. <connect gate="G$1" pin="2" pad="2"/>
  5606. </connects>
  5607. <technologies>
  5608. <technology name=""/>
  5609. </technologies>
  5610. </device>
  5611. <device name="C0603" package="C0603">
  5612. <connects>
  5613. <connect gate="G$1" pin="1" pad="1"/>
  5614. <connect gate="G$1" pin="2" pad="2"/>
  5615. </connects>
  5616. <technologies>
  5617. <technology name=""/>
  5618. </technologies>
  5619. </device>
  5620. <device name="C0805" package="C0805">
  5621. <connects>
  5622. <connect gate="G$1" pin="1" pad="1"/>
  5623. <connect gate="G$1" pin="2" pad="2"/>
  5624. </connects>
  5625. <technologies>
  5626. <technology name=""/>
  5627. </technologies>
  5628. </device>
  5629. <device name="C1206" package="C1206">
  5630. <connects>
  5631. <connect gate="G$1" pin="1" pad="1"/>
  5632. <connect gate="G$1" pin="2" pad="2"/>
  5633. </connects>
  5634. <technologies>
  5635. <technology name=""/>
  5636. </technologies>
  5637. </device>
  5638. <device name="C1210" package="C1210">
  5639. <connects>
  5640. <connect gate="G$1" pin="1" pad="1"/>
  5641. <connect gate="G$1" pin="2" pad="2"/>
  5642. </connects>
  5643. <technologies>
  5644. <technology name=""/>
  5645. </technologies>
  5646. </device>
  5647. <device name="C1310" package="C1310">
  5648. <connects>
  5649. <connect gate="G$1" pin="1" pad="1"/>
  5650. <connect gate="G$1" pin="2" pad="2"/>
  5651. </connects>
  5652. <technologies>
  5653. <technology name=""/>
  5654. </technologies>
  5655. </device>
  5656. <device name="C1608" package="C1608">
  5657. <connects>
  5658. <connect gate="G$1" pin="1" pad="1"/>
  5659. <connect gate="G$1" pin="2" pad="2"/>
  5660. </connects>
  5661. <technologies>
  5662. <technology name=""/>
  5663. </technologies>
  5664. </device>
  5665. <device name="C1812" package="C1812">
  5666. <connects>
  5667. <connect gate="G$1" pin="1" pad="1"/>
  5668. <connect gate="G$1" pin="2" pad="2"/>
  5669. </connects>
  5670. <technologies>
  5671. <technology name=""/>
  5672. </technologies>
  5673. </device>
  5674. <device name="C1825" package="C1825">
  5675. <connects>
  5676. <connect gate="G$1" pin="1" pad="1"/>
  5677. <connect gate="G$1" pin="2" pad="2"/>
  5678. </connects>
  5679. <technologies>
  5680. <technology name=""/>
  5681. </technologies>
  5682. </device>
  5683. <device name="C2012" package="C2012">
  5684. <connects>
  5685. <connect gate="G$1" pin="1" pad="1"/>
  5686. <connect gate="G$1" pin="2" pad="2"/>
  5687. </connects>
  5688. <technologies>
  5689. <technology name=""/>
  5690. </technologies>
  5691. </device>
  5692. <device name="C3216" package="C3216">
  5693. <connects>
  5694. <connect gate="G$1" pin="1" pad="1"/>
  5695. <connect gate="G$1" pin="2" pad="2"/>
  5696. </connects>
  5697. <technologies>
  5698. <technology name=""/>
  5699. </technologies>
  5700. </device>
  5701. <device name="C3225" package="C3225">
  5702. <connects>
  5703. <connect gate="G$1" pin="1" pad="1"/>
  5704. <connect gate="G$1" pin="2" pad="2"/>
  5705. </connects>
  5706. <technologies>
  5707. <technology name=""/>
  5708. </technologies>
  5709. </device>
  5710. <device name="C4532" package="C4532">
  5711. <connects>
  5712. <connect gate="G$1" pin="1" pad="1"/>
  5713. <connect gate="G$1" pin="2" pad="2"/>
  5714. </connects>
  5715. <technologies>
  5716. <technology name=""/>
  5717. </technologies>
  5718. </device>
  5719. <device name="C4564" package="C4564">
  5720. <connects>
  5721. <connect gate="G$1" pin="1" pad="1"/>
  5722. <connect gate="G$1" pin="2" pad="2"/>
  5723. </connects>
  5724. <technologies>
  5725. <technology name=""/>
  5726. </technologies>
  5727. </device>
  5728. <device name="025-024X044" package="C025-024X044">
  5729. <connects>
  5730. <connect gate="G$1" pin="1" pad="1"/>
  5731. <connect gate="G$1" pin="2" pad="2"/>
  5732. </connects>
  5733. <technologies>
  5734. <technology name=""/>
  5735. </technologies>
  5736. </device>
  5737. <device name="025-025X050" package="C025-025X050">
  5738. <connects>
  5739. <connect gate="G$1" pin="1" pad="1"/>
  5740. <connect gate="G$1" pin="2" pad="2"/>
  5741. </connects>
  5742. <technologies>
  5743. <technology name=""/>
  5744. </technologies>
  5745. </device>
  5746. <device name="025-030X050" package="C025-030X050">
  5747. <connects>
  5748. <connect gate="G$1" pin="1" pad="1"/>
  5749. <connect gate="G$1" pin="2" pad="2"/>
  5750. </connects>
  5751. <technologies>
  5752. <technology name=""/>
  5753. </technologies>
  5754. </device>
  5755. <device name="025-040X050" package="C025-040X050">
  5756. <connects>
  5757. <connect gate="G$1" pin="1" pad="1"/>
  5758. <connect gate="G$1" pin="2" pad="2"/>
  5759. </connects>
  5760. <technologies>
  5761. <technology name=""/>
  5762. </technologies>
  5763. </device>
  5764. <device name="025-050X050" package="C025-050X050">
  5765. <connects>
  5766. <connect gate="G$1" pin="1" pad="1"/>
  5767. <connect gate="G$1" pin="2" pad="2"/>
  5768. </connects>
  5769. <technologies>
  5770. <technology name=""/>
  5771. </technologies>
  5772. </device>
  5773. <device name="025-060X050" package="C025-060X050">
  5774. <connects>
  5775. <connect gate="G$1" pin="1" pad="1"/>
  5776. <connect gate="G$1" pin="2" pad="2"/>
  5777. </connects>
  5778. <technologies>
  5779. <technology name=""/>
  5780. </technologies>
  5781. </device>
  5782. <device name="C025_050-024X070" package="C025_050-024X070">
  5783. <connects>
  5784. <connect gate="G$1" pin="1" pad="1"/>
  5785. <connect gate="G$1" pin="2" pad="2"/>
  5786. </connects>
  5787. <technologies>
  5788. <technology name=""/>
  5789. </technologies>
  5790. </device>
  5791. <device name="025_050-025X075" package="C025_050-025X075">
  5792. <connects>
  5793. <connect gate="G$1" pin="1" pad="1"/>
  5794. <connect gate="G$1" pin="2" pad="2"/>
  5795. </connects>
  5796. <technologies>
  5797. <technology name=""/>
  5798. </technologies>
  5799. </device>
  5800. <device name="025_050-035X075" package="C025_050-035X075">
  5801. <connects>
  5802. <connect gate="G$1" pin="1" pad="1"/>
  5803. <connect gate="G$1" pin="2" pad="2"/>
  5804. </connects>
  5805. <technologies>
  5806. <technology name=""/>
  5807. </technologies>
  5808. </device>
  5809. <device name="025_050-045X075" package="C025_050-045X075">
  5810. <connects>
  5811. <connect gate="G$1" pin="1" pad="1"/>
  5812. <connect gate="G$1" pin="2" pad="2"/>
  5813. </connects>
  5814. <technologies>
  5815. <technology name=""/>
  5816. </technologies>
  5817. </device>
  5818. <device name="025_050-055X075" package="C025_050-055X075">
  5819. <connects>
  5820. <connect gate="G$1" pin="1" pad="1"/>
  5821. <connect gate="G$1" pin="2" pad="2"/>
  5822. </connects>
  5823. <technologies>
  5824. <technology name=""/>
  5825. </technologies>
  5826. </device>
  5827. <device name="050-024X044" package="C050-024X044">
  5828. <connects>
  5829. <connect gate="G$1" pin="1" pad="1"/>
  5830. <connect gate="G$1" pin="2" pad="2"/>
  5831. </connects>
  5832. <technologies>
  5833. <technology name=""/>
  5834. </technologies>
  5835. </device>
  5836. <device name="050-025X075" package="C050-025X075">
  5837. <connects>
  5838. <connect gate="G$1" pin="1" pad="1"/>
  5839. <connect gate="G$1" pin="2" pad="2"/>
  5840. </connects>
  5841. <technologies>
  5842. <technology name=""/>
  5843. </technologies>
  5844. </device>
  5845. <device name="050-045X075" package="C050-045X075">
  5846. <connects>
  5847. <connect gate="G$1" pin="1" pad="1"/>
  5848. <connect gate="G$1" pin="2" pad="2"/>
  5849. </connects>
  5850. <technologies>
  5851. <technology name=""/>
  5852. </technologies>
  5853. </device>
  5854. <device name="050-030X075" package="C050-030X075">
  5855. <connects>
  5856. <connect gate="G$1" pin="1" pad="1"/>
  5857. <connect gate="G$1" pin="2" pad="2"/>
  5858. </connects>
  5859. <technologies>
  5860. <technology name=""/>
  5861. </technologies>
  5862. </device>
  5863. <device name="050-050X075" package="C050-050X075">
  5864. <connects>
  5865. <connect gate="G$1" pin="1" pad="1"/>
  5866. <connect gate="G$1" pin="2" pad="2"/>
  5867. </connects>
  5868. <technologies>
  5869. <technology name=""/>
  5870. </technologies>
  5871. </device>
  5872. <device name="050-055X075" package="C050-055X075">
  5873. <connects>
  5874. <connect gate="G$1" pin="1" pad="1"/>
  5875. <connect gate="G$1" pin="2" pad="2"/>
  5876. </connects>
  5877. <technologies>
  5878. <technology name=""/>
  5879. </technologies>
  5880. </device>
  5881. <device name="050-075X075" package="C050-075X075">
  5882. <connects>
  5883. <connect gate="G$1" pin="1" pad="1"/>
  5884. <connect gate="G$1" pin="2" pad="2"/>
  5885. </connects>
  5886. <technologies>
  5887. <technology name=""/>
  5888. </technologies>
  5889. </device>
  5890. <device name="050H075X075" package="C050H075X075">
  5891. <connects>
  5892. <connect gate="G$1" pin="1" pad="1"/>
  5893. <connect gate="G$1" pin="2" pad="2"/>
  5894. </connects>
  5895. <technologies>
  5896. <technology name=""/>
  5897. </technologies>
  5898. </device>
  5899. <device name="075-032X103" package="C075-032X103">
  5900. <connects>
  5901. <connect gate="G$1" pin="1" pad="1"/>
  5902. <connect gate="G$1" pin="2" pad="2"/>
  5903. </connects>
  5904. <technologies>
  5905. <technology name=""/>
  5906. </technologies>
  5907. </device>
  5908. <device name="075-042X103" package="C075-042X103">
  5909. <connects>
  5910. <connect gate="G$1" pin="1" pad="1"/>
  5911. <connect gate="G$1" pin="2" pad="2"/>
  5912. </connects>
  5913. <technologies>
  5914. <technology name=""/>
  5915. </technologies>
  5916. </device>
  5917. <device name="075-052X106" package="C075-052X106">
  5918. <connects>
  5919. <connect gate="G$1" pin="1" pad="1"/>
  5920. <connect gate="G$1" pin="2" pad="2"/>
  5921. </connects>
  5922. <technologies>
  5923. <technology name=""/>
  5924. </technologies>
  5925. </device>
  5926. <device name="102-043X133" package="C102-043X133">
  5927. <connects>
  5928. <connect gate="G$1" pin="1" pad="1"/>
  5929. <connect gate="G$1" pin="2" pad="2"/>
  5930. </connects>
  5931. <technologies>
  5932. <technology name=""/>
  5933. </technologies>
  5934. </device>
  5935. <device name="102-054X133" package="C102-054X133">
  5936. <connects>
  5937. <connect gate="G$1" pin="1" pad="1"/>
  5938. <connect gate="G$1" pin="2" pad="2"/>
  5939. </connects>
  5940. <technologies>
  5941. <technology name=""/>
  5942. </technologies>
  5943. </device>
  5944. <device name="102-064X133" package="C102-064X133">
  5945. <connects>
  5946. <connect gate="G$1" pin="1" pad="1"/>
  5947. <connect gate="G$1" pin="2" pad="2"/>
  5948. </connects>
  5949. <technologies>
  5950. <technology name=""/>
  5951. </technologies>
  5952. </device>
  5953. <device name="102_152-062X184" package="C102_152-062X184">
  5954. <connects>
  5955. <connect gate="G$1" pin="1" pad="1"/>
  5956. <connect gate="G$1" pin="2" pad="2"/>
  5957. </connects>
  5958. <technologies>
  5959. <technology name=""/>
  5960. </technologies>
  5961. </device>
  5962. <device name="150-054X183" package="C150-054X183">
  5963. <connects>
  5964. <connect gate="G$1" pin="1" pad="1"/>
  5965. <connect gate="G$1" pin="2" pad="2"/>
  5966. </connects>
  5967. <technologies>
  5968. <technology name=""/>
  5969. </technologies>
  5970. </device>
  5971. <device name="150-064X183" package="C150-064X183">
  5972. <connects>
  5973. <connect gate="G$1" pin="1" pad="1"/>
  5974. <connect gate="G$1" pin="2" pad="2"/>
  5975. </connects>
  5976. <technologies>
  5977. <technology name=""/>
  5978. </technologies>
  5979. </device>
  5980. <device name="150-072X183" package="C150-072X183">
  5981. <connects>
  5982. <connect gate="G$1" pin="1" pad="1"/>
  5983. <connect gate="G$1" pin="2" pad="2"/>
  5984. </connects>
  5985. <technologies>
  5986. <technology name=""/>
  5987. </technologies>
  5988. </device>
  5989. <device name="150-084X183" package="C150-084X183">
  5990. <connects>
  5991. <connect gate="G$1" pin="1" pad="1"/>
  5992. <connect gate="G$1" pin="2" pad="2"/>
  5993. </connects>
  5994. <technologies>
  5995. <technology name=""/>
  5996. </technologies>
  5997. </device>
  5998. <device name="150-091X182" package="C150-091X182">
  5999. <connects>
  6000. <connect gate="G$1" pin="1" pad="1"/>
  6001. <connect gate="G$1" pin="2" pad="2"/>
  6002. </connects>
  6003. <technologies>
  6004. <technology name=""/>
  6005. </technologies>
  6006. </device>
  6007. <device name="225-062X268" package="C225-062X268">
  6008. <connects>
  6009. <connect gate="G$1" pin="1" pad="1"/>
  6010. <connect gate="G$1" pin="2" pad="2"/>
  6011. </connects>
  6012. <technologies>
  6013. <technology name=""/>
  6014. </technologies>
  6015. </device>
  6016. <device name="225-074X268" package="C225-074X268">
  6017. <connects>
  6018. <connect gate="G$1" pin="1" pad="1"/>
  6019. <connect gate="G$1" pin="2" pad="2"/>
  6020. </connects>
  6021. <technologies>
  6022. <technology name=""/>
  6023. </technologies>
  6024. </device>
  6025. <device name="225-087X268" package="C225-087X268">
  6026. <connects>
  6027. <connect gate="G$1" pin="1" pad="1"/>
  6028. <connect gate="G$1" pin="2" pad="2"/>
  6029. </connects>
  6030. <technologies>
  6031. <technology name=""/>
  6032. </technologies>
  6033. </device>
  6034. <device name="225-108X268" package="C225-108X268">
  6035. <connects>
  6036. <connect gate="G$1" pin="1" pad="1"/>
  6037. <connect gate="G$1" pin="2" pad="2"/>
  6038. </connects>
  6039. <technologies>
  6040. <technology name=""/>
  6041. </technologies>
  6042. </device>
  6043. <device name="225-113X268" package="C225-113X268">
  6044. <connects>
  6045. <connect gate="G$1" pin="1" pad="1"/>
  6046. <connect gate="G$1" pin="2" pad="2"/>
  6047. </connects>
  6048. <technologies>
  6049. <technology name=""/>
  6050. </technologies>
  6051. </device>
  6052. <device name="275-093X316" package="C275-093X316">
  6053. <connects>
  6054. <connect gate="G$1" pin="1" pad="1"/>
  6055. <connect gate="G$1" pin="2" pad="2"/>
  6056. </connects>
  6057. <technologies>
  6058. <technology name=""/>
  6059. </technologies>
  6060. </device>
  6061. <device name="275-113X316" package="C275-113X316">
  6062. <connects>
  6063. <connect gate="G$1" pin="1" pad="1"/>
  6064. <connect gate="G$1" pin="2" pad="2"/>
  6065. </connects>
  6066. <technologies>
  6067. <technology name=""/>
  6068. </technologies>
  6069. </device>
  6070. <device name="275-134X316" package="C275-134X316">
  6071. <connects>
  6072. <connect gate="G$1" pin="1" pad="1"/>
  6073. <connect gate="G$1" pin="2" pad="2"/>
  6074. </connects>
  6075. <technologies>
  6076. <technology name=""/>
  6077. </technologies>
  6078. </device>
  6079. <device name="275-205X316" package="C275-205X316">
  6080. <connects>
  6081. <connect gate="G$1" pin="1" pad="1"/>
  6082. <connect gate="G$1" pin="2" pad="2"/>
  6083. </connects>
  6084. <technologies>
  6085. <technology name=""/>
  6086. </technologies>
  6087. </device>
  6088. <device name="325-137X374" package="C325-137X374">
  6089. <connects>
  6090. <connect gate="G$1" pin="1" pad="1"/>
  6091. <connect gate="G$1" pin="2" pad="2"/>
  6092. </connects>
  6093. <technologies>
  6094. <technology name=""/>
  6095. </technologies>
  6096. </device>
  6097. <device name="325-162X374" package="C325-162X374">
  6098. <connects>
  6099. <connect gate="G$1" pin="1" pad="1"/>
  6100. <connect gate="G$1" pin="2" pad="2"/>
  6101. </connects>
  6102. <technologies>
  6103. <technology name=""/>
  6104. </technologies>
  6105. </device>
  6106. <device name="325-182X374" package="C325-182X374">
  6107. <connects>
  6108. <connect gate="G$1" pin="1" pad="1"/>
  6109. <connect gate="G$1" pin="2" pad="2"/>
  6110. </connects>
  6111. <technologies>
  6112. <technology name=""/>
  6113. </technologies>
  6114. </device>
  6115. <device name="375-192X418" package="C375-192X418">
  6116. <connects>
  6117. <connect gate="G$1" pin="1" pad="1"/>
  6118. <connect gate="G$1" pin="2" pad="2"/>
  6119. </connects>
  6120. <technologies>
  6121. <technology name=""/>
  6122. </technologies>
  6123. </device>
  6124. <device name="375-203X418" package="C375-203X418">
  6125. <connects>
  6126. <connect gate="G$1" pin="1" pad="1"/>
  6127. <connect gate="G$1" pin="2" pad="2"/>
  6128. </connects>
  6129. <technologies>
  6130. <technology name=""/>
  6131. </technologies>
  6132. </device>
  6133. <device name="050-035X075" package="C050-035X075">
  6134. <connects>
  6135. <connect gate="G$1" pin="1" pad="1"/>
  6136. <connect gate="G$1" pin="2" pad="2"/>
  6137. </connects>
  6138. <technologies>
  6139. <technology name=""/>
  6140. </technologies>
  6141. </device>
  6142. <device name="375-155X418" package="C375-155X418">
  6143. <connects>
  6144. <connect gate="G$1" pin="1" pad="1"/>
  6145. <connect gate="G$1" pin="2" pad="2"/>
  6146. </connects>
  6147. <technologies>
  6148. <technology name=""/>
  6149. </technologies>
  6150. </device>
  6151. <device name="075-063X106" package="C075-063X106">
  6152. <connects>
  6153. <connect gate="G$1" pin="1" pad="1"/>
  6154. <connect gate="G$1" pin="2" pad="2"/>
  6155. </connects>
  6156. <technologies>
  6157. <technology name=""/>
  6158. </technologies>
  6159. </device>
  6160. <device name="275-154X316" package="C275-154X316">
  6161. <connects>
  6162. <connect gate="G$1" pin="1" pad="1"/>
  6163. <connect gate="G$1" pin="2" pad="2"/>
  6164. </connects>
  6165. <technologies>
  6166. <technology name=""/>
  6167. </technologies>
  6168. </device>
  6169. <device name="275-173X316" package="C275-173X316">
  6170. <connects>
  6171. <connect gate="G$1" pin="1" pad="1"/>
  6172. <connect gate="G$1" pin="2" pad="2"/>
  6173. </connects>
  6174. <technologies>
  6175. <technology name=""/>
  6176. </technologies>
  6177. </device>
  6178. <device name="C0402K" package="C0402K">
  6179. <connects>
  6180. <connect gate="G$1" pin="1" pad="1"/>
  6181. <connect gate="G$1" pin="2" pad="2"/>
  6182. </connects>
  6183. <technologies>
  6184. <technology name=""/>
  6185. </technologies>
  6186. </device>
  6187. <device name="C0603K" package="C0603K">
  6188. <connects>
  6189. <connect gate="G$1" pin="1" pad="1"/>
  6190. <connect gate="G$1" pin="2" pad="2"/>
  6191. </connects>
  6192. <technologies>
  6193. <technology name=""/>
  6194. </technologies>
  6195. </device>
  6196. <device name="C0805K" package="C0805K">
  6197. <connects>
  6198. <connect gate="G$1" pin="1" pad="1"/>
  6199. <connect gate="G$1" pin="2" pad="2"/>
  6200. </connects>
  6201. <technologies>
  6202. <technology name=""/>
  6203. </technologies>
  6204. </device>
  6205. <device name="C1206K" package="C1206K">
  6206. <connects>
  6207. <connect gate="G$1" pin="1" pad="1"/>
  6208. <connect gate="G$1" pin="2" pad="2"/>
  6209. </connects>
  6210. <technologies>
  6211. <technology name=""/>
  6212. </technologies>
  6213. </device>
  6214. <device name="C1210K" package="C1210K">
  6215. <connects>
  6216. <connect gate="G$1" pin="1" pad="1"/>
  6217. <connect gate="G$1" pin="2" pad="2"/>
  6218. </connects>
  6219. <technologies>
  6220. <technology name=""/>
  6221. </technologies>
  6222. </device>
  6223. <device name="C1812K" package="C1812K">
  6224. <connects>
  6225. <connect gate="G$1" pin="1" pad="1"/>
  6226. <connect gate="G$1" pin="2" pad="2"/>
  6227. </connects>
  6228. <technologies>
  6229. <technology name=""/>
  6230. </technologies>
  6231. </device>
  6232. <device name="C1825K" package="C1825K">
  6233. <connects>
  6234. <connect gate="G$1" pin="1" pad="1"/>
  6235. <connect gate="G$1" pin="2" pad="2"/>
  6236. </connects>
  6237. <technologies>
  6238. <technology name=""/>
  6239. </technologies>
  6240. </device>
  6241. <device name="C2220K" package="C2220K">
  6242. <connects>
  6243. <connect gate="G$1" pin="1" pad="1"/>
  6244. <connect gate="G$1" pin="2" pad="2"/>
  6245. </connects>
  6246. <technologies>
  6247. <technology name=""/>
  6248. </technologies>
  6249. </device>
  6250. <device name="C2225K" package="C2225K">
  6251. <connects>
  6252. <connect gate="G$1" pin="1" pad="1"/>
  6253. <connect gate="G$1" pin="2" pad="2"/>
  6254. </connects>
  6255. <technologies>
  6256. <technology name=""/>
  6257. </technologies>
  6258. </device>
  6259. <device name="HPC0201" package="HPC0201">
  6260. <connects>
  6261. <connect gate="G$1" pin="1" pad="1"/>
  6262. <connect gate="G$1" pin="2" pad="2"/>
  6263. </connects>
  6264. <technologies>
  6265. <technology name=""/>
  6266. </technologies>
  6267. </device>
  6268. <device name="C0201" package="C0201">
  6269. <connects>
  6270. <connect gate="G$1" pin="1" pad="1"/>
  6271. <connect gate="G$1" pin="2" pad="2"/>
  6272. </connects>
  6273. <technologies>
  6274. <technology name=""/>
  6275. </technologies>
  6276. </device>
  6277. <device name="C1808" package="C1808">
  6278. <connects>
  6279. <connect gate="G$1" pin="1" pad="1"/>
  6280. <connect gate="G$1" pin="2" pad="2"/>
  6281. </connects>
  6282. <technologies>
  6283. <technology name=""/>
  6284. </technologies>
  6285. </device>
  6286. <device name="C3640" package="C3640">
  6287. <connects>
  6288. <connect gate="G$1" pin="1" pad="1"/>
  6289. <connect gate="G$1" pin="2" pad="2"/>
  6290. </connects>
  6291. <technologies>
  6292. <technology name=""/>
  6293. </technologies>
  6294. </device>
  6295. <device name="01005" package="C01005">
  6296. <connects>
  6297. <connect gate="G$1" pin="1" pad="1"/>
  6298. <connect gate="G$1" pin="2" pad="2"/>
  6299. </connects>
  6300. <technologies>
  6301. <technology name=""/>
  6302. </technologies>
  6303. </device>
  6304. </devices>
  6305. </deviceset>
  6306. </devicesets>
  6307. </library>
  6308. <library name="pinhead">
  6309. <description>&lt;b&gt;Pin Header Connectors&lt;/b&gt;&lt;p&gt;
  6310. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  6311. <packages>
  6312. <package name="1X03">
  6313. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6314. <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  6315. <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  6316. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  6317. <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6318. <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  6319. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  6320. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  6321. <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  6322. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6323. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  6324. <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
  6325. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
  6326. <wire x1="-3.175" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  6327. <wire x1="-3.81" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  6328. <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  6329. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  6330. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  6331. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  6332. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
  6333. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  6334. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  6335. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
  6336. <pad name="1" x="-2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  6337. <pad name="2" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  6338. <pad name="3" x="2.54" y="0" drill="1.016" shape="long" rot="R90"/>
  6339. <text x="-3.8862" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6340. <text x="-3.81" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6341. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  6342. <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
  6343. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  6344. </package>
  6345. <package name="1X03/90">
  6346. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6347. <wire x1="-3.81" y1="-1.905" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/>
  6348. <wire x1="-1.27" y1="-1.905" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  6349. <wire x1="-1.27" y1="0.635" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
  6350. <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-1.905" width="0.1524" layer="21"/>
  6351. <wire x1="-2.54" y1="6.985" x2="-2.54" y2="1.27" width="0.762" layer="21"/>
  6352. <wire x1="-1.27" y1="-1.905" x2="1.27" y2="-1.905" width="0.1524" layer="21"/>
  6353. <wire x1="1.27" y1="-1.905" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  6354. <wire x1="1.27" y1="0.635" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
  6355. <wire x1="0" y1="6.985" x2="0" y2="1.27" width="0.762" layer="21"/>
  6356. <wire x1="1.27" y1="-1.905" x2="3.81" y2="-1.905" width="0.1524" layer="21"/>
  6357. <wire x1="3.81" y1="-1.905" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
  6358. <wire x1="3.81" y1="0.635" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
  6359. <wire x1="2.54" y1="6.985" x2="2.54" y2="1.27" width="0.762" layer="21"/>
  6360. <pad name="1" x="-2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6361. <pad name="2" x="0" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6362. <pad name="3" x="2.54" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6363. <text x="-4.445" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  6364. <text x="5.715" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6365. <rectangle x1="-2.921" y1="0.635" x2="-2.159" y2="1.143" layer="21"/>
  6366. <rectangle x1="-0.381" y1="0.635" x2="0.381" y2="1.143" layer="21"/>
  6367. <rectangle x1="2.159" y1="0.635" x2="2.921" y2="1.143" layer="21"/>
  6368. <rectangle x1="-2.921" y1="-2.921" x2="-2.159" y2="-1.905" layer="21"/>
  6369. <rectangle x1="-0.381" y1="-2.921" x2="0.381" y2="-1.905" layer="21"/>
  6370. <rectangle x1="2.159" y1="-2.921" x2="2.921" y2="-1.905" layer="21"/>
  6371. </package>
  6372. <package name="1X06">
  6373. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6374. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  6375. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6376. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  6377. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  6378. <wire x1="2.54" y1="0.635" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
  6379. <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
  6380. <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6381. <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
  6382. <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
  6383. <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
  6384. <wire x1="3.175" y1="-1.27" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  6385. <wire x1="-2.54" y1="0.635" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
  6386. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  6387. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6388. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6389. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  6390. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6391. <wire x1="-1.905" y1="-1.27" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6392. <wire x1="0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6393. <wire x1="0" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6394. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6395. <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
  6396. <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6397. <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  6398. <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
  6399. <wire x1="-5.08" y1="0.635" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
  6400. <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
  6401. <wire x1="-3.175" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6402. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6403. <wire x1="-2.54" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
  6404. <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
  6405. <wire x1="-4.445" y1="-1.27" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
  6406. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
  6407. <wire x1="-6.985" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6408. <wire x1="-7.62" y1="-0.635" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  6409. <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
  6410. <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
  6411. <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6412. <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
  6413. <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
  6414. <wire x1="5.715" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6415. <wire x1="5.08" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  6416. <wire x1="6.985" y1="-1.27" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
  6417. <pad name="1" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  6418. <pad name="2" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  6419. <pad name="3" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6420. <pad name="4" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6421. <pad name="5" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
  6422. <pad name="6" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
  6423. <text x="-7.6962" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6424. <text x="-7.62" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6425. <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
  6426. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  6427. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  6428. <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
  6429. <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
  6430. <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
  6431. </package>
  6432. <package name="1X06/90">
  6433. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6434. <wire x1="-7.62" y1="-1.905" x2="-5.08" y2="-1.905" width="0.1524" layer="21"/>
  6435. <wire x1="-5.08" y1="-1.905" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6436. <wire x1="-5.08" y1="0.635" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
  6437. <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-1.905" width="0.1524" layer="21"/>
  6438. <wire x1="-6.35" y1="6.985" x2="-6.35" y2="1.27" width="0.762" layer="21"/>
  6439. <wire x1="-5.08" y1="-1.905" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  6440. <wire x1="-2.54" y1="-1.905" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6441. <wire x1="-2.54" y1="0.635" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
  6442. <wire x1="-3.81" y1="6.985" x2="-3.81" y2="1.27" width="0.762" layer="21"/>
  6443. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  6444. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6445. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6446. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  6447. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  6448. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6449. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6450. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  6451. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="21"/>
  6452. <wire x1="5.08" y1="-1.905" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6453. <wire x1="5.08" y1="0.635" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6454. <wire x1="3.81" y1="6.985" x2="3.81" y2="1.27" width="0.762" layer="21"/>
  6455. <wire x1="5.08" y1="-1.905" x2="7.62" y2="-1.905" width="0.1524" layer="21"/>
  6456. <wire x1="7.62" y1="-1.905" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
  6457. <wire x1="7.62" y1="0.635" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
  6458. <wire x1="6.35" y1="6.985" x2="6.35" y2="1.27" width="0.762" layer="21"/>
  6459. <pad name="1" x="-6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6460. <pad name="2" x="-3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6461. <pad name="3" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6462. <pad name="4" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6463. <pad name="5" x="3.81" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6464. <pad name="6" x="6.35" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6465. <text x="-8.255" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  6466. <text x="9.525" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6467. <rectangle x1="-6.731" y1="0.635" x2="-5.969" y2="1.143" layer="21"/>
  6468. <rectangle x1="-4.191" y1="0.635" x2="-3.429" y2="1.143" layer="21"/>
  6469. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  6470. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  6471. <rectangle x1="3.429" y1="0.635" x2="4.191" y2="1.143" layer="21"/>
  6472. <rectangle x1="5.969" y1="0.635" x2="6.731" y2="1.143" layer="21"/>
  6473. <rectangle x1="-6.731" y1="-2.921" x2="-5.969" y2="-1.905" layer="21"/>
  6474. <rectangle x1="-4.191" y1="-2.921" x2="-3.429" y2="-1.905" layer="21"/>
  6475. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  6476. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  6477. <rectangle x1="3.429" y1="-2.921" x2="4.191" y2="-1.905" layer="21"/>
  6478. <rectangle x1="5.969" y1="-2.921" x2="6.731" y2="-1.905" layer="21"/>
  6479. </package>
  6480. <package name="1X02">
  6481. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6482. <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
  6483. <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6484. <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6485. <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
  6486. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
  6487. <wire x1="-1.905" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6488. <wire x1="-2.54" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6489. <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
  6490. <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
  6491. <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
  6492. <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6493. <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
  6494. <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
  6495. <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
  6496. <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
  6497. <pad name="1" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6498. <pad name="2" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
  6499. <text x="-2.6162" y="1.8288" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6500. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6501. <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
  6502. <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
  6503. </package>
  6504. <package name="1X02/90">
  6505. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6506. <wire x1="-2.54" y1="-1.905" x2="0" y2="-1.905" width="0.1524" layer="21"/>
  6507. <wire x1="0" y1="-1.905" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6508. <wire x1="0" y1="0.635" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
  6509. <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-1.905" width="0.1524" layer="21"/>
  6510. <wire x1="-1.27" y1="6.985" x2="-1.27" y2="1.27" width="0.762" layer="21"/>
  6511. <wire x1="0" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="21"/>
  6512. <wire x1="2.54" y1="-1.905" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
  6513. <wire x1="2.54" y1="0.635" x2="0" y2="0.635" width="0.1524" layer="21"/>
  6514. <wire x1="1.27" y1="6.985" x2="1.27" y2="1.27" width="0.762" layer="21"/>
  6515. <pad name="1" x="-1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6516. <pad name="2" x="1.27" y="-3.81" drill="1.016" shape="long" rot="R90"/>
  6517. <text x="-3.175" y="-3.81" size="1.27" layer="25" ratio="10" rot="R90">&gt;NAME</text>
  6518. <text x="4.445" y="-3.81" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6519. <rectangle x1="-1.651" y1="0.635" x2="-0.889" y2="1.143" layer="21"/>
  6520. <rectangle x1="0.889" y1="0.635" x2="1.651" y2="1.143" layer="21"/>
  6521. <rectangle x1="-1.651" y1="-2.921" x2="-0.889" y2="-1.905" layer="21"/>
  6522. <rectangle x1="0.889" y1="-2.921" x2="1.651" y2="-1.905" layer="21"/>
  6523. </package>
  6524. </packages>
  6525. <symbols>
  6526. <symbol name="PINHD3">
  6527. <wire x1="-6.35" y1="-5.08" x2="1.27" y2="-5.08" width="0.4064" layer="94"/>
  6528. <wire x1="1.27" y1="-5.08" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  6529. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  6530. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/>
  6531. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  6532. <text x="-6.35" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  6533. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6534. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  6535. <pin name="3" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6536. </symbol>
  6537. <symbol name="PINHD6">
  6538. <wire x1="-6.35" y1="-7.62" x2="1.27" y2="-7.62" width="0.4064" layer="94"/>
  6539. <wire x1="1.27" y1="-7.62" x2="1.27" y2="10.16" width="0.4064" layer="94"/>
  6540. <wire x1="1.27" y1="10.16" x2="-6.35" y2="10.16" width="0.4064" layer="94"/>
  6541. <wire x1="-6.35" y1="10.16" x2="-6.35" y2="-7.62" width="0.4064" layer="94"/>
  6542. <text x="-6.35" y="10.795" size="1.778" layer="95">&gt;NAME</text>
  6543. <text x="-6.35" y="-10.16" size="1.778" layer="96">&gt;VALUE</text>
  6544. <pin name="1" x="-2.54" y="7.62" visible="pad" length="short" direction="pas" function="dot"/>
  6545. <pin name="2" x="-2.54" y="5.08" visible="pad" length="short" direction="pas" function="dot"/>
  6546. <pin name="3" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6547. <pin name="4" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  6548. <pin name="5" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6549. <pin name="6" x="-2.54" y="-5.08" visible="pad" length="short" direction="pas" function="dot"/>
  6550. </symbol>
  6551. <symbol name="PINHD2">
  6552. <wire x1="-6.35" y1="-2.54" x2="1.27" y2="-2.54" width="0.4064" layer="94"/>
  6553. <wire x1="1.27" y1="-2.54" x2="1.27" y2="5.08" width="0.4064" layer="94"/>
  6554. <wire x1="1.27" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/>
  6555. <wire x1="-6.35" y1="5.08" x2="-6.35" y2="-2.54" width="0.4064" layer="94"/>
  6556. <text x="-6.35" y="5.715" size="1.778" layer="95">&gt;NAME</text>
  6557. <text x="-6.35" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  6558. <pin name="1" x="-2.54" y="2.54" visible="pad" length="short" direction="pas" function="dot"/>
  6559. <pin name="2" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
  6560. </symbol>
  6561. </symbols>
  6562. <devicesets>
  6563. <deviceset name="PINHD-1X3" prefix="JP" uservalue="yes">
  6564. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6565. <gates>
  6566. <gate name="A" symbol="PINHD3" x="0" y="0"/>
  6567. </gates>
  6568. <devices>
  6569. <device name="" package="1X03">
  6570. <connects>
  6571. <connect gate="A" pin="1" pad="1"/>
  6572. <connect gate="A" pin="2" pad="2"/>
  6573. <connect gate="A" pin="3" pad="3"/>
  6574. </connects>
  6575. <technologies>
  6576. <technology name=""/>
  6577. </technologies>
  6578. </device>
  6579. <device name="/90" package="1X03/90">
  6580. <connects>
  6581. <connect gate="A" pin="1" pad="1"/>
  6582. <connect gate="A" pin="2" pad="2"/>
  6583. <connect gate="A" pin="3" pad="3"/>
  6584. </connects>
  6585. <technologies>
  6586. <technology name=""/>
  6587. </technologies>
  6588. </device>
  6589. </devices>
  6590. </deviceset>
  6591. <deviceset name="PINHD-1X6" prefix="JP" uservalue="yes">
  6592. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6593. <gates>
  6594. <gate name="A" symbol="PINHD6" x="0" y="-2.54"/>
  6595. </gates>
  6596. <devices>
  6597. <device name="" package="1X06">
  6598. <connects>
  6599. <connect gate="A" pin="1" pad="1"/>
  6600. <connect gate="A" pin="2" pad="2"/>
  6601. <connect gate="A" pin="3" pad="3"/>
  6602. <connect gate="A" pin="4" pad="4"/>
  6603. <connect gate="A" pin="5" pad="5"/>
  6604. <connect gate="A" pin="6" pad="6"/>
  6605. </connects>
  6606. <technologies>
  6607. <technology name=""/>
  6608. </technologies>
  6609. </device>
  6610. <device name="/90" package="1X06/90">
  6611. <connects>
  6612. <connect gate="A" pin="1" pad="1"/>
  6613. <connect gate="A" pin="2" pad="2"/>
  6614. <connect gate="A" pin="3" pad="3"/>
  6615. <connect gate="A" pin="4" pad="4"/>
  6616. <connect gate="A" pin="5" pad="5"/>
  6617. <connect gate="A" pin="6" pad="6"/>
  6618. </connects>
  6619. <technologies>
  6620. <technology name=""/>
  6621. </technologies>
  6622. </device>
  6623. </devices>
  6624. </deviceset>
  6625. <deviceset name="PINHD-1X2" prefix="JP" uservalue="yes">
  6626. <description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>
  6627. <gates>
  6628. <gate name="G$1" symbol="PINHD2" x="0" y="0"/>
  6629. </gates>
  6630. <devices>
  6631. <device name="" package="1X02">
  6632. <connects>
  6633. <connect gate="G$1" pin="1" pad="1"/>
  6634. <connect gate="G$1" pin="2" pad="2"/>
  6635. </connects>
  6636. <technologies>
  6637. <technology name=""/>
  6638. </technologies>
  6639. </device>
  6640. <device name="/90" package="1X02/90">
  6641. <connects>
  6642. <connect gate="G$1" pin="1" pad="1"/>
  6643. <connect gate="G$1" pin="2" pad="2"/>
  6644. </connects>
  6645. <technologies>
  6646. <technology name=""/>
  6647. </technologies>
  6648. </device>
  6649. </devices>
  6650. </deviceset>
  6651. </devicesets>
  6652. </library>
  6653. </libraries>
  6654. <attributes>
  6655. </attributes>
  6656. <variantdefs>
  6657. </variantdefs>
  6658. <classes>
  6659. <class number="0" name="default" width="0" drill="0">
  6660. </class>
  6661. </classes>
  6662. <parts>
  6663. <part name="IC1" library="stm8s103" deviceset="STM8S103F*" device="P"/>
  6664. <part name="QF1" library="crystal" deviceset="17M15AUM1" device=""/>
  6665. <part name="U$1" library="optocoupler" deviceset="LTV847" device=""/>
  6666. <part name="R1" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6667. <part name="R2" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6668. <part name="R3" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6669. <part name="R4" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6670. <part name="C1" library="resistor" deviceset="C-EU" device="C1206" value="100mkF"/>
  6671. <part name="C2" library="resistor" deviceset="C-EU" device="C1206" value="10mkF"/>
  6672. <part name="JP1" library="pinhead" deviceset="PINHD-1X3" device="" value="CTL"/>
  6673. <part name="JP2" library="pinhead" deviceset="PINHD-1X6" device=""/>
  6674. <part name="JP3" library="pinhead" deviceset="PINHD-1X2" device=""/>
  6675. <part name="R5" library="resistor" deviceset="R-EU_" device="M1206" value="500"/>
  6676. <part name="R6" library="resistor" deviceset="R-EU_" device="M1206" value="500"/>
  6677. <part name="C3" library="resistor" deviceset="C-EU" device="C1206" value="1mkF"/>
  6678. <part name="JP4" library="pinhead" deviceset="PINHD-1X3" device=""/>
  6679. <part name="R7" library="resistor" deviceset="R-EU_" device="M1206" value="1K"/>
  6680. <part name="JP5" library="pinhead" deviceset="PINHD-1X2" device=""/>
  6681. <part name="R8" library="resistor" deviceset="R-EU_" device="M1206" value="1K"/>
  6682. <part name="R9" library="resistor" deviceset="R-EU_" device="M1206" value="1K"/>
  6683. <part name="U$3" library="mc33269dt" deviceset="MC33269DT" device=""/>
  6684. <part name="R10" library="resistor" deviceset="R-EU_" device="M1206" value="10"/>
  6685. <part name="R11" library="resistor" deviceset="R-EU_" device="M1206" value="100"/>
  6686. </parts>
  6687. <sheets>
  6688. <sheet>
  6689. <plain>
  6690. <text x="11.43" y="-17.78" size="1.778" layer="95">2</text>
  6691. <text x="11.43" y="-20.32" size="1.778" layer="95">15</text>
  6692. <text x="11.43" y="-22.86" size="1.778" layer="95">14</text>
  6693. <text x="11.43" y="-25.4" size="1.778" layer="95">12</text>
  6694. <text x="11.43" y="-27.94" size="1.778" layer="95">10</text>
  6695. <text x="11.43" y="-30.48" size="1.778" layer="95">13</text>
  6696. <text x="132.08" y="-30.48" size="1.778" layer="95">CALL</text>
  6697. <text x="132.08" y="-33.02" size="1.778" layer="95">END</text>
  6698. <text x="132.08" y="-35.56" size="1.778" layer="95">+3.3V</text>
  6699. <text x="121.92" y="72.39" size="1.778" layer="95">SWDIO</text>
  6700. <text x="121.92" y="69.85" size="1.778" layer="95">SWDCLK</text>
  6701. </plain>
  6702. <instances>
  6703. <instance part="IC1" gate="G$1" x="60.96" y="43.18"/>
  6704. <instance part="QF1" gate="G$1" x="119.38" y="55.88" rot="R90"/>
  6705. <instance part="U$1" gate="G$1" x="53.34" y="-17.78" rot="R270"/>
  6706. <instance part="R1" gate="G$1" x="60.96" y="-10.16" rot="R90"/>
  6707. <instance part="R2" gate="G$1" x="71.12" y="-10.16" rot="R90"/>
  6708. <instance part="R3" gate="G$1" x="81.28" y="-10.16" rot="R90"/>
  6709. <instance part="R4" gate="G$1" x="91.44" y="-10.16" rot="R90"/>
  6710. <instance part="C1" gate="G$1" x="180.34" y="30.48" rot="R90"/>
  6711. <instance part="C2" gate="G$1" x="132.08" y="5.08"/>
  6712. <instance part="JP1" gate="A" x="129.54" y="-33.02"/>
  6713. <instance part="JP2" gate="A" x="17.78" y="-22.86" rot="R180"/>
  6714. <instance part="JP3" gate="G$1" x="119.38" y="69.85"/>
  6715. <instance part="R5" gate="G$1" x="10.16" y="66.04" rot="R180"/>
  6716. <instance part="R6" gate="G$1" x="-5.08" y="66.04" rot="R180"/>
  6717. <instance part="C3" gate="G$1" x="2.54" y="55.88" rot="R180"/>
  6718. <instance part="JP4" gate="A" x="171.45" y="76.2"/>
  6719. <instance part="R7" gate="G$1" x="149.86" y="78.74" rot="R180"/>
  6720. <instance part="JP5" gate="G$1" x="198.12" y="60.96"/>
  6721. <instance part="R8" gate="G$1" x="135.89" y="-8.89" rot="R180"/>
  6722. <instance part="R9" gate="G$1" x="135.89" y="-19.05" rot="R180"/>
  6723. <instance part="U$3" gate="G$1" x="160.02" y="20.32" rot="R180"/>
  6724. <instance part="R10" gate="G$1" x="139.7" y="15.24" rot="R180"/>
  6725. <instance part="R11" gate="G$1" x="142.24" y="31.75" rot="R180"/>
  6726. </instances>
  6727. <busses>
  6728. </busses>
  6729. <nets>
  6730. <net name="N$1" class="0">
  6731. <segment>
  6732. <pinref part="IC1" gate="G$1" pin="PF0-OSC_IN"/>
  6733. <pinref part="QF1" gate="G$1" pin="3"/>
  6734. <wire x1="101.6" y1="58.42" x2="119.38" y2="58.42" width="0.1524" layer="91"/>
  6735. </segment>
  6736. </net>
  6737. <net name="N$2" class="0">
  6738. <segment>
  6739. <pinref part="IC1" gate="G$1" pin="PF1-OSC_OUT"/>
  6740. <wire x1="101.6" y1="55.88" x2="114.3" y2="55.88" width="0.1524" layer="91"/>
  6741. <wire x1="114.3" y1="55.88" x2="114.3" y2="50.8" width="0.1524" layer="91"/>
  6742. <pinref part="QF1" gate="G$1" pin="1"/>
  6743. <wire x1="114.3" y1="50.8" x2="119.38" y2="50.8" width="0.1524" layer="91"/>
  6744. <wire x1="119.38" y1="50.8" x2="119.38" y2="53.34" width="0.1524" layer="91"/>
  6745. </segment>
  6746. </net>
  6747. <net name="N$3" class="0">
  6748. <segment>
  6749. <pinref part="IC1" gate="G$1" pin="PA1/USART1_RTS/ADC_IN1"/>
  6750. <wire x1="22.86" y1="50.8" x2="15.24" y2="50.8" width="0.1524" layer="91"/>
  6751. <wire x1="15.24" y1="50.8" x2="15.24" y2="10.16" width="0.1524" layer="91"/>
  6752. <wire x1="15.24" y1="10.16" x2="91.44" y2="10.16" width="0.1524" layer="91"/>
  6753. <pinref part="R4" gate="G$1" pin="2"/>
  6754. <wire x1="91.44" y1="10.16" x2="91.44" y2="-5.08" width="0.1524" layer="91"/>
  6755. </segment>
  6756. </net>
  6757. <net name="N$4" class="0">
  6758. <segment>
  6759. <pinref part="IC1" gate="G$1" pin="PA2/USART1_TX/ADC_IN2"/>
  6760. <wire x1="22.86" y1="40.64" x2="17.78" y2="40.64" width="0.1524" layer="91"/>
  6761. <wire x1="17.78" y1="40.64" x2="17.78" y2="7.62" width="0.1524" layer="91"/>
  6762. <wire x1="17.78" y1="7.62" x2="81.28" y2="7.62" width="0.1524" layer="91"/>
  6763. <pinref part="R3" gate="G$1" pin="2"/>
  6764. <wire x1="81.28" y1="7.62" x2="81.28" y2="-5.08" width="0.1524" layer="91"/>
  6765. </segment>
  6766. </net>
  6767. <net name="N$5" class="0">
  6768. <segment>
  6769. <pinref part="IC1" gate="G$1" pin="PA3/USART1_RX/ADC_IN3"/>
  6770. <wire x1="22.86" y1="48.26" x2="20.32" y2="48.26" width="0.1524" layer="91"/>
  6771. <wire x1="20.32" y1="48.26" x2="20.32" y2="5.08" width="0.1524" layer="91"/>
  6772. <wire x1="20.32" y1="5.08" x2="71.12" y2="5.08" width="0.1524" layer="91"/>
  6773. <pinref part="R2" gate="G$1" pin="2"/>
  6774. <wire x1="71.12" y1="5.08" x2="71.12" y2="-5.08" width="0.1524" layer="91"/>
  6775. </segment>
  6776. </net>
  6777. <net name="N$6" class="0">
  6778. <segment>
  6779. <pinref part="IC1" gate="G$1" pin="PA4/SPI1_NSS/ADC_IN4"/>
  6780. <wire x1="101.6" y1="48.26" x2="111.76" y2="48.26" width="0.1524" layer="91"/>
  6781. <wire x1="111.76" y1="48.26" x2="111.76" y2="2.54" width="0.1524" layer="91"/>
  6782. <pinref part="R1" gate="G$1" pin="2"/>
  6783. <wire x1="111.76" y1="2.54" x2="60.96" y2="2.54" width="0.1524" layer="91"/>
  6784. <wire x1="60.96" y1="2.54" x2="60.96" y2="-5.08" width="0.1524" layer="91"/>
  6785. </segment>
  6786. </net>
  6787. <net name="N$7" class="0">
  6788. <segment>
  6789. <pinref part="U$1" gate="G$1" pin="P$16"/>
  6790. <wire x1="91.44" y1="-40.64" x2="91.44" y2="-49.53" width="0.1524" layer="91"/>
  6791. <wire x1="91.44" y1="-49.53" x2="81.28" y2="-49.53" width="0.1524" layer="91"/>
  6792. <wire x1="81.28" y1="-49.53" x2="33.02" y2="-49.53" width="0.1524" layer="91"/>
  6793. <wire x1="33.02" y1="-49.53" x2="33.02" y2="-17.78" width="0.1524" layer="91"/>
  6794. <wire x1="33.02" y1="-17.78" x2="20.32" y2="-17.78" width="0.1524" layer="91"/>
  6795. <pinref part="U$1" gate="G$1" pin="P$14"/>
  6796. <wire x1="81.28" y1="-40.64" x2="81.28" y2="-49.53" width="0.1524" layer="91"/>
  6797. <junction x="81.28" y="-49.53"/>
  6798. <pinref part="JP2" gate="A" pin="6"/>
  6799. </segment>
  6800. </net>
  6801. <net name="N$8" class="0">
  6802. <segment>
  6803. <pinref part="U$1" gate="G$1" pin="P$15"/>
  6804. <wire x1="86.36" y1="-40.64" x2="86.36" y2="-48.26" width="0.1524" layer="91"/>
  6805. <wire x1="86.36" y1="-48.26" x2="35.56" y2="-48.26" width="0.1524" layer="91"/>
  6806. <wire x1="35.56" y1="-48.26" x2="35.56" y2="-20.32" width="0.1524" layer="91"/>
  6807. <wire x1="35.56" y1="-20.32" x2="20.32" y2="-20.32" width="0.1524" layer="91"/>
  6808. <pinref part="JP2" gate="A" pin="5"/>
  6809. </segment>
  6810. </net>
  6811. <net name="N$9" class="0">
  6812. <segment>
  6813. <pinref part="U$1" gate="G$1" pin="P$13"/>
  6814. <wire x1="76.2" y1="-40.64" x2="76.2" y2="-46.99" width="0.1524" layer="91"/>
  6815. <wire x1="76.2" y1="-46.99" x2="38.1" y2="-46.99" width="0.1524" layer="91"/>
  6816. <wire x1="38.1" y1="-46.99" x2="38.1" y2="-22.86" width="0.1524" layer="91"/>
  6817. <wire x1="38.1" y1="-22.86" x2="20.32" y2="-22.86" width="0.1524" layer="91"/>
  6818. <pinref part="JP2" gate="A" pin="4"/>
  6819. </segment>
  6820. </net>
  6821. <net name="N$10" class="0">
  6822. <segment>
  6823. <pinref part="U$1" gate="G$1" pin="P$12"/>
  6824. <wire x1="71.12" y1="-40.64" x2="71.12" y2="-45.72" width="0.1524" layer="91"/>
  6825. <wire x1="71.12" y1="-45.72" x2="60.96" y2="-45.72" width="0.1524" layer="91"/>
  6826. <wire x1="60.96" y1="-45.72" x2="40.64" y2="-45.72" width="0.1524" layer="91"/>
  6827. <wire x1="40.64" y1="-45.72" x2="40.64" y2="-25.4" width="0.1524" layer="91"/>
  6828. <wire x1="40.64" y1="-25.4" x2="20.32" y2="-25.4" width="0.1524" layer="91"/>
  6829. <pinref part="U$1" gate="G$1" pin="P$10"/>
  6830. <wire x1="60.96" y1="-40.64" x2="60.96" y2="-45.72" width="0.1524" layer="91"/>
  6831. <junction x="60.96" y="-45.72"/>
  6832. <pinref part="JP2" gate="A" pin="3"/>
  6833. </segment>
  6834. </net>
  6835. <net name="N$11" class="0">
  6836. <segment>
  6837. <pinref part="U$1" gate="G$1" pin="P$11"/>
  6838. <wire x1="66.04" y1="-40.64" x2="66.04" y2="-44.45" width="0.1524" layer="91"/>
  6839. <wire x1="66.04" y1="-44.45" x2="43.18" y2="-44.45" width="0.1524" layer="91"/>
  6840. <wire x1="43.18" y1="-44.45" x2="43.18" y2="-27.94" width="0.1524" layer="91"/>
  6841. <wire x1="43.18" y1="-27.94" x2="20.32" y2="-27.94" width="0.1524" layer="91"/>
  6842. <pinref part="JP2" gate="A" pin="2"/>
  6843. </segment>
  6844. </net>
  6845. <net name="N$12" class="0">
  6846. <segment>
  6847. <pinref part="U$1" gate="G$1" pin="P$9"/>
  6848. <wire x1="55.88" y1="-40.64" x2="55.88" y2="-43.18" width="0.1524" layer="91"/>
  6849. <wire x1="55.88" y1="-43.18" x2="45.72" y2="-43.18" width="0.1524" layer="91"/>
  6850. <wire x1="45.72" y1="-43.18" x2="45.72" y2="-30.48" width="0.1524" layer="91"/>
  6851. <wire x1="45.72" y1="-30.48" x2="20.32" y2="-30.48" width="0.1524" layer="91"/>
  6852. <pinref part="JP2" gate="A" pin="1"/>
  6853. </segment>
  6854. </net>
  6855. <net name="N$13" class="0">
  6856. <segment>
  6857. <wire x1="106.68" y1="-2.54" x2="132.08" y2="-2.54" width="0.1524" layer="91"/>
  6858. <wire x1="132.08" y1="-2.54" x2="144.78" y2="-2.54" width="0.1524" layer="91"/>
  6859. <wire x1="144.78" y1="-2.54" x2="185.42" y2="-2.54" width="0.1524" layer="91"/>
  6860. <wire x1="185.42" y1="-2.54" x2="185.42" y2="30.48" width="0.1524" layer="91"/>
  6861. <wire x1="185.42" y1="30.48" x2="185.42" y2="38.1" width="0.1524" layer="91"/>
  6862. <wire x1="185.42" y1="38.1" x2="185.42" y2="60.96" width="0.1524" layer="91"/>
  6863. <wire x1="185.42" y1="60.96" x2="195.58" y2="60.96" width="0.1524" layer="91"/>
  6864. <junction x="185.42" y="38.1"/>
  6865. <pinref part="IC1" gate="G$1" pin="VSS"/>
  6866. <wire x1="149.86" y1="38.1" x2="160.02" y2="38.1" width="0.1524" layer="91"/>
  6867. <wire x1="160.02" y1="38.1" x2="185.42" y2="38.1" width="0.1524" layer="91"/>
  6868. <wire x1="101.6" y1="22.86" x2="106.68" y2="22.86" width="0.1524" layer="91"/>
  6869. <wire x1="106.68" y1="22.86" x2="106.68" y2="-2.54" width="0.1524" layer="91"/>
  6870. <pinref part="U$1" gate="G$1" pin="P$1"/>
  6871. <wire x1="55.88" y1="-15.24" x2="55.88" y2="-2.54" width="0.1524" layer="91"/>
  6872. <wire x1="55.88" y1="-2.54" x2="66.04" y2="-2.54" width="0.1524" layer="91"/>
  6873. <junction x="106.68" y="-2.54"/>
  6874. <pinref part="U$1" gate="G$1" pin="P$3"/>
  6875. <wire x1="66.04" y1="-2.54" x2="76.2" y2="-2.54" width="0.1524" layer="91"/>
  6876. <wire x1="76.2" y1="-2.54" x2="86.36" y2="-2.54" width="0.1524" layer="91"/>
  6877. <wire x1="86.36" y1="-2.54" x2="106.68" y2="-2.54" width="0.1524" layer="91"/>
  6878. <wire x1="66.04" y1="-15.24" x2="66.04" y2="-2.54" width="0.1524" layer="91"/>
  6879. <junction x="66.04" y="-2.54"/>
  6880. <pinref part="U$1" gate="G$1" pin="P$5"/>
  6881. <wire x1="76.2" y1="-15.24" x2="76.2" y2="-2.54" width="0.1524" layer="91"/>
  6882. <junction x="76.2" y="-2.54"/>
  6883. <pinref part="U$1" gate="G$1" pin="P$7"/>
  6884. <wire x1="86.36" y1="-15.24" x2="86.36" y2="-2.54" width="0.1524" layer="91"/>
  6885. <junction x="86.36" y="-2.54"/>
  6886. <pinref part="C1" gate="G$1" pin="2"/>
  6887. <junction x="185.42" y="30.48"/>
  6888. <pinref part="C2" gate="G$1" pin="2"/>
  6889. <wire x1="132.08" y1="0" x2="132.08" y2="-2.54" width="0.1524" layer="91"/>
  6890. <junction x="132.08" y="-2.54"/>
  6891. <pinref part="C3" gate="G$1" pin="1"/>
  6892. <wire x1="55.88" y1="-2.54" x2="2.54" y2="-2.54" width="0.1524" layer="91"/>
  6893. <wire x1="2.54" y1="-2.54" x2="2.54" y2="53.34" width="0.1524" layer="91"/>
  6894. <junction x="55.88" y="-2.54"/>
  6895. <pinref part="JP4" gate="A" pin="3"/>
  6896. <wire x1="168.91" y1="73.66" x2="149.86" y2="73.66" width="0.1524" layer="91"/>
  6897. <wire x1="149.86" y1="73.66" x2="149.86" y2="38.1" width="0.1524" layer="91"/>
  6898. <pinref part="R8" gate="G$1" pin="1"/>
  6899. <wire x1="140.97" y1="-8.89" x2="144.78" y2="-8.89" width="0.1524" layer="91"/>
  6900. <wire x1="144.78" y1="-8.89" x2="144.78" y2="-2.54" width="0.1524" layer="91"/>
  6901. <junction x="144.78" y="-2.54"/>
  6902. <pinref part="R9" gate="G$1" pin="1"/>
  6903. <wire x1="144.78" y1="-8.89" x2="144.78" y2="-19.05" width="0.1524" layer="91"/>
  6904. <wire x1="144.78" y1="-19.05" x2="140.97" y2="-19.05" width="0.1524" layer="91"/>
  6905. <junction x="144.78" y="-8.89"/>
  6906. <pinref part="JP5" gate="G$1" pin="2"/>
  6907. <pinref part="U$3" gate="G$1" pin="GND"/>
  6908. <wire x1="160.02" y1="27.94" x2="160.02" y2="31.75" width="0.1524" layer="91"/>
  6909. <junction x="160.02" y="38.1"/>
  6910. <pinref part="R11" gate="G$1" pin="1"/>
  6911. <wire x1="160.02" y1="31.75" x2="160.02" y2="38.1" width="0.1524" layer="91"/>
  6912. <wire x1="147.32" y1="31.75" x2="160.02" y2="31.75" width="0.1524" layer="91"/>
  6913. <junction x="160.02" y="31.75"/>
  6914. </segment>
  6915. </net>
  6916. <net name="N$14" class="0">
  6917. <segment>
  6918. <wire x1="175.26" y1="30.48" x2="175.26" y2="63.5" width="0.1524" layer="91"/>
  6919. <wire x1="175.26" y1="63.5" x2="195.58" y2="63.5" width="0.1524" layer="91"/>
  6920. <pinref part="C1" gate="G$1" pin="1"/>
  6921. <wire x1="177.8" y1="30.48" x2="175.26" y2="30.48" width="0.1524" layer="91"/>
  6922. <junction x="175.26" y="30.48"/>
  6923. <pinref part="JP5" gate="G$1" pin="1"/>
  6924. <pinref part="U$3" gate="G$1" pin="VIN"/>
  6925. <wire x1="175.26" y1="30.48" x2="175.26" y2="15.24" width="0.1524" layer="91"/>
  6926. <wire x1="175.26" y1="15.24" x2="172.72" y2="15.24" width="0.1524" layer="91"/>
  6927. </segment>
  6928. </net>
  6929. <net name="N$15" class="0">
  6930. <segment>
  6931. <pinref part="IC1" gate="G$1" pin="VDD"/>
  6932. <wire x1="101.6" y1="20.32" x2="109.22" y2="20.32" width="0.1524" layer="91"/>
  6933. <wire x1="109.22" y1="20.32" x2="127" y2="20.32" width="0.1524" layer="91"/>
  6934. <wire x1="127" y1="20.32" x2="127" y2="25.4" width="0.1524" layer="91"/>
  6935. <wire x1="127" y1="25.4" x2="127" y2="78.74" width="0.1524" layer="91"/>
  6936. <wire x1="127" y1="78.74" x2="20.32" y2="78.74" width="0.1524" layer="91"/>
  6937. <wire x1="20.32" y1="78.74" x2="20.32" y2="60.96" width="0.1524" layer="91"/>
  6938. <pinref part="IC1" gate="G$1" pin="VDDA"/>
  6939. <wire x1="20.32" y1="60.96" x2="22.86" y2="60.96" width="0.1524" layer="91"/>
  6940. <wire x1="132.08" y1="25.4" x2="127" y2="25.4" width="0.1524" layer="91"/>
  6941. <junction x="127" y="25.4"/>
  6942. <pinref part="C2" gate="G$1" pin="1"/>
  6943. <wire x1="132.08" y1="25.4" x2="132.08" y2="15.24" width="0.1524" layer="91"/>
  6944. <junction x="132.08" y="25.4"/>
  6945. <pinref part="JP1" gate="A" pin="3"/>
  6946. <wire x1="132.08" y1="15.24" x2="132.08" y2="7.62" width="0.1524" layer="91"/>
  6947. <wire x1="109.22" y1="20.32" x2="109.22" y2="-35.56" width="0.1524" layer="91"/>
  6948. <wire x1="109.22" y1="-35.56" x2="127" y2="-35.56" width="0.1524" layer="91"/>
  6949. <junction x="109.22" y="20.32"/>
  6950. <wire x1="-8.89" y1="66.04" x2="-13.97" y2="66.04" width="0.1524" layer="91"/>
  6951. <wire x1="-13.97" y1="66.04" x2="-13.97" y2="87.63" width="0.1524" layer="91"/>
  6952. <wire x1="-13.97" y1="87.63" x2="132.08" y2="87.63" width="0.1524" layer="91"/>
  6953. <wire x1="132.08" y1="87.63" x2="132.08" y2="78.74" width="0.1524" layer="91"/>
  6954. <pinref part="R7" gate="G$1" pin="2"/>
  6955. <wire x1="132.08" y1="78.74" x2="132.08" y2="31.75" width="0.1524" layer="91"/>
  6956. <wire x1="132.08" y1="31.75" x2="132.08" y2="25.4" width="0.1524" layer="91"/>
  6957. <wire x1="144.78" y1="78.74" x2="132.08" y2="78.74" width="0.1524" layer="91"/>
  6958. <junction x="132.08" y="78.74"/>
  6959. <pinref part="R10" gate="G$1" pin="2"/>
  6960. <wire x1="134.62" y1="15.24" x2="132.08" y2="15.24" width="0.1524" layer="91"/>
  6961. <junction x="132.08" y="15.24"/>
  6962. <pinref part="R11" gate="G$1" pin="2"/>
  6963. <wire x1="137.16" y1="31.75" x2="132.08" y2="31.75" width="0.1524" layer="91"/>
  6964. <junction x="132.08" y="31.75"/>
  6965. </segment>
  6966. </net>
  6967. <net name="N$16" class="0">
  6968. <segment>
  6969. <pinref part="IC1" gate="G$1" pin="PA13/SWDIO"/>
  6970. <wire x1="101.6" y1="66.04" x2="106.68" y2="66.04" width="0.1524" layer="91"/>
  6971. <pinref part="JP3" gate="G$1" pin="1"/>
  6972. <wire x1="106.68" y1="66.04" x2="106.68" y2="72.39" width="0.1524" layer="91"/>
  6973. <wire x1="106.68" y1="72.39" x2="116.84" y2="72.39" width="0.1524" layer="91"/>
  6974. </segment>
  6975. </net>
  6976. <net name="N$17" class="0">
  6977. <segment>
  6978. <pinref part="IC1" gate="G$1" pin="PA14/SWD_CLK"/>
  6979. <wire x1="101.6" y1="63.5" x2="110.49" y2="63.5" width="0.1524" layer="91"/>
  6980. <wire x1="110.49" y1="63.5" x2="110.49" y2="69.85" width="0.1524" layer="91"/>
  6981. <pinref part="JP3" gate="G$1" pin="2"/>
  6982. <wire x1="110.49" y1="69.85" x2="116.84" y2="69.85" width="0.1524" layer="91"/>
  6983. </segment>
  6984. </net>
  6985. <net name="N$18" class="0">
  6986. <segment>
  6987. <pinref part="U$1" gate="G$1" pin="P$2"/>
  6988. <pinref part="R1" gate="G$1" pin="1"/>
  6989. </segment>
  6990. </net>
  6991. <net name="N$19" class="0">
  6992. <segment>
  6993. <pinref part="U$1" gate="G$1" pin="P$4"/>
  6994. <pinref part="R2" gate="G$1" pin="1"/>
  6995. </segment>
  6996. </net>
  6997. <net name="N$20" class="0">
  6998. <segment>
  6999. <pinref part="U$1" gate="G$1" pin="P$6"/>
  7000. <pinref part="R3" gate="G$1" pin="1"/>
  7001. </segment>
  7002. </net>
  7003. <net name="N$21" class="0">
  7004. <segment>
  7005. <pinref part="U$1" gate="G$1" pin="P$8"/>
  7006. <pinref part="R4" gate="G$1" pin="1"/>
  7007. </segment>
  7008. </net>
  7009. <net name="N$70" class="0">
  7010. <segment>
  7011. <pinref part="JP1" gate="A" pin="1"/>
  7012. <wire x1="127" y1="-30.48" x2="114.3" y2="-30.48" width="0.1524" layer="91"/>
  7013. <wire x1="114.3" y1="-30.48" x2="114.3" y2="-19.05" width="0.1524" layer="91"/>
  7014. <pinref part="IC1" gate="G$1" pin="PA5/SPI1_SCK/ADC_IN5"/>
  7015. <wire x1="114.3" y1="-19.05" x2="114.3" y2="38.1" width="0.1524" layer="91"/>
  7016. <wire x1="114.3" y1="38.1" x2="101.6" y2="38.1" width="0.1524" layer="91"/>
  7017. <pinref part="R9" gate="G$1" pin="2"/>
  7018. <wire x1="130.81" y1="-19.05" x2="114.3" y2="-19.05" width="0.1524" layer="91"/>
  7019. <junction x="114.3" y="-19.05"/>
  7020. </segment>
  7021. </net>
  7022. <net name="N$71" class="0">
  7023. <segment>
  7024. <pinref part="IC1" gate="G$1" pin="PA6/SPI_MISO/ADC_IN6"/>
  7025. <wire x1="101.6" y1="40.64" x2="119.38" y2="40.64" width="0.1524" layer="91"/>
  7026. <wire x1="119.38" y1="40.64" x2="119.38" y2="-8.89" width="0.1524" layer="91"/>
  7027. <pinref part="JP1" gate="A" pin="2"/>
  7028. <wire x1="119.38" y1="-8.89" x2="119.38" y2="-33.02" width="0.1524" layer="91"/>
  7029. <wire x1="119.38" y1="-33.02" x2="127" y2="-33.02" width="0.1524" layer="91"/>
  7030. <pinref part="R8" gate="G$1" pin="2"/>
  7031. <wire x1="130.81" y1="-8.89" x2="119.38" y2="-8.89" width="0.1524" layer="91"/>
  7032. <junction x="119.38" y="-8.89"/>
  7033. </segment>
  7034. </net>
  7035. <net name="N$72" class="0">
  7036. <segment>
  7037. <pinref part="R5" gate="G$1" pin="1"/>
  7038. <pinref part="IC1" gate="G$1" pin="NRST"/>
  7039. <wire x1="15.24" y1="66.04" x2="22.86" y2="66.04" width="0.1524" layer="91"/>
  7040. </segment>
  7041. </net>
  7042. <net name="N$73" class="0">
  7043. <segment>
  7044. <pinref part="R6" gate="G$1" pin="1"/>
  7045. <pinref part="R5" gate="G$1" pin="2"/>
  7046. <wire x1="0" y1="66.04" x2="2.54" y2="66.04" width="0.1524" layer="91"/>
  7047. <pinref part="C3" gate="G$1" pin="2"/>
  7048. <wire x1="2.54" y1="66.04" x2="5.08" y2="66.04" width="0.1524" layer="91"/>
  7049. <wire x1="2.54" y1="60.96" x2="2.54" y2="66.04" width="0.1524" layer="91"/>
  7050. <junction x="2.54" y="66.04"/>
  7051. </segment>
  7052. </net>
  7053. <net name="N$75" class="0">
  7054. <segment>
  7055. <pinref part="JP4" gate="A" pin="1"/>
  7056. <pinref part="R7" gate="G$1" pin="1"/>
  7057. <wire x1="168.91" y1="78.74" x2="154.94" y2="78.74" width="0.1524" layer="91"/>
  7058. </segment>
  7059. </net>
  7060. <net name="N$76" class="0">
  7061. <segment>
  7062. <pinref part="IC1" gate="G$1" pin="BOOT0"/>
  7063. <wire x1="101.6" y1="60.96" x2="140.97" y2="60.96" width="0.1524" layer="91"/>
  7064. <wire x1="140.97" y1="60.96" x2="140.97" y2="76.2" width="0.1524" layer="91"/>
  7065. <pinref part="JP4" gate="A" pin="2"/>
  7066. <wire x1="140.97" y1="76.2" x2="168.91" y2="76.2" width="0.1524" layer="91"/>
  7067. </segment>
  7068. </net>
  7069. <net name="N$74" class="0">
  7070. <segment>
  7071. <pinref part="R10" gate="G$1" pin="1"/>
  7072. <pinref part="U$3" gate="G$1" pin="VOUT"/>
  7073. <wire x1="144.78" y1="15.24" x2="147.32" y2="15.24" width="0.1524" layer="91"/>
  7074. </segment>
  7075. </net>
  7076. </nets>
  7077. </sheet>
  7078. </sheets>
  7079. </schematic>
  7080. </drawing>
  7081. </eagle>