hdd_controller.kicad_sch-bak 229 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072
  1. (kicad_sch (version 20230121) (generator eeschema)
  2. (uuid e1344761-a16d-4352-afe7-1fe017b9cf49)
  3. (paper "A2")
  4. (title_block
  5. (title "DataBoard 5076-00")
  6. (date "2023-10-10")
  7. (rev "v1.01")
  8. (company "SweProj")
  9. (comment 1 "Monty to 4680 int")
  10. )
  11. (lib_symbols
  12. (symbol "74xx:74LS00" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  13. (property "Reference" "U" (at 0 1.27 0)
  14. (effects (font (size 1.27 1.27)))
  15. )
  16. (property "Value" "74LS00" (at 0 -1.27 0)
  17. (effects (font (size 1.27 1.27)))
  18. )
  19. (property "Footprint" "" (at 0 0 0)
  20. (effects (font (size 1.27 1.27)) hide)
  21. )
  22. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 0 0 0)
  23. (effects (font (size 1.27 1.27)) hide)
  24. )
  25. (property "ki_locked" "" (at 0 0 0)
  26. (effects (font (size 1.27 1.27)))
  27. )
  28. (property "ki_keywords" "TTL nand 2-input" (at 0 0 0)
  29. (effects (font (size 1.27 1.27)) hide)
  30. )
  31. (property "ki_description" "quad 2-input NAND gate" (at 0 0 0)
  32. (effects (font (size 1.27 1.27)) hide)
  33. )
  34. (property "ki_fp_filters" "DIP*W7.62mm* SO14*" (at 0 0 0)
  35. (effects (font (size 1.27 1.27)) hide)
  36. )
  37. (symbol "74LS00_1_1"
  38. (arc (start 0 -3.81) (mid 3.7934 0) (end 0 3.81)
  39. (stroke (width 0.254) (type default))
  40. (fill (type background))
  41. )
  42. (polyline
  43. (pts
  44. (xy 0 3.81)
  45. (xy -3.81 3.81)
  46. (xy -3.81 -3.81)
  47. (xy 0 -3.81)
  48. )
  49. (stroke (width 0.254) (type default))
  50. (fill (type background))
  51. )
  52. (pin input line (at -7.62 2.54 0) (length 3.81)
  53. (name "~" (effects (font (size 1.27 1.27))))
  54. (number "1" (effects (font (size 1.27 1.27))))
  55. )
  56. (pin input line (at -7.62 -2.54 0) (length 3.81)
  57. (name "~" (effects (font (size 1.27 1.27))))
  58. (number "2" (effects (font (size 1.27 1.27))))
  59. )
  60. (pin output inverted (at 7.62 0 180) (length 3.81)
  61. (name "~" (effects (font (size 1.27 1.27))))
  62. (number "3" (effects (font (size 1.27 1.27))))
  63. )
  64. )
  65. (symbol "74LS00_1_2"
  66. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  67. (stroke (width 0.254) (type default))
  68. (fill (type none))
  69. )
  70. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  71. (stroke (width 0.254) (type default))
  72. (fill (type background))
  73. )
  74. (polyline
  75. (pts
  76. (xy -3.81 -3.81)
  77. (xy -0.635 -3.81)
  78. )
  79. (stroke (width 0.254) (type default))
  80. (fill (type background))
  81. )
  82. (polyline
  83. (pts
  84. (xy -3.81 3.81)
  85. (xy -0.635 3.81)
  86. )
  87. (stroke (width 0.254) (type default))
  88. (fill (type background))
  89. )
  90. (polyline
  91. (pts
  92. (xy -0.635 3.81)
  93. (xy -3.81 3.81)
  94. (xy -3.81 3.81)
  95. (xy -3.556 3.4036)
  96. (xy -3.0226 2.2606)
  97. (xy -2.6924 1.0414)
  98. (xy -2.6162 -0.254)
  99. (xy -2.7686 -1.4986)
  100. (xy -3.175 -2.7178)
  101. (xy -3.81 -3.81)
  102. (xy -3.81 -3.81)
  103. (xy -0.635 -3.81)
  104. )
  105. (stroke (width -25.4) (type default))
  106. (fill (type background))
  107. )
  108. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  109. (stroke (width 0.254) (type default))
  110. (fill (type background))
  111. )
  112. (pin input inverted (at -7.62 2.54 0) (length 4.318)
  113. (name "~" (effects (font (size 1.27 1.27))))
  114. (number "1" (effects (font (size 1.27 1.27))))
  115. )
  116. (pin input inverted (at -7.62 -2.54 0) (length 4.318)
  117. (name "~" (effects (font (size 1.27 1.27))))
  118. (number "2" (effects (font (size 1.27 1.27))))
  119. )
  120. (pin output line (at 7.62 0 180) (length 3.81)
  121. (name "~" (effects (font (size 1.27 1.27))))
  122. (number "3" (effects (font (size 1.27 1.27))))
  123. )
  124. )
  125. (symbol "74LS00_2_1"
  126. (arc (start 0 -3.81) (mid 3.7934 0) (end 0 3.81)
  127. (stroke (width 0.254) (type default))
  128. (fill (type background))
  129. )
  130. (polyline
  131. (pts
  132. (xy 0 3.81)
  133. (xy -3.81 3.81)
  134. (xy -3.81 -3.81)
  135. (xy 0 -3.81)
  136. )
  137. (stroke (width 0.254) (type default))
  138. (fill (type background))
  139. )
  140. (pin input line (at -7.62 2.54 0) (length 3.81)
  141. (name "~" (effects (font (size 1.27 1.27))))
  142. (number "4" (effects (font (size 1.27 1.27))))
  143. )
  144. (pin input line (at -7.62 -2.54 0) (length 3.81)
  145. (name "~" (effects (font (size 1.27 1.27))))
  146. (number "5" (effects (font (size 1.27 1.27))))
  147. )
  148. (pin output inverted (at 7.62 0 180) (length 3.81)
  149. (name "~" (effects (font (size 1.27 1.27))))
  150. (number "6" (effects (font (size 1.27 1.27))))
  151. )
  152. )
  153. (symbol "74LS00_2_2"
  154. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  155. (stroke (width 0.254) (type default))
  156. (fill (type none))
  157. )
  158. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  159. (stroke (width 0.254) (type default))
  160. (fill (type background))
  161. )
  162. (polyline
  163. (pts
  164. (xy -3.81 -3.81)
  165. (xy -0.635 -3.81)
  166. )
  167. (stroke (width 0.254) (type default))
  168. (fill (type background))
  169. )
  170. (polyline
  171. (pts
  172. (xy -3.81 3.81)
  173. (xy -0.635 3.81)
  174. )
  175. (stroke (width 0.254) (type default))
  176. (fill (type background))
  177. )
  178. (polyline
  179. (pts
  180. (xy -0.635 3.81)
  181. (xy -3.81 3.81)
  182. (xy -3.81 3.81)
  183. (xy -3.556 3.4036)
  184. (xy -3.0226 2.2606)
  185. (xy -2.6924 1.0414)
  186. (xy -2.6162 -0.254)
  187. (xy -2.7686 -1.4986)
  188. (xy -3.175 -2.7178)
  189. (xy -3.81 -3.81)
  190. (xy -3.81 -3.81)
  191. (xy -0.635 -3.81)
  192. )
  193. (stroke (width -25.4) (type default))
  194. (fill (type background))
  195. )
  196. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  197. (stroke (width 0.254) (type default))
  198. (fill (type background))
  199. )
  200. (pin input inverted (at -7.62 2.54 0) (length 4.318)
  201. (name "~" (effects (font (size 1.27 1.27))))
  202. (number "4" (effects (font (size 1.27 1.27))))
  203. )
  204. (pin input inverted (at -7.62 -2.54 0) (length 4.318)
  205. (name "~" (effects (font (size 1.27 1.27))))
  206. (number "5" (effects (font (size 1.27 1.27))))
  207. )
  208. (pin output line (at 7.62 0 180) (length 3.81)
  209. (name "~" (effects (font (size 1.27 1.27))))
  210. (number "6" (effects (font (size 1.27 1.27))))
  211. )
  212. )
  213. (symbol "74LS00_3_1"
  214. (arc (start 0 -3.81) (mid 3.7934 0) (end 0 3.81)
  215. (stroke (width 0.254) (type default))
  216. (fill (type background))
  217. )
  218. (polyline
  219. (pts
  220. (xy 0 3.81)
  221. (xy -3.81 3.81)
  222. (xy -3.81 -3.81)
  223. (xy 0 -3.81)
  224. )
  225. (stroke (width 0.254) (type default))
  226. (fill (type background))
  227. )
  228. (pin input line (at -7.62 -2.54 0) (length 3.81)
  229. (name "~" (effects (font (size 1.27 1.27))))
  230. (number "10" (effects (font (size 1.27 1.27))))
  231. )
  232. (pin output inverted (at 7.62 0 180) (length 3.81)
  233. (name "~" (effects (font (size 1.27 1.27))))
  234. (number "8" (effects (font (size 1.27 1.27))))
  235. )
  236. (pin input line (at -7.62 2.54 0) (length 3.81)
  237. (name "~" (effects (font (size 1.27 1.27))))
  238. (number "9" (effects (font (size 1.27 1.27))))
  239. )
  240. )
  241. (symbol "74LS00_3_2"
  242. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  243. (stroke (width 0.254) (type default))
  244. (fill (type none))
  245. )
  246. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  247. (stroke (width 0.254) (type default))
  248. (fill (type background))
  249. )
  250. (polyline
  251. (pts
  252. (xy -3.81 -3.81)
  253. (xy -0.635 -3.81)
  254. )
  255. (stroke (width 0.254) (type default))
  256. (fill (type background))
  257. )
  258. (polyline
  259. (pts
  260. (xy -3.81 3.81)
  261. (xy -0.635 3.81)
  262. )
  263. (stroke (width 0.254) (type default))
  264. (fill (type background))
  265. )
  266. (polyline
  267. (pts
  268. (xy -0.635 3.81)
  269. (xy -3.81 3.81)
  270. (xy -3.81 3.81)
  271. (xy -3.556 3.4036)
  272. (xy -3.0226 2.2606)
  273. (xy -2.6924 1.0414)
  274. (xy -2.6162 -0.254)
  275. (xy -2.7686 -1.4986)
  276. (xy -3.175 -2.7178)
  277. (xy -3.81 -3.81)
  278. (xy -3.81 -3.81)
  279. (xy -0.635 -3.81)
  280. )
  281. (stroke (width -25.4) (type default))
  282. (fill (type background))
  283. )
  284. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  285. (stroke (width 0.254) (type default))
  286. (fill (type background))
  287. )
  288. (pin input inverted (at -7.62 -2.54 0) (length 4.318)
  289. (name "~" (effects (font (size 1.27 1.27))))
  290. (number "10" (effects (font (size 1.27 1.27))))
  291. )
  292. (pin output line (at 7.62 0 180) (length 3.81)
  293. (name "~" (effects (font (size 1.27 1.27))))
  294. (number "8" (effects (font (size 1.27 1.27))))
  295. )
  296. (pin input inverted (at -7.62 2.54 0) (length 4.318)
  297. (name "~" (effects (font (size 1.27 1.27))))
  298. (number "9" (effects (font (size 1.27 1.27))))
  299. )
  300. )
  301. (symbol "74LS00_4_1"
  302. (arc (start 0 -3.81) (mid 3.7934 0) (end 0 3.81)
  303. (stroke (width 0.254) (type default))
  304. (fill (type background))
  305. )
  306. (polyline
  307. (pts
  308. (xy 0 3.81)
  309. (xy -3.81 3.81)
  310. (xy -3.81 -3.81)
  311. (xy 0 -3.81)
  312. )
  313. (stroke (width 0.254) (type default))
  314. (fill (type background))
  315. )
  316. (pin output inverted (at 7.62 0 180) (length 3.81)
  317. (name "~" (effects (font (size 1.27 1.27))))
  318. (number "11" (effects (font (size 1.27 1.27))))
  319. )
  320. (pin input line (at -7.62 2.54 0) (length 3.81)
  321. (name "~" (effects (font (size 1.27 1.27))))
  322. (number "12" (effects (font (size 1.27 1.27))))
  323. )
  324. (pin input line (at -7.62 -2.54 0) (length 3.81)
  325. (name "~" (effects (font (size 1.27 1.27))))
  326. (number "13" (effects (font (size 1.27 1.27))))
  327. )
  328. )
  329. (symbol "74LS00_4_2"
  330. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  331. (stroke (width 0.254) (type default))
  332. (fill (type none))
  333. )
  334. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  335. (stroke (width 0.254) (type default))
  336. (fill (type background))
  337. )
  338. (polyline
  339. (pts
  340. (xy -3.81 -3.81)
  341. (xy -0.635 -3.81)
  342. )
  343. (stroke (width 0.254) (type default))
  344. (fill (type background))
  345. )
  346. (polyline
  347. (pts
  348. (xy -3.81 3.81)
  349. (xy -0.635 3.81)
  350. )
  351. (stroke (width 0.254) (type default))
  352. (fill (type background))
  353. )
  354. (polyline
  355. (pts
  356. (xy -0.635 3.81)
  357. (xy -3.81 3.81)
  358. (xy -3.81 3.81)
  359. (xy -3.556 3.4036)
  360. (xy -3.0226 2.2606)
  361. (xy -2.6924 1.0414)
  362. (xy -2.6162 -0.254)
  363. (xy -2.7686 -1.4986)
  364. (xy -3.175 -2.7178)
  365. (xy -3.81 -3.81)
  366. (xy -3.81 -3.81)
  367. (xy -0.635 -3.81)
  368. )
  369. (stroke (width -25.4) (type default))
  370. (fill (type background))
  371. )
  372. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  373. (stroke (width 0.254) (type default))
  374. (fill (type background))
  375. )
  376. (pin output line (at 7.62 0 180) (length 3.81)
  377. (name "~" (effects (font (size 1.27 1.27))))
  378. (number "11" (effects (font (size 1.27 1.27))))
  379. )
  380. (pin input inverted (at -7.62 2.54 0) (length 4.318)
  381. (name "~" (effects (font (size 1.27 1.27))))
  382. (number "12" (effects (font (size 1.27 1.27))))
  383. )
  384. (pin input inverted (at -7.62 -2.54 0) (length 4.318)
  385. (name "~" (effects (font (size 1.27 1.27))))
  386. (number "13" (effects (font (size 1.27 1.27))))
  387. )
  388. )
  389. (symbol "74LS00_5_0"
  390. (pin power_in line (at 0 12.7 270) (length 5.08)
  391. (name "VCC" (effects (font (size 1.27 1.27))))
  392. (number "14" (effects (font (size 1.27 1.27))))
  393. )
  394. (pin power_in line (at 0 -12.7 90) (length 5.08)
  395. (name "GND" (effects (font (size 1.27 1.27))))
  396. (number "7" (effects (font (size 1.27 1.27))))
  397. )
  398. )
  399. (symbol "74LS00_5_1"
  400. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  401. (stroke (width 0.254) (type default))
  402. (fill (type background))
  403. )
  404. )
  405. )
  406. (symbol "74xx:74LS221" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  407. (property "Reference" "U" (at -7.62 8.89 0)
  408. (effects (font (size 1.27 1.27)))
  409. )
  410. (property "Value" "74LS221" (at -7.62 -8.89 0)
  411. (effects (font (size 1.27 1.27)))
  412. )
  413. (property "Footprint" "" (at 0 0 0)
  414. (effects (font (size 1.27 1.27)) hide)
  415. )
  416. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS221" (at 0 0 0)
  417. (effects (font (size 1.27 1.27)) hide)
  418. )
  419. (property "ki_locked" "" (at 0 0 0)
  420. (effects (font (size 1.27 1.27)))
  421. )
  422. (property "ki_keywords" "TTL Monostable" (at 0 0 0)
  423. (effects (font (size 1.27 1.27)) hide)
  424. )
  425. (property "ki_description" "Dual Monostable" (at 0 0 0)
  426. (effects (font (size 1.27 1.27)) hide)
  427. )
  428. (property "ki_fp_filters" "DIP?16*" (at 0 0 0)
  429. (effects (font (size 1.27 1.27)) hide)
  430. )
  431. (symbol "74LS221_1_0"
  432. (pin input line (at -12.7 5.08 0) (length 5.08)
  433. (name "~{A}" (effects (font (size 1.27 1.27))))
  434. (number "1" (effects (font (size 1.27 1.27))))
  435. )
  436. (pin output line (at 12.7 5.08 180) (length 5.08)
  437. (name "Q" (effects (font (size 1.27 1.27))))
  438. (number "13" (effects (font (size 1.27 1.27))))
  439. )
  440. (pin input line (at 0 12.7 270) (length 5.08)
  441. (name "Cext" (effects (font (size 1.27 1.27))))
  442. (number "14" (effects (font (size 1.27 1.27))))
  443. )
  444. (pin input line (at 2.54 12.7 270) (length 5.08)
  445. (name "RCext" (effects (font (size 1.27 1.27))))
  446. (number "15" (effects (font (size 1.27 1.27))))
  447. )
  448. (pin input line (at -12.7 2.54 0) (length 5.08)
  449. (name "B" (effects (font (size 1.27 1.27))))
  450. (number "2" (effects (font (size 1.27 1.27))))
  451. )
  452. (pin input line (at -12.7 -2.54 0) (length 5.08)
  453. (name "~{CLR}" (effects (font (size 1.27 1.27))))
  454. (number "3" (effects (font (size 1.27 1.27))))
  455. )
  456. (pin output line (at 12.7 -5.08 180) (length 5.08)
  457. (name "~{Q}" (effects (font (size 1.27 1.27))))
  458. (number "4" (effects (font (size 1.27 1.27))))
  459. )
  460. )
  461. (symbol "74LS221_1_1"
  462. (rectangle (start -7.62 7.62) (end 7.62 -7.62)
  463. (stroke (width 0.254) (type default))
  464. (fill (type background))
  465. )
  466. )
  467. (symbol "74LS221_2_0"
  468. (pin input line (at -12.7 2.54 0) (length 5.08)
  469. (name "B" (effects (font (size 1.27 1.27))))
  470. (number "10" (effects (font (size 1.27 1.27))))
  471. )
  472. (pin input line (at -12.7 -2.54 0) (length 5.08)
  473. (name "~{CLR}" (effects (font (size 1.27 1.27))))
  474. (number "11" (effects (font (size 1.27 1.27))))
  475. )
  476. (pin output line (at 12.7 -5.08 180) (length 5.08)
  477. (name "~{Q}" (effects (font (size 1.27 1.27))))
  478. (number "12" (effects (font (size 1.27 1.27))))
  479. )
  480. (pin output line (at 12.7 5.08 180) (length 5.08)
  481. (name "Q" (effects (font (size 1.27 1.27))))
  482. (number "5" (effects (font (size 1.27 1.27))))
  483. )
  484. (pin input line (at 0 12.7 270) (length 5.08)
  485. (name "Cext" (effects (font (size 1.27 1.27))))
  486. (number "6" (effects (font (size 1.27 1.27))))
  487. )
  488. (pin input line (at 2.54 12.7 270) (length 5.08)
  489. (name "RCext" (effects (font (size 1.27 1.27))))
  490. (number "7" (effects (font (size 1.27 1.27))))
  491. )
  492. (pin input line (at -12.7 5.08 0) (length 5.08)
  493. (name "~{A}" (effects (font (size 1.27 1.27))))
  494. (number "9" (effects (font (size 1.27 1.27))))
  495. )
  496. )
  497. (symbol "74LS221_2_1"
  498. (rectangle (start -7.62 7.62) (end 7.62 -7.62)
  499. (stroke (width 0.254) (type default))
  500. (fill (type background))
  501. )
  502. )
  503. (symbol "74LS221_3_0"
  504. (pin power_in line (at 0 12.7 270) (length 5.08)
  505. (name "VCC" (effects (font (size 1.27 1.27))))
  506. (number "16" (effects (font (size 1.27 1.27))))
  507. )
  508. (pin power_in line (at 0 -12.7 90) (length 5.08)
  509. (name "GND" (effects (font (size 1.27 1.27))))
  510. (number "8" (effects (font (size 1.27 1.27))))
  511. )
  512. )
  513. (symbol "74LS221_3_1"
  514. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  515. (stroke (width 0.254) (type default))
  516. (fill (type background))
  517. )
  518. )
  519. )
  520. (symbol "74xx:74LS32" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  521. (property "Reference" "U" (at 0 1.27 0)
  522. (effects (font (size 1.27 1.27)))
  523. )
  524. (property "Value" "74LS32" (at 0 -1.27 0)
  525. (effects (font (size 1.27 1.27)))
  526. )
  527. (property "Footprint" "" (at 0 0 0)
  528. (effects (font (size 1.27 1.27)) hide)
  529. )
  530. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS32" (at 0 0 0)
  531. (effects (font (size 1.27 1.27)) hide)
  532. )
  533. (property "ki_locked" "" (at 0 0 0)
  534. (effects (font (size 1.27 1.27)))
  535. )
  536. (property "ki_keywords" "TTL Or2" (at 0 0 0)
  537. (effects (font (size 1.27 1.27)) hide)
  538. )
  539. (property "ki_description" "Quad 2-input OR" (at 0 0 0)
  540. (effects (font (size 1.27 1.27)) hide)
  541. )
  542. (property "ki_fp_filters" "DIP?14*" (at 0 0 0)
  543. (effects (font (size 1.27 1.27)) hide)
  544. )
  545. (symbol "74LS32_1_1"
  546. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  547. (stroke (width 0.254) (type default))
  548. (fill (type none))
  549. )
  550. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  551. (stroke (width 0.254) (type default))
  552. (fill (type background))
  553. )
  554. (polyline
  555. (pts
  556. (xy -3.81 -3.81)
  557. (xy -0.635 -3.81)
  558. )
  559. (stroke (width 0.254) (type default))
  560. (fill (type background))
  561. )
  562. (polyline
  563. (pts
  564. (xy -3.81 3.81)
  565. (xy -0.635 3.81)
  566. )
  567. (stroke (width 0.254) (type default))
  568. (fill (type background))
  569. )
  570. (polyline
  571. (pts
  572. (xy -0.635 3.81)
  573. (xy -3.81 3.81)
  574. (xy -3.81 3.81)
  575. (xy -3.556 3.4036)
  576. (xy -3.0226 2.2606)
  577. (xy -2.6924 1.0414)
  578. (xy -2.6162 -0.254)
  579. (xy -2.7686 -1.4986)
  580. (xy -3.175 -2.7178)
  581. (xy -3.81 -3.81)
  582. (xy -3.81 -3.81)
  583. (xy -0.635 -3.81)
  584. )
  585. (stroke (width -25.4) (type default))
  586. (fill (type background))
  587. )
  588. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  589. (stroke (width 0.254) (type default))
  590. (fill (type background))
  591. )
  592. (pin input line (at -7.62 2.54 0) (length 4.318)
  593. (name "~" (effects (font (size 1.27 1.27))))
  594. (number "1" (effects (font (size 1.27 1.27))))
  595. )
  596. (pin input line (at -7.62 -2.54 0) (length 4.318)
  597. (name "~" (effects (font (size 1.27 1.27))))
  598. (number "2" (effects (font (size 1.27 1.27))))
  599. )
  600. (pin output line (at 7.62 0 180) (length 3.81)
  601. (name "~" (effects (font (size 1.27 1.27))))
  602. (number "3" (effects (font (size 1.27 1.27))))
  603. )
  604. )
  605. (symbol "74LS32_1_2"
  606. (arc (start 0 -3.81) (mid 3.7934 0) (end 0 3.81)
  607. (stroke (width 0.254) (type default))
  608. (fill (type background))
  609. )
  610. (polyline
  611. (pts
  612. (xy 0 3.81)
  613. (xy -3.81 3.81)
  614. (xy -3.81 -3.81)
  615. (xy 0 -3.81)
  616. )
  617. (stroke (width 0.254) (type default))
  618. (fill (type background))
  619. )
  620. (pin input inverted (at -7.62 2.54 0) (length 3.81)
  621. (name "~" (effects (font (size 1.27 1.27))))
  622. (number "1" (effects (font (size 1.27 1.27))))
  623. )
  624. (pin input inverted (at -7.62 -2.54 0) (length 3.81)
  625. (name "~" (effects (font (size 1.27 1.27))))
  626. (number "2" (effects (font (size 1.27 1.27))))
  627. )
  628. (pin output inverted (at 7.62 0 180) (length 3.81)
  629. (name "~" (effects (font (size 1.27 1.27))))
  630. (number "3" (effects (font (size 1.27 1.27))))
  631. )
  632. )
  633. (symbol "74LS32_2_1"
  634. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  635. (stroke (width 0.254) (type default))
  636. (fill (type none))
  637. )
  638. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  639. (stroke (width 0.254) (type default))
  640. (fill (type background))
  641. )
  642. (polyline
  643. (pts
  644. (xy -3.81 -3.81)
  645. (xy -0.635 -3.81)
  646. )
  647. (stroke (width 0.254) (type default))
  648. (fill (type background))
  649. )
  650. (polyline
  651. (pts
  652. (xy -3.81 3.81)
  653. (xy -0.635 3.81)
  654. )
  655. (stroke (width 0.254) (type default))
  656. (fill (type background))
  657. )
  658. (polyline
  659. (pts
  660. (xy -0.635 3.81)
  661. (xy -3.81 3.81)
  662. (xy -3.81 3.81)
  663. (xy -3.556 3.4036)
  664. (xy -3.0226 2.2606)
  665. (xy -2.6924 1.0414)
  666. (xy -2.6162 -0.254)
  667. (xy -2.7686 -1.4986)
  668. (xy -3.175 -2.7178)
  669. (xy -3.81 -3.81)
  670. (xy -3.81 -3.81)
  671. (xy -0.635 -3.81)
  672. )
  673. (stroke (width -25.4) (type default))
  674. (fill (type background))
  675. )
  676. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  677. (stroke (width 0.254) (type default))
  678. (fill (type background))
  679. )
  680. (pin input line (at -7.62 2.54 0) (length 4.318)
  681. (name "~" (effects (font (size 1.27 1.27))))
  682. (number "4" (effects (font (size 1.27 1.27))))
  683. )
  684. (pin input line (at -7.62 -2.54 0) (length 4.318)
  685. (name "~" (effects (font (size 1.27 1.27))))
  686. (number "5" (effects (font (size 1.27 1.27))))
  687. )
  688. (pin output line (at 7.62 0 180) (length 3.81)
  689. (name "~" (effects (font (size 1.27 1.27))))
  690. (number "6" (effects (font (size 1.27 1.27))))
  691. )
  692. )
  693. (symbol "74LS32_2_2"
  694. (arc (start 0 -3.81) (mid 3.7934 0) (end 0 3.81)
  695. (stroke (width 0.254) (type default))
  696. (fill (type background))
  697. )
  698. (polyline
  699. (pts
  700. (xy 0 3.81)
  701. (xy -3.81 3.81)
  702. (xy -3.81 -3.81)
  703. (xy 0 -3.81)
  704. )
  705. (stroke (width 0.254) (type default))
  706. (fill (type background))
  707. )
  708. (pin input inverted (at -7.62 2.54 0) (length 3.81)
  709. (name "~" (effects (font (size 1.27 1.27))))
  710. (number "4" (effects (font (size 1.27 1.27))))
  711. )
  712. (pin input inverted (at -7.62 -2.54 0) (length 3.81)
  713. (name "~" (effects (font (size 1.27 1.27))))
  714. (number "5" (effects (font (size 1.27 1.27))))
  715. )
  716. (pin output inverted (at 7.62 0 180) (length 3.81)
  717. (name "~" (effects (font (size 1.27 1.27))))
  718. (number "6" (effects (font (size 1.27 1.27))))
  719. )
  720. )
  721. (symbol "74LS32_3_1"
  722. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  723. (stroke (width 0.254) (type default))
  724. (fill (type none))
  725. )
  726. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  727. (stroke (width 0.254) (type default))
  728. (fill (type background))
  729. )
  730. (polyline
  731. (pts
  732. (xy -3.81 -3.81)
  733. (xy -0.635 -3.81)
  734. )
  735. (stroke (width 0.254) (type default))
  736. (fill (type background))
  737. )
  738. (polyline
  739. (pts
  740. (xy -3.81 3.81)
  741. (xy -0.635 3.81)
  742. )
  743. (stroke (width 0.254) (type default))
  744. (fill (type background))
  745. )
  746. (polyline
  747. (pts
  748. (xy -0.635 3.81)
  749. (xy -3.81 3.81)
  750. (xy -3.81 3.81)
  751. (xy -3.556 3.4036)
  752. (xy -3.0226 2.2606)
  753. (xy -2.6924 1.0414)
  754. (xy -2.6162 -0.254)
  755. (xy -2.7686 -1.4986)
  756. (xy -3.175 -2.7178)
  757. (xy -3.81 -3.81)
  758. (xy -3.81 -3.81)
  759. (xy -0.635 -3.81)
  760. )
  761. (stroke (width -25.4) (type default))
  762. (fill (type background))
  763. )
  764. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  765. (stroke (width 0.254) (type default))
  766. (fill (type background))
  767. )
  768. (pin input line (at -7.62 -2.54 0) (length 4.318)
  769. (name "~" (effects (font (size 1.27 1.27))))
  770. (number "10" (effects (font (size 1.27 1.27))))
  771. )
  772. (pin output line (at 7.62 0 180) (length 3.81)
  773. (name "~" (effects (font (size 1.27 1.27))))
  774. (number "8" (effects (font (size 1.27 1.27))))
  775. )
  776. (pin input line (at -7.62 2.54 0) (length 4.318)
  777. (name "~" (effects (font (size 1.27 1.27))))
  778. (number "9" (effects (font (size 1.27 1.27))))
  779. )
  780. )
  781. (symbol "74LS32_3_2"
  782. (arc (start 0 -3.81) (mid 3.7934 0) (end 0 3.81)
  783. (stroke (width 0.254) (type default))
  784. (fill (type background))
  785. )
  786. (polyline
  787. (pts
  788. (xy 0 3.81)
  789. (xy -3.81 3.81)
  790. (xy -3.81 -3.81)
  791. (xy 0 -3.81)
  792. )
  793. (stroke (width 0.254) (type default))
  794. (fill (type background))
  795. )
  796. (pin input inverted (at -7.62 -2.54 0) (length 3.81)
  797. (name "~" (effects (font (size 1.27 1.27))))
  798. (number "10" (effects (font (size 1.27 1.27))))
  799. )
  800. (pin output inverted (at 7.62 0 180) (length 3.81)
  801. (name "~" (effects (font (size 1.27 1.27))))
  802. (number "8" (effects (font (size 1.27 1.27))))
  803. )
  804. (pin input inverted (at -7.62 2.54 0) (length 3.81)
  805. (name "~" (effects (font (size 1.27 1.27))))
  806. (number "9" (effects (font (size 1.27 1.27))))
  807. )
  808. )
  809. (symbol "74LS32_4_1"
  810. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  811. (stroke (width 0.254) (type default))
  812. (fill (type none))
  813. )
  814. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  815. (stroke (width 0.254) (type default))
  816. (fill (type background))
  817. )
  818. (polyline
  819. (pts
  820. (xy -3.81 -3.81)
  821. (xy -0.635 -3.81)
  822. )
  823. (stroke (width 0.254) (type default))
  824. (fill (type background))
  825. )
  826. (polyline
  827. (pts
  828. (xy -3.81 3.81)
  829. (xy -0.635 3.81)
  830. )
  831. (stroke (width 0.254) (type default))
  832. (fill (type background))
  833. )
  834. (polyline
  835. (pts
  836. (xy -0.635 3.81)
  837. (xy -3.81 3.81)
  838. (xy -3.81 3.81)
  839. (xy -3.556 3.4036)
  840. (xy -3.0226 2.2606)
  841. (xy -2.6924 1.0414)
  842. (xy -2.6162 -0.254)
  843. (xy -2.7686 -1.4986)
  844. (xy -3.175 -2.7178)
  845. (xy -3.81 -3.81)
  846. (xy -3.81 -3.81)
  847. (xy -0.635 -3.81)
  848. )
  849. (stroke (width -25.4) (type default))
  850. (fill (type background))
  851. )
  852. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  853. (stroke (width 0.254) (type default))
  854. (fill (type background))
  855. )
  856. (pin output line (at 7.62 0 180) (length 3.81)
  857. (name "~" (effects (font (size 1.27 1.27))))
  858. (number "11" (effects (font (size 1.27 1.27))))
  859. )
  860. (pin input line (at -7.62 2.54 0) (length 4.318)
  861. (name "~" (effects (font (size 1.27 1.27))))
  862. (number "12" (effects (font (size 1.27 1.27))))
  863. )
  864. (pin input line (at -7.62 -2.54 0) (length 4.318)
  865. (name "~" (effects (font (size 1.27 1.27))))
  866. (number "13" (effects (font (size 1.27 1.27))))
  867. )
  868. )
  869. (symbol "74LS32_4_2"
  870. (arc (start 0 -3.81) (mid 3.7934 0) (end 0 3.81)
  871. (stroke (width 0.254) (type default))
  872. (fill (type background))
  873. )
  874. (polyline
  875. (pts
  876. (xy 0 3.81)
  877. (xy -3.81 3.81)
  878. (xy -3.81 -3.81)
  879. (xy 0 -3.81)
  880. )
  881. (stroke (width 0.254) (type default))
  882. (fill (type background))
  883. )
  884. (pin output inverted (at 7.62 0 180) (length 3.81)
  885. (name "~" (effects (font (size 1.27 1.27))))
  886. (number "11" (effects (font (size 1.27 1.27))))
  887. )
  888. (pin input inverted (at -7.62 2.54 0) (length 3.81)
  889. (name "~" (effects (font (size 1.27 1.27))))
  890. (number "12" (effects (font (size 1.27 1.27))))
  891. )
  892. (pin input inverted (at -7.62 -2.54 0) (length 3.81)
  893. (name "~" (effects (font (size 1.27 1.27))))
  894. (number "13" (effects (font (size 1.27 1.27))))
  895. )
  896. )
  897. (symbol "74LS32_5_0"
  898. (pin power_in line (at 0 12.7 270) (length 5.08)
  899. (name "VCC" (effects (font (size 1.27 1.27))))
  900. (number "14" (effects (font (size 1.27 1.27))))
  901. )
  902. (pin power_in line (at 0 -12.7 90) (length 5.08)
  903. (name "GND" (effects (font (size 1.27 1.27))))
  904. (number "7" (effects (font (size 1.27 1.27))))
  905. )
  906. )
  907. (symbol "74LS32_5_1"
  908. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  909. (stroke (width 0.254) (type default))
  910. (fill (type background))
  911. )
  912. )
  913. )
  914. (symbol "74xx:74LS368" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  915. (property "Reference" "U" (at -7.62 13.97 0)
  916. (effects (font (size 1.27 1.27)))
  917. )
  918. (property "Value" "74LS368" (at -7.62 -13.97 0)
  919. (effects (font (size 1.27 1.27)))
  920. )
  921. (property "Footprint" "" (at 0 0 0)
  922. (effects (font (size 1.27 1.27)) hide)
  923. )
  924. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS368" (at 0 0 0)
  925. (effects (font (size 1.27 1.27)) hide)
  926. )
  927. (property "ki_locked" "" (at 0 0 0)
  928. (effects (font (size 1.27 1.27)))
  929. )
  930. (property "ki_keywords" "TTL Buffer BUS 3State" (at 0 0 0)
  931. (effects (font (size 1.27 1.27)) hide)
  932. )
  933. (property "ki_description" "Hex Bus Driver inverter, 3-state outputs" (at 0 0 0)
  934. (effects (font (size 1.27 1.27)) hide)
  935. )
  936. (property "ki_fp_filters" "DIP?16*" (at 0 0 0)
  937. (effects (font (size 1.27 1.27)) hide)
  938. )
  939. (symbol "74LS368_1_0"
  940. (pin input inverted (at -12.7 -7.62 0) (length 5.08)
  941. (name "OEa" (effects (font (size 1.27 1.27))))
  942. (number "1" (effects (font (size 1.27 1.27))))
  943. )
  944. (pin input line (at -12.7 2.54 0) (length 5.08)
  945. (name "I4" (effects (font (size 1.27 1.27))))
  946. (number "10" (effects (font (size 1.27 1.27))))
  947. )
  948. (pin tri_state inverted (at 12.7 0 180) (length 5.08)
  949. (name "O5b" (effects (font (size 1.27 1.27))))
  950. (number "11" (effects (font (size 1.27 1.27))))
  951. )
  952. (pin input line (at -12.7 0 0) (length 5.08)
  953. (name "I5" (effects (font (size 1.27 1.27))))
  954. (number "12" (effects (font (size 1.27 1.27))))
  955. )
  956. (pin tri_state inverted (at 12.7 -2.54 180) (length 5.08)
  957. (name "O6b" (effects (font (size 1.27 1.27))))
  958. (number "13" (effects (font (size 1.27 1.27))))
  959. )
  960. (pin input line (at -12.7 -2.54 0) (length 5.08)
  961. (name "I6" (effects (font (size 1.27 1.27))))
  962. (number "14" (effects (font (size 1.27 1.27))))
  963. )
  964. (pin input inverted (at -12.7 -10.16 0) (length 5.08)
  965. (name "OEb" (effects (font (size 1.27 1.27))))
  966. (number "15" (effects (font (size 1.27 1.27))))
  967. )
  968. (pin power_in line (at 0 17.78 270) (length 5.08)
  969. (name "VCC" (effects (font (size 1.27 1.27))))
  970. (number "16" (effects (font (size 1.27 1.27))))
  971. )
  972. (pin input line (at -12.7 10.16 0) (length 5.08)
  973. (name "I1" (effects (font (size 1.27 1.27))))
  974. (number "2" (effects (font (size 1.27 1.27))))
  975. )
  976. (pin tri_state inverted (at 12.7 10.16 180) (length 5.08)
  977. (name "O1a" (effects (font (size 1.27 1.27))))
  978. (number "3" (effects (font (size 1.27 1.27))))
  979. )
  980. (pin input line (at -12.7 7.62 0) (length 5.08)
  981. (name "I2" (effects (font (size 1.27 1.27))))
  982. (number "4" (effects (font (size 1.27 1.27))))
  983. )
  984. (pin tri_state inverted (at 12.7 7.62 180) (length 5.08)
  985. (name "O2a" (effects (font (size 1.27 1.27))))
  986. (number "5" (effects (font (size 1.27 1.27))))
  987. )
  988. (pin input line (at -12.7 5.08 0) (length 5.08)
  989. (name "I3" (effects (font (size 1.27 1.27))))
  990. (number "6" (effects (font (size 1.27 1.27))))
  991. )
  992. (pin tri_state inverted (at 12.7 5.08 180) (length 5.08)
  993. (name "O3a" (effects (font (size 1.27 1.27))))
  994. (number "7" (effects (font (size 1.27 1.27))))
  995. )
  996. (pin power_in line (at 0 -17.78 90) (length 5.08)
  997. (name "GND" (effects (font (size 1.27 1.27))))
  998. (number "8" (effects (font (size 1.27 1.27))))
  999. )
  1000. (pin tri_state inverted (at 12.7 2.54 180) (length 5.08)
  1001. (name "O4a" (effects (font (size 1.27 1.27))))
  1002. (number "9" (effects (font (size 1.27 1.27))))
  1003. )
  1004. )
  1005. (symbol "74LS368_1_1"
  1006. (rectangle (start -7.62 12.7) (end 7.62 -12.7)
  1007. (stroke (width 0.254) (type default))
  1008. (fill (type background))
  1009. )
  1010. )
  1011. )
  1012. (symbol "74xx:74LS74" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1013. (property "Reference" "U" (at -7.62 8.89 0)
  1014. (effects (font (size 1.27 1.27)))
  1015. )
  1016. (property "Value" "74LS74" (at -7.62 -8.89 0)
  1017. (effects (font (size 1.27 1.27)))
  1018. )
  1019. (property "Footprint" "" (at 0 0 0)
  1020. (effects (font (size 1.27 1.27)) hide)
  1021. )
  1022. (property "Datasheet" "74xx/74hc_hct74.pdf" (at 0 0 0)
  1023. (effects (font (size 1.27 1.27)) hide)
  1024. )
  1025. (property "ki_locked" "" (at 0 0 0)
  1026. (effects (font (size 1.27 1.27)))
  1027. )
  1028. (property "ki_keywords" "TTL DFF" (at 0 0 0)
  1029. (effects (font (size 1.27 1.27)) hide)
  1030. )
  1031. (property "ki_description" "Dual D Flip-flop, Set & Reset" (at 0 0 0)
  1032. (effects (font (size 1.27 1.27)) hide)
  1033. )
  1034. (property "ki_fp_filters" "DIP*W7.62mm*" (at 0 0 0)
  1035. (effects (font (size 1.27 1.27)) hide)
  1036. )
  1037. (symbol "74LS74_1_0"
  1038. (pin input line (at 0 -7.62 90) (length 2.54)
  1039. (name "~{R}" (effects (font (size 1.27 1.27))))
  1040. (number "1" (effects (font (size 1.27 1.27))))
  1041. )
  1042. (pin input line (at -7.62 2.54 0) (length 2.54)
  1043. (name "D" (effects (font (size 1.27 1.27))))
  1044. (number "2" (effects (font (size 1.27 1.27))))
  1045. )
  1046. (pin input clock (at -7.62 0 0) (length 2.54)
  1047. (name "C" (effects (font (size 1.27 1.27))))
  1048. (number "3" (effects (font (size 1.27 1.27))))
  1049. )
  1050. (pin input line (at 0 7.62 270) (length 2.54)
  1051. (name "~{S}" (effects (font (size 1.27 1.27))))
  1052. (number "4" (effects (font (size 1.27 1.27))))
  1053. )
  1054. (pin output line (at 7.62 2.54 180) (length 2.54)
  1055. (name "Q" (effects (font (size 1.27 1.27))))
  1056. (number "5" (effects (font (size 1.27 1.27))))
  1057. )
  1058. (pin output line (at 7.62 -2.54 180) (length 2.54)
  1059. (name "~{Q}" (effects (font (size 1.27 1.27))))
  1060. (number "6" (effects (font (size 1.27 1.27))))
  1061. )
  1062. )
  1063. (symbol "74LS74_1_1"
  1064. (rectangle (start -5.08 5.08) (end 5.08 -5.08)
  1065. (stroke (width 0.254) (type default))
  1066. (fill (type background))
  1067. )
  1068. )
  1069. (symbol "74LS74_2_0"
  1070. (pin input line (at 0 7.62 270) (length 2.54)
  1071. (name "~{S}" (effects (font (size 1.27 1.27))))
  1072. (number "10" (effects (font (size 1.27 1.27))))
  1073. )
  1074. (pin input clock (at -7.62 0 0) (length 2.54)
  1075. (name "C" (effects (font (size 1.27 1.27))))
  1076. (number "11" (effects (font (size 1.27 1.27))))
  1077. )
  1078. (pin input line (at -7.62 2.54 0) (length 2.54)
  1079. (name "D" (effects (font (size 1.27 1.27))))
  1080. (number "12" (effects (font (size 1.27 1.27))))
  1081. )
  1082. (pin input line (at 0 -7.62 90) (length 2.54)
  1083. (name "~{R}" (effects (font (size 1.27 1.27))))
  1084. (number "13" (effects (font (size 1.27 1.27))))
  1085. )
  1086. (pin output line (at 7.62 -2.54 180) (length 2.54)
  1087. (name "~{Q}" (effects (font (size 1.27 1.27))))
  1088. (number "8" (effects (font (size 1.27 1.27))))
  1089. )
  1090. (pin output line (at 7.62 2.54 180) (length 2.54)
  1091. (name "Q" (effects (font (size 1.27 1.27))))
  1092. (number "9" (effects (font (size 1.27 1.27))))
  1093. )
  1094. )
  1095. (symbol "74LS74_2_1"
  1096. (rectangle (start -5.08 5.08) (end 5.08 -5.08)
  1097. (stroke (width 0.254) (type default))
  1098. (fill (type background))
  1099. )
  1100. )
  1101. (symbol "74LS74_3_0"
  1102. (pin power_in line (at 0 10.16 270) (length 2.54)
  1103. (name "VCC" (effects (font (size 1.27 1.27))))
  1104. (number "14" (effects (font (size 1.27 1.27))))
  1105. )
  1106. (pin power_in line (at 0 -10.16 90) (length 2.54)
  1107. (name "GND" (effects (font (size 1.27 1.27))))
  1108. (number "7" (effects (font (size 1.27 1.27))))
  1109. )
  1110. )
  1111. (symbol "74LS74_3_1"
  1112. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  1113. (stroke (width 0.254) (type default))
  1114. (fill (type background))
  1115. )
  1116. )
  1117. )
  1118. (symbol "74xx_IEEE:74LS266" (in_bom yes) (on_board yes)
  1119. (property "Reference" "U" (at 5.08 7.62 0)
  1120. (effects (font (size 1.27 1.27)))
  1121. )
  1122. (property "Value" "74LS266" (at 6.35 -7.62 0)
  1123. (effects (font (size 1.27 1.27)))
  1124. )
  1125. (property "Footprint" "" (at 0 0 0)
  1126. (effects (font (size 1.27 1.27)) hide)
  1127. )
  1128. (property "Datasheet" "" (at 0 0 0)
  1129. (effects (font (size 1.27 1.27)) hide)
  1130. )
  1131. (symbol "74LS266_0_0"
  1132. (rectangle (start -5.08 5.08) (end -5.08 5.08)
  1133. (stroke (width 0.254) (type default))
  1134. (fill (type background))
  1135. )
  1136. (polyline
  1137. (pts
  1138. (xy 3.048 2.032)
  1139. (xy 4.064 3.048)
  1140. (xy 2.54 4.572)
  1141. (xy 1.016 3.048)
  1142. (xy 2.032 2.032)
  1143. (xy 1.016 2.032)
  1144. (xy 4.064 2.032)
  1145. (xy 4.064 2.032)
  1146. )
  1147. (stroke (width 0.254) (type default))
  1148. (fill (type background))
  1149. )
  1150. (text "=1" (at -1.27 0 0)
  1151. (effects (font (size 2.54 2.54)))
  1152. )
  1153. )
  1154. (symbol "74LS266_0_1"
  1155. (rectangle (start -5.08 6.35) (end 5.08 -6.35)
  1156. (stroke (width 0.254) (type default))
  1157. (fill (type background))
  1158. )
  1159. (pin power_in line (at 0 10.16 270) (length 3.81)
  1160. (name "VCC" (effects (font (size 1.27 1.27))))
  1161. (number "14" (effects (font (size 1.27 1.27))))
  1162. )
  1163. (pin power_in line (at 0 -10.16 90) (length 3.81)
  1164. (name "GND" (effects (font (size 1.27 1.27))))
  1165. (number "7" (effects (font (size 1.27 1.27))))
  1166. )
  1167. )
  1168. (symbol "74LS266_1_1"
  1169. (pin input line (at -12.7 2.54 0) (length 7.62)
  1170. (name "~" (effects (font (size 1.27 1.27))))
  1171. (number "1" (effects (font (size 1.27 1.27))))
  1172. )
  1173. (pin input line (at -12.7 -2.54 0) (length 7.62)
  1174. (name "~" (effects (font (size 1.27 1.27))))
  1175. (number "2" (effects (font (size 1.27 1.27))))
  1176. )
  1177. (pin output inverted (at 12.7 0 180) (length 7.62)
  1178. (name "~" (effects (font (size 1.27 1.27))))
  1179. (number "3" (effects (font (size 1.27 1.27))))
  1180. )
  1181. )
  1182. (symbol "74LS266_2_1"
  1183. (pin output inverted (at 12.7 0 180) (length 7.62)
  1184. (name "~" (effects (font (size 1.27 1.27))))
  1185. (number "4" (effects (font (size 1.27 1.27))))
  1186. )
  1187. (pin input line (at -12.7 2.54 0) (length 7.62)
  1188. (name "~" (effects (font (size 1.27 1.27))))
  1189. (number "5" (effects (font (size 1.27 1.27))))
  1190. )
  1191. (pin input line (at -12.7 -2.54 0) (length 7.62)
  1192. (name "~" (effects (font (size 1.27 1.27))))
  1193. (number "6" (effects (font (size 1.27 1.27))))
  1194. )
  1195. )
  1196. (symbol "74LS266_3_1"
  1197. (pin output inverted (at 12.7 0 180) (length 7.62)
  1198. (name "~" (effects (font (size 1.27 1.27))))
  1199. (number "10" (effects (font (size 1.27 1.27))))
  1200. )
  1201. (pin input line (at -12.7 2.54 0) (length 7.62)
  1202. (name "~" (effects (font (size 1.27 1.27))))
  1203. (number "8" (effects (font (size 1.27 1.27))))
  1204. )
  1205. (pin input line (at -12.7 -2.54 0) (length 7.62)
  1206. (name "~" (effects (font (size 1.27 1.27))))
  1207. (number "9" (effects (font (size 1.27 1.27))))
  1208. )
  1209. )
  1210. (symbol "74LS266_4_1"
  1211. (pin output inverted (at 12.7 0 180) (length 7.62)
  1212. (name "~" (effects (font (size 1.27 1.27))))
  1213. (number "11" (effects (font (size 1.27 1.27))))
  1214. )
  1215. (pin input line (at -12.7 2.54 0) (length 7.62)
  1216. (name "~" (effects (font (size 1.27 1.27))))
  1217. (number "12" (effects (font (size 1.27 1.27))))
  1218. )
  1219. (pin input line (at -12.7 -2.54 0) (length 7.62)
  1220. (name "~" (effects (font (size 1.27 1.27))))
  1221. (number "13" (effects (font (size 1.27 1.27))))
  1222. )
  1223. )
  1224. )
  1225. (symbol "Connector_Generic:Conn_02x13_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1226. (property "Reference" "J" (at 1.27 17.78 0)
  1227. (effects (font (size 1.27 1.27)))
  1228. )
  1229. (property "Value" "Conn_02x13_Odd_Even" (at 1.27 -17.78 0)
  1230. (effects (font (size 1.27 1.27)))
  1231. )
  1232. (property "Footprint" "" (at 0 0 0)
  1233. (effects (font (size 1.27 1.27)) hide)
  1234. )
  1235. (property "Datasheet" "~" (at 0 0 0)
  1236. (effects (font (size 1.27 1.27)) hide)
  1237. )
  1238. (property "ki_keywords" "connector" (at 0 0 0)
  1239. (effects (font (size 1.27 1.27)) hide)
  1240. )
  1241. (property "ki_description" "Generic connector, double row, 02x13, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
  1242. (effects (font (size 1.27 1.27)) hide)
  1243. )
  1244. (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
  1245. (effects (font (size 1.27 1.27)) hide)
  1246. )
  1247. (symbol "Conn_02x13_Odd_Even_1_1"
  1248. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  1249. (stroke (width 0.1524) (type default))
  1250. (fill (type none))
  1251. )
  1252. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  1253. (stroke (width 0.1524) (type default))
  1254. (fill (type none))
  1255. )
  1256. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  1257. (stroke (width 0.1524) (type default))
  1258. (fill (type none))
  1259. )
  1260. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  1261. (stroke (width 0.1524) (type default))
  1262. (fill (type none))
  1263. )
  1264. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  1265. (stroke (width 0.1524) (type default))
  1266. (fill (type none))
  1267. )
  1268. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  1269. (stroke (width 0.1524) (type default))
  1270. (fill (type none))
  1271. )
  1272. (rectangle (start -1.27 0.127) (end 0 -0.127)
  1273. (stroke (width 0.1524) (type default))
  1274. (fill (type none))
  1275. )
  1276. (rectangle (start -1.27 2.667) (end 0 2.413)
  1277. (stroke (width 0.1524) (type default))
  1278. (fill (type none))
  1279. )
  1280. (rectangle (start -1.27 5.207) (end 0 4.953)
  1281. (stroke (width 0.1524) (type default))
  1282. (fill (type none))
  1283. )
  1284. (rectangle (start -1.27 7.747) (end 0 7.493)
  1285. (stroke (width 0.1524) (type default))
  1286. (fill (type none))
  1287. )
  1288. (rectangle (start -1.27 10.287) (end 0 10.033)
  1289. (stroke (width 0.1524) (type default))
  1290. (fill (type none))
  1291. )
  1292. (rectangle (start -1.27 12.827) (end 0 12.573)
  1293. (stroke (width 0.1524) (type default))
  1294. (fill (type none))
  1295. )
  1296. (rectangle (start -1.27 15.367) (end 0 15.113)
  1297. (stroke (width 0.1524) (type default))
  1298. (fill (type none))
  1299. )
  1300. (rectangle (start -1.27 16.51) (end 3.81 -16.51)
  1301. (stroke (width 0.254) (type default))
  1302. (fill (type background))
  1303. )
  1304. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  1305. (stroke (width 0.1524) (type default))
  1306. (fill (type none))
  1307. )
  1308. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  1309. (stroke (width 0.1524) (type default))
  1310. (fill (type none))
  1311. )
  1312. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  1313. (stroke (width 0.1524) (type default))
  1314. (fill (type none))
  1315. )
  1316. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  1317. (stroke (width 0.1524) (type default))
  1318. (fill (type none))
  1319. )
  1320. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  1321. (stroke (width 0.1524) (type default))
  1322. (fill (type none))
  1323. )
  1324. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  1325. (stroke (width 0.1524) (type default))
  1326. (fill (type none))
  1327. )
  1328. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  1329. (stroke (width 0.1524) (type default))
  1330. (fill (type none))
  1331. )
  1332. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  1333. (stroke (width 0.1524) (type default))
  1334. (fill (type none))
  1335. )
  1336. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  1337. (stroke (width 0.1524) (type default))
  1338. (fill (type none))
  1339. )
  1340. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  1341. (stroke (width 0.1524) (type default))
  1342. (fill (type none))
  1343. )
  1344. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  1345. (stroke (width 0.1524) (type default))
  1346. (fill (type none))
  1347. )
  1348. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  1349. (stroke (width 0.1524) (type default))
  1350. (fill (type none))
  1351. )
  1352. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  1353. (stroke (width 0.1524) (type default))
  1354. (fill (type none))
  1355. )
  1356. (pin passive line (at -5.08 15.24 0) (length 3.81)
  1357. (name "Pin_1" (effects (font (size 1.27 1.27))))
  1358. (number "1" (effects (font (size 1.27 1.27))))
  1359. )
  1360. (pin passive line (at 7.62 5.08 180) (length 3.81)
  1361. (name "Pin_10" (effects (font (size 1.27 1.27))))
  1362. (number "10" (effects (font (size 1.27 1.27))))
  1363. )
  1364. (pin passive line (at -5.08 2.54 0) (length 3.81)
  1365. (name "Pin_11" (effects (font (size 1.27 1.27))))
  1366. (number "11" (effects (font (size 1.27 1.27))))
  1367. )
  1368. (pin passive line (at 7.62 2.54 180) (length 3.81)
  1369. (name "Pin_12" (effects (font (size 1.27 1.27))))
  1370. (number "12" (effects (font (size 1.27 1.27))))
  1371. )
  1372. (pin passive line (at -5.08 0 0) (length 3.81)
  1373. (name "Pin_13" (effects (font (size 1.27 1.27))))
  1374. (number "13" (effects (font (size 1.27 1.27))))
  1375. )
  1376. (pin passive line (at 7.62 0 180) (length 3.81)
  1377. (name "Pin_14" (effects (font (size 1.27 1.27))))
  1378. (number "14" (effects (font (size 1.27 1.27))))
  1379. )
  1380. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  1381. (name "Pin_15" (effects (font (size 1.27 1.27))))
  1382. (number "15" (effects (font (size 1.27 1.27))))
  1383. )
  1384. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  1385. (name "Pin_16" (effects (font (size 1.27 1.27))))
  1386. (number "16" (effects (font (size 1.27 1.27))))
  1387. )
  1388. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  1389. (name "Pin_17" (effects (font (size 1.27 1.27))))
  1390. (number "17" (effects (font (size 1.27 1.27))))
  1391. )
  1392. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  1393. (name "Pin_18" (effects (font (size 1.27 1.27))))
  1394. (number "18" (effects (font (size 1.27 1.27))))
  1395. )
  1396. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  1397. (name "Pin_19" (effects (font (size 1.27 1.27))))
  1398. (number "19" (effects (font (size 1.27 1.27))))
  1399. )
  1400. (pin passive line (at 7.62 15.24 180) (length 3.81)
  1401. (name "Pin_2" (effects (font (size 1.27 1.27))))
  1402. (number "2" (effects (font (size 1.27 1.27))))
  1403. )
  1404. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  1405. (name "Pin_20" (effects (font (size 1.27 1.27))))
  1406. (number "20" (effects (font (size 1.27 1.27))))
  1407. )
  1408. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  1409. (name "Pin_21" (effects (font (size 1.27 1.27))))
  1410. (number "21" (effects (font (size 1.27 1.27))))
  1411. )
  1412. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  1413. (name "Pin_22" (effects (font (size 1.27 1.27))))
  1414. (number "22" (effects (font (size 1.27 1.27))))
  1415. )
  1416. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  1417. (name "Pin_23" (effects (font (size 1.27 1.27))))
  1418. (number "23" (effects (font (size 1.27 1.27))))
  1419. )
  1420. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  1421. (name "Pin_24" (effects (font (size 1.27 1.27))))
  1422. (number "24" (effects (font (size 1.27 1.27))))
  1423. )
  1424. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  1425. (name "Pin_25" (effects (font (size 1.27 1.27))))
  1426. (number "25" (effects (font (size 1.27 1.27))))
  1427. )
  1428. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  1429. (name "Pin_26" (effects (font (size 1.27 1.27))))
  1430. (number "26" (effects (font (size 1.27 1.27))))
  1431. )
  1432. (pin passive line (at -5.08 12.7 0) (length 3.81)
  1433. (name "Pin_3" (effects (font (size 1.27 1.27))))
  1434. (number "3" (effects (font (size 1.27 1.27))))
  1435. )
  1436. (pin passive line (at 7.62 12.7 180) (length 3.81)
  1437. (name "Pin_4" (effects (font (size 1.27 1.27))))
  1438. (number "4" (effects (font (size 1.27 1.27))))
  1439. )
  1440. (pin passive line (at -5.08 10.16 0) (length 3.81)
  1441. (name "Pin_5" (effects (font (size 1.27 1.27))))
  1442. (number "5" (effects (font (size 1.27 1.27))))
  1443. )
  1444. (pin passive line (at 7.62 10.16 180) (length 3.81)
  1445. (name "Pin_6" (effects (font (size 1.27 1.27))))
  1446. (number "6" (effects (font (size 1.27 1.27))))
  1447. )
  1448. (pin passive line (at -5.08 7.62 0) (length 3.81)
  1449. (name "Pin_7" (effects (font (size 1.27 1.27))))
  1450. (number "7" (effects (font (size 1.27 1.27))))
  1451. )
  1452. (pin passive line (at 7.62 7.62 180) (length 3.81)
  1453. (name "Pin_8" (effects (font (size 1.27 1.27))))
  1454. (number "8" (effects (font (size 1.27 1.27))))
  1455. )
  1456. (pin passive line (at -5.08 5.08 0) (length 3.81)
  1457. (name "Pin_9" (effects (font (size 1.27 1.27))))
  1458. (number "9" (effects (font (size 1.27 1.27))))
  1459. )
  1460. )
  1461. )
  1462. (symbol "max80:ABC-Bus" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1463. (property "Reference" "X" (at 3.81 41.91 0)
  1464. (effects (font (size 1.4986 1.4986)) (justify left bottom))
  1465. )
  1466. (property "Value" "ABC-Bus" (at -3.81 -46.99 0)
  1467. (effects (font (size 1.4986 1.4986)) (justify left bottom))
  1468. )
  1469. (property "Footprint" "sm6uax:MAB64B-FAB64Q" (at -20.32 -1.27 0)
  1470. (effects (font (size 1.27 1.27)) hide)
  1471. )
  1472. (property "Datasheet" "" (at -10.16 0 0)
  1473. (effects (font (size 1.27 1.27)) hide)
  1474. )
  1475. (symbol "ABC-Bus_1_0"
  1476. (pin bidirectional line (at -12.7 13.97 0) (length 5.08)
  1477. (name "D3" (effects (font (size 0.9906 0.9906))))
  1478. (number "A10" (effects (font (size 1.27 1.27))))
  1479. )
  1480. (pin bidirectional line (at -12.7 11.43 0) (length 5.08)
  1481. (name "D2" (effects (font (size 0.9906 0.9906))))
  1482. (number "A11" (effects (font (size 1.27 1.27))))
  1483. )
  1484. (pin bidirectional line (at -12.7 8.89 0) (length 5.08)
  1485. (name "D1" (effects (font (size 0.9906 0.9906))))
  1486. (number "A12" (effects (font (size 1.27 1.27))))
  1487. )
  1488. (pin bidirectional line (at -12.7 6.35 0) (length 5.08)
  1489. (name "D0" (effects (font (size 0.9906 0.9906))))
  1490. (number "A13" (effects (font (size 1.27 1.27))))
  1491. )
  1492. (pin passive line (at -12.7 3.81 0) (length 5.08)
  1493. (name "NC" (effects (font (size 0.9906 0.9906))))
  1494. (number "A14" (effects (font (size 1.27 1.27))))
  1495. )
  1496. (pin bidirectional line (at -12.7 1.27 0) (length 5.08)
  1497. (name "~{RST}" (effects (font (size 0.9906 0.9906))))
  1498. (number "A15" (effects (font (size 1.27 1.27))))
  1499. )
  1500. (pin bidirectional line (at -12.7 -1.27 0) (length 5.08)
  1501. (name "~{STATUS}" (effects (font (size 0.9906 0.9906))))
  1502. (number "A16" (effects (font (size 1.27 1.27))))
  1503. )
  1504. (pin bidirectional line (at -12.7 -3.81 0) (length 5.08)
  1505. (name "~{INP}" (effects (font (size 0.9906 0.9906))))
  1506. (number "A17" (effects (font (size 1.27 1.27))))
  1507. )
  1508. (pin bidirectional line (at -12.7 -6.35 0) (length 5.08)
  1509. (name "~{C4}" (effects (font (size 0.9906 0.9906))))
  1510. (number "A18" (effects (font (size 1.27 1.27))))
  1511. )
  1512. (pin bidirectional line (at -12.7 -8.89 0) (length 5.08)
  1513. (name "~{C3}" (effects (font (size 0.9906 0.9906))))
  1514. (number "A19" (effects (font (size 1.27 1.27))))
  1515. )
  1516. (pin power_out line (at -12.7 34.29 0) (length 5.08)
  1517. (name "0V" (effects (font (size 0.9906 0.9906))))
  1518. (number "A2" (effects (font (size 1.27 1.27))))
  1519. )
  1520. (pin bidirectional line (at -12.7 -11.43 0) (length 5.08)
  1521. (name "~{C2}" (effects (font (size 0.9906 0.9906))))
  1522. (number "A20" (effects (font (size 1.27 1.27))))
  1523. )
  1524. (pin bidirectional line (at -12.7 -13.97 0) (length 5.08)
  1525. (name "~{C1}" (effects (font (size 0.9906 0.9906))))
  1526. (number "A21" (effects (font (size 1.27 1.27))))
  1527. )
  1528. (pin bidirectional line (at -12.7 -16.51 0) (length 5.08)
  1529. (name "~{OUT}" (effects (font (size 0.9906 0.9906))))
  1530. (number "A22" (effects (font (size 1.27 1.27))))
  1531. )
  1532. (pin bidirectional line (at -12.7 -19.05 0) (length 5.08)
  1533. (name "~{CS}" (effects (font (size 0.9906 0.9906))))
  1534. (number "A23" (effects (font (size 1.27 1.27))))
  1535. )
  1536. (pin power_out line (at -12.7 -21.59 0) (length 5.08)
  1537. (name "GND" (effects (font (size 0.9906 0.9906))))
  1538. (number "A24" (effects (font (size 1.27 1.27))))
  1539. )
  1540. (pin power_out line (at -12.7 -24.13 0) (length 5.08)
  1541. (name "GND" (effects (font (size 0.9906 0.9906))))
  1542. (number "A25" (effects (font (size 1.27 1.27))))
  1543. )
  1544. (pin power_out line (at -12.7 -26.67 0) (length 5.08)
  1545. (name "GND" (effects (font (size 0.9906 0.9906))))
  1546. (number "A26" (effects (font (size 1.27 1.27))))
  1547. )
  1548. (pin power_out line (at -12.7 -29.21 0) (length 5.08)
  1549. (name "GND" (effects (font (size 0.9906 0.9906))))
  1550. (number "A27" (effects (font (size 1.27 1.27))))
  1551. )
  1552. (pin power_out line (at -12.7 -31.75 0) (length 5.08)
  1553. (name "GND" (effects (font (size 0.9906 0.9906))))
  1554. (number "A28" (effects (font (size 1.27 1.27))))
  1555. )
  1556. (pin power_out line (at -12.7 -34.29 0) (length 5.08)
  1557. (name "GND" (effects (font (size 0.9906 0.9906))))
  1558. (number "A29" (effects (font (size 1.27 1.27))))
  1559. )
  1560. (pin bidirectional line (at -12.7 31.75 0) (length 5.08)
  1561. (name "~{RESIN}" (effects (font (size 0.9906 0.9906))))
  1562. (number "A3" (effects (font (size 1.27 1.27))))
  1563. )
  1564. (pin bidirectional line (at -12.7 -36.83 0) (length 5.08)
  1565. (name "READY" (effects (font (size 0.9906 0.9906))))
  1566. (number "A30" (effects (font (size 1.27 1.27))))
  1567. )
  1568. (pin power_out line (at -12.7 -39.37 0) (length 5.08)
  1569. (name "+5V" (effects (font (size 0.9906 0.9906))))
  1570. (number "A31" (effects (font (size 1.27 1.27))))
  1571. )
  1572. (pin power_out line (at -12.7 -41.91 0) (length 5.08)
  1573. (name "+12V" (effects (font (size 0.9906 0.9906))))
  1574. (number "A32" (effects (font (size 1.27 1.27))))
  1575. )
  1576. (pin power_out line (at -12.7 29.21 0) (length 5.08)
  1577. (name "GND" (effects (font (size 0.9906 0.9906))))
  1578. (number "A4" (effects (font (size 1.27 1.27))))
  1579. )
  1580. (pin bidirectional line (at -12.7 26.67 0) (length 5.08)
  1581. (name "~{XMEMW}" (effects (font (size 0.9906 0.9906))))
  1582. (number "A5" (effects (font (size 1.27 1.27))))
  1583. )
  1584. (pin bidirectional line (at -12.7 24.13 0) (length 5.08)
  1585. (name "D7" (effects (font (size 0.9906 0.9906))))
  1586. (number "A6" (effects (font (size 1.27 1.27))))
  1587. )
  1588. (pin bidirectional line (at -12.7 21.59 0) (length 5.08)
  1589. (name "D6" (effects (font (size 0.9906 0.9906))))
  1590. (number "A7" (effects (font (size 1.27 1.27))))
  1591. )
  1592. (pin bidirectional line (at -12.7 19.05 0) (length 5.08)
  1593. (name "D5" (effects (font (size 0.9906 0.9906))))
  1594. (number "A8" (effects (font (size 1.27 1.27))))
  1595. )
  1596. (pin bidirectional line (at -12.7 16.51 0) (length 5.08)
  1597. (name "D4" (effects (font (size 0.9906 0.9906))))
  1598. (number "A9" (effects (font (size 1.27 1.27))))
  1599. )
  1600. )
  1601. (symbol "ABC-Bus_1_1"
  1602. (rectangle (start -7.62 40.64) (end 5.08 -44.45)
  1603. (stroke (width 0) (type default))
  1604. (fill (type none))
  1605. )
  1606. (pin power_out line (at -12.7 36.83 0) (length 5.08)
  1607. (name "-12V" (effects (font (size 0.9906 0.9906))))
  1608. (number "A1" (effects (font (size 1.27 1.27))))
  1609. )
  1610. (pin power_out line (at 10.16 36.83 180) (length 5.08)
  1611. (name "-12V" (effects (font (size 0.9906 0.9906))))
  1612. (number "B1" (effects (font (size 1.27 1.27))))
  1613. )
  1614. (pin power_out line (at 10.16 13.97 180) (length 5.08)
  1615. (name "GND" (effects (font (size 0.9906 0.9906))))
  1616. (number "B10" (effects (font (size 1.27 1.27))))
  1617. )
  1618. (pin power_out line (at 10.16 11.43 180) (length 5.08)
  1619. (name "GND" (effects (font (size 0.9906 0.9906))))
  1620. (number "B11" (effects (font (size 1.27 1.27))))
  1621. )
  1622. (pin power_out line (at 10.16 8.89 180) (length 5.08)
  1623. (name "GND" (effects (font (size 0.9906 0.9906))))
  1624. (number "B12" (effects (font (size 1.27 1.27))))
  1625. )
  1626. (pin bidirectional line (at 10.16 6.35 180) (length 5.08)
  1627. (name "~{INT}" (effects (font (size 0.9906 0.9906))))
  1628. (number "B13" (effects (font (size 1.27 1.27))))
  1629. )
  1630. (pin bidirectional line (at 10.16 3.81 180) (length 5.08)
  1631. (name "A15" (effects (font (size 0.9906 0.9906))))
  1632. (number "B14" (effects (font (size 1.27 1.27))))
  1633. )
  1634. (pin bidirectional line (at 10.16 1.27 180) (length 5.08)
  1635. (name "A14" (effects (font (size 0.9906 0.9906))))
  1636. (number "B15" (effects (font (size 1.27 1.27))))
  1637. )
  1638. (pin bidirectional line (at 10.16 -1.27 180) (length 5.08)
  1639. (name "A13" (effects (font (size 0.9906 0.9906))))
  1640. (number "B16" (effects (font (size 1.27 1.27))))
  1641. )
  1642. (pin bidirectional line (at 10.16 -3.81 180) (length 5.08)
  1643. (name "A12" (effects (font (size 0.9906 0.9906))))
  1644. (number "B17" (effects (font (size 1.27 1.27))))
  1645. )
  1646. (pin bidirectional line (at 10.16 -6.35 180) (length 5.08)
  1647. (name "A11" (effects (font (size 0.9906 0.9906))))
  1648. (number "B18" (effects (font (size 1.27 1.27))))
  1649. )
  1650. (pin bidirectional line (at 10.16 -8.89 180) (length 5.08)
  1651. (name "A10" (effects (font (size 0.9906 0.9906))))
  1652. (number "B19" (effects (font (size 1.27 1.27))))
  1653. )
  1654. (pin power_out line (at 10.16 34.29 180) (length 5.08)
  1655. (name "0V" (effects (font (size 0.9906 0.9906))))
  1656. (number "B2" (effects (font (size 1.27 1.27))))
  1657. )
  1658. (pin bidirectional line (at 10.16 -11.43 180) (length 5.08)
  1659. (name "A9" (effects (font (size 0.9906 0.9906))))
  1660. (number "B20" (effects (font (size 1.27 1.27))))
  1661. )
  1662. (pin bidirectional line (at 10.16 -13.97 180) (length 5.08)
  1663. (name "A8" (effects (font (size 0.9906 0.9906))))
  1664. (number "B21" (effects (font (size 1.27 1.27))))
  1665. )
  1666. (pin bidirectional line (at 10.16 -16.51 180) (length 5.08)
  1667. (name "A7" (effects (font (size 0.9906 0.9906))))
  1668. (number "B22" (effects (font (size 1.27 1.27))))
  1669. )
  1670. (pin bidirectional line (at 10.16 -19.05 180) (length 5.08)
  1671. (name "A6" (effects (font (size 0.9906 0.9906))))
  1672. (number "B23" (effects (font (size 1.27 1.27))))
  1673. )
  1674. (pin bidirectional line (at 10.16 -21.59 180) (length 5.08)
  1675. (name "A5" (effects (font (size 0.9906 0.9906))))
  1676. (number "B24" (effects (font (size 1.27 1.27))))
  1677. )
  1678. (pin bidirectional line (at 10.16 -24.13 180) (length 5.08)
  1679. (name "A4" (effects (font (size 0.9906 0.9906))))
  1680. (number "B25" (effects (font (size 1.27 1.27))))
  1681. )
  1682. (pin bidirectional line (at 10.16 -26.67 180) (length 5.08)
  1683. (name "A3" (effects (font (size 0.9906 0.9906))))
  1684. (number "B26" (effects (font (size 1.27 1.27))))
  1685. )
  1686. (pin bidirectional line (at 10.16 -29.21 180) (length 5.08)
  1687. (name "A2" (effects (font (size 0.9906 0.9906))))
  1688. (number "B27" (effects (font (size 1.27 1.27))))
  1689. )
  1690. (pin bidirectional line (at 10.16 -31.75 180) (length 5.08)
  1691. (name "A1" (effects (font (size 0.9906 0.9906))))
  1692. (number "B28" (effects (font (size 1.27 1.27))))
  1693. )
  1694. (pin bidirectional line (at 10.16 -34.29 180) (length 5.08)
  1695. (name "A0" (effects (font (size 0.9906 0.9906))))
  1696. (number "B29" (effects (font (size 1.27 1.27))))
  1697. )
  1698. (pin power_out line (at 10.16 31.75 180) (length 5.08)
  1699. (name "GND" (effects (font (size 0.9906 0.9906))))
  1700. (number "B3" (effects (font (size 1.27 1.27))))
  1701. )
  1702. (pin passive line (at 10.16 -36.83 180) (length 5.08)
  1703. (name "NC" (effects (font (size 0.9906 0.9906))))
  1704. (number "B30" (effects (font (size 1.27 1.27))))
  1705. )
  1706. (pin power_out line (at 10.16 -39.37 180) (length 5.08)
  1707. (name "+5V" (effects (font (size 0.9906 0.9906))))
  1708. (number "B31" (effects (font (size 1.27 1.27))))
  1709. )
  1710. (pin power_out line (at 10.16 -41.91 180) (length 5.08)
  1711. (name "+12V" (effects (font (size 0.9906 0.9906))))
  1712. (number "B32" (effects (font (size 1.27 1.27))))
  1713. )
  1714. (pin bidirectional line (at 10.16 29.21 180) (length 5.08)
  1715. (name "~{XMEMFL}" (effects (font (size 0.9906 0.9906))))
  1716. (number "B4" (effects (font (size 1.27 1.27))))
  1717. )
  1718. (pin passive line (at 10.16 26.67 180) (length 5.08)
  1719. (name "5" (effects (font (size 0.9906 0.9906))))
  1720. (number "B5" (effects (font (size 1.27 1.27))))
  1721. )
  1722. (pin power_out line (at 10.16 24.13 180) (length 5.08)
  1723. (name "GND" (effects (font (size 0.9906 0.9906))))
  1724. (number "B6" (effects (font (size 1.27 1.27))))
  1725. )
  1726. (pin power_out line (at 10.16 21.59 180) (length 5.08)
  1727. (name "GND" (effects (font (size 0.9906 0.9906))))
  1728. (number "B7" (effects (font (size 1.27 1.27))))
  1729. )
  1730. (pin power_out line (at 10.16 19.05 180) (length 5.08)
  1731. (name "GND" (effects (font (size 0.9906 0.9906))))
  1732. (number "B8" (effects (font (size 1.27 1.27))))
  1733. )
  1734. (pin power_out line (at 10.16 16.51 180) (length 5.08)
  1735. (name "GND" (effects (font (size 0.9906 0.9906))))
  1736. (number "B9" (effects (font (size 1.27 1.27))))
  1737. )
  1738. )
  1739. )
  1740. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1741. (property "Reference" "#PWR" (at 0 -3.81 0)
  1742. (effects (font (size 1.27 1.27)) hide)
  1743. )
  1744. (property "Value" "+5V" (at 0 3.556 0)
  1745. (effects (font (size 1.27 1.27)))
  1746. )
  1747. (property "Footprint" "" (at 0 0 0)
  1748. (effects (font (size 1.27 1.27)) hide)
  1749. )
  1750. (property "Datasheet" "" (at 0 0 0)
  1751. (effects (font (size 1.27 1.27)) hide)
  1752. )
  1753. (property "ki_keywords" "global power" (at 0 0 0)
  1754. (effects (font (size 1.27 1.27)) hide)
  1755. )
  1756. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0)
  1757. (effects (font (size 1.27 1.27)) hide)
  1758. )
  1759. (symbol "+5V_0_1"
  1760. (polyline
  1761. (pts
  1762. (xy -0.762 1.27)
  1763. (xy 0 2.54)
  1764. )
  1765. (stroke (width 0) (type default))
  1766. (fill (type none))
  1767. )
  1768. (polyline
  1769. (pts
  1770. (xy 0 0)
  1771. (xy 0 2.54)
  1772. )
  1773. (stroke (width 0) (type default))
  1774. (fill (type none))
  1775. )
  1776. (polyline
  1777. (pts
  1778. (xy 0 2.54)
  1779. (xy 0.762 1.27)
  1780. )
  1781. (stroke (width 0) (type default))
  1782. (fill (type none))
  1783. )
  1784. )
  1785. (symbol "+5V_1_1"
  1786. (pin power_in line (at 0 0 90) (length 0) hide
  1787. (name "+5V" (effects (font (size 1.27 1.27))))
  1788. (number "1" (effects (font (size 1.27 1.27))))
  1789. )
  1790. )
  1791. )
  1792. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1793. (property "Reference" "#PWR" (at 0 -6.35 0)
  1794. (effects (font (size 1.27 1.27)) hide)
  1795. )
  1796. (property "Value" "GND" (at 0 -3.81 0)
  1797. (effects (font (size 1.27 1.27)))
  1798. )
  1799. (property "Footprint" "" (at 0 0 0)
  1800. (effects (font (size 1.27 1.27)) hide)
  1801. )
  1802. (property "Datasheet" "" (at 0 0 0)
  1803. (effects (font (size 1.27 1.27)) hide)
  1804. )
  1805. (property "ki_keywords" "global power" (at 0 0 0)
  1806. (effects (font (size 1.27 1.27)) hide)
  1807. )
  1808. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
  1809. (effects (font (size 1.27 1.27)) hide)
  1810. )
  1811. (symbol "GND_0_1"
  1812. (polyline
  1813. (pts
  1814. (xy 0 0)
  1815. (xy 0 -1.27)
  1816. (xy 1.27 -1.27)
  1817. (xy 0 -2.54)
  1818. (xy -1.27 -1.27)
  1819. (xy 0 -1.27)
  1820. )
  1821. (stroke (width 0) (type default))
  1822. (fill (type none))
  1823. )
  1824. )
  1825. (symbol "GND_1_1"
  1826. (pin power_in line (at 0 0 270) (length 0) hide
  1827. (name "GND" (effects (font (size 1.27 1.27))))
  1828. (number "1" (effects (font (size 1.27 1.27))))
  1829. )
  1830. )
  1831. )
  1832. (symbol "sm6uax:UPB8216" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1833. (property "Reference" "U" (at -7.62 16.51 0)
  1834. (effects (font (size 1.27 1.27)))
  1835. )
  1836. (property "Value" "UPB8216" (at -7.62 -16.51 0)
  1837. (effects (font (size 1.27 1.27)))
  1838. )
  1839. (property "Footprint" "" (at 0 0 0)
  1840. (effects (font (size 1.27 1.27)) hide)
  1841. )
  1842. (property "Datasheet" "https://www.nteinc.com/specs/8000to8999/pdf/nte8216.pdf" (at 0 0 0)
  1843. (effects (font (size 1.27 1.27)) hide)
  1844. )
  1845. (property "ki_keywords" "BUFFER BUS TTL 3State" (at 0 0 0)
  1846. (effects (font (size 1.27 1.27)) hide)
  1847. )
  1848. (property "ki_description" "4-bit Bi directional bus driver, 3-state outputs" (at 0 0 0)
  1849. (effects (font (size 1.27 1.27)) hide)
  1850. )
  1851. (property "ki_fp_filters" "DIP?16*" (at 0 0 0)
  1852. (effects (font (size 1.27 1.27)) hide)
  1853. )
  1854. (symbol "UPB8216_1_0"
  1855. (polyline
  1856. (pts
  1857. (xy -0.635 -1.6002)
  1858. (xy -0.635 0.9398)
  1859. (xy 0.635 0.9398)
  1860. )
  1861. (stroke (width 0) (type default))
  1862. (fill (type none))
  1863. )
  1864. (polyline
  1865. (pts
  1866. (xy -1.27 -1.6002)
  1867. (xy 0.635 -1.6002)
  1868. (xy 0.635 0.9398)
  1869. (xy 1.27 0.9398)
  1870. )
  1871. (stroke (width 0) (type default))
  1872. (fill (type none))
  1873. )
  1874. (polyline
  1875. (pts
  1876. (xy 1.016 3.4798)
  1877. (xy -1.524 4.7498)
  1878. (xy -1.524 2.2098)
  1879. (xy 1.016 3.4798)
  1880. )
  1881. (stroke (width 0.1524) (type default))
  1882. (fill (type none))
  1883. )
  1884. (circle (center 1.397 3.4798) (radius 0.254)
  1885. (stroke (width 0.1524) (type default))
  1886. (fill (type none))
  1887. )
  1888. (pin input inverted (at -12.7 -10.16 0) (length 5.08)
  1889. (name "~{CS}" (effects (font (size 1.27 1.27))))
  1890. (number "1" (effects (font (size 1.27 1.27))))
  1891. )
  1892. (pin bidirectional line (at 12.7 8.255 180) (length 5.08)
  1893. (name "DB2" (effects (font (size 1.27 1.27))))
  1894. (number "10" (effects (font (size 1.27 1.27))))
  1895. )
  1896. (pin output line (at -12.7 -3.81 0) (length 5.08)
  1897. (name "DO2" (effects (font (size 1.27 1.27))))
  1898. (number "11" (effects (font (size 1.27 1.27))))
  1899. )
  1900. (pin input line (at -12.7 5.715 0) (length 5.08)
  1901. (name "DI3" (effects (font (size 1.27 1.27))))
  1902. (number "12" (effects (font (size 1.27 1.27))))
  1903. )
  1904. (pin bidirectional line (at 12.7 5.715 180) (length 5.08)
  1905. (name "DB3" (effects (font (size 1.27 1.27))))
  1906. (number "13" (effects (font (size 1.27 1.27))))
  1907. )
  1908. (pin output line (at -12.7 -6.35 0) (length 5.08)
  1909. (name "DO3" (effects (font (size 1.27 1.27))))
  1910. (number "14" (effects (font (size 1.27 1.27))))
  1911. )
  1912. (pin input inverted (at -12.7 -12.7 0) (length 5.08)
  1913. (name "~{DIEN}" (effects (font (size 1.27 1.27))))
  1914. (number "15" (effects (font (size 1.27 1.27))))
  1915. )
  1916. (pin power_in line (at 0 20.32 270) (length 5.08)
  1917. (name "VCC" (effects (font (size 1.27 1.27))))
  1918. (number "16" (effects (font (size 1.27 1.27))))
  1919. )
  1920. (pin output line (at -12.7 1.143 0) (length 5.08)
  1921. (name "DO0" (effects (font (size 1.27 1.27))))
  1922. (number "2" (effects (font (size 1.27 1.27))))
  1923. )
  1924. (pin bidirectional line (at 12.7 13.335 180) (length 5.08)
  1925. (name "DB0" (effects (font (size 1.27 1.27))))
  1926. (number "3" (effects (font (size 1.27 1.27))))
  1927. )
  1928. (pin input line (at -12.7 13.335 0) (length 5.08)
  1929. (name "DI0" (effects (font (size 1.27 1.27))))
  1930. (number "4" (effects (font (size 1.27 1.27))))
  1931. )
  1932. (pin output line (at -12.7 -1.27 0) (length 5.08)
  1933. (name "DO1" (effects (font (size 1.27 1.27))))
  1934. (number "5" (effects (font (size 1.27 1.27))))
  1935. )
  1936. (pin bidirectional line (at 12.7 10.795 180) (length 5.08)
  1937. (name "DB1" (effects (font (size 1.27 1.27))))
  1938. (number "6" (effects (font (size 1.27 1.27))))
  1939. )
  1940. (pin input line (at -12.7 10.795 0) (length 5.08)
  1941. (name "DI1" (effects (font (size 1.27 1.27))))
  1942. (number "7" (effects (font (size 1.27 1.27))))
  1943. )
  1944. (pin power_in line (at 0 -20.32 90) (length 5.08)
  1945. (name "GND" (effects (font (size 1.27 1.27))))
  1946. (number "8" (effects (font (size 1.27 1.27))))
  1947. )
  1948. (pin input line (at -12.7 8.255 0) (length 5.08)
  1949. (name "DI2" (effects (font (size 1.27 1.27))))
  1950. (number "9" (effects (font (size 1.27 1.27))))
  1951. )
  1952. )
  1953. (symbol "UPB8216_1_1"
  1954. (rectangle (start -7.62 15.24) (end 7.62 -15.24)
  1955. (stroke (width 0.254) (type default))
  1956. (fill (type background))
  1957. )
  1958. )
  1959. )
  1960. )
  1961. (junction (at 525.272 116.84) (diameter 0) (color 0 0 0 0)
  1962. (uuid 052528e2-e383-4aae-84f8-951aca17a79f)
  1963. )
  1964. (junction (at 536.829 136.144) (diameter 0) (color 0 0 0 0)
  1965. (uuid 061fc7e7-ec6f-4d37-a439-ff6a569b6c63)
  1966. )
  1967. (junction (at 519.684 165.481) (diameter 0) (color 0 0 0 0)
  1968. (uuid 0b07d362-98e5-499d-9ca2-954b7afcfefa)
  1969. )
  1970. (junction (at 336.931 138.303) (diameter 0) (color 0 0 0 0)
  1971. (uuid 25231252-ec1d-4533-b8e7-d0e68a328f9a)
  1972. )
  1973. (junction (at 278.003 149.606) (diameter 0) (color 0 0 0 0)
  1974. (uuid 43b516ed-0723-4427-94bf-5d1fcc38150a)
  1975. )
  1976. (junction (at 528.066 114.681) (diameter 0) (color 0 0 0 0)
  1977. (uuid 581aad9b-e192-4b7e-8ff5-fb80349f93f8)
  1978. )
  1979. (junction (at 52.197 123.825) (diameter 0) (color 0 0 0 0)
  1980. (uuid 5cc98ed8-28cf-44fb-a42a-337adba58180)
  1981. )
  1982. (junction (at 377.952 165.354) (diameter 0) (color 0 0 0 0)
  1983. (uuid 62b21223-249c-44ee-87ec-b9e52972c7e5)
  1984. )
  1985. (junction (at 311.785 142.494) (diameter 0) (color 0 0 0 0)
  1986. (uuid 6afaea36-fa45-4004-89f7-456d6108ed3c)
  1987. )
  1988. (junction (at 372.11 116.84) (diameter 0) (color 0 0 0 0)
  1989. (uuid 6d26a60f-af11-4d1e-9420-b79d293a3fea)
  1990. )
  1991. (junction (at 516.89 96.774) (diameter 0) (color 0 0 0 0)
  1992. (uuid 6fd74907-8ac6-4a16-9f9a-848061a158f4)
  1993. )
  1994. (junction (at 536.829 141.224) (diameter 0) (color 0 0 0 0)
  1995. (uuid 797d5297-c181-4336-93fd-dc30db7c3c48)
  1996. )
  1997. (junction (at 516.509 168.021) (diameter 0) (color 0 0 0 0)
  1998. (uuid 7bbe4694-ea5e-46c8-8d7c-7e977cbc61ba)
  1999. )
  2000. (junction (at 513.969 170.561) (diameter 0) (color 0 0 0 0)
  2001. (uuid 8601e728-9bf5-4e9f-9bb2-d6df254e8a9d)
  2002. )
  2003. (junction (at 536.829 125.984) (diameter 0) (color 0 0 0 0)
  2004. (uuid 89a7564e-e598-4572-94f8-58b68a1f1be6)
  2005. )
  2006. (junction (at 536.829 123.444) (diameter 0) (color 0 0 0 0)
  2007. (uuid 8ec1f25c-29d5-47dd-a31c-572bdb3e6321)
  2008. )
  2009. (junction (at 353.187 25.4) (diameter 0) (color 0 0 0 0)
  2010. (uuid 937a8105-aa01-419a-b4c4-fbf4bea8078e)
  2011. )
  2012. (junction (at 311.785 125.095) (diameter 0) (color 0 0 0 0)
  2013. (uuid 9ee349c3-9613-4227-831a-93d33c72d8cd)
  2014. )
  2015. (junction (at 536.829 148.844) (diameter 0) (color 0 0 0 0)
  2016. (uuid a7236d31-b217-4107-9763-70ce40db47eb)
  2017. )
  2018. (junction (at 372.11 132.08) (diameter 0) (color 0 0 0 0)
  2019. (uuid b261876a-26f6-4470-9867-fae9c20c7e99)
  2020. )
  2021. (junction (at 519.684 94.234) (diameter 0) (color 0 0 0 0)
  2022. (uuid b519d58e-9268-4176-804a-7676948c00c0)
  2023. )
  2024. (junction (at 316.357 162.814) (diameter 0) (color 0 0 0 0)
  2025. (uuid baf4e651-4e26-491e-849b-47aae9e5dd05)
  2026. )
  2027. (junction (at 63.627 25.4) (diameter 0) (color 0 0 0 0)
  2028. (uuid bc3d61ef-ee92-4506-a569-c39dec447a73)
  2029. )
  2030. (junction (at 16.637 140.335) (diameter 0) (color 0 0 0 0)
  2031. (uuid bc7243a7-4083-4c49-bc6d-caedc1b95983)
  2032. )
  2033. (junction (at 395.478 41.402) (diameter 0) (color 0 0 0 0)
  2034. (uuid c28b65de-0fcf-4f1d-8a6f-e377a7e65891)
  2035. )
  2036. (junction (at 524.51 89.281) (diameter 0) (color 0 0 0 0)
  2037. (uuid c766ae45-8178-4814-8080-721bbe56d21f)
  2038. )
  2039. (junction (at 522.605 163.068) (diameter 0) (color 0 0 0 0)
  2040. (uuid d155452a-d075-4be8-b151-bc5cbf425e43)
  2041. )
  2042. (junction (at 372.11 125.095) (diameter 0) (color 0 0 0 0)
  2043. (uuid d949fe8b-e21b-452c-bd92-c61a31d9830f)
  2044. )
  2045. (junction (at 336.931 122.555) (diameter 0) (color 0 0 0 0)
  2046. (uuid dffd7609-8772-4965-b7ae-31b6cb4f22d0)
  2047. )
  2048. (junction (at 536.829 143.764) (diameter 0) (color 0 0 0 0)
  2049. (uuid e2fbfdc3-6da7-428c-b68e-463e0274a85f)
  2050. )
  2051. (junction (at 536.829 146.304) (diameter 0) (color 0 0 0 0)
  2052. (uuid e4f5412c-1397-4191-8982-dbf1b176b108)
  2053. )
  2054. (junction (at 536.829 151.384) (diameter 0) (color 0 0 0 0)
  2055. (uuid e65ca791-7ceb-4c94-b7c3-ee89608272cc)
  2056. )
  2057. (junction (at 536.829 131.064) (diameter 0) (color 0 0 0 0)
  2058. (uuid ec09a768-4dc6-409f-a6bf-db8f92a1d19e)
  2059. )
  2060. (junction (at 522.097 91.694) (diameter 0) (color 0 0 0 0)
  2061. (uuid ee26f436-55d2-42e5-aa19-31da9f66420c)
  2062. )
  2063. (junction (at 536.829 138.684) (diameter 0) (color 0 0 0 0)
  2064. (uuid f6237a56-2f83-4400-89da-9c7c6685d7ce)
  2065. )
  2066. (junction (at 536.829 133.604) (diameter 0) (color 0 0 0 0)
  2067. (uuid f6f360a6-935d-453d-aba8-d0af683be396)
  2068. )
  2069. (junction (at 52.197 216.535) (diameter 0) (color 0 0 0 0)
  2070. (uuid ff2206c5-16fc-4678-bb7c-4b796b3360f3)
  2071. )
  2072. (junction (at 645.541 376.809) (diameter 0) (color 0 0 0 0)
  2073. (uuid ff8f1fbb-eab0-451b-80a0-f3f275723235)
  2074. )
  2075. (no_connect (at 50.927 150.495) (uuid 16bfdf8b-4ff4-4fdb-9d6e-4cec12910acc))
  2076. (no_connect (at 28.067 208.915) (uuid 1e7e3c25-87d3-4f59-84a0-a8a11b65244f))
  2077. (no_connect (at 50.927 160.655) (uuid 3f780a80-fc47-49d8-8b54-3f10de636578))
  2078. (no_connect (at 50.927 158.115) (uuid 44d2d1a3-06b1-4dfb-9900-815abffa5225))
  2079. (no_connect (at 50.927 206.375) (uuid 4b9813f6-816b-4eca-8ebf-307799df2dd1))
  2080. (no_connect (at 28.067 203.835) (uuid 878635a3-101d-4100-b5d0-3826866f8f56))
  2081. (no_connect (at 28.067 193.675) (uuid 96ed4486-b8dc-4cc0-8ee3-ae3e88a1edff))
  2082. (no_connect (at 50.927 155.575) (uuid d0c908f3-c49a-4102-a84a-c37518a31711))
  2083. (no_connect (at 50.927 153.035) (uuid db37e3d7-2152-49eb-9897-bdc83693242d))
  2084. (no_connect (at 50.927 147.955) (uuid dcc42455-5ffb-47a0-8fa4-2004cbb9c310))
  2085. (no_connect (at 50.927 145.415) (uuid f7320d7a-4719-4302-98a0-da200e219076))
  2086. (bus_entry (at 61.087 186.055) (size 2.54 2.54)
  2087. (stroke (width 0) (type default))
  2088. (uuid 01053439-3015-4b3f-9392-b3ffb976db5e)
  2089. )
  2090. (bus_entry (at 63.627 55.372) (size 2.54 2.54)
  2091. (stroke (width 0) (type default))
  2092. (uuid 02aa8ff0-aa69-431a-a0e8-7da2fb604b96)
  2093. )
  2094. (bus_entry (at 474.345 153.416) (size -2.54 -2.54)
  2095. (stroke (width 0) (type default))
  2096. (uuid 0a95ac7d-4ccb-4003-83ae-5aee6ea23afa)
  2097. )
  2098. (bus_entry (at 63.627 108.331) (size 2.54 2.54)
  2099. (stroke (width 0) (type default))
  2100. (uuid 0c9fe4f6-e00f-4780-bdc4-5a2ac35cc084)
  2101. )
  2102. (bus_entry (at 61.087 178.435) (size 2.54 2.54)
  2103. (stroke (width 0) (type default))
  2104. (uuid 0f3b42ce-e00c-4ef2-945a-af781727f7d8)
  2105. )
  2106. (bus_entry (at 19.177 206.375) (size 2.54 2.54)
  2107. (stroke (width 0) (type default))
  2108. (uuid 1de07041-f163-4db2-86c4-cadf86f74e0c)
  2109. )
  2110. (bus_entry (at 474.345 82.169) (size -2.54 -2.54)
  2111. (stroke (width 0) (type default))
  2112. (uuid 1e854e46-0ace-4d8e-be55-0f6bc34b3d1b)
  2113. )
  2114. (bus_entry (at 61.087 163.195) (size 2.54 2.54)
  2115. (stroke (width 0) (type default))
  2116. (uuid 254af5d5-43d0-470a-b40f-149cce2e5b63)
  2117. )
  2118. (bus_entry (at 19.177 168.275) (size 2.54 2.54)
  2119. (stroke (width 0) (type default))
  2120. (uuid 2913c644-b707-463b-8ca1-68bddaec7993)
  2121. )
  2122. (bus_entry (at 63.627 74.422) (size 2.54 2.54)
  2123. (stroke (width 0) (type default))
  2124. (uuid 29b59726-78f1-4ddf-9850-a96bb678d4ea)
  2125. )
  2126. (bus_entry (at 474.345 77.089) (size -2.54 -2.54)
  2127. (stroke (width 0) (type default))
  2128. (uuid 2ce13aec-dd11-4ad5-a5de-e1510d636c9d)
  2129. )
  2130. (bus_entry (at 19.177 183.515) (size 2.54 2.54)
  2131. (stroke (width 0) (type default))
  2132. (uuid 2ecce6ff-c290-417f-b224-1ddce1a62be5)
  2133. )
  2134. (bus_entry (at 19.177 186.055) (size 2.54 2.54)
  2135. (stroke (width 0) (type default))
  2136. (uuid 316cec35-c6a3-4c8b-b432-23ada430a236)
  2137. )
  2138. (bus_entry (at 61.087 203.835) (size 2.54 2.54)
  2139. (stroke (width 0) (type default))
  2140. (uuid 3eb37a20-661e-4c2e-a039-cd876af3cb00)
  2141. )
  2142. (bus_entry (at 19.177 193.675) (size 2.54 2.54)
  2143. (stroke (width 0) (type default))
  2144. (uuid 4ac6a1c5-783e-4208-8b32-ebfc6c1e73fd)
  2145. )
  2146. (bus_entry (at 61.087 140.335) (size 2.54 2.54)
  2147. (stroke (width 0) (type default))
  2148. (uuid 4e809a2e-e3e4-4d85-9c39-b6ac4492e7e1)
  2149. )
  2150. (bus_entry (at 19.177 165.735) (size 2.54 2.54)
  2151. (stroke (width 0) (type default))
  2152. (uuid 5327d624-e07f-4177-a3a5-da8616353e9f)
  2153. )
  2154. (bus_entry (at 474.345 155.956) (size -2.54 -2.54)
  2155. (stroke (width 0) (type default))
  2156. (uuid 56124955-7cf9-4e1f-98af-039d70d5f243)
  2157. )
  2158. (bus_entry (at 19.177 142.875) (size 2.54 2.54)
  2159. (stroke (width 0) (type default))
  2160. (uuid 5f8c98ea-b010-499b-b676-b3bb0d6392f9)
  2161. )
  2162. (bus_entry (at 61.087 193.675) (size 2.54 2.54)
  2163. (stroke (width 0) (type default))
  2164. (uuid 6191a6b0-4bae-402a-be45-a932057344e0)
  2165. )
  2166. (bus_entry (at 61.087 173.355) (size 2.54 2.54)
  2167. (stroke (width 0) (type default))
  2168. (uuid 685d1f8d-1826-40b4-bbc6-987755cbb9c9)
  2169. )
  2170. (bus_entry (at 19.177 175.895) (size 2.54 2.54)
  2171. (stroke (width 0) (type default))
  2172. (uuid 6d5fb875-4042-4380-9b98-8a02b92cebaf)
  2173. )
  2174. (bus_entry (at 61.087 208.915) (size 2.54 2.54)
  2175. (stroke (width 0) (type default))
  2176. (uuid 6f07cf57-0a95-444d-8582-8f6ebce84c64)
  2177. )
  2178. (bus_entry (at 474.345 150.876) (size -2.54 -2.54)
  2179. (stroke (width 0) (type default))
  2180. (uuid 710d2272-4b87-4e64-97ec-61cb8f7b8200)
  2181. )
  2182. (bus_entry (at 19.177 147.955) (size 2.54 2.54)
  2183. (stroke (width 0) (type default))
  2184. (uuid 74ebbf4b-8ea4-408d-a6f7-1862679be319)
  2185. )
  2186. (bus_entry (at 19.177 170.815) (size 2.54 2.54)
  2187. (stroke (width 0) (type default))
  2188. (uuid 77359e95-30e7-4577-a59d-8656fc4ab594)
  2189. )
  2190. (bus_entry (at 19.177 188.595) (size 2.54 2.54)
  2191. (stroke (width 0) (type default))
  2192. (uuid 7da96928-0323-4b57-a856-6e89fd5cfc85)
  2193. )
  2194. (bus_entry (at 19.177 173.355) (size 2.54 2.54)
  2195. (stroke (width 0) (type default))
  2196. (uuid 7debabe0-7f59-4b3e-a92c-1d17cc091745)
  2197. )
  2198. (bus_entry (at 19.177 135.255) (size 2.54 2.54)
  2199. (stroke (width 0) (type default))
  2200. (uuid 7fa3101a-7f68-468c-bfe6-764fef7057e3)
  2201. )
  2202. (bus_entry (at 471.805 53.975) (size -2.54 2.54)
  2203. (stroke (width 0) (type default))
  2204. (uuid 858822ab-664a-4ed1-ab8e-98475795bca6)
  2205. )
  2206. (bus_entry (at 61.087 196.215) (size 2.54 2.54)
  2207. (stroke (width 0) (type default))
  2208. (uuid 8b2be389-e523-4162-b20c-5d99dee34033)
  2209. )
  2210. (bus_entry (at 19.177 198.755) (size 2.54 2.54)
  2211. (stroke (width 0) (type default))
  2212. (uuid 8ee4b4b8-97b6-4c67-8531-21dbaf94ef0f)
  2213. )
  2214. (bus_entry (at 61.087 183.515) (size 2.54 2.54)
  2215. (stroke (width 0) (type default))
  2216. (uuid 9324b280-26e9-445b-bfe6-7ff38039cc2c)
  2217. )
  2218. (bus_entry (at 61.087 191.135) (size 2.54 2.54)
  2219. (stroke (width 0) (type default))
  2220. (uuid 935c0088-085f-45f1-a622-671c085e74d3)
  2221. )
  2222. (bus_entry (at 63.627 134.747) (size 2.54 2.54)
  2223. (stroke (width 0) (type default))
  2224. (uuid 9c6cf58a-4a0b-4362-bc11-682e10735686)
  2225. )
  2226. (bus_entry (at 61.087 175.895) (size 2.54 2.54)
  2227. (stroke (width 0) (type default))
  2228. (uuid 9cc39e3d-3ab1-4a2f-b374-9f0481bc2b2b)
  2229. )
  2230. (bus_entry (at 19.177 180.975) (size 2.54 2.54)
  2231. (stroke (width 0) (type default))
  2232. (uuid 9e11ec75-4b01-4012-bf0a-e3bdaf18eb84)
  2233. )
  2234. (bus_entry (at 474.345 79.629) (size -2.54 -2.54)
  2235. (stroke (width 0) (type default))
  2236. (uuid a1e7ada3-0dc2-403c-8792-e0e91a917c09)
  2237. )
  2238. (bus_entry (at 61.087 168.275) (size 2.54 2.54)
  2239. (stroke (width 0) (type default))
  2240. (uuid a50b90e3-70fb-4a39-ac9d-1076e17f11e2)
  2241. )
  2242. (bus_entry (at 61.087 201.295) (size 2.54 2.54)
  2243. (stroke (width 0) (type default))
  2244. (uuid af21fd31-5243-4993-99cf-0729b979b6e6)
  2245. )
  2246. (bus_entry (at 474.345 158.496) (size -2.54 -2.54)
  2247. (stroke (width 0) (type default))
  2248. (uuid b423effc-2c83-475e-bb3a-89c6758ea651)
  2249. )
  2250. (bus_entry (at 61.087 188.595) (size 2.54 2.54)
  2251. (stroke (width 0) (type default))
  2252. (uuid b501700f-a042-43ef-b024-a30dfc0e66df)
  2253. )
  2254. (bus_entry (at 61.087 198.755) (size 2.54 2.54)
  2255. (stroke (width 0) (type default))
  2256. (uuid be57e6a7-1d18-47e2-96ab-77f1bba1be8c)
  2257. )
  2258. (bus_entry (at 19.177 196.215) (size 2.54 2.54)
  2259. (stroke (width 0) (type default))
  2260. (uuid c03c227c-070c-4900-a851-c0b43e4039f3)
  2261. )
  2262. (bus_entry (at 19.177 145.415) (size 2.54 2.54)
  2263. (stroke (width 0) (type default))
  2264. (uuid c67490ce-b99b-481d-a3c6-35aa62336163)
  2265. )
  2266. (bus_entry (at 19.177 203.835) (size 2.54 2.54)
  2267. (stroke (width 0) (type default))
  2268. (uuid c9d25756-9989-4873-af1c-7c49d63f3bd0)
  2269. )
  2270. (bus_entry (at 61.087 165.735) (size 2.54 2.54)
  2271. (stroke (width 0) (type default))
  2272. (uuid cab92929-90c6-4749-8323-aeae47aabf6c)
  2273. )
  2274. (bus_entry (at 19.177 150.495) (size 2.54 2.54)
  2275. (stroke (width 0) (type default))
  2276. (uuid cf4a173e-f729-41c6-a15e-ac2a1c006a13)
  2277. )
  2278. (bus_entry (at 61.087 180.975) (size 2.54 2.54)
  2279. (stroke (width 0) (type default))
  2280. (uuid d96126b7-a15b-4af6-bfb2-996ef68e49a9)
  2281. )
  2282. (bus_entry (at 19.177 160.655) (size 2.54 2.54)
  2283. (stroke (width 0) (type default))
  2284. (uuid ddd45130-dbcb-4d82-8e87-6cecf128a3a1)
  2285. )
  2286. (bus_entry (at 353.187 45.974) (size 2.54 2.54)
  2287. (stroke (width 0) (type default))
  2288. (uuid de3ce391-e675-4682-b52b-9ce2e2160bc4)
  2289. )
  2290. (bus_entry (at 19.177 155.575) (size 2.54 2.54)
  2291. (stroke (width 0) (type default))
  2292. (uuid ea2c2b10-f306-4c84-8da0-6f245d853ced)
  2293. )
  2294. (bus_entry (at 19.177 178.435) (size 2.54 2.54)
  2295. (stroke (width 0) (type default))
  2296. (uuid ec791be9-44f7-4234-8cac-12d400b81293)
  2297. )
  2298. (bus_entry (at 61.087 170.815) (size 2.54 2.54)
  2299. (stroke (width 0) (type default))
  2300. (uuid f2249e77-30d1-47b9-87b1-f0b40aee6bd9)
  2301. )
  2302. (bus_entry (at 19.177 158.115) (size 2.54 2.54)
  2303. (stroke (width 0) (type default))
  2304. (uuid f2bf9b43-f67f-4fd3-87ab-6bfcadfbc47c)
  2305. )
  2306. (bus_entry (at 19.177 153.035) (size 2.54 2.54)
  2307. (stroke (width 0) (type default))
  2308. (uuid f4dfcb85-e568-4b31-906f-547cb7b768d3)
  2309. )
  2310. (bus_entry (at 19.177 163.195) (size 2.54 2.54)
  2311. (stroke (width 0) (type default))
  2312. (uuid f64a2b66-9a7f-43e7-b080-37f6688bef49)
  2313. )
  2314. (bus_entry (at 474.345 84.709) (size -2.54 -2.54)
  2315. (stroke (width 0) (type default))
  2316. (uuid f96b01a9-7972-435f-8826-6559ed0d4b05)
  2317. )
  2318. (bus (pts (xy 471.805 79.629) (xy 471.805 77.089))
  2319. (stroke (width 0) (type default))
  2320. (uuid 0194313c-6295-4c82-851d-df23fb271dfe)
  2321. )
  2322. (wire (pts (xy 278.003 149.606) (xy 278.003 151.384))
  2323. (stroke (width 0) (type default))
  2324. (uuid 022303d6-159f-421b-9c3f-d10b290d877c)
  2325. )
  2326. (wire (pts (xy 524.51 77.089) (xy 524.51 89.281))
  2327. (stroke (width 0) (type default))
  2328. (uuid 03950e0d-dd11-4743-bec1-3f906d9577b6)
  2329. )
  2330. (wire (pts (xy 311.785 142.494) (xy 341.757 142.494))
  2331. (stroke (width 0) (type default))
  2332. (uuid 039b3429-94a8-4c7f-be6a-f7f6ca65864e)
  2333. )
  2334. (wire (pts (xy 205.486 136.017) (xy 207.518 136.017))
  2335. (stroke (width 0) (type default))
  2336. (uuid 0516eb9a-0085-4d7d-8258-70a25bb51395)
  2337. )
  2338. (wire (pts (xy 341.757 142.494) (xy 341.757 143.383))
  2339. (stroke (width 0) (type default))
  2340. (uuid 05b9b208-0314-4824-8468-ff5e42b2a76b)
  2341. )
  2342. (wire (pts (xy 308.356 97.917) (xy 308.356 85.852))
  2343. (stroke (width 0) (type default))
  2344. (uuid 0730dfa6-6c51-40fb-b4a0-9f41ee8f9b0a)
  2345. )
  2346. (wire (pts (xy 519.684 82.169) (xy 519.684 94.234))
  2347. (stroke (width 0) (type default))
  2348. (uuid 07ce2e94-5e97-4aee-8b99-fd3006aa7429)
  2349. )
  2350. (wire (pts (xy 647.192 374.396) (xy 645.541 374.396))
  2351. (stroke (width 0) (type default))
  2352. (uuid 0a8e6995-cd67-4090-8f1d-c1e2c4ef8752)
  2353. )
  2354. (bus (pts (xy 63.627 25.4) (xy 353.187 25.4))
  2355. (stroke (width 0) (type default))
  2356. (uuid 0b494b0b-31ed-4fa9-9816-5d5cb89bfeab)
  2357. )
  2358. (bus (pts (xy 63.627 168.275) (xy 63.627 170.815))
  2359. (stroke (width 0) (type default))
  2360. (uuid 0ba2283c-57b7-4090-b097-42d5fd7aa61d)
  2361. )
  2362. (wire (pts (xy 25.527 132.715) (xy 25.527 123.825))
  2363. (stroke (width 0) (type default))
  2364. (uuid 0c69802e-d044-4d93-8aba-3ab35c477641)
  2365. )
  2366. (wire (pts (xy 536.829 151.384) (xy 536.829 152.527))
  2367. (stroke (width 0) (type default))
  2368. (uuid 0c7d8bc4-3ab7-4433-bfae-a43fc69ad598)
  2369. )
  2370. (wire (pts (xy 240.284 151.511) (xy 238.379 151.511))
  2371. (stroke (width 0) (type default))
  2372. (uuid 0d938380-146a-4f43-8da8-a7049b089978)
  2373. )
  2374. (wire (pts (xy 258.064 154.051) (xy 258.064 156.464))
  2375. (stroke (width 0) (type default))
  2376. (uuid 0e235ab5-2fba-4586-aaec-2177423e7168)
  2377. )
  2378. (wire (pts (xy 510.032 155.956) (xy 516.509 155.956))
  2379. (stroke (width 0) (type default))
  2380. (uuid 0f3f8bd1-1a93-41ed-b209-dab28925c3d9)
  2381. )
  2382. (wire (pts (xy 377.952 75.565) (xy 377.952 165.354))
  2383. (stroke (width 0) (type default))
  2384. (uuid 10256f2d-146e-4954-a88b-17d846f234bc)
  2385. )
  2386. (wire (pts (xy 199.136 159.004) (xy 270.383 159.004))
  2387. (stroke (width 0) (type default))
  2388. (uuid 117aa322-39b2-4a09-b381-a1b73593013c)
  2389. )
  2390. (wire (pts (xy 361.188 102.743) (xy 274.32 102.743))
  2391. (stroke (width 0) (type default))
  2392. (uuid 122f0fca-f4ff-4dd3-912d-b8e71874c97f)
  2393. )
  2394. (wire (pts (xy 536.829 131.064) (xy 536.829 133.604))
  2395. (stroke (width 0) (type default))
  2396. (uuid 128f299f-0178-4a26-aa7e-28d4000846dd)
  2397. )
  2398. (wire (pts (xy 258.191 173.99) (xy 285.75 173.99))
  2399. (stroke (width 0) (type default))
  2400. (uuid 130e12af-6162-4fa9-960f-e8a2b8c3f4c4)
  2401. )
  2402. (wire (pts (xy 372.11 116.84) (xy 525.272 116.84))
  2403. (stroke (width 0) (type default))
  2404. (uuid 13817bfb-a7a5-4c2c-9b11-c4bd3f278b51)
  2405. )
  2406. (wire (pts (xy 510.032 96.774) (xy 516.89 96.774))
  2407. (stroke (width 0) (type default))
  2408. (uuid 13a3b9c4-1fb1-4687-9f1b-326bf424f6ed)
  2409. )
  2410. (wire (pts (xy 553.974 143.764) (xy 559.054 143.764))
  2411. (stroke (width 0) (type default))
  2412. (uuid 143e2b51-b5fa-4157-8b1d-0c7a8b1667ec)
  2413. )
  2414. (bus (pts (xy 63.627 206.375) (xy 63.627 211.455))
  2415. (stroke (width 0) (type default))
  2416. (uuid 14fbaf0c-892b-4062-92c4-35c899f353ca)
  2417. )
  2418. (bus (pts (xy 19.177 168.275) (xy 19.177 170.815))
  2419. (stroke (width 0) (type default))
  2420. (uuid 15c83ce9-95ff-493c-b8d4-635c6ab9e277)
  2421. )
  2422. (wire (pts (xy 372.11 116.84) (xy 372.11 125.095))
  2423. (stroke (width 0) (type default))
  2424. (uuid 17962d49-c258-42a6-b031-56d05e41a145)
  2425. )
  2426. (wire (pts (xy 21.717 168.275) (xy 28.067 168.275))
  2427. (stroke (width 0) (type default))
  2428. (uuid 18ecc8b4-dc07-49f0-b8ec-13beaded1f5d)
  2429. )
  2430. (wire (pts (xy 28.067 196.215) (xy 21.717 196.215))
  2431. (stroke (width 0) (type default))
  2432. (uuid 19394d26-4713-4eaf-8d88-9dce552a7fa7)
  2433. )
  2434. (wire (pts (xy 525.272 116.84) (xy 525.272 174.371))
  2435. (stroke (width 0) (type default))
  2436. (uuid 194bb50b-9fda-44f1-9c7d-8b307ac76709)
  2437. )
  2438. (wire (pts (xy 569.849 125.984) (xy 553.974 125.984))
  2439. (stroke (width 0) (type default))
  2440. (uuid 1959196a-2fe2-45a7-907c-8061e0069825)
  2441. )
  2442. (bus (pts (xy 19.177 173.355) (xy 19.177 175.895))
  2443. (stroke (width 0) (type default))
  2444. (uuid 1971925b-21e7-4bd6-b897-ecb681775268)
  2445. )
  2446. (wire (pts (xy 52.197 123.825) (xy 52.197 132.715))
  2447. (stroke (width 0) (type default))
  2448. (uuid 199d07b0-b4d9-4d41-9213-49d22c15e2a0)
  2449. )
  2450. (wire (pts (xy 50.927 198.755) (xy 61.087 198.755))
  2451. (stroke (width 0) (type default))
  2452. (uuid 1eac8166-97f8-496b-9e8b-3a8b70f51ed1)
  2453. )
  2454. (wire (pts (xy 21.717 201.295) (xy 28.067 201.295))
  2455. (stroke (width 0) (type default))
  2456. (uuid 1f82062f-d84b-4b1e-b04a-f47548be91fb)
  2457. )
  2458. (wire (pts (xy 564.642 89.281) (xy 564.642 138.684))
  2459. (stroke (width 0) (type default))
  2460. (uuid 202c401d-72c1-49b0-b85c-88813507f52d)
  2461. )
  2462. (wire (pts (xy 225.298 163.322) (xy 230.251 163.322))
  2463. (stroke (width 0) (type default))
  2464. (uuid 20eea0f3-a1d6-471b-af41-ab464ad45f22)
  2465. )
  2466. (wire (pts (xy 439.293 162.814) (xy 441.833 162.814))
  2467. (stroke (width 0) (type default))
  2468. (uuid 2209288b-f634-4ff6-b4a2-708b1d4b095c)
  2469. )
  2470. (wire (pts (xy 398.526 41.402) (xy 395.478 41.402))
  2471. (stroke (width 0) (type default))
  2472. (uuid 2211aad5-4cc6-44c0-b74e-7ed7d8e286db)
  2473. )
  2474. (bus (pts (xy 63.627 108.331) (xy 63.627 134.747))
  2475. (stroke (width 0) (type default))
  2476. (uuid 22513168-1c95-40be-9ca4-0ef307cdc788)
  2477. )
  2478. (bus (pts (xy 471.805 53.975) (xy 471.805 25.4))
  2479. (stroke (width 0) (type default))
  2480. (uuid 24464718-bca3-43cb-8756-d1d97b5a2231)
  2481. )
  2482. (wire (pts (xy 16.637 140.335) (xy 28.067 140.335))
  2483. (stroke (width 0) (type default))
  2484. (uuid 25a80899-e4aa-46ad-b09c-edbfdf3abb92)
  2485. )
  2486. (wire (pts (xy 301.625 161.544) (xy 301.625 45.339))
  2487. (stroke (width 0) (type default))
  2488. (uuid 268b13e4-b10b-40f4-895a-6c8d1276ffc5)
  2489. )
  2490. (wire (pts (xy 170.434 105.283) (xy 170.434 156.464))
  2491. (stroke (width 0) (type default))
  2492. (uuid 26f8bd6f-c020-4076-8b83-fe482dcefed4)
  2493. )
  2494. (wire (pts (xy 541.274 133.604) (xy 536.829 133.604))
  2495. (stroke (width 0) (type default))
  2496. (uuid 270abd8b-c32f-4771-aa40-8586001357f9)
  2497. )
  2498. (wire (pts (xy 21.717 163.195) (xy 28.067 163.195))
  2499. (stroke (width 0) (type default))
  2500. (uuid 275e91ec-41d8-47d8-a54c-4063d9a51884)
  2501. )
  2502. (bus (pts (xy 19.177 155.575) (xy 19.177 158.115))
  2503. (stroke (width 0) (type default))
  2504. (uuid 289dc86c-bfb9-495e-875f-beebc7a225d6)
  2505. )
  2506. (wire (pts (xy 463.677 56.515) (xy 469.265 56.515))
  2507. (stroke (width 0) (type default))
  2508. (uuid 28d55984-1914-4d7d-8e8d-7b23d09dc53c)
  2509. )
  2510. (bus (pts (xy 471.805 148.336) (xy 471.805 82.169))
  2511. (stroke (width 0) (type default))
  2512. (uuid 2a390ebe-ba06-484c-975f-82bab7ee3710)
  2513. )
  2514. (wire (pts (xy 355.727 48.514) (xy 363.347 48.514))
  2515. (stroke (width 0) (type default))
  2516. (uuid 2a88accb-c08a-4047-9f3c-ba42aab83a42)
  2517. )
  2518. (wire (pts (xy 52.197 216.535) (xy 61.087 216.535))
  2519. (stroke (width 0) (type default))
  2520. (uuid 2be68fb3-c857-4edd-9814-776fb94e1068)
  2521. )
  2522. (wire (pts (xy 608.584 376.809) (xy 610.489 376.809))
  2523. (stroke (width 0) (type default))
  2524. (uuid 2c424d42-ac47-498e-b645-de7eabdb2295)
  2525. )
  2526. (wire (pts (xy 21.717 170.815) (xy 28.067 170.815))
  2527. (stroke (width 0) (type default))
  2528. (uuid 2c71b5b2-0200-4d32-9cec-e4545effb512)
  2529. )
  2530. (wire (pts (xy 536.829 125.984) (xy 536.829 131.064))
  2531. (stroke (width 0) (type default))
  2532. (uuid 2c92867d-57e9-48f6-856c-7ea23b4ac08f)
  2533. )
  2534. (wire (pts (xy 348.742 55.499) (xy 365.379 55.499))
  2535. (stroke (width 0) (type default))
  2536. (uuid 2ca075a1-f53d-4a79-bb48-d5545d479499)
  2537. )
  2538. (bus (pts (xy 19.177 175.895) (xy 19.177 178.435))
  2539. (stroke (width 0) (type default))
  2540. (uuid 2cc36ce5-fe57-40f2-ae9e-82485435e074)
  2541. )
  2542. (wire (pts (xy 536.829 123.444) (xy 536.829 125.984))
  2543. (stroke (width 0) (type default))
  2544. (uuid 2dd4b90c-369a-48de-b254-1b685a9a8274)
  2545. )
  2546. (wire (pts (xy 21.717 147.955) (xy 28.067 147.955))
  2547. (stroke (width 0) (type default))
  2548. (uuid 2e11bf5a-8638-481d-b38a-7830b2f20080)
  2549. )
  2550. (wire (pts (xy 410.845 174.752) (xy 377.952 174.752))
  2551. (stroke (width 0) (type default))
  2552. (uuid 2eedb53a-59c0-44e5-ba4e-0c4d1fa26b59)
  2553. )
  2554. (wire (pts (xy 50.927 201.295) (xy 61.087 201.295))
  2555. (stroke (width 0) (type default))
  2556. (uuid 2ff14ad0-2d0d-468d-a5a1-1cfd8d8dc36f)
  2557. )
  2558. (wire (pts (xy 331.597 127.635) (xy 342.773 127.635))
  2559. (stroke (width 0) (type default))
  2560. (uuid 316b1052-c743-4b46-9ba1-9aab2e2fcdd1)
  2561. )
  2562. (wire (pts (xy 553.974 133.604) (xy 560.959 133.604))
  2563. (stroke (width 0) (type default))
  2564. (uuid 32381a7b-6398-4a50-8724-9d103301fee2)
  2565. )
  2566. (wire (pts (xy 361.188 140.843) (xy 361.188 102.743))
  2567. (stroke (width 0) (type default))
  2568. (uuid 328cd2b2-9bd9-44c9-8739-76b5098fff68)
  2569. )
  2570. (wire (pts (xy 50.927 208.915) (xy 61.087 208.915))
  2571. (stroke (width 0) (type default))
  2572. (uuid 33688d83-42e1-4ebc-bb96-b7fb82c47ed7)
  2573. )
  2574. (wire (pts (xy 519.684 94.234) (xy 510.032 94.234))
  2575. (stroke (width 0) (type default))
  2576. (uuid 3557c739-8b61-487a-989d-8aef20b20ed7)
  2577. )
  2578. (bus (pts (xy 19.177 142.875) (xy 19.177 145.415))
  2579. (stroke (width 0) (type default))
  2580. (uuid 3576d881-aa3f-4970-926d-1ee10af2fc01)
  2581. )
  2582. (wire (pts (xy 536.829 146.304) (xy 536.829 148.844))
  2583. (stroke (width 0) (type default))
  2584. (uuid 368c0eb9-cf5f-4dbb-ac0d-e0388e5f3d06)
  2585. )
  2586. (wire (pts (xy 21.717 186.055) (xy 28.067 186.055))
  2587. (stroke (width 0) (type default))
  2588. (uuid 3781f94a-d8df-4bf4-8cef-8dff3bfc18d0)
  2589. )
  2590. (wire (pts (xy 510.032 82.169) (xy 519.684 82.169))
  2591. (stroke (width 0) (type default))
  2592. (uuid 37a38115-1efc-4801-a557-c5cbac7f0634)
  2593. )
  2594. (wire (pts (xy 395.478 36.322) (xy 398.526 36.322))
  2595. (stroke (width 0) (type default))
  2596. (uuid 37ba7c46-3e26-4825-ae01-a38b98b18760)
  2597. )
  2598. (wire (pts (xy 311.785 125.095) (xy 311.785 142.494))
  2599. (stroke (width 0) (type default))
  2600. (uuid 381d7526-d8cc-44fc-86c0-bfe0fb7bcc45)
  2601. )
  2602. (wire (pts (xy 644.398 376.809) (xy 645.541 376.809))
  2603. (stroke (width 0) (type default))
  2604. (uuid 39d89f6e-de93-41fd-af54-72e126c03938)
  2605. )
  2606. (wire (pts (xy 207.518 130.937) (xy 205.486 130.937))
  2607. (stroke (width 0) (type default))
  2608. (uuid 3a3dbc4f-6a43-4182-ab87-2bb51456eb65)
  2609. )
  2610. (wire (pts (xy 50.927 188.595) (xy 61.087 188.595))
  2611. (stroke (width 0) (type default))
  2612. (uuid 3a720fd0-87f8-499e-89e8-5ce32e086fed)
  2613. )
  2614. (wire (pts (xy 227.584 156.591) (xy 240.284 156.591))
  2615. (stroke (width 0) (type default))
  2616. (uuid 3b28a9d4-5b03-4656-83f3-828256d70ffb)
  2617. )
  2618. (wire (pts (xy 516.509 155.956) (xy 516.509 168.021))
  2619. (stroke (width 0) (type default))
  2620. (uuid 3b3ce9b7-c0d5-49ef-9554-35833af34521)
  2621. )
  2622. (wire (pts (xy 50.927 186.055) (xy 61.087 186.055))
  2623. (stroke (width 0) (type default))
  2624. (uuid 3b3fb56e-e6ab-401f-ae23-7423947ddac7)
  2625. )
  2626. (bus (pts (xy 19.177 186.055) (xy 19.177 188.595))
  2627. (stroke (width 0) (type default))
  2628. (uuid 3b81dc30-3216-42c2-969e-1c0c37f8db6d)
  2629. )
  2630. (wire (pts (xy 419.354 108.077) (xy 419.354 38.862))
  2631. (stroke (width 0) (type default))
  2632. (uuid 3e12dc4a-0646-489c-92c3-7499f70c4f36)
  2633. )
  2634. (wire (pts (xy 390.779 47.879) (xy 395.478 47.879))
  2635. (stroke (width 0) (type default))
  2636. (uuid 3ebbb8ef-5974-42e5-9a41-3db6703f5caa)
  2637. )
  2638. (wire (pts (xy 377.952 165.354) (xy 377.952 174.752))
  2639. (stroke (width 0) (type default))
  2640. (uuid 3f030e26-8065-462c-9918-e822e1da0292)
  2641. )
  2642. (wire (pts (xy 358.267 160.274) (xy 383.286 160.274))
  2643. (stroke (width 0) (type default))
  2644. (uuid 3f748eea-24be-4300-b3f4-6b1777de11c2)
  2645. )
  2646. (wire (pts (xy 525.272 100.584) (xy 525.272 116.84))
  2647. (stroke (width 0) (type default))
  2648. (uuid 3f989b1b-9dbe-4267-96a3-bda1be630dc9)
  2649. )
  2650. (wire (pts (xy 21.717 175.895) (xy 28.067 175.895))
  2651. (stroke (width 0) (type default))
  2652. (uuid 4053155d-99bc-4bec-8263-521f59f0de54)
  2653. )
  2654. (bus (pts (xy 63.627 193.675) (xy 63.627 196.215))
  2655. (stroke (width 0) (type default))
  2656. (uuid 40818bf5-ef97-4961-a46a-45ead6cc4285)
  2657. )
  2658. (wire (pts (xy 28.067 211.455) (xy 25.527 211.455))
  2659. (stroke (width 0) (type default))
  2660. (uuid 40a27702-f236-4e77-822c-af766237225c)
  2661. )
  2662. (wire (pts (xy 536.829 120.904) (xy 541.274 120.904))
  2663. (stroke (width 0) (type default))
  2664. (uuid 4127b516-6640-4a15-8b16-18931b9261bc)
  2665. )
  2666. (wire (pts (xy 556.006 148.844) (xy 556.006 163.068))
  2667. (stroke (width 0) (type default))
  2668. (uuid 41356385-ade7-48f7-9a1b-930eb0c854f2)
  2669. )
  2670. (bus (pts (xy 63.627 22.987) (xy 63.627 25.4))
  2671. (stroke (width 0) (type default))
  2672. (uuid 41f7c446-3d8a-474a-b98c-9bdcd36d46e5)
  2673. )
  2674. (wire (pts (xy 21.717 180.975) (xy 28.067 180.975))
  2675. (stroke (width 0) (type default))
  2676. (uuid 442d41ce-1858-4ccd-8384-c1901937a6c2)
  2677. )
  2678. (wire (pts (xy 360.045 63.119) (xy 365.379 63.119))
  2679. (stroke (width 0) (type default))
  2680. (uuid 44663a06-c693-4bb2-a4e0-2862d2e03484)
  2681. )
  2682. (wire (pts (xy 559.054 168.021) (xy 559.054 143.764))
  2683. (stroke (width 0) (type default))
  2684. (uuid 4510a9b1-c197-4d46-9dd6-e2250be16e71)
  2685. )
  2686. (wire (pts (xy 358.013 125.095) (xy 372.11 125.095))
  2687. (stroke (width 0) (type default))
  2688. (uuid 452ffe96-de5a-4fcb-8eed-35661c85a618)
  2689. )
  2690. (wire (pts (xy 21.717 145.415) (xy 28.067 145.415))
  2691. (stroke (width 0) (type default))
  2692. (uuid 453db122-e028-4fb0-8e4a-c3a5a2ca100f)
  2693. )
  2694. (wire (pts (xy 536.829 136.144) (xy 541.274 136.144))
  2695. (stroke (width 0) (type default))
  2696. (uuid 46dd6bb8-00a8-4d54-8c04-c7adcb7a1fa9)
  2697. )
  2698. (wire (pts (xy 358.648 140.843) (xy 361.188 140.843))
  2699. (stroke (width 0) (type default))
  2700. (uuid 479779d9-2acc-4e73-bb78-af4ec5dee18a)
  2701. )
  2702. (wire (pts (xy 222.758 133.477) (xy 246.38 133.477))
  2703. (stroke (width 0) (type default))
  2704. (uuid 4836bc43-6404-483d-b13c-eadeee98172b)
  2705. )
  2706. (wire (pts (xy 21.717 160.655) (xy 28.067 160.655))
  2707. (stroke (width 0) (type default))
  2708. (uuid 48aabfd8-1048-49f5-9e08-d4d6c0ae9082)
  2709. )
  2710. (wire (pts (xy 536.829 148.844) (xy 536.829 151.384))
  2711. (stroke (width 0) (type default))
  2712. (uuid 4aa47871-d9e9-43f7-9209-0db998052743)
  2713. )
  2714. (wire (pts (xy 230.251 168.402) (xy 227.584 168.402))
  2715. (stroke (width 0) (type default))
  2716. (uuid 4b0b348a-5006-4fe5-879e-418f6c1d2811)
  2717. )
  2718. (bus (pts (xy 19.177 203.835) (xy 19.177 206.375))
  2719. (stroke (width 0) (type default))
  2720. (uuid 4b5d0d07-dcfa-4700-bede-4af06b256e53)
  2721. )
  2722. (wire (pts (xy 52.197 211.455) (xy 50.927 211.455))
  2723. (stroke (width 0) (type default))
  2724. (uuid 4ba7c3dd-fc2e-4acd-a7f7-c48eec808a67)
  2725. )
  2726. (wire (pts (xy 223.901 117.094) (xy 221.488 117.094))
  2727. (stroke (width 0) (type default))
  2728. (uuid 4ba96d0d-d0c1-4a24-9509-65c5684cdb24)
  2729. )
  2730. (wire (pts (xy 365.252 220.726) (xy 365.252 221.615))
  2731. (stroke (width 0) (type default))
  2732. (uuid 4c3bc9d6-d4e8-4d79-9c8d-8d2d7face565)
  2733. )
  2734. (bus (pts (xy 471.805 77.089) (xy 471.805 74.549))
  2735. (stroke (width 0) (type default))
  2736. (uuid 4d2a2976-2685-409f-940b-bf35145419ea)
  2737. )
  2738. (wire (pts (xy 263.779 171.577) (xy 263.779 149.606))
  2739. (stroke (width 0) (type default))
  2740. (uuid 4d2cf038-d2a6-4de3-8c1d-e8549f083103)
  2741. )
  2742. (wire (pts (xy 278.003 148.209) (xy 278.003 149.606))
  2743. (stroke (width 0) (type default))
  2744. (uuid 4e5642aa-6d4d-4144-ba1e-c48756e293fb)
  2745. )
  2746. (wire (pts (xy 528.066 114.681) (xy 528.066 176.911))
  2747. (stroke (width 0) (type default))
  2748. (uuid 523e64b7-aa11-4678-a1fd-508c7ff5da89)
  2749. )
  2750. (wire (pts (xy 398.526 162.814) (xy 413.893 162.814))
  2751. (stroke (width 0) (type default))
  2752. (uuid 52b9cd44-97b2-47e8-91e0-d66f034a11b7)
  2753. )
  2754. (bus (pts (xy 63.627 55.372) (xy 63.627 74.422))
  2755. (stroke (width 0) (type default))
  2756. (uuid 5362f7f3-bddc-4a25-8f83-a95710875223)
  2757. )
  2758. (wire (pts (xy 516.89 96.774) (xy 558.927 96.774))
  2759. (stroke (width 0) (type default))
  2760. (uuid 536c0638-6a50-4e24-ac12-14173dcbe2ef)
  2761. )
  2762. (wire (pts (xy 249.301 119.634) (xy 271.526 119.634))
  2763. (stroke (width 0) (type default))
  2764. (uuid 54189aff-7cac-4cb2-98dc-275913b46aa6)
  2765. )
  2766. (bus (pts (xy 19.177 153.035) (xy 19.177 155.575))
  2767. (stroke (width 0) (type default))
  2768. (uuid 54314a35-70f9-4f31-8af5-61aaf7496327)
  2769. )
  2770. (wire (pts (xy 21.717 206.375) (xy 28.067 206.375))
  2771. (stroke (width 0) (type default))
  2772. (uuid 5489c4c5-6450-49bc-bc5c-b55c8173ecbe)
  2773. )
  2774. (bus (pts (xy 63.627 188.595) (xy 63.627 191.135))
  2775. (stroke (width 0) (type default))
  2776. (uuid 549f4ef6-5fbd-4a85-b54b-5a664111093f)
  2777. )
  2778. (wire (pts (xy 246.38 133.477) (xy 246.38 122.174))
  2779. (stroke (width 0) (type default))
  2780. (uuid 55c92883-e907-4247-be4d-1041afa75b48)
  2781. )
  2782. (wire (pts (xy 245.491 165.862) (xy 258.191 165.862))
  2783. (stroke (width 0) (type default))
  2784. (uuid 55f65ea9-ef1c-478d-8e95-57d9c17fe64e)
  2785. )
  2786. (bus (pts (xy 63.627 142.875) (xy 63.627 165.735))
  2787. (stroke (width 0) (type default))
  2788. (uuid 567064fe-8974-4223-9f05-224db7a4b240)
  2789. )
  2790. (bus (pts (xy 63.627 201.295) (xy 63.627 203.835))
  2791. (stroke (width 0) (type default))
  2792. (uuid 57341bf6-4dfb-47a7-ad75-5ed1c8413ff0)
  2793. )
  2794. (wire (pts (xy 363.347 48.514) (xy 363.347 47.879))
  2795. (stroke (width 0) (type default))
  2796. (uuid 582a21af-b8a2-4662-9ed8-ee6135fbeb21)
  2797. )
  2798. (wire (pts (xy 365.252 221.615) (xy 379.476 221.615))
  2799. (stroke (width 0) (type default))
  2800. (uuid 58b88704-c1b0-4cfb-9752-508892a4cfae)
  2801. )
  2802. (wire (pts (xy 25.527 211.455) (xy 25.527 216.535))
  2803. (stroke (width 0) (type default))
  2804. (uuid 58bc66ab-2f7e-473c-8a21-8a5233496a0e)
  2805. )
  2806. (wire (pts (xy 21.717 153.035) (xy 28.067 153.035))
  2807. (stroke (width 0) (type default))
  2808. (uuid 591bf857-6774-47ee-9c57-a6940fd86345)
  2809. )
  2810. (bus (pts (xy 63.627 198.755) (xy 63.627 201.295))
  2811. (stroke (width 0) (type default))
  2812. (uuid 5949e515-dea8-44bc-bae7-ade1ccbdd336)
  2813. )
  2814. (wire (pts (xy 553.974 120.904) (xy 570.865 120.904))
  2815. (stroke (width 0) (type default))
  2816. (uuid 5b76ead4-49c4-4e7a-8a1b-df67fea91b0e)
  2817. )
  2818. (wire (pts (xy 336.931 122.555) (xy 336.931 138.303))
  2819. (stroke (width 0) (type default))
  2820. (uuid 5d38aec1-b0b0-4373-8466-79d1d1150a6b)
  2821. )
  2822. (wire (pts (xy 171.704 161.544) (xy 173.736 161.544))
  2823. (stroke (width 0) (type default))
  2824. (uuid 5d655933-fbaf-4ddc-bbe5-d6e35d9ea67b)
  2825. )
  2826. (wire (pts (xy 109.982 79.502) (xy 107.442 79.502))
  2827. (stroke (width 0) (type default))
  2828. (uuid 5da74ce1-b4a9-4c54-ba91-aaf1f44eefe8)
  2829. )
  2830. (wire (pts (xy 474.345 158.496) (xy 484.632 158.496))
  2831. (stroke (width 0) (type default))
  2832. (uuid 5dc98b06-421e-41f8-a572-e6d345b69cf0)
  2833. )
  2834. (wire (pts (xy 274.193 85.852) (xy 277.368 85.852))
  2835. (stroke (width 0) (type default))
  2836. (uuid 5de9c085-e4ce-48d6-a816-fc05857be709)
  2837. )
  2838. (wire (pts (xy 557.53 146.304) (xy 553.974 146.304))
  2839. (stroke (width 0) (type default))
  2840. (uuid 5e66a3d9-e35e-4292-b01a-0eb99492b88e)
  2841. )
  2842. (wire (pts (xy 342.773 122.555) (xy 336.931 122.555))
  2843. (stroke (width 0) (type default))
  2844. (uuid 5f67e0eb-e062-4907-a94d-46ccb8d9f747)
  2845. )
  2846. (wire (pts (xy 563.118 91.694) (xy 563.118 136.144))
  2847. (stroke (width 0) (type default))
  2848. (uuid 5f70f302-eec0-4f49-bf39-ecfe674d8f12)
  2849. )
  2850. (wire (pts (xy 516.89 84.709) (xy 516.89 96.774))
  2851. (stroke (width 0) (type default))
  2852. (uuid 5fc5fa2f-373e-4d7b-af12-5072289337e4)
  2853. )
  2854. (bus (pts (xy 63.627 170.815) (xy 63.627 173.355))
  2855. (stroke (width 0) (type default))
  2856. (uuid 5fff0920-f754-422b-8838-a6b0b809d567)
  2857. )
  2858. (wire (pts (xy 52.197 123.825) (xy 62.357 123.825))
  2859. (stroke (width 0) (type default))
  2860. (uuid 611e592c-f7c1-41eb-b13a-d86139ba615e)
  2861. )
  2862. (wire (pts (xy 350.012 76.708) (xy 441.833 76.708))
  2863. (stroke (width 0) (type default))
  2864. (uuid 635e705e-6a42-457d-9667-876ccc7b43cc)
  2865. )
  2866. (wire (pts (xy 16.637 135.255) (xy 16.637 140.335))
  2867. (stroke (width 0) (type default))
  2868. (uuid 639181c3-97e3-44e7-bcfb-e3e1abe4a334)
  2869. )
  2870. (bus (pts (xy 19.177 163.195) (xy 19.177 165.735))
  2871. (stroke (width 0) (type default))
  2872. (uuid 63c3eb28-3b14-44f6-a773-72dc27c64325)
  2873. )
  2874. (wire (pts (xy 556.006 163.068) (xy 522.605 163.068))
  2875. (stroke (width 0) (type default))
  2876. (uuid 63e2fdab-4e69-4319-b135-99d3074329b5)
  2877. )
  2878. (wire (pts (xy 510.032 84.709) (xy 516.89 84.709))
  2879. (stroke (width 0) (type default))
  2880. (uuid 642b193e-6c60-498e-bc1e-4e0670dca198)
  2881. )
  2882. (bus (pts (xy 471.805 153.416) (xy 471.805 155.956))
  2883. (stroke (width 0) (type default))
  2884. (uuid 673d9c8e-bbc9-49aa-98fb-e4c4e80191f5)
  2885. )
  2886. (bus (pts (xy 19.177 198.755) (xy 19.177 203.835))
  2887. (stroke (width 0) (type default))
  2888. (uuid 6751bd1d-5976-46a8-8d7a-44be84e56329)
  2889. )
  2890. (bus (pts (xy 19.177 178.435) (xy 19.177 180.975))
  2891. (stroke (width 0) (type default))
  2892. (uuid 675aa6ac-3a40-4bfb-a66f-5166f47ec294)
  2893. )
  2894. (wire (pts (xy 311.785 125.095) (xy 311.785 114.681))
  2895. (stroke (width 0) (type default))
  2896. (uuid 68f921c7-eb17-4d15-bcb7-6d1cba6e598a)
  2897. )
  2898. (wire (pts (xy 513.969 170.561) (xy 513.969 158.496))
  2899. (stroke (width 0) (type default))
  2900. (uuid 69dcdd32-862b-4d62-91b7-30bc1f9981ab)
  2901. )
  2902. (bus (pts (xy 471.805 82.169) (xy 471.805 79.629))
  2903. (stroke (width 0) (type default))
  2904. (uuid 6b5da208-1b78-4b69-8b04-7a726e02e7ab)
  2905. )
  2906. (wire (pts (xy 510.032 174.371) (xy 525.272 174.371))
  2907. (stroke (width 0) (type default))
  2908. (uuid 6c1290b1-9863-4524-bcc0-3ae62af30413)
  2909. )
  2910. (wire (pts (xy 274.32 102.743) (xy 274.32 90.932))
  2911. (stroke (width 0) (type default))
  2912. (uuid 6cd54b49-e18c-494b-b44f-685eb3af9999)
  2913. )
  2914. (wire (pts (xy 528.066 103.124) (xy 528.066 114.681))
  2915. (stroke (width 0) (type default))
  2916. (uuid 6d28ec81-2790-4ed1-8eed-3e93540e9953)
  2917. )
  2918. (wire (pts (xy 50.927 180.975) (xy 61.087 180.975))
  2919. (stroke (width 0) (type default))
  2920. (uuid 6da05a2e-4bff-4d0f-a30e-9a8e574c2424)
  2921. )
  2922. (wire (pts (xy 16.637 135.255) (xy 19.177 135.255))
  2923. (stroke (width 0) (type default))
  2924. (uuid 6f29a9c8-8fa6-4e19-bbde-ac7f52629808)
  2925. )
  2926. (wire (pts (xy 21.717 188.595) (xy 28.067 188.595))
  2927. (stroke (width 0) (type default))
  2928. (uuid 6f59e21f-476a-4785-90bb-680f41f00799)
  2929. )
  2930. (bus (pts (xy 19.177 196.215) (xy 19.177 198.755))
  2931. (stroke (width 0) (type default))
  2932. (uuid 710321f6-11e1-48c4-842d-e6720c0c3d52)
  2933. )
  2934. (wire (pts (xy 50.927 196.215) (xy 61.087 196.215))
  2935. (stroke (width 0) (type default))
  2936. (uuid 71055561-2125-46ff-99f5-fddb66f9812e)
  2937. )
  2938. (wire (pts (xy 536.829 146.304) (xy 541.274 146.304))
  2939. (stroke (width 0) (type default))
  2940. (uuid 71b44705-26bc-4aea-9e36-fc0f4c7776e2)
  2941. )
  2942. (wire (pts (xy 510.032 153.416) (xy 519.684 153.416))
  2943. (stroke (width 0) (type default))
  2944. (uuid 71bb70bb-f266-4a3b-8d5c-ed3b3e186f4b)
  2945. )
  2946. (wire (pts (xy 572.516 128.524) (xy 553.974 128.524))
  2947. (stroke (width 0) (type default))
  2948. (uuid 72bda5b1-dbc1-4004-bd50-8656e604ec4a)
  2949. )
  2950. (wire (pts (xy 221.488 117.094) (xy 221.488 124.841))
  2951. (stroke (width 0) (type default))
  2952. (uuid 73573e49-6a61-4ea8-9107-419a87354a84)
  2953. )
  2954. (wire (pts (xy 626.491 379.349) (xy 629.158 379.349))
  2955. (stroke (width 0) (type default))
  2956. (uuid 75590b2d-a9f2-42d1-b479-176ae6d93ee3)
  2957. )
  2958. (wire (pts (xy 519.684 153.416) (xy 519.684 165.481))
  2959. (stroke (width 0) (type default))
  2960. (uuid 757000ac-ea5c-425c-a0da-cbb2b597eec8)
  2961. )
  2962. (wire (pts (xy 372.11 125.095) (xy 372.11 132.08))
  2963. (stroke (width 0) (type default))
  2964. (uuid 7697117d-9ade-4bfa-852f-f8cae53dd74f)
  2965. )
  2966. (wire (pts (xy 350.012 52.959) (xy 365.379 52.959))
  2967. (stroke (width 0) (type default))
  2968. (uuid 77bb1b76-3ae0-47b9-911a-8a11ad143a59)
  2969. )
  2970. (wire (pts (xy 66.167 110.871) (xy 82.042 110.871))
  2971. (stroke (width 0) (type default))
  2972. (uuid 788f546e-a11a-43b0-971c-83baf7583ac0)
  2973. )
  2974. (wire (pts (xy 258.191 165.862) (xy 258.191 173.99))
  2975. (stroke (width 0) (type default))
  2976. (uuid 795a2385-2326-4957-be79-a080d75635f3)
  2977. )
  2978. (wire (pts (xy 66.167 57.912) (xy 82.042 57.912))
  2979. (stroke (width 0) (type default))
  2980. (uuid 7971b086-8233-4017-bf07-b16437f9f09e)
  2981. )
  2982. (wire (pts (xy 50.927 163.195) (xy 61.087 163.195))
  2983. (stroke (width 0) (type default))
  2984. (uuid 7a3bd9c1-7108-4ba2-b940-9b3a720645d8)
  2985. )
  2986. (wire (pts (xy 536.829 141.224) (xy 541.274 141.224))
  2987. (stroke (width 0) (type default))
  2988. (uuid 7ba9f307-260d-4fa2-9a42-7a266de9f9ad)
  2989. )
  2990. (wire (pts (xy 316.357 162.814) (xy 343.027 162.814))
  2991. (stroke (width 0) (type default))
  2992. (uuid 7bf03e21-a984-4c04-a528-05399cbc133c)
  2993. )
  2994. (wire (pts (xy 510.032 79.629) (xy 522.097 79.629))
  2995. (stroke (width 0) (type default))
  2996. (uuid 7c553194-59fb-4e06-b28a-c1f056be6632)
  2997. )
  2998. (wire (pts (xy 308.356 85.852) (xy 312.166 85.852))
  2999. (stroke (width 0) (type default))
  3000. (uuid 7cbcb0dc-fd27-4542-84ba-1f85f2e5ede7)
  3001. )
  3002. (bus (pts (xy 63.627 173.355) (xy 63.627 175.895))
  3003. (stroke (width 0) (type default))
  3004. (uuid 7d3c95ac-4f1d-4d5b-829a-a808aaaec134)
  3005. )
  3006. (wire (pts (xy 305.689 93.472) (xy 312.166 93.472))
  3007. (stroke (width 0) (type default))
  3008. (uuid 7d5f08ee-329c-4473-bddc-51ffbad38e00)
  3009. )
  3010. (wire (pts (xy 510.032 103.124) (xy 528.066 103.124))
  3011. (stroke (width 0) (type default))
  3012. (uuid 7deca8d5-aaa2-48c4-a57a-0dad65ead926)
  3013. )
  3014. (wire (pts (xy 50.927 193.675) (xy 61.087 193.675))
  3015. (stroke (width 0) (type default))
  3016. (uuid 7fb29b9f-dfcd-4bc1-bc14-d5e9515086b6)
  3017. )
  3018. (wire (pts (xy 569.849 52.959) (xy 569.849 125.984))
  3019. (stroke (width 0) (type default))
  3020. (uuid 81223469-e6a8-4098-85c2-1e939714cba3)
  3021. )
  3022. (wire (pts (xy 218.948 122.174) (xy 223.901 122.174))
  3023. (stroke (width 0) (type default))
  3024. (uuid 8214305e-6569-4816-aeb7-555342bd9261)
  3025. )
  3026. (bus (pts (xy 19.177 165.735) (xy 19.177 168.275))
  3027. (stroke (width 0) (type default))
  3028. (uuid 82406b8c-ee08-452f-bde7-551c8ba73122)
  3029. )
  3030. (wire (pts (xy 541.274 138.684) (xy 536.829 138.684))
  3031. (stroke (width 0) (type default))
  3032. (uuid 82a0c921-853a-4ad3-9d8a-5e3231f8a244)
  3033. )
  3034. (wire (pts (xy 474.345 77.089) (xy 484.632 77.089))
  3035. (stroke (width 0) (type default))
  3036. (uuid 82ba663d-e4e9-4e7c-9482-7defe5166ba0)
  3037. )
  3038. (wire (pts (xy 563.118 136.144) (xy 553.974 136.144))
  3039. (stroke (width 0) (type default))
  3040. (uuid 83f02a62-4e29-4baa-8eb6-bc997218afb7)
  3041. )
  3042. (wire (pts (xy 19.177 135.255) (xy 28.067 135.255))
  3043. (stroke (width 0) (type default))
  3044. (uuid 84382a3d-48c2-445a-a063-4db740d0da89)
  3045. )
  3046. (bus (pts (xy 19.177 160.655) (xy 19.177 163.195))
  3047. (stroke (width 0) (type default))
  3048. (uuid 84465fb4-e575-45cc-8213-0facfab0dae8)
  3049. )
  3050. (wire (pts (xy 625.729 374.269) (xy 629.158 374.269))
  3051. (stroke (width 0) (type default))
  3052. (uuid 8533a951-2157-4652-b4b3-57545569b7ab)
  3053. )
  3054. (bus (pts (xy 63.627 25.4) (xy 63.627 55.372))
  3055. (stroke (width 0) (type default))
  3056. (uuid 85359a32-a84f-4f1c-b1b2-f7b8e64e1950)
  3057. )
  3058. (wire (pts (xy 21.717 173.355) (xy 28.067 173.355))
  3059. (stroke (width 0) (type default))
  3060. (uuid 854e9243-21aa-4993-896c-4259c8b133dd)
  3061. )
  3062. (bus (pts (xy 19.177 188.595) (xy 19.177 193.675))
  3063. (stroke (width 0) (type default))
  3064. (uuid 85d15d32-1751-4e5e-8ff1-c97eda17fa12)
  3065. )
  3066. (wire (pts (xy 510.032 89.281) (xy 524.51 89.281))
  3067. (stroke (width 0) (type default))
  3068. (uuid 867c5c9d-4fed-4594-bfe3-55aaf0fd89b9)
  3069. )
  3070. (wire (pts (xy 107.442 134.747) (xy 111.379 134.747))
  3071. (stroke (width 0) (type default))
  3072. (uuid 87005f6a-733f-43b1-a376-b757471631fb)
  3073. )
  3074. (bus (pts (xy 471.805 155.956) (xy 471.805 158.242))
  3075. (stroke (width 0) (type default))
  3076. (uuid 87dae458-d9d5-4be2-a51a-5fd124f32c93)
  3077. )
  3078. (wire (pts (xy 21.717 150.495) (xy 28.067 150.495))
  3079. (stroke (width 0) (type default))
  3080. (uuid 886cb69e-d29f-40e1-bbbd-f368aac7faa9)
  3081. )
  3082. (bus (pts (xy 63.627 203.835) (xy 63.627 206.375))
  3083. (stroke (width 0) (type default))
  3084. (uuid 88dd0003-4a3e-4a50-a30b-f0f6a76e9e13)
  3085. )
  3086. (wire (pts (xy 336.931 138.303) (xy 336.931 157.734))
  3087. (stroke (width 0) (type default))
  3088. (uuid 89dd33ee-05a8-44de-a6ea-e7806036164a)
  3089. )
  3090. (wire (pts (xy 50.927 183.515) (xy 61.087 183.515))
  3091. (stroke (width 0) (type default))
  3092. (uuid 8a056125-5015-4090-ae6a-c702a27805ee)
  3093. )
  3094. (bus (pts (xy 353.187 45.974) (xy 353.187 58.928))
  3095. (stroke (width 0) (type default))
  3096. (uuid 8e2434c0-0316-4ad5-a62b-33793d8e1ca7)
  3097. )
  3098. (wire (pts (xy 395.478 41.402) (xy 395.478 47.879))
  3099. (stroke (width 0) (type default))
  3100. (uuid 8eb9be63-024c-4ef7-ad13-fbf66a9a2620)
  3101. )
  3102. (wire (pts (xy 170.434 105.283) (xy 372.11 105.283))
  3103. (stroke (width 0) (type default))
  3104. (uuid 8efea7a4-4db2-4f52-b7fb-ae53f5bda535)
  3105. )
  3106. (wire (pts (xy 558.927 96.774) (xy 558.927 131.064))
  3107. (stroke (width 0) (type default))
  3108. (uuid 8fce747f-7ac0-4d86-a4be-c15198fa042f)
  3109. )
  3110. (wire (pts (xy 522.097 79.629) (xy 522.097 91.694))
  3111. (stroke (width 0) (type default))
  3112. (uuid 91d456e8-5af0-4cb3-baea-7dfd81f2e2dc)
  3113. )
  3114. (bus (pts (xy 19.177 158.115) (xy 19.177 160.655))
  3115. (stroke (width 0) (type default))
  3116. (uuid 92466536-6dd0-4722-95d7-708a2acbbd0e)
  3117. )
  3118. (wire (pts (xy 560.959 94.234) (xy 519.684 94.234))
  3119. (stroke (width 0) (type default))
  3120. (uuid 93f82f77-02b5-4288-b9ba-23a1b4b268a1)
  3121. )
  3122. (wire (pts (xy 536.829 136.144) (xy 536.829 138.684))
  3123. (stroke (width 0) (type default))
  3124. (uuid 9509de03-577b-4fc6-a5f0-6d592ab33c16)
  3125. )
  3126. (wire (pts (xy 52.197 216.535) (xy 52.197 211.455))
  3127. (stroke (width 0) (type default))
  3128. (uuid 953fdfb5-569a-48d8-a954-5cee0c82b642)
  3129. )
  3130. (bus (pts (xy 19.177 206.375) (xy 19.177 221.615))
  3131. (stroke (width 0) (type default))
  3132. (uuid 955b8ed4-2a6b-4fd9-816e-192f3e1e3b96)
  3133. )
  3134. (wire (pts (xy 237.998 139.954) (xy 240.411 139.954))
  3135. (stroke (width 0) (type default))
  3136. (uuid 95c1db81-3362-40b7-83d2-2304cfa55825)
  3137. )
  3138. (wire (pts (xy 519.684 165.481) (xy 557.53 165.481))
  3139. (stroke (width 0) (type default))
  3140. (uuid 96050e69-4349-4e08-8e42-d07f8367a374)
  3141. )
  3142. (wire (pts (xy 274.193 75.565) (xy 274.193 85.852))
  3143. (stroke (width 0) (type default))
  3144. (uuid 9695e04c-47f4-4842-9290-fd2a72856142)
  3145. )
  3146. (wire (pts (xy 50.927 170.815) (xy 61.087 170.815))
  3147. (stroke (width 0) (type default))
  3148. (uuid 96a266ea-9409-4a5b-8f90-f990d3ee04b9)
  3149. )
  3150. (wire (pts (xy 372.11 105.283) (xy 372.11 116.84))
  3151. (stroke (width 0) (type default))
  3152. (uuid 983ada09-8835-4416-96b8-97646c5b5326)
  3153. )
  3154. (wire (pts (xy 610.489 371.729) (xy 608.584 371.729))
  3155. (stroke (width 0) (type default))
  3156. (uuid 986176c3-d4c1-4d37-869d-0fe4875f8258)
  3157. )
  3158. (wire (pts (xy 510.032 77.089) (xy 524.51 77.089))
  3159. (stroke (width 0) (type default))
  3160. (uuid 9902b09b-ea65-4574-b14b-8df7401c0312)
  3161. )
  3162. (wire (pts (xy 570.865 50.419) (xy 390.779 50.419))
  3163. (stroke (width 0) (type default))
  3164. (uuid 99502f68-27f6-4e16-9072-e3ccac0f4e0e)
  3165. )
  3166. (wire (pts (xy 21.717 198.755) (xy 28.067 198.755))
  3167. (stroke (width 0) (type default))
  3168. (uuid 996e8d1f-cdd1-4939-9699-43ff8928b8c4)
  3169. )
  3170. (wire (pts (xy 553.974 141.224) (xy 560.07 141.224))
  3171. (stroke (width 0) (type default))
  3172. (uuid 99b62433-a056-483e-8651-b7ca01969b00)
  3173. )
  3174. (bus (pts (xy 19.177 132.715) (xy 19.177 135.255))
  3175. (stroke (width 0) (type default))
  3176. (uuid 9bde941d-36a6-437e-b148-7484e80f99f2)
  3177. )
  3178. (wire (pts (xy 297.307 132.842) (xy 297.307 108.077))
  3179. (stroke (width 0) (type default))
  3180. (uuid 9c17dde3-dbd7-4442-8c1b-750cc2a4b439)
  3181. )
  3182. (wire (pts (xy 645.541 374.396) (xy 645.541 376.809))
  3183. (stroke (width 0) (type default))
  3184. (uuid 9c3d2a21-1077-4796-a7ab-e6e80cf81216)
  3185. )
  3186. (wire (pts (xy 560.07 170.561) (xy 560.07 141.224))
  3187. (stroke (width 0) (type default))
  3188. (uuid 9e455e3a-49ad-4921-8b24-51c73ffa86e2)
  3189. )
  3190. (wire (pts (xy 372.11 132.08) (xy 372.11 213.995))
  3191. (stroke (width 0) (type default))
  3192. (uuid 9e608efc-c8cc-42f2-89a0-0698f999bebd)
  3193. )
  3194. (wire (pts (xy 510.032 150.876) (xy 522.605 150.876))
  3195. (stroke (width 0) (type default))
  3196. (uuid 9e6bdbd4-f467-4d39-b260-df40addacdf6)
  3197. )
  3198. (wire (pts (xy 377.952 75.565) (xy 274.193 75.565))
  3199. (stroke (width 0) (type default))
  3200. (uuid 9e6c4214-db35-446e-bfd4-bf35e8a35639)
  3201. )
  3202. (wire (pts (xy 238.379 151.511) (xy 238.379 145.034))
  3203. (stroke (width 0) (type default))
  3204. (uuid 9edf8f9a-1a73-4dcf-b0e9-2aaeef47daec)
  3205. )
  3206. (wire (pts (xy 390.779 52.959) (xy 569.849 52.959))
  3207. (stroke (width 0) (type default))
  3208. (uuid a0dd0d55-00a1-435a-9f3b-7053c07520c8)
  3209. )
  3210. (wire (pts (xy 558.927 131.064) (xy 553.974 131.064))
  3211. (stroke (width 0) (type default))
  3212. (uuid a238ba78-0f28-4ddc-aca3-2806fd9220da)
  3213. )
  3214. (wire (pts (xy 285.623 161.544) (xy 301.625 161.544))
  3215. (stroke (width 0) (type default))
  3216. (uuid a2948343-ec96-4ac4-ba30-7295e0ffc6a4)
  3217. )
  3218. (wire (pts (xy 463.677 56.515) (xy 463.677 55.499))
  3219. (stroke (width 0) (type default))
  3220. (uuid a3dbc297-b4c9-457c-9697-643c75e6c699)
  3221. )
  3222. (bus (pts (xy 63.627 74.422) (xy 63.627 108.331))
  3223. (stroke (width 0) (type default))
  3224. (uuid a6834fb3-509e-4817-87af-d14452f07c0d)
  3225. )
  3226. (bus (pts (xy 63.627 134.747) (xy 63.627 142.875))
  3227. (stroke (width 0) (type default))
  3228. (uuid a6938a6b-18e6-441d-a424-199db7fb21e7)
  3229. )
  3230. (wire (pts (xy 28.067 132.715) (xy 25.527 132.715))
  3231. (stroke (width 0) (type default))
  3232. (uuid a6bed81b-5303-444e-b968-6f8c1dd769a9)
  3233. )
  3234. (bus (pts (xy 63.627 183.515) (xy 63.627 186.055))
  3235. (stroke (width 0) (type default))
  3236. (uuid a71f6053-8b01-48fc-b780-9dc44d03621f)
  3237. )
  3238. (wire (pts (xy 21.717 191.135) (xy 28.067 191.135))
  3239. (stroke (width 0) (type default))
  3240. (uuid a87c074f-451f-4d34-9c57-605d70e7f7d6)
  3241. )
  3242. (wire (pts (xy 21.717 183.515) (xy 28.067 183.515))
  3243. (stroke (width 0) (type default))
  3244. (uuid a8c3913f-628c-4e52-beb2-677c09eae72e)
  3245. )
  3246. (wire (pts (xy 341.757 143.383) (xy 343.408 143.383))
  3247. (stroke (width 0) (type default))
  3248. (uuid aa349794-eaf7-4873-be0a-b6b27ecf2d2f)
  3249. )
  3250. (wire (pts (xy 205.486 130.937) (xy 205.486 136.017))
  3251. (stroke (width 0) (type default))
  3252. (uuid ab99bb0e-20e3-4ff9-a931-446b0db60cb3)
  3253. )
  3254. (bus (pts (xy 353.187 25.4) (xy 471.805 25.4))
  3255. (stroke (width 0) (type default))
  3256. (uuid ab99db1d-7a04-437a-ad42-67a1ba014388)
  3257. )
  3258. (wire (pts (xy 419.354 38.862) (xy 413.766 38.862))
  3259. (stroke (width 0) (type default))
  3260. (uuid aba55150-a551-4b6a-b665-e39f4b953cbf)
  3261. )
  3262. (wire (pts (xy 111.379 134.747) (xy 111.379 108.331))
  3263. (stroke (width 0) (type default))
  3264. (uuid abfa58ae-9777-40ae-9d54-adc29f43b757)
  3265. )
  3266. (wire (pts (xy 279.146 129.794) (xy 279.146 132.842))
  3267. (stroke (width 0) (type default))
  3268. (uuid ac9da363-b774-4d37-b9f0-90629fd196cd)
  3269. )
  3270. (wire (pts (xy 21.717 158.115) (xy 28.067 158.115))
  3271. (stroke (width 0) (type default))
  3272. (uuid ad0ef27e-9fe0-4ce4-b192-2ce13dcbd169)
  3273. )
  3274. (wire (pts (xy 274.32 90.932) (xy 277.368 90.932))
  3275. (stroke (width 0) (type default))
  3276. (uuid ad3d445e-42fe-4f07-bd8b-8208e92d06ec)
  3277. )
  3278. (wire (pts (xy 263.779 149.606) (xy 278.003 149.606))
  3279. (stroke (width 0) (type default))
  3280. (uuid ae6785a3-cd00-4672-b957-6ace831f53a9)
  3281. )
  3282. (bus (pts (xy 19.177 150.495) (xy 19.177 153.035))
  3283. (stroke (width 0) (type default))
  3284. (uuid af9291d1-ede6-457e-ba3e-ff8aab383de6)
  3285. )
  3286. (wire (pts (xy 50.927 203.835) (xy 61.087 203.835))
  3287. (stroke (width 0) (type default))
  3288. (uuid af945b11-a329-426a-9004-7fff559c677c)
  3289. )
  3290. (wire (pts (xy 536.829 131.064) (xy 541.274 131.064))
  3291. (stroke (width 0) (type default))
  3292. (uuid b15a563a-af5d-4edc-baa0-7865ab22d37c)
  3293. )
  3294. (wire (pts (xy 297.307 108.077) (xy 419.354 108.077))
  3295. (stroke (width 0) (type default))
  3296. (uuid b3531930-22fd-4ff3-a0f4-766bf77c0a11)
  3297. )
  3298. (wire (pts (xy 21.717 142.875) (xy 28.067 142.875))
  3299. (stroke (width 0) (type default))
  3300. (uuid b3be9fee-181f-4f9e-9116-e8544ceed5c7)
  3301. )
  3302. (wire (pts (xy 441.833 76.708) (xy 441.833 162.814))
  3303. (stroke (width 0) (type default))
  3304. (uuid b3ddc0db-cfa2-4ce0-8444-128acc7cc612)
  3305. )
  3306. (bus (pts (xy 19.177 183.515) (xy 19.177 186.055))
  3307. (stroke (width 0) (type default))
  3308. (uuid b43509ee-f861-4562-8a16-8655ee067b09)
  3309. )
  3310. (bus (pts (xy 63.627 191.135) (xy 63.627 193.675))
  3311. (stroke (width 0) (type default))
  3312. (uuid b4a4bd64-5931-420c-af14-cd62ae0c3b77)
  3313. )
  3314. (wire (pts (xy 52.197 132.715) (xy 50.927 132.715))
  3315. (stroke (width 0) (type default))
  3316. (uuid b4ce47eb-becb-43c3-ae95-5c6607ea8d15)
  3317. )
  3318. (wire (pts (xy 536.829 120.904) (xy 536.829 123.444))
  3319. (stroke (width 0) (type default))
  3320. (uuid b519db85-64a9-41ec-80d3-2681141f49e3)
  3321. )
  3322. (bus (pts (xy 19.177 170.815) (xy 19.177 173.355))
  3323. (stroke (width 0) (type default))
  3324. (uuid b62a31e8-86e0-4987-9f61-cea87fcbdcd0)
  3325. )
  3326. (wire (pts (xy 560.959 133.604) (xy 560.959 94.234))
  3327. (stroke (width 0) (type default))
  3328. (uuid b6ee6233-bff0-41f7-9fc5-36e50f487c7f)
  3329. )
  3330. (wire (pts (xy 25.527 123.825) (xy 52.197 123.825))
  3331. (stroke (width 0) (type default))
  3332. (uuid b716e52d-4a8c-4718-8b22-36a34af654a0)
  3333. )
  3334. (wire (pts (xy 109.982 55.372) (xy 109.982 79.502))
  3335. (stroke (width 0) (type default))
  3336. (uuid b73e1895-0236-4b68-95b3-a82e34da8bff)
  3337. )
  3338. (wire (pts (xy 533.908 109.22) (xy 533.654 109.22))
  3339. (stroke (width 0) (type default))
  3340. (uuid b81f3439-adcd-4a20-b8fe-346c09ed375a)
  3341. )
  3342. (bus (pts (xy 471.805 150.876) (xy 471.805 153.416))
  3343. (stroke (width 0) (type default))
  3344. (uuid b8631daf-f9fe-47ba-9112-4692c29dbed8)
  3345. )
  3346. (bus (pts (xy 471.805 148.336) (xy 471.805 150.876))
  3347. (stroke (width 0) (type default))
  3348. (uuid b8ffffe5-bf2a-48da-836e-620b54118fec)
  3349. )
  3350. (bus (pts (xy 19.177 193.675) (xy 19.177 196.215))
  3351. (stroke (width 0) (type default))
  3352. (uuid b9406bfc-6288-4726-a14d-040388b5e533)
  3353. )
  3354. (wire (pts (xy 557.53 146.304) (xy 557.53 165.481))
  3355. (stroke (width 0) (type default))
  3356. (uuid b9cc41c2-66e6-46af-83e7-079dfc4f7aed)
  3357. )
  3358. (wire (pts (xy 522.097 91.694) (xy 563.118 91.694))
  3359. (stroke (width 0) (type default))
  3360. (uuid bae57c23-11fe-4939-8622-2beca5172abf)
  3361. )
  3362. (wire (pts (xy 278.003 171.577) (xy 263.779 171.577))
  3363. (stroke (width 0) (type default))
  3364. (uuid bd01bb10-4f27-4e2b-a77a-8f1ef44e41ea)
  3365. )
  3366. (wire (pts (xy 301.625 45.339) (xy 365.379 45.339))
  3367. (stroke (width 0) (type default))
  3368. (uuid bd069a30-519a-48f5-8c5e-794b5120e3fc)
  3369. )
  3370. (bus (pts (xy 19.177 145.415) (xy 19.177 147.955))
  3371. (stroke (width 0) (type default))
  3372. (uuid be162810-6118-4108-9617-af9b15c003fc)
  3373. )
  3374. (wire (pts (xy 50.927 178.435) (xy 61.087 178.435))
  3375. (stroke (width 0) (type default))
  3376. (uuid be85afa1-4483-468c-8809-4c01722a7456)
  3377. )
  3378. (wire (pts (xy 66.167 76.962) (xy 82.042 76.962))
  3379. (stroke (width 0) (type default))
  3380. (uuid c1813a3c-cc3c-4af3-b28a-0ca6a06a2578)
  3381. )
  3382. (wire (pts (xy 510.032 91.694) (xy 522.097 91.694))
  3383. (stroke (width 0) (type default))
  3384. (uuid c18efd32-50a7-4588-b966-3bbe3af77971)
  3385. )
  3386. (wire (pts (xy 285.75 162.814) (xy 316.357 162.814))
  3387. (stroke (width 0) (type default))
  3388. (uuid c19d84e5-aa31-462f-9e64-10824ed79c1c)
  3389. )
  3390. (wire (pts (xy 107.442 55.372) (xy 109.982 55.372))
  3391. (stroke (width 0) (type default))
  3392. (uuid c1dc3c46-e70c-4b14-a628-e3e4956c94f1)
  3393. )
  3394. (bus (pts (xy 471.805 74.549) (xy 471.805 53.975))
  3395. (stroke (width 0) (type default))
  3396. (uuid c2410fc0-f81d-4944-b091-5aa5dd8f9609)
  3397. )
  3398. (wire (pts (xy 21.717 178.435) (xy 28.067 178.435))
  3399. (stroke (width 0) (type default))
  3400. (uuid c2805a16-e5e2-4852-be57-e084ba91f210)
  3401. )
  3402. (wire (pts (xy 50.927 165.735) (xy 61.087 165.735))
  3403. (stroke (width 0) (type default))
  3404. (uuid c2c76a44-d9ff-4a10-95a5-3489c950b08a)
  3405. )
  3406. (wire (pts (xy 570.865 50.419) (xy 570.865 120.904))
  3407. (stroke (width 0) (type default))
  3408. (uuid c3ade108-a207-4f83-84bb-7e5ca1ef5228)
  3409. )
  3410. (wire (pts (xy 111.379 108.331) (xy 107.442 108.331))
  3411. (stroke (width 0) (type default))
  3412. (uuid c3e623ca-7cf5-4ee8-95ea-33044426319e)
  3413. )
  3414. (wire (pts (xy 474.345 153.416) (xy 484.632 153.416))
  3415. (stroke (width 0) (type default))
  3416. (uuid c4081a6d-2802-446f-b005-ede3ad7ff295)
  3417. )
  3418. (wire (pts (xy 171.704 163.068) (xy 171.704 161.544))
  3419. (stroke (width 0) (type default))
  3420. (uuid c4d70e37-54da-4eea-9675-50e4eb37b3c7)
  3421. )
  3422. (wire (pts (xy 522.605 150.876) (xy 522.605 163.068))
  3423. (stroke (width 0) (type default))
  3424. (uuid c525b9a2-1866-4dde-bc20-fb7b05456cb8)
  3425. )
  3426. (wire (pts (xy 279.146 132.842) (xy 297.307 132.842))
  3427. (stroke (width 0) (type default))
  3428. (uuid c52f9cae-07a6-49db-97bc-51dc60a607f1)
  3429. )
  3430. (wire (pts (xy 350.012 52.959) (xy 350.012 76.708))
  3431. (stroke (width 0) (type default))
  3432. (uuid c64257d9-0af5-4649-ada7-7832b9add834)
  3433. )
  3434. (wire (pts (xy 536.829 151.384) (xy 541.274 151.384))
  3435. (stroke (width 0) (type default))
  3436. (uuid c793e19d-fa2e-484c-8cc3-e19502647f17)
  3437. )
  3438. (wire (pts (xy 608.584 371.729) (xy 608.584 376.809))
  3439. (stroke (width 0) (type default))
  3440. (uuid cb03fdd6-05ff-4dbd-b922-79a47815c64f)
  3441. )
  3442. (wire (pts (xy 536.829 133.604) (xy 536.829 136.144))
  3443. (stroke (width 0) (type default))
  3444. (uuid cbb21771-d7e5-47db-87e0-fe3aaeb8fa0c)
  3445. )
  3446. (wire (pts (xy 278.003 166.624) (xy 278.003 171.577))
  3447. (stroke (width 0) (type default))
  3448. (uuid cc1cc472-c9a6-4697-8ffc-cc97a6ab8f40)
  3449. )
  3450. (wire (pts (xy 474.345 155.956) (xy 484.632 155.956))
  3451. (stroke (width 0) (type default))
  3452. (uuid cdc8ed57-f465-4775-8333-050d3f993ac8)
  3453. )
  3454. (wire (pts (xy 404.876 224.155) (xy 410.845 224.155))
  3455. (stroke (width 0) (type default))
  3456. (uuid cf03e1a6-e162-44bf-8e12-81045ae941bc)
  3457. )
  3458. (wire (pts (xy 255.651 142.494) (xy 311.785 142.494))
  3459. (stroke (width 0) (type default))
  3460. (uuid cf1789dd-c37f-4e35-bcc6-44be7d6eb574)
  3461. )
  3462. (wire (pts (xy 564.642 138.684) (xy 553.974 138.684))
  3463. (stroke (width 0) (type default))
  3464. (uuid cfd3e194-64e4-48c1-a956-62ae03ea5ac8)
  3465. )
  3466. (wire (pts (xy 16.637 144.145) (xy 16.637 140.335))
  3467. (stroke (width 0) (type default))
  3468. (uuid cfe7c14f-04f5-4d70-87bc-e61ab97da41b)
  3469. )
  3470. (wire (pts (xy 510.032 100.584) (xy 525.272 100.584))
  3471. (stroke (width 0) (type default))
  3472. (uuid d06c9f84-3c38-4000-b333-09664f3701d2)
  3473. )
  3474. (wire (pts (xy 336.931 138.303) (xy 343.408 138.303))
  3475. (stroke (width 0) (type default))
  3476. (uuid d09d3a8a-6e5e-48b7-9867-05c4cc83555e)
  3477. )
  3478. (wire (pts (xy 286.766 119.634) (xy 336.931 119.634))
  3479. (stroke (width 0) (type default))
  3480. (uuid d2177df3-9d75-4027-a523-a01209ddc7cb)
  3481. )
  3482. (wire (pts (xy 50.927 175.895) (xy 61.087 175.895))
  3483. (stroke (width 0) (type default))
  3484. (uuid d30ff757-5086-471a-bf5a-7aea2b80549c)
  3485. )
  3486. (wire (pts (xy 536.829 125.984) (xy 541.274 125.984))
  3487. (stroke (width 0) (type default))
  3488. (uuid d404e082-18e6-4edb-b2bd-4af2886baa06)
  3489. )
  3490. (wire (pts (xy 50.927 168.275) (xy 61.087 168.275))
  3491. (stroke (width 0) (type default))
  3492. (uuid d53b7e36-4596-4e3d-8c8c-54e3a704acaf)
  3493. )
  3494. (wire (pts (xy 463.677 55.499) (xy 390.779 55.499))
  3495. (stroke (width 0) (type default))
  3496. (uuid d6f46d41-a74d-489d-8df7-4ef64f56573b)
  3497. )
  3498. (wire (pts (xy 528.066 176.911) (xy 510.032 176.911))
  3499. (stroke (width 0) (type default))
  3500. (uuid d719cf1d-2f43-4ae2-b6c0-ac111c092373)
  3501. )
  3502. (wire (pts (xy 258.064 156.464) (xy 270.383 156.464))
  3503. (stroke (width 0) (type default))
  3504. (uuid d730a69e-c6c6-4106-bfb3-a1e69fe93491)
  3505. )
  3506. (wire (pts (xy 50.927 140.335) (xy 61.087 140.335))
  3507. (stroke (width 0) (type default))
  3508. (uuid d74e67df-04e0-431d-b958-6641d280ca3c)
  3509. )
  3510. (bus (pts (xy 19.177 221.615) (xy 63.627 221.615))
  3511. (stroke (width 0) (type default))
  3512. (uuid d7772c62-b350-4305-833f-4eb99213c9e1)
  3513. )
  3514. (wire (pts (xy 510.032 168.021) (xy 516.509 168.021))
  3515. (stroke (width 0) (type default))
  3516. (uuid d7b17120-d603-4cc7-829c-5d0fbecef3d0)
  3517. )
  3518. (wire (pts (xy 227.584 168.402) (xy 227.584 156.591))
  3519. (stroke (width 0) (type default))
  3520. (uuid d90f0133-c98e-4b45-b03a-daaf89832d4b)
  3521. )
  3522. (bus (pts (xy 353.187 25.4) (xy 353.187 45.974))
  3523. (stroke (width 0) (type default))
  3524. (uuid d97f8f07-c223-4175-9a1c-00b4d5044ba3)
  3525. )
  3526. (wire (pts (xy 360.045 69.723) (xy 360.045 63.119))
  3527. (stroke (width 0) (type default))
  3528. (uuid da3127da-3012-4172-afe1-c740d4b95033)
  3529. )
  3530. (wire (pts (xy 536.829 143.764) (xy 541.274 143.764))
  3531. (stroke (width 0) (type default))
  3532. (uuid da45a825-1480-4758-8bc4-a19df26dec04)
  3533. )
  3534. (wire (pts (xy 238.379 145.034) (xy 240.411 145.034))
  3535. (stroke (width 0) (type default))
  3536. (uuid daa06388-f711-4031-9e2f-b26470357f76)
  3537. )
  3538. (wire (pts (xy 395.478 36.322) (xy 395.478 41.402))
  3539. (stroke (width 0) (type default))
  3540. (uuid dbd1bb75-27bc-4c90-933f-c9af4bc62285)
  3541. )
  3542. (wire (pts (xy 336.931 157.734) (xy 343.027 157.734))
  3543. (stroke (width 0) (type default))
  3544. (uuid dbe4bb0d-dfd3-48cf-8ec8-3c111d66b5f4)
  3545. )
  3546. (wire (pts (xy 285.75 173.99) (xy 285.75 162.814))
  3547. (stroke (width 0) (type default))
  3548. (uuid dd043ba9-3f0b-4874-89af-9f2aece81069)
  3549. )
  3550. (wire (pts (xy 50.927 137.795) (xy 61.087 137.795))
  3551. (stroke (width 0) (type default))
  3552. (uuid de346f30-5e70-45b0-9f42-faabe031dbcc)
  3553. )
  3554. (wire (pts (xy 513.969 158.496) (xy 510.032 158.496))
  3555. (stroke (width 0) (type default))
  3556. (uuid e05e8bfc-22de-456c-a60c-cc9c3aef8c90)
  3557. )
  3558. (wire (pts (xy 255.524 154.051) (xy 258.064 154.051))
  3559. (stroke (width 0) (type default))
  3560. (uuid e124b299-12ea-4c25-a63d-f92621b5ca01)
  3561. )
  3562. (wire (pts (xy 311.785 114.681) (xy 528.066 114.681))
  3563. (stroke (width 0) (type default))
  3564. (uuid e1a360ac-2539-41aa-96b0-a654b5190975)
  3565. )
  3566. (wire (pts (xy 292.608 88.392) (xy 312.166 88.392))
  3567. (stroke (width 0) (type default))
  3568. (uuid e1c89777-0a59-4448-a172-880b4dbaa261)
  3569. )
  3570. (wire (pts (xy 474.345 79.629) (xy 484.632 79.629))
  3571. (stroke (width 0) (type default))
  3572. (uuid e219a357-b28a-42c1-a16d-5f1446fb2f17)
  3573. )
  3574. (wire (pts (xy 348.742 32.385) (xy 348.742 55.499))
  3575. (stroke (width 0) (type default))
  3576. (uuid e2384355-ebf0-44e2-b01d-5a5207f7fb4d)
  3577. )
  3578. (wire (pts (xy 25.527 216.535) (xy 52.197 216.535))
  3579. (stroke (width 0) (type default))
  3580. (uuid e23ff8ac-3d9b-4817-8355-22d53cf27818)
  3581. )
  3582. (bus (pts (xy 19.177 180.975) (xy 19.177 183.515))
  3583. (stroke (width 0) (type default))
  3584. (uuid e242c75a-ac5f-4106-843b-12c9c09e3558)
  3585. )
  3586. (wire (pts (xy 645.541 379.476) (xy 647.192 379.476))
  3587. (stroke (width 0) (type default))
  3588. (uuid e27ccbdf-f683-4a6c-ab6d-b91e5591eab6)
  3589. )
  3590. (wire (pts (xy 21.717 155.575) (xy 28.067 155.575))
  3591. (stroke (width 0) (type default))
  3592. (uuid e30101f0-6e6b-41b5-ae37-8deb7ff0c59e)
  3593. )
  3594. (wire (pts (xy 510.032 170.561) (xy 513.969 170.561))
  3595. (stroke (width 0) (type default))
  3596. (uuid e376fb4d-cfb8-4660-af99-fbe7c02be065)
  3597. )
  3598. (bus (pts (xy 63.627 178.435) (xy 63.627 180.975))
  3599. (stroke (width 0) (type default))
  3600. (uuid e3c3a147-42b2-4bad-8f5e-e89ccf1fec56)
  3601. )
  3602. (wire (pts (xy 383.286 165.354) (xy 377.952 165.354))
  3603. (stroke (width 0) (type default))
  3604. (uuid e53a8c85-4a7c-4119-8b86-4c2cb4eb74fa)
  3605. )
  3606. (bus (pts (xy 63.627 211.455) (xy 63.627 221.615))
  3607. (stroke (width 0) (type default))
  3608. (uuid e62be0ec-9a6b-4ca8-8cdb-7853882c2a2d)
  3609. )
  3610. (wire (pts (xy 516.509 168.021) (xy 559.054 168.021))
  3611. (stroke (width 0) (type default))
  3612. (uuid e6f602df-a7ce-4cc3-bdcc-43d4e4edf4b4)
  3613. )
  3614. (bus (pts (xy 63.627 165.735) (xy 63.627 168.275))
  3615. (stroke (width 0) (type default))
  3616. (uuid e802bdfc-c915-4acb-95ab-280ab1d38c9b)
  3617. )
  3618. (wire (pts (xy 390.779 45.339) (xy 572.516 45.339))
  3619. (stroke (width 0) (type default))
  3620. (uuid e872338f-7781-4084-9a0f-7c0fb2dda7f7)
  3621. )
  3622. (bus (pts (xy 63.627 186.055) (xy 63.627 188.595))
  3623. (stroke (width 0) (type default))
  3624. (uuid e8816fca-0ff3-4272-9369-535c5d29b521)
  3625. )
  3626. (wire (pts (xy 536.829 143.764) (xy 536.829 146.304))
  3627. (stroke (width 0) (type default))
  3628. (uuid e88a3830-efb1-49b5-92de-6969071d22de)
  3629. )
  3630. (bus (pts (xy 19.177 135.255) (xy 19.177 142.875))
  3631. (stroke (width 0) (type default))
  3632. (uuid e8f733ec-ed07-4ef5-b8f5-1cb8b362943a)
  3633. )
  3634. (wire (pts (xy 474.345 84.709) (xy 484.632 84.709))
  3635. (stroke (width 0) (type default))
  3636. (uuid eaa905fd-bd37-4c9c-b50e-c441b8b8a01d)
  3637. )
  3638. (wire (pts (xy 572.516 45.339) (xy 572.516 128.524))
  3639. (stroke (width 0) (type default))
  3640. (uuid ebd18ce4-4032-43b7-847c-06bbd53c717f)
  3641. )
  3642. (wire (pts (xy 316.357 130.175) (xy 316.357 162.814))
  3643. (stroke (width 0) (type default))
  3644. (uuid ebeea347-72a7-45d4-aeb3-2176309c131e)
  3645. )
  3646. (wire (pts (xy 363.347 47.879) (xy 365.379 47.879))
  3647. (stroke (width 0) (type default))
  3648. (uuid eeb996cb-f6c2-4148-a8f0-ca2854d1086b)
  3649. )
  3650. (wire (pts (xy 536.829 148.844) (xy 541.274 148.844))
  3651. (stroke (width 0) (type default))
  3652. (uuid ef3a6162-4e11-4cb6-af2f-41efc44e9476)
  3653. )
  3654. (wire (pts (xy 536.829 141.224) (xy 536.829 143.764))
  3655. (stroke (width 0) (type default))
  3656. (uuid ef7b4f20-b7f4-4189-b239-ffb207901f2d)
  3657. )
  3658. (bus (pts (xy 63.627 180.975) (xy 63.627 183.515))
  3659. (stroke (width 0) (type default))
  3660. (uuid effcc796-7467-43f6-a618-e8e58cfdbf81)
  3661. )
  3662. (wire (pts (xy 50.927 191.135) (xy 61.087 191.135))
  3663. (stroke (width 0) (type default))
  3664. (uuid f021b38a-8bc2-4b94-8cba-e94b6d248b50)
  3665. )
  3666. (wire (pts (xy 66.167 137.287) (xy 82.042 137.287))
  3667. (stroke (width 0) (type default))
  3668. (uuid f1808a70-26ad-435c-a6e9-d5d364ac167b)
  3669. )
  3670. (bus (pts (xy 63.627 196.215) (xy 63.627 198.755))
  3671. (stroke (width 0) (type default))
  3672. (uuid f18b8356-7adc-4a46-bdb0-ee214ad4393e)
  3673. )
  3674. (wire (pts (xy 524.51 89.281) (xy 564.642 89.281))
  3675. (stroke (width 0) (type default))
  3676. (uuid f2891178-fee1-4ddf-91af-4811eb6a6b62)
  3677. )
  3678. (wire (pts (xy 21.717 208.915) (xy 28.067 208.915))
  3679. (stroke (width 0) (type default))
  3680. (uuid f2db4fff-4be2-452e-8d46-9c0ef41804e6)
  3681. )
  3682. (wire (pts (xy 372.11 132.08) (xy 380.619 132.08))
  3683. (stroke (width 0) (type default))
  3684. (uuid f3390871-4536-4fb8-9fed-b9e7fed041fa)
  3685. )
  3686. (wire (pts (xy 474.345 150.876) (xy 484.632 150.876))
  3687. (stroke (width 0) (type default))
  3688. (uuid f3bf7a3d-229b-430c-9cba-e2b40c600829)
  3689. )
  3690. (wire (pts (xy 336.931 119.634) (xy 336.931 122.555))
  3691. (stroke (width 0) (type default))
  3692. (uuid f3fdc765-7bdc-4c07-91c4-fa05241e0b99)
  3693. )
  3694. (wire (pts (xy 536.829 123.444) (xy 541.274 123.444))
  3695. (stroke (width 0) (type default))
  3696. (uuid f4f55cee-caea-4980-b896-99a049f914a8)
  3697. )
  3698. (wire (pts (xy 50.927 173.355) (xy 61.087 173.355))
  3699. (stroke (width 0) (type default))
  3700. (uuid f675428b-eba9-4d9f-9c5a-8539f6624fdf)
  3701. )
  3702. (wire (pts (xy 522.605 163.068) (xy 510.032 163.068))
  3703. (stroke (width 0) (type default))
  3704. (uuid f6a9013b-86c8-4cb1-8978-0082b4203ff6)
  3705. )
  3706. (bus (pts (xy 63.627 175.895) (xy 63.627 178.435))
  3707. (stroke (width 0) (type default))
  3708. (uuid f6c5dcaf-d7c7-4ef2-bf7f-acb2816fe791)
  3709. )
  3710. (wire (pts (xy 645.541 376.809) (xy 645.541 379.476))
  3711. (stroke (width 0) (type default))
  3712. (uuid f76f919a-e5b2-4226-a601-e8e017fc0f8f)
  3713. )
  3714. (wire (pts (xy 21.717 137.795) (xy 28.067 137.795))
  3715. (stroke (width 0) (type default))
  3716. (uuid f7f18f9e-358e-4b48-955e-d63eac47c31b)
  3717. )
  3718. (wire (pts (xy 510.032 165.481) (xy 519.684 165.481))
  3719. (stroke (width 0) (type default))
  3720. (uuid f8aff9bf-20ac-40eb-a5c0-39131593a8e6)
  3721. )
  3722. (wire (pts (xy 474.345 82.169) (xy 484.632 82.169))
  3723. (stroke (width 0) (type default))
  3724. (uuid f93cda62-8818-44e0-be6b-a8374868fb69)
  3725. )
  3726. (wire (pts (xy 513.969 170.561) (xy 560.07 170.561))
  3727. (stroke (width 0) (type default))
  3728. (uuid f9514e7e-7045-47c0-a39d-8d307d7dc15c)
  3729. )
  3730. (bus (pts (xy 19.177 147.955) (xy 19.177 150.495))
  3731. (stroke (width 0) (type default))
  3732. (uuid fae38c41-69ca-4fc6-be42-1e4effdd59af)
  3733. )
  3734. (wire (pts (xy 553.974 148.844) (xy 556.006 148.844))
  3735. (stroke (width 0) (type default))
  3736. (uuid fb0f2d96-9a3c-40b3-a254-18d79555a099)
  3737. )
  3738. (wire (pts (xy 170.434 156.464) (xy 173.736 156.464))
  3739. (stroke (width 0) (type default))
  3740. (uuid fb245d04-3cb3-4ec6-835a-5ecc5778c7fb)
  3741. )
  3742. (wire (pts (xy 246.38 122.174) (xy 271.526 122.174))
  3743. (stroke (width 0) (type default))
  3744. (uuid fb44c127-f0bf-47fc-9604-a287a6ffcb3b)
  3745. )
  3746. (wire (pts (xy 316.357 125.095) (xy 311.785 125.095))
  3747. (stroke (width 0) (type default))
  3748. (uuid fd816d04-b02d-4c60-8fa2-2b64517d5b9f)
  3749. )
  3750. (wire (pts (xy 410.845 224.155) (xy 410.845 174.752))
  3751. (stroke (width 0) (type default))
  3752. (uuid fde4752a-9d47-4e78-829f-5634b79e877a)
  3753. )
  3754. (wire (pts (xy 536.829 138.684) (xy 536.829 141.224))
  3755. (stroke (width 0) (type default))
  3756. (uuid ff0e3a81-d0c4-4058-8af3-0412f195d50a)
  3757. )
  3758. (wire (pts (xy 372.11 213.995) (xy 379.476 213.995))
  3759. (stroke (width 0) (type default))
  3760. (uuid ffe8262d-a15b-4341-8404-717ca35af66d)
  3761. )
  3762. (label "D3" (at 474.472 158.496 0) (fields_autoplaced)
  3763. (effects (font (size 1.27 1.27)) (justify left bottom))
  3764. (uuid 004a6f66-04c8-46b2-899f-bbdb5002d75e)
  3765. )
  3766. (label "A15" (at 608.584 371.729 180) (fields_autoplaced)
  3767. (effects (font (size 1.27 1.27)) (justify right bottom))
  3768. (uuid 03a272e3-c005-43e8-a4c5-f1cef31a5bbe)
  3769. )
  3770. (label "~{RST}" (at 21.717 168.275 0) (fields_autoplaced)
  3771. (effects (font (size 1.27 1.27)) (justify left bottom))
  3772. (uuid 061d2294-75b7-4fc1-8cd8-fa5674412d55)
  3773. )
  3774. (label "~{XMEMFL}" (at 61.087 140.335 180) (fields_autoplaced)
  3775. (effects (font (size 1.27 1.27)) (justify right bottom))
  3776. (uuid 0c43a94e-cfc0-49d7-80e6-6dc39a7d107e)
  3777. )
  3778. (label "A6" (at 61.087 188.595 180) (fields_autoplaced)
  3779. (effects (font (size 1.27 1.27)) (justify right bottom))
  3780. (uuid 0f0d6b44-b4ba-4310-b518-ac1a43681064)
  3781. )
  3782. (label "~{XM}" (at 21.717 201.295 0) (fields_autoplaced)
  3783. (effects (font (size 1.27 1.27)) (justify left bottom))
  3784. (uuid 1021753e-84b3-4023-ba23-6d78162f4b6f)
  3785. )
  3786. (label "~{RST}" (at 355.727 48.514 0) (fields_autoplaced)
  3787. (effects (font (size 1.27 1.27)) (justify left bottom))
  3788. (uuid 121fe7f8-b3b0-4a75-b93f-dc85f9dbae97)
  3789. )
  3790. (label "~{C3}" (at 21.717 178.435 0) (fields_autoplaced)
  3791. (effects (font (size 1.27 1.27)) (justify left bottom))
  3792. (uuid 153fd7f8-670d-459d-8783-4091b21c9339)
  3793. )
  3794. (label "~{INP}" (at 21.717 173.355 0) (fields_autoplaced)
  3795. (effects (font (size 1.27 1.27)) (justify left bottom))
  3796. (uuid 1ba8f9db-4270-462a-a44d-5b2e9f90e55b)
  3797. )
  3798. (label "~{NMI}" (at 21.717 191.135 0) (fields_autoplaced)
  3799. (effects (font (size 1.27 1.27)) (justify left bottom))
  3800. (uuid 1ced5fe4-f3ac-4382-8376-5b474dde0be5)
  3801. )
  3802. (label "A11" (at 61.087 175.895 180) (fields_autoplaced)
  3803. (effects (font (size 1.27 1.27)) (justify right bottom))
  3804. (uuid 1e9d4b3f-acd2-4982-b404-ab6e9b8be5fd)
  3805. )
  3806. (label "D2" (at 474.472 155.956 0) (fields_autoplaced)
  3807. (effects (font (size 1.27 1.27)) (justify left bottom))
  3808. (uuid 356d3cf2-002f-40c5-a63b-a885c05ddf45)
  3809. )
  3810. (label "D7" (at 474.472 84.709 0) (fields_autoplaced)
  3811. (effects (font (size 1.27 1.27)) (justify left bottom))
  3812. (uuid 3c6fec7f-5923-454d-9120-8a8f98cd537c)
  3813. )
  3814. (label "A13" (at 61.087 170.815 180) (fields_autoplaced)
  3815. (effects (font (size 1.27 1.27)) (justify right bottom))
  3816. (uuid 400a68c9-6ba1-4fed-84fc-597d2dafc7b8)
  3817. )
  3818. (label "~{RESIN}" (at 469.265 56.515 180) (fields_autoplaced)
  3819. (effects (font (size 0.9906 0.9906)) (justify right bottom))
  3820. (uuid 425b7917-bed4-488f-8b99-fc19c0e91a3a)
  3821. )
  3822. (label "~{CS}" (at 205.486 130.937 180) (fields_autoplaced)
  3823. (effects (font (size 1.27 1.27)) (justify right bottom))
  3824. (uuid 4921b72c-1816-4863-a176-78fce2d4adef)
  3825. )
  3826. (label "~{STATUS}" (at 21.717 170.815 0) (fields_autoplaced)
  3827. (effects (font (size 1.27 1.27)) (justify left bottom))
  3828. (uuid 4e01d2bb-ff88-4ce5-a795-8c1f01896d93)
  3829. )
  3830. (label "~{STATUS}" (at 227.584 156.591 180) (fields_autoplaced)
  3831. (effects (font (size 1.27 1.27)) (justify right bottom))
  3832. (uuid 4ec74bd3-6912-4ac7-a8f7-d7a7bfa46f3c)
  3833. )
  3834. (label "A0" (at 61.087 203.835 180) (fields_autoplaced)
  3835. (effects (font (size 1.27 1.27)) (justify right bottom))
  3836. (uuid 51b70321-6b60-431c-8c3b-20524a9094a8)
  3837. )
  3838. (label "~{XOUTSTB}" (at 28.067 198.755 180) (fields_autoplaced)
  3839. (effects (font (size 1.27 1.27)) (justify right bottom))
  3840. (uuid 52257110-434d-495c-bebc-4d11dbba266d)
  3841. )
  3842. (label "A2" (at 61.087 198.755 180) (fields_autoplaced)
  3843. (effects (font (size 1.27 1.27)) (justify right bottom))
  3844. (uuid 52ae06da-2df2-48bd-95e8-e1a02e8cd7e4)
  3845. )
  3846. (label "D4" (at 21.717 153.035 0) (fields_autoplaced)
  3847. (effects (font (size 1.27 1.27)) (justify left bottom))
  3848. (uuid 578ad87a-1557-4ce2-9a17-093677fd5d26)
  3849. )
  3850. (label "~{C4}" (at 21.717 175.895 0) (fields_autoplaced)
  3851. (effects (font (size 1.27 1.27)) (justify left bottom))
  3852. (uuid 5be1c0f2-de21-467d-b362-9f5ad562e51b)
  3853. )
  3854. (label "~{OUT}" (at 21.717 186.055 0) (fields_autoplaced)
  3855. (effects (font (size 1.27 1.27)) (justify left bottom))
  3856. (uuid 5de44b67-5f59-4084-b471-7cb136b04a30)
  3857. )
  3858. (label "~{RESIN}" (at 21.717 137.795 0) (fields_autoplaced)
  3859. (effects (font (size 0.9906 0.9906)) (justify left bottom))
  3860. (uuid 65cef0ae-fe22-4d1e-8771-80828aacb4b8)
  3861. )
  3862. (label "~{C2}" (at 21.717 180.975 0) (fields_autoplaced)
  3863. (effects (font (size 1.27 1.27)) (justify left bottom))
  3864. (uuid 669d8df6-9cd3-47bf-8b3e-b4a18619cc6c)
  3865. )
  3866. (label "D0" (at 66.167 57.912 0) (fields_autoplaced)
  3867. (effects (font (size 1.27 1.27)) (justify left bottom))
  3868. (uuid 69e6faa6-c6bd-44d9-8c82-e2d8c7074168)
  3869. )
  3870. (label "D1" (at 66.167 76.962 0) (fields_autoplaced)
  3871. (effects (font (size 1.27 1.27)) (justify left bottom))
  3872. (uuid 6b27cf47-73ec-4cdc-92ae-a46b7ecc8ca5)
  3873. )
  3874. (label "A14" (at 626.491 379.349 180) (fields_autoplaced)
  3875. (effects (font (size 1.27 1.27)) (justify right bottom))
  3876. (uuid 6c94d8b7-f73a-40f3-9b67-dbd8bed1da4d)
  3877. )
  3878. (label "D5" (at 474.472 79.629 0) (fields_autoplaced)
  3879. (effects (font (size 1.27 1.27)) (justify left bottom))
  3880. (uuid 6d26e393-66c4-4bc4-8565-8320f2936e17)
  3881. )
  3882. (label "~{CS}" (at 21.717 188.595 0) (fields_autoplaced)
  3883. (effects (font (size 1.27 1.27)) (justify left bottom))
  3884. (uuid 7249c70b-5367-4324-a2b4-3c0f8e1e6942)
  3885. )
  3886. (label "A5" (at 61.087 191.135 180) (fields_autoplaced)
  3887. (effects (font (size 1.27 1.27)) (justify right bottom))
  3888. (uuid 7dda0f25-14cc-445a-97d8-6641c8b3dbdb)
  3889. )
  3890. (label "~{XMEMW800}" (at 61.087 137.795 180) (fields_autoplaced)
  3891. (effects (font (size 1.27 1.27)) (justify right bottom))
  3892. (uuid 7f09e8b7-c273-43f1-8cf3-436f5d077b39)
  3893. )
  3894. (label "D2" (at 21.717 158.115 0) (fields_autoplaced)
  3895. (effects (font (size 1.27 1.27)) (justify left bottom))
  3896. (uuid 7f5ace42-ba4b-4e64-8afc-eb83eec4d341)
  3897. )
  3898. (label "A15" (at 61.087 165.735 180) (fields_autoplaced)
  3899. (effects (font (size 1.27 1.27)) (justify right bottom))
  3900. (uuid 85483705-eb72-4241-9b6e-a3407e24a287)
  3901. )
  3902. (label "ABC5V" (at 61.087 208.915 180) (fields_autoplaced)
  3903. (effects (font (size 1.27 1.27)) (justify right bottom))
  3904. (uuid 90fc23eb-666d-4c74-8d26-4aef2a348b1a)
  3905. )
  3906. (label "READY" (at 28.067 206.375 180) (fields_autoplaced)
  3907. (effects (font (size 1.27 1.27)) (justify right bottom))
  3908. (uuid 918561c9-d2ce-48f4-bf0d-17d5c43420f0)
  3909. )
  3910. (label "D6" (at 21.717 147.955 0) (fields_autoplaced)
  3911. (effects (font (size 1.27 1.27)) (justify left bottom))
  3912. (uuid 95f6318c-8e62-4c88-8850-76307dbb025c)
  3913. )
  3914. (label "A4" (at 61.087 193.675 180) (fields_autoplaced)
  3915. (effects (font (size 1.27 1.27)) (justify right bottom))
  3916. (uuid 960f972d-4e6b-4cac-8247-cd05ff3be149)
  3917. )
  3918. (label "D3" (at 66.167 137.287 0) (fields_autoplaced)
  3919. (effects (font (size 1.27 1.27)) (justify left bottom))
  3920. (uuid 981c11ef-de2f-45a0-aa13-90ae821fd59b)
  3921. )
  3922. (label "D0" (at 474.472 150.876 0) (fields_autoplaced)
  3923. (effects (font (size 1.27 1.27)) (justify left bottom))
  3924. (uuid a210481f-1bfb-405c-824f-e726ab5c3bcf)
  3925. )
  3926. (label "~{C1}" (at 238.379 145.034 180) (fields_autoplaced)
  3927. (effects (font (size 1.27 1.27)) (justify right bottom))
  3928. (uuid a81f9a90-984e-45ce-a464-a2b07a86f963)
  3929. )
  3930. (label "~{XMEMW80}" (at 21.717 142.875 0) (fields_autoplaced)
  3931. (effects (font (size 0.9906 0.9906)) (justify left bottom))
  3932. (uuid aaa419ba-30c9-451a-be68-ccf4b6e455ec)
  3933. )
  3934. (label "A12" (at 61.087 173.355 180) (fields_autoplaced)
  3935. (effects (font (size 1.27 1.27)) (justify right bottom))
  3936. (uuid ad15687e-6a4c-4e6f-aff6-09d29c1af1d4)
  3937. )
  3938. (label "D5" (at 21.717 150.495 0) (fields_autoplaced)
  3939. (effects (font (size 1.27 1.27)) (justify left bottom))
  3940. (uuid afadab58-860b-403c-ba59-0f7acd9498b8)
  3941. )
  3942. (label "A10" (at 61.087 178.435 180) (fields_autoplaced)
  3943. (effects (font (size 1.27 1.27)) (justify right bottom))
  3944. (uuid b348ac6a-974a-4e9e-a3fc-2f633cf72f7b)
  3945. )
  3946. (label "A14" (at 61.087 168.275 180) (fields_autoplaced)
  3947. (effects (font (size 1.27 1.27)) (justify right bottom))
  3948. (uuid bbada473-235a-4a85-a08c-a426d8991a31)
  3949. )
  3950. (label "D3" (at 21.717 155.575 0) (fields_autoplaced)
  3951. (effects (font (size 1.27 1.27)) (justify left bottom))
  3952. (uuid bc00790a-cecd-456b-afd6-5c330e3dc14a)
  3953. )
  3954. (label "D7" (at 21.717 145.415 0) (fields_autoplaced)
  3955. (effects (font (size 1.27 1.27)) (justify left bottom))
  3956. (uuid bd15c2f2-5cb1-4858-a131-59cdfbcd6537)
  3957. )
  3958. (label "~{XINPSTB}" (at 28.067 196.215 180) (fields_autoplaced)
  3959. (effects (font (size 1.27 1.27)) (justify right bottom))
  3960. (uuid bfaaaea9-6969-4b77-bca7-0023cc86fa76)
  3961. )
  3962. (label "A7" (at 61.087 186.055 180) (fields_autoplaced)
  3963. (effects (font (size 1.27 1.27)) (justify right bottom))
  3964. (uuid c30ac893-47b5-4b55-81e5-ecddf4062f1b)
  3965. )
  3966. (label "A3" (at 61.087 196.215 180) (fields_autoplaced)
  3967. (effects (font (size 1.27 1.27)) (justify right bottom))
  3968. (uuid c3877029-6972-4c37-8772-7306819efe73)
  3969. )
  3970. (label "~{C1}" (at 21.717 183.515 0) (fields_autoplaced)
  3971. (effects (font (size 1.27 1.27)) (justify left bottom))
  3972. (uuid c9cc83d8-d369-4046-9a76-c8e260d7ecb3)
  3973. )
  3974. (label "D4" (at 474.472 77.089 0) (fields_autoplaced)
  3975. (effects (font (size 1.27 1.27)) (justify left bottom))
  3976. (uuid cce57c99-82c6-4d2c-8179-b807e6f0adeb)
  3977. )
  3978. (label "D1" (at 474.472 153.416 0) (fields_autoplaced)
  3979. (effects (font (size 1.27 1.27)) (justify left bottom))
  3980. (uuid cebfbb82-2350-4131-9b51-3ed9f7ac257e)
  3981. )
  3982. (label "A1" (at 61.087 201.295 180) (fields_autoplaced)
  3983. (effects (font (size 1.27 1.27)) (justify right bottom))
  3984. (uuid d5203cc8-2e67-4832-98e2-b86371354d7e)
  3985. )
  3986. (label "ABC_12V" (at 61.087 216.535 180) (fields_autoplaced)
  3987. (effects (font (size 1.27 1.27)) (justify right bottom))
  3988. (uuid dc7e3500-5e48-4acb-a4cb-8ff2ca25a7b6)
  3989. )
  3990. (label "ABC5V" (at 21.717 208.915 0) (fields_autoplaced)
  3991. (effects (font (size 1.27 1.27)) (justify left bottom))
  3992. (uuid e2ce604c-389e-4e34-9d4c-ec9e623bd853)
  3993. )
  3994. (label "D6" (at 474.472 82.169 0) (fields_autoplaced)
  3995. (effects (font (size 1.27 1.27)) (justify left bottom))
  3996. (uuid e477edff-bf19-4bef-b00b-99cae8989272)
  3997. )
  3998. (label "~{OUT}" (at 237.998 139.954 180) (fields_autoplaced)
  3999. (effects (font (size 1.27 1.27)) (justify right bottom))
  4000. (uuid efe9405e-bf7a-4bd9-85a3-2cab76749305)
  4001. )
  4002. (label "ABC_-12V" (at 62.357 123.825 180) (fields_autoplaced)
  4003. (effects (font (size 1.27 1.27)) (justify right bottom))
  4004. (uuid f2a3ac58-7bf2-4c60-8f64-23f7d71b021b)
  4005. )
  4006. (label "A9" (at 61.087 180.975 180) (fields_autoplaced)
  4007. (effects (font (size 1.27 1.27)) (justify right bottom))
  4008. (uuid f2a73cec-f2dd-4508-a74d-f8f2ed259740)
  4009. )
  4010. (label "D0" (at 21.717 163.195 0) (fields_autoplaced)
  4011. (effects (font (size 1.27 1.27)) (justify left bottom))
  4012. (uuid f4be615a-8a5a-45a7-85a0-c2b9cac91469)
  4013. )
  4014. (label "A8" (at 61.087 183.515 180) (fields_autoplaced)
  4015. (effects (font (size 1.27 1.27)) (justify right bottom))
  4016. (uuid f7126c08-ec7b-4da6-9362-b371376397e4)
  4017. )
  4018. (label "D4" (at 218.948 122.174 180) (fields_autoplaced)
  4019. (effects (font (size 1.27 1.27)) (justify right bottom))
  4020. (uuid f761bf7b-b3ec-4488-a596-9b8e5662f3cc)
  4021. )
  4022. (label "~{INP}" (at 225.298 163.322 180) (fields_autoplaced)
  4023. (effects (font (size 1.27 1.27)) (justify right bottom))
  4024. (uuid fa9d64fb-0003-4bcd-8828-298da6fbdf6e)
  4025. )
  4026. (label "D2" (at 66.167 110.871 0) (fields_autoplaced)
  4027. (effects (font (size 1.27 1.27)) (justify left bottom))
  4028. (uuid fb28fa4a-44f8-495e-8313-ddc6c05a97cd)
  4029. )
  4030. (label "D1" (at 21.717 160.655 0) (fields_autoplaced)
  4031. (effects (font (size 1.27 1.27)) (justify left bottom))
  4032. (uuid fdb0f64e-66cb-457d-9d18-a5893d0df202)
  4033. )
  4034. (global_label "ABC_CLK_5" (shape input) (at 50.927 142.875 0) (fields_autoplaced)
  4035. (effects (font (size 0.9906 0.9906)) (justify left))
  4036. (uuid b8adb169-fae0-4041-8e3a-9f81ef67d738)
  4037. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -1.143 62.865 0)
  4038. (effects (font (size 1.27 1.27)) hide)
  4039. )
  4040. )
  4041. (symbol (lib_id "74xx_IEEE:74LS266") (at 94.742 134.747 0) (unit 4)
  4042. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4043. (uuid 00e5e761-5166-48fd-ac7d-e0a9741851f4)
  4044. (property "Reference" "U_C1" (at 104.902 130.8101 0)
  4045. (effects (font (size 1.27 1.27)))
  4046. )
  4047. (property "Value" "74LS266" (at 104.902 133.3501 0)
  4048. (effects (font (size 1.27 1.27)))
  4049. )
  4050. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 94.742 134.747 0)
  4051. (effects (font (size 1.27 1.27)) hide)
  4052. )
  4053. (property "Datasheet" "" (at 94.742 134.747 0)
  4054. (effects (font (size 1.27 1.27)) hide)
  4055. )
  4056. (pin "9" (uuid 129fc823-2f10-4257-99a8-4cd55565062c))
  4057. (pin "1" (uuid 15471311-43c7-427c-9ccf-68734b50f29d))
  4058. (pin "8" (uuid e97fdf96-fa37-4f11-8e9a-aa7a1202c188))
  4059. (pin "14" (uuid cf0858b9-6149-474d-8682-7e44410467ee))
  4060. (pin "10" (uuid 8999a3d0-97a1-4379-8ba4-b13c7181c119))
  4061. (pin "12" (uuid 38113dec-3494-49b7-a7fb-f0ac0bef5fd2))
  4062. (pin "4" (uuid ec9039b9-bfa3-4545-8712-2773a5cfa8ef))
  4063. (pin "5" (uuid 6429e7ab-2e10-404b-9565-2305f3ef798d))
  4064. (pin "13" (uuid 03a83c28-8711-49df-bc9e-34f7fd38bc4a))
  4065. (pin "7" (uuid 23509984-cc7f-4828-8169-f7ceb2512ffb))
  4066. (pin "6" (uuid f70eb79e-2670-434d-8175-59de677bb938))
  4067. (pin "11" (uuid a4b7fa0f-9be1-48f6-a10d-5397d76be81c))
  4068. (pin "2" (uuid 506831be-dbe9-49ce-afee-531401059c79))
  4069. (pin "3" (uuid fedd4386-a9b0-4c54-984e-86c7502c8b5e))
  4070. (instances
  4071. (project "hdd_controller"
  4072. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4073. (reference "U_C1") (unit 4)
  4074. )
  4075. )
  4076. )
  4077. )
  4078. (symbol (lib_id "power:GND") (at 536.829 152.527 0) (unit 1)
  4079. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4080. (uuid 038f91c4-c371-459d-8699-305823479dc1)
  4081. (property "Reference" "#PWR01" (at 536.829 158.877 0)
  4082. (effects (font (size 1.27 1.27)) hide)
  4083. )
  4084. (property "Value" "GND" (at 536.829 157.607 0)
  4085. (effects (font (size 1.27 1.27)) hide)
  4086. )
  4087. (property "Footprint" "" (at 536.829 152.527 0)
  4088. (effects (font (size 1.27 1.27)) hide)
  4089. )
  4090. (property "Datasheet" "" (at 536.829 152.527 0)
  4091. (effects (font (size 1.27 1.27)) hide)
  4092. )
  4093. (pin "1" (uuid fee77dc5-3673-4e19-ae2d-205052fad347))
  4094. (instances
  4095. (project "hdd_controller"
  4096. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4097. (reference "#PWR01") (unit 1)
  4098. )
  4099. )
  4100. )
  4101. )
  4102. (symbol (lib_id "74xx:74LS00") (at 248.031 142.494 0) (unit 1)
  4103. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4104. (uuid 0ee14095-37de-4565-ac64-a0593f3ebf50)
  4105. (property "Reference" "U_A6" (at 248.0227 134.366 0)
  4106. (effects (font (size 1.27 1.27)))
  4107. )
  4108. (property "Value" "74LS00" (at 248.0227 136.906 0)
  4109. (effects (font (size 1.27 1.27)))
  4110. )
  4111. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 248.031 142.494 0)
  4112. (effects (font (size 1.27 1.27)) hide)
  4113. )
  4114. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 248.031 142.494 0)
  4115. (effects (font (size 1.27 1.27)) hide)
  4116. )
  4117. (pin "1" (uuid 9e152e87-85b9-4ca0-9f14-c3629ac05a13))
  4118. (pin "11" (uuid 07a35f0f-2fc3-48d6-948e-08b6a4582f2e))
  4119. (pin "7" (uuid 91be8ff6-ea30-4cfe-8550-f921f0c119ee))
  4120. (pin "3" (uuid a1d36fed-801b-4f28-b7de-960ec126e411))
  4121. (pin "4" (uuid 987ec8f2-67be-4bc7-96e5-331a437e679f))
  4122. (pin "8" (uuid 015fcc9c-1c54-41ae-9667-6b90623d3bbb))
  4123. (pin "5" (uuid 3d9923fc-dab2-4ec3-8faf-6fc173a3cb79))
  4124. (pin "6" (uuid 37f2bbca-d096-41fe-83fa-d91884484ed0))
  4125. (pin "9" (uuid a7f09a43-c967-4677-b916-abbffbbbc775))
  4126. (pin "2" (uuid 6b47cdc2-b2c2-4fad-99f9-9e770bb61395))
  4127. (pin "14" (uuid 7f4ff8a9-648e-4be9-8eac-3be575158d3e))
  4128. (pin "10" (uuid 63154ed7-58fe-461c-9e93-0ca096d71b65))
  4129. (pin "12" (uuid d54d1780-c771-4490-86d0-ada3bb046445))
  4130. (pin "13" (uuid c15cf5f7-7607-4968-9e88-3aa7a02d465d))
  4131. (instances
  4132. (project "hdd_controller"
  4133. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4134. (reference "U_A6") (unit 1)
  4135. )
  4136. )
  4137. )
  4138. )
  4139. (symbol (lib_id "74xx:74LS221") (at 324.866 90.932 0) (unit 1)
  4140. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4141. (uuid 1150c2de-16f2-4cf1-b348-e31f8c640939)
  4142. (property "Reference" "U_A2" (at 324.866 100.838 0)
  4143. (effects (font (size 1.27 1.27)))
  4144. )
  4145. (property "Value" "74LS221" (at 324.866 103.378 0)
  4146. (effects (font (size 1.27 1.27)))
  4147. )
  4148. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (at 324.866 90.932 0)
  4149. (effects (font (size 1.27 1.27)) hide)
  4150. )
  4151. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS221" (at 324.866 90.932 0)
  4152. (effects (font (size 1.27 1.27)) hide)
  4153. )
  4154. (pin "8" (uuid d015c6f2-3a2b-45c5-aa5f-b7bf525db436))
  4155. (pin "10" (uuid 880e7034-7aa6-40b8-88fc-3f79f0230d40))
  4156. (pin "5" (uuid c5a82139-87b1-41aa-883a-e6943f16fa42))
  4157. (pin "11" (uuid 688900b5-5b6f-4fe7-8a05-c0cb5203d58e))
  4158. (pin "6" (uuid 5a65c6cc-9ddc-42d1-b55f-4afcceead530))
  4159. (pin "12" (uuid bddafa66-025e-42ed-8de0-3170e590099d))
  4160. (pin "4" (uuid 8b6c921d-7ea0-4605-aafd-af35cadbec28))
  4161. (pin "3" (uuid 988ce8c1-dbbc-40e0-9a63-fc68a52b6ede))
  4162. (pin "15" (uuid 2f645512-2d67-4992-8b0c-b12d6e50a530))
  4163. (pin "14" (uuid 9324ecd8-7903-43bb-be01-8c6fab992922))
  4164. (pin "1" (uuid 71754812-a28a-48c2-912b-e310a11714ea))
  4165. (pin "9" (uuid d54f9155-2180-41a2-9c41-821f9435af98))
  4166. (pin "2" (uuid e40cf836-1e83-4e69-ac56-5b7ae573840b))
  4167. (pin "13" (uuid 2e462fbb-4e8c-4179-96ae-2bfea313eedf))
  4168. (pin "7" (uuid 1430b955-fb8b-4277-b475-74341dca30c5))
  4169. (pin "16" (uuid 53ce3b2f-7b4b-43bf-8743-2789e8356e1c))
  4170. (instances
  4171. (project "hdd_controller"
  4172. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4173. (reference "U_A2") (unit 1)
  4174. )
  4175. )
  4176. )
  4177. )
  4178. (symbol (lib_id "74xx_IEEE:74LS266") (at 228.6 221.488 0) (unit 4)
  4179. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4180. (uuid 12dfbf5d-d9c0-43eb-86ec-22b44e799bdd)
  4181. (property "Reference" "U_C2" (at 239.522 217.5511 0)
  4182. (effects (font (size 1.27 1.27)))
  4183. )
  4184. (property "Value" "74LS266" (at 239.522 220.0911 0)
  4185. (effects (font (size 1.27 1.27)))
  4186. )
  4187. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 228.6 221.488 0)
  4188. (effects (font (size 1.27 1.27)) hide)
  4189. )
  4190. (property "Datasheet" "" (at 228.6 221.488 0)
  4191. (effects (font (size 1.27 1.27)) hide)
  4192. )
  4193. (pin "6" (uuid 770f55b1-b30c-418e-9189-38e54f415773))
  4194. (pin "10" (uuid 2d77ce25-8d2b-4f3f-b2ac-c408ee3c2bdb))
  4195. (pin "12" (uuid c4f3c6d2-1145-46a8-9202-58e7338bc9a1))
  4196. (pin "14" (uuid 0a9bccb3-83fe-4f4f-aac9-36f7824243f8))
  4197. (pin "7" (uuid 07bcc8cf-a63d-43a0-a66a-71dbdd5654ca))
  4198. (pin "2" (uuid 6b16501d-7e5a-4d00-aa81-edd348c56ea3))
  4199. (pin "13" (uuid 15fa25f5-631d-41fe-97d2-95301d8aef2b))
  4200. (pin "4" (uuid d5de024c-e745-4bb2-ba8d-4522415666e9))
  4201. (pin "5" (uuid c863ee84-a1e6-4eba-9cc8-d2f0060292d7))
  4202. (pin "8" (uuid d21d91a1-ac76-40a9-b866-66d947a4c7ae))
  4203. (pin "11" (uuid c57b043d-5451-4039-9013-b0996bdcfeba))
  4204. (pin "9" (uuid 499e78dc-31bd-47b5-af06-4e34f6494f94))
  4205. (pin "1" (uuid 285f7b0b-195a-45bc-bf14-c1a1c882cf44))
  4206. (pin "3" (uuid 3a4768be-836b-46e3-8da6-5d4065f5fdb0))
  4207. (instances
  4208. (project "hdd_controller"
  4209. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4210. (reference "U_C2") (unit 4)
  4211. )
  4212. )
  4213. )
  4214. )
  4215. (symbol (lib_id "74xx:74LS00") (at 237.871 165.862 0) (unit 2)
  4216. (in_bom yes) (on_board yes) (dnp no)
  4217. (uuid 17b7a096-5d88-47b7-874d-563e6e77b5dd)
  4218. (property "Reference" "U_A6" (at 233.807 160.401 0)
  4219. (effects (font (size 1.27 1.27)))
  4220. )
  4221. (property "Value" "74LS00" (at 242.443 161.036 0)
  4222. (effects (font (size 1.27 1.27)))
  4223. )
  4224. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 237.871 165.862 0)
  4225. (effects (font (size 1.27 1.27)) hide)
  4226. )
  4227. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 237.871 165.862 0)
  4228. (effects (font (size 1.27 1.27)) hide)
  4229. )
  4230. (pin "1" (uuid 9e152e87-85b9-4ca0-9f14-c3629ac05a14))
  4231. (pin "11" (uuid 07a35f0f-2fc3-48d6-948e-08b6a4582f2f))
  4232. (pin "7" (uuid 91be8ff6-ea30-4cfe-8550-f921f0c119ef))
  4233. (pin "3" (uuid a1d36fed-801b-4f28-b7de-960ec126e412))
  4234. (pin "4" (uuid 987ec8f2-67be-4bc7-96e5-331a437e67a0))
  4235. (pin "8" (uuid 015fcc9c-1c54-41ae-9667-6b90623d3bbc))
  4236. (pin "5" (uuid 3d9923fc-dab2-4ec3-8faf-6fc173a3cb7a))
  4237. (pin "6" (uuid 37f2bbca-d096-41fe-83fa-d91884484ed1))
  4238. (pin "9" (uuid a7f09a43-c967-4677-b916-abbffbbbc776))
  4239. (pin "2" (uuid 6b47cdc2-b2c2-4fad-99f9-9e770bb61396))
  4240. (pin "14" (uuid 7f4ff8a9-648e-4be9-8eac-3be575158d3f))
  4241. (pin "10" (uuid 63154ed7-58fe-461c-9e93-0ca096d71b66))
  4242. (pin "12" (uuid d54d1780-c771-4490-86d0-ada3bb046446))
  4243. (pin "13" (uuid c15cf5f7-7607-4968-9e88-3aa7a02d465e))
  4244. (instances
  4245. (project "hdd_controller"
  4246. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4247. (reference "U_A6") (unit 2)
  4248. )
  4249. )
  4250. )
  4251. )
  4252. (symbol (lib_id "74xx:74LS74") (at 279.146 122.174 0) (unit 1)
  4253. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4254. (uuid 197d9ed0-68eb-46d0-8c51-1b70a03d33d6)
  4255. (property "Reference" "U_A7" (at 281.3401 112.522 0)
  4256. (effects (font (size 1.27 1.27)) (justify left))
  4257. )
  4258. (property "Value" "74LS74" (at 281.3401 115.062 0)
  4259. (effects (font (size 1.27 1.27)) (justify left))
  4260. )
  4261. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 279.146 122.174 0)
  4262. (effects (font (size 1.27 1.27)) hide)
  4263. )
  4264. (property "Datasheet" "74xx/74hc_hct74.pdf" (at 279.146 122.174 0)
  4265. (effects (font (size 1.27 1.27)) hide)
  4266. )
  4267. (pin "11" (uuid eb4c6822-ee53-4053-8218-70bd91984e95))
  4268. (pin "3" (uuid 1d02c29b-be7e-4007-838e-6f3481056ac3))
  4269. (pin "5" (uuid b166d702-140f-48ae-ae09-f64a746ef51e))
  4270. (pin "1" (uuid de2ffe25-9eff-40cc-a08a-37eeccec6c7f))
  4271. (pin "4" (uuid 27b64494-fab6-423a-b69e-782ddef365c6))
  4272. (pin "12" (uuid 314f2c2d-e0f6-407a-9e65-80306382585d))
  4273. (pin "7" (uuid 19b44ce6-18fa-46fe-b719-37b1f416c35c))
  4274. (pin "2" (uuid d56412ff-e0e8-49f2-8121-787bd87df9b5))
  4275. (pin "8" (uuid e07a16dc-b61e-47ec-b8d4-7f5e3a7d7419))
  4276. (pin "10" (uuid b2422f28-3708-4497-abe3-ec03720de08c))
  4277. (pin "9" (uuid d5e05f13-6119-458f-8ead-137231496c7e))
  4278. (pin "6" (uuid 3d2a3782-969f-4f2e-a069-8f07ce10f79e))
  4279. (pin "14" (uuid f84a7f88-9857-431b-917e-181cfe017580))
  4280. (pin "13" (uuid d2c57801-d61a-4a77-b696-0cd1db049303))
  4281. (instances
  4282. (project "hdd_controller"
  4283. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4284. (reference "U_A7") (unit 1)
  4285. )
  4286. )
  4287. )
  4288. )
  4289. (symbol (lib_id "power:+5V") (at 348.742 32.385 0) (unit 1)
  4290. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4291. (uuid 1e58b535-3f8a-47e6-bdd9-da592b5884df)
  4292. (property "Reference" "#PWR04" (at 348.742 36.195 0)
  4293. (effects (font (size 1.27 1.27)) hide)
  4294. )
  4295. (property "Value" "+5V" (at 348.742 27.051 0)
  4296. (effects (font (size 1.27 1.27)))
  4297. )
  4298. (property "Footprint" "" (at 348.742 32.385 0)
  4299. (effects (font (size 1.27 1.27)) hide)
  4300. )
  4301. (property "Datasheet" "" (at 348.742 32.385 0)
  4302. (effects (font (size 1.27 1.27)) hide)
  4303. )
  4304. (pin "1" (uuid c545889d-6571-42fc-991e-12e64afdd0f4))
  4305. (instances
  4306. (project "hdd_controller"
  4307. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4308. (reference "#PWR04") (unit 1)
  4309. )
  4310. )
  4311. )
  4312. )
  4313. (symbol (lib_id "power:GND") (at 308.356 97.917 0) (unit 1)
  4314. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4315. (uuid 2307a49f-ddfa-4802-bf9f-0dd2d194ee42)
  4316. (property "Reference" "#PWR09" (at 308.356 104.267 0)
  4317. (effects (font (size 1.27 1.27)) hide)
  4318. )
  4319. (property "Value" "GND" (at 308.356 102.87 0)
  4320. (effects (font (size 1.27 1.27)))
  4321. )
  4322. (property "Footprint" "" (at 308.356 97.917 0)
  4323. (effects (font (size 1.27 1.27)) hide)
  4324. )
  4325. (property "Datasheet" "" (at 308.356 97.917 0)
  4326. (effects (font (size 1.27 1.27)) hide)
  4327. )
  4328. (pin "1" (uuid 42fc3865-0567-4cc6-9314-1ec657413b9e))
  4329. (instances
  4330. (project "hdd_controller"
  4331. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4332. (reference "#PWR09") (unit 1)
  4333. )
  4334. )
  4335. )
  4336. )
  4337. (symbol (lib_id "74xx:74LS00") (at 156.464 -35.814 0) (unit 5)
  4338. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4339. (uuid 25c44acf-aae3-40d0-941d-1b1fbd878926)
  4340. (property "Reference" "U_C3" (at 162.56 -37.084 0)
  4341. (effects (font (size 1.27 1.27)) (justify left))
  4342. )
  4343. (property "Value" "74LS00" (at 162.56 -34.544 0)
  4344. (effects (font (size 1.27 1.27)) (justify left))
  4345. )
  4346. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 156.464 -35.814 0)
  4347. (effects (font (size 1.27 1.27)) hide)
  4348. )
  4349. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 156.464 -35.814 0)
  4350. (effects (font (size 1.27 1.27)) hide)
  4351. )
  4352. (pin "1" (uuid 5fbe5eee-6d69-4bb2-a5da-ba0062734ed0))
  4353. (pin "10" (uuid 276c4d62-3375-489e-8ef2-0e6ee4a44e7f))
  4354. (pin "3" (uuid 8b3401f9-996e-4f35-b2b9-0125bec6bf65))
  4355. (pin "11" (uuid ba6908cc-4860-4577-ac10-fe72cb973cca))
  4356. (pin "9" (uuid f77df437-bade-47ef-ae96-de6ff8f0f5bc))
  4357. (pin "13" (uuid c961f6a3-6928-4168-b8eb-f5cc687c7f1c))
  4358. (pin "8" (uuid 7be9e063-522e-4d6b-904a-8d7a245ed486))
  4359. (pin "5" (uuid 978d30c7-f985-4911-828c-032e1ba74959))
  4360. (pin "12" (uuid dd20eef4-2847-4a4b-b3aa-d0b0cf8b2745))
  4361. (pin "4" (uuid 24802e50-20ec-4f78-83a1-0da2106e724b))
  4362. (pin "6" (uuid 0d70aaf8-5405-4249-a9fe-1f1cd623a438))
  4363. (pin "14" (uuid 9ae7d141-a2cf-4c43-a64c-1a447bbb9439))
  4364. (pin "7" (uuid 453122d5-90c5-48ff-a7d4-a1eb553f05d6))
  4365. (pin "2" (uuid 26ce7db9-0740-4d82-91a0-e8a9f2659b1c))
  4366. (instances
  4367. (project "hdd_controller"
  4368. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4369. (reference "U_C3") (unit 5)
  4370. )
  4371. )
  4372. )
  4373. )
  4374. (symbol (lib_id "74xx:74LS221") (at 392.176 219.075 0) (unit 2)
  4375. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4376. (uuid 2c17854d-82cf-473b-9e23-8ae38770dd5d)
  4377. (property "Reference" "U_A3" (at 392.176 228.727 0)
  4378. (effects (font (size 1.27 1.27)))
  4379. )
  4380. (property "Value" "74LS221" (at 392.176 231.267 0)
  4381. (effects (font (size 1.27 1.27)))
  4382. )
  4383. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (at 392.176 219.075 0)
  4384. (effects (font (size 1.27 1.27)) hide)
  4385. )
  4386. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS221" (at 392.176 219.075 0)
  4387. (effects (font (size 1.27 1.27)) hide)
  4388. )
  4389. (pin "8" (uuid c7523f98-5f38-4380-bba0-fde2ab35fe36))
  4390. (pin "5" (uuid 476cfb1f-461f-4848-8dbe-b7bd6d34cd74))
  4391. (pin "16" (uuid 75154157-2b5e-4096-9a91-b6d37411a21f))
  4392. (pin "9" (uuid dbc59cd5-b954-4967-95e6-5780a7e8c0bb))
  4393. (pin "2" (uuid 0167c43e-03ca-4852-a793-13bca5821621))
  4394. (pin "15" (uuid 9b166b22-1c26-47aa-a783-057b9ef0cd3e))
  4395. (pin "3" (uuid 45e2abca-6fa6-40bd-8c44-ba0657894767))
  4396. (pin "12" (uuid 0e3989d3-c9fe-4328-9822-b7090ade43d4))
  4397. (pin "11" (uuid 06fa00e6-ba61-4c75-a050-f4b5a7d637b4))
  4398. (pin "7" (uuid 979c5f21-3769-411a-b8cb-22f09d40262d))
  4399. (pin "6" (uuid d073243c-1ee7-4d74-95db-005f10d12ca5))
  4400. (pin "1" (uuid d4e173d4-da79-451f-8137-3767bd64b6b3))
  4401. (pin "13" (uuid 205d2eb9-2f57-4f3d-ba6d-e5d35f20688f))
  4402. (pin "10" (uuid c85b1aa0-e867-448f-982b-f1aa333a9be0))
  4403. (pin "14" (uuid df0167fd-f0e0-4094-a1e8-c51ccd7e7c24))
  4404. (pin "4" (uuid 04e64bb1-ea3b-4726-ba3e-f31e448124cf))
  4405. (instances
  4406. (project "hdd_controller"
  4407. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4408. (reference "U_A3") (unit 2)
  4409. )
  4410. )
  4411. )
  4412. )
  4413. (symbol (lib_id "74xx:74LS00") (at 636.778 376.809 0) (unit 4)
  4414. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4415. (uuid 367d5673-eb12-464f-b8a7-b42b0cf206cd)
  4416. (property "Reference" "U_C3" (at 636.7697 367.665 0)
  4417. (effects (font (size 1.27 1.27)))
  4418. )
  4419. (property "Value" "74LS00" (at 636.7697 370.205 0)
  4420. (effects (font (size 1.27 1.27)))
  4421. )
  4422. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 636.778 376.809 0)
  4423. (effects (font (size 1.27 1.27)) hide)
  4424. )
  4425. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 636.778 376.809 0)
  4426. (effects (font (size 1.27 1.27)) hide)
  4427. )
  4428. (pin "8" (uuid 65b63960-e675-41fe-9aaa-c63d07b4e346))
  4429. (pin "3" (uuid 16be007e-67e0-465b-a6e6-06c017240ce9))
  4430. (pin "12" (uuid 4092add0-3c36-4887-a23f-4113bfebd674))
  4431. (pin "10" (uuid 3b52f3f9-90b5-48f0-9669-ac557775932c))
  4432. (pin "14" (uuid 3def296e-c5e2-44f4-b2a3-33211631cb71))
  4433. (pin "9" (uuid 36058e71-d18e-44ef-a546-0b4bef82579c))
  4434. (pin "5" (uuid 194058f0-c4bb-4996-9fb7-7f4d6b56e68c))
  4435. (pin "13" (uuid 226ef3c7-b2f5-4551-a2ce-39ecb9a68db5))
  4436. (pin "11" (uuid 3bc61ff2-a5f5-474a-9dd8-e496c558f9c8))
  4437. (pin "1" (uuid b29f9701-0a68-4a32-9967-d8a01cf2d675))
  4438. (pin "6" (uuid 5f854d9c-753d-4771-8baa-3623a5f95976))
  4439. (pin "4" (uuid 56782a3e-b87c-4eaa-9d27-393fdc49ecf6))
  4440. (pin "7" (uuid a24d95b3-3e41-4a10-940b-7447f3e8aaf4))
  4441. (pin "2" (uuid edb8862c-cc5d-4658-a5fb-baf31fa62818))
  4442. (instances
  4443. (project "hdd_controller"
  4444. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4445. (reference "U_C3") (unit 4)
  4446. )
  4447. )
  4448. )
  4449. )
  4450. (symbol (lib_id "power:+5V") (at 305.689 93.472 0) (unit 1)
  4451. (in_bom yes) (on_board yes) (dnp no)
  4452. (uuid 3b27845b-c541-4a15-9cb7-660d76e2ae35)
  4453. (property "Reference" "#PWR03" (at 305.689 97.282 0)
  4454. (effects (font (size 1.27 1.27)) hide)
  4455. )
  4456. (property "Value" "+5V" (at 303.657 90.551 0)
  4457. (effects (font (size 1.27 1.27)))
  4458. )
  4459. (property "Footprint" "" (at 305.689 93.472 0)
  4460. (effects (font (size 1.27 1.27)) hide)
  4461. )
  4462. (property "Datasheet" "" (at 305.689 93.472 0)
  4463. (effects (font (size 1.27 1.27)) hide)
  4464. )
  4465. (pin "1" (uuid e1dc74c8-d8e4-4698-9012-bd6b71422ac7))
  4466. (instances
  4467. (project "hdd_controller"
  4468. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4469. (reference "#PWR03") (unit 1)
  4470. )
  4471. )
  4472. )
  4473. )
  4474. (symbol (lib_id "74xx_IEEE:74LS266") (at 186.436 159.004 0) (unit 3)
  4475. (in_bom yes) (on_board yes) (dnp no)
  4476. (uuid 3e955dea-1201-45fb-a134-bda6ed4bb916)
  4477. (property "Reference" "U_C2" (at 197.358 155.0671 0)
  4478. (effects (font (size 1.27 1.27)))
  4479. )
  4480. (property "Value" "74LS266" (at 200.66 157.607 0)
  4481. (effects (font (size 1.27 1.27)))
  4482. )
  4483. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 186.436 159.004 0)
  4484. (effects (font (size 1.27 1.27)) hide)
  4485. )
  4486. (property "Datasheet" "" (at 186.436 159.004 0)
  4487. (effects (font (size 1.27 1.27)) hide)
  4488. )
  4489. (pin "6" (uuid 770f55b1-b30c-418e-9189-38e54f415774))
  4490. (pin "10" (uuid 2d77ce25-8d2b-4f3f-b2ac-c408ee3c2bdc))
  4491. (pin "12" (uuid c4f3c6d2-1145-46a8-9202-58e7338bc9a2))
  4492. (pin "14" (uuid 0a9bccb3-83fe-4f4f-aac9-36f7824243f9))
  4493. (pin "7" (uuid 07bcc8cf-a63d-43a0-a66a-71dbdd5654cb))
  4494. (pin "2" (uuid 6b16501d-7e5a-4d00-aa81-edd348c56ea4))
  4495. (pin "13" (uuid 15fa25f5-631d-41fe-97d2-95301d8aef2c))
  4496. (pin "4" (uuid d5de024c-e745-4bb2-ba8d-4522415666ea))
  4497. (pin "5" (uuid c863ee84-a1e6-4eba-9cc8-d2f0060292d8))
  4498. (pin "8" (uuid d21d91a1-ac76-40a9-b866-66d947a4c7af))
  4499. (pin "11" (uuid c57b043d-5451-4039-9013-b0996bdcfebb))
  4500. (pin "9" (uuid 499e78dc-31bd-47b5-af06-4e34f6494f95))
  4501. (pin "1" (uuid 285f7b0b-195a-45bc-bf14-c1a1c882cf45))
  4502. (pin "3" (uuid 3a4768be-836b-46e3-8da6-5d4065f5fdb1))
  4503. (instances
  4504. (project "hdd_controller"
  4505. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4506. (reference "U_C2") (unit 3)
  4507. )
  4508. )
  4509. )
  4510. )
  4511. (symbol (lib_id "74xx:74LS00") (at 618.109 374.269 0) (unit 3)
  4512. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4513. (uuid 453a267b-c5e6-4a73-a03d-5f898bbc96e3)
  4514. (property "Reference" "U_C3" (at 618.1007 366.141 0)
  4515. (effects (font (size 1.27 1.27)))
  4516. )
  4517. (property "Value" "74LS00" (at 618.1007 368.681 0)
  4518. (effects (font (size 1.27 1.27)))
  4519. )
  4520. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 618.109 374.269 0)
  4521. (effects (font (size 1.27 1.27)) hide)
  4522. )
  4523. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 618.109 374.269 0)
  4524. (effects (font (size 1.27 1.27)) hide)
  4525. )
  4526. (pin "8" (uuid 65b63960-e675-41fe-9aaa-c63d07b4e347))
  4527. (pin "3" (uuid 16be007e-67e0-465b-a6e6-06c017240cea))
  4528. (pin "12" (uuid 4092add0-3c36-4887-a23f-4113bfebd675))
  4529. (pin "10" (uuid 3b52f3f9-90b5-48f0-9669-ac557775932d))
  4530. (pin "14" (uuid 3def296e-c5e2-44f4-b2a3-33211631cb72))
  4531. (pin "9" (uuid 36058e71-d18e-44ef-a546-0b4bef82579d))
  4532. (pin "5" (uuid 194058f0-c4bb-4996-9fb7-7f4d6b56e68d))
  4533. (pin "13" (uuid 226ef3c7-b2f5-4551-a2ce-39ecb9a68db6))
  4534. (pin "11" (uuid 3bc61ff2-a5f5-474a-9dd8-e496c558f9c9))
  4535. (pin "1" (uuid b29f9701-0a68-4a32-9967-d8a01cf2d676))
  4536. (pin "6" (uuid 5f854d9c-753d-4771-8baa-3623a5f95977))
  4537. (pin "4" (uuid 56782a3e-b87c-4eaa-9d27-393fdc49ecf7))
  4538. (pin "7" (uuid a24d95b3-3e41-4a10-940b-7447f3e8aaf5))
  4539. (pin "2" (uuid edb8862c-cc5d-4658-a5fb-baf31fa62819))
  4540. (instances
  4541. (project "hdd_controller"
  4542. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4543. (reference "U_C3") (unit 3)
  4544. )
  4545. )
  4546. )
  4547. )
  4548. (symbol (lib_id "74xx:74LS00") (at 350.647 160.274 0) (unit 4)
  4549. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4550. (uuid 4a24bbe7-ff67-4c3b-a397-c4b9219d7a61)
  4551. (property "Reference" "U_A5" (at 350.6387 152.146 0)
  4552. (effects (font (size 1.27 1.27)))
  4553. )
  4554. (property "Value" "74LS00" (at 350.6387 154.686 0)
  4555. (effects (font (size 1.27 1.27)))
  4556. )
  4557. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 350.647 160.274 0)
  4558. (effects (font (size 1.27 1.27)) hide)
  4559. )
  4560. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 350.647 160.274 0)
  4561. (effects (font (size 1.27 1.27)) hide)
  4562. )
  4563. (pin "13" (uuid 7d3113c6-f610-4c7c-8465-f3f0f3a316d9))
  4564. (pin "6" (uuid 06151212-6f70-4713-a732-1faa1700d112))
  4565. (pin "5" (uuid 1cf65603-b041-469f-952e-0415471a9cd9))
  4566. (pin "10" (uuid 600c5199-3e23-49ce-835b-a76ffe67e753))
  4567. (pin "4" (uuid 53c6d448-d817-4527-b5e1-0990e1c9cdf5))
  4568. (pin "9" (uuid 4eb8bd1f-5663-45bc-adc8-c0a68a176ff5))
  4569. (pin "14" (uuid 9f02cbc2-392e-4750-81d3-bb9e04c7f1f4))
  4570. (pin "7" (uuid 7fcab7fc-68ab-483e-9c6b-7adc88da1cfc))
  4571. (pin "8" (uuid 906103d2-c4c6-4d56-9e0a-438351266ab8))
  4572. (pin "12" (uuid 013f2406-def5-4c83-a8ae-53b8c032ae26))
  4573. (pin "3" (uuid a7a2095b-f240-405f-98c2-dc89df087be6))
  4574. (pin "11" (uuid 5d3f2762-0d1d-47a9-8142-7eb68442e186))
  4575. (pin "1" (uuid b061cccd-3750-4240-8ead-218e4b9c0d53))
  4576. (pin "2" (uuid decc2cfc-d3fd-4591-b0df-1577251ccd83))
  4577. (instances
  4578. (project "hdd_controller"
  4579. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4580. (reference "U_A5") (unit 4)
  4581. )
  4582. )
  4583. )
  4584. )
  4585. (symbol (lib_id "74xx:74LS32") (at 278.511 257.175 0) (unit 4)
  4586. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4587. (uuid 5645fef1-dc31-44bf-8be1-e2897d7acf1b)
  4588. (property "Reference" "U_A4" (at 278.511 248.031 0)
  4589. (effects (font (size 1.27 1.27)))
  4590. )
  4591. (property "Value" "74LS32" (at 278.511 250.571 0)
  4592. (effects (font (size 1.27 1.27)))
  4593. )
  4594. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 278.511 257.175 0)
  4595. (effects (font (size 1.27 1.27)) hide)
  4596. )
  4597. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS32" (at 278.511 257.175 0)
  4598. (effects (font (size 1.27 1.27)) hide)
  4599. )
  4600. (pin "11" (uuid 2d872ed0-847b-44f4-adf3-14027e6f1ed7))
  4601. (pin "5" (uuid 39cfed38-ec90-4b79-b44e-83b663114f93))
  4602. (pin "14" (uuid d4e2bfc7-ae57-4055-80a6-dacf669b7ac4))
  4603. (pin "3" (uuid b5bec27b-dfad-480a-a708-1aa2cbe80c85))
  4604. (pin "7" (uuid c18c3b5e-0edb-42d6-af73-e70b32440e6c))
  4605. (pin "8" (uuid 0d296f60-586c-42f7-aabd-684859761302))
  4606. (pin "13" (uuid ca9f60d0-feb4-42a8-a503-07ba8ddada3a))
  4607. (pin "12" (uuid e2b5cc9e-19af-4caa-8184-547eba655eaa))
  4608. (pin "4" (uuid 1aa90625-2ac9-4cd8-892b-585b4995afcf))
  4609. (pin "9" (uuid b4fbcf9a-aeba-4c4d-8b7c-0786a80ea653))
  4610. (pin "2" (uuid 1bd018cb-f8a5-4f2a-8a18-fc49dd2ee020))
  4611. (pin "1" (uuid e96460da-6e21-43c8-947a-d2f7ef49d32a))
  4612. (pin "6" (uuid 1ea5ec06-aae1-4360-8822-580781a43f29))
  4613. (pin "10" (uuid eb20a7ba-2979-45ba-b552-be1ee7394e86))
  4614. (instances
  4615. (project "hdd_controller"
  4616. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4617. (reference "U_A4") (unit 4)
  4618. )
  4619. )
  4620. )
  4621. )
  4622. (symbol (lib_id "sm6uax:UPB8216") (at 497.332 90.424 0) (mirror y) (unit 1)
  4623. (in_bom yes) (on_board yes) (dnp no)
  4624. (uuid 56de1b5a-d7ec-4cc1-b011-f5c325b320bf)
  4625. (property "Reference" "U_B2" (at 495.1379 70.612 0)
  4626. (effects (font (size 1.27 1.27)) (justify left))
  4627. )
  4628. (property "Value" "UPB8216" (at 495.1379 73.152 0)
  4629. (effects (font (size 1.27 1.27)) (justify left))
  4630. )
  4631. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (at 497.332 90.424 0)
  4632. (effects (font (size 1.27 1.27)) hide)
  4633. )
  4634. (property "Datasheet" "https://www.nteinc.com/specs/8000to8999/pdf/nte8216.pdf" (at 497.332 90.424 0)
  4635. (effects (font (size 1.27 1.27)) hide)
  4636. )
  4637. (pin "7" (uuid ea8aa092-cf2b-40d4-8cb5-f8f760c183e5))
  4638. (pin "9" (uuid 12dbbbb5-0b2c-4ee9-9d6e-d79bb0ffff1e))
  4639. (pin "4" (uuid 37c91400-0ea9-4b06-92d7-970eb0bb3498))
  4640. (pin "5" (uuid 4f62f580-7ffa-42b0-b9f1-f21c898b27e7))
  4641. (pin "10" (uuid b38d74e9-a73d-46af-88f1-a1036763a645))
  4642. (pin "1" (uuid 281c69e6-1aed-476c-89e5-0c2ce4de661d))
  4643. (pin "12" (uuid c92934c3-e477-4b98-aedc-921254bd04c1))
  4644. (pin "13" (uuid 4590a414-be86-4434-bc21-e5e7c82bbbcf))
  4645. (pin "14" (uuid 626c20cd-544e-40fa-a25a-a1ab3d55e797))
  4646. (pin "3" (uuid b8c9ff96-0d90-4950-bcd8-81d96e448a3b))
  4647. (pin "15" (uuid 40704986-d4a7-4d2a-beb2-8024213acf06))
  4648. (pin "2" (uuid ce6104b4-b810-4649-bbf5-fcc21da82feb))
  4649. (pin "11" (uuid 892b7009-9100-4f04-867f-a2d8f14ad845))
  4650. (pin "6" (uuid 8bde0a3b-dd81-4233-b7df-c67c4ba32023))
  4651. (pin "16" (uuid c0f40aac-7125-46a4-8676-3853151550cb))
  4652. (pin "8" (uuid 8de9cd0a-c6cd-4973-9623-a7e23070cf8c))
  4653. (instances
  4654. (project "hdd_controller"
  4655. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4656. (reference "U_B2") (unit 1)
  4657. )
  4658. )
  4659. )
  4660. )
  4661. (symbol (lib_id "74xx:74LS00") (at 90.424 -30.988 0) (unit 5)
  4662. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4663. (uuid 59b02b05-8219-45de-9179-bf7d1b766503)
  4664. (property "Reference" "U_A5" (at 96.52 -32.258 0)
  4665. (effects (font (size 1.27 1.27)) (justify left))
  4666. )
  4667. (property "Value" "74LS00" (at 96.52 -29.718 0)
  4668. (effects (font (size 1.27 1.27)) (justify left))
  4669. )
  4670. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 90.424 -30.988 0)
  4671. (effects (font (size 1.27 1.27)) hide)
  4672. )
  4673. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 90.424 -30.988 0)
  4674. (effects (font (size 1.27 1.27)) hide)
  4675. )
  4676. (pin "13" (uuid 7d3113c6-f610-4c7c-8465-f3f0f3a316da))
  4677. (pin "6" (uuid 06151212-6f70-4713-a732-1faa1700d113))
  4678. (pin "5" (uuid 1cf65603-b041-469f-952e-0415471a9cda))
  4679. (pin "10" (uuid 600c5199-3e23-49ce-835b-a76ffe67e754))
  4680. (pin "4" (uuid 53c6d448-d817-4527-b5e1-0990e1c9cdf6))
  4681. (pin "9" (uuid 4eb8bd1f-5663-45bc-adc8-c0a68a176ff6))
  4682. (pin "14" (uuid 9f02cbc2-392e-4750-81d3-bb9e04c7f1f5))
  4683. (pin "7" (uuid 7fcab7fc-68ab-483e-9c6b-7adc88da1cfd))
  4684. (pin "8" (uuid 906103d2-c4c6-4d56-9e0a-438351266ab9))
  4685. (pin "12" (uuid 013f2406-def5-4c83-a8ae-53b8c032ae27))
  4686. (pin "3" (uuid a7a2095b-f240-405f-98c2-dc89df087be7))
  4687. (pin "11" (uuid 5d3f2762-0d1d-47a9-8142-7eb68442e187))
  4688. (pin "1" (uuid b061cccd-3750-4240-8ead-218e4b9c0d54))
  4689. (pin "2" (uuid decc2cfc-d3fd-4591-b0df-1577251ccd84))
  4690. (instances
  4691. (project "hdd_controller"
  4692. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4693. (reference "U_A5") (unit 5)
  4694. )
  4695. )
  4696. )
  4697. )
  4698. (symbol (lib_id "74xx:74LS00") (at 654.812 376.936 0) (unit 2)
  4699. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4700. (uuid 5afda5e6-c768-4fe3-ab97-54f46c4c8efa)
  4701. (property "Reference" "U_C3" (at 654.8037 368.554 0)
  4702. (effects (font (size 1.27 1.27)))
  4703. )
  4704. (property "Value" "74LS00" (at 654.8037 371.094 0)
  4705. (effects (font (size 1.27 1.27)))
  4706. )
  4707. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 654.812 376.936 0)
  4708. (effects (font (size 1.27 1.27)) hide)
  4709. )
  4710. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 654.812 376.936 0)
  4711. (effects (font (size 1.27 1.27)) hide)
  4712. )
  4713. (pin "8" (uuid 65b63960-e675-41fe-9aaa-c63d07b4e348))
  4714. (pin "3" (uuid 16be007e-67e0-465b-a6e6-06c017240ceb))
  4715. (pin "12" (uuid 4092add0-3c36-4887-a23f-4113bfebd676))
  4716. (pin "10" (uuid 3b52f3f9-90b5-48f0-9669-ac557775932e))
  4717. (pin "14" (uuid 3def296e-c5e2-44f4-b2a3-33211631cb73))
  4718. (pin "9" (uuid 36058e71-d18e-44ef-a546-0b4bef82579e))
  4719. (pin "5" (uuid 194058f0-c4bb-4996-9fb7-7f4d6b56e68e))
  4720. (pin "13" (uuid 226ef3c7-b2f5-4551-a2ce-39ecb9a68db7))
  4721. (pin "11" (uuid 3bc61ff2-a5f5-474a-9dd8-e496c558f9ca))
  4722. (pin "1" (uuid b29f9701-0a68-4a32-9967-d8a01cf2d677))
  4723. (pin "6" (uuid 5f854d9c-753d-4771-8baa-3623a5f95978))
  4724. (pin "4" (uuid 56782a3e-b87c-4eaa-9d27-393fdc49ecf8))
  4725. (pin "7" (uuid a24d95b3-3e41-4a10-940b-7447f3e8aaf6))
  4726. (pin "2" (uuid edb8862c-cc5d-4658-a5fb-baf31fa6281a))
  4727. (instances
  4728. (project "hdd_controller"
  4729. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4730. (reference "U_C3") (unit 2)
  4731. )
  4732. )
  4733. )
  4734. )
  4735. (symbol (lib_id "power:+5V") (at 278.003 148.209 0) (unit 1)
  4736. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4737. (uuid 679fd5a8-4aff-427d-b6b5-3d0502033ef6)
  4738. (property "Reference" "#PWR05" (at 278.003 152.019 0)
  4739. (effects (font (size 1.27 1.27)) hide)
  4740. )
  4741. (property "Value" "+5V" (at 278.003 143.51 0)
  4742. (effects (font (size 1.27 1.27)))
  4743. )
  4744. (property "Footprint" "" (at 278.003 148.209 0)
  4745. (effects (font (size 1.27 1.27)) hide)
  4746. )
  4747. (property "Datasheet" "" (at 278.003 148.209 0)
  4748. (effects (font (size 1.27 1.27)) hide)
  4749. )
  4750. (pin "1" (uuid 56402ffd-3b2a-4c83-a9a8-2419bfb75e06))
  4751. (instances
  4752. (project "hdd_controller"
  4753. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4754. (reference "#PWR05") (unit 1)
  4755. )
  4756. )
  4757. )
  4758. )
  4759. (symbol (lib_id "74xx:74LS368") (at 378.079 55.499 0) (unit 1)
  4760. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4761. (uuid 67b2c2c6-dd73-4727-83b0-a28f905e22f3)
  4762. (property "Reference" "U_A1" (at 380.2731 37.973 0)
  4763. (effects (font (size 1.27 1.27)) (justify left))
  4764. )
  4765. (property "Value" "74LS368" (at 380.2731 40.513 0)
  4766. (effects (font (size 1.27 1.27)) (justify left))
  4767. )
  4768. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (at 378.079 55.499 0)
  4769. (effects (font (size 1.27 1.27)) hide)
  4770. )
  4771. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS368" (at 378.079 55.499 0)
  4772. (effects (font (size 1.27 1.27)) hide)
  4773. )
  4774. (pin "1" (uuid a062eae0-756a-4d3c-9d4b-c76b97e926b2))
  4775. (pin "7" (uuid 4f3080fe-8059-4a24-9481-5f470edb1653))
  4776. (pin "14" (uuid ae255d20-612c-41da-a67b-e0d38c4213fa))
  4777. (pin "11" (uuid d84be2fa-c185-4375-a6fa-2bbd9cf58c5e))
  4778. (pin "16" (uuid fafaf94e-b8e9-4ffc-841b-14faaf126dc1))
  4779. (pin "15" (uuid f44a2966-484c-4604-9757-856a69ab245f))
  4780. (pin "12" (uuid 072a6082-6f43-4b0a-a92b-60d4ce14cdea))
  4781. (pin "8" (uuid cc9a7a3f-6a28-4538-8bab-551631d92cc5))
  4782. (pin "6" (uuid d583b151-d793-4a21-8664-d36c33e6e3b8))
  4783. (pin "13" (uuid 85890224-9eea-44ae-9b42-1dbc1eb5f26a))
  4784. (pin "4" (uuid 945a7dec-e03d-4281-b64d-5d81ab81c712))
  4785. (pin "5" (uuid 6dd2f1db-853d-489a-a893-fcab5c775974))
  4786. (pin "2" (uuid 92aae916-1560-48d5-8f96-6be68032348b))
  4787. (pin "3" (uuid 3f6fe3c3-eb73-42b3-b328-43695bc90abf))
  4788. (pin "9" (uuid 406bf294-cf24-40e1-a052-5499e282a43f))
  4789. (pin "10" (uuid 7f9b2363-d172-44bd-8cf9-eac10d163d31))
  4790. (instances
  4791. (project "hdd_controller"
  4792. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4793. (reference "U_A1") (unit 1)
  4794. )
  4795. )
  4796. )
  4797. )
  4798. (symbol (lib_id "power:+5V") (at 365.252 220.726 0) (unit 1)
  4799. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4800. (uuid 6c69d2e0-0672-4b0d-a747-4221f8809cf6)
  4801. (property "Reference" "#PWR07" (at 365.252 224.536 0)
  4802. (effects (font (size 1.27 1.27)) hide)
  4803. )
  4804. (property "Value" "+5V" (at 365.252 215.9 0)
  4805. (effects (font (size 1.27 1.27)))
  4806. )
  4807. (property "Footprint" "" (at 365.252 220.726 0)
  4808. (effects (font (size 1.27 1.27)) hide)
  4809. )
  4810. (property "Datasheet" "" (at 365.252 220.726 0)
  4811. (effects (font (size 1.27 1.27)) hide)
  4812. )
  4813. (pin "1" (uuid 029b74f3-8f13-428f-88a9-c45e60bc409c))
  4814. (instances
  4815. (project "hdd_controller"
  4816. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4817. (reference "#PWR07") (unit 1)
  4818. )
  4819. )
  4820. )
  4821. )
  4822. (symbol (lib_id "74xx:74LS00") (at 351.028 140.843 0) (unit 3)
  4823. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4824. (uuid 6d6c9a42-1ccf-4db7-806a-7463342c83e1)
  4825. (property "Reference" "U_A5" (at 351.0197 132.461 0)
  4826. (effects (font (size 1.27 1.27)))
  4827. )
  4828. (property "Value" "74LS00" (at 351.0197 135.001 0)
  4829. (effects (font (size 1.27 1.27)))
  4830. )
  4831. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 351.028 140.843 0)
  4832. (effects (font (size 1.27 1.27)) hide)
  4833. )
  4834. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 351.028 140.843 0)
  4835. (effects (font (size 1.27 1.27)) hide)
  4836. )
  4837. (pin "13" (uuid 7d3113c6-f610-4c7c-8465-f3f0f3a316db))
  4838. (pin "6" (uuid 06151212-6f70-4713-a732-1faa1700d114))
  4839. (pin "5" (uuid 1cf65603-b041-469f-952e-0415471a9cdb))
  4840. (pin "10" (uuid 600c5199-3e23-49ce-835b-a76ffe67e755))
  4841. (pin "4" (uuid 53c6d448-d817-4527-b5e1-0990e1c9cdf7))
  4842. (pin "9" (uuid 4eb8bd1f-5663-45bc-adc8-c0a68a176ff7))
  4843. (pin "14" (uuid 9f02cbc2-392e-4750-81d3-bb9e04c7f1f6))
  4844. (pin "7" (uuid 7fcab7fc-68ab-483e-9c6b-7adc88da1cfe))
  4845. (pin "8" (uuid 906103d2-c4c6-4d56-9e0a-438351266aba))
  4846. (pin "12" (uuid 013f2406-def5-4c83-a8ae-53b8c032ae28))
  4847. (pin "3" (uuid a7a2095b-f240-405f-98c2-dc89df087be8))
  4848. (pin "11" (uuid 5d3f2762-0d1d-47a9-8142-7eb68442e188))
  4849. (pin "1" (uuid b061cccd-3750-4240-8ead-218e4b9c0d55))
  4850. (pin "2" (uuid decc2cfc-d3fd-4591-b0df-1577251ccd85))
  4851. (instances
  4852. (project "hdd_controller"
  4853. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4854. (reference "U_A5") (unit 3)
  4855. )
  4856. )
  4857. )
  4858. )
  4859. (symbol (lib_id "74xx:74LS74") (at 67.056 -25.4 0) (unit 3)
  4860. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4861. (uuid 709d5b9b-054e-4804-8924-511a91f0d05b)
  4862. (property "Reference" "U_A7" (at 73.66 -26.67 0)
  4863. (effects (font (size 1.27 1.27)) (justify left))
  4864. )
  4865. (property "Value" "74LS74" (at 73.66 -24.13 0)
  4866. (effects (font (size 1.27 1.27)) (justify left))
  4867. )
  4868. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 67.056 -25.4 0)
  4869. (effects (font (size 1.27 1.27)) hide)
  4870. )
  4871. (property "Datasheet" "74xx/74hc_hct74.pdf" (at 67.056 -25.4 0)
  4872. (effects (font (size 1.27 1.27)) hide)
  4873. )
  4874. (pin "11" (uuid eb4c6822-ee53-4053-8218-70bd91984e96))
  4875. (pin "3" (uuid 1d02c29b-be7e-4007-838e-6f3481056ac4))
  4876. (pin "5" (uuid b166d702-140f-48ae-ae09-f64a746ef51f))
  4877. (pin "1" (uuid de2ffe25-9eff-40cc-a08a-37eeccec6c80))
  4878. (pin "4" (uuid 27b64494-fab6-423a-b69e-782ddef365c7))
  4879. (pin "12" (uuid 314f2c2d-e0f6-407a-9e65-80306382585e))
  4880. (pin "7" (uuid 19b44ce6-18fa-46fe-b719-37b1f416c35d))
  4881. (pin "2" (uuid d56412ff-e0e8-49f2-8121-787bd87df9b6))
  4882. (pin "8" (uuid e07a16dc-b61e-47ec-b8d4-7f5e3a7d741a))
  4883. (pin "10" (uuid b2422f28-3708-4497-abe3-ec03720de08d))
  4884. (pin "9" (uuid d5e05f13-6119-458f-8ead-137231496c7f))
  4885. (pin "6" (uuid 3d2a3782-969f-4f2e-a069-8f07ce10f79f))
  4886. (pin "14" (uuid f84a7f88-9857-431b-917e-181cfe017581))
  4887. (pin "13" (uuid d2c57801-d61a-4a77-b696-0cd1db049304))
  4888. (instances
  4889. (project "hdd_controller"
  4890. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4891. (reference "U_A7") (unit 3)
  4892. )
  4893. )
  4894. )
  4895. )
  4896. (symbol (lib_id "74xx:74LS221") (at 393.319 137.16 0) (unit 1)
  4897. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4898. (uuid 724c8d7d-6b78-4b7e-b4cf-e66da70ab8d8)
  4899. (property "Reference" "U_A3" (at 393.319 146.558 0)
  4900. (effects (font (size 1.27 1.27)))
  4901. )
  4902. (property "Value" "74LS221" (at 393.319 149.098 0)
  4903. (effects (font (size 1.27 1.27)))
  4904. )
  4905. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (at 393.319 137.16 0)
  4906. (effects (font (size 1.27 1.27)) hide)
  4907. )
  4908. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS221" (at 393.319 137.16 0)
  4909. (effects (font (size 1.27 1.27)) hide)
  4910. )
  4911. (pin "8" (uuid c7523f98-5f38-4380-bba0-fde2ab35fe37))
  4912. (pin "5" (uuid 476cfb1f-461f-4848-8dbe-b7bd6d34cd75))
  4913. (pin "16" (uuid 75154157-2b5e-4096-9a91-b6d37411a220))
  4914. (pin "9" (uuid dbc59cd5-b954-4967-95e6-5780a7e8c0bc))
  4915. (pin "2" (uuid 0167c43e-03ca-4852-a793-13bca5821622))
  4916. (pin "15" (uuid 9b166b22-1c26-47aa-a783-057b9ef0cd3f))
  4917. (pin "3" (uuid 45e2abca-6fa6-40bd-8c44-ba0657894768))
  4918. (pin "12" (uuid 0e3989d3-c9fe-4328-9822-b7090ade43d5))
  4919. (pin "11" (uuid 06fa00e6-ba61-4c75-a050-f4b5a7d637b5))
  4920. (pin "7" (uuid 979c5f21-3769-411a-b8cb-22f09d40262e))
  4921. (pin "6" (uuid d073243c-1ee7-4d74-95db-005f10d12ca6))
  4922. (pin "1" (uuid d4e173d4-da79-451f-8137-3767bd64b6b4))
  4923. (pin "13" (uuid 205d2eb9-2f57-4f3d-ba6d-e5d35f206890))
  4924. (pin "10" (uuid c85b1aa0-e867-448f-982b-f1aa333a9be1))
  4925. (pin "14" (uuid df0167fd-f0e0-4094-a1e8-c51ccd7e7c25))
  4926. (pin "4" (uuid 04e64bb1-ea3b-4726-ba3e-f31e448124d0))
  4927. (instances
  4928. (project "hdd_controller"
  4929. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4930. (reference "U_A3") (unit 1)
  4931. )
  4932. )
  4933. )
  4934. )
  4935. (symbol (lib_id "74xx_IEEE:74LS266") (at 94.742 79.502 0) (unit 2)
  4936. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4937. (uuid 79e65cad-8f1d-4e4c-bd66-f982b8188a43)
  4938. (property "Reference" "U_C1" (at 105.664 75.5651 0)
  4939. (effects (font (size 1.27 1.27)))
  4940. )
  4941. (property "Value" "74LS266" (at 105.664 78.1051 0)
  4942. (effects (font (size 1.27 1.27)))
  4943. )
  4944. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 94.742 79.502 0)
  4945. (effects (font (size 1.27 1.27)) hide)
  4946. )
  4947. (property "Datasheet" "" (at 94.742 79.502 0)
  4948. (effects (font (size 1.27 1.27)) hide)
  4949. )
  4950. (pin "9" (uuid 129fc823-2f10-4257-99a8-4cd55565062d))
  4951. (pin "1" (uuid 15471311-43c7-427c-9ccf-68734b50f29e))
  4952. (pin "8" (uuid e97fdf96-fa37-4f11-8e9a-aa7a1202c189))
  4953. (pin "14" (uuid cf0858b9-6149-474d-8682-7e44410467ef))
  4954. (pin "10" (uuid 8999a3d0-97a1-4379-8ba4-b13c7181c11a))
  4955. (pin "12" (uuid 38113dec-3494-49b7-a7fb-f0ac0bef5fd3))
  4956. (pin "4" (uuid ec9039b9-bfa3-4545-8712-2773a5cfa8f0))
  4957. (pin "5" (uuid 6429e7ab-2e10-404b-9565-2305f3ef798e))
  4958. (pin "13" (uuid 03a83c28-8711-49df-bc9e-34f7fd38bc4b))
  4959. (pin "7" (uuid 23509984-cc7f-4828-8169-f7ceb2512ffc))
  4960. (pin "6" (uuid f70eb79e-2670-434d-8175-59de677bb939))
  4961. (pin "11" (uuid a4b7fa0f-9be1-48f6-a10d-5397d76be81d))
  4962. (pin "2" (uuid 506831be-dbe9-49ce-afee-531401059c7a))
  4963. (pin "3" (uuid fedd4386-a9b0-4c54-984e-86c7502c8b5f))
  4964. (instances
  4965. (project "hdd_controller"
  4966. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  4967. (reference "U_C1") (unit 2)
  4968. )
  4969. )
  4970. )
  4971. )
  4972. (symbol (lib_id "74xx:74LS00") (at 122.428 -35.052 0) (unit 5)
  4973. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4974. (uuid 8443e41a-093d-4b1c-aec5-5d172b4b802d)
  4975. (property "Reference" "U_A6" (at 128.27 -36.322 0)
  4976. (effects (font (size 1.27 1.27)) (justify left))
  4977. )
  4978. (property "Value" "74LS00" (at 128.27 -33.782 0)
  4979. (effects (font (size 1.27 1.27)) (justify left))
  4980. )
  4981. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 122.428 -35.052 0)
  4982. (effects (font (size 1.27 1.27)) hide)
  4983. )
  4984. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 122.428 -35.052 0)
  4985. (effects (font (size 1.27 1.27)) hide)
  4986. )
  4987. (pin "8" (uuid 65b63960-e675-41fe-9aaa-c63d07b4e349))
  4988. (pin "3" (uuid 16be007e-67e0-465b-a6e6-06c017240cec))
  4989. (pin "12" (uuid 4092add0-3c36-4887-a23f-4113bfebd677))
  4990. (pin "10" (uuid 3b52f3f9-90b5-48f0-9669-ac557775932f))
  4991. (pin "14" (uuid 3def296e-c5e2-44f4-b2a3-33211631cb74))
  4992. (pin "9" (uuid 36058e71-d18e-44ef-a546-0b4bef82579f))
  4993. (pin "5" (uuid 194058f0-c4bb-4996-9fb7-7f4d6b56e68f))
  4994. (pin "13" (uuid 226ef3c7-b2f5-4551-a2ce-39ecb9a68db8))
  4995. (pin "11" (uuid 3bc61ff2-a5f5-474a-9dd8-e496c558f9cb))
  4996. (pin "1" (uuid b29f9701-0a68-4a32-9967-d8a01cf2d678))
  4997. (pin "6" (uuid 5f854d9c-753d-4771-8baa-3623a5f95979))
  4998. (pin "4" (uuid 56782a3e-b87c-4eaa-9d27-393fdc49ecf9))
  4999. (pin "7" (uuid a24d95b3-3e41-4a10-940b-7447f3e8aaf7))
  5000. (pin "2" (uuid edb8862c-cc5d-4658-a5fb-baf31fa6281b))
  5001. (instances
  5002. (project "hdd_controller"
  5003. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5004. (reference "U_A6") (unit 5)
  5005. )
  5006. )
  5007. )
  5008. )
  5009. (symbol (lib_id "74xx:74LS00") (at 350.393 125.095 0) (unit 2)
  5010. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5011. (uuid 858d478f-7503-4c6f-9519-4b8e88d5342c)
  5012. (property "Reference" "U_A5" (at 350.3847 116.459 0)
  5013. (effects (font (size 1.27 1.27)))
  5014. )
  5015. (property "Value" "74LS00" (at 350.3847 118.999 0)
  5016. (effects (font (size 1.27 1.27)))
  5017. )
  5018. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 350.393 125.095 0)
  5019. (effects (font (size 1.27 1.27)) hide)
  5020. )
  5021. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 350.393 125.095 0)
  5022. (effects (font (size 1.27 1.27)) hide)
  5023. )
  5024. (pin "13" (uuid 7d3113c6-f610-4c7c-8465-f3f0f3a316dc))
  5025. (pin "6" (uuid 06151212-6f70-4713-a732-1faa1700d115))
  5026. (pin "5" (uuid 1cf65603-b041-469f-952e-0415471a9cdc))
  5027. (pin "10" (uuid 600c5199-3e23-49ce-835b-a76ffe67e756))
  5028. (pin "4" (uuid 53c6d448-d817-4527-b5e1-0990e1c9cdf8))
  5029. (pin "9" (uuid 4eb8bd1f-5663-45bc-adc8-c0a68a176ff8))
  5030. (pin "14" (uuid 9f02cbc2-392e-4750-81d3-bb9e04c7f1f7))
  5031. (pin "7" (uuid 7fcab7fc-68ab-483e-9c6b-7adc88da1cff))
  5032. (pin "8" (uuid 906103d2-c4c6-4d56-9e0a-438351266abb))
  5033. (pin "12" (uuid 013f2406-def5-4c83-a8ae-53b8c032ae29))
  5034. (pin "3" (uuid a7a2095b-f240-405f-98c2-dc89df087be9))
  5035. (pin "11" (uuid 5d3f2762-0d1d-47a9-8142-7eb68442e189))
  5036. (pin "1" (uuid b061cccd-3750-4240-8ead-218e4b9c0d56))
  5037. (pin "2" (uuid decc2cfc-d3fd-4591-b0df-1577251ccd86))
  5038. (instances
  5039. (project "hdd_controller"
  5040. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5041. (reference "U_A5") (unit 2)
  5042. )
  5043. )
  5044. )
  5045. )
  5046. (symbol (lib_id "74xx:74LS32") (at 390.906 162.814 0) (unit 3)
  5047. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5048. (uuid 8935a8b1-a458-4db0-87a5-0cd34b5848bc)
  5049. (property "Reference" "U_A4" (at 390.906 154.559 0)
  5050. (effects (font (size 1.27 1.27)))
  5051. )
  5052. (property "Value" "74LS32" (at 390.906 157.099 0)
  5053. (effects (font (size 1.27 1.27)))
  5054. )
  5055. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 390.906 162.814 0)
  5056. (effects (font (size 1.27 1.27)) hide)
  5057. )
  5058. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS32" (at 390.906 162.814 0)
  5059. (effects (font (size 1.27 1.27)) hide)
  5060. )
  5061. (pin "11" (uuid 2d872ed0-847b-44f4-adf3-14027e6f1ed8))
  5062. (pin "5" (uuid 39cfed38-ec90-4b79-b44e-83b663114f94))
  5063. (pin "14" (uuid d4e2bfc7-ae57-4055-80a6-dacf669b7ac5))
  5064. (pin "3" (uuid b5bec27b-dfad-480a-a708-1aa2cbe80c86))
  5065. (pin "7" (uuid c18c3b5e-0edb-42d6-af73-e70b32440e6d))
  5066. (pin "8" (uuid 0d296f60-586c-42f7-aabd-684859761303))
  5067. (pin "13" (uuid ca9f60d0-feb4-42a8-a503-07ba8ddada3b))
  5068. (pin "12" (uuid e2b5cc9e-19af-4caa-8184-547eba655eab))
  5069. (pin "4" (uuid 1aa90625-2ac9-4cd8-892b-585b4995afd0))
  5070. (pin "9" (uuid b4fbcf9a-aeba-4c4d-8b7c-0786a80ea654))
  5071. (pin "2" (uuid 1bd018cb-f8a5-4f2a-8a18-fc49dd2ee021))
  5072. (pin "1" (uuid e96460da-6e21-43c8-947a-d2f7ef49d32b))
  5073. (pin "6" (uuid 1ea5ec06-aae1-4360-8822-580781a43f2a))
  5074. (pin "10" (uuid eb20a7ba-2979-45ba-b552-be1ee7394e87))
  5075. (instances
  5076. (project "hdd_controller"
  5077. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5078. (reference "U_A4") (unit 3)
  5079. )
  5080. )
  5081. )
  5082. )
  5083. (symbol (lib_id "Connector_Generic:Conn_02x13_Odd_Even") (at 546.354 136.144 0) (unit 1)
  5084. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5085. (uuid 8a8eaa64-aa5f-4edd-93e8-f9077763c570)
  5086. (property "Reference" "J1" (at 547.624 115.316 0)
  5087. (effects (font (size 1.27 1.27)))
  5088. )
  5089. (property "Value" "Conn_02x13_Odd_Even" (at 547.624 117.856 0)
  5090. (effects (font (size 1.27 1.27)))
  5091. )
  5092. (property "Footprint" "" (at 546.354 136.144 0)
  5093. (effects (font (size 1.27 1.27)) hide)
  5094. )
  5095. (property "Datasheet" "~" (at 546.354 136.144 0)
  5096. (effects (font (size 1.27 1.27)) hide)
  5097. )
  5098. (pin "20" (uuid 510b04c7-4aff-49f4-bd46-d8f365c30a1d))
  5099. (pin "22" (uuid 11eb78c4-c7aa-4085-888a-b97c6a50b7f7))
  5100. (pin "25" (uuid 04ff0542-0e0e-456a-9d17-006c9cc2d831))
  5101. (pin "7" (uuid 95b82a08-b06c-4abb-8546-cd7d86d988be))
  5102. (pin "9" (uuid 9282284e-0d44-4245-b7f9-bfb98c11b101))
  5103. (pin "23" (uuid fcbdc8e0-2446-4ee4-98a4-5942fe275ae7))
  5104. (pin "19" (uuid 20ec6789-8afd-4374-9d49-7698b4f62bcf))
  5105. (pin "11" (uuid db93609f-18c8-4c52-b202-1cf7f6219fe9))
  5106. (pin "1" (uuid b5add17d-4cf3-4361-bb66-c21b238e7805))
  5107. (pin "26" (uuid 7a88e8e6-5a13-493c-b1b3-b423d28aaba8))
  5108. (pin "17" (uuid 9427a458-cf8e-47c8-b5cb-ec2d6ca668b1))
  5109. (pin "16" (uuid 3d1a6cf6-60e9-47f7-a7b1-a4a1652d501f))
  5110. (pin "10" (uuid f8df98ce-ea85-4859-baa5-4a8e4f406fa3))
  5111. (pin "8" (uuid 96107896-a262-43cf-847b-caf8d2132881))
  5112. (pin "24" (uuid 383579fb-740c-4230-8823-c84cee0ca08b))
  5113. (pin "12" (uuid 249e31ce-b3b5-4836-9961-8e6bb0d3f6ff))
  5114. (pin "21" (uuid c347952b-044d-4a3f-aec8-f821112813b4))
  5115. (pin "4" (uuid e3d588db-0502-48a8-b371-0413ce60951e))
  5116. (pin "5" (uuid dd4c6ebd-b272-488d-866a-09ed6e410b1f))
  5117. (pin "3" (uuid b32f5de1-9d33-4fc2-b0da-477b5f90a062))
  5118. (pin "18" (uuid 030a7ae4-14fd-4067-8997-866f836b8da6))
  5119. (pin "6" (uuid 38221ad0-55f1-4cba-9572-ea9082fd2c26))
  5120. (pin "2" (uuid 94ae75f1-20ed-4862-8a97-9b260d5cdf0d))
  5121. (pin "14" (uuid fd312bbe-4037-414a-bf12-441fa33069f2))
  5122. (pin "13" (uuid 4c8830d3-1bca-4507-bb51-e63c39dd8603))
  5123. (pin "15" (uuid 6c6ac716-d8f3-41e2-9894-17f0d1b7af10))
  5124. (instances
  5125. (project "hdd_controller"
  5126. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5127. (reference "J1") (unit 1)
  5128. )
  5129. )
  5130. )
  5131. )
  5132. (symbol (lib_id "sm6uax:UPB8216") (at 497.332 164.211 0) (mirror y) (unit 1)
  5133. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5134. (uuid 8f7383d8-2e48-4060-bd8c-8aecfef245cc)
  5135. (property "Reference" "U_B1" (at 495.1379 143.637 0)
  5136. (effects (font (size 1.27 1.27)) (justify left))
  5137. )
  5138. (property "Value" "UPB8216" (at 495.1379 146.177 0)
  5139. (effects (font (size 1.27 1.27)) (justify left))
  5140. )
  5141. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (at 497.332 164.211 0)
  5142. (effects (font (size 1.27 1.27)) hide)
  5143. )
  5144. (property "Datasheet" "https://www.nteinc.com/specs/8000to8999/pdf/nte8216.pdf" (at 497.332 164.211 0)
  5145. (effects (font (size 1.27 1.27)) hide)
  5146. )
  5147. (pin "1" (uuid fc8b09a0-f4de-47d3-874d-e775a5832d76))
  5148. (pin "10" (uuid 16c994c6-88a0-4f82-9ccf-2b0afaf6ec60))
  5149. (pin "8" (uuid 8e34f972-ea39-4d91-8ed2-34f85b99a91a))
  5150. (pin "12" (uuid 622807e6-a1e4-480a-9ef2-19903d0c3990))
  5151. (pin "16" (uuid 93444e86-d27d-4adb-a539-2baaad0eb6a9))
  5152. (pin "3" (uuid b89aea3b-9363-4730-b3aa-e1495ea336e5))
  5153. (pin "6" (uuid 6ba6c9ef-84a7-4530-8f46-0ab0e4e72b2f))
  5154. (pin "5" (uuid a8558da3-cde4-4b2b-9945-848db2037884))
  5155. (pin "7" (uuid 016b6621-4cd5-4dd5-9e22-583661e57b4b))
  5156. (pin "4" (uuid 4386fbb0-6a43-408c-b31a-a1ecab5bb345))
  5157. (pin "9" (uuid 13212579-9dee-442c-b29f-6427b10608a5))
  5158. (pin "2" (uuid 35a5d307-639c-49da-89b9-99df377f5faf))
  5159. (pin "15" (uuid 7e9faf17-8b8a-4428-bbc0-202e35b228fb))
  5160. (pin "14" (uuid 62465a52-ad99-4e06-bac0-5f37911a74f2))
  5161. (pin "13" (uuid af96d5d4-a067-400a-97df-5e7b0d8f0935))
  5162. (pin "11" (uuid adf91ca6-b9d1-459f-9b01-c91d3971bfb7))
  5163. (instances
  5164. (project "hdd_controller"
  5165. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5166. (reference "U_B1") (unit 1)
  5167. )
  5168. )
  5169. )
  5170. )
  5171. (symbol (lib_id "74xx:74LS00") (at 656.082 361.442 0) (unit 1)
  5172. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5173. (uuid 96eb7795-7655-48d5-89f2-0f65901a5ff0)
  5174. (property "Reference" "U_C3" (at 656.0737 353.314 0)
  5175. (effects (font (size 1.27 1.27)))
  5176. )
  5177. (property "Value" "74LS00" (at 656.0737 355.854 0)
  5178. (effects (font (size 1.27 1.27)))
  5179. )
  5180. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 656.082 361.442 0)
  5181. (effects (font (size 1.27 1.27)) hide)
  5182. )
  5183. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 656.082 361.442 0)
  5184. (effects (font (size 1.27 1.27)) hide)
  5185. )
  5186. (pin "8" (uuid 65b63960-e675-41fe-9aaa-c63d07b4e34a))
  5187. (pin "3" (uuid 16be007e-67e0-465b-a6e6-06c017240ced))
  5188. (pin "12" (uuid 4092add0-3c36-4887-a23f-4113bfebd678))
  5189. (pin "10" (uuid 3b52f3f9-90b5-48f0-9669-ac5577759330))
  5190. (pin "14" (uuid 3def296e-c5e2-44f4-b2a3-33211631cb75))
  5191. (pin "9" (uuid 36058e71-d18e-44ef-a546-0b4bef8257a0))
  5192. (pin "5" (uuid 194058f0-c4bb-4996-9fb7-7f4d6b56e690))
  5193. (pin "13" (uuid 226ef3c7-b2f5-4551-a2ce-39ecb9a68db9))
  5194. (pin "11" (uuid 3bc61ff2-a5f5-474a-9dd8-e496c558f9cc))
  5195. (pin "1" (uuid b29f9701-0a68-4a32-9967-d8a01cf2d679))
  5196. (pin "6" (uuid 5f854d9c-753d-4771-8baa-3623a5f9597a))
  5197. (pin "4" (uuid 56782a3e-b87c-4eaa-9d27-393fdc49ecfa))
  5198. (pin "7" (uuid a24d95b3-3e41-4a10-940b-7447f3e8aaf8))
  5199. (pin "2" (uuid edb8862c-cc5d-4658-a5fb-baf31fa6281c))
  5200. (instances
  5201. (project "hdd_controller"
  5202. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5203. (reference "U_C3") (unit 1)
  5204. )
  5205. )
  5206. )
  5207. )
  5208. (symbol (lib_id "power:GND") (at 221.488 124.841 0) (unit 1)
  5209. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5210. (uuid 982d614f-c9ca-45c3-9466-8bc2ed7c46e9)
  5211. (property "Reference" "#PWR010" (at 221.488 131.191 0)
  5212. (effects (font (size 1.27 1.27)) hide)
  5213. )
  5214. (property "Value" "GND" (at 221.488 129.54 0)
  5215. (effects (font (size 1.27 1.27)))
  5216. )
  5217. (property "Footprint" "" (at 221.488 124.841 0)
  5218. (effects (font (size 1.27 1.27)) hide)
  5219. )
  5220. (property "Datasheet" "" (at 221.488 124.841 0)
  5221. (effects (font (size 1.27 1.27)) hide)
  5222. )
  5223. (pin "1" (uuid f4037aa2-41ff-4e4a-954b-3a0760e55ea0))
  5224. (instances
  5225. (project "hdd_controller"
  5226. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5227. (reference "#PWR010") (unit 1)
  5228. )
  5229. )
  5230. )
  5231. )
  5232. (symbol (lib_id "74xx:74LS32") (at 20.193 -29.083 0) (unit 5)
  5233. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5234. (uuid 9dd1c0eb-da08-4d1c-bb37-542f30f5e423)
  5235. (property "Reference" "U_A4" (at 26.67 -30.353 0)
  5236. (effects (font (size 1.27 1.27)) (justify left))
  5237. )
  5238. (property "Value" "74LS32" (at 26.67 -27.813 0)
  5239. (effects (font (size 1.27 1.27)) (justify left))
  5240. )
  5241. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 20.193 -29.083 0)
  5242. (effects (font (size 1.27 1.27)) hide)
  5243. )
  5244. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS32" (at 20.193 -29.083 0)
  5245. (effects (font (size 1.27 1.27)) hide)
  5246. )
  5247. (pin "11" (uuid 2d872ed0-847b-44f4-adf3-14027e6f1ed9))
  5248. (pin "5" (uuid 39cfed38-ec90-4b79-b44e-83b663114f95))
  5249. (pin "14" (uuid d4e2bfc7-ae57-4055-80a6-dacf669b7ac6))
  5250. (pin "3" (uuid b5bec27b-dfad-480a-a708-1aa2cbe80c87))
  5251. (pin "7" (uuid c18c3b5e-0edb-42d6-af73-e70b32440e6e))
  5252. (pin "8" (uuid 0d296f60-586c-42f7-aabd-684859761304))
  5253. (pin "13" (uuid ca9f60d0-feb4-42a8-a503-07ba8ddada3c))
  5254. (pin "12" (uuid e2b5cc9e-19af-4caa-8184-547eba655eac))
  5255. (pin "4" (uuid 1aa90625-2ac9-4cd8-892b-585b4995afd1))
  5256. (pin "9" (uuid b4fbcf9a-aeba-4c4d-8b7c-0786a80ea655))
  5257. (pin "2" (uuid 1bd018cb-f8a5-4f2a-8a18-fc49dd2ee022))
  5258. (pin "1" (uuid e96460da-6e21-43c8-947a-d2f7ef49d32c))
  5259. (pin "6" (uuid 1ea5ec06-aae1-4360-8822-580781a43f2b))
  5260. (pin "10" (uuid eb20a7ba-2979-45ba-b552-be1ee7394e88))
  5261. (instances
  5262. (project "hdd_controller"
  5263. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5264. (reference "U_A4") (unit 5)
  5265. )
  5266. )
  5267. )
  5268. )
  5269. (symbol (lib_id "power:GND") (at 360.045 69.723 0) (unit 1)
  5270. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5271. (uuid 9ffda478-e3fd-4bea-8718-40986420459e)
  5272. (property "Reference" "#PWR08" (at 360.045 76.073 0)
  5273. (effects (font (size 1.27 1.27)) hide)
  5274. )
  5275. (property "Value" "GND" (at 360.045 74.93 0)
  5276. (effects (font (size 1.27 1.27)))
  5277. )
  5278. (property "Footprint" "" (at 360.045 69.723 0)
  5279. (effects (font (size 1.27 1.27)) hide)
  5280. )
  5281. (property "Datasheet" "" (at 360.045 69.723 0)
  5282. (effects (font (size 1.27 1.27)) hide)
  5283. )
  5284. (pin "1" (uuid 60bdbc4b-8290-4773-82b2-449e40324988))
  5285. (instances
  5286. (project "hdd_controller"
  5287. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5288. (reference "#PWR08") (unit 1)
  5289. )
  5290. )
  5291. )
  5292. )
  5293. (symbol (lib_id "74xx:74LS00") (at 247.904 154.051 0) (unit 3)
  5294. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5295. (uuid a7a380b9-15fc-4c7a-aca8-16fdd0190054)
  5296. (property "Reference" "U_A6" (at 247.8957 145.923 0)
  5297. (effects (font (size 1.27 1.27)))
  5298. )
  5299. (property "Value" "74LS00" (at 247.8957 148.463 0)
  5300. (effects (font (size 1.27 1.27)))
  5301. )
  5302. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 247.904 154.051 0)
  5303. (effects (font (size 1.27 1.27)) hide)
  5304. )
  5305. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 247.904 154.051 0)
  5306. (effects (font (size 1.27 1.27)) hide)
  5307. )
  5308. (pin "1" (uuid 9e152e87-85b9-4ca0-9f14-c3629ac05a16))
  5309. (pin "11" (uuid 07a35f0f-2fc3-48d6-948e-08b6a4582f31))
  5310. (pin "7" (uuid 91be8ff6-ea30-4cfe-8550-f921f0c119f1))
  5311. (pin "3" (uuid a1d36fed-801b-4f28-b7de-960ec126e414))
  5312. (pin "4" (uuid 987ec8f2-67be-4bc7-96e5-331a437e67a2))
  5313. (pin "8" (uuid 015fcc9c-1c54-41ae-9667-6b90623d3bbe))
  5314. (pin "5" (uuid 3d9923fc-dab2-4ec3-8faf-6fc173a3cb7c))
  5315. (pin "6" (uuid 37f2bbca-d096-41fe-83fa-d91884484ed3))
  5316. (pin "9" (uuid a7f09a43-c967-4677-b916-abbffbbbc778))
  5317. (pin "2" (uuid 6b47cdc2-b2c2-4fad-99f9-9e770bb61398))
  5318. (pin "14" (uuid 7f4ff8a9-648e-4be9-8eac-3be575158d41))
  5319. (pin "10" (uuid 63154ed7-58fe-461c-9e93-0ca096d71b68))
  5320. (pin "12" (uuid d54d1780-c771-4490-86d0-ada3bb046448))
  5321. (pin "13" (uuid c15cf5f7-7607-4968-9e88-3aa7a02d4660))
  5322. (instances
  5323. (project "hdd_controller"
  5324. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5325. (reference "U_A6") (unit 3)
  5326. )
  5327. )
  5328. )
  5329. )
  5330. (symbol (lib_id "power:GND") (at 171.704 163.068 0) (unit 1)
  5331. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5332. (uuid a8067586-8e67-4142-9e80-b0d508d1e560)
  5333. (property "Reference" "#PWR011" (at 171.704 169.418 0)
  5334. (effects (font (size 1.27 1.27)) hide)
  5335. )
  5336. (property "Value" "GND" (at 171.704 167.64 0)
  5337. (effects (font (size 1.27 1.27)))
  5338. )
  5339. (property "Footprint" "" (at 171.704 163.068 0)
  5340. (effects (font (size 1.27 1.27)) hide)
  5341. )
  5342. (property "Datasheet" "" (at 171.704 163.068 0)
  5343. (effects (font (size 1.27 1.27)) hide)
  5344. )
  5345. (pin "1" (uuid b35d6a64-c04a-458c-830b-5605c0383163))
  5346. (instances
  5347. (project "hdd_controller"
  5348. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5349. (reference "#PWR011") (unit 1)
  5350. )
  5351. )
  5352. )
  5353. )
  5354. (symbol (lib_id "max80:ABC-Bus") (at 40.767 169.545 0) (unit 1)
  5355. (in_bom yes) (on_board yes) (dnp no)
  5356. (uuid ab7d9b8a-d0d7-4075-bd0e-b33e23d3b435)
  5357. (property "Reference" "X1" (at 39.497 124.1806 0)
  5358. (effects (font (size 1.4986 1.4986)))
  5359. )
  5360. (property "Value" "ABC-Bus" (at 39.497 126.8476 0)
  5361. (effects (font (size 1.4986 1.4986)))
  5362. )
  5363. (property "Footprint" "sm6uax:MAB64B" (at 20.447 170.815 0)
  5364. (effects (font (size 1.27 1.27)) hide)
  5365. )
  5366. (property "Datasheet" "" (at 30.607 169.545 0)
  5367. (effects (font (size 1.27 1.27)) hide)
  5368. )
  5369. (pin "A10" (uuid 069db05d-3c68-4cfe-b360-731285ebb962))
  5370. (pin "A11" (uuid 5ccccbf9-40f6-4f36-9b81-3700e078614d))
  5371. (pin "A12" (uuid cde284c8-f31a-40ab-8916-cc1942a7d7e3))
  5372. (pin "A13" (uuid 7c78780e-91e0-4349-80b8-86eaf78eb463))
  5373. (pin "A14" (uuid e07fd83c-d6e4-4413-816c-58817d1a5c2f))
  5374. (pin "A15" (uuid f626024e-7fe8-4c59-8821-54e28092778b))
  5375. (pin "A16" (uuid 7ecb2c4c-8935-40d3-aac9-78f35b7e6f22))
  5376. (pin "A17" (uuid 8ce52498-c088-4147-87a3-c0f962c4d82d))
  5377. (pin "A18" (uuid 4f3089bc-7189-4838-a20d-19720780b76e))
  5378. (pin "A19" (uuid 1976dad1-6bb6-483f-9cd3-48145ef158f9))
  5379. (pin "A2" (uuid 740f8bc2-cc70-4e9d-bf69-21be90e54e38))
  5380. (pin "A20" (uuid ffe2547a-83ab-41aa-bc41-66f81e441902))
  5381. (pin "A21" (uuid 9a21a588-da6f-477b-b41d-2b04ef7d5ed2))
  5382. (pin "A22" (uuid 0aa96034-b1b0-45e7-8ae6-fd6facc5c0b0))
  5383. (pin "A23" (uuid 6f9d9074-af9a-4f09-8a16-2cbd2ec5d64a))
  5384. (pin "A24" (uuid cbeec121-f039-46dc-ae0d-15b61cfab2ff))
  5385. (pin "A25" (uuid 054ece96-277b-4fd6-bfcd-06c56ad4ff43))
  5386. (pin "A26" (uuid a22d4ecf-89e4-4aec-ac5a-2674fac3bf11))
  5387. (pin "A27" (uuid e41aa310-508d-45d5-b11c-96248831324b))
  5388. (pin "A28" (uuid 4f02c72d-cc1f-4659-b80f-033d0dbaed54))
  5389. (pin "A29" (uuid f109e610-485b-404e-a6b9-7fbbf04c8554))
  5390. (pin "A3" (uuid 0a41afc6-afed-47f7-a7e0-2ef945a28a5e))
  5391. (pin "A30" (uuid 743ec1aa-b290-42c9-b7c7-cc25e56ffede))
  5392. (pin "A31" (uuid 44ea1214-90a8-4f97-bdc5-865d6dba48b0))
  5393. (pin "A32" (uuid 05a7efa0-61ff-4dd5-ba04-9629cd146578))
  5394. (pin "A4" (uuid 7c89c3fe-bc2d-49b0-b564-28644e337e90))
  5395. (pin "A5" (uuid 3a6e80ee-4063-4768-b5db-3c8f5f9db2d8))
  5396. (pin "A6" (uuid 31ca1371-9c13-4759-aae1-7e2aa6ffea34))
  5397. (pin "A7" (uuid e42547b4-83c1-48b5-bbd3-d8e026984a91))
  5398. (pin "A8" (uuid 339e854f-d340-4f15-a863-20e564be85dc))
  5399. (pin "A9" (uuid a3ac394b-8d03-41f3-8232-0357adf5dd26))
  5400. (pin "A1" (uuid 15c5bcc1-0bc1-46ea-97b8-f83af85f9b98))
  5401. (pin "B1" (uuid 7af2472e-c11b-45c4-a971-d715cb40ddbe))
  5402. (pin "B10" (uuid 577728ef-c1a8-4d2d-b22c-382b061dd718))
  5403. (pin "B11" (uuid bbc54001-7754-47ad-8141-36e09c2a45c6))
  5404. (pin "B12" (uuid 718e8d44-e3b5-49df-bcc3-e39436195004))
  5405. (pin "B13" (uuid 577de396-9191-49cf-822b-44b35663b971))
  5406. (pin "B14" (uuid 9aed1679-ee92-4565-9ff7-f91a95f822fa))
  5407. (pin "B15" (uuid 238cdee9-cf35-48e7-9e03-358ef2e83694))
  5408. (pin "B16" (uuid 093d84f7-5847-4c2e-8f44-3d23fcc1ebe5))
  5409. (pin "B17" (uuid d28e2bc3-89e8-46fb-be0a-29a80cca0987))
  5410. (pin "B18" (uuid 5d08d88f-4277-441c-b34b-7fccb44731c8))
  5411. (pin "B19" (uuid 123e070e-49ee-4489-b0a3-2ec39daee13a))
  5412. (pin "B2" (uuid a0db75eb-6614-4d7f-a95d-b01877a3cc5f))
  5413. (pin "B20" (uuid dd0b53ac-258a-4381-a77f-7d0bebfd1f91))
  5414. (pin "B21" (uuid e44dbb3b-b1c8-4c80-bcbe-6bb604270872))
  5415. (pin "B22" (uuid a3036087-fc03-4f3f-a07e-864a93b13320))
  5416. (pin "B23" (uuid 3fb6a0bf-4638-42f9-aa4d-57e635e2cf9a))
  5417. (pin "B24" (uuid a62e78a2-9fc0-475b-902b-d48ba6f20c0d))
  5418. (pin "B25" (uuid dc200167-a288-4490-b1b2-ae76c54f8377))
  5419. (pin "B26" (uuid 0b2f7cf2-7c84-4451-8187-fcb26a86ad8b))
  5420. (pin "B27" (uuid a97c9878-3a39-41da-b866-1090ffa9a769))
  5421. (pin "B28" (uuid b2aba528-56f3-436a-a170-17402b89275f))
  5422. (pin "B29" (uuid d5628e26-a9bc-4793-bd8d-216272679e9d))
  5423. (pin "B3" (uuid a989a112-a528-4fb6-9e2c-2bddf2b279f8))
  5424. (pin "B30" (uuid 215e2620-53a6-46a7-bc45-17346d1d9515))
  5425. (pin "B31" (uuid 298daf8b-234d-49d4-94ca-f72c1b8a1c68))
  5426. (pin "B32" (uuid 44c1fc0f-1c46-4b68-939c-fbf65e58df23))
  5427. (pin "B4" (uuid 7d5f34d4-c5d7-47f6-bb64-a34af1e2c8ab))
  5428. (pin "B5" (uuid ba16e464-647a-4186-ae14-72c7b52d4bb8))
  5429. (pin "B6" (uuid 6f3e9f9c-1a61-4944-a72a-a0bb473d0dcc))
  5430. (pin "B7" (uuid e098f619-4e39-48b4-8bea-43084382f252))
  5431. (pin "B8" (uuid 1a52030b-b9b6-4fc8-b3f0-923b277691a0))
  5432. (pin "B9" (uuid 1b372952-cc21-4e02-b4e1-1c5176ae8a99))
  5433. (instances
  5434. (project "max80"
  5435. (path "/6d7ff8c0-8a2a-4636-844f-c7210ff3e6f2/00000000-0000-0000-0000-00006013b380"
  5436. (reference "X1") (unit 1)
  5437. )
  5438. )
  5439. (project "hdd_controller"
  5440. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5441. (reference "X3") (unit 1)
  5442. )
  5443. )
  5444. )
  5445. )
  5446. (symbol (lib_id "74xx:74LS00") (at 406.146 38.862 0) (unit 1)
  5447. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5448. (uuid b85081d2-d1a6-4e13-9c75-932600728ade)
  5449. (property "Reference" "U_A5" (at 406.1377 29.972 0)
  5450. (effects (font (size 1.27 1.27)))
  5451. )
  5452. (property "Value" "74LS00" (at 406.1377 32.512 0)
  5453. (effects (font (size 1.27 1.27)))
  5454. )
  5455. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 406.146 38.862 0)
  5456. (effects (font (size 1.27 1.27)) hide)
  5457. )
  5458. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 406.146 38.862 0)
  5459. (effects (font (size 1.27 1.27)) hide)
  5460. )
  5461. (pin "13" (uuid 7d3113c6-f610-4c7c-8465-f3f0f3a316dd))
  5462. (pin "6" (uuid 06151212-6f70-4713-a732-1faa1700d116))
  5463. (pin "5" (uuid 1cf65603-b041-469f-952e-0415471a9cdd))
  5464. (pin "10" (uuid 600c5199-3e23-49ce-835b-a76ffe67e757))
  5465. (pin "4" (uuid 53c6d448-d817-4527-b5e1-0990e1c9cdf9))
  5466. (pin "9" (uuid 4eb8bd1f-5663-45bc-adc8-c0a68a176ff9))
  5467. (pin "14" (uuid 9f02cbc2-392e-4750-81d3-bb9e04c7f1f8))
  5468. (pin "7" (uuid 7fcab7fc-68ab-483e-9c6b-7adc88da1d00))
  5469. (pin "8" (uuid 906103d2-c4c6-4d56-9e0a-438351266abc))
  5470. (pin "12" (uuid 013f2406-def5-4c83-a8ae-53b8c032ae2a))
  5471. (pin "3" (uuid a7a2095b-f240-405f-98c2-dc89df087bea))
  5472. (pin "11" (uuid 5d3f2762-0d1d-47a9-8142-7eb68442e18a))
  5473. (pin "1" (uuid b061cccd-3750-4240-8ead-218e4b9c0d57))
  5474. (pin "2" (uuid decc2cfc-d3fd-4591-b0df-1577251ccd87))
  5475. (instances
  5476. (project "hdd_controller"
  5477. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5478. (reference "U_A5") (unit 1)
  5479. )
  5480. )
  5481. )
  5482. )
  5483. (symbol (lib_id "power:+5V") (at 303.276 63.119 0) (unit 1)
  5484. (in_bom yes) (on_board yes) (dnp no)
  5485. (uuid b9f558f5-4bc5-4862-adda-33cb93182d3b)
  5486. (property "Reference" "#PWR06" (at 303.276 66.929 0)
  5487. (effects (font (size 1.27 1.27)) hide)
  5488. )
  5489. (property "Value" "+5V" (at 306.959 61.087 0)
  5490. (effects (font (size 1.27 1.27)) hide)
  5491. )
  5492. (property "Footprint" "" (at 303.276 63.119 0)
  5493. (effects (font (size 1.27 1.27)) hide)
  5494. )
  5495. (property "Datasheet" "" (at 303.276 63.119 0)
  5496. (effects (font (size 1.27 1.27)) hide)
  5497. )
  5498. (pin "1" (uuid a0cfc543-b0d6-469a-8b1c-c8b86782f45e))
  5499. (instances
  5500. (project "hdd_controller"
  5501. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5502. (reference "#PWR06") (unit 1)
  5503. )
  5504. )
  5505. )
  5506. )
  5507. (symbol (lib_id "74xx_IEEE:74LS266") (at 233.553 200.787 0) (unit 2)
  5508. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5509. (uuid bafd74a7-842c-4c73-b733-5fd21ce5c7e7)
  5510. (property "Reference" "U_C2" (at 243.967 196.8501 0)
  5511. (effects (font (size 1.27 1.27)))
  5512. )
  5513. (property "Value" "74LS266" (at 243.967 199.3901 0)
  5514. (effects (font (size 1.27 1.27)))
  5515. )
  5516. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 233.553 200.787 0)
  5517. (effects (font (size 1.27 1.27)) hide)
  5518. )
  5519. (property "Datasheet" "" (at 233.553 200.787 0)
  5520. (effects (font (size 1.27 1.27)) hide)
  5521. )
  5522. (pin "6" (uuid 770f55b1-b30c-418e-9189-38e54f415775))
  5523. (pin "10" (uuid 2d77ce25-8d2b-4f3f-b2ac-c408ee3c2bdd))
  5524. (pin "12" (uuid c4f3c6d2-1145-46a8-9202-58e7338bc9a3))
  5525. (pin "14" (uuid 0a9bccb3-83fe-4f4f-aac9-36f7824243fa))
  5526. (pin "7" (uuid 07bcc8cf-a63d-43a0-a66a-71dbdd5654cc))
  5527. (pin "2" (uuid 6b16501d-7e5a-4d00-aa81-edd348c56ea5))
  5528. (pin "13" (uuid 15fa25f5-631d-41fe-97d2-95301d8aef2d))
  5529. (pin "4" (uuid d5de024c-e745-4bb2-ba8d-4522415666eb))
  5530. (pin "5" (uuid c863ee84-a1e6-4eba-9cc8-d2f0060292d9))
  5531. (pin "8" (uuid d21d91a1-ac76-40a9-b866-66d947a4c7b0))
  5532. (pin "11" (uuid c57b043d-5451-4039-9013-b0996bdcfebc))
  5533. (pin "9" (uuid 499e78dc-31bd-47b5-af06-4e34f6494f96))
  5534. (pin "1" (uuid 285f7b0b-195a-45bc-bf14-c1a1c882cf46))
  5535. (pin "3" (uuid 3a4768be-836b-46e3-8da6-5d4065f5fdb2))
  5536. (instances
  5537. (project "hdd_controller"
  5538. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5539. (reference "U_C2") (unit 2)
  5540. )
  5541. )
  5542. )
  5543. )
  5544. (symbol (lib_id "74xx_IEEE:74LS266") (at 94.742 108.331 0) (unit 3)
  5545. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5546. (uuid c52502ec-28f2-4996-9f35-3d2015296bfb)
  5547. (property "Reference" "U_C1" (at 105.41 104.3941 0)
  5548. (effects (font (size 1.27 1.27)))
  5549. )
  5550. (property "Value" "74LS266" (at 105.41 106.9341 0)
  5551. (effects (font (size 1.27 1.27)))
  5552. )
  5553. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 94.742 108.331 0)
  5554. (effects (font (size 1.27 1.27)) hide)
  5555. )
  5556. (property "Datasheet" "" (at 94.742 108.331 0)
  5557. (effects (font (size 1.27 1.27)) hide)
  5558. )
  5559. (pin "9" (uuid 129fc823-2f10-4257-99a8-4cd55565062e))
  5560. (pin "1" (uuid 15471311-43c7-427c-9ccf-68734b50f29f))
  5561. (pin "8" (uuid e97fdf96-fa37-4f11-8e9a-aa7a1202c18a))
  5562. (pin "14" (uuid cf0858b9-6149-474d-8682-7e44410467f0))
  5563. (pin "10" (uuid 8999a3d0-97a1-4379-8ba4-b13c7181c11b))
  5564. (pin "12" (uuid 38113dec-3494-49b7-a7fb-f0ac0bef5fd4))
  5565. (pin "4" (uuid ec9039b9-bfa3-4545-8712-2773a5cfa8f1))
  5566. (pin "5" (uuid 6429e7ab-2e10-404b-9565-2305f3ef798f))
  5567. (pin "13" (uuid 03a83c28-8711-49df-bc9e-34f7fd38bc4c))
  5568. (pin "7" (uuid 23509984-cc7f-4828-8169-f7ceb2512ffd))
  5569. (pin "6" (uuid f70eb79e-2670-434d-8175-59de677bb93a))
  5570. (pin "11" (uuid a4b7fa0f-9be1-48f6-a10d-5397d76be81e))
  5571. (pin "2" (uuid 506831be-dbe9-49ce-afee-531401059c7b))
  5572. (pin "3" (uuid fedd4386-a9b0-4c54-984e-86c7502c8b60))
  5573. (instances
  5574. (project "hdd_controller"
  5575. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5576. (reference "U_C1") (unit 3)
  5577. )
  5578. )
  5579. )
  5580. )
  5581. (symbol (lib_id "74xx:74LS74") (at 278.003 159.004 0) (unit 2)
  5582. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5583. (uuid ce7c6043-4469-454b-89ad-77be956ca2ae)
  5584. (property "Reference" "U_A7" (at 280.1971 149.352 0)
  5585. (effects (font (size 1.27 1.27)) (justify left))
  5586. )
  5587. (property "Value" "74LS74" (at 280.1971 151.892 0)
  5588. (effects (font (size 1.27 1.27)) (justify left))
  5589. )
  5590. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 278.003 159.004 0)
  5591. (effects (font (size 1.27 1.27)) hide)
  5592. )
  5593. (property "Datasheet" "74xx/74hc_hct74.pdf" (at 278.003 159.004 0)
  5594. (effects (font (size 1.27 1.27)) hide)
  5595. )
  5596. (pin "11" (uuid eb4c6822-ee53-4053-8218-70bd91984e97))
  5597. (pin "3" (uuid 1d02c29b-be7e-4007-838e-6f3481056ac5))
  5598. (pin "5" (uuid b166d702-140f-48ae-ae09-f64a746ef520))
  5599. (pin "1" (uuid de2ffe25-9eff-40cc-a08a-37eeccec6c81))
  5600. (pin "4" (uuid 27b64494-fab6-423a-b69e-782ddef365c8))
  5601. (pin "12" (uuid 314f2c2d-e0f6-407a-9e65-80306382585f))
  5602. (pin "7" (uuid 19b44ce6-18fa-46fe-b719-37b1f416c35e))
  5603. (pin "2" (uuid d56412ff-e0e8-49f2-8121-787bd87df9b7))
  5604. (pin "8" (uuid e07a16dc-b61e-47ec-b8d4-7f5e3a7d741b))
  5605. (pin "10" (uuid b2422f28-3708-4497-abe3-ec03720de08e))
  5606. (pin "9" (uuid d5e05f13-6119-458f-8ead-137231496c80))
  5607. (pin "6" (uuid 3d2a3782-969f-4f2e-a069-8f07ce10f7a0))
  5608. (pin "14" (uuid f84a7f88-9857-431b-917e-181cfe017582))
  5609. (pin "13" (uuid d2c57801-d61a-4a77-b696-0cd1db049305))
  5610. (instances
  5611. (project "hdd_controller"
  5612. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5613. (reference "U_A7") (unit 2)
  5614. )
  5615. )
  5616. )
  5617. )
  5618. (symbol (lib_id "74xx:74LS221") (at 257.048 -40.132 0) (unit 3)
  5619. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5620. (uuid d38d88ca-615b-4fbd-89b8-bac7448382c7)
  5621. (property "Reference" "U_A3" (at 262.89 -41.402 0)
  5622. (effects (font (size 1.27 1.27)) (justify left))
  5623. )
  5624. (property "Value" "74LS221" (at 262.89 -38.862 0)
  5625. (effects (font (size 1.27 1.27)) (justify left))
  5626. )
  5627. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (at 257.048 -40.132 0)
  5628. (effects (font (size 1.27 1.27)) hide)
  5629. )
  5630. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS221" (at 257.048 -40.132 0)
  5631. (effects (font (size 1.27 1.27)) hide)
  5632. )
  5633. (pin "8" (uuid c7523f98-5f38-4380-bba0-fde2ab35fe38))
  5634. (pin "5" (uuid 476cfb1f-461f-4848-8dbe-b7bd6d34cd76))
  5635. (pin "16" (uuid 75154157-2b5e-4096-9a91-b6d37411a221))
  5636. (pin "9" (uuid dbc59cd5-b954-4967-95e6-5780a7e8c0bd))
  5637. (pin "2" (uuid 0167c43e-03ca-4852-a793-13bca5821623))
  5638. (pin "15" (uuid 9b166b22-1c26-47aa-a783-057b9ef0cd40))
  5639. (pin "3" (uuid 45e2abca-6fa6-40bd-8c44-ba0657894769))
  5640. (pin "12" (uuid 0e3989d3-c9fe-4328-9822-b7090ade43d6))
  5641. (pin "11" (uuid 06fa00e6-ba61-4c75-a050-f4b5a7d637b6))
  5642. (pin "7" (uuid 979c5f21-3769-411a-b8cb-22f09d40262f))
  5643. (pin "6" (uuid d073243c-1ee7-4d74-95db-005f10d12ca7))
  5644. (pin "1" (uuid d4e173d4-da79-451f-8137-3767bd64b6b5))
  5645. (pin "13" (uuid 205d2eb9-2f57-4f3d-ba6d-e5d35f206891))
  5646. (pin "10" (uuid c85b1aa0-e867-448f-982b-f1aa333a9be2))
  5647. (pin "14" (uuid df0167fd-f0e0-4094-a1e8-c51ccd7e7c26))
  5648. (pin "4" (uuid 04e64bb1-ea3b-4726-ba3e-f31e448124d1))
  5649. (instances
  5650. (project "hdd_controller"
  5651. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5652. (reference "U_A3") (unit 3)
  5653. )
  5654. )
  5655. )
  5656. )
  5657. (symbol (lib_id "74xx:74LS221") (at 201.676 -43.688 0) (unit 3)
  5658. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5659. (uuid e4ee5eca-467e-4fed-9749-7d18b066bdf6)
  5660. (property "Reference" "U_A2" (at 208.28 -44.958 0)
  5661. (effects (font (size 1.27 1.27)) (justify left))
  5662. )
  5663. (property "Value" "74LS221" (at 208.28 -42.418 0)
  5664. (effects (font (size 1.27 1.27)) (justify left))
  5665. )
  5666. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (at 201.676 -43.688 0)
  5667. (effects (font (size 1.27 1.27)) hide)
  5668. )
  5669. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS221" (at 201.676 -43.688 0)
  5670. (effects (font (size 1.27 1.27)) hide)
  5671. )
  5672. (pin "8" (uuid d015c6f2-3a2b-45c5-aa5f-b7bf525db438))
  5673. (pin "10" (uuid 880e7034-7aa6-40b8-88fc-3f79f0230d42))
  5674. (pin "5" (uuid c5a82139-87b1-41aa-883a-e6943f16fa44))
  5675. (pin "11" (uuid 688900b5-5b6f-4fe7-8a05-c0cb5203d590))
  5676. (pin "6" (uuid 5a65c6cc-9ddc-42d1-b55f-4afcceead532))
  5677. (pin "12" (uuid bddafa66-025e-42ed-8de0-3170e590099f))
  5678. (pin "4" (uuid 8b6c921d-7ea0-4605-aafd-af35cadbec29))
  5679. (pin "3" (uuid 988ce8c1-dbbc-40e0-9a63-fc68a52b6edf))
  5680. (pin "15" (uuid 2f645512-2d67-4992-8b0c-b12d6e50a531))
  5681. (pin "14" (uuid 9324ecd8-7903-43bb-be01-8c6fab992923))
  5682. (pin "1" (uuid 71754812-a28a-48c2-912b-e310a11714eb))
  5683. (pin "9" (uuid d54f9155-2180-41a2-9c41-821f9435af9a))
  5684. (pin "2" (uuid e40cf836-1e83-4e69-ac56-5b7ae573840c))
  5685. (pin "13" (uuid 2e462fbb-4e8c-4179-96ae-2bfea313eee0))
  5686. (pin "7" (uuid 1430b955-fb8b-4277-b475-74341dca30c7))
  5687. (pin "16" (uuid 53ce3b2f-7b4b-43bf-8743-2789e8356e1e))
  5688. (instances
  5689. (project "hdd_controller"
  5690. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5691. (reference "U_A2") (unit 3)
  5692. )
  5693. )
  5694. )
  5695. )
  5696. (symbol (lib_id "74xx:74LS221") (at 426.593 167.894 0) (unit 2)
  5697. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5698. (uuid e7f0c419-2f26-4937-8955-ade16255f4e7)
  5699. (property "Reference" "U_A2" (at 426.593 177.292 0)
  5700. (effects (font (size 1.27 1.27)))
  5701. )
  5702. (property "Value" "74LS221" (at 426.593 179.832 0)
  5703. (effects (font (size 1.27 1.27)))
  5704. )
  5705. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (at 426.593 167.894 0)
  5706. (effects (font (size 1.27 1.27)) hide)
  5707. )
  5708. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS221" (at 426.593 167.894 0)
  5709. (effects (font (size 1.27 1.27)) hide)
  5710. )
  5711. (pin "8" (uuid d015c6f2-3a2b-45c5-aa5f-b7bf525db439))
  5712. (pin "10" (uuid 880e7034-7aa6-40b8-88fc-3f79f0230d43))
  5713. (pin "5" (uuid c5a82139-87b1-41aa-883a-e6943f16fa45))
  5714. (pin "11" (uuid 688900b5-5b6f-4fe7-8a05-c0cb5203d591))
  5715. (pin "6" (uuid 5a65c6cc-9ddc-42d1-b55f-4afcceead533))
  5716. (pin "12" (uuid bddafa66-025e-42ed-8de0-3170e59009a0))
  5717. (pin "4" (uuid 8b6c921d-7ea0-4605-aafd-af35cadbec2a))
  5718. (pin "3" (uuid 988ce8c1-dbbc-40e0-9a63-fc68a52b6ee0))
  5719. (pin "15" (uuid 2f645512-2d67-4992-8b0c-b12d6e50a532))
  5720. (pin "14" (uuid 9324ecd8-7903-43bb-be01-8c6fab992924))
  5721. (pin "1" (uuid 71754812-a28a-48c2-912b-e310a11714ec))
  5722. (pin "9" (uuid d54f9155-2180-41a2-9c41-821f9435af9b))
  5723. (pin "2" (uuid e40cf836-1e83-4e69-ac56-5b7ae573840d))
  5724. (pin "13" (uuid 2e462fbb-4e8c-4179-96ae-2bfea313eee1))
  5725. (pin "7" (uuid 1430b955-fb8b-4277-b475-74341dca30c8))
  5726. (pin "16" (uuid 53ce3b2f-7b4b-43bf-8743-2789e8356e1f))
  5727. (instances
  5728. (project "hdd_controller"
  5729. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5730. (reference "U_A2") (unit 2)
  5731. )
  5732. )
  5733. )
  5734. )
  5735. (symbol (lib_id "74xx_IEEE:74LS266") (at 94.742 55.372 0) (unit 1)
  5736. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5737. (uuid e8e0968a-425a-4d2b-81dd-cce07aa9f64a)
  5738. (property "Reference" "U_C1" (at 104.902 51.4351 0)
  5739. (effects (font (size 1.27 1.27)))
  5740. )
  5741. (property "Value" "74LS266" (at 104.902 53.9751 0)
  5742. (effects (font (size 1.27 1.27)))
  5743. )
  5744. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 94.742 55.372 0)
  5745. (effects (font (size 1.27 1.27)) hide)
  5746. )
  5747. (property "Datasheet" "" (at 94.742 55.372 0)
  5748. (effects (font (size 1.27 1.27)) hide)
  5749. )
  5750. (pin "9" (uuid 129fc823-2f10-4257-99a8-4cd55565062f))
  5751. (pin "1" (uuid 15471311-43c7-427c-9ccf-68734b50f2a0))
  5752. (pin "8" (uuid e97fdf96-fa37-4f11-8e9a-aa7a1202c18b))
  5753. (pin "14" (uuid cf0858b9-6149-474d-8682-7e44410467f1))
  5754. (pin "10" (uuid 8999a3d0-97a1-4379-8ba4-b13c7181c11c))
  5755. (pin "12" (uuid 38113dec-3494-49b7-a7fb-f0ac0bef5fd5))
  5756. (pin "4" (uuid ec9039b9-bfa3-4545-8712-2773a5cfa8f2))
  5757. (pin "5" (uuid 6429e7ab-2e10-404b-9565-2305f3ef7990))
  5758. (pin "13" (uuid 03a83c28-8711-49df-bc9e-34f7fd38bc4d))
  5759. (pin "7" (uuid 23509984-cc7f-4828-8169-f7ceb2512ffe))
  5760. (pin "6" (uuid f70eb79e-2670-434d-8175-59de677bb93b))
  5761. (pin "11" (uuid a4b7fa0f-9be1-48f6-a10d-5397d76be81f))
  5762. (pin "2" (uuid 506831be-dbe9-49ce-afee-531401059c7c))
  5763. (pin "3" (uuid fedd4386-a9b0-4c54-984e-86c7502c8b61))
  5764. (instances
  5765. (project "hdd_controller"
  5766. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5767. (reference "U_C1") (unit 1)
  5768. )
  5769. )
  5770. )
  5771. )
  5772. (symbol (lib_id "74xx:74LS32") (at 323.977 127.635 0) (unit 1)
  5773. (in_bom yes) (on_board yes) (dnp no)
  5774. (uuid ee5e39fe-a401-4309-be4b-cbebd8dbdf53)
  5775. (property "Reference" "U_A4" (at 316.865 121.285 0)
  5776. (effects (font (size 1.27 1.27)))
  5777. )
  5778. (property "Value" "74LS32" (at 323.977 121.666 0)
  5779. (effects (font (size 1.27 1.27)))
  5780. )
  5781. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 323.977 127.635 0)
  5782. (effects (font (size 1.27 1.27)) hide)
  5783. )
  5784. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS32" (at 323.977 127.635 0)
  5785. (effects (font (size 1.27 1.27)) hide)
  5786. )
  5787. (pin "11" (uuid 2d872ed0-847b-44f4-adf3-14027e6f1eda))
  5788. (pin "5" (uuid 39cfed38-ec90-4b79-b44e-83b663114f96))
  5789. (pin "14" (uuid d4e2bfc7-ae57-4055-80a6-dacf669b7ac7))
  5790. (pin "3" (uuid b5bec27b-dfad-480a-a708-1aa2cbe80c88))
  5791. (pin "7" (uuid c18c3b5e-0edb-42d6-af73-e70b32440e6f))
  5792. (pin "8" (uuid 0d296f60-586c-42f7-aabd-684859761305))
  5793. (pin "13" (uuid ca9f60d0-feb4-42a8-a503-07ba8ddada3d))
  5794. (pin "12" (uuid e2b5cc9e-19af-4caa-8184-547eba655ead))
  5795. (pin "4" (uuid 1aa90625-2ac9-4cd8-892b-585b4995afd2))
  5796. (pin "9" (uuid b4fbcf9a-aeba-4c4d-8b7c-0786a80ea656))
  5797. (pin "2" (uuid 1bd018cb-f8a5-4f2a-8a18-fc49dd2ee023))
  5798. (pin "1" (uuid e96460da-6e21-43c8-947a-d2f7ef49d32d))
  5799. (pin "6" (uuid 1ea5ec06-aae1-4360-8822-580781a43f2c))
  5800. (pin "10" (uuid eb20a7ba-2979-45ba-b552-be1ee7394e89))
  5801. (instances
  5802. (project "hdd_controller"
  5803. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5804. (reference "U_A4") (unit 1)
  5805. )
  5806. )
  5807. )
  5808. )
  5809. (symbol (lib_id "74xx:74LS32") (at 284.988 88.392 0) (unit 2)
  5810. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5811. (uuid f145a4c6-86aa-486f-b7da-a2b3196277d2)
  5812. (property "Reference" "U_A4" (at 284.988 79.248 0)
  5813. (effects (font (size 1.27 1.27)))
  5814. )
  5815. (property "Value" "74LS32" (at 284.988 81.788 0)
  5816. (effects (font (size 1.27 1.27)))
  5817. )
  5818. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 284.988 88.392 0)
  5819. (effects (font (size 1.27 1.27)) hide)
  5820. )
  5821. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS32" (at 284.988 88.392 0)
  5822. (effects (font (size 1.27 1.27)) hide)
  5823. )
  5824. (pin "11" (uuid 2d872ed0-847b-44f4-adf3-14027e6f1edb))
  5825. (pin "5" (uuid 39cfed38-ec90-4b79-b44e-83b663114f97))
  5826. (pin "14" (uuid d4e2bfc7-ae57-4055-80a6-dacf669b7ac8))
  5827. (pin "3" (uuid b5bec27b-dfad-480a-a708-1aa2cbe80c89))
  5828. (pin "7" (uuid c18c3b5e-0edb-42d6-af73-e70b32440e70))
  5829. (pin "8" (uuid 0d296f60-586c-42f7-aabd-684859761306))
  5830. (pin "13" (uuid ca9f60d0-feb4-42a8-a503-07ba8ddada3e))
  5831. (pin "12" (uuid e2b5cc9e-19af-4caa-8184-547eba655eae))
  5832. (pin "4" (uuid 1aa90625-2ac9-4cd8-892b-585b4995afd3))
  5833. (pin "9" (uuid b4fbcf9a-aeba-4c4d-8b7c-0786a80ea657))
  5834. (pin "2" (uuid 1bd018cb-f8a5-4f2a-8a18-fc49dd2ee024))
  5835. (pin "1" (uuid e96460da-6e21-43c8-947a-d2f7ef49d32e))
  5836. (pin "6" (uuid 1ea5ec06-aae1-4360-8822-580781a43f2d))
  5837. (pin "10" (uuid eb20a7ba-2979-45ba-b552-be1ee7394e8a))
  5838. (instances
  5839. (project "hdd_controller"
  5840. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5841. (reference "U_A4") (unit 2)
  5842. )
  5843. )
  5844. )
  5845. )
  5846. (symbol (lib_id "74xx_IEEE:74LS266") (at 236.601 119.634 0) (unit 1)
  5847. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5848. (uuid f6e3dcdc-ee29-43ce-b1f4-168c5262f093)
  5849. (property "Reference" "U_C2" (at 247.015 115.6971 0)
  5850. (effects (font (size 1.27 1.27)))
  5851. )
  5852. (property "Value" "74LS266" (at 247.015 118.2371 0)
  5853. (effects (font (size 1.27 1.27)))
  5854. )
  5855. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 236.601 119.634 0)
  5856. (effects (font (size 1.27 1.27)) hide)
  5857. )
  5858. (property "Datasheet" "" (at 236.601 119.634 0)
  5859. (effects (font (size 1.27 1.27)) hide)
  5860. )
  5861. (pin "6" (uuid 770f55b1-b30c-418e-9189-38e54f415776))
  5862. (pin "10" (uuid 2d77ce25-8d2b-4f3f-b2ac-c408ee3c2bde))
  5863. (pin "12" (uuid c4f3c6d2-1145-46a8-9202-58e7338bc9a4))
  5864. (pin "14" (uuid 0a9bccb3-83fe-4f4f-aac9-36f7824243fb))
  5865. (pin "7" (uuid 07bcc8cf-a63d-43a0-a66a-71dbdd5654cd))
  5866. (pin "2" (uuid 6b16501d-7e5a-4d00-aa81-edd348c56ea6))
  5867. (pin "13" (uuid 15fa25f5-631d-41fe-97d2-95301d8aef2e))
  5868. (pin "4" (uuid d5de024c-e745-4bb2-ba8d-4522415666ec))
  5869. (pin "5" (uuid c863ee84-a1e6-4eba-9cc8-d2f0060292da))
  5870. (pin "8" (uuid d21d91a1-ac76-40a9-b866-66d947a4c7b1))
  5871. (pin "11" (uuid c57b043d-5451-4039-9013-b0996bdcfebd))
  5872. (pin "9" (uuid 499e78dc-31bd-47b5-af06-4e34f6494f97))
  5873. (pin "1" (uuid 285f7b0b-195a-45bc-bf14-c1a1c882cf47))
  5874. (pin "3" (uuid 3a4768be-836b-46e3-8da6-5d4065f5fdb3))
  5875. (instances
  5876. (project "hdd_controller"
  5877. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5878. (reference "U_C2") (unit 1)
  5879. )
  5880. )
  5881. )
  5882. )
  5883. (symbol (lib_id "power:GND") (at 16.637 144.145 0) (unit 1)
  5884. (in_bom yes) (on_board yes) (dnp no)
  5885. (uuid f878ad0c-4be8-4715-bcbf-d912b4f4abf6)
  5886. (property "Reference" "#PWR0128" (at 16.637 150.495 0)
  5887. (effects (font (size 1.27 1.27)) hide)
  5888. )
  5889. (property "Value" "GND" (at 16.764 148.5392 0)
  5890. (effects (font (size 1.27 1.27)))
  5891. )
  5892. (property "Footprint" "" (at 16.637 144.145 0)
  5893. (effects (font (size 1.27 1.27)) hide)
  5894. )
  5895. (property "Datasheet" "" (at 16.637 144.145 0)
  5896. (effects (font (size 1.27 1.27)) hide)
  5897. )
  5898. (pin "1" (uuid 9efdf376-033d-4c56-9d6d-43cf76da7aa7))
  5899. (instances
  5900. (project "max80"
  5901. (path "/6d7ff8c0-8a2a-4636-844f-c7210ff3e6f2/00000000-0000-0000-0000-00006013b380"
  5902. (reference "#PWR0128") (unit 1)
  5903. )
  5904. )
  5905. (project "hdd_controller"
  5906. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5907. (reference "#PWR02") (unit 1)
  5908. )
  5909. )
  5910. )
  5911. )
  5912. (symbol (lib_id "74xx:74LS00") (at 215.138 133.477 0) (unit 4)
  5913. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5914. (uuid f8c7de75-c7ec-4c94-a72d-0e9c8deafae3)
  5915. (property "Reference" "U_A6" (at 215.1297 125.095 0)
  5916. (effects (font (size 1.27 1.27)))
  5917. )
  5918. (property "Value" "74LS00" (at 215.1297 127.635 0)
  5919. (effects (font (size 1.27 1.27)))
  5920. )
  5921. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 215.138 133.477 0)
  5922. (effects (font (size 1.27 1.27)) hide)
  5923. )
  5924. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74ls00" (at 215.138 133.477 0)
  5925. (effects (font (size 1.27 1.27)) hide)
  5926. )
  5927. (pin "1" (uuid 9e152e87-85b9-4ca0-9f14-c3629ac05a17))
  5928. (pin "11" (uuid 07a35f0f-2fc3-48d6-948e-08b6a4582f32))
  5929. (pin "7" (uuid 91be8ff6-ea30-4cfe-8550-f921f0c119f2))
  5930. (pin "3" (uuid a1d36fed-801b-4f28-b7de-960ec126e415))
  5931. (pin "4" (uuid 987ec8f2-67be-4bc7-96e5-331a437e67a3))
  5932. (pin "8" (uuid 015fcc9c-1c54-41ae-9667-6b90623d3bbf))
  5933. (pin "5" (uuid 3d9923fc-dab2-4ec3-8faf-6fc173a3cb7d))
  5934. (pin "6" (uuid 37f2bbca-d096-41fe-83fa-d91884484ed4))
  5935. (pin "9" (uuid a7f09a43-c967-4677-b916-abbffbbbc779))
  5936. (pin "2" (uuid 6b47cdc2-b2c2-4fad-99f9-9e770bb61399))
  5937. (pin "14" (uuid 7f4ff8a9-648e-4be9-8eac-3be575158d42))
  5938. (pin "10" (uuid 63154ed7-58fe-461c-9e93-0ca096d71b69))
  5939. (pin "12" (uuid d54d1780-c771-4490-86d0-ada3bb046449))
  5940. (pin "13" (uuid c15cf5f7-7607-4968-9e88-3aa7a02d4661))
  5941. (instances
  5942. (project "hdd_controller"
  5943. (path "/e1344761-a16d-4352-afe7-1fe017b9cf49"
  5944. (reference "U_A6") (unit 4)
  5945. )
  5946. )
  5947. )
  5948. )
  5949. (sheet_instances
  5950. (path "/" (page "1"))
  5951. )
  5952. )