加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MPU.kicad_sch 186.08 KB
一键复制 编辑 原始数据 按行查看 历史
naisu 提交于 2023-09-10 13:06 . modeify: update to kicad 7.0
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043
(kicad_sch (version 20230121) (generator eeschema)
(uuid 4157137b-f00d-4586-9624-8d7e2e77d3c8)
(paper "A4")
(lib_symbols
(symbol "0_power:+1V2" (power) (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -2.54 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "+1V2" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "ki_keywords" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+1V2_0_1"
(polyline
(pts
(xy -1.143 0)
(xy 1.143 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+1V2_1_1"
(pin power_in line (at 0 -1.27 90) (length 0) hide
(name "+1V2" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "0_power:+1V8" (power) (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -2.54 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "+1V8" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "ki_keywords" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+1V8_0_1"
(polyline
(pts
(xy -1.143 0)
(xy 1.143 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+1V8_1_1"
(pin power_in line (at 0 -1.27 90) (length 0) hide
(name "+1V8" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "0_power:+3V3" (power) (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -2.54 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "+3V3" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "ki_keywords" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -1.143 0)
(xy 1.143 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 -1.27 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "0_power:GND" (power) (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -2.54 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "GND" (at 0 1.27 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "ki_keywords" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy -1.143 0)
(xy 1.143 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.762 -0.381)
(xy 0.762 -0.381)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.381 -0.762)
(xy 0.381 -0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.127 -1.143)
(xy 0.127 -1.143)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "0_ungrouped:NUC980DKxxYx" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -49.53 -49.53 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "NUC980DKxxYx" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "NUC980DKxxYx_0_1"
(polyline
(pts
(xy -44.45 -49.53)
(xy 49.53 -49.53)
(xy 49.53 49.53)
(xy -49.53 49.53)
(xy -49.53 -44.45)
(xy -44.45 -49.53)
)
(stroke (width 0) (type default))
(fill (type background))
)
)
(symbol "NUC980DKxxYx_1_1"
(pin passive line (at -39.37 -53.34 90) (length 3.81)
(name "USB0_ID" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -16.51 -53.34 90) (length 3.81)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 31.75 0) (length 3.81)
(name "PF.11" (effects (font (size 1.27 1.27))))
(number "100" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 29.21 0) (length 3.81)
(name "PF.12" (effects (font (size 1.27 1.27))))
(number "101" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 26.67 0) (length 3.81)
(name "VDDIO" (effects (font (size 1.27 1.27))))
(number "102" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 24.13 0) (length 3.81)
(name "XT_IN" (effects (font (size 1.27 1.27))))
(number "103" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 21.59 0) (length 3.81)
(name "XT_OUT" (effects (font (size 1.27 1.27))))
(number "104" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 19.05 0) (length 3.81)
(name "PE.0" (effects (font (size 1.27 1.27))))
(number "105" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 16.51 0) (length 3.81)
(name "PE.1" (effects (font (size 1.27 1.27))))
(number "106" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 13.97 0) (length 3.81)
(name "PE.2" (effects (font (size 1.27 1.27))))
(number "107" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 11.43 0) (length 3.81)
(name "PE.3" (effects (font (size 1.27 1.27))))
(number "108" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 8.89 0) (length 3.81)
(name "PE.4" (effects (font (size 1.27 1.27))))
(number "109" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -13.97 -53.34 90) (length 3.81)
(name "MVDD" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 6.35 0) (length 3.81)
(name "PE.5" (effects (font (size 1.27 1.27))))
(number "110" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 3.81 0) (length 3.81)
(name "PE.6" (effects (font (size 1.27 1.27))))
(number "111" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 1.27 0) (length 3.81)
(name "PE.7" (effects (font (size 1.27 1.27))))
(number "112" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -1.27 0) (length 3.81)
(name "PE.8" (effects (font (size 1.27 1.27))))
(number "113" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -3.81 0) (length 3.81)
(name "PE.9" (effects (font (size 1.27 1.27))))
(number "114" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -6.35 0) (length 3.81)
(name "PE.10" (effects (font (size 1.27 1.27))))
(number "115" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -8.89 0) (length 3.81)
(name "PE.11" (effects (font (size 1.27 1.27))))
(number "116" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -11.43 0) (length 3.81)
(name "PE.12" (effects (font (size 1.27 1.27))))
(number "117" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -13.97 0) (length 3.81)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "118" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -16.51 0) (length 3.81)
(name "USB1_DM" (effects (font (size 1.27 1.27))))
(number "119" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -11.43 -53.34 90) (length 3.81)
(name "MVDD" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -19.05 0) (length 3.81)
(name "USB1_DP" (effects (font (size 1.27 1.27))))
(number "120" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -21.59 0) (length 3.81)
(name "USB1_VDD33" (effects (font (size 1.27 1.27))))
(number "121" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -24.13 0) (length 3.81)
(name "USB1_REXT" (effects (font (size 1.27 1.27))))
(number "122" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -26.67 0) (length 3.81)
(name "USB0_VDD" (effects (font (size 1.27 1.27))))
(number "123" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -29.21 0) (length 3.81)
(name "USB0_DM" (effects (font (size 1.27 1.27))))
(number "124" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -31.75 0) (length 3.81)
(name "USB0_DP" (effects (font (size 1.27 1.27))))
(number "125" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -34.29 0) (length 3.81)
(name "USB0_VDD33" (effects (font (size 1.27 1.27))))
(number "126" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -36.83 0) (length 3.81)
(name "USB0_REXT" (effects (font (size 1.27 1.27))))
(number "127" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 -39.37 0) (length 3.81)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "128" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 -53.34 90) (length 3.81)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -6.35 -53.34 90) (length 3.81)
(name "PA.7" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -3.81 -53.34 90) (length 3.81)
(name "PA.8" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -1.27 -53.34 90) (length 3.81)
(name "PA.9" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 1.27 -53.34 90) (length 3.81)
(name "PA.10" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 -53.34 90) (length 3.81)
(name "PA.11" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 6.35 -53.34 90) (length 3.81)
(name "PA.12" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -36.83 -53.34 90) (length 3.81)
(name "PA.0" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 8.89 -53.34 90) (length 3.81)
(name "VDDIO" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -53.34 90) (length 3.81)
(name "PG.9" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 13.97 -53.34 90) (length 3.81)
(name "PG.8" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 16.51 -53.34 90) (length 3.81)
(name "PG.7" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 19.05 -53.34 90) (length 3.81)
(name "PG.6" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 21.59 -53.34 90) (length 3.81)
(name "PG.5" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 24.13 -53.34 90) (length 3.81)
(name "PG.3" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 26.67 -53.34 90) (length 3.81)
(name "PG.1" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 29.21 -53.34 90) (length 3.81)
(name "PG.0" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 31.75 -53.34 90) (length 3.81)
(name "PB.0" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -34.29 -53.34 90) (length 3.81)
(name "PA.1" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 34.29 -53.34 90) (length 3.81)
(name "PB.6" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 36.83 -53.34 90) (length 3.81)
(name "PB.4" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 39.37 -53.34 90) (length 3.81)
(name "AVSSADC" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -39.37 180) (length 3.81)
(name "AVDDADC" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -36.83 180) (length 3.81)
(name "PB.7" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -34.29 180) (length 3.81)
(name "PB.5" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -31.75 180) (length 3.81)
(name "PB.1" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -29.21 180) (length 3.81)
(name "PB.3" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -26.67 180) (length 3.81)
(name "PB.2" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -24.13 180) (length 3.81)
(name "VBAT33" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -31.75 -53.34 90) (length 3.81)
(name "PA.2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -21.59 180) (length 3.81)
(name "X32_IN" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -19.05 180) (length 3.81)
(name "X32_OUT" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -16.51 180) (length 3.81)
(name "PB.8" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -13.97 180) (length 3.81)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -11.43 180) (length 3.81)
(name "PC.0" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -8.89 180) (length 3.81)
(name "PC.1" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -6.35 180) (length 3.81)
(name "PC.2" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -3.81 180) (length 3.81)
(name "PC.3" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 -1.27 180) (length 3.81)
(name "PC.4" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 1.27 180) (length 3.81)
(name "PC.5" (effects (font (size 1.27 1.27))))
(number "49" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -29.21 -53.34 90) (length 3.81)
(name "PA.3" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 3.81 180) (length 3.81)
(name "PC.6" (effects (font (size 1.27 1.27))))
(number "50" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 6.35 180) (length 3.81)
(name "PC.7" (effects (font (size 1.27 1.27))))
(number "51" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 8.89 180) (length 3.81)
(name "PC.8" (effects (font (size 1.27 1.27))))
(number "52" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 11.43 180) (length 3.81)
(name "PC.9" (effects (font (size 1.27 1.27))))
(number "53" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 13.97 180) (length 3.81)
(name "PC.10" (effects (font (size 1.27 1.27))))
(number "54" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 16.51 180) (length 3.81)
(name "PC.11" (effects (font (size 1.27 1.27))))
(number "55" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 19.05 180) (length 3.81)
(name "PC.12" (effects (font (size 1.27 1.27))))
(number "56" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 21.59 180) (length 3.81)
(name "PC.13" (effects (font (size 1.27 1.27))))
(number "57" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 24.13 180) (length 3.81)
(name "PC.14" (effects (font (size 1.27 1.27))))
(number "58" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 26.67 180) (length 3.81)
(name "PC.15" (effects (font (size 1.27 1.27))))
(number "59" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -26.67 -53.34 90) (length 3.81)
(name "PA.4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 29.21 180) (length 3.81)
(name "VDDIO" (effects (font (size 1.27 1.27))))
(number "60" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 31.75 180) (length 3.81)
(name "PD.2" (effects (font (size 1.27 1.27))))
(number "61" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 34.29 180) (length 3.81)
(name "PD.3" (effects (font (size 1.27 1.27))))
(number "62" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 36.83 180) (length 3.81)
(name "PD.4" (effects (font (size 1.27 1.27))))
(number "63" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 53.34 39.37 180) (length 3.81)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "64" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 39.37 53.34 270) (length 3.81)
(name "PD.5" (effects (font (size 1.27 1.27))))
(number "65" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 36.83 53.34 270) (length 3.81)
(name "PD.6" (effects (font (size 1.27 1.27))))
(number "66" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 34.29 53.34 270) (length 3.81)
(name "PD.7" (effects (font (size 1.27 1.27))))
(number "67" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 31.75 53.34 270) (length 3.81)
(name "PD.8" (effects (font (size 1.27 1.27))))
(number "68" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 29.21 53.34 270) (length 3.81)
(name "PD.9" (effects (font (size 1.27 1.27))))
(number "69" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -24.13 -53.34 90) (length 3.81)
(name "PA.5" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 26.67 53.34 270) (length 3.81)
(name "PD.10" (effects (font (size 1.27 1.27))))
(number "70" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 24.13 53.34 270) (length 3.81)
(name "PD.11" (effects (font (size 1.27 1.27))))
(number "71" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 21.59 53.34 270) (length 3.81)
(name "PD.12" (effects (font (size 1.27 1.27))))
(number "72" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 19.05 53.34 270) (length 3.81)
(name "PD.13" (effects (font (size 1.27 1.27))))
(number "73" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 16.51 53.34 270) (length 3.81)
(name "PD.14" (effects (font (size 1.27 1.27))))
(number "74" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 13.97 53.34 270) (length 3.81)
(name "PD.15" (effects (font (size 1.27 1.27))))
(number "75" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 53.34 270) (length 3.81)
(name "PG.11" (effects (font (size 1.27 1.27))))
(number "76" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 8.89 53.34 270) (length 3.81)
(name "PG.12" (effects (font (size 1.27 1.27))))
(number "77" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 6.35 53.34 270) (length 3.81)
(name "PG.13" (effects (font (size 1.27 1.27))))
(number "78" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 53.34 270) (length 3.81)
(name "PG.14" (effects (font (size 1.27 1.27))))
(number "79" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -21.59 -53.34 90) (length 3.81)
(name "PA.6" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 1.27 53.34 270) (length 3.81)
(name "PG.15" (effects (font (size 1.27 1.27))))
(number "80" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -1.27 53.34 270) (length 3.81)
(name "nRESET" (effects (font (size 1.27 1.27))))
(number "81" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -3.81 53.34 270) (length 3.81)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "82" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -6.35 53.34 270) (length 3.81)
(name "MVDD" (effects (font (size 1.27 1.27))))
(number "83" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -8.89 53.34 270) (length 3.81)
(name "MVDD" (effects (font (size 1.27 1.27))))
(number "84" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -11.43 53.34 270) (length 3.81)
(name "VDDIO" (effects (font (size 1.27 1.27))))
(number "85" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -13.97 53.34 270) (length 3.81)
(name "PF.0" (effects (font (size 1.27 1.27))))
(number "86" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -16.51 53.34 270) (length 3.81)
(name "PF.1" (effects (font (size 1.27 1.27))))
(number "87" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -19.05 53.34 270) (length 3.81)
(name "PF.2" (effects (font (size 1.27 1.27))))
(number "88" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -21.59 53.34 270) (length 3.81)
(name "PF.3" (effects (font (size 1.27 1.27))))
(number "89" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -19.05 -53.34 90) (length 3.81)
(name "VDDIO" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -24.13 53.34 270) (length 3.81)
(name "PF.4" (effects (font (size 1.27 1.27))))
(number "90" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -26.67 53.34 270) (length 3.81)
(name "PF.5" (effects (font (size 1.27 1.27))))
(number "91" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -29.21 53.34 270) (length 3.81)
(name "PF.6" (effects (font (size 1.27 1.27))))
(number "92" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -31.75 53.34 270) (length 3.81)
(name "PB.13" (effects (font (size 1.27 1.27))))
(number "93" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -34.29 53.34 270) (length 3.81)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "94" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -36.83 53.34 270) (length 3.81)
(name "PLL_VSS" (effects (font (size 1.27 1.27))))
(number "95" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -39.37 53.34 270) (length 3.81)
(name "PF.7" (effects (font (size 1.27 1.27))))
(number "96" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 39.37 0) (length 3.81)
(name "PF.8" (effects (font (size 1.27 1.27))))
(number "97" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 36.83 0) (length 3.81)
(name "PF.9" (effects (font (size 1.27 1.27))))
(number "98" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -53.34 34.29 0) (length 3.81)
(name "PF.10" (effects (font (size 1.27 1.27))))
(number "99" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "0_ungrouped:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push" (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_0_1"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "Y" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Crystal" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "quartz ceramic resonator oscillator" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Two pin crystal" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Crystal*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Crystal_0_1"
(rectangle (start -1.143 2.54) (end 1.143 -2.54)
(stroke (width 0.3048) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -1.905 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.905 -1.27)
(xy 1.905 1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 1.905 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Crystal_1_1"
(pin passive line (at -3.81 0 0) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Crystal_GND24" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "Y" (at 3.175 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Crystal_GND24" (at 3.175 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "quartz ceramic resonator oscillator" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Four pin crystal, GND on pins 2 and 4" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Crystal*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Crystal_GND24_0_1"
(rectangle (start -1.143 2.54) (end 1.143 -2.54)
(stroke (width 0.3048) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -2.032 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 -1.27)
(xy -2.032 1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -3.81)
(xy 0 -3.556)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 3.556)
(xy 0 3.81)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.032 -1.27)
(xy 2.032 1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.032 0)
(xy 2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -2.286)
(xy -2.54 -3.556)
(xy 2.54 -3.556)
(xy 2.54 -2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.286)
(xy -2.54 3.556)
(xy 2.54 3.556)
(xy 2.54 2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Crystal_GND24_1_1"
(pin passive line (at -3.81 0 0) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 5.08 270) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 90) (length 1.27)
(name "4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_Schottky" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode Schottky" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Schottky diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Schottky_0_1"
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 0.635)
(xy -1.905 1.27)
(xy -1.27 1.27)
(xy -1.27 -1.27)
(xy -0.635 -1.27)
(xy -0.635 -0.635)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "D_Schottky_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:FerriteBead" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (at -3.81 0.635 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "FerriteBead" (at 3.81 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "L ferrite bead inductor filter" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ferrite bead" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "FerriteBead_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -1.2192)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 1.2954)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.7686 0.4064)
(xy -1.7018 2.2606)
(xy 2.7686 -0.3048)
(xy 1.6764 -2.159)
(xy -2.7686 0.4064)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "FerriteBead_1_1"
(pin passive line (at 0 3.81 270) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_DIP_x02" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_DIP_x02" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "dip switch" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "2x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SW?DIP?x2*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_DIP_x02_0_0"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center -2.032 2.54) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.127)
(xy 2.3622 1.1684)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 2.667)
(xy 2.3622 3.7084)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.032 2.54) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "SW_DIP_x02_0_1"
(rectangle (start -3.81 5.08) (end 3.81 -2.54)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "SW_DIP_x02_1_1"
(pin passive line (at -7.62 2.54 0) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 0 0) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 266.7 66.04) (diameter 0) (color 0 0 0 0)
(uuid 04a1fe16-364f-4db8-aef0-1f923a9f6ce7)
)
(junction (at 223.52 116.84) (diameter 0) (color 0 0 0 0)
(uuid 0e25bb3a-2a5a-41c4-aaef-6519b2e29a9f)
)
(junction (at 259.08 20.32) (diameter 0) (color 0 0 0 0)
(uuid 10658a4f-962f-46ad-b4d0-7e66c3c79fbe)
)
(junction (at 228.6 20.32) (diameter 0) (color 0 0 0 0)
(uuid 121b582b-a073-45e2-a6a1-b8099f37628f)
)
(junction (at 251.46 20.32) (diameter 0) (color 0 0 0 0)
(uuid 15265941-3110-4533-8466-ddb7e553728e)
)
(junction (at 223.52 160.02) (diameter 0) (color 0 0 0 0)
(uuid 1e82a4fd-e863-459a-93fa-28ec551ad3c9)
)
(junction (at 231.14 160.02) (diameter 0) (color 0 0 0 0)
(uuid 1ee9a4ea-8645-4060-8d50-4088f472728a)
)
(junction (at 223.52 104.14) (diameter 0) (color 0 0 0 0)
(uuid 2be0b566-0f67-49ba-a67a-46f125db3654)
)
(junction (at 236.22 20.32) (diameter 0) (color 0 0 0 0)
(uuid 344f108c-1cb0-431f-8c26-845c4ce5630e)
)
(junction (at 259.08 33.02) (diameter 0) (color 0 0 0 0)
(uuid 46f31c72-c0b0-43ba-ab8a-a973ca33fa61)
)
(junction (at 236.22 43.18) (diameter 0) (color 0 0 0 0)
(uuid 49a819d9-3671-444c-bc79-21b6afc8bd65)
)
(junction (at 236.22 55.88) (diameter 0) (color 0 0 0 0)
(uuid 562a3c4c-650f-4302-acba-3c9250081e84)
)
(junction (at 266.7 33.02) (diameter 0) (color 0 0 0 0)
(uuid 66426ab8-1685-4398-9613-57ac56fd3f1f)
)
(junction (at 231.14 147.32) (diameter 0) (color 0 0 0 0)
(uuid 670056c8-c301-43e0-8096-bd9ad7a0d663)
)
(junction (at 243.84 20.32) (diameter 0) (color 0 0 0 0)
(uuid 67af1827-de21-437e-a0d8-66b21f0b7fa9)
)
(junction (at 259.08 55.88) (diameter 0) (color 0 0 0 0)
(uuid 72fd789a-d671-4167-9f4b-cc7fbd76d458)
)
(junction (at 228.6 55.88) (diameter 0) (color 0 0 0 0)
(uuid 73caa3df-84d3-4363-a192-72780ce609df)
)
(junction (at 220.98 20.32) (diameter 0) (color 0 0 0 0)
(uuid 768d118c-901b-4eef-a294-a63e3d82237b)
)
(junction (at 266.7 78.74) (diameter 0) (color 0 0 0 0)
(uuid 8e53341d-d1aa-43d2-bab5-c128f7daaec8)
)
(junction (at 220.98 43.18) (diameter 0) (color 0 0 0 0)
(uuid 8ef20086-e700-4e03-89b5-605426b3ce7e)
)
(junction (at 39.37 26.67) (diameter 0) (color 0 0 0 0)
(uuid 9f52a027-c952-46e2-be82-679d267f90d8)
)
(junction (at 231.14 134.62) (diameter 0) (color 0 0 0 0)
(uuid a13ee67a-4fa9-49ac-8fce-15e06bf2d8d9)
)
(junction (at 223.52 147.32) (diameter 0) (color 0 0 0 0)
(uuid a5953e4a-7113-4bf0-a206-7a109380c27c)
)
(junction (at 228.6 43.18) (diameter 0) (color 0 0 0 0)
(uuid a6c5c5ec-f5f0-4069-bb1c-9248dc6e949c)
)
(junction (at 205.74 20.32) (diameter 0) (color 0 0 0 0)
(uuid a7c22288-a691-48d9-9b97-c7306a9b7bd8)
)
(junction (at 259.08 78.74) (diameter 0) (color 0 0 0 0)
(uuid a951e095-dbc3-44fb-a503-e3983575f93e)
)
(junction (at 259.08 66.04) (diameter 0) (color 0 0 0 0)
(uuid adbaf3af-6bde-4322-91fc-21d952e5568a)
)
(junction (at 251.46 33.02) (diameter 0) (color 0 0 0 0)
(uuid b0361252-6577-45a3-8992-637ee3e586ac)
)
(junction (at 266.7 20.32) (diameter 0) (color 0 0 0 0)
(uuid b28b1daf-5909-4427-a74e-cd0dcf3285ef)
)
(junction (at 213.36 43.18) (diameter 0) (color 0 0 0 0)
(uuid b4ee2dbd-30d8-4023-9467-814473ca47dd)
)
(junction (at 231.14 129.54) (diameter 0) (color 0 0 0 0)
(uuid bb9f2550-2414-4f8e-9c96-43895c9fee65)
)
(junction (at 243.84 33.02) (diameter 0) (color 0 0 0 0)
(uuid be89456a-83a0-46eb-945d-b011461ee98a)
)
(junction (at 236.22 33.02) (diameter 0) (color 0 0 0 0)
(uuid c0492dce-3151-456a-8808-2bd38675061c)
)
(junction (at 251.46 78.74) (diameter 0) (color 0 0 0 0)
(uuid c1227e5a-3e8e-43d7-b4e5-69152c2913a1)
)
(junction (at 228.6 33.02) (diameter 0) (color 0 0 0 0)
(uuid c9bd5a27-4753-4cda-b732-16fb57442d9a)
)
(junction (at 220.98 55.88) (diameter 0) (color 0 0 0 0)
(uuid cae1a9d7-62d6-4062-bb29-21b94e13e108)
)
(junction (at 220.98 33.02) (diameter 0) (color 0 0 0 0)
(uuid d0167f75-9a37-4159-aebc-eca67baa2616)
)
(junction (at 243.84 55.88) (diameter 0) (color 0 0 0 0)
(uuid e2b89d8b-d437-40bd-adb8-b35fd77c02ad)
)
(junction (at 251.46 66.04) (diameter 0) (color 0 0 0 0)
(uuid e66ca42f-a787-4e7e-befd-00c5f125de7c)
)
(junction (at 259.08 43.18) (diameter 0) (color 0 0 0 0)
(uuid ebae131d-e099-413b-8354-01183160afdc)
)
(junction (at 243.84 43.18) (diameter 0) (color 0 0 0 0)
(uuid eccaced7-8705-4ca0-a942-d160f8276ede)
)
(junction (at 39.37 68.58) (diameter 0) (color 0 0 0 0)
(uuid edb9b374-81ce-494e-9a39-88e06cfc0b48)
)
(junction (at 39.37 81.28) (diameter 0) (color 0 0 0 0)
(uuid f2e5131a-ff08-4162-ac9b-6e2bb1f61f76)
)
(junction (at 39.37 31.75) (diameter 0) (color 0 0 0 0)
(uuid f3c8c74c-443f-4a5d-8bec-cb7d0226ceb3)
)
(junction (at 26.67 31.75) (diameter 0) (color 0 0 0 0)
(uuid ffe6273c-7ee3-48c2-a0ae-92b4f7699850)
)
(wire (pts (xy 36.83 134.62) (xy 52.07 134.62))
(stroke (width 0) (type default))
(uuid 01572f4d-bc17-4b93-81c5-9c9eeba25665)
)
(wire (pts (xy 107.95 41.91) (xy 107.95 49.53))
(stroke (width 0) (type default))
(uuid 0218d6b3-a2d8-4d8d-afe0-28c083438f9e)
)
(wire (pts (xy 123.19 39.37) (xy 123.19 49.53))
(stroke (width 0) (type default))
(uuid 023011fd-8c6b-4c59-927b-38a6b78ac7d1)
)
(wire (pts (xy 238.76 129.54) (xy 231.14 129.54))
(stroke (width 0) (type default))
(uuid 03e2a4a8-ceea-4bd4-96a7-01e14c0124d0)
)
(wire (pts (xy 223.52 157.48) (xy 223.52 160.02))
(stroke (width 0) (type default))
(uuid 055092e4-3f75-4bfd-9caf-4c8b2f75a6f9)
)
(wire (pts (xy 39.37 71.12) (xy 39.37 68.58))
(stroke (width 0) (type default))
(uuid 05953589-40e5-440c-833e-c2deb8bf80a5)
)
(wire (pts (xy 19.05 142.24) (xy 26.67 142.24))
(stroke (width 0) (type default))
(uuid 07ccf71c-61b3-44b2-8bba-f91b591e2bb7)
)
(wire (pts (xy 228.6 43.18) (xy 228.6 45.72))
(stroke (width 0) (type default))
(uuid 0986abff-47d1-42ab-ba3d-3760323eca9a)
)
(wire (pts (xy 185.42 99.06) (xy 193.04 99.06))
(stroke (width 0) (type default))
(uuid 09924618-25f3-4bad-b14c-256b3da4a888)
)
(wire (pts (xy 71.12 109.22) (xy 78.74 109.22))
(stroke (width 0) (type default))
(uuid 09c32b5a-dae1-4142-a5c2-601b9a4e4512)
)
(wire (pts (xy 243.84 33.02) (xy 236.22 33.02))
(stroke (width 0) (type default))
(uuid 0ba85b3a-1f67-4520-bc2b-0e7ed9feb10c)
)
(wire (pts (xy 233.68 104.14) (xy 241.3 104.14))
(stroke (width 0) (type default))
(uuid 0d08d1d1-fb24-49de-b4ca-b232b894e66e)
)
(wire (pts (xy 39.37 185.42) (xy 41.91 185.42))
(stroke (width 0) (type default))
(uuid 0d645e73-a69b-4d18-a451-99cc4aea39b6)
)
(wire (pts (xy 228.6 55.88) (xy 236.22 55.88))
(stroke (width 0) (type default))
(uuid 0df30fc3-34bd-405f-b5f2-9f62c6eb31c7)
)
(wire (pts (xy 251.46 30.48) (xy 251.46 33.02))
(stroke (width 0) (type default))
(uuid 0f981970-dc6a-4f1c-97eb-e91ce3290d0a)
)
(wire (pts (xy 236.22 30.48) (xy 236.22 33.02))
(stroke (width 0) (type default))
(uuid 0fefc4bd-9a64-4523-b62e-2894261f6234)
)
(wire (pts (xy 39.37 26.67) (xy 39.37 31.75))
(stroke (width 0) (type default))
(uuid 1049fe73-2372-4eff-b417-c456371578b3)
)
(wire (pts (xy 62.23 31.75) (xy 52.07 31.75))
(stroke (width 0) (type default))
(uuid 1080543d-58e2-4bb0-995d-4159d6973223)
)
(wire (pts (xy 243.84 78.74) (xy 243.84 76.2))
(stroke (width 0) (type default))
(uuid 10985468-7f57-4207-be55-0f3cdc5e3e7b)
)
(wire (pts (xy 95.25 39.37) (xy 95.25 49.53))
(stroke (width 0) (type default))
(uuid 11338925-1d78-44eb-8945-bafb4bea6979)
)
(wire (pts (xy 185.42 66.04) (xy 193.04 66.04))
(stroke (width 0) (type default))
(uuid 113ba5b4-2625-47eb-b196-12762447fc8b)
)
(wire (pts (xy 220.98 20.32) (xy 228.6 20.32))
(stroke (width 0) (type default))
(uuid 121e0997-09fb-434e-8d64-2dece17449a3)
)
(wire (pts (xy 168.91 156.21) (xy 168.91 163.83))
(stroke (width 0) (type default))
(uuid 12609ced-7121-4add-b498-14906c4a33d2)
)
(wire (pts (xy 228.6 53.34) (xy 228.6 55.88))
(stroke (width 0) (type default))
(uuid 1263ecba-005a-440d-8958-4278e13cae5c)
)
(wire (pts (xy 71.12 88.9) (xy 78.74 88.9))
(stroke (width 0) (type default))
(uuid 1284c5db-02ff-4ace-a63d-92deb4b92257)
)
(wire (pts (xy 223.52 104.14) (xy 223.52 106.68))
(stroke (width 0) (type default))
(uuid 146790ac-26f4-4faf-bd71-ff4a4414c27d)
)
(wire (pts (xy 251.46 20.32) (xy 251.46 22.86))
(stroke (width 0) (type default))
(uuid 158948bd-c36f-4cce-b317-a32747bd4a04)
)
(wire (pts (xy 259.08 20.32) (xy 259.08 22.86))
(stroke (width 0) (type default))
(uuid 16088994-1253-4a39-95cb-777b57059c2c)
)
(wire (pts (xy 19.05 170.18) (xy 41.91 170.18))
(stroke (width 0) (type default))
(uuid 16651c21-1d08-4ff2-b7f1-fc1fb8ac27d0)
)
(wire (pts (xy 243.84 43.18) (xy 259.08 43.18))
(stroke (width 0) (type default))
(uuid 166c1a33-bab4-4cb2-ae83-d7c821d94854)
)
(wire (pts (xy 36.83 116.84) (xy 52.07 116.84))
(stroke (width 0) (type default))
(uuid 172d8b87-5e41-4d72-881a-d802ddabeed4)
)
(wire (pts (xy 259.08 53.34) (xy 259.08 55.88))
(stroke (width 0) (type default))
(uuid 175d3faa-28fc-4d70-ae0a-6495cb151975)
)
(wire (pts (xy 71.12 86.36) (xy 78.74 86.36))
(stroke (width 0) (type default))
(uuid 179ce8cc-80dd-4d31-b0a4-34ad4f6dc347)
)
(wire (pts (xy 259.08 55.88) (xy 271.78 55.88))
(stroke (width 0) (type default))
(uuid 1aceb776-9ca8-4212-9c3b-dc3684819d80)
)
(wire (pts (xy 248.92 88.9) (xy 271.78 88.9))
(stroke (width 0) (type default))
(uuid 1af8649e-dbac-4980-a2e6-6483aca226e3)
)
(wire (pts (xy 66.04 129.54) (xy 78.74 129.54))
(stroke (width 0) (type default))
(uuid 1b29494c-5043-406d-bf79-c0615c997c7d)
)
(wire (pts (xy 259.08 66.04) (xy 266.7 66.04))
(stroke (width 0) (type default))
(uuid 1b2f6db2-a866-4301-b681-3afe6cc7db16)
)
(bus (pts (xy 173.99 26.67) (xy 181.61 26.67))
(stroke (width 0) (type default))
(uuid 1cf8bcfe-ff40-4ff8-a142-e59b7a570032)
)
(wire (pts (xy 19.05 31.75) (xy 26.67 31.75))
(stroke (width 0) (type default))
(uuid 1d3e3678-7a9e-4f8f-a5aa-027d54a4ba87)
)
(wire (pts (xy 243.84 147.32) (xy 248.92 147.32))
(stroke (width 0) (type default))
(uuid 1e97504d-ca3d-483c-bac1-9c7216e6ba46)
)
(wire (pts (xy 246.38 129.54) (xy 251.46 129.54))
(stroke (width 0) (type default))
(uuid 21bf9b48-730b-4885-a900-d20ae0c51240)
)
(wire (pts (xy 19.05 154.94) (xy 24.13 154.94))
(stroke (width 0) (type default))
(uuid 2452919e-1173-4298-b2f2-8beab27ec8da)
)
(wire (pts (xy 185.42 86.36) (xy 193.04 86.36))
(stroke (width 0) (type default))
(uuid 24cbb06c-b717-4d49-8a5f-646c6486a677)
)
(wire (pts (xy 97.79 156.21) (xy 97.79 163.83))
(stroke (width 0) (type default))
(uuid 26939854-cad2-4ad7-9bfa-5e6627e7000e)
)
(bus (pts (xy 110.49 31.75) (xy 118.11 31.75))
(stroke (width 0) (type default))
(uuid 271f9208-2b85-4935-9a60-4730a424af5e)
)
(wire (pts (xy 19.05 187.96) (xy 24.13 187.96))
(stroke (width 0) (type default))
(uuid 27fcebf0-0671-42c7-baf7-04216b0385f7)
)
(wire (pts (xy 185.42 71.12) (xy 193.04 71.12))
(stroke (width 0) (type default))
(uuid 286088f5-3917-48b3-8411-4e9347518121)
)
(wire (pts (xy 185.42 142.24) (xy 195.58 142.24))
(stroke (width 0) (type default))
(uuid 29902c54-555d-4f3d-8424-9457e1979181)
)
(wire (pts (xy 185.42 78.74) (xy 193.04 78.74))
(stroke (width 0) (type default))
(uuid 2a6e4823-cce5-4225-ba17-bc99d527b751)
)
(wire (pts (xy 19.05 157.48) (xy 24.13 157.48))
(stroke (width 0) (type default))
(uuid 2d2b5cc6-08d1-4825-a01a-d30a0d909c2d)
)
(wire (pts (xy 271.78 78.74) (xy 266.7 78.74))
(stroke (width 0) (type default))
(uuid 2d46349f-7804-4274-a8ed-2d96bc8f1221)
)
(wire (pts (xy 102.87 41.91) (xy 102.87 49.53))
(stroke (width 0) (type default))
(uuid 2ed2c7ae-6b58-4dd2-8f4c-409cd280e518)
)
(wire (pts (xy 128.27 156.21) (xy 128.27 163.83))
(stroke (width 0) (type default))
(uuid 301d016f-6481-4b6f-acea-932a1dc86e50)
)
(wire (pts (xy 220.98 43.18) (xy 213.36 43.18))
(stroke (width 0) (type default))
(uuid 33917e9c-f8a9-4dd2-b2cb-f0d1e8447576)
)
(wire (pts (xy 231.14 157.48) (xy 231.14 160.02))
(stroke (width 0) (type default))
(uuid 342ec039-329e-4bba-992b-d9256400622b)
)
(wire (pts (xy 185.42 124.46) (xy 195.58 124.46))
(stroke (width 0) (type default))
(uuid 352b0a7d-3f24-4a0b-a3df-fdd93f6b208f)
)
(wire (pts (xy 231.14 129.54) (xy 220.98 129.54))
(stroke (width 0) (type default))
(uuid 3647357f-2560-4bd1-83b0-057027f4ad3b)
)
(wire (pts (xy 259.08 43.18) (xy 271.78 43.18))
(stroke (width 0) (type default))
(uuid 36c7061c-c5bd-4021-bc7d-5f53c834cc11)
)
(wire (pts (xy 44.45 99.06) (xy 52.07 99.06))
(stroke (width 0) (type default))
(uuid 377224ce-e0cb-4216-aaa4-5b3a46d06af4)
)
(wire (pts (xy 95.25 156.21) (xy 95.25 163.83))
(stroke (width 0) (type default))
(uuid 392f30b7-00ab-44e0-a04d-8de71aecd94f)
)
(wire (pts (xy 238.76 134.62) (xy 231.14 134.62))
(stroke (width 0) (type default))
(uuid 392fcda0-7d6a-40e3-90c5-e48d0334c3c5)
)
(wire (pts (xy 205.74 30.48) (xy 205.74 33.02))
(stroke (width 0) (type default))
(uuid 3af11115-6cb2-4829-97c4-1fb9a186d8c1)
)
(wire (pts (xy 266.7 66.04) (xy 271.78 66.04))
(stroke (width 0) (type default))
(uuid 3b1821cb-f073-402f-997b-d22912f4892e)
)
(wire (pts (xy 266.7 33.02) (xy 271.78 33.02))
(stroke (width 0) (type default))
(uuid 3b3adf97-be23-4b31-9962-41d406c599a0)
)
(wire (pts (xy 120.65 156.21) (xy 120.65 166.37))
(stroke (width 0) (type default))
(uuid 3be18151-77b1-489d-ae85-4670ddf010eb)
)
(wire (pts (xy 68.58 78.74) (xy 78.74 78.74))
(stroke (width 0) (type default))
(uuid 3c667cba-91d1-4464-8b34-8c6b7fcac30a)
)
(wire (pts (xy 34.29 121.92) (xy 52.07 121.92))
(stroke (width 0) (type default))
(uuid 3d1ac586-f185-4088-af1e-3a9b33d4607a)
)
(wire (pts (xy 26.67 26.67) (xy 26.67 31.75))
(stroke (width 0) (type default))
(uuid 3d6abb3d-33f0-4f24-a3a9-bf1481adaab0)
)
(wire (pts (xy 231.14 134.62) (xy 223.52 134.62))
(stroke (width 0) (type default))
(uuid 3ee315a0-3765-451e-9104-55aef88aab3a)
)
(wire (pts (xy 220.98 53.34) (xy 220.98 55.88))
(stroke (width 0) (type default))
(uuid 3f27d98a-6e80-4897-a1a6-25972df5c4d6)
)
(wire (pts (xy 125.73 156.21) (xy 125.73 163.83))
(stroke (width 0) (type default))
(uuid 3ffd9134-4598-4115-b148-3365bb5f4873)
)
(wire (pts (xy 194.31 20.32) (xy 205.74 20.32))
(stroke (width 0) (type default))
(uuid 42584b66-9838-4dea-b9db-ef96f280a42d)
)
(wire (pts (xy 44.45 53.34) (xy 52.07 53.34))
(stroke (width 0) (type default))
(uuid 42a53fa4-28bd-42f7-b431-3fc6a4922f9a)
)
(wire (pts (xy 215.9 134.62) (xy 208.28 134.62))
(stroke (width 0) (type default))
(uuid 44c48106-d309-42b6-99bb-59bd1cdf926b)
)
(wire (pts (xy 146.05 156.21) (xy 146.05 166.37))
(stroke (width 0) (type default))
(uuid 4709c8c0-c285-4179-80d8-1c68c6b4b1ab)
)
(wire (pts (xy 66.04 119.38) (xy 78.74 119.38))
(stroke (width 0) (type default))
(uuid 475abcdd-1c9a-435a-986b-0b7bcf8e6050)
)
(wire (pts (xy 71.12 63.5) (xy 78.74 63.5))
(stroke (width 0) (type default))
(uuid 4ac844bf-e7f7-4b3e-9dce-23f67dc5ad96)
)
(wire (pts (xy 19.05 172.72) (xy 41.91 172.72))
(stroke (width 0) (type default))
(uuid 4c8734c3-247b-4d98-9a9a-83b6b7571ffc)
)
(wire (pts (xy 107.95 156.21) (xy 107.95 163.83))
(stroke (width 0) (type default))
(uuid 4c8d384f-c9d9-4274-94ec-cd612f99482c)
)
(wire (pts (xy 220.98 88.9) (xy 228.6 88.9))
(stroke (width 0) (type default))
(uuid 4da9afcf-173e-44d4-801c-93fc203421ba)
)
(wire (pts (xy 185.42 83.82) (xy 193.04 83.82))
(stroke (width 0) (type default))
(uuid 4dabf8c1-f915-46f9-b594-4c318b5abc8b)
)
(wire (pts (xy 19.05 81.28) (xy 26.67 81.28))
(stroke (width 0) (type default))
(uuid 4dc47c66-87d6-496e-ac00-d349a99698e9)
)
(wire (pts (xy 110.49 156.21) (xy 110.49 163.83))
(stroke (width 0) (type default))
(uuid 4de2a8ac-4d0b-4aaa-8105-01635c5a69ce)
)
(wire (pts (xy 44.45 96.52) (xy 52.07 96.52))
(stroke (width 0) (type default))
(uuid 507e0778-af82-4b52-9fda-016e8469da97)
)
(wire (pts (xy 118.11 41.91) (xy 118.11 49.53))
(stroke (width 0) (type default))
(uuid 50fdc552-a2d1-44ed-8499-400095695a64)
)
(wire (pts (xy 138.43 156.21) (xy 138.43 163.83))
(stroke (width 0) (type default))
(uuid 5180fe4d-3262-40ab-91f5-d1a2f52b2080)
)
(wire (pts (xy 185.42 76.2) (xy 193.04 76.2))
(stroke (width 0) (type default))
(uuid 524645b5-6096-4a56-8e28-b01fdd01584a)
)
(wire (pts (xy 102.87 156.21) (xy 102.87 163.83))
(stroke (width 0) (type default))
(uuid 52569deb-2686-472a-9701-580501b427db)
)
(wire (pts (xy 27.94 26.67) (xy 26.67 26.67))
(stroke (width 0) (type default))
(uuid 53f12aa3-2cd5-4ad5-9a8c-a077bc4e08da)
)
(wire (pts (xy 66.04 121.92) (xy 78.74 121.92))
(stroke (width 0) (type default))
(uuid 5406c20d-7637-4803-8080-5c028aedcec5)
)
(wire (pts (xy 19.05 68.58) (xy 26.67 68.58))
(stroke (width 0) (type default))
(uuid 5447dafd-5898-4521-854b-5253f4688a09)
)
(wire (pts (xy 228.6 20.32) (xy 236.22 20.32))
(stroke (width 0) (type default))
(uuid 557ecd39-fa1e-44c8-80f8-7fbac1b36f1a)
)
(wire (pts (xy 243.84 30.48) (xy 243.84 33.02))
(stroke (width 0) (type default))
(uuid 55eee6a7-1f13-4bcd-8a1e-580f4128f5a4)
)
(wire (pts (xy 246.38 134.62) (xy 256.54 134.62))
(stroke (width 0) (type default))
(uuid 5694f005-c34f-4f6c-812d-a9e8dbe82f85)
)
(wire (pts (xy 38.1 26.67) (xy 39.37 26.67))
(stroke (width 0) (type default))
(uuid 571c5136-9251-406f-a95c-d659e4f34e93)
)
(wire (pts (xy 220.98 43.18) (xy 220.98 45.72))
(stroke (width 0) (type default))
(uuid 588f173c-60d2-4d02-b8bd-27814a280728)
)
(wire (pts (xy 185.42 111.76) (xy 193.04 111.76))
(stroke (width 0) (type default))
(uuid 595f732a-caef-4931-8245-568c437b00ad)
)
(wire (pts (xy 220.98 20.32) (xy 205.74 20.32))
(stroke (width 0) (type default))
(uuid 59e62174-f60d-40d1-9e5e-ca23a750b779)
)
(wire (pts (xy 220.98 30.48) (xy 220.98 33.02))
(stroke (width 0) (type default))
(uuid 5a316caf-8923-4836-8aa9-2f671e87bf4e)
)
(wire (pts (xy 49.53 172.72) (xy 57.15 172.72))
(stroke (width 0) (type default))
(uuid 5a7a27b8-a850-4648-a453-aef9cf74657b)
)
(wire (pts (xy 71.12 68.58) (xy 78.74 68.58))
(stroke (width 0) (type default))
(uuid 5a8055a4-7eb6-47d9-9dc2-07d44d22cf2b)
)
(wire (pts (xy 259.08 43.18) (xy 259.08 45.72))
(stroke (width 0) (type default))
(uuid 5af36dac-8ae9-4f35-9f93-c4f3adeeb724)
)
(wire (pts (xy 223.52 114.3) (xy 223.52 116.84))
(stroke (width 0) (type default))
(uuid 5c3fae29-d03b-4952-b263-d6b2190d3b61)
)
(wire (pts (xy 39.37 31.75) (xy 36.83 31.75))
(stroke (width 0) (type default))
(uuid 5cad8146-8e23-4b4a-8bc4-9c5513816058)
)
(wire (pts (xy 39.37 81.28) (xy 54.61 81.28))
(stroke (width 0) (type default))
(uuid 5cada81f-11a4-4847-bc2a-9c76d2be52fe)
)
(wire (pts (xy 123.19 156.21) (xy 123.19 166.37))
(stroke (width 0) (type default))
(uuid 5ceea8f2-f416-4c6d-9821-df752bd8836c)
)
(wire (pts (xy 151.13 41.91) (xy 151.13 49.53))
(stroke (width 0) (type default))
(uuid 5d3200a8-c885-497d-9ba7-af791f0b1e29)
)
(wire (pts (xy 130.81 39.37) (xy 130.81 49.53))
(stroke (width 0) (type default))
(uuid 5d4cd7a9-9d01-410d-9083-4554f6297a52)
)
(wire (pts (xy 236.22 33.02) (xy 228.6 33.02))
(stroke (width 0) (type default))
(uuid 5e80bfba-f6ce-44d6-a0a8-d38f59482a90)
)
(wire (pts (xy 266.7 30.48) (xy 266.7 33.02))
(stroke (width 0) (type default))
(uuid 5f500671-6311-4e44-b04f-d5257cb64d76)
)
(wire (pts (xy 168.91 41.91) (xy 168.91 49.53))
(stroke (width 0) (type default))
(uuid 5f78abf0-2b81-41df-abd2-709e89612f7f)
)
(wire (pts (xy 39.37 78.74) (xy 39.37 81.28))
(stroke (width 0) (type default))
(uuid 601d2400-6846-4de8-8b09-52299d7fde34)
)
(wire (pts (xy 71.12 83.82) (xy 78.74 83.82))
(stroke (width 0) (type default))
(uuid 616788de-67bb-4885-afb3-01ecab562785)
)
(wire (pts (xy 143.51 41.91) (xy 143.51 49.53))
(stroke (width 0) (type default))
(uuid 616b7807-1cbe-4a61-ba1e-f02ec2840b5d)
)
(bus (pts (xy 135.89 26.67) (xy 143.51 26.67))
(stroke (width 0) (type default))
(uuid 61aa94dd-0e87-4099-8041-41a4717417c5)
)
(wire (pts (xy 146.05 41.91) (xy 146.05 49.53))
(stroke (width 0) (type default))
(uuid 62786ba9-8a9a-4c0e-837a-8478bd98a5cd)
)
(wire (pts (xy 143.51 156.21) (xy 143.51 166.37))
(stroke (width 0) (type default))
(uuid 6315b159-71f7-4faa-954d-f775bc821c86)
)
(wire (pts (xy 71.12 99.06) (xy 78.74 99.06))
(stroke (width 0) (type default))
(uuid 63412a4f-906b-46fe-84f7-dd8945cd6a6e)
)
(wire (pts (xy 163.83 156.21) (xy 163.83 163.83))
(stroke (width 0) (type default))
(uuid 64e25f96-a885-48c7-b14e-a2a0a71904aa)
)
(wire (pts (xy 158.75 156.21) (xy 158.75 166.37))
(stroke (width 0) (type default))
(uuid 6577e2d6-e771-4f1a-b78b-c897f7ae89cb)
)
(wire (pts (xy 100.33 156.21) (xy 100.33 163.83))
(stroke (width 0) (type default))
(uuid 65ad62c9-67f7-443a-a7cb-f8331798fea8)
)
(wire (pts (xy 130.81 156.21) (xy 130.81 163.83))
(stroke (width 0) (type default))
(uuid 65ba6d75-c6fb-4a5d-bfe5-993c0ca68aa1)
)
(wire (pts (xy 259.08 20.32) (xy 266.7 20.32))
(stroke (width 0) (type default))
(uuid 65c02691-c7f0-43e8-8fd9-1ef41c8c33c3)
)
(wire (pts (xy 39.37 157.48) (xy 41.91 157.48))
(stroke (width 0) (type default))
(uuid 65c8688b-a457-4bad-a8b9-5527d0eda398)
)
(wire (pts (xy 223.52 116.84) (xy 226.06 116.84))
(stroke (width 0) (type default))
(uuid 6693c4de-2f90-4dc4-8e30-3c9c15623e73)
)
(wire (pts (xy 166.37 41.91) (xy 166.37 49.53))
(stroke (width 0) (type default))
(uuid 66adaa33-b876-495e-87b0-f39760308997)
)
(wire (pts (xy 185.42 109.22) (xy 193.04 109.22))
(stroke (width 0) (type default))
(uuid 66f01032-8eec-4d3f-ac81-bd78b517f0ec)
)
(wire (pts (xy 115.57 156.21) (xy 115.57 166.37))
(stroke (width 0) (type default))
(uuid 66f3de78-c9d9-483e-bcfd-31650773f2af)
)
(wire (pts (xy 44.45 31.75) (xy 39.37 31.75))
(stroke (width 0) (type default))
(uuid 66fcb563-0d5e-4bd7-ae42-f84ee8a8cc94)
)
(wire (pts (xy 71.12 93.98) (xy 78.74 93.98))
(stroke (width 0) (type default))
(uuid 6977e42f-d478-4329-9352-fa8e4a9ce453)
)
(wire (pts (xy 205.74 33.02) (xy 220.98 33.02))
(stroke (width 0) (type default))
(uuid 6b437dc1-a5d8-4fef-9175-58ae07ebbbc4)
)
(wire (pts (xy 133.35 41.91) (xy 133.35 49.53))
(stroke (width 0) (type default))
(uuid 6b82eaba-4834-46ea-8b3c-f35707383d68)
)
(wire (pts (xy 266.7 76.2) (xy 266.7 78.74))
(stroke (width 0) (type default))
(uuid 6ba6e7f5-0dd5-4660-960e-269f7a1ee7f0)
)
(wire (pts (xy 54.61 78.74) (xy 54.61 81.28))
(stroke (width 0) (type default))
(uuid 6bc20d2f-c0c4-4acf-ada8-d54dcdd625b9)
)
(wire (pts (xy 118.11 156.21) (xy 118.11 166.37))
(stroke (width 0) (type default))
(uuid 6c5c9815-f3e2-4d91-9d67-c04651c16947)
)
(wire (pts (xy 153.67 41.91) (xy 153.67 49.53))
(stroke (width 0) (type default))
(uuid 6c89959d-57ca-4db3-b93a-d44978e6eac3)
)
(wire (pts (xy 71.12 91.44) (xy 78.74 91.44))
(stroke (width 0) (type default))
(uuid 6cf9a3b5-2146-4780-a6a3-ae5ea70fbd72)
)
(wire (pts (xy 231.14 129.54) (xy 231.14 134.62))
(stroke (width 0) (type default))
(uuid 6e1a9b0b-15c4-40c9-add7-7b9b5edb8ae8)
)
(wire (pts (xy 19.05 74.93) (xy 34.29 74.93))
(stroke (width 0) (type default))
(uuid 6f6c437b-bd0b-416c-ad74-0d8ca30eb0fd)
)
(wire (pts (xy 125.73 39.37) (xy 125.73 49.53))
(stroke (width 0) (type default))
(uuid 702fdb0c-a8a4-413d-9e3e-882a2050d7d4)
)
(wire (pts (xy 151.13 156.21) (xy 151.13 163.83))
(stroke (width 0) (type default))
(uuid 70c6d6b7-7ad0-44b3-97a3-e80bfada3d5c)
)
(wire (pts (xy 110.49 41.91) (xy 110.49 49.53))
(stroke (width 0) (type default))
(uuid 70fb96a9-d28f-44f8-89e0-d052d23ef050)
)
(wire (pts (xy 213.36 116.84) (xy 223.52 116.84))
(stroke (width 0) (type default))
(uuid 7283785b-5089-459f-9166-4130aa7efe5c)
)
(wire (pts (xy 92.71 41.91) (xy 92.71 49.53))
(stroke (width 0) (type default))
(uuid 733c09c6-e72c-4a9a-8125-8b800b180f7f)
)
(wire (pts (xy 39.37 68.58) (xy 34.29 68.58))
(stroke (width 0) (type default))
(uuid 73ba641d-23d1-40a6-92e9-c3c5ea87703f)
)
(wire (pts (xy 236.22 20.32) (xy 236.22 22.86))
(stroke (width 0) (type default))
(uuid 74e99f36-c139-49ab-ad05-0f86f0a150fb)
)
(wire (pts (xy 213.36 43.18) (xy 213.36 45.72))
(stroke (width 0) (type default))
(uuid 74fd505b-0150-4b94-a14b-ed66ac6ea57c)
)
(wire (pts (xy 251.46 33.02) (xy 243.84 33.02))
(stroke (width 0) (type default))
(uuid 7708b81c-e744-4d51-9b3a-57b8d49f7e63)
)
(wire (pts (xy 49.53 187.96) (xy 57.15 187.96))
(stroke (width 0) (type default))
(uuid 7902136d-199a-461e-9558-4b03a30ef9be)
)
(wire (pts (xy 185.42 119.38) (xy 193.04 119.38))
(stroke (width 0) (type default))
(uuid 794e1ce8-bf4d-498d-be42-a996e547442b)
)
(wire (pts (xy 259.08 66.04) (xy 259.08 68.58))
(stroke (width 0) (type default))
(uuid 7c5c256a-ef5b-434d-b411-899b39be6139)
)
(wire (pts (xy 185.42 88.9) (xy 193.04 88.9))
(stroke (width 0) (type default))
(uuid 7ec02619-3be6-438d-acba-f1de80465ad7)
)
(wire (pts (xy 228.6 43.18) (xy 220.98 43.18))
(stroke (width 0) (type default))
(uuid 7eedbe70-fc79-4816-97db-2762b74b4a4e)
)
(wire (pts (xy 243.84 43.18) (xy 243.84 45.72))
(stroke (width 0) (type default))
(uuid 7f56d71c-6861-47c9-adfb-e6b30e261a84)
)
(wire (pts (xy 36.83 114.3) (xy 52.07 114.3))
(stroke (width 0) (type default))
(uuid 7fe8eafa-c4a6-40fe-b7a5-3fbc9f7304e9)
)
(wire (pts (xy 248.92 137.16) (xy 256.54 137.16))
(stroke (width 0) (type default))
(uuid 8167a1ba-c2c1-4484-b23f-7ee3ac6812da)
)
(wire (pts (xy 251.46 78.74) (xy 243.84 78.74))
(stroke (width 0) (type default))
(uuid 829851b3-aa1a-4fb8-ab04-bec9a3f0bb5f)
)
(wire (pts (xy 228.6 20.32) (xy 228.6 22.86))
(stroke (width 0) (type default))
(uuid 84057091-d409-40f0-9ea4-a7635d422e74)
)
(wire (pts (xy 205.74 20.32) (xy 205.74 22.86))
(stroke (width 0) (type default))
(uuid 8729f44d-32ea-497b-aa9d-998e42f4dd2d)
)
(wire (pts (xy 44.45 74.93) (xy 52.07 74.93))
(stroke (width 0) (type default))
(uuid 876e7191-8f3f-4f2a-98c9-13b68376563d)
)
(wire (pts (xy 113.03 156.21) (xy 113.03 166.37))
(stroke (width 0) (type default))
(uuid 87e9f15d-ead3-4eb3-b376-13ccb17b64e9)
)
(wire (pts (xy 266.7 20.32) (xy 271.78 20.32))
(stroke (width 0) (type default))
(uuid 88bf2c05-515c-4c2f-9cd0-87f831c7f532)
)
(wire (pts (xy 266.7 66.04) (xy 266.7 68.58))
(stroke (width 0) (type default))
(uuid 8962c386-0d84-49d1-96bd-61b8c037b68a)
)
(wire (pts (xy 231.14 160.02) (xy 254 160.02))
(stroke (width 0) (type default))
(uuid 89d0e1b6-392a-4bac-b2c2-159e11a37d08)
)
(wire (pts (xy 185.42 104.14) (xy 193.04 104.14))
(stroke (width 0) (type default))
(uuid 8a0eae26-87da-4d18-a0dc-45c54415c16d)
)
(wire (pts (xy 105.41 156.21) (xy 105.41 163.83))
(stroke (width 0) (type default))
(uuid 8a67b986-b199-4d68-95c5-87ab3dc8ad2f)
)
(bus (pts (xy 44.45 91.44) (xy 52.07 91.44))
(stroke (width 0) (type default))
(uuid 8a9c4e44-5dba-4448-ad1e-b07a96a669b3)
)
(wire (pts (xy 66.04 134.62) (xy 78.74 134.62))
(stroke (width 0) (type default))
(uuid 8acaac88-7019-4252-84c9-306dcfcc2788)
)
(wire (pts (xy 156.21 41.91) (xy 156.21 49.53))
(stroke (width 0) (type default))
(uuid 8ae92930-1f1f-403f-841b-275bff7214c4)
)
(wire (pts (xy 135.89 41.91) (xy 135.89 49.53))
(stroke (width 0) (type default))
(uuid 8b03ecc9-89ab-44c1-b5fb-fbc97b95e431)
)
(wire (pts (xy 243.84 66.04) (xy 251.46 66.04))
(stroke (width 0) (type default))
(uuid 8bef6c51-fe25-4892-93d6-44d947b1c86a)
)
(wire (pts (xy 71.12 101.6) (xy 78.74 101.6))
(stroke (width 0) (type default))
(uuid 8bf80c7e-a99f-401c-a41d-9ecb2afb412b)
)
(wire (pts (xy 259.08 33.02) (xy 251.46 33.02))
(stroke (width 0) (type default))
(uuid 8d967483-ce1d-4216-ac40-15109cd72075)
)
(wire (pts (xy 231.14 147.32) (xy 231.14 149.86))
(stroke (width 0) (type default))
(uuid 8e02e194-ec4e-42f5-bce1-5f9bb1f204df)
)
(wire (pts (xy 68.58 81.28) (xy 78.74 81.28))
(stroke (width 0) (type default))
(uuid 8ffd1010-e240-4259-9498-37bf8e52f29e)
)
(wire (pts (xy 135.89 156.21) (xy 135.89 163.83))
(stroke (width 0) (type default))
(uuid 9086781b-e406-4483-98cf-d309e0436032)
)
(wire (pts (xy 236.22 55.88) (xy 243.84 55.88))
(stroke (width 0) (type default))
(uuid 90c522fe-d629-4b5d-81cd-c2efe5a7feae)
)
(wire (pts (xy 220.98 33.02) (xy 228.6 33.02))
(stroke (width 0) (type default))
(uuid 922eeb5c-a61a-4c6f-8432-a083e98dbbe1)
)
(wire (pts (xy 26.67 31.75) (xy 29.21 31.75))
(stroke (width 0) (type default))
(uuid 9245e867-027a-4744-9f7d-2855fb6a9160)
)
(wire (pts (xy 231.14 147.32) (xy 236.22 147.32))
(stroke (width 0) (type default))
(uuid 9279f334-0b8e-49e5-9efa-e5797bc5dd1c)
)
(wire (pts (xy 92.71 175.26) (xy 92.71 182.88))
(stroke (width 0) (type default))
(uuid 9343064f-1f58-43c6-854a-4ed423da59fe)
)
(bus (pts (xy 143.51 180.34) (xy 151.13 180.34))
(stroke (width 0) (type default))
(uuid 93f5e103-23b6-45a7-8bc3-45c496c602c0)
)
(wire (pts (xy 133.35 156.21) (xy 133.35 163.83))
(stroke (width 0) (type default))
(uuid 948afb37-3490-4950-9ee7-df9402b7615e)
)
(wire (pts (xy 213.36 53.34) (xy 213.36 55.88))
(stroke (width 0) (type default))
(uuid 9497d097-1e0c-43d3-b471-efde68cc0b6c)
)
(wire (pts (xy 185.42 96.52) (xy 193.04 96.52))
(stroke (width 0) (type default))
(uuid 94d05ded-0a61-4f62-afae-cb20914eff4d)
)
(wire (pts (xy 213.36 160.02) (xy 223.52 160.02))
(stroke (width 0) (type default))
(uuid 95fd7198-d5b3-4d76-9912-9b761a7c331b)
)
(wire (pts (xy 66.04 139.7) (xy 78.74 139.7))
(stroke (width 0) (type default))
(uuid 9677d615-2065-49f0-9c19-00ccd7311426)
)
(wire (pts (xy 243.84 53.34) (xy 243.84 55.88))
(stroke (width 0) (type default))
(uuid 9681566b-fcef-4184-90a8-b6258a6cfd5d)
)
(wire (pts (xy 140.97 156.21) (xy 140.97 166.37))
(stroke (width 0) (type default))
(uuid 98725c25-c642-4997-99de-bde55a32d0ea)
)
(wire (pts (xy 49.53 157.48) (xy 57.15 157.48))
(stroke (width 0) (type default))
(uuid 9933be87-1422-4ea5-b61c-3f0bfc002fd3)
)
(wire (pts (xy 113.03 41.91) (xy 113.03 49.53))
(stroke (width 0) (type default))
(uuid 99688b3f-2623-454b-ac64-94d62caaff28)
)
(wire (pts (xy 185.42 101.6) (xy 193.04 101.6))
(stroke (width 0) (type default))
(uuid 9a3379ce-7b31-49e8-9f95-64f4e35b844b)
)
(wire (pts (xy 66.04 124.46) (xy 78.74 124.46))
(stroke (width 0) (type default))
(uuid 9c0c20c0-f8b4-4d6b-9edd-afcb84c71847)
)
(wire (pts (xy 105.41 41.91) (xy 105.41 49.53))
(stroke (width 0) (type default))
(uuid 9ccab0ce-f2af-48cd-a0a1-12daa21f74cf)
)
(wire (pts (xy 156.21 156.21) (xy 156.21 166.37))
(stroke (width 0) (type default))
(uuid 9d086bec-30a3-4a02-8bbd-87f9bec5497a)
)
(wire (pts (xy 226.06 104.14) (xy 223.52 104.14))
(stroke (width 0) (type default))
(uuid 9d52bed7-a4b0-4d13-8191-dca15c382867)
)
(wire (pts (xy 39.37 68.58) (xy 54.61 68.58))
(stroke (width 0) (type default))
(uuid 9d605165-2b5d-43ba-8cb5-6fa58712cded)
)
(wire (pts (xy 148.59 41.91) (xy 148.59 49.53))
(stroke (width 0) (type default))
(uuid 9e78de0e-7e12-4664-9a4d-5a4fb9d2faa7)
)
(wire (pts (xy 223.52 147.32) (xy 223.52 149.86))
(stroke (width 0) (type default))
(uuid 9e7903ed-4935-4be6-bef2-33c57ffe9741)
)
(wire (pts (xy 243.84 66.04) (xy 243.84 68.58))
(stroke (width 0) (type default))
(uuid 9ec51954-5f1e-4918-a89c-08d6c553cf05)
)
(wire (pts (xy 223.52 160.02) (xy 231.14 160.02))
(stroke (width 0) (type default))
(uuid 9ecf7a58-a124-4bfa-a125-8c83617ea5b0)
)
(wire (pts (xy 220.98 55.88) (xy 228.6 55.88))
(stroke (width 0) (type default))
(uuid 9ef5a317-509e-4470-abca-8bbd83766509)
)
(bus (pts (xy 156.21 31.75) (xy 163.83 31.75))
(stroke (width 0) (type default))
(uuid 9f0639e3-fc58-40d9-8a82-0cca967bf4a8)
)
(wire (pts (xy 161.29 41.91) (xy 161.29 49.53))
(stroke (width 0) (type default))
(uuid 9f9e44ba-c969-4cb9-b4d2-6235293e6666)
)
(wire (pts (xy 185.42 114.3) (xy 193.04 114.3))
(stroke (width 0) (type default))
(uuid 9fb6c64d-bf11-43cd-b5d9-0c6cbc69bb96)
)
(wire (pts (xy 171.45 156.21) (xy 171.45 166.37))
(stroke (width 0) (type default))
(uuid a1148f18-38cb-4f43-889c-023d5b050f25)
)
(wire (pts (xy 36.83 137.16) (xy 52.07 137.16))
(stroke (width 0) (type default))
(uuid a4a7c3ce-ecc6-4362-96bc-61a8ddc9e94a)
)
(wire (pts (xy 68.58 116.84) (xy 78.74 116.84))
(stroke (width 0) (type default))
(uuid a527d286-9d25-4a7e-8741-ad3ea6eaf81e)
)
(wire (pts (xy 54.61 68.58) (xy 54.61 71.12))
(stroke (width 0) (type default))
(uuid a564e6af-6a7a-44ef-ba55-54cd7eb18b75)
)
(wire (pts (xy 19.05 121.92) (xy 26.67 121.92))
(stroke (width 0) (type default))
(uuid a58b37a3-43b2-4769-8450-c8ef228ebf45)
)
(wire (pts (xy 49.53 154.94) (xy 57.15 154.94))
(stroke (width 0) (type default))
(uuid a5df10fc-32df-49b0-9768-b2dddb888a94)
)
(wire (pts (xy 266.7 20.32) (xy 266.7 22.86))
(stroke (width 0) (type default))
(uuid a625b2fb-b9fc-48cd-aa22-7281b4fdc29d)
)
(wire (pts (xy 185.42 81.28) (xy 193.04 81.28))
(stroke (width 0) (type default))
(uuid a6c1f277-c999-4e34-a750-7c95350d3dc6)
)
(wire (pts (xy 185.42 91.44) (xy 193.04 91.44))
(stroke (width 0) (type default))
(uuid a9143227-6893-4f7d-9d47-a5cb8f74c9e7)
)
(wire (pts (xy 213.36 55.88) (xy 220.98 55.88))
(stroke (width 0) (type default))
(uuid a9158ca0-ecc4-41b2-ae46-e58ab467965c)
)
(wire (pts (xy 39.37 81.28) (xy 34.29 81.28))
(stroke (width 0) (type default))
(uuid a9165c0b-5142-4800-bf52-c87c0566e94d)
)
(bus (pts (xy 220.98 81.28) (xy 228.6 81.28))
(stroke (width 0) (type default))
(uuid a92ae8ef-f706-4333-a225-fe002553db45)
)
(wire (pts (xy 97.79 39.37) (xy 97.79 49.53))
(stroke (width 0) (type default))
(uuid a94c856f-aa13-433f-9f44-bd4724bec9ed)
)
(wire (pts (xy 39.37 187.96) (xy 41.91 187.96))
(stroke (width 0) (type default))
(uuid aaf25170-2655-4033-b17d-fdc243fdceb6)
)
(wire (pts (xy 66.04 111.76) (xy 78.74 111.76))
(stroke (width 0) (type default))
(uuid abe2bc04-1f71-4fef-81a5-d6caca0945cb)
)
(wire (pts (xy 153.67 156.21) (xy 153.67 166.37))
(stroke (width 0) (type default))
(uuid ad54b3b5-44fb-4f88-9eeb-d4a301863726)
)
(wire (pts (xy 185.42 116.84) (xy 195.58 116.84))
(stroke (width 0) (type default))
(uuid b2a64c85-6c77-43aa-ace7-b9c5df7cc3a9)
)
(wire (pts (xy 185.42 68.58) (xy 193.04 68.58))
(stroke (width 0) (type default))
(uuid b3be006e-2a14-4f8a-8313-a565b845b685)
)
(wire (pts (xy 251.46 66.04) (xy 259.08 66.04))
(stroke (width 0) (type default))
(uuid b69b48b8-b817-457e-bd1b-548225f155d0)
)
(wire (pts (xy 259.08 30.48) (xy 259.08 33.02))
(stroke (width 0) (type default))
(uuid b8a7f746-2bc1-4daf-9f8c-a3ecd78bdcf7)
)
(wire (pts (xy 213.36 104.14) (xy 223.52 104.14))
(stroke (width 0) (type default))
(uuid b9f75690-1f7a-48ef-9ade-63401735be59)
)
(wire (pts (xy 243.84 20.32) (xy 251.46 20.32))
(stroke (width 0) (type default))
(uuid baaffa8a-8950-4cf0-a015-c8e80da9d65e)
)
(wire (pts (xy 100.33 41.91) (xy 100.33 49.53))
(stroke (width 0) (type default))
(uuid bb42823d-34ca-4fe4-9c04-d592d0827c63)
)
(wire (pts (xy 148.59 156.21) (xy 148.59 163.83))
(stroke (width 0) (type default))
(uuid bd979564-11bf-4200-90b5-01db5920af41)
)
(wire (pts (xy 236.22 20.32) (xy 243.84 20.32))
(stroke (width 0) (type default))
(uuid be659bf8-2f2b-4258-a896-421cb3c47c47)
)
(wire (pts (xy 34.29 142.24) (xy 52.07 142.24))
(stroke (width 0) (type default))
(uuid c0f6dfb5-0832-4f53-bb2e-caab3a58d39a)
)
(wire (pts (xy 166.37 156.21) (xy 166.37 163.83))
(stroke (width 0) (type default))
(uuid c27ca0cc-3e0b-4534-aea2-c331f312959b)
)
(wire (pts (xy 266.7 33.02) (xy 259.08 33.02))
(stroke (width 0) (type default))
(uuid c3894d87-2853-4f5d-ad63-649c97fb94c5)
)
(wire (pts (xy 185.42 134.62) (xy 193.04 134.62))
(stroke (width 0) (type default))
(uuid c3d20c9c-f6fb-4d77-8104-ce5783163b2d)
)
(wire (pts (xy 71.12 106.68) (xy 78.74 106.68))
(stroke (width 0) (type default))
(uuid c62c3dd3-07be-42ac-beec-c4ffdc465d33)
)
(wire (pts (xy 185.42 73.66) (xy 195.58 73.66))
(stroke (width 0) (type default))
(uuid c70c2c63-e3e6-4e94-9872-5f0b6ccafa30)
)
(wire (pts (xy 185.42 137.16) (xy 193.04 137.16))
(stroke (width 0) (type default))
(uuid c7f0956d-800b-412e-8ddb-3e8f8d989a39)
)
(wire (pts (xy 71.12 114.3) (xy 78.74 114.3))
(stroke (width 0) (type default))
(uuid c8030fb1-f4a7-48eb-aba1-00f4b7ad530f)
)
(wire (pts (xy 120.65 39.37) (xy 120.65 49.53))
(stroke (width 0) (type default))
(uuid c8433008-0d24-4e18-80ed-1ae1b5db5976)
)
(wire (pts (xy 243.84 20.32) (xy 243.84 22.86))
(stroke (width 0) (type default))
(uuid ca9f4585-e5f4-45f9-8562-49e9829765a0)
)
(wire (pts (xy 140.97 41.91) (xy 140.97 49.53))
(stroke (width 0) (type default))
(uuid cb1d880e-4ca7-40f7-8344-d05cde513b48)
)
(bus (pts (xy 163.83 175.26) (xy 171.45 175.26))
(stroke (width 0) (type default))
(uuid cbf2cbfe-b862-4d47-915f-8dbc55c1a8aa)
)
(wire (pts (xy 138.43 41.91) (xy 138.43 49.53))
(stroke (width 0) (type default))
(uuid cc3cd407-f038-42aa-bd3b-71c3c783ecf5)
)
(wire (pts (xy 266.7 78.74) (xy 259.08 78.74))
(stroke (width 0) (type default))
(uuid cd0ae729-e768-4409-a5c9-3449836cc04b)
)
(wire (pts (xy 66.04 132.08) (xy 78.74 132.08))
(stroke (width 0) (type default))
(uuid ced23a17-cc8a-4c5d-95f6-018b51394a9f)
)
(wire (pts (xy 259.08 78.74) (xy 251.46 78.74))
(stroke (width 0) (type default))
(uuid ceed96d4-b773-4109-b204-13e544adbf57)
)
(bus (pts (xy 44.45 48.26) (xy 52.07 48.26))
(stroke (width 0) (type default))
(uuid d03f4e7a-21db-4a61-ab7b-7b851eddc342)
)
(wire (pts (xy 128.27 39.37) (xy 128.27 49.53))
(stroke (width 0) (type default))
(uuid d3531ad3-ea7d-429d-956e-ff3da633d95c)
)
(wire (pts (xy 228.6 30.48) (xy 228.6 33.02))
(stroke (width 0) (type default))
(uuid d360e52f-123d-4166-9b92-56fab5596269)
)
(wire (pts (xy 185.42 139.7) (xy 193.04 139.7))
(stroke (width 0) (type default))
(uuid d5198429-4401-493c-bff2-2e5e96dfe21b)
)
(wire (pts (xy 92.71 156.21) (xy 92.71 167.64))
(stroke (width 0) (type default))
(uuid d793d520-3ee7-47ec-8c36-f780b097e230)
)
(wire (pts (xy 71.12 104.14) (xy 78.74 104.14))
(stroke (width 0) (type default))
(uuid d7c0f4d0-41b4-4a94-b11e-b5f2fff868d3)
)
(wire (pts (xy 185.42 132.08) (xy 193.04 132.08))
(stroke (width 0) (type default))
(uuid d8e29e8e-6474-42db-a3ee-62571539867d)
)
(bus (pts (xy 44.45 58.42) (xy 52.07 58.42))
(stroke (width 0) (type default))
(uuid d9f42f85-6836-40a4-a270-ce0dd18b1aaa)
)
(wire (pts (xy 71.12 71.12) (xy 78.74 71.12))
(stroke (width 0) (type default))
(uuid db7ab4c0-66c2-440d-923b-a119b5ebc10d)
)
(wire (pts (xy 259.08 76.2) (xy 259.08 78.74))
(stroke (width 0) (type default))
(uuid db97a8db-b6a4-452a-9201-8c5e5adb10f6)
)
(wire (pts (xy 185.42 63.5) (xy 195.58 63.5))
(stroke (width 0) (type default))
(uuid dc0ca2fc-3599-4142-ace0-e48580dd6bc3)
)
(wire (pts (xy 243.84 43.18) (xy 236.22 43.18))
(stroke (width 0) (type default))
(uuid dca8b13e-078d-4584-a282-7524d713396a)
)
(wire (pts (xy 68.58 76.2) (xy 78.74 76.2))
(stroke (width 0) (type default))
(uuid dd1fa08e-e299-44e2-b796-141819fb4651)
)
(wire (pts (xy 158.75 41.91) (xy 158.75 49.53))
(stroke (width 0) (type default))
(uuid def4b3e2-6910-4d11-9dde-d3a5cf79045c)
)
(bus (pts (xy 115.57 175.26) (xy 123.19 175.26))
(stroke (width 0) (type default))
(uuid dfa3cec6-2802-40d0-8211-a4df4d3a8374)
)
(wire (pts (xy 39.37 154.94) (xy 41.91 154.94))
(stroke (width 0) (type default))
(uuid dffcad40-8df3-44a7-8d4e-9edcfc031a48)
)
(wire (pts (xy 36.83 129.54) (xy 52.07 129.54))
(stroke (width 0) (type default))
(uuid e03145a2-f0af-4c0d-a6ae-74469f87c432)
)
(wire (pts (xy 251.46 20.32) (xy 259.08 20.32))
(stroke (width 0) (type default))
(uuid e176543a-ec9a-45a0-9079-f50a4b6b3fff)
)
(wire (pts (xy 185.42 93.98) (xy 193.04 93.98))
(stroke (width 0) (type default))
(uuid e22c14e2-f416-40c4-b113-fd64360a180e)
)
(wire (pts (xy 236.22 43.18) (xy 236.22 45.72))
(stroke (width 0) (type default))
(uuid e3641ece-be55-46d3-a3a2-72e7623a91e2)
)
(wire (pts (xy 161.29 156.21) (xy 161.29 166.37))
(stroke (width 0) (type default))
(uuid e3d5f605-c02b-4f9a-bdb8-6e27136a598f)
)
(wire (pts (xy 231.14 147.32) (xy 223.52 147.32))
(stroke (width 0) (type default))
(uuid e45d2ebd-9940-45d6-8cb9-f8fb51322f65)
)
(wire (pts (xy 71.12 66.04) (xy 78.74 66.04))
(stroke (width 0) (type default))
(uuid e472c47a-222b-4929-94f5-c0acb64f06b9)
)
(wire (pts (xy 92.71 26.67) (xy 100.33 26.67))
(stroke (width 0) (type default))
(uuid e47c10f6-d64e-4f78-b773-2db3d70e8f8c)
)
(wire (pts (xy 203.2 43.18) (xy 213.36 43.18))
(stroke (width 0) (type default))
(uuid e4c21737-9b3e-4d17-82f6-95370e29b23e)
)
(wire (pts (xy 71.12 96.52) (xy 78.74 96.52))
(stroke (width 0) (type default))
(uuid e66989fc-0a88-4b31-b422-4e4d4ad83648)
)
(wire (pts (xy 236.22 53.34) (xy 236.22 55.88))
(stroke (width 0) (type default))
(uuid e7b68b2a-0f00-4378-b1c0-4cdf8852349e)
)
(wire (pts (xy 68.58 142.24) (xy 78.74 142.24))
(stroke (width 0) (type default))
(uuid e8092471-fd1b-4ebc-a2ed-5061dd61fc09)
)
(wire (pts (xy 19.05 185.42) (xy 24.13 185.42))
(stroke (width 0) (type default))
(uuid e8f8e3f2-2324-46d5-abb9-4e28100f2fd7)
)
(wire (pts (xy 39.37 26.67) (xy 62.23 26.67))
(stroke (width 0) (type default))
(uuid e9884521-b494-45fa-a6c7-d179c0e2728d)
)
(wire (pts (xy 251.46 76.2) (xy 251.46 78.74))
(stroke (width 0) (type default))
(uuid e9ffb15c-6abb-429b-b312-80f8acafa250)
)
(wire (pts (xy 236.22 43.18) (xy 228.6 43.18))
(stroke (width 0) (type default))
(uuid eac998c9-ad22-4406-b9bb-ce260dabb21f)
)
(wire (pts (xy 185.42 106.68) (xy 193.04 106.68))
(stroke (width 0) (type default))
(uuid ed659b87-9ae2-492e-95c2-aff53338ea16)
)
(wire (pts (xy 185.42 127) (xy 195.58 127))
(stroke (width 0) (type default))
(uuid edb123bb-7dba-41db-8cf8-49d551b88892)
)
(wire (pts (xy 49.53 170.18) (xy 57.15 170.18))
(stroke (width 0) (type default))
(uuid ee2ad86a-87ac-47bf-93cd-55930554daba)
)
(wire (pts (xy 66.04 127) (xy 78.74 127))
(stroke (width 0) (type default))
(uuid ef7ac9b1-db97-468d-83bd-7a544b867249)
)
(wire (pts (xy 71.12 73.66) (xy 78.74 73.66))
(stroke (width 0) (type default))
(uuid f3f302a5-9f25-4953-b7b2-804bdce0f7cb)
)
(wire (pts (xy 163.83 41.91) (xy 163.83 49.53))
(stroke (width 0) (type default))
(uuid f4218ae9-4e20-4d34-a67c-aa17c89d36a8)
)
(wire (pts (xy 220.98 20.32) (xy 220.98 22.86))
(stroke (width 0) (type default))
(uuid f4851a87-02a2-4451-8323-14d225d5b002)
)
(wire (pts (xy 243.84 55.88) (xy 259.08 55.88))
(stroke (width 0) (type default))
(uuid f4b54d5e-cd19-4467-9bdc-ee7eb33cef78)
)
(wire (pts (xy 66.04 137.16) (xy 78.74 137.16))
(stroke (width 0) (type default))
(uuid f4e92608-53ba-49a5-880c-443776c87820)
)
(wire (pts (xy 213.36 147.32) (xy 223.52 147.32))
(stroke (width 0) (type default))
(uuid f69b6581-abd0-4d5b-9b60-21f0bb82cdfb)
)
(wire (pts (xy 233.68 116.84) (xy 241.3 116.84))
(stroke (width 0) (type default))
(uuid f6a21e39-adda-43aa-87cf-327cb2561b2b)
)
(wire (pts (xy 171.45 41.91) (xy 171.45 49.53))
(stroke (width 0) (type default))
(uuid f87b387e-9660-4043-a639-503f1fadfe0b)
)
(wire (pts (xy 115.57 41.91) (xy 115.57 49.53))
(stroke (width 0) (type default))
(uuid fa6b60ac-3108-4def-b66a-9f74ec83853a)
)
(wire (pts (xy 251.46 68.58) (xy 251.46 66.04))
(stroke (width 0) (type default))
(uuid fba84247-f722-4c6d-a093-aee55be49d4f)
)
(wire (pts (xy 185.42 129.54) (xy 193.04 129.54))
(stroke (width 0) (type default))
(uuid fc4ad6be-a311-4df2-9abc-7e937295b207)
)
(wire (pts (xy 49.53 185.42) (xy 57.15 185.42))
(stroke (width 0) (type default))
(uuid fe31018f-5c56-4da8-8419-cf9ff51a32ac)
)
(wire (pts (xy 185.42 121.92) (xy 195.58 121.92))
(stroke (width 0) (type default))
(uuid feef402d-e20c-433f-bbed-b3d5c8efee26)
)
(label "USB1_DP" (at 66.04 121.92 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 00f8a3d6-cdbe-4347-bfd0-95863f6ab0d1)
)
(label "USB1_REXT" (at 52.07 121.92 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 02cc30b6-d3fb-41ab-80c6-27c6661477d4)
)
(label "PD10" (at 158.75 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 034f4570-c4e3-43f7-a807-247f152833a7)
)
(label "PG11" (at 143.51 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 06d2d857-4633-45b7-9e4c-2998e4f8f033)
)
(label "PF3" (at 110.49 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 06fca808-479f-4724-87b3-aa896f1c538e)
)
(label "PF0" (at 118.11 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 09f87eab-bd0a-4327-8d92-dc1651170e4d)
)
(label "PD5" (at 171.45 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0a345678-8dbf-480d-8d93-d587358c09bf)
)
(label "VSS" (at 241.3 104.14 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0a470c94-fd7b-49df-9c7a-dda6e78a0615)
)
(label "nRESET" (at 130.81 39.37 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0a6c6964-517b-4ffa-8358-a6e43ec1666e)
)
(label "VDDIO" (at 120.65 39.37 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0a75f060-9ad0-4ebe-ae07-34bbdb9c610f)
)
(label "PG5" (at 153.67 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0ac1ca77-fa0e-42ff-b870-a28ecc9930e0)
)
(label "VSS" (at 57.15 187.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0b4b8ca5-98ee-43c6-b583-fa17f707f73c)
)
(label "VSS" (at 19.05 68.58 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0bba24d1-8a11-4918-8a90-84e83adde291)
)
(label "VSS" (at 57.15 185.42 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0ce6402d-cd0a-4675-b6e5-671ba93c10e8)
)
(label "PF7" (at 92.71 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0d8e4094-92dd-4d6a-b85e-5ca2c3dc9080)
)
(label "PG9" (at 143.51 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1360c45e-a323-4701-bbd5-3356d317c548)
)
(label "PE7" (at 71.12 101.6 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 14370647-ead5-47ee-9457-fc80d9cc32fb)
)
(label "PE6" (at 71.12 99.06 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1451d402-bf93-4fe6-91ba-f47c3ab72d01)
)
(label "VSS" (at 248.92 137.16 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1580cd18-22ae-4933-a835-b400d157a03a)
)
(label "PD13" (at 151.13 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 193159ba-0bd4-4d7b-9812-72ab0269834b)
)
(label "PD3" (at 193.04 68.58 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 197c2316-70ac-4018-9480-a69a86b9cfd6)
)
(label "PB5" (at 193.04 137.16 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1b9736bd-5227-485f-95dd-5ca1e5616623)
)
(label "USB1_REXT" (at 66.04 127 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1df7d795-7db4-4143-a50f-46eb18061ee1)
)
(label "USB1_VDD33" (at 66.04 124.46 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1e5e66ba-c1fb-429d-8298-15aaf7561e0e)
)
(label "USB0_VDD" (at 203.2 43.18 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1eae20f7-9fc9-470e-afef-af997f7eefbc)
)
(label "PG15" (at 133.35 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 2079fca8-9ea8-46a2-ad85-249a1f8b97ac)
)
(label "USB0_DN" (at 52.07 134.62 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 20cf3d26-8374-45d6-a315-3267916db701)
)
(label "PE10" (at 52.07 96.52 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 22714354-47f2-43bc-a7dd-54aaafa9cdcd)
)
(label "PC4" (at 193.04 104.14 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 2345df24-264f-46cf-b4a4-55660596d05f)
)
(label "PG8" (at 19.05 154.94 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 240e8cf9-6c6c-4793-b3d1-6a109b3dc9f1)
)
(label "PA8" (at 128.27 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 25088fd4-dba9-4823-8ec5-6464ddebc7b5)
)
(label "VDDIO" (at 113.03 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 26e710fa-e187-4e29-9de4-4e8ff64e7115)
)
(label "PC15" (at 193.04 76.2 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 293ff879-c5c7-45d7-8aac-29501ab8b412)
)
(label "PC10" (at 193.04 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 2bde4085-c6f9-441c-a3bb-e3104cf6e7f3)
)
(label "PA9" (at 130.81 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2c9c545f-d0ca-4cd8-95e6-8a92ff211c59)
)
(label "PB7" (at 193.04 139.7 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 2ecb302a-1564-42d6-aa25-e7303bd288c0)
)
(label "PD4" (at 193.04 66.04 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 300b5c45-6b70-4d3f-9d88-be9e9ad1c163)
)
(label "USB1_VDD33" (at 194.31 20.32 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 30b9c993-2948-48f1-b530-10e6fa4a70b2)
)
(label "PA10" (at 133.35 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 31ec58d4-026f-4417-8dce-3ea39fdb57f3)
)
(label "PC2" (at 193.04 109.22 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 33f769ab-5014-46e4-8769-2bdce808a6ad)
)
(label "PD11" (at 156.21 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 36835ca5-4559-454f-b803-9bb62df5b6fb)
)
(label "XT_OUT" (at 68.58 81.28 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 38f6964d-c259-4242-95b5-b9af9bf14d6c)
)
(label "VSS" (at 19.05 74.93 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3b6ddc8f-4b7a-41c3-b5c0-cf86e528b85f)
)
(label "VDDIO" (at 140.97 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3cae680b-4774-4a73-910b-9ad9c50ae77e)
)
(label "PA7" (at 125.73 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3d260d92-5ebd-4d22-97e2-45f6fafd0abe)
)
(label "X32_IN" (at 213.36 116.84 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3d6317d7-5063-4bd6-b283-53b27fee3584)
)
(label "MVDD" (at 125.73 39.37 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3de3899f-ecd3-4a2a-a1ab-87cef4e94650)
)
(label "PF5" (at 105.41 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3ea124e3-f162-4c20-bd2a-770d2a54f0bb)
)
(label "VDD" (at 259.08 43.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 419e0e23-6e8e-428d-9c38-8245fef4eec1)
)
(label "PC9" (at 193.04 91.44 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 429c5f29-f7b9-4a1e-97ea-8691457c1cc9)
)
(label "AVDDADC" (at 213.36 147.32 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 42c0a486-4025-4975-8301-823175e4e803)
)
(label "PC13" (at 193.04 81.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 43792b89-c414-438b-86e2-7f3ec943146a)
)
(label "USB0_VDD" (at 66.04 129.54 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 43fc1e82-5e3e-4778-97d5-5aab5f5cda80)
)
(label "PB13" (at 100.33 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4438f4f6-6890-430b-92da-c44399581444)
)
(label "USB0_VDD33" (at 66.04 137.16 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 44640551-9b76-4cc6-9a43-08dfaad9a8b0)
)
(label "PA11" (at 135.89 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4580f14f-808e-4bec-9be3-d7aa0b65ef50)
)
(label "PG0" (at 19.05 185.42 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 45bcf530-261d-4b0f-8bf0-7865c0c81492)
)
(label "PA3" (at 102.87 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4a243a5f-8853-41ab-8d70-9c3a13d726cf)
)
(label "PC5" (at 193.04 101.6 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4aa885bb-ad02-4aeb-b8e1-d8bda532f14d)
)
(label "USB1_DN" (at 66.04 119.38 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4b2089e8-7821-4964-afff-2240cbfc4353)
)
(label "PE11" (at 52.07 129.54 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4b8351f4-abaf-40bd-bdd6-9fbdce60c501)
)
(label "PF8" (at 71.12 63.5 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4c7212d9-65bd-4f8b-ab75-69ef92d504b0)
)
(label "VSS" (at 92.71 182.88 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4dea5e5d-1c77-4a65-95bd-f3556391dcdd)
)
(label "PF1" (at 115.57 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4f0bd618-83fc-43ed-b3b4-fa27d6c1b9fe)
)
(label "VDDIO" (at 68.58 76.2 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 519c04a5-b809-4083-bdcb-581e5798f389)
)
(label "PC8" (at 193.04 93.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 51bcb7ce-3f93-4219-bb43-069984e35e0a)
)
(label "X32_OUT" (at 213.36 104.14 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 52d667ab-a1dc-45fc-a839-ed310a339a88)
)
(label "VSS" (at 57.15 157.48 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 536f22b9-e797-4e15-8b51-e29a5ff24ce8)
)
(label "PB1" (at 193.04 134.62 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 558522d7-c3e8-4926-9f12-31bf138f812b)
)
(label "VDD" (at 115.57 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 55f70603-f8f6-49f0-80f8-cc3a768c13e0)
)
(label "PB4" (at 168.91 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 57ca903f-b299-4e90-a72a-cce6caf10b43)
)
(label "MVDD" (at 266.7 66.04 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 5963d6c6-8cf4-4e58-b543-dd3ec6cba22f)
)
(label "PF11" (at 71.12 71.12 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5a0898de-84b7-4e11-8086-45e9f41436be)
)
(label "PA1" (at 97.79 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5a83989b-516a-4890-a21b-b7b9dfb03582)
)
(label "USB0_REXT" (at 66.04 139.7 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5bbadc66-c8cb-40bb-b849-bf0cfb5b9bfd)
)
(label "XT_IN" (at 52.07 68.58 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 68fbead8-496a-4343-8aab-02e5a3010d67)
)
(label "VDD" (at 68.58 116.84 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6ad5c8e3-405d-4457-b239-10abb6e3be61)
)
(label "PD6" (at 168.91 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 6b66eedb-1359-4c23-9bd6-e1c48788ae60)
)
(label "USB0_DP" (at 66.04 134.62 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6bc9a906-3e2d-4011-8199-3846424d52ba)
)
(label "PB13" (at 100.33 26.67 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 6bcda73f-d134-4ede-8d6c-0bad0ac93cbf)
)
(label "PG9" (at 19.05 157.48 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6c10a613-22f7-4855-9c0a-d0d8cbd54cd8)
)
(label "PG8" (at 146.05 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6e358669-3de0-4722-aa93-76f2cbf033ca)
)
(label "PB6" (at 166.37 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7162b869-6f4f-44be-807d-e9c3b4db8d24)
)
(label "PE1" (at 71.12 86.36 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 718795ee-9cc3-4fe8-a0d6-8697f261197e)
)
(label "PC6" (at 193.04 99.06 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 71d7a15e-a0b4-4ef7-b4fa-d545f397a3f1)
)
(label "USB0_REXT" (at 52.07 142.24 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 73a891f3-19a0-49d0-b783-f352a2416340)
)
(label "PG3" (at 156.21 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 741ade0e-280d-4ca1-95c1-c006eda937d0)
)
(label "PA6" (at 110.49 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 75ad9fb7-0a22-4368-ad46-cf6966e3adba)
)
(label "USB0_VDD33" (at 220.98 20.32 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 787930af-2335-4033-8656-0666354e2467)
)
(label "PD12" (at 153.67 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 801fb954-1106-458c-9150-05350f8030d1)
)
(label "PG7" (at 148.59 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 80ff09c2-d1fc-4235-9374-74a65440f062)
)
(label "PD8" (at 163.83 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 815edf6d-28f0-4300-9891-6e887fdf64e1)
)
(label "MVDD" (at 123.19 39.37 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 826883eb-791a-4f94-b3a6-d07e9c71fba1)
)
(label "VSS" (at 254 160.02 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8372b90e-bc3c-4bec-8ef2-066f63ce0fea)
)
(label "PA2" (at 100.33 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 841f9dab-ed12-4b7c-acac-b8b3440bbf4d)
)
(label "PD14" (at 148.59 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 860504aa-4ff1-41fa-9a3a-32a95e27a891)
)
(label "VDD" (at 128.27 39.37 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 886549e8-81c2-4c47-8464-9e4afcaa7ca4)
)
(label "VDD" (at 123.19 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 89224ec1-a4ea-49ae-afe6-848488ef152b)
)
(label "PLL_VSS" (at 259.08 88.9 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8956ee98-f2cc-4b36-ba08-071b3499e124)
)
(label "PE12" (at 52.07 99.06 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 89b06841-c698-46e8-89ff-8233cd7da44f)
)
(label "PF10" (at 52.07 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8aa55287-013b-4e23-89e6-05fa2f555761)
)
(label "VDDIO" (at 195.58 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8ac482af-b968-4b44-a171-9184a7062740)
)
(label "PF10" (at 71.12 68.58 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8b6910c1-0d1d-4d32-b682-1d27c54747b9)
)
(label "PA5" (at 107.95 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8eb23d8c-2da1-4b58-b1e5-21717ddb4f28)
)
(label "PD7" (at 166.37 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8f5d0d5c-6c89-4903-a055-46e2c1a3bfe0)
)
(label "USB0_DP" (at 52.07 137.16 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8fd49202-3813-475c-ac89-ef44fbb0c668)
)
(label "PA0" (at 95.25 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9092011d-d7d9-4bbd-b8f6-651f3f72b968)
)
(label "PD9" (at 161.29 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 9392a1fc-c96c-47e4-b40c-1cef49880cef)
)
(label "PE11" (at 66.04 111.76 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 93a3d56b-72c9-4f1a-99e8-d6fd487f49da)
)
(label "AVSSADC" (at 171.45 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 96ea64e1-9568-4f20-bb36-741e7d476678)
)
(label "VDDIO" (at 259.08 20.32 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 9f2d27c7-3875-4749-8d57-04b5e73fa2c9)
)
(label "PE9" (at 71.12 106.68 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9f49859d-532b-407a-9543-8dfc5f1e275f)
)
(label "PF9" (at 71.12 66.04 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a07d6c94-437a-478b-b934-fbacd1df5d53)
)
(label "PE0" (at 71.12 83.82 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a11b502a-c806-4fc5-9d62-677934fb104e)
)
(label "VSS" (at 19.05 142.24 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a21247fb-b1be-4d35-9c6b-2c8f863b38cb)
)
(label "VSS" (at 52.07 74.93 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a2ba726b-4eb9-4fed-a82a-dd7e317c3533)
)
(label "PG5" (at 19.05 172.72 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a5d94fb8-fe1c-404d-aaef-73cfeaff7fa5)
)
(label "VSS" (at 57.15 172.72 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a741d79e-249a-46b4-a605-77d4f60c15ac)
)
(label "USB1_DP" (at 52.07 116.84 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a79e9fcd-ed0a-461d-898e-b76d34de10f6)
)
(label "PE4" (at 71.12 93.98 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a86331f1-c873-4148-a544-d248e4c286cc)
)
(label "VSS" (at 248.92 88.9 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid aa5c7f87-0eb6-42c6-a605-8b29e73604c1)
)
(label "XT_OUT" (at 52.07 81.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ad5b4c2d-fd49-4e92-af6b-168a15bfd181)
)
(label "PA4" (at 105.41 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid add3541a-c97f-4f7d-8cae-6f071bb73036)
)
(label "XT_IN" (at 68.58 78.74 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid afa7bcab-4b81-4d4e-9268-82ce4c494380)
)
(label "VSS" (at 57.15 154.94 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b1aad3bb-e075-4eff-8db5-03d244518533)
)
(label "PG13" (at 138.43 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b268bee5-e3c7-4162-8fef-247bd2024540)
)
(label "USB1_DN" (at 52.07 114.3 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b322d6be-0f25-4007-a18a-39bbe92f4bfd)
)
(label "PG12" (at 140.97 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b3505147-33bb-414b-8919-9c405d5d6445)
)
(label "PA12" (at 138.43 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b4099f29-55b9-47e0-b945-9242c2ef34d1)
)
(label "nRESET" (at 62.23 26.67 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b87e6ad6-a2e8-45e6-87f1-0cadb8ad9f5b)
)
(label "PC7" (at 193.04 96.52 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b8b65a8b-af21-470f-ba0f-ebc75dc31d18)
)
(label "VBAT33" (at 195.58 127 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b9cad7db-d7a5-48f7-95b5-88e509e4924f)
)
(label "VSS" (at 208.28 134.62 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid bb9dd3f9-5e57-4ec9-9ce8-50077723ee57)
)
(label "VSS" (at 241.3 116.84 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid bf4fb7d9-f5b1-4e89-82ba-6c5b7d76e125)
)
(label "PC11" (at 193.04 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid bf53ffef-0fa9-47d3-a5ef-ec203adb51a8)
)
(label "PG6" (at 151.13 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid bfaaa269-2306-41d3-a5a1-2c02b4baf660)
)
(label "PC3" (at 193.04 106.68 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid bff101c8-f20e-4fc7-815f-323e621c130e)
)
(label "MVDD" (at 120.65 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c008e4af-391b-4da0-80e9-6309dc522cc7)
)
(label "PF6" (at 102.87 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c03190a8-dd6c-45b0-9249-21aafc07ff24)
)
(label "AVSSADC" (at 213.36 160.02 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c0d50069-737b-46a4-bb83-d9caa06d30fb)
)
(label "PE5" (at 71.12 96.52 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c21d64a1-83d4-4288-a9b0-525ab6b22cda)
)
(label "PB0" (at 163.83 163.83 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c2cb2367-3ad7-4731-a845-6a8166448a57)
)
(label "VSS" (at 195.58 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c39ffbd7-3e51-47d1-b7bf-50e41c82f512)
)
(label "PC1" (at 193.04 111.76 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c3c436ad-18b5-472e-9ba7-e69023c1c90c)
)
(label "PE2" (at 71.12 88.9 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c3f1952f-7157-47a2-9ea2-b61c877609f3)
)
(label "PG3" (at 19.05 170.18 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c5fd9061-0daa-41c5-9251-940765877db3)
)
(label "PG1" (at 19.05 187.96 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c8ca97a5-0200-4cbd-aec5-bbd15e2267ba)
)
(label "X32_IN" (at 195.58 124.46 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ce33739c-5d28-4c4f-8ccf-84b467a2a283)
)
(label "PB2" (at 193.04 129.54 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid cefdb9f9-eddc-4939-b1e4-6a96dc9c286d)
)
(label "VSS" (at 19.05 121.92 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cf2f290d-2e6f-4c7e-bcfd-048dbfe9be73)
)
(label "PB8" (at 228.6 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid cfc71d05-bbf7-4a71-91ea-2adff204d213)
)
(label "VDDIO" (at 62.23 31.75 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid d09de72c-4f78-4bed-bf52-de2a28a7d916)
)
(label "PG0" (at 161.29 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d599ee5f-5c96-4c6d-a4f2-87e98db0087b)
)
(label "PG1" (at 158.75 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d5f12618-2c91-4dab-af46-e5d162090f3e)
)
(label "PC0" (at 193.04 114.3 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid d811d8ed-eabc-4eef-ae6c-450657ef37d9)
)
(label "VSS" (at 19.05 31.75 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d812d75a-a99a-4f63-a06c-935a39eeac81)
)
(label "PD2" (at 193.04 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid dcc843a3-df66-43a3-a15f-c2be5fe53475)
)
(label "PLL_VSS" (at 95.25 39.37 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e02cc154-2e4b-4cc3-94d2-75105d00954f)
)
(label "VSS" (at 68.58 142.24 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e29d70ee-75c6-46e2-b1ec-fc6cbaafb75e)
)
(label "VBAT33" (at 220.98 129.54 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e33cab85-1846-499b-a5e2-0fbf9375b7e5)
)
(label "PE3" (at 71.12 91.44 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e56f15d6-88f0-464f-8de0-a1903374d49f)
)
(label "VSS" (at 19.05 81.28 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e5a9112d-013b-4337-a750-7eb69387038c)
)
(label "PD15" (at 146.05 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e788448f-3b48-4908-a2a9-a71f3d9a968a)
)
(label "VSS" (at 57.15 170.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e9ddf430-2d00-49c4-95f9-b6cc3c171df1)
)
(label "X32_OUT" (at 195.58 121.92 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid eb5326f9-79d1-4584-a9a1-77d190619f83)
)
(label "PF4" (at 107.95 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ecf445fa-3195-4e7a-a6c2-0ed768684f3f)
)
(label "USB0_DN" (at 66.04 132.08 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid efb7663b-478f-437d-8e78-460792d39854)
)
(label "PF12" (at 71.12 73.66 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid efd94ec9-a4d8-40f7-bcb1-f13112bee65e)
)
(label "PC14" (at 193.04 78.74 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f2ebc6a7-2562-4bc5-80ec-8eb186db505f)
)
(label "PE12" (at 71.12 114.3 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f391e6d8-b463-422f-9feb-f8a89d5565ba)
)
(label "PE10" (at 71.12 109.22 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f401bccf-dae0-40ad-8337-6a8b126c1fb7)
)
(label "AVDDADC" (at 195.58 142.24 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f4077211-e2b9-4e29-b066-b7867371809f)
)
(label "PC12" (at 193.04 83.82 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f43876ad-c7e6-4eae-af1b-f55d04d53b85)
)
(label "PB8" (at 193.04 119.38 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f51a6b17-3259-43c4-9342-494419b36d68)
)
(label "VDD" (at 195.58 116.84 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f5e93f07-8ba1-4875-bdb1-578538b87209)
)
(label "PB3" (at 193.04 132.08 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f5f646cb-97e3-4dd0-bb96-adc7c7e38fbd)
)
(label "PG14" (at 135.89 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f6ba07ed-683f-4edf-86d5-390ac66ab772)
)
(label "VDD" (at 97.79 39.37 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f8824121-5c2e-4d31-8731-4a8b3bb87bbc)
)
(label "PF2" (at 113.03 41.91 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f95faa93-c2a2-4452-8279-9f0228fcb9ff)
)
(label "MVDD" (at 118.11 166.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fb3a4ec9-1881-4bf8-b816-36a975625905)
)
(label "PE8" (at 71.12 104.14 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fdb48538-35e2-460c-944f-1c184041f274)
)
(hierarchical_label "PF[11..12]" (shape output) (at 44.45 58.42 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 02205f1f-adf4-46c8-a25a-5827ea4e128a)
)
(hierarchical_label "PB13" (shape output) (at 92.71 26.67 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0838e708-b8de-4178-a8c0-ca194e244907)
)
(hierarchical_label "PF[0..6]" (shape output) (at 110.49 31.75 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0bfe9949-aaaf-46e9-aefe-f93ac93b80a5)
)
(hierarchical_label "PE10" (shape input) (at 44.45 96.52 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0e7c0f8d-b951-4ccf-bdab-c28da083209e)
)
(hierarchical_label "PF10" (shape output) (at 44.45 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 19d8410b-fb02-4046-a49d-4650710c9522)
)
(hierarchical_label "PD[8..15]" (shape output) (at 156.21 31.75 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1ce87987-e017-419a-a026-f48ea91d0442)
)
(hierarchical_label "PG[6..7]" (shape output) (at 143.51 180.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 56a5e378-06d5-4c96-bf41-f1f320b01682)
)
(hierarchical_label "USB0_DP" (shape output) (at 36.83 137.16 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 60f78c8e-1ce4-4178-881f-d4d83ce9159c)
)
(hierarchical_label "PB8" (shape output) (at 220.98 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 689a7f20-4553-4b2e-a9cf-a683ca92d29d)
)
(hierarchical_label "USB1_DP" (shape output) (at 36.83 116.84 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7559ce4c-aece-4358-8ef5-0f5081f5553c)
)
(hierarchical_label "PF[7..9]" (shape output) (at 44.45 48.26 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 86e4d9c7-03e8-4f79-8a38-56d33a6448ee)
)
(hierarchical_label "PD[2..7]" (shape output) (at 173.99 26.67 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8fa04cb1-75a5-403a-b4c0-32f14afb360c)
)
(hierarchical_label "VBUS0_VLD" (shape input) (at 36.83 129.54 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a374b036-91e0-4f69-a5c6-2654ae84e1ed)
)
(hierarchical_label "PA[0..12]" (shape output) (at 115.57 175.26 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b1a3802d-0123-4e64-9151-47ea0234359d)
)
(hierarchical_label "PG[11..15]" (shape output) (at 135.89 26.67 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c2bf9ee1-2a6b-42bd-bbba-7b34795b9e5c)
)
(hierarchical_label "USB1_DN" (shape output) (at 36.83 114.3 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ccee52c0-d80c-4824-8967-4cfed6009383)
)
(hierarchical_label "PC[0..15]" (shape output) (at 220.98 81.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d5e35f7c-6d9b-402a-a9f3-afa609541f0b)
)
(hierarchical_label "PB[0..7]" (shape output) (at 163.83 175.26 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dc7c76ed-1aaf-408e-a1eb-fd3a5e746380)
)
(hierarchical_label "PE[0..9]" (shape output) (at 44.45 91.44 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e3eb4067-9659-4e57-ac25-5165c36b9329)
)
(hierarchical_label "USB0_DN" (shape output) (at 36.83 134.62 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ed43ac7b-33fc-4b0c-9852-a93f5c598370)
)
(hierarchical_label "PE12" (shape input) (at 44.45 99.06 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f35db903-f9a5-411e-83a9-af16ccb7d59c)
)
(symbol (lib_id "Device:C") (at 236.22 49.53 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 011f1655-423a-4030-8169-fa5a2f6edc97)
(property "Reference" "C22" (at 237.49 46.99 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 237.49 52.07 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 237.1852 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 236.22 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cf2bbed7-8526-499c-8e09-529a072437ed))
(pin "2" (uuid c712cecb-099f-4fb9-a071-94014b279f04))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C22") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 54.61 74.93 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 059de1f9-8e6a-45d3-80d0-113a7b023068)
(property "Reference" "R18" (at 55.88 71.12 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1M" (at 55.88 78.74 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 52.832 74.93 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 54.61 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d01d17c5-6b4f-4c43-96ac-857676367e8b))
(pin "2" (uuid b5aef72b-6467-4b13-bacd-8c40e10d8a5e))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "R18") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 228.6 26.67 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0893faa9-63f8-4597-98fd-00b918feb909)
(property "Reference" "C16" (at 229.87 24.13 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 229.87 29.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 229.5652 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 228.6 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fb42c735-9459-425e-84b2-a771ed35a92b))
(pin "2" (uuid 4a686621-ffb3-4038-90e4-cf2b68470313))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C16") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 229.87 116.84 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 09725f73-9d61-442f-ace7-780635550dae)
(property "Reference" "C19" (at 227.33 115.57 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "15pF" (at 236.22 115.57 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 233.68 115.8748 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 229.87 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 48fa7da2-37f6-42a0-b4ee-48774a8b5686))
(pin "2" (uuid aa75d516-adc2-4074-9bd3-890067e66b3e))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C19") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 266.7 72.39 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0d5e7a2a-7693-4ed4-ba7e-2f7ca2d6ea11)
(property "Reference" "C34" (at 267.97 69.85 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 267.97 74.93 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 267.6652 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 266.7 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3411e409-b89f-410f-a102-4bf994ae0f73))
(pin "2" (uuid c8bb69cb-2959-47c8-a1f9-b9f75b7a9b0d))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C34") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 48.26 31.75 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0fb36f97-30fa-4de8-846c-f0843ae35e18)
(property "Reference" "R16" (at 43.18 30.48 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "100k" (at 53.34 30.48 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 48.26 33.528 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 48.26 31.75 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f5007c8f-161f-4ec2-b4e7-a7ed4a320f19))
(pin "2" (uuid a1e0c050-9d83-42c5-beab-60bb7e47beb5))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "R16") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:+3V3") (at 250.19 147.32 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 21e2f825-45c4-408f-b2d9-94731a99fc9a)
(property "Reference" "#PWR0135" (at 247.65 147.32 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "+3V3" (at 250.19 147.32 90)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "" (at 250.19 147.32 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 250.19 147.32 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid 47dbb7fb-8132-4631-ac77-b8041738c675))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "#PWR0135") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:+1V8") (at 273.05 66.04 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 29b7865a-1d33-42a4-a4e9-8eed77c527f3)
(property "Reference" "#PWR0132" (at 270.51 66.04 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "+1V8" (at 273.05 66.04 90)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "" (at 273.05 66.04 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 273.05 66.04 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid ac270c6a-2006-41aa-8cc2-735e97fd3793))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "#PWR0132") (unit 1)
)
)
)
)
(symbol (lib_id "Device:Crystal") (at 223.52 110.49 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 29fc3456-8334-4a3b-94ad-7bf95c4aef56)
(property "Reference" "Y2" (at 227.33 107.95 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "32.768k" (at 229.87 113.03 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "0_ungrouped:Crystal_SMD_3215-2Pin_3.2x1.5mm" (at 223.52 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 223.52 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 07cbbfd1-ae4f-424f-8086-85ddccd3a816))
(pin "2" (uuid b1a8b5e8-24c0-4cd6-8748-93ded1844a2d))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "Y2") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 243.84 72.39 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 319bf55f-6d70-4a52-932f-e3085483171e)
(property "Reference" "C25" (at 245.11 69.85 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 245.11 74.93 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 244.8052 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 243.84 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 081513d6-7e32-470a-a9f6-a162742990b3))
(pin "2" (uuid 62dbcd99-c2f4-4cd9-b440-617c5eb75085))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C25") (unit 1)
)
)
)
)
(symbol (lib_id "Device:D_Schottky") (at 242.57 129.54 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3b88bd56-1d8b-41e1-b2f8-e6ba68ba299a)
(property "Reference" "D4" (at 246.38 128.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "B0520WS" (at 236.22 128.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_SMD:D_SOD-323" (at 242.57 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 242.57 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7c9ea8b3-d800-430d-9a86-02466f17fc3b))
(pin "2" (uuid 8acace2a-9a9f-4b64-b4a0-0236566027d6))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "D4") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 229.87 104.14 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 4283a339-467f-48f0-826e-d129f418c7da)
(property "Reference" "C18" (at 227.33 102.87 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "15pF" (at 236.22 102.87 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 233.68 103.1748 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 229.87 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d5ca028f-e44e-44f6-bc4f-44e74c88ee16))
(pin "2" (uuid 2c2c5fe1-b82f-4eda-becd-102d9dabfc54))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C18") (unit 1)
)
)
)
)
(symbol (lib_id "Device:FerriteBead") (at 240.03 147.32 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 43563ac7-8b2e-451f-9374-6dd09c119be3)
(property "Reference" "FB1" (at 236.22 146.05 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1k" (at 243.84 146.05 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Inductor_SMD:L_0603_1608Metric" (at 240.03 145.542 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 240.03 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ccf67393-c8cd-4973-95d2-4066ae9667c9))
(pin "2" (uuid c2179d50-fb9a-454f-a59c-d19552faef2c))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "FB1") (unit 1)
)
)
)
)
(symbol (lib_id "0_ungrouped:SW_Push") (at 33.02 26.67 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 43d286b6-4f93-480d-974a-c0c9820d405d)
(property "Reference" "SW4" (at 29.21 24.13 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Push" (at 36.83 24.13 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" (at 33.02 21.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 33.02 21.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a554a6c1-38f2-4d5f-9313-6dd3b8d33c4e))
(pin "2" (uuid c80a8cc9-ffa5-44aa-a68d-014df73a29bd))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "SW4") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:+3V3") (at 273.05 20.32 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 4ef17e62-34be-49cc-95ca-9f14239b05cd)
(property "Reference" "#PWR0128" (at 270.51 20.32 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "+3V3" (at 273.05 20.32 90)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "" (at 273.05 20.32 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 273.05 20.32 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid 63f27f49-8057-4758-9749-ec3e69bedd78))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "#PWR0128") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 220.98 49.53 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5049948f-b3b0-44db-a6ed-9a290b054738)
(property "Reference" "C14" (at 222.25 46.99 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 222.25 52.07 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 221.9452 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 220.98 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c087772b-7cb7-4947-b8d9-c3085930cca9))
(pin "2" (uuid b3392464-6d24-405c-bb91-6d6489b8c27c))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C14") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:GND") (at 271.78 88.9 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 5b5fee90-d88a-43a3-a1d0-8ae751245d24)
(property "Reference" "#PWR0134" (at 274.32 88.9 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "GND" (at 270.51 88.9 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Footprint" "" (at 271.78 88.9 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 271.78 88.9 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid 9337c1d7-452a-4caa-b4a0-5ff3c083edb9))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "#PWR0134") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:GND") (at 271.78 78.74 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 5f6ac6f2-bd5c-41c4-a37e-4ce841cc376c)
(property "Reference" "#PWR0133" (at 274.32 78.74 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "GND" (at 270.51 78.74 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Footprint" "" (at 271.78 78.74 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 271.78 78.74 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid 686378ce-4541-4cea-b68d-a0c9101884bb))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "#PWR0133") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 219.71 134.62 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 679ceeb2-b9f4-45a6-918f-d7ab552988eb)
(property "Reference" "C12" (at 217.17 133.35 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 227.33 133.35 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 223.52 133.6548 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 219.71 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 40ba7494-6228-4ae7-b163-c5fa6b7a562b))
(pin "2" (uuid be978bca-7b29-44ac-bd01-3c67200cb032))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C12") (unit 1)
)
)
)
)
(symbol (lib_id "Connector_Generic:Conn_01x02") (at 261.62 134.62 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 6d09b87e-f3ff-4065-b568-1e90bb345dc1)
(property "Reference" "J2" (at 263.652 135.0553 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Conn_01x02" (at 263.652 137.5922 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (at 261.62 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 261.62 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9916c271-9b0a-456e-95fd-e006681f5bda))
(pin "2" (uuid 3bd845d4-2ddd-4bdb-a3dd-54398de0a309))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "J2") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 205.74 26.67 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7c049194-d981-450a-8809-c7ecc4343009)
(property "Reference" "C10" (at 207.01 24.13 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 207.01 29.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 206.7052 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 205.74 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cd28a611-998f-4f4d-a39b-4c8b408fd823))
(pin "2" (uuid 14d3c29c-f2d7-4357-959e-669927a68c25))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C10") (unit 1)
)
)
)
)
(symbol (lib_id "Device:D_Schottky") (at 242.57 134.62 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7d3caad2-e895-46c8-acad-0a18efe861a0)
(property "Reference" "D5" (at 246.38 133.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "B0520WS" (at 236.22 133.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_SMD:D_SOD-323" (at 242.57 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 242.57 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d3f7b19c-0d59-4092-9f83-5b659536cd2c))
(pin "2" (uuid 5d2b71fd-13f9-46d5-9658-b3d15ae3b500))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "D5") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 30.48 81.28 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 88d04d0c-0f0c-4fcb-8c64-bde8cb9d1fa3)
(property "Reference" "C8" (at 27.94 80.01 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "30pF" (at 36.83 80.01 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 34.29 80.3148 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 30.48 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3cddef54-4fb0-41c0-b0d5-bc71a76f2ad1))
(pin "2" (uuid d9093d47-6210-4782-b6aa-deaeac17fb30))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C8") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 45.72 187.96 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 89200943-ee9b-4259-b9f6-960a72abfc7c)
(property "Reference" "R15" (at 40.64 186.69 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 50.8 186.69 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 45.72 189.738 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 45.72 187.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 674aefe0-a354-442b-8517-f5d39e387b6b))
(pin "2" (uuid 04472795-6dae-471e-b72d-4923d3946fa1))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "R15") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 243.84 49.53 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 8b2ab33c-e7e4-4e41-9b70-8e4aed7b74b1)
(property "Reference" "C24" (at 245.11 46.99 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 245.11 52.07 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 244.8052 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 243.84 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid db31c435-b526-482b-81ef-0f511234782e))
(pin "2" (uuid 3fa73d19-3496-465f-97a7-ff88cfb81a54))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C24") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 266.7 26.67 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 8dd28bd9-1a01-40d0-8b69-d742e74f44cb)
(property "Reference" "C32" (at 267.97 24.13 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 267.97 29.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 267.6652 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 266.7 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6d58adae-011b-4642-ab57-89d15ee50489))
(pin "2" (uuid ccdbf5b3-e649-4b55-92a7-e21531605bd4))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C32") (unit 1)
)
)
)
)
(symbol (lib_id "0_ungrouped:NUC980DKxxYx") (at 132.08 102.87 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 8fc3dc64-0316-4483-955b-6cc65ff9e1c8)
(property "Reference" "U4" (at 82.55 152.4 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "NUC980DKxxYx" (at 132.08 102.87 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "0_ungrouped:LQFP-128_14x14mm_P0.4mm" (at 132.08 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 132.08 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b6fdfb81-c406-4c88-ae0b-ee646ef2d740))
(pin "10" (uuid 28200062-4f55-4fa7-a570-28e2ab274545))
(pin "100" (uuid 34e7faba-97d7-42e6-a0e1-28c41f9bdbc0))
(pin "101" (uuid bd95337d-9eef-45a7-b43d-6568794bd766))
(pin "102" (uuid ddf0cbdf-337f-4f75-b87c-643f7eb59917))
(pin "103" (uuid 49265804-0096-4217-9537-f218fbd69c52))
(pin "104" (uuid 6ba0f3ce-e065-4fb8-87f2-48fb68077157))
(pin "105" (uuid f437d67e-d44f-4b38-a6c9-f36d153cdec4))
(pin "106" (uuid 61a133b2-1b67-437e-91a5-ef37d7fdd63a))
(pin "107" (uuid ccc38513-0f34-4f05-9f98-ef75de618c91))
(pin "108" (uuid 71b25962-3bdb-41b6-8555-b03d1677ed65))
(pin "109" (uuid 3c65acc2-e8fe-49eb-a1b1-0df75c185195))
(pin "11" (uuid c6014d18-e232-44ed-a070-a1c74153bc15))
(pin "110" (uuid 36974a30-0f6e-490b-94b6-6d027376cd96))
(pin "111" (uuid d4d4fa68-34f2-4653-bbf0-2d24f29cf971))
(pin "112" (uuid 1bea6288-df93-4227-8757-c98eaa833a6f))
(pin "113" (uuid d34385b1-fadf-4359-a8b1-59e02579d7e5))
(pin "114" (uuid 43c60605-74b4-4257-83a1-c4affa06551c))
(pin "115" (uuid 72b286fc-dc7e-4ad5-b2dc-5afc9698e4b6))
(pin "116" (uuid d1bcc174-49ee-47dc-8537-17590e91bff5))
(pin "117" (uuid c63ea0fb-2c6c-4f97-86fb-617c2560809e))
(pin "118" (uuid 8104aa50-a939-4715-a570-a261cb482238))
(pin "119" (uuid 98559c04-1edf-4a16-a403-ee803395c189))
(pin "12" (uuid 198c8220-35a2-4b8b-97eb-1f4e2ae5b6f2))
(pin "120" (uuid da0c8d41-b39e-4471-8532-960046ed3b3c))
(pin "121" (uuid 3781d0c5-d328-422a-90a6-6ba9d7b972df))
(pin "122" (uuid 071fe165-eed0-4ec5-8ce3-44801c72d2c9))
(pin "123" (uuid cc25d09c-35c7-41e7-be08-11221978f8bb))
(pin "124" (uuid f1e08948-6b85-492c-99de-5fd6a459b81f))
(pin "125" (uuid 50abaddd-47f5-4d26-a1ac-040e0a5b2a4e))
(pin "126" (uuid 8257417e-3db1-4b7e-a79b-84d4ba8c4011))
(pin "127" (uuid 54d721eb-e499-47c4-8998-1dcd3829302f))
(pin "128" (uuid 896391fa-77aa-4617-be63-4c92c9128a73))
(pin "13" (uuid 1a585210-4cd2-4cf8-9787-2016b6bc4329))
(pin "14" (uuid d57c0ffa-3d5d-4de8-a2cb-de72ea1cf372))
(pin "15" (uuid e954e8e4-5e66-4ebc-9dad-43e918b0d8d3))
(pin "16" (uuid 36411ff6-02f2-4518-91f8-2ec78503d07a))
(pin "17" (uuid fdbeb6f2-ee7c-43eb-840b-d8ad9458d56d))
(pin "18" (uuid fe29d3b6-92be-4e54-a383-392356bcc809))
(pin "19" (uuid 5fc03015-6f9b-4e08-9fd5-ba1cb6c63544))
(pin "2" (uuid ebe6845e-77ef-4a3b-8777-25f774d9ada6))
(pin "20" (uuid 3d92c55c-1734-42df-b448-2eee86d15983))
(pin "21" (uuid 92529218-3086-4e38-a5d7-361f20edc13a))
(pin "22" (uuid 40af157d-bec1-489e-8581-29ec391f5c92))
(pin "23" (uuid 19a78422-b95d-4f86-b628-f6242f9aacfd))
(pin "24" (uuid 161f5455-8297-4c70-b65c-7a745abba5c6))
(pin "25" (uuid c2f82502-a672-445f-b0f1-8868bd6c28f2))
(pin "26" (uuid 30304e2e-fae0-4942-8805-94df7afa183a))
(pin "27" (uuid 2859838c-f7b0-4be7-9045-7fdc963d3d85))
(pin "28" (uuid 2069990d-6014-4631-8e6f-d382b53b2ed1))
(pin "29" (uuid 82e15225-a105-45b2-84d4-4b70931897e0))
(pin "3" (uuid 3af48b74-9eb6-4a31-be66-715160acfc85))
(pin "30" (uuid 2d9eeeec-9b58-4b2a-bc33-b5b8498b0fa3))
(pin "31" (uuid e8b9f5a2-9c61-4573-a103-20f29d774825))
(pin "32" (uuid 63c4f6ba-7934-4f34-b900-9d85f4b16ec3))
(pin "33" (uuid a3acb1a5-1a94-45cb-a7eb-6abc9d5b9709))
(pin "34" (uuid 3074fade-b34d-479b-8200-fadd967b837d))
(pin "35" (uuid a5da963a-270f-4c3d-a079-114d8eef79b7))
(pin "36" (uuid 588bef68-8354-4667-a575-3c31f5656918))
(pin "37" (uuid b20fce31-a979-44b0-8b02-4f26d5d97078))
(pin "38" (uuid 4e98eeda-3e56-41f0-b5f8-40eea7e26c81))
(pin "39" (uuid 73c391c7-0be1-4b2b-8b04-862892b96a80))
(pin "4" (uuid 6c9aaaba-b9a5-4111-8987-89315ec6be88))
(pin "40" (uuid 0f924b75-883b-4726-a9f0-fbdae6b526a3))
(pin "41" (uuid 59d8ba21-cafb-4664-ad77-269d60e2afa7))
(pin "42" (uuid 16ee6ea3-f8e7-42d6-adf2-84c0e1e68606))
(pin "43" (uuid cf4cb541-1fc3-4ad8-99c6-748cb872c6eb))
(pin "44" (uuid b44b23f0-bd88-4300-979d-37f303b9f6a0))
(pin "45" (uuid 230e039b-1200-49f4-9764-81cfdd0b465a))
(pin "46" (uuid 4bb6aa50-20a8-40c0-9694-aa4503d2e061))
(pin "47" (uuid e92cc26d-27f8-43e9-a58e-4cbff1061bf5))
(pin "48" (uuid 061b0977-703d-47fc-ba64-d6fb3f8737c3))
(pin "49" (uuid f98741d9-e0ab-4e63-868b-6552fb9e4771))
(pin "5" (uuid 7785b82d-e310-4126-be03-f0dab068352e))
(pin "50" (uuid 5be841dc-3b4a-40c9-969b-e11a4fb210b2))
(pin "51" (uuid fcd8b1c2-0644-4e8e-b5df-9c237120459f))
(pin "52" (uuid 91ba689b-5dd8-4302-8420-efca48ac6b5f))
(pin "53" (uuid 96fa3736-070f-437c-b67e-34080cd0f9e4))
(pin "54" (uuid e321aecd-3c35-4269-8106-100a64352fd1))
(pin "55" (uuid f927b2bd-934b-468f-bf89-dd56567c0ccd))
(pin "56" (uuid 5aee846a-8592-4b29-bd9b-9c316ee83d69))
(pin "57" (uuid bb5372f2-1ad0-4a4d-b4cb-b3226f0cfcbd))
(pin "58" (uuid b5e82878-b519-4073-ad55-f1d9914c05ff))
(pin "59" (uuid 41d12f3f-11c6-402c-bcf2-6f6e169eb2f6))
(pin "6" (uuid 355984fe-c4ef-4584-9c88-7aed9a4b1db8))
(pin "60" (uuid 537d030b-54bb-4562-9f1e-378ccefb4b2e))
(pin "61" (uuid b7ea6100-ff11-4609-86f6-89b95a0d171e))
(pin "62" (uuid b8a5679e-0824-4fd4-bd37-515f1c75fd73))
(pin "63" (uuid 14024e4b-59d0-4f66-8eba-1d0eb8f5d9a6))
(pin "64" (uuid f46360b3-2778-4224-b87e-99e44d6e0b71))
(pin "65" (uuid 49c4dcb9-cb9b-421e-b7b9-e495c75a42b7))
(pin "66" (uuid e4e8c3f3-f9c5-4fd5-9df8-595c4d009ab6))
(pin "67" (uuid 35505c17-306b-4361-9895-a67ced902f2d))
(pin "68" (uuid 0db9632a-21af-4acb-9c05-e041f8c89b3a))
(pin "69" (uuid c14d7200-f91c-4b1f-9467-64c3336c7ef2))
(pin "7" (uuid 412488c3-13b7-4cf8-8c58-0304d4e5151b))
(pin "70" (uuid bdfead1f-ec4f-41f7-bfd1-971493371164))
(pin "71" (uuid aba0fc13-5864-4b93-a0d5-5b97e1e36281))
(pin "72" (uuid b93d027f-21f6-4fc9-ad3f-317eded6973b))
(pin "73" (uuid 395df0a5-800c-4cca-a0f1-3ad76d2e76ca))
(pin "74" (uuid b3ee6304-4586-4924-9942-14d87bd91c7d))
(pin "75" (uuid 21029bc5-ec40-4631-a1f1-024a4085a56f))
(pin "76" (uuid 29ba5cb3-8244-4e9f-a028-bde92e99adb1))
(pin "77" (uuid 7bc6e4f1-1e6a-45c4-bde8-9944381fe3ce))
(pin "78" (uuid ad2c8427-faf3-46bd-a366-df5ea0d688b4))
(pin "79" (uuid 19540a39-5ccf-4444-9213-b906fd0dd61b))
(pin "8" (uuid 203e5b2e-39ac-4c61-8ae1-6c3eb4a9b53a))
(pin "80" (uuid 812743ff-ca89-44bf-bfc5-a9a71a71d256))
(pin "81" (uuid 675b2a1e-1d1e-4f5b-91f1-23d348015a92))
(pin "82" (uuid 97823ebb-0711-4a96-9596-e1b6f4baec60))
(pin "83" (uuid 12d6a58e-297d-4423-a9b1-8d6158bbfbac))
(pin "84" (uuid f243ec58-1f6e-418e-a663-db153af2a742))
(pin "85" (uuid 2ea45036-6908-4767-a4a0-ac16e09767ee))
(pin "86" (uuid bdda70c2-3421-4655-b5b9-d211191a6325))
(pin "87" (uuid 047cf595-1972-4c2a-a70b-65489a060f88))
(pin "88" (uuid 23708b85-adf5-4cbf-a4c4-69f9be2b941b))
(pin "89" (uuid 2eb128af-cf78-4727-9276-c766eac2782b))
(pin "9" (uuid b352d21a-9d0c-42da-bdfe-356afec9821e))
(pin "90" (uuid 4a06368c-ac2a-4bd5-acce-393b80f8a278))
(pin "91" (uuid ae278b01-6140-4258-b3e1-878a503a5a62))
(pin "92" (uuid 8ef140e1-a86a-45e5-8f2c-e06066832fcb))
(pin "93" (uuid 623a95d3-92aa-43fc-bfb7-1927169d4600))
(pin "94" (uuid bf3dac99-ac50-4ac6-bfbd-9ed628e3720e))
(pin "95" (uuid fb078252-2c69-4f10-b8ca-ec674f33126f))
(pin "96" (uuid 67a11f6a-4ece-4dc6-a8e5-fd9307451010))
(pin "97" (uuid e8fbed20-1a41-45ab-b1f5-aa1a8c24ac3c))
(pin "98" (uuid afaec224-6eb9-4aa4-acce-937066a89442))
(pin "99" (uuid fbe4ca78-db1d-425c-822e-cbaf51a10d48))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "U4") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 243.84 26.67 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 92f63bfb-c5a3-4b4a-b393-ee7c19a1d020)
(property "Reference" "C23" (at 245.11 24.13 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 245.11 29.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 244.8052 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 243.84 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 16f0be8a-8f45-4eab-91e7-a237d62e8bcd))
(pin "2" (uuid 2b22de82-3f5d-4f8b-a63a-28c8c7978349))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C23") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:+3V3") (at 252.73 129.54 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 93151ff4-6095-4c4a-921f-4f67f591ce34)
(property "Reference" "#PWR0136" (at 250.19 129.54 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "+3V3" (at 252.73 129.54 90)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "" (at 252.73 129.54 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 252.73 129.54 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid b018f4f1-8f07-420f-b5d6-c5cc6a650c03))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "#PWR0136") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 30.48 68.58 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 96bbdaf3-20f3-4a1e-8cf9-11c923b2ba73)
(property "Reference" "C7" (at 27.94 67.31 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "30pF" (at 36.83 67.31 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 34.29 67.6148 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 30.48 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4eb46805-67d0-4866-b9e8-5c701df20d73))
(pin "2" (uuid 95dceaeb-0016-425d-9359-7e52f105d630))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C7") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 251.46 26.67 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 9b4be32a-89b6-4fb0-8ca0-5fb83673f6c0)
(property "Reference" "C26" (at 252.73 24.13 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 252.73 29.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 252.4252 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 251.46 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 22403a42-fcb2-4f40-8e7f-951463d2261b))
(pin "2" (uuid 4910836c-129c-485c-8fe0-c8a1f6c0949d))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C26") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 231.14 153.67 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid a0fae082-f8b2-47dc-ae8a-0430ca91ae67)
(property "Reference" "C20" (at 232.41 151.13 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 232.41 156.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 232.1052 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 231.14 153.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a8058228-2d16-4f66-87ec-314c0dbe1f7b))
(pin "2" (uuid 31ccef57-5f16-4255-beef-5d2c54ef9439))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C20") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 30.48 121.92 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid a90d3a3c-73f7-47c0-9084-5f0381e7b97a)
(property "Reference" "R8" (at 25.4 120.65 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "12.1k" (at 36.83 120.65 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 30.48 123.698 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 30.48 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid da7eb7f1-f047-45a8-83a7-106a855c5a69))
(pin "2" (uuid 5a8a9552-c00b-4396-879c-040a1bf6cb65))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "R8") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 33.02 31.75 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid a9c1b6b3-40e4-4ef4-9d89-1085ef7b5568)
(property "Reference" "C9" (at 30.48 30.48 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (at 38.1 30.48 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 36.83 30.7848 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 33.02 31.75 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ea32f37e-5e1d-423d-8920-6ce4d1b8e72c))
(pin "2" (uuid 18c1371c-eaa5-47ae-b0dc-8539a4511df0))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C9") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 45.72 172.72 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid abbb2ef0-3295-4735-95f7-56274b108645)
(property "Reference" "R13" (at 40.64 171.45 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 50.8 171.45 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 45.72 174.498 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 45.72 172.72 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e53e87b9-c0e1-4fe7-a3e2-e890e55703a6))
(pin "2" (uuid 5df583b5-63f3-4e98-8ab1-f2195de1e25d))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "R13") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 92.71 171.45 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid af2d8c9d-6a7b-4082-b3f7-2fb5e4ac96c7)
(property "Reference" "R17" (at 93.98 167.64 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "NC" (at 93.98 175.26 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 90.932 171.45 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3c4aa58c-cb6d-4490-999c-51031582e6a2))
(pin "2" (uuid f44a00d6-25f9-4304-a48e-66662b5a2dbb))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "R17") (unit 1)
)
)
)
)
(symbol (lib_id "Device:Crystal_GND24") (at 39.37 74.93 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid b13c1106-331f-4b09-a3eb-b93d01be77dc)
(property "Reference" "Y1" (at 40.64 71.12 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "12M" (at 40.64 78.74 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" (at 39.37 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 39.37 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 634a281f-31b7-4d02-98a5-7beef8dacb8f))
(pin "2" (uuid b2ddf1e0-ecd6-4d2e-89b5-eb90e44378f9))
(pin "3" (uuid def0b038-235a-4e6c-b162-dccf2c79800c))
(pin "4" (uuid d31b3763-5fd8-417c-ba1e-f8a90acadaa5))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "Y1") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:+1V2") (at 273.05 43.18 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid b380b316-d4d2-4e6d-9d6e-4e620cc13b07)
(property "Reference" "#PWR0130" (at 270.51 43.18 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "+1V2" (at 273.05 43.18 90)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "" (at 273.05 43.18 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 273.05 43.18 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid b6ce6940-4701-4f80-ae2c-de3c5c0f86c5))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "#PWR0130") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 45.72 157.48 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid b535f118-6fc9-4349-b64f-45748dbfc004)
(property "Reference" "R11" (at 40.64 156.21 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 50.8 156.21 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 45.72 159.258 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 45.72 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1d49e267-4238-4117-a8b7-41e12ff104ac))
(pin "2" (uuid ca7169ae-964f-4beb-9e71-215bbba0b7ab))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "R11") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 45.72 154.94 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid b5a08069-2ca4-4013-9788-c465051d66b7)
(property "Reference" "R10" (at 40.64 153.67 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 50.8 153.67 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 45.72 156.718 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 45.72 154.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 62d475b7-1ea3-4238-9630-af0a67eed768))
(pin "2" (uuid bd647d94-4625-46b8-8ef0-782d4a504e54))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "R10") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 228.6 49.53 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid c05841c4-3334-45dd-bfc0-f5e28fd11133)
(property "Reference" "C17" (at 229.87 46.99 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 229.87 52.07 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 229.5652 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 228.6 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f26fc9e3-643f-45ed-b264-5235f4768fe9))
(pin "2" (uuid d3f4f641-3831-4920-9a24-ca2de6818ae5))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C17") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 259.08 49.53 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid c0dd790b-1627-48c5-8a4e-0eb6b405ac9c)
(property "Reference" "C30" (at 260.35 46.99 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 260.35 52.07 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 260.0452 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 259.08 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1d4d0d14-fe7c-42aa-beca-6efa652d8d32))
(pin "2" (uuid 382e6667-4b65-4e23-825d-8e840dbbd276))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C30") (unit 1)
)
)
)
)
(symbol (lib_id "Switch:SW_DIP_x02") (at 31.75 185.42 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid c666aad3-4b75-4b7d-ac19-56b474621287)
(property "Reference" "SW3" (at 33.02 191.77 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_DIP_x02" (at 31.75 181.61 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Button_Switch_THT:SW_DIP_SPSTx02_Slide_9.78x7.26mm_W7.62mm_P2.54mm" (at 31.75 185.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 31.75 185.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d80c29cd-772a-449b-ab65-195b9a9f63f9))
(pin "2" (uuid 7b79c8bc-391d-4530-bcab-4d8ef87224f7))
(pin "3" (uuid 02a3b4a2-6366-48e0-a38b-4a2dadb1a465))
(pin "4" (uuid 01d6e1fe-9b4a-4cab-b8aa-039845f804cc))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "SW3") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 220.98 26.67 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid c673d6fe-aa03-4c26-87d0-279385441957)
(property "Reference" "C13" (at 222.25 24.13 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 222.25 29.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 221.9452 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 220.98 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a3d6dda8-b20b-4090-aedf-10da256a6bc6))
(pin "2" (uuid ac7e0ff1-4c39-46a1-ba80-ca5a7b16b4e2))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C13") (unit 1)
)
)
)
)
(symbol (lib_id "Switch:SW_DIP_x02") (at 31.75 154.94 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid c861cf8a-31e4-47f9-9d70-ba48e4f39ce1)
(property "Reference" "SW1" (at 33.02 161.29 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_DIP_x02" (at 31.75 151.13 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Button_Switch_THT:SW_DIP_SPSTx02_Slide_9.78x7.26mm_W7.62mm_P2.54mm" (at 31.75 154.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 31.75 154.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 61f4e7f9-83ae-434a-8197-1793ca31e5d3))
(pin "2" (uuid 579729ba-6b2c-4fb1-bf6f-1ae1a84fcc04))
(pin "3" (uuid 574d7ea9-f0f3-406b-9bc0-9485fcb74b81))
(pin "4" (uuid 7b573841-0d69-4c95-a545-76ac472425dc))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "SW1") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 236.22 26.67 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid cea2f9fa-4180-4f8a-a2ee-99f5f3289f04)
(property "Reference" "C21" (at 237.49 24.13 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 237.49 29.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 237.1852 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 236.22 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ccfbea44-fac4-4185-a9cd-f9ebd23d5faa))
(pin "2" (uuid 8c3c110f-2abc-4988-88de-dcc0174112ce))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C21") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 213.36 49.53 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid d1c8089c-a417-4d4c-9845-dfc2d8a48b4f)
(property "Reference" "C11" (at 214.63 46.99 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 214.63 52.07 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 214.3252 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 213.36 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7c42d866-419b-4af9-9adf-b31b30ca3014))
(pin "2" (uuid cf3017fb-2875-481a-a79c-be286ce143d5))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C11") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 223.52 153.67 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid d971a758-3433-48dc-a18d-6677d5e93ac0)
(property "Reference" "C15" (at 224.79 151.13 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 224.79 156.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 224.4852 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 223.52 153.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b31e2dd7-3bd9-47b2-8443-b97b1f9428f4))
(pin "2" (uuid 133b099d-299b-4b7c-b966-b442f08e0a7d))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C15") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:GND") (at 271.78 33.02 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid dd4f6ea2-6a34-435e-b364-01cbee089842)
(property "Reference" "#PWR0129" (at 274.32 33.02 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "GND" (at 270.51 33.02 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Footprint" "" (at 271.78 33.02 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 271.78 33.02 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid 185b44a4-c4b9-4ee7-8a68-4c1ff6e9349b))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "#PWR0129") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 45.72 185.42 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid e1ee4af1-b4ee-4313-834d-768da2aa9472)
(property "Reference" "R14" (at 40.64 184.15 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 50.8 184.15 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 45.72 187.198 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 45.72 185.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ea93df3b-0f87-453c-b3ef-c5c78704314d))
(pin "2" (uuid a9cb3460-f284-4193-bedd-5161099ac0d7))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "R14") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 30.48 142.24 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid e75351b3-e622-4bb9-8329-c36197f3b74f)
(property "Reference" "R9" (at 25.4 140.97 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "12.1k" (at 36.83 140.97 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 30.48 144.018 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 30.48 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1c957b2b-8b9f-4be1-9046-fb5ea863081e))
(pin "2" (uuid 76ba65eb-39f0-495b-9c98-1e8705f74602))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "R9") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 259.08 26.67 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid f0db7442-270d-45e4-bf1f-1a2c4487bb8a)
(property "Reference" "C29" (at 260.35 24.13 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 260.35 29.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 260.0452 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 259.08 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bac1739a-6a08-4edb-804e-3f5cf600f5c1))
(pin "2" (uuid fa56821b-5073-40d9-8185-440402c37689))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C29") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:GND") (at 271.78 55.88 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid f7e04fd2-9213-4729-a8f3-2d2760133c54)
(property "Reference" "#PWR0131" (at 274.32 55.88 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "GND" (at 270.51 55.88 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Footprint" "" (at 271.78 55.88 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 271.78 55.88 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid 4bf1a82d-7bd7-4b91-9f93-b80e5742a8a2))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "#PWR0131") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 251.46 72.39 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid fa11e78e-cca7-48dc-a030-b8550146f9be)
(property "Reference" "C28" (at 252.73 69.85 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 252.73 74.93 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 252.4252 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 251.46 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7c252f62-9edf-45fa-a5a3-a27c473571a8))
(pin "2" (uuid da773a66-8474-4c78-a40a-528208b03b14))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C28") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 259.08 72.39 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid fd1f7e52-84ae-4e8c-abfe-02bd151b8d9b)
(property "Reference" "C31" (at 260.35 69.85 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 260.35 74.93 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 260.0452 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 259.08 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f38a8e8a-8ec5-4a47-84a5-2a77bec61b97))
(pin "2" (uuid 14f2c2f8-15ad-4773-8eb0-cf6370d37d39))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "C31") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 45.72 170.18 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid fdb9cdd7-1692-47c1-bd48-b916edb2d38d)
(property "Reference" "R12" (at 40.64 168.91 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 50.8 168.91 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 45.72 171.958 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 45.72 170.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a986c097-68cb-433d-a7d3-833d4719b427))
(pin "2" (uuid e95206c9-221e-4edd-b468-e6797542d327))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/323274f2-2105-4d6c-846b-729d72181070"
(reference "R12") (unit 1)
)
)
)
)
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化