Greaseweazle.kicad_sch 389 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09)
  3. (paper "A4")
  4. (title_block
  5. (title "Greaseweazle F7 Lighting, USB PD")
  6. (date "2022-11-15")
  7. (rev "2.01")
  8. (company "SweProj.com")
  9. )
  10. (lib_symbols
  11. (symbol "74xx:SN74LS07" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  12. (property "Reference" "U" (id 0) (at 0 1.27 0)
  13. (effects (font (size 1.27 1.27)))
  14. )
  15. (property "Value" "SN74LS07" (id 1) (at 0 -1.27 0)
  16. (effects (font (size 1.27 1.27)))
  17. )
  18. (property "Footprint" "" (id 2) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_locked" "" (id 4) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)))
  26. )
  27. (property "ki_keywords" "TTL hex buffer OpenCol" (id 5) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (property "ki_description" "Hex Buffers and Drivers With Open Collector High Voltage Outputs" (id 6) (at 0 0 0)
  31. (effects (font (size 1.27 1.27)) hide)
  32. )
  33. (property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm* TSSOP*4.4x5mm*P0.65mm* DIP*W7.62mm*" (id 7) (at 0 0 0)
  34. (effects (font (size 1.27 1.27)) hide)
  35. )
  36. (symbol "SN74LS07_1_0"
  37. (polyline
  38. (pts
  39. (xy -3.81 3.81)
  40. (xy -3.81 -3.81)
  41. (xy 3.81 0)
  42. (xy -3.81 3.81)
  43. )
  44. (stroke (width 0.254) (type default) (color 0 0 0 0))
  45. (fill (type background))
  46. )
  47. (pin input line (at -7.62 0 0) (length 3.81)
  48. (name "~" (effects (font (size 1.27 1.27))))
  49. (number "1" (effects (font (size 1.27 1.27))))
  50. )
  51. (pin open_collector line (at 7.62 0 180) (length 3.81)
  52. (name "~" (effects (font (size 1.27 1.27))))
  53. (number "2" (effects (font (size 1.27 1.27))))
  54. )
  55. )
  56. (symbol "SN74LS07_2_0"
  57. (polyline
  58. (pts
  59. (xy -3.81 3.81)
  60. (xy -3.81 -3.81)
  61. (xy 3.81 0)
  62. (xy -3.81 3.81)
  63. )
  64. (stroke (width 0.254) (type default) (color 0 0 0 0))
  65. (fill (type background))
  66. )
  67. (pin input line (at -7.62 0 0) (length 3.81)
  68. (name "~" (effects (font (size 1.27 1.27))))
  69. (number "3" (effects (font (size 1.27 1.27))))
  70. )
  71. (pin open_collector line (at 7.62 0 180) (length 3.81)
  72. (name "~" (effects (font (size 1.27 1.27))))
  73. (number "4" (effects (font (size 1.27 1.27))))
  74. )
  75. )
  76. (symbol "SN74LS07_3_0"
  77. (polyline
  78. (pts
  79. (xy -3.81 3.81)
  80. (xy -3.81 -3.81)
  81. (xy 3.81 0)
  82. (xy -3.81 3.81)
  83. )
  84. (stroke (width 0.254) (type default) (color 0 0 0 0))
  85. (fill (type background))
  86. )
  87. (pin input line (at -7.62 0 0) (length 3.81)
  88. (name "~" (effects (font (size 1.27 1.27))))
  89. (number "5" (effects (font (size 1.27 1.27))))
  90. )
  91. (pin open_collector line (at 7.62 0 180) (length 3.81)
  92. (name "~" (effects (font (size 1.27 1.27))))
  93. (number "6" (effects (font (size 1.27 1.27))))
  94. )
  95. )
  96. (symbol "SN74LS07_4_0"
  97. (polyline
  98. (pts
  99. (xy -3.81 3.81)
  100. (xy -3.81 -3.81)
  101. (xy 3.81 0)
  102. (xy -3.81 3.81)
  103. )
  104. (stroke (width 0.254) (type default) (color 0 0 0 0))
  105. (fill (type background))
  106. )
  107. (pin open_collector line (at 7.62 0 180) (length 3.81)
  108. (name "~" (effects (font (size 1.27 1.27))))
  109. (number "8" (effects (font (size 1.27 1.27))))
  110. )
  111. (pin input line (at -7.62 0 0) (length 3.81)
  112. (name "~" (effects (font (size 1.27 1.27))))
  113. (number "9" (effects (font (size 1.27 1.27))))
  114. )
  115. )
  116. (symbol "SN74LS07_5_0"
  117. (polyline
  118. (pts
  119. (xy -3.81 3.81)
  120. (xy -3.81 -3.81)
  121. (xy 3.81 0)
  122. (xy -3.81 3.81)
  123. )
  124. (stroke (width 0.254) (type default) (color 0 0 0 0))
  125. (fill (type background))
  126. )
  127. (pin open_collector line (at 7.62 0 180) (length 3.81)
  128. (name "~" (effects (font (size 1.27 1.27))))
  129. (number "10" (effects (font (size 1.27 1.27))))
  130. )
  131. (pin input line (at -7.62 0 0) (length 3.81)
  132. (name "~" (effects (font (size 1.27 1.27))))
  133. (number "11" (effects (font (size 1.27 1.27))))
  134. )
  135. )
  136. (symbol "SN74LS07_6_0"
  137. (polyline
  138. (pts
  139. (xy -3.81 3.81)
  140. (xy -3.81 -3.81)
  141. (xy 3.81 0)
  142. (xy -3.81 3.81)
  143. )
  144. (stroke (width 0.254) (type default) (color 0 0 0 0))
  145. (fill (type background))
  146. )
  147. (pin open_collector line (at 7.62 0 180) (length 3.81)
  148. (name "~" (effects (font (size 1.27 1.27))))
  149. (number "12" (effects (font (size 1.27 1.27))))
  150. )
  151. (pin input line (at -7.62 0 0) (length 3.81)
  152. (name "~" (effects (font (size 1.27 1.27))))
  153. (number "13" (effects (font (size 1.27 1.27))))
  154. )
  155. )
  156. (symbol "SN74LS07_7_0"
  157. (pin power_in line (at 0 12.7 270) (length 5.08)
  158. (name "VCC" (effects (font (size 1.27 1.27))))
  159. (number "14" (effects (font (size 1.27 1.27))))
  160. )
  161. (pin power_in line (at 0 -12.7 90) (length 5.08)
  162. (name "GND" (effects (font (size 1.27 1.27))))
  163. (number "7" (effects (font (size 1.27 1.27))))
  164. )
  165. )
  166. (symbol "SN74LS07_7_1"
  167. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  168. (stroke (width 0.254) (type default) (color 0 0 0 0))
  169. (fill (type background))
  170. )
  171. )
  172. )
  173. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  174. (property "Reference" "J" (id 0) (at 0 5.08 0)
  175. (effects (font (size 1.27 1.27)))
  176. )
  177. (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 0)
  178. (effects (font (size 1.27 1.27)))
  179. )
  180. (property "Footprint" "" (id 2) (at 0 0 0)
  181. (effects (font (size 1.27 1.27)) hide)
  182. )
  183. (property "Datasheet" "~" (id 3) (at 0 0 0)
  184. (effects (font (size 1.27 1.27)) hide)
  185. )
  186. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  187. (effects (font (size 1.27 1.27)) hide)
  188. )
  189. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  190. (effects (font (size 1.27 1.27)) hide)
  191. )
  192. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  193. (effects (font (size 1.27 1.27)) hide)
  194. )
  195. (symbol "Conn_01x03_Male_1_1"
  196. (polyline
  197. (pts
  198. (xy 1.27 -2.54)
  199. (xy 0.8636 -2.54)
  200. )
  201. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  202. (fill (type none))
  203. )
  204. (polyline
  205. (pts
  206. (xy 1.27 0)
  207. (xy 0.8636 0)
  208. )
  209. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  210. (fill (type none))
  211. )
  212. (polyline
  213. (pts
  214. (xy 1.27 2.54)
  215. (xy 0.8636 2.54)
  216. )
  217. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  218. (fill (type none))
  219. )
  220. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  221. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  222. (fill (type outline))
  223. )
  224. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  225. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  226. (fill (type outline))
  227. )
  228. (rectangle (start 0.8636 2.667) (end 0 2.413)
  229. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  230. (fill (type outline))
  231. )
  232. (pin passive line (at 5.08 2.54 180) (length 3.81)
  233. (name "Pin_1" (effects (font (size 1.27 1.27))))
  234. (number "1" (effects (font (size 1.27 1.27))))
  235. )
  236. (pin passive line (at 5.08 0 180) (length 3.81)
  237. (name "Pin_2" (effects (font (size 1.27 1.27))))
  238. (number "2" (effects (font (size 1.27 1.27))))
  239. )
  240. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  241. (name "Pin_3" (effects (font (size 1.27 1.27))))
  242. (number "3" (effects (font (size 1.27 1.27))))
  243. )
  244. )
  245. )
  246. (symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  247. (property "Reference" "J" (id 0) (at 0 5.08 0)
  248. (effects (font (size 1.27 1.27)))
  249. )
  250. (property "Value" "Conn_01x03" (id 1) (at 0 -5.08 0)
  251. (effects (font (size 1.27 1.27)))
  252. )
  253. (property "Footprint" "" (id 2) (at 0 0 0)
  254. (effects (font (size 1.27 1.27)) hide)
  255. )
  256. (property "Datasheet" "~" (id 3) (at 0 0 0)
  257. (effects (font (size 1.27 1.27)) hide)
  258. )
  259. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  260. (effects (font (size 1.27 1.27)) hide)
  261. )
  262. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  263. (effects (font (size 1.27 1.27)) hide)
  264. )
  265. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  266. (effects (font (size 1.27 1.27)) hide)
  267. )
  268. (symbol "Conn_01x03_1_1"
  269. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  270. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  271. (fill (type none))
  272. )
  273. (rectangle (start -1.27 0.127) (end 0 -0.127)
  274. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  275. (fill (type none))
  276. )
  277. (rectangle (start -1.27 2.667) (end 0 2.413)
  278. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  279. (fill (type none))
  280. )
  281. (rectangle (start -1.27 3.81) (end 1.27 -3.81)
  282. (stroke (width 0.254) (type default) (color 0 0 0 0))
  283. (fill (type background))
  284. )
  285. (pin passive line (at -5.08 2.54 0) (length 3.81)
  286. (name "Pin_1" (effects (font (size 1.27 1.27))))
  287. (number "1" (effects (font (size 1.27 1.27))))
  288. )
  289. (pin passive line (at -5.08 0 0) (length 3.81)
  290. (name "Pin_2" (effects (font (size 1.27 1.27))))
  291. (number "2" (effects (font (size 1.27 1.27))))
  292. )
  293. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  294. (name "Pin_3" (effects (font (size 1.27 1.27))))
  295. (number "3" (effects (font (size 1.27 1.27))))
  296. )
  297. )
  298. )
  299. (symbol "Connector_Generic:Conn_02x03_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  300. (property "Reference" "J" (id 0) (at 1.27 5.08 0)
  301. (effects (font (size 1.27 1.27)))
  302. )
  303. (property "Value" "Conn_02x03_Odd_Even" (id 1) (at 1.27 -5.08 0)
  304. (effects (font (size 1.27 1.27)))
  305. )
  306. (property "Footprint" "" (id 2) (at 0 0 0)
  307. (effects (font (size 1.27 1.27)) hide)
  308. )
  309. (property "Datasheet" "~" (id 3) (at 0 0 0)
  310. (effects (font (size 1.27 1.27)) hide)
  311. )
  312. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  313. (effects (font (size 1.27 1.27)) hide)
  314. )
  315. (property "ki_description" "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  316. (effects (font (size 1.27 1.27)) hide)
  317. )
  318. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  319. (effects (font (size 1.27 1.27)) hide)
  320. )
  321. (symbol "Conn_02x03_Odd_Even_1_1"
  322. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  323. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  324. (fill (type none))
  325. )
  326. (rectangle (start -1.27 0.127) (end 0 -0.127)
  327. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  328. (fill (type none))
  329. )
  330. (rectangle (start -1.27 2.667) (end 0 2.413)
  331. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  332. (fill (type none))
  333. )
  334. (rectangle (start -1.27 3.81) (end 3.81 -3.81)
  335. (stroke (width 0.254) (type default) (color 0 0 0 0))
  336. (fill (type background))
  337. )
  338. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  339. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  340. (fill (type none))
  341. )
  342. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  343. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  344. (fill (type none))
  345. )
  346. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  347. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  348. (fill (type none))
  349. )
  350. (pin passive line (at -5.08 2.54 0) (length 3.81)
  351. (name "Pin_1" (effects (font (size 1.27 1.27))))
  352. (number "1" (effects (font (size 1.27 1.27))))
  353. )
  354. (pin passive line (at 7.62 2.54 180) (length 3.81)
  355. (name "Pin_2" (effects (font (size 1.27 1.27))))
  356. (number "2" (effects (font (size 1.27 1.27))))
  357. )
  358. (pin passive line (at -5.08 0 0) (length 3.81)
  359. (name "Pin_3" (effects (font (size 1.27 1.27))))
  360. (number "3" (effects (font (size 1.27 1.27))))
  361. )
  362. (pin passive line (at 7.62 0 180) (length 3.81)
  363. (name "Pin_4" (effects (font (size 1.27 1.27))))
  364. (number "4" (effects (font (size 1.27 1.27))))
  365. )
  366. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  367. (name "Pin_5" (effects (font (size 1.27 1.27))))
  368. (number "5" (effects (font (size 1.27 1.27))))
  369. )
  370. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  371. (name "Pin_6" (effects (font (size 1.27 1.27))))
  372. (number "6" (effects (font (size 1.27 1.27))))
  373. )
  374. )
  375. )
  376. (symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  377. (property "Reference" "J" (id 0) (at 1.27 7.62 0)
  378. (effects (font (size 1.27 1.27)))
  379. )
  380. (property "Value" "Conn_02x05_Odd_Even" (id 1) (at 1.27 -7.62 0)
  381. (effects (font (size 1.27 1.27)))
  382. )
  383. (property "Footprint" "" (id 2) (at 0 0 0)
  384. (effects (font (size 1.27 1.27)) hide)
  385. )
  386. (property "Datasheet" "~" (id 3) (at 0 0 0)
  387. (effects (font (size 1.27 1.27)) hide)
  388. )
  389. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  390. (effects (font (size 1.27 1.27)) hide)
  391. )
  392. (property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  393. (effects (font (size 1.27 1.27)) hide)
  394. )
  395. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  396. (effects (font (size 1.27 1.27)) hide)
  397. )
  398. (symbol "Conn_02x05_Odd_Even_1_1"
  399. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  400. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  401. (fill (type none))
  402. )
  403. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  404. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  405. (fill (type none))
  406. )
  407. (rectangle (start -1.27 0.127) (end 0 -0.127)
  408. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  409. (fill (type none))
  410. )
  411. (rectangle (start -1.27 2.667) (end 0 2.413)
  412. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  413. (fill (type none))
  414. )
  415. (rectangle (start -1.27 5.207) (end 0 4.953)
  416. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  417. (fill (type none))
  418. )
  419. (rectangle (start -1.27 6.35) (end 3.81 -6.35)
  420. (stroke (width 0.254) (type default) (color 0 0 0 0))
  421. (fill (type background))
  422. )
  423. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  424. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  425. (fill (type none))
  426. )
  427. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  428. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  429. (fill (type none))
  430. )
  431. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  432. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  433. (fill (type none))
  434. )
  435. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  436. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  437. (fill (type none))
  438. )
  439. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  440. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  441. (fill (type none))
  442. )
  443. (pin passive line (at -5.08 5.08 0) (length 3.81)
  444. (name "Pin_1" (effects (font (size 1.27 1.27))))
  445. (number "1" (effects (font (size 1.27 1.27))))
  446. )
  447. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  448. (name "Pin_10" (effects (font (size 1.27 1.27))))
  449. (number "10" (effects (font (size 1.27 1.27))))
  450. )
  451. (pin passive line (at 7.62 5.08 180) (length 3.81)
  452. (name "Pin_2" (effects (font (size 1.27 1.27))))
  453. (number "2" (effects (font (size 1.27 1.27))))
  454. )
  455. (pin passive line (at -5.08 2.54 0) (length 3.81)
  456. (name "Pin_3" (effects (font (size 1.27 1.27))))
  457. (number "3" (effects (font (size 1.27 1.27))))
  458. )
  459. (pin passive line (at 7.62 2.54 180) (length 3.81)
  460. (name "Pin_4" (effects (font (size 1.27 1.27))))
  461. (number "4" (effects (font (size 1.27 1.27))))
  462. )
  463. (pin passive line (at -5.08 0 0) (length 3.81)
  464. (name "Pin_5" (effects (font (size 1.27 1.27))))
  465. (number "5" (effects (font (size 1.27 1.27))))
  466. )
  467. (pin passive line (at 7.62 0 180) (length 3.81)
  468. (name "Pin_6" (effects (font (size 1.27 1.27))))
  469. (number "6" (effects (font (size 1.27 1.27))))
  470. )
  471. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  472. (name "Pin_7" (effects (font (size 1.27 1.27))))
  473. (number "7" (effects (font (size 1.27 1.27))))
  474. )
  475. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  476. (name "Pin_8" (effects (font (size 1.27 1.27))))
  477. (number "8" (effects (font (size 1.27 1.27))))
  478. )
  479. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  480. (name "Pin_9" (effects (font (size 1.27 1.27))))
  481. (number "9" (effects (font (size 1.27 1.27))))
  482. )
  483. )
  484. )
  485. (symbol "Connector_Generic:Conn_02x17_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  486. (property "Reference" "J" (id 0) (at 1.27 22.86 0)
  487. (effects (font (size 1.27 1.27)))
  488. )
  489. (property "Value" "Conn_02x17_Odd_Even" (id 1) (at 1.27 -22.86 0)
  490. (effects (font (size 1.27 1.27)))
  491. )
  492. (property "Footprint" "" (id 2) (at 0 0 0)
  493. (effects (font (size 1.27 1.27)) hide)
  494. )
  495. (property "Datasheet" "~" (id 3) (at 0 0 0)
  496. (effects (font (size 1.27 1.27)) hide)
  497. )
  498. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  499. (effects (font (size 1.27 1.27)) hide)
  500. )
  501. (property "ki_description" "Generic connector, double row, 02x17, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  502. (effects (font (size 1.27 1.27)) hide)
  503. )
  504. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  505. (effects (font (size 1.27 1.27)) hide)
  506. )
  507. (symbol "Conn_02x17_Odd_Even_1_1"
  508. (rectangle (start -1.27 -20.193) (end 0 -20.447)
  509. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  510. (fill (type none))
  511. )
  512. (rectangle (start -1.27 -17.653) (end 0 -17.907)
  513. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  514. (fill (type none))
  515. )
  516. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  517. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  518. (fill (type none))
  519. )
  520. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  521. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  522. (fill (type none))
  523. )
  524. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  525. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  526. (fill (type none))
  527. )
  528. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  529. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  530. (fill (type none))
  531. )
  532. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  533. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  534. (fill (type none))
  535. )
  536. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  537. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  538. (fill (type none))
  539. )
  540. (rectangle (start -1.27 0.127) (end 0 -0.127)
  541. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  542. (fill (type none))
  543. )
  544. (rectangle (start -1.27 2.667) (end 0 2.413)
  545. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  546. (fill (type none))
  547. )
  548. (rectangle (start -1.27 5.207) (end 0 4.953)
  549. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  550. (fill (type none))
  551. )
  552. (rectangle (start -1.27 7.747) (end 0 7.493)
  553. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  554. (fill (type none))
  555. )
  556. (rectangle (start -1.27 10.287) (end 0 10.033)
  557. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  558. (fill (type none))
  559. )
  560. (rectangle (start -1.27 12.827) (end 0 12.573)
  561. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  562. (fill (type none))
  563. )
  564. (rectangle (start -1.27 15.367) (end 0 15.113)
  565. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  566. (fill (type none))
  567. )
  568. (rectangle (start -1.27 17.907) (end 0 17.653)
  569. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  570. (fill (type none))
  571. )
  572. (rectangle (start -1.27 20.447) (end 0 20.193)
  573. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  574. (fill (type none))
  575. )
  576. (rectangle (start -1.27 21.59) (end 3.81 -21.59)
  577. (stroke (width 0.254) (type default) (color 0 0 0 0))
  578. (fill (type background))
  579. )
  580. (rectangle (start 3.81 -20.193) (end 2.54 -20.447)
  581. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  582. (fill (type none))
  583. )
  584. (rectangle (start 3.81 -17.653) (end 2.54 -17.907)
  585. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  586. (fill (type none))
  587. )
  588. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  589. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  590. (fill (type none))
  591. )
  592. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  593. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  594. (fill (type none))
  595. )
  596. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  597. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  598. (fill (type none))
  599. )
  600. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  601. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  602. (fill (type none))
  603. )
  604. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  605. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  606. (fill (type none))
  607. )
  608. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  609. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  610. (fill (type none))
  611. )
  612. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  613. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  614. (fill (type none))
  615. )
  616. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  617. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  618. (fill (type none))
  619. )
  620. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  621. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  622. (fill (type none))
  623. )
  624. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  625. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  626. (fill (type none))
  627. )
  628. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  629. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  630. (fill (type none))
  631. )
  632. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  633. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  634. (fill (type none))
  635. )
  636. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  637. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  638. (fill (type none))
  639. )
  640. (rectangle (start 3.81 17.907) (end 2.54 17.653)
  641. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  642. (fill (type none))
  643. )
  644. (rectangle (start 3.81 20.447) (end 2.54 20.193)
  645. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  646. (fill (type none))
  647. )
  648. (pin passive line (at -5.08 20.32 0) (length 3.81)
  649. (name "Pin_1" (effects (font (size 1.27 1.27))))
  650. (number "1" (effects (font (size 1.27 1.27))))
  651. )
  652. (pin passive line (at 7.62 10.16 180) (length 3.81)
  653. (name "Pin_10" (effects (font (size 1.27 1.27))))
  654. (number "10" (effects (font (size 1.27 1.27))))
  655. )
  656. (pin passive line (at -5.08 7.62 0) (length 3.81)
  657. (name "Pin_11" (effects (font (size 1.27 1.27))))
  658. (number "11" (effects (font (size 1.27 1.27))))
  659. )
  660. (pin passive line (at 7.62 7.62 180) (length 3.81)
  661. (name "Pin_12" (effects (font (size 1.27 1.27))))
  662. (number "12" (effects (font (size 1.27 1.27))))
  663. )
  664. (pin passive line (at -5.08 5.08 0) (length 3.81)
  665. (name "Pin_13" (effects (font (size 1.27 1.27))))
  666. (number "13" (effects (font (size 1.27 1.27))))
  667. )
  668. (pin passive line (at 7.62 5.08 180) (length 3.81)
  669. (name "Pin_14" (effects (font (size 1.27 1.27))))
  670. (number "14" (effects (font (size 1.27 1.27))))
  671. )
  672. (pin passive line (at -5.08 2.54 0) (length 3.81)
  673. (name "Pin_15" (effects (font (size 1.27 1.27))))
  674. (number "15" (effects (font (size 1.27 1.27))))
  675. )
  676. (pin passive line (at 7.62 2.54 180) (length 3.81)
  677. (name "Pin_16" (effects (font (size 1.27 1.27))))
  678. (number "16" (effects (font (size 1.27 1.27))))
  679. )
  680. (pin passive line (at -5.08 0 0) (length 3.81)
  681. (name "Pin_17" (effects (font (size 1.27 1.27))))
  682. (number "17" (effects (font (size 1.27 1.27))))
  683. )
  684. (pin passive line (at 7.62 0 180) (length 3.81)
  685. (name "Pin_18" (effects (font (size 1.27 1.27))))
  686. (number "18" (effects (font (size 1.27 1.27))))
  687. )
  688. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  689. (name "Pin_19" (effects (font (size 1.27 1.27))))
  690. (number "19" (effects (font (size 1.27 1.27))))
  691. )
  692. (pin passive line (at 7.62 20.32 180) (length 3.81)
  693. (name "Pin_2" (effects (font (size 1.27 1.27))))
  694. (number "2" (effects (font (size 1.27 1.27))))
  695. )
  696. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  697. (name "Pin_20" (effects (font (size 1.27 1.27))))
  698. (number "20" (effects (font (size 1.27 1.27))))
  699. )
  700. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  701. (name "Pin_21" (effects (font (size 1.27 1.27))))
  702. (number "21" (effects (font (size 1.27 1.27))))
  703. )
  704. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  705. (name "Pin_22" (effects (font (size 1.27 1.27))))
  706. (number "22" (effects (font (size 1.27 1.27))))
  707. )
  708. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  709. (name "Pin_23" (effects (font (size 1.27 1.27))))
  710. (number "23" (effects (font (size 1.27 1.27))))
  711. )
  712. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  713. (name "Pin_24" (effects (font (size 1.27 1.27))))
  714. (number "24" (effects (font (size 1.27 1.27))))
  715. )
  716. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  717. (name "Pin_25" (effects (font (size 1.27 1.27))))
  718. (number "25" (effects (font (size 1.27 1.27))))
  719. )
  720. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  721. (name "Pin_26" (effects (font (size 1.27 1.27))))
  722. (number "26" (effects (font (size 1.27 1.27))))
  723. )
  724. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  725. (name "Pin_27" (effects (font (size 1.27 1.27))))
  726. (number "27" (effects (font (size 1.27 1.27))))
  727. )
  728. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  729. (name "Pin_28" (effects (font (size 1.27 1.27))))
  730. (number "28" (effects (font (size 1.27 1.27))))
  731. )
  732. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  733. (name "Pin_29" (effects (font (size 1.27 1.27))))
  734. (number "29" (effects (font (size 1.27 1.27))))
  735. )
  736. (pin passive line (at -5.08 17.78 0) (length 3.81)
  737. (name "Pin_3" (effects (font (size 1.27 1.27))))
  738. (number "3" (effects (font (size 1.27 1.27))))
  739. )
  740. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  741. (name "Pin_30" (effects (font (size 1.27 1.27))))
  742. (number "30" (effects (font (size 1.27 1.27))))
  743. )
  744. (pin passive line (at -5.08 -17.78 0) (length 3.81)
  745. (name "Pin_31" (effects (font (size 1.27 1.27))))
  746. (number "31" (effects (font (size 1.27 1.27))))
  747. )
  748. (pin passive line (at 7.62 -17.78 180) (length 3.81)
  749. (name "Pin_32" (effects (font (size 1.27 1.27))))
  750. (number "32" (effects (font (size 1.27 1.27))))
  751. )
  752. (pin passive line (at -5.08 -20.32 0) (length 3.81)
  753. (name "Pin_33" (effects (font (size 1.27 1.27))))
  754. (number "33" (effects (font (size 1.27 1.27))))
  755. )
  756. (pin passive line (at 7.62 -20.32 180) (length 3.81)
  757. (name "Pin_34" (effects (font (size 1.27 1.27))))
  758. (number "34" (effects (font (size 1.27 1.27))))
  759. )
  760. (pin passive line (at 7.62 17.78 180) (length 3.81)
  761. (name "Pin_4" (effects (font (size 1.27 1.27))))
  762. (number "4" (effects (font (size 1.27 1.27))))
  763. )
  764. (pin passive line (at -5.08 15.24 0) (length 3.81)
  765. (name "Pin_5" (effects (font (size 1.27 1.27))))
  766. (number "5" (effects (font (size 1.27 1.27))))
  767. )
  768. (pin passive line (at 7.62 15.24 180) (length 3.81)
  769. (name "Pin_6" (effects (font (size 1.27 1.27))))
  770. (number "6" (effects (font (size 1.27 1.27))))
  771. )
  772. (pin passive line (at -5.08 12.7 0) (length 3.81)
  773. (name "Pin_7" (effects (font (size 1.27 1.27))))
  774. (number "7" (effects (font (size 1.27 1.27))))
  775. )
  776. (pin passive line (at 7.62 12.7 180) (length 3.81)
  777. (name "Pin_8" (effects (font (size 1.27 1.27))))
  778. (number "8" (effects (font (size 1.27 1.27))))
  779. )
  780. (pin passive line (at -5.08 10.16 0) (length 3.81)
  781. (name "Pin_9" (effects (font (size 1.27 1.27))))
  782. (number "9" (effects (font (size 1.27 1.27))))
  783. )
  784. )
  785. )
  786. (symbol "Connector_Generic:Conn_02x25_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  787. (property "Reference" "J" (id 0) (at 1.27 33.02 0)
  788. (effects (font (size 1.27 1.27)))
  789. )
  790. (property "Value" "Conn_02x25_Odd_Even" (id 1) (at 1.27 -33.02 0)
  791. (effects (font (size 1.27 1.27)))
  792. )
  793. (property "Footprint" "" (id 2) (at 0 0 0)
  794. (effects (font (size 1.27 1.27)) hide)
  795. )
  796. (property "Datasheet" "~" (id 3) (at 0 0 0)
  797. (effects (font (size 1.27 1.27)) hide)
  798. )
  799. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  800. (effects (font (size 1.27 1.27)) hide)
  801. )
  802. (property "ki_description" "Generic connector, double row, 02x25, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  803. (effects (font (size 1.27 1.27)) hide)
  804. )
  805. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  806. (effects (font (size 1.27 1.27)) hide)
  807. )
  808. (symbol "Conn_02x25_Odd_Even_1_1"
  809. (rectangle (start -1.27 -30.353) (end 0 -30.607)
  810. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  811. (fill (type none))
  812. )
  813. (rectangle (start -1.27 -27.813) (end 0 -28.067)
  814. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  815. (fill (type none))
  816. )
  817. (rectangle (start -1.27 -25.273) (end 0 -25.527)
  818. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  819. (fill (type none))
  820. )
  821. (rectangle (start -1.27 -22.733) (end 0 -22.987)
  822. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  823. (fill (type none))
  824. )
  825. (rectangle (start -1.27 -20.193) (end 0 -20.447)
  826. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  827. (fill (type none))
  828. )
  829. (rectangle (start -1.27 -17.653) (end 0 -17.907)
  830. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  831. (fill (type none))
  832. )
  833. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  834. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  835. (fill (type none))
  836. )
  837. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  838. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  839. (fill (type none))
  840. )
  841. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  842. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  843. (fill (type none))
  844. )
  845. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  846. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  847. (fill (type none))
  848. )
  849. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  850. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  851. (fill (type none))
  852. )
  853. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  854. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  855. (fill (type none))
  856. )
  857. (rectangle (start -1.27 0.127) (end 0 -0.127)
  858. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  859. (fill (type none))
  860. )
  861. (rectangle (start -1.27 2.667) (end 0 2.413)
  862. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  863. (fill (type none))
  864. )
  865. (rectangle (start -1.27 5.207) (end 0 4.953)
  866. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  867. (fill (type none))
  868. )
  869. (rectangle (start -1.27 7.747) (end 0 7.493)
  870. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  871. (fill (type none))
  872. )
  873. (rectangle (start -1.27 10.287) (end 0 10.033)
  874. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  875. (fill (type none))
  876. )
  877. (rectangle (start -1.27 12.827) (end 0 12.573)
  878. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  879. (fill (type none))
  880. )
  881. (rectangle (start -1.27 15.367) (end 0 15.113)
  882. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  883. (fill (type none))
  884. )
  885. (rectangle (start -1.27 17.907) (end 0 17.653)
  886. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  887. (fill (type none))
  888. )
  889. (rectangle (start -1.27 20.447) (end 0 20.193)
  890. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  891. (fill (type none))
  892. )
  893. (rectangle (start -1.27 22.987) (end 0 22.733)
  894. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  895. (fill (type none))
  896. )
  897. (rectangle (start -1.27 25.527) (end 0 25.273)
  898. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  899. (fill (type none))
  900. )
  901. (rectangle (start -1.27 28.067) (end 0 27.813)
  902. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  903. (fill (type none))
  904. )
  905. (rectangle (start -1.27 30.607) (end 0 30.353)
  906. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  907. (fill (type none))
  908. )
  909. (rectangle (start -1.27 31.75) (end 3.81 -31.75)
  910. (stroke (width 0.254) (type default) (color 0 0 0 0))
  911. (fill (type background))
  912. )
  913. (rectangle (start 3.81 -30.353) (end 2.54 -30.607)
  914. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  915. (fill (type none))
  916. )
  917. (rectangle (start 3.81 -27.813) (end 2.54 -28.067)
  918. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  919. (fill (type none))
  920. )
  921. (rectangle (start 3.81 -25.273) (end 2.54 -25.527)
  922. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  923. (fill (type none))
  924. )
  925. (rectangle (start 3.81 -22.733) (end 2.54 -22.987)
  926. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  927. (fill (type none))
  928. )
  929. (rectangle (start 3.81 -20.193) (end 2.54 -20.447)
  930. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  931. (fill (type none))
  932. )
  933. (rectangle (start 3.81 -17.653) (end 2.54 -17.907)
  934. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  935. (fill (type none))
  936. )
  937. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  938. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  939. (fill (type none))
  940. )
  941. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  942. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  943. (fill (type none))
  944. )
  945. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  946. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  947. (fill (type none))
  948. )
  949. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  950. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  951. (fill (type none))
  952. )
  953. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  954. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  955. (fill (type none))
  956. )
  957. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  958. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  959. (fill (type none))
  960. )
  961. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  962. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  963. (fill (type none))
  964. )
  965. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  966. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  967. (fill (type none))
  968. )
  969. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  970. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  971. (fill (type none))
  972. )
  973. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  974. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  975. (fill (type none))
  976. )
  977. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  978. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  979. (fill (type none))
  980. )
  981. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  982. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  983. (fill (type none))
  984. )
  985. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  986. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  987. (fill (type none))
  988. )
  989. (rectangle (start 3.81 17.907) (end 2.54 17.653)
  990. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  991. (fill (type none))
  992. )
  993. (rectangle (start 3.81 20.447) (end 2.54 20.193)
  994. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  995. (fill (type none))
  996. )
  997. (rectangle (start 3.81 22.987) (end 2.54 22.733)
  998. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  999. (fill (type none))
  1000. )
  1001. (rectangle (start 3.81 25.527) (end 2.54 25.273)
  1002. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1003. (fill (type none))
  1004. )
  1005. (rectangle (start 3.81 28.067) (end 2.54 27.813)
  1006. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1007. (fill (type none))
  1008. )
  1009. (rectangle (start 3.81 30.607) (end 2.54 30.353)
  1010. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1011. (fill (type none))
  1012. )
  1013. (pin passive line (at -5.08 30.48 0) (length 3.81)
  1014. (name "Pin_1" (effects (font (size 1.27 1.27))))
  1015. (number "1" (effects (font (size 1.27 1.27))))
  1016. )
  1017. (pin passive line (at 7.62 20.32 180) (length 3.81)
  1018. (name "Pin_10" (effects (font (size 1.27 1.27))))
  1019. (number "10" (effects (font (size 1.27 1.27))))
  1020. )
  1021. (pin passive line (at -5.08 17.78 0) (length 3.81)
  1022. (name "Pin_11" (effects (font (size 1.27 1.27))))
  1023. (number "11" (effects (font (size 1.27 1.27))))
  1024. )
  1025. (pin passive line (at 7.62 17.78 180) (length 3.81)
  1026. (name "Pin_12" (effects (font (size 1.27 1.27))))
  1027. (number "12" (effects (font (size 1.27 1.27))))
  1028. )
  1029. (pin passive line (at -5.08 15.24 0) (length 3.81)
  1030. (name "Pin_13" (effects (font (size 1.27 1.27))))
  1031. (number "13" (effects (font (size 1.27 1.27))))
  1032. )
  1033. (pin passive line (at 7.62 15.24 180) (length 3.81)
  1034. (name "Pin_14" (effects (font (size 1.27 1.27))))
  1035. (number "14" (effects (font (size 1.27 1.27))))
  1036. )
  1037. (pin passive line (at -5.08 12.7 0) (length 3.81)
  1038. (name "Pin_15" (effects (font (size 1.27 1.27))))
  1039. (number "15" (effects (font (size 1.27 1.27))))
  1040. )
  1041. (pin passive line (at 7.62 12.7 180) (length 3.81)
  1042. (name "Pin_16" (effects (font (size 1.27 1.27))))
  1043. (number "16" (effects (font (size 1.27 1.27))))
  1044. )
  1045. (pin passive line (at -5.08 10.16 0) (length 3.81)
  1046. (name "Pin_17" (effects (font (size 1.27 1.27))))
  1047. (number "17" (effects (font (size 1.27 1.27))))
  1048. )
  1049. (pin passive line (at 7.62 10.16 180) (length 3.81)
  1050. (name "Pin_18" (effects (font (size 1.27 1.27))))
  1051. (number "18" (effects (font (size 1.27 1.27))))
  1052. )
  1053. (pin passive line (at -5.08 7.62 0) (length 3.81)
  1054. (name "Pin_19" (effects (font (size 1.27 1.27))))
  1055. (number "19" (effects (font (size 1.27 1.27))))
  1056. )
  1057. (pin passive line (at 7.62 30.48 180) (length 3.81)
  1058. (name "Pin_2" (effects (font (size 1.27 1.27))))
  1059. (number "2" (effects (font (size 1.27 1.27))))
  1060. )
  1061. (pin passive line (at 7.62 7.62 180) (length 3.81)
  1062. (name "Pin_20" (effects (font (size 1.27 1.27))))
  1063. (number "20" (effects (font (size 1.27 1.27))))
  1064. )
  1065. (pin passive line (at -5.08 5.08 0) (length 3.81)
  1066. (name "Pin_21" (effects (font (size 1.27 1.27))))
  1067. (number "21" (effects (font (size 1.27 1.27))))
  1068. )
  1069. (pin passive line (at 7.62 5.08 180) (length 3.81)
  1070. (name "Pin_22" (effects (font (size 1.27 1.27))))
  1071. (number "22" (effects (font (size 1.27 1.27))))
  1072. )
  1073. (pin passive line (at -5.08 2.54 0) (length 3.81)
  1074. (name "Pin_23" (effects (font (size 1.27 1.27))))
  1075. (number "23" (effects (font (size 1.27 1.27))))
  1076. )
  1077. (pin passive line (at 7.62 2.54 180) (length 3.81)
  1078. (name "Pin_24" (effects (font (size 1.27 1.27))))
  1079. (number "24" (effects (font (size 1.27 1.27))))
  1080. )
  1081. (pin passive line (at -5.08 0 0) (length 3.81)
  1082. (name "Pin_25" (effects (font (size 1.27 1.27))))
  1083. (number "25" (effects (font (size 1.27 1.27))))
  1084. )
  1085. (pin passive line (at 7.62 0 180) (length 3.81)
  1086. (name "Pin_26" (effects (font (size 1.27 1.27))))
  1087. (number "26" (effects (font (size 1.27 1.27))))
  1088. )
  1089. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  1090. (name "Pin_27" (effects (font (size 1.27 1.27))))
  1091. (number "27" (effects (font (size 1.27 1.27))))
  1092. )
  1093. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  1094. (name "Pin_28" (effects (font (size 1.27 1.27))))
  1095. (number "28" (effects (font (size 1.27 1.27))))
  1096. )
  1097. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  1098. (name "Pin_29" (effects (font (size 1.27 1.27))))
  1099. (number "29" (effects (font (size 1.27 1.27))))
  1100. )
  1101. (pin passive line (at -5.08 27.94 0) (length 3.81)
  1102. (name "Pin_3" (effects (font (size 1.27 1.27))))
  1103. (number "3" (effects (font (size 1.27 1.27))))
  1104. )
  1105. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  1106. (name "Pin_30" (effects (font (size 1.27 1.27))))
  1107. (number "30" (effects (font (size 1.27 1.27))))
  1108. )
  1109. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  1110. (name "Pin_31" (effects (font (size 1.27 1.27))))
  1111. (number "31" (effects (font (size 1.27 1.27))))
  1112. )
  1113. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  1114. (name "Pin_32" (effects (font (size 1.27 1.27))))
  1115. (number "32" (effects (font (size 1.27 1.27))))
  1116. )
  1117. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  1118. (name "Pin_33" (effects (font (size 1.27 1.27))))
  1119. (number "33" (effects (font (size 1.27 1.27))))
  1120. )
  1121. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  1122. (name "Pin_34" (effects (font (size 1.27 1.27))))
  1123. (number "34" (effects (font (size 1.27 1.27))))
  1124. )
  1125. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  1126. (name "Pin_35" (effects (font (size 1.27 1.27))))
  1127. (number "35" (effects (font (size 1.27 1.27))))
  1128. )
  1129. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  1130. (name "Pin_36" (effects (font (size 1.27 1.27))))
  1131. (number "36" (effects (font (size 1.27 1.27))))
  1132. )
  1133. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  1134. (name "Pin_37" (effects (font (size 1.27 1.27))))
  1135. (number "37" (effects (font (size 1.27 1.27))))
  1136. )
  1137. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  1138. (name "Pin_38" (effects (font (size 1.27 1.27))))
  1139. (number "38" (effects (font (size 1.27 1.27))))
  1140. )
  1141. (pin passive line (at -5.08 -17.78 0) (length 3.81)
  1142. (name "Pin_39" (effects (font (size 1.27 1.27))))
  1143. (number "39" (effects (font (size 1.27 1.27))))
  1144. )
  1145. (pin passive line (at 7.62 27.94 180) (length 3.81)
  1146. (name "Pin_4" (effects (font (size 1.27 1.27))))
  1147. (number "4" (effects (font (size 1.27 1.27))))
  1148. )
  1149. (pin passive line (at 7.62 -17.78 180) (length 3.81)
  1150. (name "Pin_40" (effects (font (size 1.27 1.27))))
  1151. (number "40" (effects (font (size 1.27 1.27))))
  1152. )
  1153. (pin passive line (at -5.08 -20.32 0) (length 3.81)
  1154. (name "Pin_41" (effects (font (size 1.27 1.27))))
  1155. (number "41" (effects (font (size 1.27 1.27))))
  1156. )
  1157. (pin passive line (at 7.62 -20.32 180) (length 3.81)
  1158. (name "Pin_42" (effects (font (size 1.27 1.27))))
  1159. (number "42" (effects (font (size 1.27 1.27))))
  1160. )
  1161. (pin passive line (at -5.08 -22.86 0) (length 3.81)
  1162. (name "Pin_43" (effects (font (size 1.27 1.27))))
  1163. (number "43" (effects (font (size 1.27 1.27))))
  1164. )
  1165. (pin passive line (at 7.62 -22.86 180) (length 3.81)
  1166. (name "Pin_44" (effects (font (size 1.27 1.27))))
  1167. (number "44" (effects (font (size 1.27 1.27))))
  1168. )
  1169. (pin passive line (at -5.08 -25.4 0) (length 3.81)
  1170. (name "Pin_45" (effects (font (size 1.27 1.27))))
  1171. (number "45" (effects (font (size 1.27 1.27))))
  1172. )
  1173. (pin passive line (at 7.62 -25.4 180) (length 3.81)
  1174. (name "Pin_46" (effects (font (size 1.27 1.27))))
  1175. (number "46" (effects (font (size 1.27 1.27))))
  1176. )
  1177. (pin passive line (at -5.08 -27.94 0) (length 3.81)
  1178. (name "Pin_47" (effects (font (size 1.27 1.27))))
  1179. (number "47" (effects (font (size 1.27 1.27))))
  1180. )
  1181. (pin passive line (at 7.62 -27.94 180) (length 3.81)
  1182. (name "Pin_48" (effects (font (size 1.27 1.27))))
  1183. (number "48" (effects (font (size 1.27 1.27))))
  1184. )
  1185. (pin passive line (at -5.08 -30.48 0) (length 3.81)
  1186. (name "Pin_49" (effects (font (size 1.27 1.27))))
  1187. (number "49" (effects (font (size 1.27 1.27))))
  1188. )
  1189. (pin passive line (at -5.08 25.4 0) (length 3.81)
  1190. (name "Pin_5" (effects (font (size 1.27 1.27))))
  1191. (number "5" (effects (font (size 1.27 1.27))))
  1192. )
  1193. (pin passive line (at 7.62 -30.48 180) (length 3.81)
  1194. (name "Pin_50" (effects (font (size 1.27 1.27))))
  1195. (number "50" (effects (font (size 1.27 1.27))))
  1196. )
  1197. (pin passive line (at 7.62 25.4 180) (length 3.81)
  1198. (name "Pin_6" (effects (font (size 1.27 1.27))))
  1199. (number "6" (effects (font (size 1.27 1.27))))
  1200. )
  1201. (pin passive line (at -5.08 22.86 0) (length 3.81)
  1202. (name "Pin_7" (effects (font (size 1.27 1.27))))
  1203. (number "7" (effects (font (size 1.27 1.27))))
  1204. )
  1205. (pin passive line (at 7.62 22.86 180) (length 3.81)
  1206. (name "Pin_8" (effects (font (size 1.27 1.27))))
  1207. (number "8" (effects (font (size 1.27 1.27))))
  1208. )
  1209. (pin passive line (at -5.08 20.32 0) (length 3.81)
  1210. (name "Pin_9" (effects (font (size 1.27 1.27))))
  1211. (number "9" (effects (font (size 1.27 1.27))))
  1212. )
  1213. )
  1214. )
  1215. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1216. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  1217. (effects (font (size 1.27 1.27)) (justify left))
  1218. )
  1219. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  1220. (effects (font (size 1.27 1.27)) (justify left))
  1221. )
  1222. (property "Footprint" "" (id 2) (at 0 0 0)
  1223. (effects (font (size 1.27 1.27)) hide)
  1224. )
  1225. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1226. (effects (font (size 1.27 1.27)) hide)
  1227. )
  1228. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  1229. (effects (font (size 1.27 1.27)) hide)
  1230. )
  1231. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  1232. (effects (font (size 1.27 1.27)) hide)
  1233. )
  1234. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  1235. (effects (font (size 1.27 1.27)) hide)
  1236. )
  1237. (symbol "C_Small_0_1"
  1238. (polyline
  1239. (pts
  1240. (xy -1.524 -0.508)
  1241. (xy 1.524 -0.508)
  1242. )
  1243. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  1244. (fill (type none))
  1245. )
  1246. (polyline
  1247. (pts
  1248. (xy -1.524 0.508)
  1249. (xy 1.524 0.508)
  1250. )
  1251. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  1252. (fill (type none))
  1253. )
  1254. )
  1255. (symbol "C_Small_1_1"
  1256. (pin passive line (at 0 2.54 270) (length 2.032)
  1257. (name "~" (effects (font (size 1.27 1.27))))
  1258. (number "1" (effects (font (size 1.27 1.27))))
  1259. )
  1260. (pin passive line (at 0 -2.54 90) (length 2.032)
  1261. (name "~" (effects (font (size 1.27 1.27))))
  1262. (number "2" (effects (font (size 1.27 1.27))))
  1263. )
  1264. )
  1265. )
  1266. (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1267. (property "Reference" "D" (id 0) (at 0 2.54 0)
  1268. (effects (font (size 1.27 1.27)))
  1269. )
  1270. (property "Value" "LED" (id 1) (at 0 -2.54 0)
  1271. (effects (font (size 1.27 1.27)))
  1272. )
  1273. (property "Footprint" "" (id 2) (at 0 0 0)
  1274. (effects (font (size 1.27 1.27)) hide)
  1275. )
  1276. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1277. (effects (font (size 1.27 1.27)) hide)
  1278. )
  1279. (property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
  1280. (effects (font (size 1.27 1.27)) hide)
  1281. )
  1282. (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
  1283. (effects (font (size 1.27 1.27)) hide)
  1284. )
  1285. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
  1286. (effects (font (size 1.27 1.27)) hide)
  1287. )
  1288. (symbol "LED_0_1"
  1289. (polyline
  1290. (pts
  1291. (xy -1.27 -1.27)
  1292. (xy -1.27 1.27)
  1293. )
  1294. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1295. (fill (type none))
  1296. )
  1297. (polyline
  1298. (pts
  1299. (xy -1.27 0)
  1300. (xy 1.27 0)
  1301. )
  1302. (stroke (width 0) (type default) (color 0 0 0 0))
  1303. (fill (type none))
  1304. )
  1305. (polyline
  1306. (pts
  1307. (xy 1.27 -1.27)
  1308. (xy 1.27 1.27)
  1309. (xy -1.27 0)
  1310. (xy 1.27 -1.27)
  1311. )
  1312. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1313. (fill (type none))
  1314. )
  1315. (polyline
  1316. (pts
  1317. (xy -3.048 -0.762)
  1318. (xy -4.572 -2.286)
  1319. (xy -3.81 -2.286)
  1320. (xy -4.572 -2.286)
  1321. (xy -4.572 -1.524)
  1322. )
  1323. (stroke (width 0) (type default) (color 0 0 0 0))
  1324. (fill (type none))
  1325. )
  1326. (polyline
  1327. (pts
  1328. (xy -1.778 -0.762)
  1329. (xy -3.302 -2.286)
  1330. (xy -2.54 -2.286)
  1331. (xy -3.302 -2.286)
  1332. (xy -3.302 -1.524)
  1333. )
  1334. (stroke (width 0) (type default) (color 0 0 0 0))
  1335. (fill (type none))
  1336. )
  1337. )
  1338. (symbol "LED_1_1"
  1339. (pin passive line (at -3.81 0 0) (length 2.54)
  1340. (name "K" (effects (font (size 1.27 1.27))))
  1341. (number "1" (effects (font (size 1.27 1.27))))
  1342. )
  1343. (pin passive line (at 3.81 0 180) (length 2.54)
  1344. (name "A" (effects (font (size 1.27 1.27))))
  1345. (number "2" (effects (font (size 1.27 1.27))))
  1346. )
  1347. )
  1348. )
  1349. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1350. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  1351. (effects (font (size 1.27 1.27)) (justify left))
  1352. )
  1353. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  1354. (effects (font (size 1.27 1.27)) (justify left))
  1355. )
  1356. (property "Footprint" "" (id 2) (at 0 0 0)
  1357. (effects (font (size 1.27 1.27)) hide)
  1358. )
  1359. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1360. (effects (font (size 1.27 1.27)) hide)
  1361. )
  1362. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  1363. (effects (font (size 1.27 1.27)) hide)
  1364. )
  1365. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  1366. (effects (font (size 1.27 1.27)) hide)
  1367. )
  1368. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  1369. (effects (font (size 1.27 1.27)) hide)
  1370. )
  1371. (symbol "R_Small_0_1"
  1372. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  1373. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  1374. (fill (type none))
  1375. )
  1376. )
  1377. (symbol "R_Small_1_1"
  1378. (pin passive line (at 0 2.54 270) (length 0.762)
  1379. (name "~" (effects (font (size 1.27 1.27))))
  1380. (number "1" (effects (font (size 1.27 1.27))))
  1381. )
  1382. (pin passive line (at 0 -2.54 90) (length 0.762)
  1383. (name "~" (effects (font (size 1.27 1.27))))
  1384. (number "2" (effects (font (size 1.27 1.27))))
  1385. )
  1386. )
  1387. )
  1388. (symbol "Diode:1N4148W" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1389. (property "Reference" "D" (id 0) (at 0 2.54 0)
  1390. (effects (font (size 1.27 1.27)))
  1391. )
  1392. (property "Value" "1N4148W" (id 1) (at 0 -2.54 0)
  1393. (effects (font (size 1.27 1.27)))
  1394. )
  1395. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 0 -4.445 0)
  1396. (effects (font (size 1.27 1.27)) hide)
  1397. )
  1398. (property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (id 3) (at 0 0 0)
  1399. (effects (font (size 1.27 1.27)) hide)
  1400. )
  1401. (property "ki_keywords" "diode" (id 4) (at 0 0 0)
  1402. (effects (font (size 1.27 1.27)) hide)
  1403. )
  1404. (property "ki_description" "75V 0.15A Fast Switching Diode, SOD-123" (id 5) (at 0 0 0)
  1405. (effects (font (size 1.27 1.27)) hide)
  1406. )
  1407. (property "ki_fp_filters" "D*SOD?123*" (id 6) (at 0 0 0)
  1408. (effects (font (size 1.27 1.27)) hide)
  1409. )
  1410. (symbol "1N4148W_0_1"
  1411. (polyline
  1412. (pts
  1413. (xy -1.27 1.27)
  1414. (xy -1.27 -1.27)
  1415. )
  1416. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1417. (fill (type none))
  1418. )
  1419. (polyline
  1420. (pts
  1421. (xy 1.27 0)
  1422. (xy -1.27 0)
  1423. )
  1424. (stroke (width 0) (type default) (color 0 0 0 0))
  1425. (fill (type none))
  1426. )
  1427. (polyline
  1428. (pts
  1429. (xy 1.27 1.27)
  1430. (xy 1.27 -1.27)
  1431. (xy -1.27 0)
  1432. (xy 1.27 1.27)
  1433. )
  1434. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1435. (fill (type none))
  1436. )
  1437. )
  1438. (symbol "1N4148W_1_1"
  1439. (pin passive line (at -3.81 0 0) (length 2.54)
  1440. (name "K" (effects (font (size 1.27 1.27))))
  1441. (number "1" (effects (font (size 1.27 1.27))))
  1442. )
  1443. (pin passive line (at 3.81 0 180) (length 2.54)
  1444. (name "A" (effects (font (size 1.27 1.27))))
  1445. (number "2" (effects (font (size 1.27 1.27))))
  1446. )
  1447. )
  1448. )
  1449. (symbol "Greaseweazle:STM32F730Z8T6" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1450. (property "Reference" "U" (id 0) (at 0 5.08 0)
  1451. (effects (font (size 1.27 1.27)) (justify left))
  1452. )
  1453. (property "Value" "STM32F730Z8T6" (id 1) (at 0 7.62 0)
  1454. (effects (font (size 1.27 1.27)) (justify left))
  1455. )
  1456. (property "Footprint" "sm6uax:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (id 2) (at 0 10.16 0)
  1457. (effects (font (size 1.27 1.27)) (justify left) hide)
  1458. )
  1459. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f730r8.pdf" (id 3) (at 0 12.7 0)
  1460. (effects (font (size 1.27 1.27)) (justify left) hide)
  1461. )
  1462. (property "ki_locked" "" (id 4) (at 0 0 0)
  1463. (effects (font (size 1.27 1.27)))
  1464. )
  1465. (property "ki_description" "STM32F730Z8T6" (id 5) (at 0 0 0)
  1466. (effects (font (size 1.27 1.27)) hide)
  1467. )
  1468. (symbol "STM32F730Z8T6_1_1"
  1469. (rectangle (start 5.08 2.54) (end 45.72 -71.12)
  1470. (stroke (width 0) (type default) (color 0 0 0 0))
  1471. (fill (type background))
  1472. )
  1473. (pin power_in line (at 2.54 -40.64 0) (length 2.54)
  1474. (name "VCAP_2" (effects (font (size 1.016 1.016))))
  1475. (number "106" (effects (font (size 1.016 1.016))))
  1476. )
  1477. (pin power_in line (at 48.26 -60.96 180) (length 2.54)
  1478. (name "VSS" (effects (font (size 1.016 1.016))))
  1479. (number "107" (effects (font (size 1.016 1.016))))
  1480. )
  1481. (pin power_in line (at 2.54 -17.78 0) (length 2.54)
  1482. (name "VDD" (effects (font (size 1.016 1.016))))
  1483. (number "108" (effects (font (size 1.016 1.016))))
  1484. )
  1485. (pin power_in line (at 48.26 -63.5 180) (length 2.54)
  1486. (name "VSS" (effects (font (size 1.016 1.016))))
  1487. (number "120" (effects (font (size 1.016 1.016))))
  1488. )
  1489. (pin power_in line (at 2.54 -30.48 0) (length 2.54)
  1490. (name "VDDSDMMC" (effects (font (size 1.016 1.016))))
  1491. (number "121" (effects (font (size 1.016 1.016))))
  1492. )
  1493. (pin power_in line (at 48.26 -66.04 180) (length 2.54)
  1494. (name "VSS" (effects (font (size 1.016 1.016))))
  1495. (number "130" (effects (font (size 1.016 1.016))))
  1496. )
  1497. (pin power_in line (at 2.54 -20.32 0) (length 2.54)
  1498. (name "VDD" (effects (font (size 1.016 1.016))))
  1499. (number "131" (effects (font (size 1.016 1.016))))
  1500. )
  1501. (pin passive line (at 2.54 -58.42 0) (length 2.54)
  1502. (name "BOOT0" (effects (font (size 1.016 1.016))))
  1503. (number "138" (effects (font (size 1.016 1.016))))
  1504. )
  1505. (pin power_in line (at 2.54 -63.5 0) (length 2.54)
  1506. (name "PDR_ON" (effects (font (size 1.016 1.016))))
  1507. (number "143" (effects (font (size 1.016 1.016))))
  1508. )
  1509. (pin power_in line (at 2.54 -22.86 0) (length 2.54)
  1510. (name "VDD" (effects (font (size 1.016 1.016))))
  1511. (number "144" (effects (font (size 1.016 1.016))))
  1512. )
  1513. (pin power_in line (at 48.26 -45.72 180) (length 2.54)
  1514. (name "VSS" (effects (font (size 1.016 1.016))))
  1515. (number "16" (effects (font (size 1.016 1.016))))
  1516. )
  1517. (pin power_in line (at 2.54 0 0) (length 2.54)
  1518. (name "VDD" (effects (font (size 1.016 1.016))))
  1519. (number "17" (effects (font (size 1.016 1.016))))
  1520. )
  1521. (pin input line (at 2.54 -68.58 0) (length 2.54)
  1522. (name "~{RST}" (effects (font (size 1.016 1.016))))
  1523. (number "25" (effects (font (size 1.016 1.016))))
  1524. )
  1525. (pin power_in line (at 2.54 -2.54 0) (length 2.54)
  1526. (name "VDD" (effects (font (size 1.016 1.016))))
  1527. (number "30" (effects (font (size 1.016 1.016))))
  1528. )
  1529. (pin power_in line (at 48.26 -68.58 180) (length 2.54)
  1530. (name "VSSA" (effects (font (size 1.016 1.016))))
  1531. (number "31" (effects (font (size 1.016 1.016))))
  1532. )
  1533. (pin power_in line (at 2.54 -48.26 0) (length 2.54)
  1534. (name "VREF+" (effects (font (size 1.016 1.016))))
  1535. (number "32" (effects (font (size 1.016 1.016))))
  1536. )
  1537. (pin power_in line (at 2.54 -27.94 0) (length 2.54)
  1538. (name "VDDA" (effects (font (size 1.016 1.016))))
  1539. (number "33" (effects (font (size 1.016 1.016))))
  1540. )
  1541. (pin power_in line (at 48.26 -48.26 180) (length 2.54)
  1542. (name "VSS" (effects (font (size 1.016 1.016))))
  1543. (number "38" (effects (font (size 1.016 1.016))))
  1544. )
  1545. (pin power_in line (at 2.54 -5.08 0) (length 2.54)
  1546. (name "VDD" (effects (font (size 1.016 1.016))))
  1547. (number "39" (effects (font (size 1.016 1.016))))
  1548. )
  1549. (pin power_in line (at 48.26 -50.8 180) (length 2.54)
  1550. (name "VSS" (effects (font (size 1.016 1.016))))
  1551. (number "51" (effects (font (size 1.016 1.016))))
  1552. )
  1553. (pin power_in line (at 2.54 -7.62 0) (length 2.54)
  1554. (name "VDD" (effects (font (size 1.016 1.016))))
  1555. (number "52" (effects (font (size 1.016 1.016))))
  1556. )
  1557. (pin power_in line (at 2.54 -45.72 0) (length 2.54)
  1558. (name "VBAT" (effects (font (size 1.016 1.016))))
  1559. (number "6" (effects (font (size 1.016 1.016))))
  1560. )
  1561. (pin power_in line (at 48.26 -53.34 180) (length 2.54)
  1562. (name "VSS" (effects (font (size 1.016 1.016))))
  1563. (number "61" (effects (font (size 1.016 1.016))))
  1564. )
  1565. (pin power_in line (at 2.54 -10.16 0) (length 2.54)
  1566. (name "VDD" (effects (font (size 1.016 1.016))))
  1567. (number "62" (effects (font (size 1.016 1.016))))
  1568. )
  1569. (pin power_in line (at 2.54 -38.1 0) (length 2.54)
  1570. (name "VCAP_1" (effects (font (size 1.016 1.016))))
  1571. (number "71" (effects (font (size 1.016 1.016))))
  1572. )
  1573. (pin power_in line (at 2.54 -12.7 0) (length 2.54)
  1574. (name "VDD" (effects (font (size 1.016 1.016))))
  1575. (number "72" (effects (font (size 1.016 1.016))))
  1576. )
  1577. (pin power_in line (at 2.54 -53.34 0) (length 2.54)
  1578. (name "OTG_HS_REXT" (effects (font (size 1.016 1.016))))
  1579. (number "75" (effects (font (size 1.016 1.016))))
  1580. )
  1581. (pin passive line (at 2.54 -25.4 0) (length 2.54)
  1582. (name "VDD12OTGHS" (effects (font (size 1.016 1.016))))
  1583. (number "76" (effects (font (size 1.016 1.016))))
  1584. )
  1585. (pin power_in line (at 48.26 -55.88 180) (length 2.54)
  1586. (name "VSS" (effects (font (size 1.016 1.016))))
  1587. (number "85" (effects (font (size 1.016 1.016))))
  1588. )
  1589. (pin power_in line (at 2.54 -15.24 0) (length 2.54)
  1590. (name "VDD" (effects (font (size 1.016 1.016))))
  1591. (number "86" (effects (font (size 1.016 1.016))))
  1592. )
  1593. (pin power_in line (at 48.26 -58.42 180) (length 2.54)
  1594. (name "VSS" (effects (font (size 1.016 1.016))))
  1595. (number "94" (effects (font (size 1.016 1.016))))
  1596. )
  1597. (pin power_in line (at 2.54 -33.02 0) (length 2.54)
  1598. (name "VDDUSB" (effects (font (size 1.016 1.016))))
  1599. (number "95" (effects (font (size 1.016 1.016))))
  1600. )
  1601. )
  1602. (symbol "STM32F730Z8T6_2_1"
  1603. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  1604. (stroke (width 0) (type default) (color 0 0 0 0))
  1605. (fill (type background))
  1606. )
  1607. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  1608. (name "PA8" (effects (font (size 1.016 1.016))))
  1609. (number "100" (effects (font (size 1.016 1.016))))
  1610. )
  1611. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  1612. (name "PA9" (effects (font (size 1.016 1.016))))
  1613. (number "101" (effects (font (size 1.016 1.016))))
  1614. )
  1615. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  1616. (name "PA10" (effects (font (size 1.016 1.016))))
  1617. (number "102" (effects (font (size 1.016 1.016))))
  1618. )
  1619. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  1620. (name "PA11" (effects (font (size 1.016 1.016))))
  1621. (number "103" (effects (font (size 1.016 1.016))))
  1622. )
  1623. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  1624. (name "PA12" (effects (font (size 1.016 1.016))))
  1625. (number "104" (effects (font (size 1.016 1.016))))
  1626. )
  1627. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  1628. (name "PA13" (effects (font (size 1.016 1.016))))
  1629. (number "105" (effects (font (size 1.016 1.016))))
  1630. )
  1631. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  1632. (name "PA14" (effects (font (size 1.016 1.016))))
  1633. (number "109" (effects (font (size 1.016 1.016))))
  1634. )
  1635. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  1636. (name "PA15" (effects (font (size 1.016 1.016))))
  1637. (number "110" (effects (font (size 1.016 1.016))))
  1638. )
  1639. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  1640. (name "PC10" (effects (font (size 1.016 1.016))))
  1641. (number "111" (effects (font (size 1.016 1.016))))
  1642. )
  1643. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  1644. (name "PC11" (effects (font (size 1.016 1.016))))
  1645. (number "112" (effects (font (size 1.016 1.016))))
  1646. )
  1647. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  1648. (name "PC12" (effects (font (size 1.016 1.016))))
  1649. (number "113" (effects (font (size 1.016 1.016))))
  1650. )
  1651. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  1652. (name "PD0" (effects (font (size 1.016 1.016))))
  1653. (number "114" (effects (font (size 1.016 1.016))))
  1654. )
  1655. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  1656. (name "PD1" (effects (font (size 1.016 1.016))))
  1657. (number "115" (effects (font (size 1.016 1.016))))
  1658. )
  1659. (pin bidirectional line (at 25.4 -48.26 180) (length 2.54)
  1660. (name "PD2" (effects (font (size 1.016 1.016))))
  1661. (number "116" (effects (font (size 1.016 1.016))))
  1662. )
  1663. (pin bidirectional line (at 25.4 -50.8 180) (length 2.54)
  1664. (name "PD3" (effects (font (size 1.016 1.016))))
  1665. (number "117" (effects (font (size 1.016 1.016))))
  1666. )
  1667. (pin bidirectional line (at 25.4 -53.34 180) (length 2.54)
  1668. (name "PD4" (effects (font (size 1.016 1.016))))
  1669. (number "118" (effects (font (size 1.016 1.016))))
  1670. )
  1671. (pin bidirectional line (at 25.4 -55.88 180) (length 2.54)
  1672. (name "PD5" (effects (font (size 1.016 1.016))))
  1673. (number "119" (effects (font (size 1.016 1.016))))
  1674. )
  1675. (pin bidirectional line (at 25.4 -58.42 180) (length 2.54)
  1676. (name "PD6" (effects (font (size 1.016 1.016))))
  1677. (number "122" (effects (font (size 1.016 1.016))))
  1678. )
  1679. (pin bidirectional line (at 25.4 -60.96 180) (length 2.54)
  1680. (name "PD7" (effects (font (size 1.016 1.016))))
  1681. (number "123" (effects (font (size 1.016 1.016))))
  1682. )
  1683. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  1684. (name "PB3" (effects (font (size 1.016 1.016))))
  1685. (number "133" (effects (font (size 1.016 1.016))))
  1686. )
  1687. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  1688. (name "PB4" (effects (font (size 1.016 1.016))))
  1689. (number "134" (effects (font (size 1.016 1.016))))
  1690. )
  1691. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  1692. (name "PB5" (effects (font (size 1.016 1.016))))
  1693. (number "135" (effects (font (size 1.016 1.016))))
  1694. )
  1695. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  1696. (name "PB6" (effects (font (size 1.016 1.016))))
  1697. (number "136" (effects (font (size 1.016 1.016))))
  1698. )
  1699. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  1700. (name "PB7" (effects (font (size 1.016 1.016))))
  1701. (number "137" (effects (font (size 1.016 1.016))))
  1702. )
  1703. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  1704. (name "PB8" (effects (font (size 1.016 1.016))))
  1705. (number "139" (effects (font (size 1.016 1.016))))
  1706. )
  1707. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  1708. (name "PB9" (effects (font (size 1.016 1.016))))
  1709. (number "140" (effects (font (size 1.016 1.016))))
  1710. )
  1711. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  1712. (name "PC0" (effects (font (size 1.016 1.016))))
  1713. (number "26" (effects (font (size 1.016 1.016))))
  1714. )
  1715. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  1716. (name "PC1" (effects (font (size 1.016 1.016))))
  1717. (number "27" (effects (font (size 1.016 1.016))))
  1718. )
  1719. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  1720. (name "PC2" (effects (font (size 1.016 1.016))))
  1721. (number "28" (effects (font (size 1.016 1.016))))
  1722. )
  1723. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  1724. (name "PC3" (effects (font (size 1.016 1.016))))
  1725. (number "29" (effects (font (size 1.016 1.016))))
  1726. )
  1727. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  1728. (name "PA0" (effects (font (size 1.016 1.016))))
  1729. (number "34" (effects (font (size 1.016 1.016))))
  1730. )
  1731. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  1732. (name "PA1" (effects (font (size 1.016 1.016))))
  1733. (number "35" (effects (font (size 1.016 1.016))))
  1734. )
  1735. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  1736. (name "PA2" (effects (font (size 1.016 1.016))))
  1737. (number "36" (effects (font (size 1.016 1.016))))
  1738. )
  1739. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  1740. (name "PA3" (effects (font (size 1.016 1.016))))
  1741. (number "37" (effects (font (size 1.016 1.016))))
  1742. )
  1743. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  1744. (name "PA4" (effects (font (size 1.016 1.016))))
  1745. (number "40" (effects (font (size 1.016 1.016))))
  1746. )
  1747. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  1748. (name "PA5" (effects (font (size 1.016 1.016))))
  1749. (number "41" (effects (font (size 1.016 1.016))))
  1750. )
  1751. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  1752. (name "PA6" (effects (font (size 1.016 1.016))))
  1753. (number "42" (effects (font (size 1.016 1.016))))
  1754. )
  1755. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  1756. (name "PA7" (effects (font (size 1.016 1.016))))
  1757. (number "43" (effects (font (size 1.016 1.016))))
  1758. )
  1759. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  1760. (name "PC4" (effects (font (size 1.016 1.016))))
  1761. (number "44" (effects (font (size 1.016 1.016))))
  1762. )
  1763. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  1764. (name "PC5" (effects (font (size 1.016 1.016))))
  1765. (number "45" (effects (font (size 1.016 1.016))))
  1766. )
  1767. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  1768. (name "PB0" (effects (font (size 1.016 1.016))))
  1769. (number "46" (effects (font (size 1.016 1.016))))
  1770. )
  1771. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  1772. (name "PB1" (effects (font (size 1.016 1.016))))
  1773. (number "47" (effects (font (size 1.016 1.016))))
  1774. )
  1775. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  1776. (name "PB2" (effects (font (size 1.016 1.016))))
  1777. (number "48" (effects (font (size 1.016 1.016))))
  1778. )
  1779. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  1780. (name "PB10" (effects (font (size 1.016 1.016))))
  1781. (number "69" (effects (font (size 1.016 1.016))))
  1782. )
  1783. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  1784. (name "PC13" (effects (font (size 1.016 1.016))))
  1785. (number "7" (effects (font (size 1.016 1.016))))
  1786. )
  1787. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  1788. (name "PB11" (effects (font (size 1.016 1.016))))
  1789. (number "70" (effects (font (size 1.016 1.016))))
  1790. )
  1791. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  1792. (name "PB12" (effects (font (size 1.016 1.016))))
  1793. (number "73" (effects (font (size 1.016 1.016))))
  1794. )
  1795. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  1796. (name "PB13" (effects (font (size 1.016 1.016))))
  1797. (number "74" (effects (font (size 1.016 1.016))))
  1798. )
  1799. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  1800. (name "PB14" (effects (font (size 1.016 1.016))))
  1801. (number "77" (effects (font (size 1.016 1.016))))
  1802. )
  1803. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  1804. (name "PB15" (effects (font (size 1.016 1.016))))
  1805. (number "78" (effects (font (size 1.016 1.016))))
  1806. )
  1807. (pin bidirectional line (at 25.4 -63.5 180) (length 2.54)
  1808. (name "PD8" (effects (font (size 1.016 1.016))))
  1809. (number "79" (effects (font (size 1.016 1.016))))
  1810. )
  1811. (pin bidirectional line (at 25.4 -35.56 180) (length 2.54)
  1812. (name "PC14" (effects (font (size 1.016 1.016))))
  1813. (number "8" (effects (font (size 1.016 1.016))))
  1814. )
  1815. (pin bidirectional line (at 25.4 -66.04 180) (length 2.54)
  1816. (name "PD9" (effects (font (size 1.016 1.016))))
  1817. (number "80" (effects (font (size 1.016 1.016))))
  1818. )
  1819. (pin bidirectional line (at 25.4 -68.58 180) (length 2.54)
  1820. (name "PD10" (effects (font (size 1.016 1.016))))
  1821. (number "81" (effects (font (size 1.016 1.016))))
  1822. )
  1823. (pin bidirectional line (at 25.4 -71.12 180) (length 2.54)
  1824. (name "PD11" (effects (font (size 1.016 1.016))))
  1825. (number "82" (effects (font (size 1.016 1.016))))
  1826. )
  1827. (pin bidirectional line (at 25.4 -73.66 180) (length 2.54)
  1828. (name "PD12" (effects (font (size 1.016 1.016))))
  1829. (number "83" (effects (font (size 1.016 1.016))))
  1830. )
  1831. (pin bidirectional line (at 25.4 -76.2 180) (length 2.54)
  1832. (name "PD13" (effects (font (size 1.016 1.016))))
  1833. (number "84" (effects (font (size 1.016 1.016))))
  1834. )
  1835. (pin bidirectional line (at 25.4 -78.74 180) (length 2.54)
  1836. (name "PD14" (effects (font (size 1.016 1.016))))
  1837. (number "87" (effects (font (size 1.016 1.016))))
  1838. )
  1839. (pin bidirectional line (at 25.4 -81.28 180) (length 2.54)
  1840. (name "PD15" (effects (font (size 1.016 1.016))))
  1841. (number "88" (effects (font (size 1.016 1.016))))
  1842. )
  1843. (pin bidirectional line (at 25.4 -38.1 180) (length 2.54)
  1844. (name "PC15" (effects (font (size 1.016 1.016))))
  1845. (number "9" (effects (font (size 1.016 1.016))))
  1846. )
  1847. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  1848. (name "PC6" (effects (font (size 1.016 1.016))))
  1849. (number "96" (effects (font (size 1.016 1.016))))
  1850. )
  1851. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  1852. (name "PC7" (effects (font (size 1.016 1.016))))
  1853. (number "97" (effects (font (size 1.016 1.016))))
  1854. )
  1855. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  1856. (name "PC8" (effects (font (size 1.016 1.016))))
  1857. (number "98" (effects (font (size 1.016 1.016))))
  1858. )
  1859. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  1860. (name "PC9" (effects (font (size 1.016 1.016))))
  1861. (number "99" (effects (font (size 1.016 1.016))))
  1862. )
  1863. )
  1864. (symbol "STM32F730Z8T6_3_1"
  1865. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  1866. (stroke (width 0) (type default) (color 0 0 0 0))
  1867. (fill (type background))
  1868. )
  1869. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  1870. (name "PE2" (effects (font (size 1.016 1.016))))
  1871. (number "1" (effects (font (size 1.016 1.016))))
  1872. )
  1873. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  1874. (name "PF0" (effects (font (size 1.016 1.016))))
  1875. (number "10" (effects (font (size 1.016 1.016))))
  1876. )
  1877. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  1878. (name "PF1" (effects (font (size 1.016 1.016))))
  1879. (number "11" (effects (font (size 1.016 1.016))))
  1880. )
  1881. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  1882. (name "PF2" (effects (font (size 1.016 1.016))))
  1883. (number "12" (effects (font (size 1.016 1.016))))
  1884. )
  1885. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  1886. (name "PG9" (effects (font (size 1.016 1.016))))
  1887. (number "124" (effects (font (size 1.016 1.016))))
  1888. )
  1889. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  1890. (name "PG10" (effects (font (size 1.016 1.016))))
  1891. (number "125" (effects (font (size 1.016 1.016))))
  1892. )
  1893. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  1894. (name "PG11" (effects (font (size 1.016 1.016))))
  1895. (number "126" (effects (font (size 1.016 1.016))))
  1896. )
  1897. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  1898. (name "PG12" (effects (font (size 1.016 1.016))))
  1899. (number "127" (effects (font (size 1.016 1.016))))
  1900. )
  1901. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  1902. (name "PG13" (effects (font (size 1.016 1.016))))
  1903. (number "128" (effects (font (size 1.016 1.016))))
  1904. )
  1905. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  1906. (name "PG14" (effects (font (size 1.016 1.016))))
  1907. (number "129" (effects (font (size 1.016 1.016))))
  1908. )
  1909. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  1910. (name "PF3" (effects (font (size 1.016 1.016))))
  1911. (number "13" (effects (font (size 1.016 1.016))))
  1912. )
  1913. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  1914. (name "PG15" (effects (font (size 1.016 1.016))))
  1915. (number "132" (effects (font (size 1.016 1.016))))
  1916. )
  1917. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  1918. (name "PF4" (effects (font (size 1.016 1.016))))
  1919. (number "14" (effects (font (size 1.016 1.016))))
  1920. )
  1921. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  1922. (name "PE0" (effects (font (size 1.016 1.016))))
  1923. (number "141" (effects (font (size 1.016 1.016))))
  1924. )
  1925. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  1926. (name "PE1" (effects (font (size 1.016 1.016))))
  1927. (number "142" (effects (font (size 1.016 1.016))))
  1928. )
  1929. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  1930. (name "PF5" (effects (font (size 1.016 1.016))))
  1931. (number "15" (effects (font (size 1.016 1.016))))
  1932. )
  1933. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  1934. (name "PF6" (effects (font (size 1.016 1.016))))
  1935. (number "18" (effects (font (size 1.016 1.016))))
  1936. )
  1937. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  1938. (name "PF7" (effects (font (size 1.016 1.016))))
  1939. (number "19" (effects (font (size 1.016 1.016))))
  1940. )
  1941. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  1942. (name "PE3" (effects (font (size 1.016 1.016))))
  1943. (number "2" (effects (font (size 1.016 1.016))))
  1944. )
  1945. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  1946. (name "PF8" (effects (font (size 1.016 1.016))))
  1947. (number "20" (effects (font (size 1.016 1.016))))
  1948. )
  1949. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  1950. (name "PF9" (effects (font (size 1.016 1.016))))
  1951. (number "21" (effects (font (size 1.016 1.016))))
  1952. )
  1953. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  1954. (name "PF10" (effects (font (size 1.016 1.016))))
  1955. (number "22" (effects (font (size 1.016 1.016))))
  1956. )
  1957. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  1958. (name "PH0" (effects (font (size 1.016 1.016))))
  1959. (number "23" (effects (font (size 1.016 1.016))))
  1960. )
  1961. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  1962. (name "PH1" (effects (font (size 1.016 1.016))))
  1963. (number "24" (effects (font (size 1.016 1.016))))
  1964. )
  1965. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  1966. (name "PE4" (effects (font (size 1.016 1.016))))
  1967. (number "3" (effects (font (size 1.016 1.016))))
  1968. )
  1969. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  1970. (name "PE5" (effects (font (size 1.016 1.016))))
  1971. (number "4" (effects (font (size 1.016 1.016))))
  1972. )
  1973. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  1974. (name "PF11" (effects (font (size 1.016 1.016))))
  1975. (number "49" (effects (font (size 1.016 1.016))))
  1976. )
  1977. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  1978. (name "PE6" (effects (font (size 1.016 1.016))))
  1979. (number "5" (effects (font (size 1.016 1.016))))
  1980. )
  1981. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  1982. (name "PF12" (effects (font (size 1.016 1.016))))
  1983. (number "50" (effects (font (size 1.016 1.016))))
  1984. )
  1985. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  1986. (name "PF13" (effects (font (size 1.016 1.016))))
  1987. (number "53" (effects (font (size 1.016 1.016))))
  1988. )
  1989. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  1990. (name "PF14" (effects (font (size 1.016 1.016))))
  1991. (number "54" (effects (font (size 1.016 1.016))))
  1992. )
  1993. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  1994. (name "PF15" (effects (font (size 1.016 1.016))))
  1995. (number "55" (effects (font (size 1.016 1.016))))
  1996. )
  1997. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  1998. (name "PG0" (effects (font (size 1.016 1.016))))
  1999. (number "56" (effects (font (size 1.016 1.016))))
  2000. )
  2001. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  2002. (name "PG1" (effects (font (size 1.016 1.016))))
  2003. (number "57" (effects (font (size 1.016 1.016))))
  2004. )
  2005. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  2006. (name "PE7" (effects (font (size 1.016 1.016))))
  2007. (number "58" (effects (font (size 1.016 1.016))))
  2008. )
  2009. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  2010. (name "PE8" (effects (font (size 1.016 1.016))))
  2011. (number "59" (effects (font (size 1.016 1.016))))
  2012. )
  2013. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  2014. (name "PE9" (effects (font (size 1.016 1.016))))
  2015. (number "60" (effects (font (size 1.016 1.016))))
  2016. )
  2017. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  2018. (name "PE10" (effects (font (size 1.016 1.016))))
  2019. (number "63" (effects (font (size 1.016 1.016))))
  2020. )
  2021. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  2022. (name "PE11" (effects (font (size 1.016 1.016))))
  2023. (number "64" (effects (font (size 1.016 1.016))))
  2024. )
  2025. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  2026. (name "PE12" (effects (font (size 1.016 1.016))))
  2027. (number "65" (effects (font (size 1.016 1.016))))
  2028. )
  2029. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  2030. (name "PE13" (effects (font (size 1.016 1.016))))
  2031. (number "66" (effects (font (size 1.016 1.016))))
  2032. )
  2033. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  2034. (name "PE14" (effects (font (size 1.016 1.016))))
  2035. (number "67" (effects (font (size 1.016 1.016))))
  2036. )
  2037. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  2038. (name "PE15" (effects (font (size 1.016 1.016))))
  2039. (number "68" (effects (font (size 1.016 1.016))))
  2040. )
  2041. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  2042. (name "PG2" (effects (font (size 1.016 1.016))))
  2043. (number "89" (effects (font (size 1.016 1.016))))
  2044. )
  2045. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  2046. (name "PG3" (effects (font (size 1.016 1.016))))
  2047. (number "90" (effects (font (size 1.016 1.016))))
  2048. )
  2049. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  2050. (name "PG4" (effects (font (size 1.016 1.016))))
  2051. (number "91" (effects (font (size 1.016 1.016))))
  2052. )
  2053. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  2054. (name "PG5" (effects (font (size 1.016 1.016))))
  2055. (number "92" (effects (font (size 1.016 1.016))))
  2056. )
  2057. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  2058. (name "PG8" (effects (font (size 1.016 1.016))))
  2059. (number "93" (effects (font (size 1.016 1.016))))
  2060. )
  2061. )
  2062. )
  2063. (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  2064. (property "Reference" "H" (id 0) (at 0 5.08 0)
  2065. (effects (font (size 1.27 1.27)))
  2066. )
  2067. (property "Value" "MountingHole" (id 1) (at 0 3.175 0)
  2068. (effects (font (size 1.27 1.27)))
  2069. )
  2070. (property "Footprint" "" (id 2) (at 0 0 0)
  2071. (effects (font (size 1.27 1.27)) hide)
  2072. )
  2073. (property "Datasheet" "~" (id 3) (at 0 0 0)
  2074. (effects (font (size 1.27 1.27)) hide)
  2075. )
  2076. (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
  2077. (effects (font (size 1.27 1.27)) hide)
  2078. )
  2079. (property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
  2080. (effects (font (size 1.27 1.27)) hide)
  2081. )
  2082. (property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
  2083. (effects (font (size 1.27 1.27)) hide)
  2084. )
  2085. (symbol "MountingHole_0_1"
  2086. (circle (center 0 0) (radius 1.27)
  2087. (stroke (width 1.27) (type default) (color 0 0 0 0))
  2088. (fill (type none))
  2089. )
  2090. )
  2091. )
  2092. (symbol "Oscillator:ASCO" (in_bom yes) (on_board yes)
  2093. (property "Reference" "X" (id 0) (at -7.62 6.35 0)
  2094. (effects (font (size 1.27 1.27)) (justify left))
  2095. )
  2096. (property "Value" "ASCO" (id 1) (at 1.27 -6.35 0)
  2097. (effects (font (size 1.27 1.27)) (justify left))
  2098. )
  2099. (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASCO-4Pin_1.6x1.2mm" (id 2) (at 2.54 -8.89 0)
  2100. (effects (font (size 1.27 1.27)) hide)
  2101. )
  2102. (property "Datasheet" "https://abracon.com/Oscillators/ASCO.pdf" (id 3) (at -5.715 3.175 0)
  2103. (effects (font (size 1.27 1.27)) hide)
  2104. )
  2105. (property "ki_keywords" "Crystal Clock Oscillator" (id 4) (at 0 0 0)
  2106. (effects (font (size 1.27 1.27)) hide)
  2107. )
  2108. (property "ki_description" "Crystal Clock Oscillator, Abracon ASCO" (id 5) (at 0 0 0)
  2109. (effects (font (size 1.27 1.27)) hide)
  2110. )
  2111. (property "ki_fp_filters" "Oscillator*Abracon*ASCO*1.6x1.2mm*" (id 6) (at 0 0 0)
  2112. (effects (font (size 1.27 1.27)) hide)
  2113. )
  2114. (symbol "ASCO_0_1"
  2115. (rectangle (start -7.62 5.08) (end 7.62 -5.08)
  2116. (stroke (width 0.254) (type default) (color 0 0 0 0))
  2117. (fill (type background))
  2118. )
  2119. (polyline
  2120. (pts
  2121. (xy -5.715 2.54)
  2122. (xy -5.08 2.54)
  2123. (xy -5.08 3.81)
  2124. (xy -4.445 3.81)
  2125. (xy -4.445 2.54)
  2126. (xy -3.81 2.54)
  2127. (xy -3.81 3.81)
  2128. (xy -3.175 3.81)
  2129. (xy -3.175 2.54)
  2130. )
  2131. (stroke (width 0) (type default) (color 0 0 0 0))
  2132. (fill (type none))
  2133. )
  2134. )
  2135. (symbol "ASCO_1_1"
  2136. (pin input line (at -10.16 0 0) (length 2.54)
  2137. (name "Tri-State" (effects (font (size 1.27 1.27))))
  2138. (number "1" (effects (font (size 1.27 1.27))))
  2139. )
  2140. (pin power_in line (at 0 -7.62 90) (length 2.54)
  2141. (name "GND" (effects (font (size 1.27 1.27))))
  2142. (number "2" (effects (font (size 1.27 1.27))))
  2143. )
  2144. (pin output line (at 10.16 0 180) (length 2.54)
  2145. (name "OUT" (effects (font (size 1.27 1.27))))
  2146. (number "3" (effects (font (size 1.27 1.27))))
  2147. )
  2148. (pin power_in line (at 0 7.62 270) (length 2.54)
  2149. (name "VDD" (effects (font (size 1.27 1.27))))
  2150. (number "4" (effects (font (size 1.27 1.27))))
  2151. )
  2152. )
  2153. )
  2154. (symbol "Switch:SW_DIP_x01" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  2155. (property "Reference" "SW" (id 0) (at 0 3.81 0)
  2156. (effects (font (size 1.27 1.27)))
  2157. )
  2158. (property "Value" "SW_DIP_x01" (id 1) (at 0 -3.81 0)
  2159. (effects (font (size 1.27 1.27)))
  2160. )
  2161. (property "Footprint" "" (id 2) (at 0 0 0)
  2162. (effects (font (size 1.27 1.27)) hide)
  2163. )
  2164. (property "Datasheet" "~" (id 3) (at 0 0 0)
  2165. (effects (font (size 1.27 1.27)) hide)
  2166. )
  2167. (property "ki_keywords" "dip switch" (id 4) (at 0 0 0)
  2168. (effects (font (size 1.27 1.27)) hide)
  2169. )
  2170. (property "ki_description" "1x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (id 5) (at 0 0 0)
  2171. (effects (font (size 1.27 1.27)) hide)
  2172. )
  2173. (property "ki_fp_filters" "SW?DIP?x1*" (id 6) (at 0 0 0)
  2174. (effects (font (size 1.27 1.27)) hide)
  2175. )
  2176. (symbol "SW_DIP_x01_0_0"
  2177. (circle (center -2.032 0) (radius 0.508)
  2178. (stroke (width 0) (type default) (color 0 0 0 0))
  2179. (fill (type none))
  2180. )
  2181. (polyline
  2182. (pts
  2183. (xy -1.524 0.127)
  2184. (xy 2.3622 1.1684)
  2185. )
  2186. (stroke (width 0) (type default) (color 0 0 0 0))
  2187. (fill (type none))
  2188. )
  2189. (circle (center 2.032 0) (radius 0.508)
  2190. (stroke (width 0) (type default) (color 0 0 0 0))
  2191. (fill (type none))
  2192. )
  2193. )
  2194. (symbol "SW_DIP_x01_0_1"
  2195. (rectangle (start -3.81 2.54) (end 3.81 -2.54)
  2196. (stroke (width 0.254) (type default) (color 0 0 0 0))
  2197. (fill (type background))
  2198. )
  2199. )
  2200. (symbol "SW_DIP_x01_1_1"
  2201. (pin passive line (at -7.62 0 0) (length 5.08)
  2202. (name "~" (effects (font (size 1.27 1.27))))
  2203. (number "1" (effects (font (size 1.27 1.27))))
  2204. )
  2205. (pin passive line (at 7.62 0 180) (length 5.08)
  2206. (name "~" (effects (font (size 1.27 1.27))))
  2207. (number "2" (effects (font (size 1.27 1.27))))
  2208. )
  2209. )
  2210. )
  2211. (symbol "Switch:SW_DIP_x02" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  2212. (property "Reference" "SW" (id 0) (at 0 6.35 0)
  2213. (effects (font (size 1.27 1.27)))
  2214. )
  2215. (property "Value" "SW_DIP_x02" (id 1) (at 0 -3.81 0)
  2216. (effects (font (size 1.27 1.27)))
  2217. )
  2218. (property "Footprint" "" (id 2) (at 0 0 0)
  2219. (effects (font (size 1.27 1.27)) hide)
  2220. )
  2221. (property "Datasheet" "~" (id 3) (at 0 0 0)
  2222. (effects (font (size 1.27 1.27)) hide)
  2223. )
  2224. (property "ki_keywords" "dip switch" (id 4) (at 0 0 0)
  2225. (effects (font (size 1.27 1.27)) hide)
  2226. )
  2227. (property "ki_description" "2x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (id 5) (at 0 0 0)
  2228. (effects (font (size 1.27 1.27)) hide)
  2229. )
  2230. (property "ki_fp_filters" "SW?DIP?x2*" (id 6) (at 0 0 0)
  2231. (effects (font (size 1.27 1.27)) hide)
  2232. )
  2233. (symbol "SW_DIP_x02_0_0"
  2234. (circle (center -2.032 0) (radius 0.508)
  2235. (stroke (width 0) (type default) (color 0 0 0 0))
  2236. (fill (type none))
  2237. )
  2238. (circle (center -2.032 2.54) (radius 0.508)
  2239. (stroke (width 0) (type default) (color 0 0 0 0))
  2240. (fill (type none))
  2241. )
  2242. (polyline
  2243. (pts
  2244. (xy -1.524 0.127)
  2245. (xy 2.3622 1.1684)
  2246. )
  2247. (stroke (width 0) (type default) (color 0 0 0 0))
  2248. (fill (type none))
  2249. )
  2250. (polyline
  2251. (pts
  2252. (xy -1.524 2.667)
  2253. (xy 2.3622 3.7084)
  2254. )
  2255. (stroke (width 0) (type default) (color 0 0 0 0))
  2256. (fill (type none))
  2257. )
  2258. (circle (center 2.032 0) (radius 0.508)
  2259. (stroke (width 0) (type default) (color 0 0 0 0))
  2260. (fill (type none))
  2261. )
  2262. (circle (center 2.032 2.54) (radius 0.508)
  2263. (stroke (width 0) (type default) (color 0 0 0 0))
  2264. (fill (type none))
  2265. )
  2266. )
  2267. (symbol "SW_DIP_x02_0_1"
  2268. (rectangle (start -3.81 5.08) (end 3.81 -2.54)
  2269. (stroke (width 0.254) (type default) (color 0 0 0 0))
  2270. (fill (type background))
  2271. )
  2272. )
  2273. (symbol "SW_DIP_x02_1_1"
  2274. (pin passive line (at -7.62 2.54 0) (length 5.08)
  2275. (name "~" (effects (font (size 1.27 1.27))))
  2276. (number "1" (effects (font (size 1.27 1.27))))
  2277. )
  2278. (pin passive line (at -7.62 0 0) (length 5.08)
  2279. (name "~" (effects (font (size 1.27 1.27))))
  2280. (number "2" (effects (font (size 1.27 1.27))))
  2281. )
  2282. (pin passive line (at 7.62 0 180) (length 5.08)
  2283. (name "~" (effects (font (size 1.27 1.27))))
  2284. (number "3" (effects (font (size 1.27 1.27))))
  2285. )
  2286. (pin passive line (at 7.62 2.54 180) (length 5.08)
  2287. (name "~" (effects (font (size 1.27 1.27))))
  2288. (number "4" (effects (font (size 1.27 1.27))))
  2289. )
  2290. )
  2291. )
  2292. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2293. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2294. (effects (font (size 1.27 1.27)) hide)
  2295. )
  2296. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  2297. (effects (font (size 1.27 1.27)))
  2298. )
  2299. (property "Footprint" "" (id 2) (at 0 0 0)
  2300. (effects (font (size 1.27 1.27)) hide)
  2301. )
  2302. (property "Datasheet" "" (id 3) (at 0 0 0)
  2303. (effects (font (size 1.27 1.27)) hide)
  2304. )
  2305. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2306. (effects (font (size 1.27 1.27)) hide)
  2307. )
  2308. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  2309. (effects (font (size 1.27 1.27)) hide)
  2310. )
  2311. (symbol "+3V3_0_1"
  2312. (polyline
  2313. (pts
  2314. (xy -0.762 1.27)
  2315. (xy 0 2.54)
  2316. )
  2317. (stroke (width 0) (type default) (color 0 0 0 0))
  2318. (fill (type none))
  2319. )
  2320. (polyline
  2321. (pts
  2322. (xy 0 0)
  2323. (xy 0 2.54)
  2324. )
  2325. (stroke (width 0) (type default) (color 0 0 0 0))
  2326. (fill (type none))
  2327. )
  2328. (polyline
  2329. (pts
  2330. (xy 0 2.54)
  2331. (xy 0.762 1.27)
  2332. )
  2333. (stroke (width 0) (type default) (color 0 0 0 0))
  2334. (fill (type none))
  2335. )
  2336. )
  2337. (symbol "+3V3_1_1"
  2338. (pin power_in line (at 0 0 90) (length 0) hide
  2339. (name "+3V3" (effects (font (size 1.27 1.27))))
  2340. (number "1" (effects (font (size 1.27 1.27))))
  2341. )
  2342. )
  2343. )
  2344. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2345. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2346. (effects (font (size 1.27 1.27)) hide)
  2347. )
  2348. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  2349. (effects (font (size 1.27 1.27)))
  2350. )
  2351. (property "Footprint" "" (id 2) (at 0 0 0)
  2352. (effects (font (size 1.27 1.27)) hide)
  2353. )
  2354. (property "Datasheet" "" (id 3) (at 0 0 0)
  2355. (effects (font (size 1.27 1.27)) hide)
  2356. )
  2357. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2358. (effects (font (size 1.27 1.27)) hide)
  2359. )
  2360. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  2361. (effects (font (size 1.27 1.27)) hide)
  2362. )
  2363. (symbol "+5V_0_1"
  2364. (polyline
  2365. (pts
  2366. (xy -0.762 1.27)
  2367. (xy 0 2.54)
  2368. )
  2369. (stroke (width 0) (type default) (color 0 0 0 0))
  2370. (fill (type none))
  2371. )
  2372. (polyline
  2373. (pts
  2374. (xy 0 0)
  2375. (xy 0 2.54)
  2376. )
  2377. (stroke (width 0) (type default) (color 0 0 0 0))
  2378. (fill (type none))
  2379. )
  2380. (polyline
  2381. (pts
  2382. (xy 0 2.54)
  2383. (xy 0.762 1.27)
  2384. )
  2385. (stroke (width 0) (type default) (color 0 0 0 0))
  2386. (fill (type none))
  2387. )
  2388. )
  2389. (symbol "+5V_1_1"
  2390. (pin power_in line (at 0 0 90) (length 0) hide
  2391. (name "+5V" (effects (font (size 1.27 1.27))))
  2392. (number "1" (effects (font (size 1.27 1.27))))
  2393. )
  2394. )
  2395. )
  2396. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2397. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  2398. (effects (font (size 1.27 1.27)) hide)
  2399. )
  2400. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  2401. (effects (font (size 1.27 1.27)))
  2402. )
  2403. (property "Footprint" "" (id 2) (at 0 0 0)
  2404. (effects (font (size 1.27 1.27)) hide)
  2405. )
  2406. (property "Datasheet" "" (id 3) (at 0 0 0)
  2407. (effects (font (size 1.27 1.27)) hide)
  2408. )
  2409. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2410. (effects (font (size 1.27 1.27)) hide)
  2411. )
  2412. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  2413. (effects (font (size 1.27 1.27)) hide)
  2414. )
  2415. (symbol "GND_0_1"
  2416. (polyline
  2417. (pts
  2418. (xy 0 0)
  2419. (xy 0 -1.27)
  2420. (xy 1.27 -1.27)
  2421. (xy 0 -2.54)
  2422. (xy -1.27 -1.27)
  2423. (xy 0 -1.27)
  2424. )
  2425. (stroke (width 0) (type default) (color 0 0 0 0))
  2426. (fill (type none))
  2427. )
  2428. )
  2429. (symbol "GND_1_1"
  2430. (pin power_in line (at 0 0 270) (length 0) hide
  2431. (name "GND" (effects (font (size 1.27 1.27))))
  2432. (number "1" (effects (font (size 1.27 1.27))))
  2433. )
  2434. )
  2435. )
  2436. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  2437. (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
  2438. (effects (font (size 1.27 1.27)) hide)
  2439. )
  2440. (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
  2441. (effects (font (size 1.27 1.27)))
  2442. )
  2443. (property "Footprint" "" (id 2) (at 0 0 0)
  2444. (effects (font (size 1.27 1.27)) hide)
  2445. )
  2446. (property "Datasheet" "~" (id 3) (at 0 0 0)
  2447. (effects (font (size 1.27 1.27)) hide)
  2448. )
  2449. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2450. (effects (font (size 1.27 1.27)) hide)
  2451. )
  2452. (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
  2453. (effects (font (size 1.27 1.27)) hide)
  2454. )
  2455. (symbol "PWR_FLAG_0_0"
  2456. (pin power_out line (at 0 0 90) (length 0)
  2457. (name "pwr" (effects (font (size 1.27 1.27))))
  2458. (number "1" (effects (font (size 1.27 1.27))))
  2459. )
  2460. )
  2461. (symbol "PWR_FLAG_0_1"
  2462. (polyline
  2463. (pts
  2464. (xy 0 0)
  2465. (xy 0 1.27)
  2466. (xy -1.016 1.905)
  2467. (xy 0 2.54)
  2468. (xy 1.016 1.905)
  2469. (xy 0 1.27)
  2470. )
  2471. (stroke (width 0) (type default) (color 0 0 0 0))
  2472. (fill (type none))
  2473. )
  2474. )
  2475. )
  2476. (symbol "sm6uax:STM32F730Z8T6" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  2477. (property "Reference" "U" (id 0) (at 0 5.08 0)
  2478. (effects (font (size 1.27 1.27)) (justify left))
  2479. )
  2480. (property "Value" "sm6uax_STM32F730Z8T6" (id 1) (at 0 7.62 0)
  2481. (effects (font (size 1.27 1.27)) (justify left))
  2482. )
  2483. (property "Footprint" "sm6uax:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (id 2) (at 0 10.16 0)
  2484. (effects (font (size 1.27 1.27)) (justify left) hide)
  2485. )
  2486. (property "Datasheet" "" (id 3) (at 0 12.7 0)
  2487. (effects (font (size 1.27 1.27)) (justify left) hide)
  2488. )
  2489. (property "ki_locked" "" (id 4) (at 0 0 0)
  2490. (effects (font (size 1.27 1.27)))
  2491. )
  2492. (symbol "STM32F730Z8T6_1_1"
  2493. (rectangle (start 5.08 2.54) (end 45.72 -71.12)
  2494. (stroke (width 0) (type default) (color 0 0 0 0))
  2495. (fill (type background))
  2496. )
  2497. (pin power_in line (at 2.54 -40.64 0) (length 2.54)
  2498. (name "VCAP_2" (effects (font (size 1.016 1.016))))
  2499. (number "106" (effects (font (size 1.016 1.016))))
  2500. )
  2501. (pin power_in line (at 48.26 -60.96 180) (length 2.54)
  2502. (name "VSS" (effects (font (size 1.016 1.016))))
  2503. (number "107" (effects (font (size 1.016 1.016))))
  2504. )
  2505. (pin power_in line (at 2.54 -17.78 0) (length 2.54)
  2506. (name "VDD" (effects (font (size 1.016 1.016))))
  2507. (number "108" (effects (font (size 1.016 1.016))))
  2508. )
  2509. (pin power_in line (at 48.26 -63.5 180) (length 2.54)
  2510. (name "VSS" (effects (font (size 1.016 1.016))))
  2511. (number "120" (effects (font (size 1.016 1.016))))
  2512. )
  2513. (pin power_in line (at 2.54 -30.48 0) (length 2.54)
  2514. (name "VDDSDMMC" (effects (font (size 1.016 1.016))))
  2515. (number "121" (effects (font (size 1.016 1.016))))
  2516. )
  2517. (pin power_in line (at 48.26 -66.04 180) (length 2.54)
  2518. (name "VSS" (effects (font (size 1.016 1.016))))
  2519. (number "130" (effects (font (size 1.016 1.016))))
  2520. )
  2521. (pin power_in line (at 2.54 -20.32 0) (length 2.54)
  2522. (name "VDD" (effects (font (size 1.016 1.016))))
  2523. (number "131" (effects (font (size 1.016 1.016))))
  2524. )
  2525. (pin passive line (at 2.54 -58.42 0) (length 2.54)
  2526. (name "BOOT0" (effects (font (size 1.016 1.016))))
  2527. (number "138" (effects (font (size 1.016 1.016))))
  2528. )
  2529. (pin power_in line (at 2.54 -63.5 0) (length 2.54)
  2530. (name "PDR_ON" (effects (font (size 1.016 1.016))))
  2531. (number "143" (effects (font (size 1.016 1.016))))
  2532. )
  2533. (pin power_in line (at 2.54 -22.86 0) (length 2.54)
  2534. (name "VDD" (effects (font (size 1.016 1.016))))
  2535. (number "144" (effects (font (size 1.016 1.016))))
  2536. )
  2537. (pin power_in line (at 48.26 -45.72 180) (length 2.54)
  2538. (name "VSS" (effects (font (size 1.016 1.016))))
  2539. (number "16" (effects (font (size 1.016 1.016))))
  2540. )
  2541. (pin power_in line (at 2.54 0 0) (length 2.54)
  2542. (name "VDD" (effects (font (size 1.016 1.016))))
  2543. (number "17" (effects (font (size 1.016 1.016))))
  2544. )
  2545. (pin input line (at 2.54 -68.58 0) (length 2.54)
  2546. (name "~{RST}" (effects (font (size 1.016 1.016))))
  2547. (number "25" (effects (font (size 1.016 1.016))))
  2548. )
  2549. (pin power_in line (at 2.54 -2.54 0) (length 2.54)
  2550. (name "VDD" (effects (font (size 1.016 1.016))))
  2551. (number "30" (effects (font (size 1.016 1.016))))
  2552. )
  2553. (pin power_in line (at 48.26 -68.58 180) (length 2.54)
  2554. (name "VSSA" (effects (font (size 1.016 1.016))))
  2555. (number "31" (effects (font (size 1.016 1.016))))
  2556. )
  2557. (pin power_in line (at 2.54 -48.26 0) (length 2.54)
  2558. (name "VREF+" (effects (font (size 1.016 1.016))))
  2559. (number "32" (effects (font (size 1.016 1.016))))
  2560. )
  2561. (pin power_in line (at 2.54 -27.94 0) (length 2.54)
  2562. (name "VDDA" (effects (font (size 1.016 1.016))))
  2563. (number "33" (effects (font (size 1.016 1.016))))
  2564. )
  2565. (pin power_in line (at 48.26 -48.26 180) (length 2.54)
  2566. (name "VSS" (effects (font (size 1.016 1.016))))
  2567. (number "38" (effects (font (size 1.016 1.016))))
  2568. )
  2569. (pin power_in line (at 2.54 -5.08 0) (length 2.54)
  2570. (name "VDD" (effects (font (size 1.016 1.016))))
  2571. (number "39" (effects (font (size 1.016 1.016))))
  2572. )
  2573. (pin power_in line (at 48.26 -50.8 180) (length 2.54)
  2574. (name "VSS" (effects (font (size 1.016 1.016))))
  2575. (number "51" (effects (font (size 1.016 1.016))))
  2576. )
  2577. (pin power_in line (at 2.54 -7.62 0) (length 2.54)
  2578. (name "VDD" (effects (font (size 1.016 1.016))))
  2579. (number "52" (effects (font (size 1.016 1.016))))
  2580. )
  2581. (pin power_in line (at 2.54 -45.72 0) (length 2.54)
  2582. (name "VBAT" (effects (font (size 1.016 1.016))))
  2583. (number "6" (effects (font (size 1.016 1.016))))
  2584. )
  2585. (pin power_in line (at 48.26 -53.34 180) (length 2.54)
  2586. (name "VSS" (effects (font (size 1.016 1.016))))
  2587. (number "61" (effects (font (size 1.016 1.016))))
  2588. )
  2589. (pin power_in line (at 2.54 -10.16 0) (length 2.54)
  2590. (name "VDD" (effects (font (size 1.016 1.016))))
  2591. (number "62" (effects (font (size 1.016 1.016))))
  2592. )
  2593. (pin power_in line (at 2.54 -38.1 0) (length 2.54)
  2594. (name "VCAP_1" (effects (font (size 1.016 1.016))))
  2595. (number "71" (effects (font (size 1.016 1.016))))
  2596. )
  2597. (pin power_in line (at 2.54 -12.7 0) (length 2.54)
  2598. (name "VDD" (effects (font (size 1.016 1.016))))
  2599. (number "72" (effects (font (size 1.016 1.016))))
  2600. )
  2601. (pin power_in line (at 2.54 -53.34 0) (length 2.54)
  2602. (name "OTG_HS_REXT" (effects (font (size 1.016 1.016))))
  2603. (number "75" (effects (font (size 1.016 1.016))))
  2604. )
  2605. (pin passive line (at 2.54 -25.4 0) (length 2.54)
  2606. (name "VDD12OTGHS" (effects (font (size 1.016 1.016))))
  2607. (number "76" (effects (font (size 1.016 1.016))))
  2608. )
  2609. (pin power_in line (at 48.26 -55.88 180) (length 2.54)
  2610. (name "VSS" (effects (font (size 1.016 1.016))))
  2611. (number "85" (effects (font (size 1.016 1.016))))
  2612. )
  2613. (pin power_in line (at 2.54 -15.24 0) (length 2.54)
  2614. (name "VDD" (effects (font (size 1.016 1.016))))
  2615. (number "86" (effects (font (size 1.016 1.016))))
  2616. )
  2617. (pin power_in line (at 48.26 -58.42 180) (length 2.54)
  2618. (name "VSS" (effects (font (size 1.016 1.016))))
  2619. (number "94" (effects (font (size 1.016 1.016))))
  2620. )
  2621. (pin power_in line (at 2.54 -33.02 0) (length 2.54)
  2622. (name "VDDUSB" (effects (font (size 1.016 1.016))))
  2623. (number "95" (effects (font (size 1.016 1.016))))
  2624. )
  2625. )
  2626. (symbol "STM32F730Z8T6_2_1"
  2627. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  2628. (stroke (width 0) (type default) (color 0 0 0 0))
  2629. (fill (type background))
  2630. )
  2631. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  2632. (name "PA8" (effects (font (size 1.016 1.016))))
  2633. (number "100" (effects (font (size 1.016 1.016))))
  2634. )
  2635. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  2636. (name "PA9" (effects (font (size 1.016 1.016))))
  2637. (number "101" (effects (font (size 1.016 1.016))))
  2638. )
  2639. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  2640. (name "PA10" (effects (font (size 1.016 1.016))))
  2641. (number "102" (effects (font (size 1.016 1.016))))
  2642. )
  2643. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  2644. (name "PA11" (effects (font (size 1.016 1.016))))
  2645. (number "103" (effects (font (size 1.016 1.016))))
  2646. )
  2647. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  2648. (name "PA12" (effects (font (size 1.016 1.016))))
  2649. (number "104" (effects (font (size 1.016 1.016))))
  2650. )
  2651. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  2652. (name "PA13" (effects (font (size 1.016 1.016))))
  2653. (number "105" (effects (font (size 1.016 1.016))))
  2654. )
  2655. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  2656. (name "PA14" (effects (font (size 1.016 1.016))))
  2657. (number "109" (effects (font (size 1.016 1.016))))
  2658. )
  2659. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  2660. (name "PA15" (effects (font (size 1.016 1.016))))
  2661. (number "110" (effects (font (size 1.016 1.016))))
  2662. )
  2663. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  2664. (name "PC10" (effects (font (size 1.016 1.016))))
  2665. (number "111" (effects (font (size 1.016 1.016))))
  2666. )
  2667. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  2668. (name "PC11" (effects (font (size 1.016 1.016))))
  2669. (number "112" (effects (font (size 1.016 1.016))))
  2670. )
  2671. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  2672. (name "PC12" (effects (font (size 1.016 1.016))))
  2673. (number "113" (effects (font (size 1.016 1.016))))
  2674. )
  2675. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  2676. (name "PD0" (effects (font (size 1.016 1.016))))
  2677. (number "114" (effects (font (size 1.016 1.016))))
  2678. )
  2679. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  2680. (name "PD1" (effects (font (size 1.016 1.016))))
  2681. (number "115" (effects (font (size 1.016 1.016))))
  2682. )
  2683. (pin bidirectional line (at 25.4 -48.26 180) (length 2.54)
  2684. (name "PD2" (effects (font (size 1.016 1.016))))
  2685. (number "116" (effects (font (size 1.016 1.016))))
  2686. )
  2687. (pin bidirectional line (at 25.4 -50.8 180) (length 2.54)
  2688. (name "PD3" (effects (font (size 1.016 1.016))))
  2689. (number "117" (effects (font (size 1.016 1.016))))
  2690. )
  2691. (pin bidirectional line (at 25.4 -53.34 180) (length 2.54)
  2692. (name "PD4" (effects (font (size 1.016 1.016))))
  2693. (number "118" (effects (font (size 1.016 1.016))))
  2694. )
  2695. (pin bidirectional line (at 25.4 -55.88 180) (length 2.54)
  2696. (name "PD5" (effects (font (size 1.016 1.016))))
  2697. (number "119" (effects (font (size 1.016 1.016))))
  2698. )
  2699. (pin bidirectional line (at 25.4 -58.42 180) (length 2.54)
  2700. (name "PD6" (effects (font (size 1.016 1.016))))
  2701. (number "122" (effects (font (size 1.016 1.016))))
  2702. )
  2703. (pin bidirectional line (at 25.4 -60.96 180) (length 2.54)
  2704. (name "PD7" (effects (font (size 1.016 1.016))))
  2705. (number "123" (effects (font (size 1.016 1.016))))
  2706. )
  2707. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  2708. (name "PB3" (effects (font (size 1.016 1.016))))
  2709. (number "133" (effects (font (size 1.016 1.016))))
  2710. )
  2711. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  2712. (name "PB4" (effects (font (size 1.016 1.016))))
  2713. (number "134" (effects (font (size 1.016 1.016))))
  2714. )
  2715. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  2716. (name "PB5" (effects (font (size 1.016 1.016))))
  2717. (number "135" (effects (font (size 1.016 1.016))))
  2718. )
  2719. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  2720. (name "PB6" (effects (font (size 1.016 1.016))))
  2721. (number "136" (effects (font (size 1.016 1.016))))
  2722. )
  2723. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  2724. (name "PB7" (effects (font (size 1.016 1.016))))
  2725. (number "137" (effects (font (size 1.016 1.016))))
  2726. )
  2727. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  2728. (name "PB8" (effects (font (size 1.016 1.016))))
  2729. (number "139" (effects (font (size 1.016 1.016))))
  2730. )
  2731. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  2732. (name "PB9" (effects (font (size 1.016 1.016))))
  2733. (number "140" (effects (font (size 1.016 1.016))))
  2734. )
  2735. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  2736. (name "PC0" (effects (font (size 1.016 1.016))))
  2737. (number "26" (effects (font (size 1.016 1.016))))
  2738. )
  2739. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  2740. (name "PC1" (effects (font (size 1.016 1.016))))
  2741. (number "27" (effects (font (size 1.016 1.016))))
  2742. )
  2743. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  2744. (name "PC2" (effects (font (size 1.016 1.016))))
  2745. (number "28" (effects (font (size 1.016 1.016))))
  2746. )
  2747. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  2748. (name "PC3" (effects (font (size 1.016 1.016))))
  2749. (number "29" (effects (font (size 1.016 1.016))))
  2750. )
  2751. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  2752. (name "PA0" (effects (font (size 1.016 1.016))))
  2753. (number "34" (effects (font (size 1.016 1.016))))
  2754. )
  2755. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  2756. (name "PA1" (effects (font (size 1.016 1.016))))
  2757. (number "35" (effects (font (size 1.016 1.016))))
  2758. )
  2759. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  2760. (name "PA2" (effects (font (size 1.016 1.016))))
  2761. (number "36" (effects (font (size 1.016 1.016))))
  2762. )
  2763. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  2764. (name "PA3" (effects (font (size 1.016 1.016))))
  2765. (number "37" (effects (font (size 1.016 1.016))))
  2766. )
  2767. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  2768. (name "PA4" (effects (font (size 1.016 1.016))))
  2769. (number "40" (effects (font (size 1.016 1.016))))
  2770. )
  2771. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  2772. (name "PA5" (effects (font (size 1.016 1.016))))
  2773. (number "41" (effects (font (size 1.016 1.016))))
  2774. )
  2775. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  2776. (name "PA6" (effects (font (size 1.016 1.016))))
  2777. (number "42" (effects (font (size 1.016 1.016))))
  2778. )
  2779. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  2780. (name "PA7" (effects (font (size 1.016 1.016))))
  2781. (number "43" (effects (font (size 1.016 1.016))))
  2782. )
  2783. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  2784. (name "PC4" (effects (font (size 1.016 1.016))))
  2785. (number "44" (effects (font (size 1.016 1.016))))
  2786. )
  2787. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  2788. (name "PC5" (effects (font (size 1.016 1.016))))
  2789. (number "45" (effects (font (size 1.016 1.016))))
  2790. )
  2791. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  2792. (name "PB0" (effects (font (size 1.016 1.016))))
  2793. (number "46" (effects (font (size 1.016 1.016))))
  2794. )
  2795. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  2796. (name "PB1" (effects (font (size 1.016 1.016))))
  2797. (number "47" (effects (font (size 1.016 1.016))))
  2798. )
  2799. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  2800. (name "PB2" (effects (font (size 1.016 1.016))))
  2801. (number "48" (effects (font (size 1.016 1.016))))
  2802. )
  2803. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  2804. (name "PB10" (effects (font (size 1.016 1.016))))
  2805. (number "69" (effects (font (size 1.016 1.016))))
  2806. )
  2807. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  2808. (name "PC13" (effects (font (size 1.016 1.016))))
  2809. (number "7" (effects (font (size 1.016 1.016))))
  2810. )
  2811. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  2812. (name "PB11" (effects (font (size 1.016 1.016))))
  2813. (number "70" (effects (font (size 1.016 1.016))))
  2814. )
  2815. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  2816. (name "PB12" (effects (font (size 1.016 1.016))))
  2817. (number "73" (effects (font (size 1.016 1.016))))
  2818. )
  2819. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  2820. (name "PB13" (effects (font (size 1.016 1.016))))
  2821. (number "74" (effects (font (size 1.016 1.016))))
  2822. )
  2823. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  2824. (name "PB14" (effects (font (size 1.016 1.016))))
  2825. (number "77" (effects (font (size 1.016 1.016))))
  2826. )
  2827. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  2828. (name "PB15" (effects (font (size 1.016 1.016))))
  2829. (number "78" (effects (font (size 1.016 1.016))))
  2830. )
  2831. (pin bidirectional line (at 25.4 -63.5 180) (length 2.54)
  2832. (name "PD8" (effects (font (size 1.016 1.016))))
  2833. (number "79" (effects (font (size 1.016 1.016))))
  2834. )
  2835. (pin bidirectional line (at 25.4 -35.56 180) (length 2.54)
  2836. (name "PC14" (effects (font (size 1.016 1.016))))
  2837. (number "8" (effects (font (size 1.016 1.016))))
  2838. )
  2839. (pin bidirectional line (at 25.4 -66.04 180) (length 2.54)
  2840. (name "PD9" (effects (font (size 1.016 1.016))))
  2841. (number "80" (effects (font (size 1.016 1.016))))
  2842. )
  2843. (pin bidirectional line (at 25.4 -68.58 180) (length 2.54)
  2844. (name "PD10" (effects (font (size 1.016 1.016))))
  2845. (number "81" (effects (font (size 1.016 1.016))))
  2846. )
  2847. (pin bidirectional line (at 25.4 -71.12 180) (length 2.54)
  2848. (name "PD11" (effects (font (size 1.016 1.016))))
  2849. (number "82" (effects (font (size 1.016 1.016))))
  2850. )
  2851. (pin bidirectional line (at 25.4 -73.66 180) (length 2.54)
  2852. (name "PD12" (effects (font (size 1.016 1.016))))
  2853. (number "83" (effects (font (size 1.016 1.016))))
  2854. )
  2855. (pin bidirectional line (at 25.4 -76.2 180) (length 2.54)
  2856. (name "PD13" (effects (font (size 1.016 1.016))))
  2857. (number "84" (effects (font (size 1.016 1.016))))
  2858. )
  2859. (pin bidirectional line (at 25.4 -78.74 180) (length 2.54)
  2860. (name "PD14" (effects (font (size 1.016 1.016))))
  2861. (number "87" (effects (font (size 1.016 1.016))))
  2862. )
  2863. (pin bidirectional line (at 25.4 -81.28 180) (length 2.54)
  2864. (name "PD15" (effects (font (size 1.016 1.016))))
  2865. (number "88" (effects (font (size 1.016 1.016))))
  2866. )
  2867. (pin bidirectional line (at 25.4 -38.1 180) (length 2.54)
  2868. (name "PC15" (effects (font (size 1.016 1.016))))
  2869. (number "9" (effects (font (size 1.016 1.016))))
  2870. )
  2871. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  2872. (name "PC6" (effects (font (size 1.016 1.016))))
  2873. (number "96" (effects (font (size 1.016 1.016))))
  2874. )
  2875. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  2876. (name "PC7" (effects (font (size 1.016 1.016))))
  2877. (number "97" (effects (font (size 1.016 1.016))))
  2878. )
  2879. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  2880. (name "PC8" (effects (font (size 1.016 1.016))))
  2881. (number "98" (effects (font (size 1.016 1.016))))
  2882. )
  2883. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  2884. (name "PC9" (effects (font (size 1.016 1.016))))
  2885. (number "99" (effects (font (size 1.016 1.016))))
  2886. )
  2887. )
  2888. (symbol "STM32F730Z8T6_3_1"
  2889. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  2890. (stroke (width 0) (type default) (color 0 0 0 0))
  2891. (fill (type background))
  2892. )
  2893. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  2894. (name "PE2" (effects (font (size 1.016 1.016))))
  2895. (number "1" (effects (font (size 1.016 1.016))))
  2896. )
  2897. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  2898. (name "PF0" (effects (font (size 1.016 1.016))))
  2899. (number "10" (effects (font (size 1.016 1.016))))
  2900. )
  2901. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  2902. (name "PF1" (effects (font (size 1.016 1.016))))
  2903. (number "11" (effects (font (size 1.016 1.016))))
  2904. )
  2905. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  2906. (name "PF2" (effects (font (size 1.016 1.016))))
  2907. (number "12" (effects (font (size 1.016 1.016))))
  2908. )
  2909. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  2910. (name "PG9" (effects (font (size 1.016 1.016))))
  2911. (number "124" (effects (font (size 1.016 1.016))))
  2912. )
  2913. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  2914. (name "PG10" (effects (font (size 1.016 1.016))))
  2915. (number "125" (effects (font (size 1.016 1.016))))
  2916. )
  2917. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  2918. (name "PG11" (effects (font (size 1.016 1.016))))
  2919. (number "126" (effects (font (size 1.016 1.016))))
  2920. )
  2921. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  2922. (name "PG12" (effects (font (size 1.016 1.016))))
  2923. (number "127" (effects (font (size 1.016 1.016))))
  2924. )
  2925. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  2926. (name "PG13" (effects (font (size 1.016 1.016))))
  2927. (number "128" (effects (font (size 1.016 1.016))))
  2928. )
  2929. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  2930. (name "PG14" (effects (font (size 1.016 1.016))))
  2931. (number "129" (effects (font (size 1.016 1.016))))
  2932. )
  2933. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  2934. (name "PF3" (effects (font (size 1.016 1.016))))
  2935. (number "13" (effects (font (size 1.016 1.016))))
  2936. )
  2937. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  2938. (name "PG15" (effects (font (size 1.016 1.016))))
  2939. (number "132" (effects (font (size 1.016 1.016))))
  2940. )
  2941. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  2942. (name "PF4" (effects (font (size 1.016 1.016))))
  2943. (number "14" (effects (font (size 1.016 1.016))))
  2944. )
  2945. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  2946. (name "PE0" (effects (font (size 1.016 1.016))))
  2947. (number "141" (effects (font (size 1.016 1.016))))
  2948. )
  2949. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  2950. (name "PE1" (effects (font (size 1.016 1.016))))
  2951. (number "142" (effects (font (size 1.016 1.016))))
  2952. )
  2953. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  2954. (name "PF5" (effects (font (size 1.016 1.016))))
  2955. (number "15" (effects (font (size 1.016 1.016))))
  2956. )
  2957. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  2958. (name "PF6" (effects (font (size 1.016 1.016))))
  2959. (number "18" (effects (font (size 1.016 1.016))))
  2960. )
  2961. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  2962. (name "PF7" (effects (font (size 1.016 1.016))))
  2963. (number "19" (effects (font (size 1.016 1.016))))
  2964. )
  2965. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  2966. (name "PE3" (effects (font (size 1.016 1.016))))
  2967. (number "2" (effects (font (size 1.016 1.016))))
  2968. )
  2969. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  2970. (name "PF8" (effects (font (size 1.016 1.016))))
  2971. (number "20" (effects (font (size 1.016 1.016))))
  2972. )
  2973. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  2974. (name "PF9" (effects (font (size 1.016 1.016))))
  2975. (number "21" (effects (font (size 1.016 1.016))))
  2976. )
  2977. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  2978. (name "PF10" (effects (font (size 1.016 1.016))))
  2979. (number "22" (effects (font (size 1.016 1.016))))
  2980. )
  2981. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  2982. (name "PH0" (effects (font (size 1.016 1.016))))
  2983. (number "23" (effects (font (size 1.016 1.016))))
  2984. )
  2985. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  2986. (name "PH1" (effects (font (size 1.016 1.016))))
  2987. (number "24" (effects (font (size 1.016 1.016))))
  2988. )
  2989. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  2990. (name "PE4" (effects (font (size 1.016 1.016))))
  2991. (number "3" (effects (font (size 1.016 1.016))))
  2992. )
  2993. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  2994. (name "PE5" (effects (font (size 1.016 1.016))))
  2995. (number "4" (effects (font (size 1.016 1.016))))
  2996. )
  2997. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  2998. (name "PF11" (effects (font (size 1.016 1.016))))
  2999. (number "49" (effects (font (size 1.016 1.016))))
  3000. )
  3001. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  3002. (name "PE6" (effects (font (size 1.016 1.016))))
  3003. (number "5" (effects (font (size 1.016 1.016))))
  3004. )
  3005. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  3006. (name "PF12" (effects (font (size 1.016 1.016))))
  3007. (number "50" (effects (font (size 1.016 1.016))))
  3008. )
  3009. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  3010. (name "PF13" (effects (font (size 1.016 1.016))))
  3011. (number "53" (effects (font (size 1.016 1.016))))
  3012. )
  3013. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  3014. (name "PF14" (effects (font (size 1.016 1.016))))
  3015. (number "54" (effects (font (size 1.016 1.016))))
  3016. )
  3017. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  3018. (name "PF15" (effects (font (size 1.016 1.016))))
  3019. (number "55" (effects (font (size 1.016 1.016))))
  3020. )
  3021. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  3022. (name "PG0" (effects (font (size 1.016 1.016))))
  3023. (number "56" (effects (font (size 1.016 1.016))))
  3024. )
  3025. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  3026. (name "PG1" (effects (font (size 1.016 1.016))))
  3027. (number "57" (effects (font (size 1.016 1.016))))
  3028. )
  3029. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  3030. (name "PE7" (effects (font (size 1.016 1.016))))
  3031. (number "58" (effects (font (size 1.016 1.016))))
  3032. )
  3033. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  3034. (name "PE8" (effects (font (size 1.016 1.016))))
  3035. (number "59" (effects (font (size 1.016 1.016))))
  3036. )
  3037. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  3038. (name "PE9" (effects (font (size 1.016 1.016))))
  3039. (number "60" (effects (font (size 1.016 1.016))))
  3040. )
  3041. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  3042. (name "PE10" (effects (font (size 1.016 1.016))))
  3043. (number "63" (effects (font (size 1.016 1.016))))
  3044. )
  3045. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  3046. (name "PE11" (effects (font (size 1.016 1.016))))
  3047. (number "64" (effects (font (size 1.016 1.016))))
  3048. )
  3049. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  3050. (name "PE12" (effects (font (size 1.016 1.016))))
  3051. (number "65" (effects (font (size 1.016 1.016))))
  3052. )
  3053. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  3054. (name "PE13" (effects (font (size 1.016 1.016))))
  3055. (number "66" (effects (font (size 1.016 1.016))))
  3056. )
  3057. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  3058. (name "PE14" (effects (font (size 1.016 1.016))))
  3059. (number "67" (effects (font (size 1.016 1.016))))
  3060. )
  3061. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  3062. (name "PE15" (effects (font (size 1.016 1.016))))
  3063. (number "68" (effects (font (size 1.016 1.016))))
  3064. )
  3065. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  3066. (name "PG2" (effects (font (size 1.016 1.016))))
  3067. (number "89" (effects (font (size 1.016 1.016))))
  3068. )
  3069. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  3070. (name "PG3" (effects (font (size 1.016 1.016))))
  3071. (number "90" (effects (font (size 1.016 1.016))))
  3072. )
  3073. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  3074. (name "PG4" (effects (font (size 1.016 1.016))))
  3075. (number "91" (effects (font (size 1.016 1.016))))
  3076. )
  3077. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  3078. (name "PG5" (effects (font (size 1.016 1.016))))
  3079. (number "92" (effects (font (size 1.016 1.016))))
  3080. )
  3081. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  3082. (name "PG8" (effects (font (size 1.016 1.016))))
  3083. (number "93" (effects (font (size 1.016 1.016))))
  3084. )
  3085. )
  3086. )
  3087. )
  3088. (junction (at 158.75 95.25) (diameter 0) (color 0 0 0 0)
  3089. (uuid 01f82238-6335-48fe-8b0a-6853e227345a)
  3090. )
  3091. (junction (at 111.76 68.58) (diameter 0) (color 0 0 0 0)
  3092. (uuid 068d7a7a-0f25-4de5-9cb5-2349a9191b50)
  3093. )
  3094. (junction (at 111.76 104.14) (diameter 0) (color 0 0 0 0)
  3095. (uuid 0d6967d1-12be-4710-aef1-65627c2c9e8a)
  3096. )
  3097. (junction (at 158.75 77.47) (diameter 0) (color 0 0 0 0)
  3098. (uuid 0fc5db66-6188-4c1f-bb14-0868bef113eb)
  3099. )
  3100. (junction (at 158.75 72.39) (diameter 0) (color 0 0 0 0)
  3101. (uuid 10e52e95-44f3-4059-a86d-dcda603e0623)
  3102. )
  3103. (junction (at 111.76 58.42) (diameter 0) (color 0 0 0 0)
  3104. (uuid 1187e9bb-7692-4dd1-9945-e39ef9e5ce5b)
  3105. )
  3106. (junction (at 158.75 92.71) (diameter 0) (color 0 0 0 0)
  3107. (uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919)
  3108. )
  3109. (junction (at 111.76 53.34) (diameter 0) (color 0 0 0 0)
  3110. (uuid 14bfaf9f-b822-4cbc-aa30-b927236f307a)
  3111. )
  3112. (junction (at 158.75 90.17) (diameter 0) (color 0 0 0 0)
  3113. (uuid 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa)
  3114. )
  3115. (junction (at 158.75 82.55) (diameter 0) (color 0 0 0 0)
  3116. (uuid 20caf6d2-76a7-497e-ac56-f6d31eb9027b)
  3117. )
  3118. (junction (at 274.32 38.1) (diameter 0) (color 0 0 0 0)
  3119. (uuid 24adc223-60f0-4497-98a3-d664c5a13280)
  3120. )
  3121. (junction (at 158.75 69.85) (diameter 0) (color 0 0 0 0)
  3122. (uuid 252f1275-081d-4d77-8bd5-3b9e6916ef42)
  3123. )
  3124. (junction (at 111.76 86.36) (diameter 0) (color 0 0 0 0)
  3125. (uuid 2c99bd06-59a6-4b07-a512-6528fd43f4dc)
  3126. )
  3127. (junction (at 111.76 83.82) (diameter 0) (color 0 0 0 0)
  3128. (uuid 35b2233e-2f59-44bf-93b3-2716d5b5b514)
  3129. )
  3130. (junction (at 111.76 78.74) (diameter 0) (color 0 0 0 0)
  3131. (uuid 3857167d-f8fc-4da8-b232-a84de78f65eb)
  3132. )
  3133. (junction (at 158.75 74.93) (diameter 0) (color 0 0 0 0)
  3134. (uuid 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6)
  3135. )
  3136. (junction (at 274.32 92.71) (diameter 0) (color 0 0 0 0)
  3137. (uuid 44b926bf-8bdd-4191-846d-2dfabab2cecb)
  3138. )
  3139. (junction (at 274.32 68.58) (diameter 0) (color 0 0 0 0)
  3140. (uuid 4bbde53d-6894-4e18-9480-84a6a26d5f6b)
  3141. )
  3142. (junction (at 107.95 36.83) (diameter 0) (color 0 0 0 0)
  3143. (uuid 542d1bcf-de02-4d57-bbbe-dd6f210c8c13)
  3144. )
  3145. (junction (at 88.9 53.34) (diameter 0) (color 0 0 0 0)
  3146. (uuid 56ee0ed0-293b-48bb-9d64-787fea15f4f0)
  3147. )
  3148. (junction (at 111.76 50.8) (diameter 0) (color 0 0 0 0)
  3149. (uuid 5c0b1897-8155-4679-9116-805919f75f96)
  3150. )
  3151. (junction (at 274.32 107.95) (diameter 0) (color 0 0 0 0)
  3152. (uuid 5eb16f0d-ef1e-4549-97a1-19cd06ad7236)
  3153. )
  3154. (junction (at 158.75 85.09) (diameter 0) (color 0 0 0 0)
  3155. (uuid 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2)
  3156. )
  3157. (junction (at 111.76 106.68) (diameter 0) (color 0 0 0 0)
  3158. (uuid 6621a5a6-aa7a-4de2-9d29-1b200c13ada9)
  3159. )
  3160. (junction (at 111.76 88.9) (diameter 0) (color 0 0 0 0)
  3161. (uuid 71e2c442-6854-420c-af35-dcfcf83456aa)
  3162. )
  3163. (junction (at 274.32 58.42) (diameter 0) (color 0 0 0 0)
  3164. (uuid 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28)
  3165. )
  3166. (junction (at 111.76 76.2) (diameter 0) (color 0 0 0 0)
  3167. (uuid 7e59628a-e341-44cc-bf0f-f1b798a31f1a)
  3168. )
  3169. (junction (at 111.76 101.6) (diameter 0) (color 0 0 0 0)
  3170. (uuid 7f8cd204-ec07-4f76-9072-92e7ccb38dd1)
  3171. )
  3172. (junction (at 111.76 93.98) (diameter 0) (color 0 0 0 0)
  3173. (uuid 86d01cdf-5357-44e1-88d9-97c064cddc9b)
  3174. )
  3175. (junction (at 111.76 71.12) (diameter 0) (color 0 0 0 0)
  3176. (uuid 8dbd51b4-44a2-4ec8-88cf-49079c3aa71e)
  3177. )
  3178. (junction (at 158.75 100.33) (diameter 0) (color 0 0 0 0)
  3179. (uuid 8efee08b-b92e-4ba6-8722-c058e18114fe)
  3180. )
  3181. (junction (at 274.32 73.66) (diameter 0) (color 0 0 0 0)
  3182. (uuid 9112ddd5-10d5-48b8-954f-f1d5adcacbd9)
  3183. )
  3184. (junction (at 274.32 43.18) (diameter 0) (color 0 0 0 0)
  3185. (uuid 929a9b03-e99e-4b88-8e16-759f8c6b59a5)
  3186. )
  3187. (junction (at 111.76 91.44) (diameter 0) (color 0 0 0 0)
  3188. (uuid 93d4a801-226a-48d7-8947-f1bfb7b16554)
  3189. )
  3190. (junction (at 111.76 81.28) (diameter 0) (color 0 0 0 0)
  3191. (uuid 964e4e90-e12f-441c-9d6e-816439c420a1)
  3192. )
  3193. (junction (at 274.32 33.02) (diameter 0) (color 0 0 0 0)
  3194. (uuid 98966de3-2364-43d8-a2e0-b03bb9487b03)
  3195. )
  3196. (junction (at 158.75 67.31) (diameter 0) (color 0 0 0 0)
  3197. (uuid 98fe66f3-ec8b-4515-ae34-617f2124a7ec)
  3198. )
  3199. (junction (at 111.76 60.96) (diameter 0) (color 0 0 0 0)
  3200. (uuid a91cedf1-2089-4c44-9b06-471821937b05)
  3201. )
  3202. (junction (at 274.32 53.34) (diameter 0) (color 0 0 0 0)
  3203. (uuid aadc3df5-0e2d-4f3d-b72e-6f184da74c89)
  3204. )
  3205. (junction (at 111.76 48.26) (diameter 0) (color 0 0 0 0)
  3206. (uuid adc65b09-91c2-4457-8ffe-d57980cf8d73)
  3207. )
  3208. (junction (at 274.32 63.5) (diameter 0) (color 0 0 0 0)
  3209. (uuid af76ce95-feca-41fb-bf31-edaa26d6766a)
  3210. )
  3211. (junction (at 182.88 139.7) (diameter 0) (color 0 0 0 0)
  3212. (uuid afacc12f-b097-4001-b889-9e6781913725)
  3213. )
  3214. (junction (at 143.51 105.41) (diameter 0) (color 0 0 0 0)
  3215. (uuid b854a395-bfc6-4140-9640-75d4f9296771)
  3216. )
  3217. (junction (at 111.76 55.88) (diameter 0) (color 0 0 0 0)
  3218. (uuid c1f5a21c-f5c2-44b0-9b58-90bde58c0d60)
  3219. )
  3220. (junction (at 274.32 102.87) (diameter 0) (color 0 0 0 0)
  3221. (uuid c3a69550-c4fa-45d1-9aba-0bba47699cca)
  3222. )
  3223. (junction (at 274.32 78.74) (diameter 0) (color 0 0 0 0)
  3224. (uuid ca9b74ce-0dee-401c-9544-f599f4cf538d)
  3225. )
  3226. (junction (at 111.76 99.06) (diameter 0) (color 0 0 0 0)
  3227. (uuid cb63a9d8-a84d-43a5-8ff1-d18b1b48c54a)
  3228. )
  3229. (junction (at 274.32 27.94) (diameter 0) (color 0 0 0 0)
  3230. (uuid da546d77-4b03-4562-8fc6-837fd68e7691)
  3231. )
  3232. (junction (at 111.76 96.52) (diameter 0) (color 0 0 0 0)
  3233. (uuid e30dfecd-d78a-4507-91d6-d47619648416)
  3234. )
  3235. (junction (at 158.75 97.79) (diameter 0) (color 0 0 0 0)
  3236. (uuid e6d68f56-4a40-4849-b8d1-13d5ca292900)
  3237. )
  3238. (junction (at 158.75 80.01) (diameter 0) (color 0 0 0 0)
  3239. (uuid f6983918-fe05-46ea-b355-bc522ec53440)
  3240. )
  3241. (junction (at 274.32 97.79) (diameter 0) (color 0 0 0 0)
  3242. (uuid f7070c76-b83b-43a9-a243-491723819616)
  3243. )
  3244. (junction (at 111.76 73.66) (diameter 0) (color 0 0 0 0)
  3245. (uuid f70a4a9d-e097-4502-83aa-1f63e074f06b)
  3246. )
  3247. (junction (at 111.76 66.04) (diameter 0) (color 0 0 0 0)
  3248. (uuid f82dfe8f-ba55-4ab9-a234-6aed39cd6ca4)
  3249. )
  3250. (junction (at 111.76 63.5) (diameter 0) (color 0 0 0 0)
  3251. (uuid f91c051b-372e-45a5-ac05-790df945f858)
  3252. )
  3253. (junction (at 274.32 48.26) (diameter 0) (color 0 0 0 0)
  3254. (uuid fc2e9f96-3bed-4896-b995-f56e799f1c77)
  3255. )
  3256. (junction (at 158.75 87.63) (diameter 0) (color 0 0 0 0)
  3257. (uuid fc4ad874-c922-4070-89f9-7262080469d8)
  3258. )
  3259. (no_connect (at 54.61 99.06) (uuid 00891494-c03f-4b3e-809a-c84eb0c5ff0a))
  3260. (no_connect (at 54.61 104.14) (uuid 024b81ed-7ca3-4557-b9fa-075644de96f7))
  3261. (no_connect (at 31.75 116.84) (uuid 033fb47a-7330-48ce-ac5a-9fe1cb459eaf))
  3262. (no_connect (at 81.28 139.7) (uuid 08714b46-29ca-4521-9566-29e040fc72cc))
  3263. (no_connect (at 104.14 88.9) (uuid 1457e8f3-2460-440d-99d3-5b40eac43589))
  3264. (no_connect (at 31.75 106.68) (uuid 17e5ed96-cc0f-4a4b-a700-6d7ef9acd7bc))
  3265. (no_connect (at 54.61 91.44) (uuid 1e37fe91-3fc4-40b1-91c4-6c4ee1d6e125))
  3266. (no_connect (at 54.61 147.32) (uuid 26eae7d0-939e-4b64-91c1-bf55949d2daf))
  3267. (no_connect (at 81.28 81.28) (uuid 27007603-cd98-41a8-a7be-8db77e3ec570))
  3268. (no_connect (at 218.44 158.75) (uuid 276dd34e-fc62-4ec0-a853-7be08f169b56))
  3269. (no_connect (at 31.75 91.44) (uuid 2d870741-1f5a-4052-a22e-27571d815352))
  3270. (no_connect (at 81.28 86.36) (uuid 2da23a18-3300-4252-b484-249181d69530))
  3271. (no_connect (at 104.14 86.36) (uuid 300c371e-700b-496f-93f0-81a059d70460))
  3272. (no_connect (at 81.28 127) (uuid 351e7c1c-f640-46bf-817e-0e5f388fa690))
  3273. (no_connect (at 81.28 149.86) (uuid 36eb8b48-9fc4-4e61-80e9-937649cf4782))
  3274. (no_connect (at 251.46 148.59) (uuid 37728c8e-efcc-462c-a749-47b6bfcbaf37))
  3275. (no_connect (at 104.14 109.22) (uuid 3f893e9a-6fe6-4a4b-8258-268ba807dd4c))
  3276. (no_connect (at 81.28 91.44) (uuid 4247a140-bbc6-42ed-9f12-5207475a1883))
  3277. (no_connect (at 81.28 152.4) (uuid 42fbbe90-8164-4a79-b8b2-fd21b7d5f65c))
  3278. (no_connect (at 31.75 132.08) (uuid 44f11401-c761-4962-89ab-032461972a58))
  3279. (no_connect (at 31.75 142.24) (uuid 491aead6-9c4e-4fe5-aabe-d851483116da))
  3280. (no_connect (at 81.28 124.46) (uuid 4cd0bd9f-817f-4e73-8746-dcc22ecd24ed))
  3281. (no_connect (at 54.61 106.68) (uuid 54a777cf-b430-40e0-80a8-8b4acb62f375))
  3282. (no_connect (at 81.28 104.14) (uuid 562e6b05-e9e1-41b7-bf27-4b3ad6810233))
  3283. (no_connect (at 54.61 129.54) (uuid 5b9a50c7-ecff-4a29-9d0e-23fb747ba498))
  3284. (no_connect (at 81.28 144.78) (uuid 643273c3-43c9-4ac4-86d8-c6a8eb457c15))
  3285. (no_connect (at 104.14 106.68) (uuid 65914d90-2ecd-4afd-9dbb-4ff27ca3c0fa))
  3286. (no_connect (at 104.14 78.74) (uuid 6ca02c22-abf9-4e6c-b9b7-6c93ab5b146f))
  3287. (no_connect (at 54.61 96.52) (uuid 728bfe2b-ac1b-4f98-b4e8-b8663c1887da))
  3288. (no_connect (at 54.61 93.98) (uuid 732d4189-9cf0-4564-bc31-49f2ca254fbb))
  3289. (no_connect (at 54.61 160.02) (uuid 7bc95512-6329-4c23-b758-73f635511d06))
  3290. (no_connect (at 81.28 96.52) (uuid 7e0a823a-2958-48c8-98d9-efdb7150bb81))
  3291. (no_connect (at 31.75 99.06) (uuid 826fb3e4-1056-4f5f-956f-254f6941d336))
  3292. (no_connect (at 104.14 83.82) (uuid 868a3433-d791-484e-9bb1-d9be133b4a21))
  3293. (no_connect (at 81.28 157.48) (uuid 89315d23-03b7-46b1-81ee-6276bde90a82))
  3294. (no_connect (at 81.28 137.16) (uuid 8a6dc8e4-8ddd-4bf1-b1ca-0495dd8ae127))
  3295. (no_connect (at 54.61 152.4) (uuid 8c3e2ea9-ca92-4843-9074-44c21d854982))
  3296. (no_connect (at 54.61 142.24) (uuid 8f790adc-8b38-4aac-8720-2e2b0dc659aa))
  3297. (no_connect (at 132.715 121.92) (uuid 93af1374-af56-4fc8-af3f-6c16d61a0b21))
  3298. (no_connect (at 81.28 93.98) (uuid 93e32358-1bdd-4e24-8b79-9054a0552b8a))
  3299. (no_connect (at 81.28 134.62) (uuid 94300228-8a6b-43b4-8bd6-fde7b11076c8))
  3300. (no_connect (at 104.14 111.76) (uuid 970b5190-6039-42f3-9c9c-64c50ef33fc2))
  3301. (no_connect (at 81.28 101.6) (uuid 98337e12-9033-49eb-89cd-cc1afedfac6e))
  3302. (no_connect (at 104.14 91.44) (uuid 994ec659-18e4-41e0-b6f4-15a99d6eabe3))
  3303. (no_connect (at 31.75 109.22) (uuid 9bf407cf-f06a-48ac-8bea-4b5cfadd1384))
  3304. (no_connect (at 128.27 53.34) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232ac))
  3305. (no_connect (at 128.27 55.88) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232ad))
  3306. (no_connect (at 128.27 71.12) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232ae))
  3307. (no_connect (at 128.27 48.26) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232af))
  3308. (no_connect (at 128.27 50.8) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232b0))
  3309. (no_connect (at 128.27 106.68) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232b1))
  3310. (no_connect (at 128.27 104.14) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232b2))
  3311. (no_connect (at 128.27 83.82) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232b3))
  3312. (no_connect (at 128.27 81.28) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232b4))
  3313. (no_connect (at 128.27 73.66) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232b5))
  3314. (no_connect (at 54.61 149.86) (uuid a7128e49-87e5-4854-ba63-ff1d53065189))
  3315. (no_connect (at 81.28 147.32) (uuid ab5a8b90-558e-42dc-9b97-c893fb5a2b10))
  3316. (no_connect (at 54.61 109.22) (uuid abb7db91-c8d0-49b9-ba9c-db0b048a9efe))
  3317. (no_connect (at 54.61 144.78) (uuid ac72df19-9d81-40b9-913f-ca2d4db7827b))
  3318. (no_connect (at 54.61 121.92) (uuid ae3b158c-9426-4780-9122-e8d1603ed7e1))
  3319. (no_connect (at 104.14 99.06) (uuid ae68231e-4175-4e26-98a5-5fcd909d496b))
  3320. (no_connect (at 81.28 132.08) (uuid b0e5a25e-ab68-45e1-b20b-c2a413556c18))
  3321. (no_connect (at 31.75 88.9) (uuid b3f21f3f-128c-4e88-bcd2-38f966b77321))
  3322. (no_connect (at 54.61 154.94) (uuid b5680de7-ae05-4ffb-b73d-7b0f27073ab6))
  3323. (no_connect (at 81.28 160.02) (uuid b8406398-c88b-436a-9dd4-9aaaf6c5a488))
  3324. (no_connect (at 81.28 83.82) (uuid bb55aca0-2551-4f41-b493-535b0a8afccc))
  3325. (no_connect (at 104.14 124.46) (uuid be021e70-1a5b-4fc4-aa0c-41b42db09350))
  3326. (no_connect (at 54.61 157.48) (uuid be98f734-3bc9-4d9c-97e5-20415c91c5d7))
  3327. (no_connect (at 81.28 154.94) (uuid c44eb740-e633-485c-b41b-878872c1f69d))
  3328. (no_connect (at 104.14 81.28) (uuid c75b0135-9e9d-4628-9762-267358c3bb33))
  3329. (no_connect (at 104.14 93.98) (uuid c9f403fb-ed4d-4b33-adac-b0ef7f0d1d69))
  3330. (no_connect (at 104.14 104.14) (uuid cb586b87-68d3-4355-b17f-2e06d5bf0e1d))
  3331. (no_connect (at 31.75 144.78) (uuid cc4a2a56-97a6-492d-bc87-2abcaa1e59f5))
  3332. (no_connect (at 104.14 101.6) (uuid cd1b4d44-9354-45f7-a49e-7e6ba6548bfd))
  3333. (no_connect (at 81.28 142.24) (uuid d006523f-5372-4136-95eb-0454648c416c))
  3334. (no_connect (at 104.14 96.52) (uuid d3741fbd-9f9b-42c7-b81f-2926ebc3b2ca))
  3335. (no_connect (at 54.61 101.6) (uuid d47d1af6-c1eb-43a3-bb4e-f85f5c891f22))
  3336. (no_connect (at 31.75 129.54) (uuid e1a096b2-4e3b-4c20-a010-5831605cd725))
  3337. (no_connect (at 81.28 129.54) (uuid e4dc41c5-7dc7-4686-9bd0-3571dfbbd23a))
  3338. (no_connect (at 81.28 121.92) (uuid ede20bd1-a6ee-466f-a29c-b8d337356dba))
  3339. (no_connect (at 81.28 78.74) (uuid eec7dc80-1e4e-4381-a5d0-5cc426ef5a55))
  3340. (no_connect (at 31.75 134.62) (uuid f370fbc7-327f-4578-a64e-261caa1f96b9))
  3341. (no_connect (at 81.28 99.06) (uuid f3b3c682-3311-4e76-90db-0e5373f40533))
  3342. (no_connect (at 54.61 78.74) (uuid f78abf3d-5695-4b76-b33f-d959d7b688e7))
  3343. (no_connect (at 81.28 88.9) (uuid faa958cd-c104-4993-9160-c571d81aa390))
  3344. (wire (pts (xy 30.48 101.6) (xy 31.75 101.6))
  3345. (stroke (width 0) (type default) (color 0 0 0 0))
  3346. (uuid 000b46d6-b833-4804-8f56-56d539f76d09)
  3347. )
  3348. (wire (pts (xy 111.76 66.04) (xy 111.76 68.58))
  3349. (stroke (width 0) (type default) (color 0 0 0 0))
  3350. (uuid 01dc798b-4c95-4d40-80b7-aa972004ee44)
  3351. )
  3352. (wire (pts (xy 129.54 170.18) (xy 132.08 170.18))
  3353. (stroke (width 0) (type default) (color 0 0 0 0))
  3354. (uuid 03e48a7d-cbfe-454a-bd5a-26805d2a84ce)
  3355. )
  3356. (wire (pts (xy 128.27 78.74) (xy 130.81 78.74))
  3357. (stroke (width 0) (type default) (color 0 0 0 0))
  3358. (uuid 042b8bea-9219-4f6a-89b3-599bbdfa8b93)
  3359. )
  3360. (wire (pts (xy 177.8 143.51) (xy 182.88 143.51))
  3361. (stroke (width 0) (type default) (color 0 0 0 0))
  3362. (uuid 04657fbf-e375-4129-bf29-87f895ae9e9c)
  3363. )
  3364. (wire (pts (xy 111.76 71.12) (xy 115.57 71.12))
  3365. (stroke (width 0) (type default) (color 0 0 0 0))
  3366. (uuid 04d7fd83-a6aa-4987-9e20-3d50c265b831)
  3367. )
  3368. (wire (pts (xy 242.57 128.27) (xy 248.92 128.27))
  3369. (stroke (width 0) (type default) (color 0 0 0 0))
  3370. (uuid 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
  3371. )
  3372. (wire (pts (xy 111.76 48.26) (xy 115.57 48.26))
  3373. (stroke (width 0) (type default) (color 0 0 0 0))
  3374. (uuid 05d6ed65-9b0b-47fc-9d52-3f81dfc32551)
  3375. )
  3376. (wire (pts (xy 128.27 88.9) (xy 130.81 88.9))
  3377. (stroke (width 0) (type default) (color 0 0 0 0))
  3378. (uuid 05e3b151-dc12-4701-912e-3bf8070597d8)
  3379. )
  3380. (wire (pts (xy 175.26 100.33) (xy 189.23 100.33))
  3381. (stroke (width 0) (type default) (color 0 0 0 0))
  3382. (uuid 06665bf8-cef1-4e75-8d5b-1537b3c1b090)
  3383. )
  3384. (wire (pts (xy 274.32 83.82) (xy 274.32 78.74))
  3385. (stroke (width 0) (type default) (color 0 0 0 0))
  3386. (uuid 099473f1-6598-46ff-a50f-4c520832170d)
  3387. )
  3388. (wire (pts (xy 128.27 91.44) (xy 130.81 91.44))
  3389. (stroke (width 0) (type default) (color 0 0 0 0))
  3390. (uuid 0a1f756a-03ad-48d1-a3cc-07b1e91bf6b5)
  3391. )
  3392. (wire (pts (xy 21.59 124.46) (xy 31.75 124.46))
  3393. (stroke (width 0) (type default) (color 0 0 0 0))
  3394. (uuid 0c5dddf1-38df-43d2-b49c-e7b691dab0ab)
  3395. )
  3396. (wire (pts (xy 158.75 67.31) (xy 158.75 69.85))
  3397. (stroke (width 0) (type default) (color 0 0 0 0))
  3398. (uuid 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7)
  3399. )
  3400. (wire (pts (xy 162.56 100.33) (xy 158.75 100.33))
  3401. (stroke (width 0) (type default) (color 0 0 0 0))
  3402. (uuid 0e249018-17e7-42b3-ae5d-5ebf3ae299ae)
  3403. )
  3404. (wire (pts (xy 29.972 137.16) (xy 31.75 137.16))
  3405. (stroke (width 0) (type default) (color 0 0 0 0))
  3406. (uuid 0e7ad38a-9a9f-4f7f-85da-d397ca1ffbd3)
  3407. )
  3408. (wire (pts (xy 86.36 50.8) (xy 88.9 50.8))
  3409. (stroke (width 0) (type default) (color 0 0 0 0))
  3410. (uuid 0ec8848f-4be5-421c-bcfc-a66d819b129d)
  3411. )
  3412. (wire (pts (xy 111.76 91.44) (xy 115.57 91.44))
  3413. (stroke (width 0) (type default) (color 0 0 0 0))
  3414. (uuid 105d2701-5e63-4eb3-8241-5608caa465c8)
  3415. )
  3416. (wire (pts (xy 86.36 53.34) (xy 88.9 53.34))
  3417. (stroke (width 0) (type default) (color 0 0 0 0))
  3418. (uuid 114a2768-e1fd-4d16-9d75-a2b2dcf3668d)
  3419. )
  3420. (wire (pts (xy 281.94 156.21) (xy 281.94 151.13))
  3421. (stroke (width 0) (type default) (color 0 0 0 0))
  3422. (uuid 11c7c8d4-4c4b-4330-bb59-1eec2e98b255)
  3423. )
  3424. (wire (pts (xy 274.32 43.18) (xy 270.51 43.18))
  3425. (stroke (width 0) (type default) (color 0 0 0 0))
  3426. (uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a)
  3427. )
  3428. (wire (pts (xy 226.06 67.31) (xy 227.33 67.31))
  3429. (stroke (width 0) (type default) (color 0 0 0 0))
  3430. (uuid 14064e1b-d8db-4b96-9159-f0491d3e5f02)
  3431. )
  3432. (wire (pts (xy 162.56 80.01) (xy 158.75 80.01))
  3433. (stroke (width 0) (type default) (color 0 0 0 0))
  3434. (uuid 142dd724-2a9f-4eea-ab21-209b1bc7ec65)
  3435. )
  3436. (wire (pts (xy 158.75 80.01) (xy 158.75 77.47))
  3437. (stroke (width 0) (type default) (color 0 0 0 0))
  3438. (uuid 15a82541-58d8-45b5-99c5-fb52e017e3ea)
  3439. )
  3440. (wire (pts (xy 274.32 92.71) (xy 274.32 90.17))
  3441. (stroke (width 0) (type default) (color 0 0 0 0))
  3442. (uuid 1732b93f-cd0e-4ca4-a905-bb406354ca33)
  3443. )
  3444. (wire (pts (xy 274.32 107.95) (xy 274.32 102.87))
  3445. (stroke (width 0) (type default) (color 0 0 0 0))
  3446. (uuid 17cf1c88-8d51-4538-aa76-e35ac22d0ed0)
  3447. )
  3448. (wire (pts (xy 218.44 46.99) (xy 227.33 46.99))
  3449. (stroke (width 0) (type default) (color 0 0 0 0))
  3450. (uuid 17ed3508-fa2e-4593-a799-bfd39a6cc14d)
  3451. )
  3452. (wire (pts (xy 49.53 184.15) (xy 50.8 184.15))
  3453. (stroke (width 0) (type default) (color 0 0 0 0))
  3454. (uuid 18372a25-ed01-47c8-be92-161857f6e1d7)
  3455. )
  3456. (wire (pts (xy 31.75 127) (xy 21.59 127))
  3457. (stroke (width 0) (type default) (color 0 0 0 0))
  3458. (uuid 1855ca44-ab48-4b76-a210-97fc81d916c4)
  3459. )
  3460. (wire (pts (xy 270.51 83.82) (xy 274.32 83.82))
  3461. (stroke (width 0) (type default) (color 0 0 0 0))
  3462. (uuid 1876c30c-72b2-4a8d-9f32-bf8b213530b4)
  3463. )
  3464. (wire (pts (xy 24.13 190.5) (xy 26.67 190.5))
  3465. (stroke (width 0) (type default) (color 0 0 0 0))
  3466. (uuid 197737a3-f629-4847-a3bd-29bbed8e8513)
  3467. )
  3468. (wire (pts (xy 71.12 114.3) (xy 81.28 114.3))
  3469. (stroke (width 0) (type default) (color 0 0 0 0))
  3470. (uuid 1bf7d0f9-0dcf-4d7c-b58c-318e3dc42bc9)
  3471. )
  3472. (wire (pts (xy 242.57 97.79) (xy 248.92 97.79))
  3473. (stroke (width 0) (type default) (color 0 0 0 0))
  3474. (uuid 1c052668-6749-425a-9a77-35f046c8aa39)
  3475. )
  3476. (wire (pts (xy 129.54 170.18) (xy 129.54 172.72))
  3477. (stroke (width 0) (type default) (color 0 0 0 0))
  3478. (uuid 1c24771c-19d1-4407-9c2f-255b7ddf0492)
  3479. )
  3480. (wire (pts (xy 30.48 157.48) (xy 31.75 157.48))
  3481. (stroke (width 0) (type default) (color 0 0 0 0))
  3482. (uuid 1de61170-5337-44c5-ba28-bd477db4bff1)
  3483. )
  3484. (wire (pts (xy 49.53 191.77) (xy 50.8 191.77))
  3485. (stroke (width 0) (type default) (color 0 0 0 0))
  3486. (uuid 1e6339d5-f0ee-4a4b-9faf-4b2631e397d5)
  3487. )
  3488. (wire (pts (xy 111.76 101.6) (xy 111.76 104.14))
  3489. (stroke (width 0) (type default) (color 0 0 0 0))
  3490. (uuid 1f261883-4501-4c16-8f24-011b93c7b7c4)
  3491. )
  3492. (wire (pts (xy 111.76 60.96) (xy 111.76 63.5))
  3493. (stroke (width 0) (type default) (color 0 0 0 0))
  3494. (uuid 1f848839-e564-450f-a963-ebf13ca910f5)
  3495. )
  3496. (wire (pts (xy 30.48 111.76) (xy 31.75 111.76))
  3497. (stroke (width 0) (type default) (color 0 0 0 0))
  3498. (uuid 2102c637-9f11-48f1-aae6-b4139dc22be2)
  3499. )
  3500. (wire (pts (xy 54.61 134.62) (xy 56.515 134.62))
  3501. (stroke (width 0) (type default) (color 0 0 0 0))
  3502. (uuid 21768691-1e43-45ea-b868-82651819b936)
  3503. )
  3504. (wire (pts (xy 54.61 132.08) (xy 56.515 132.08))
  3505. (stroke (width 0) (type default) (color 0 0 0 0))
  3506. (uuid 22349afa-99b6-4268-ade5-32f12de232db)
  3507. )
  3508. (wire (pts (xy 144.78 170.18) (xy 147.32 170.18))
  3509. (stroke (width 0) (type default) (color 0 0 0 0))
  3510. (uuid 22b49795-d138-447a-8a67-2f87ad0d4bd4)
  3511. )
  3512. (wire (pts (xy 218.44 156.21) (xy 219.71 156.21))
  3513. (stroke (width 0) (type default) (color 0 0 0 0))
  3514. (uuid 22c1623e-dd8d-428b-b9ae-ebb3a532b396)
  3515. )
  3516. (wire (pts (xy 128.27 99.06) (xy 130.81 99.06))
  3517. (stroke (width 0) (type default) (color 0 0 0 0))
  3518. (uuid 2447f5f1-b3d5-43aa-959f-88436ebed06d)
  3519. )
  3520. (wire (pts (xy 88.9 50.8) (xy 88.9 53.34))
  3521. (stroke (width 0) (type default) (color 0 0 0 0))
  3522. (uuid 2572e34f-bfb2-4fa7-969f-a04e338d6e2f)
  3523. )
  3524. (wire (pts (xy 111.76 106.68) (xy 115.57 106.68))
  3525. (stroke (width 0) (type default) (color 0 0 0 0))
  3526. (uuid 26f6b829-e63c-496a-b791-5dd68c7ead9d)
  3527. )
  3528. (wire (pts (xy 30.48 114.3) (xy 31.75 114.3))
  3529. (stroke (width 0) (type default) (color 0 0 0 0))
  3530. (uuid 272c2a78-b5f5-4b61-aed3-ec69e0e92729)
  3531. )
  3532. (wire (pts (xy 274.32 38.1) (xy 274.32 43.18))
  3533. (stroke (width 0) (type default) (color 0 0 0 0))
  3534. (uuid 278a91dc-d57d-4a5c-a045-34b6bd84131f)
  3535. )
  3536. (wire (pts (xy 274.32 25.4) (xy 274.32 27.94))
  3537. (stroke (width 0) (type default) (color 0 0 0 0))
  3538. (uuid 29126f72-63f7-4275-8b12-6b96a71c6f17)
  3539. )
  3540. (wire (pts (xy 254 53.34) (xy 265.43 53.34))
  3541. (stroke (width 0) (type default) (color 0 0 0 0))
  3542. (uuid 291935ec-f8ff-41f0-8717-e68b8af7b8c1)
  3543. )
  3544. (wire (pts (xy 114.3 162.56) (xy 114.3 166.37))
  3545. (stroke (width 0) (type default) (color 0 0 0 0))
  3546. (uuid 291baaf6-406d-492c-8388-51e68532cfbf)
  3547. )
  3548. (wire (pts (xy 111.76 88.9) (xy 111.76 91.44))
  3549. (stroke (width 0) (type default) (color 0 0 0 0))
  3550. (uuid 2b5319a3-2b4f-4c5e-b61e-a7934593e487)
  3551. )
  3552. (wire (pts (xy 128.27 86.36) (xy 130.81 86.36))
  3553. (stroke (width 0) (type default) (color 0 0 0 0))
  3554. (uuid 2b8c6538-2116-4527-a026-b4925dd2ee57)
  3555. )
  3556. (wire (pts (xy 57.15 31.75) (xy 57.15 33.02))
  3557. (stroke (width 0) (type default) (color 0 0 0 0))
  3558. (uuid 2ba25c40-ea42-478e-9150-1d94fa1c8ae9)
  3559. )
  3560. (wire (pts (xy 274.32 27.94) (xy 274.32 33.02))
  3561. (stroke (width 0) (type default) (color 0 0 0 0))
  3562. (uuid 2ea8fa6f-efc3-40fe-bcf9-05bfa46ead4f)
  3563. )
  3564. (wire (pts (xy 270.51 92.71) (xy 274.32 92.71))
  3565. (stroke (width 0) (type default) (color 0 0 0 0))
  3566. (uuid 2f0570b6-86da-47a8-9e56-ce60c431c534)
  3567. )
  3568. (wire (pts (xy 162.56 87.63) (xy 158.75 87.63))
  3569. (stroke (width 0) (type default) (color 0 0 0 0))
  3570. (uuid 2f291a4b-4ecb-4692-9ad2-324f9784c0d4)
  3571. )
  3572. (wire (pts (xy 264.16 156.21) (xy 281.94 156.21))
  3573. (stroke (width 0) (type default) (color 0 0 0 0))
  3574. (uuid 300aa512-2f66-4c26-a530-50c091b3a099)
  3575. )
  3576. (wire (pts (xy 78.74 106.68) (xy 81.28 106.68))
  3577. (stroke (width 0) (type default) (color 0 0 0 0))
  3578. (uuid 3036ba32-a371-4e05-a934-abb44d31f530)
  3579. )
  3580. (wire (pts (xy 111.76 73.66) (xy 115.57 73.66))
  3581. (stroke (width 0) (type default) (color 0 0 0 0))
  3582. (uuid 3102a495-c747-4ebd-910d-ccca3f28177b)
  3583. )
  3584. (wire (pts (xy 158.75 90.17) (xy 158.75 87.63))
  3585. (stroke (width 0) (type default) (color 0 0 0 0))
  3586. (uuid 319639ae-c2c5-486d-93b1-d03bb1b64252)
  3587. )
  3588. (wire (pts (xy 111.76 86.36) (xy 111.76 88.9))
  3589. (stroke (width 0) (type default) (color 0 0 0 0))
  3590. (uuid 32cfb255-fdbf-4c67-9adf-72dba031ac4d)
  3591. )
  3592. (wire (pts (xy 49.53 181.61) (xy 50.8 181.61))
  3593. (stroke (width 0) (type default) (color 0 0 0 0))
  3594. (uuid 341ec5b3-c64a-4b70-8a9f-cdadc79f8893)
  3595. )
  3596. (wire (pts (xy 254 43.18) (xy 265.43 43.18))
  3597. (stroke (width 0) (type default) (color 0 0 0 0))
  3598. (uuid 35fb7c56-dc85-43f7-b954-81b8040a8500)
  3599. )
  3600. (wire (pts (xy 130.81 167.64) (xy 132.08 167.64))
  3601. (stroke (width 0) (type default) (color 0 0 0 0))
  3602. (uuid 3656bb3f-f8a4-4f3a-8e9a-ec6203c87a56)
  3603. )
  3604. (wire (pts (xy 111.76 101.6) (xy 115.57 101.6))
  3605. (stroke (width 0) (type default) (color 0 0 0 0))
  3606. (uuid 395f28d9-5d9e-4a88-b7ad-8a1df4610090)
  3607. )
  3608. (wire (pts (xy 241.3 151.13) (xy 251.46 151.13))
  3609. (stroke (width 0) (type default) (color 0 0 0 0))
  3610. (uuid 39845449-7a31-4262-86b1-e7af14a6659f)
  3611. )
  3612. (wire (pts (xy 158.75 67.31) (xy 162.56 67.31))
  3613. (stroke (width 0) (type default) (color 0 0 0 0))
  3614. (uuid 3a41dd27-ec14-44d5-b505-aad1d829f79a)
  3615. )
  3616. (wire (pts (xy 162.56 90.17) (xy 158.75 90.17))
  3617. (stroke (width 0) (type default) (color 0 0 0 0))
  3618. (uuid 3a70978e-dcc2-4620-a99c-514362812927)
  3619. )
  3620. (wire (pts (xy 54.61 83.82) (xy 66.04 83.82))
  3621. (stroke (width 0) (type default) (color 0 0 0 0))
  3622. (uuid 3b65c51e-c243-447e-bee9-832d94c1630e)
  3623. )
  3624. (wire (pts (xy 144.78 162.56) (xy 144.78 165.1))
  3625. (stroke (width 0) (type default) (color 0 0 0 0))
  3626. (uuid 3c3e06bd-c8bb-4ec8-84e0-f7f9437909b3)
  3627. )
  3628. (wire (pts (xy 100.33 36.195) (xy 107.95 36.195))
  3629. (stroke (width 0) (type default) (color 0 0 0 0))
  3630. (uuid 3d658213-87c1-4ec1-8d7a-e38d061627b3)
  3631. )
  3632. (wire (pts (xy 162.56 82.55) (xy 158.75 82.55))
  3633. (stroke (width 0) (type default) (color 0 0 0 0))
  3634. (uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653)
  3635. )
  3636. (wire (pts (xy 49.53 179.07) (xy 50.8 179.07))
  3637. (stroke (width 0) (type default) (color 0 0 0 0))
  3638. (uuid 3db24eb3-cf1d-4362-9d9c-83f79ae00e7a)
  3639. )
  3640. (wire (pts (xy 199.39 153.67) (xy 205.74 153.67))
  3641. (stroke (width 0) (type default) (color 0 0 0 0))
  3642. (uuid 3ec95abd-e81e-441d-9d27-b430f8003396)
  3643. )
  3644. (wire (pts (xy 129.54 165.1) (xy 132.08 165.1))
  3645. (stroke (width 0) (type default) (color 0 0 0 0))
  3646. (uuid 3f1ae028-5eb5-4638-9698-eea3446a90d1)
  3647. )
  3648. (wire (pts (xy 111.76 58.42) (xy 115.57 58.42))
  3649. (stroke (width 0) (type default) (color 0 0 0 0))
  3650. (uuid 3f329a8f-e359-4d98-956d-6a077a40e514)
  3651. )
  3652. (wire (pts (xy 175.26 85.09) (xy 176.53 85.09))
  3653. (stroke (width 0) (type default) (color 0 0 0 0))
  3654. (uuid 3f7513cb-6fe5-481f-8bc3-13eed2580912)
  3655. )
  3656. (wire (pts (xy 274.32 113.03) (xy 274.32 107.95))
  3657. (stroke (width 0) (type default) (color 0 0 0 0))
  3658. (uuid 3fa05934-8ad1-40a9-af5c-98ad298eb412)
  3659. )
  3660. (wire (pts (xy 21.59 96.52) (xy 31.75 96.52))
  3661. (stroke (width 0) (type default) (color 0 0 0 0))
  3662. (uuid 4160bbf7-ffff-4c5c-a647-5ee58ddecf06)
  3663. )
  3664. (wire (pts (xy 122.555 111.76) (xy 122.555 114.3))
  3665. (stroke (width 0) (type default) (color 0 0 0 0))
  3666. (uuid 41c18011-40db-4384-9ba4-c0158d0d9d6a)
  3667. )
  3668. (wire (pts (xy 158.75 185.42) (xy 161.29 185.42))
  3669. (stroke (width 0) (type default) (color 0 0 0 0))
  3670. (uuid 42b61d5b-39d6-462b-b2cc-57656078085f)
  3671. )
  3672. (wire (pts (xy 111.76 34.29) (xy 109.22 34.29))
  3673. (stroke (width 0) (type default) (color 0 0 0 0))
  3674. (uuid 42bd0f96-a831-406e-abb7-03ed1bbd785f)
  3675. )
  3676. (wire (pts (xy 88.9 53.34) (xy 88.9 57.15))
  3677. (stroke (width 0) (type default) (color 0 0 0 0))
  3678. (uuid 460a89a1-c9e5-44e6-806f-b581d43ece37)
  3679. )
  3680. (wire (pts (xy 274.32 33.02) (xy 274.32 38.1))
  3681. (stroke (width 0) (type default) (color 0 0 0 0))
  3682. (uuid 4641c87c-bffa-41fe-ae77-be3a97a6f797)
  3683. )
  3684. (wire (pts (xy 264.16 153.67) (xy 276.86 153.67))
  3685. (stroke (width 0) (type default) (color 0 0 0 0))
  3686. (uuid 46491a9d-8b3d-4c74-b09a-70c876f162e5)
  3687. )
  3688. (wire (pts (xy 156.21 165.1) (xy 158.75 165.1))
  3689. (stroke (width 0) (type default) (color 0 0 0 0))
  3690. (uuid 4888c330-f8fa-492d-aa6f-da06d2350187)
  3691. )
  3692. (wire (pts (xy 156.21 162.56) (xy 156.21 165.1))
  3693. (stroke (width 0) (type default) (color 0 0 0 0))
  3694. (uuid 48c34b19-0b1a-4994-ab08-825d4c2b7c6b)
  3695. )
  3696. (wire (pts (xy 111.76 73.66) (xy 111.76 76.2))
  3697. (stroke (width 0) (type default) (color 0 0 0 0))
  3698. (uuid 4905470f-e5d5-44e9-bdea-3395fa3a3921)
  3699. )
  3700. (wire (pts (xy 254 107.95) (xy 265.43 107.95))
  3701. (stroke (width 0) (type default) (color 0 0 0 0))
  3702. (uuid 49488c82-6277-4d05-a051-6a9df142c373)
  3703. )
  3704. (wire (pts (xy 254 58.42) (xy 265.43 58.42))
  3705. (stroke (width 0) (type default) (color 0 0 0 0))
  3706. (uuid 49a65079-57a9-46fc-8711-1d7f2cab8dbf)
  3707. )
  3708. (wire (pts (xy 30.48 160.02) (xy 31.75 160.02))
  3709. (stroke (width 0) (type default) (color 0 0 0 0))
  3710. (uuid 49b5f540-e128-4e08-bb09-f321f8e64056)
  3711. )
  3712. (wire (pts (xy 274.32 38.1) (xy 270.51 38.1))
  3713. (stroke (width 0) (type default) (color 0 0 0 0))
  3714. (uuid 4cc0e615-05a0-4f42-a208-4011ba8ef841)
  3715. )
  3716. (wire (pts (xy 111.76 55.88) (xy 111.76 58.42))
  3717. (stroke (width 0) (type default) (color 0 0 0 0))
  3718. (uuid 4cdd7089-c144-4631-a49d-c738e3706227)
  3719. )
  3720. (wire (pts (xy 274.32 58.42) (xy 274.32 53.34))
  3721. (stroke (width 0) (type default) (color 0 0 0 0))
  3722. (uuid 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5)
  3723. )
  3724. (wire (pts (xy 175.26 90.17) (xy 176.53 90.17))
  3725. (stroke (width 0) (type default) (color 0 0 0 0))
  3726. (uuid 4e563ce6-c7b9-4224-ace7-42cd7b117034)
  3727. )
  3728. (wire (pts (xy 254 38.1) (xy 265.43 38.1))
  3729. (stroke (width 0) (type default) (color 0 0 0 0))
  3730. (uuid 4e677390-a246-4ca0-954c-746e0870f88f)
  3731. )
  3732. (wire (pts (xy 182.88 129.54) (xy 182.88 130.81))
  3733. (stroke (width 0) (type default) (color 0 0 0 0))
  3734. (uuid 4fa74df1-ebd8-46ed-bf5b-d6c582baafde)
  3735. )
  3736. (wire (pts (xy 154.94 100.33) (xy 154.94 107.95))
  3737. (stroke (width 0) (type default) (color 0 0 0 0))
  3738. (uuid 52a8f1be-73ca-41a8-bc24-2320706b0ec1)
  3739. )
  3740. (wire (pts (xy 139.7 26.67) (xy 139.7 27.94))
  3741. (stroke (width 0) (type default) (color 0 0 0 0))
  3742. (uuid 53719fc4-141e-4c58-98cd-ab3bf9a4e1c0)
  3743. )
  3744. (wire (pts (xy 270.51 68.58) (xy 274.32 68.58))
  3745. (stroke (width 0) (type default) (color 0 0 0 0))
  3746. (uuid 54ed3ee1-891b-418e-ab9c-6a18747d7388)
  3747. )
  3748. (wire (pts (xy 31.75 152.4) (xy 21.59 152.4))
  3749. (stroke (width 0) (type default) (color 0 0 0 0))
  3750. (uuid 5576cd03-3bad-40c5-9316-1d286895d52a)
  3751. )
  3752. (wire (pts (xy 144.78 165.1) (xy 147.32 165.1))
  3753. (stroke (width 0) (type default) (color 0 0 0 0))
  3754. (uuid 559e1426-1fb6-47d1-a873-ab4aaa368ae6)
  3755. )
  3756. (wire (pts (xy 111.76 31.75) (xy 109.22 31.75))
  3757. (stroke (width 0) (type default) (color 0 0 0 0))
  3758. (uuid 57543893-39bf-4d83-b4e0-8d020b4a6d48)
  3759. )
  3760. (wire (pts (xy 274.32 97.79) (xy 274.32 92.71))
  3761. (stroke (width 0) (type default) (color 0 0 0 0))
  3762. (uuid 58126faf-01a4-4f91-8e8c-ca9e47b48048)
  3763. )
  3764. (wire (pts (xy 254 83.82) (xy 265.43 83.82))
  3765. (stroke (width 0) (type default) (color 0 0 0 0))
  3766. (uuid 58cc7831-f944-4d33-8c61-2fd5bebc61e0)
  3767. )
  3768. (wire (pts (xy 111.76 99.06) (xy 111.76 101.6))
  3769. (stroke (width 0) (type default) (color 0 0 0 0))
  3770. (uuid 5a498b94-152d-4c3c-b168-67379cce2165)
  3771. )
  3772. (wire (pts (xy 167.64 20.32) (xy 167.64 21.59))
  3773. (stroke (width 0) (type default) (color 0 0 0 0))
  3774. (uuid 5b70b09b-6762-4725-9d48-805300c0bdc8)
  3775. )
  3776. (wire (pts (xy 21.59 93.98) (xy 31.75 93.98))
  3777. (stroke (width 0) (type default) (color 0 0 0 0))
  3778. (uuid 5bab6a37-1fdf-4cf8-b571-44c962ed86e9)
  3779. )
  3780. (wire (pts (xy 175.26 80.01) (xy 176.53 80.01))
  3781. (stroke (width 0) (type default) (color 0 0 0 0))
  3782. (uuid 5c72c984-d4a8-4f48-9a7a-2aa9b6284609)
  3783. )
  3784. (wire (pts (xy 177.8 139.7) (xy 182.88 139.7))
  3785. (stroke (width 0) (type default) (color 0 0 0 0))
  3786. (uuid 5e34b255-874b-4b5f-a1f3-79e323d9278a)
  3787. )
  3788. (wire (pts (xy 111.76 76.2) (xy 111.76 78.74))
  3789. (stroke (width 0) (type default) (color 0 0 0 0))
  3790. (uuid 5f2e9c21-b36e-4432-b901-39c98c054570)
  3791. )
  3792. (wire (pts (xy 128.27 101.6) (xy 130.81 101.6))
  3793. (stroke (width 0) (type default) (color 0 0 0 0))
  3794. (uuid 5fe9a8c1-579e-4b33-a28f-2287de31bc8f)
  3795. )
  3796. (wire (pts (xy 204.47 128.27) (xy 207.01 128.27))
  3797. (stroke (width 0) (type default) (color 0 0 0 0))
  3798. (uuid 60a6b889-b680-4b8b-8f73-0633fe94c5ba)
  3799. )
  3800. (wire (pts (xy 111.76 86.36) (xy 115.57 86.36))
  3801. (stroke (width 0) (type default) (color 0 0 0 0))
  3802. (uuid 6123de74-e7fc-4738-8ff4-abd5233ea3f0)
  3803. )
  3804. (wire (pts (xy 175.26 82.55) (xy 176.53 82.55))
  3805. (stroke (width 0) (type default) (color 0 0 0 0))
  3806. (uuid 61447001-96f3-4ac4-a932-91f733b21544)
  3807. )
  3808. (wire (pts (xy 21.59 83.82) (xy 31.75 83.82))
  3809. (stroke (width 0) (type default) (color 0 0 0 0))
  3810. (uuid 6150c02b-beb5-4af1-951e-3666a285a6ea)
  3811. )
  3812. (wire (pts (xy 175.26 102.87) (xy 176.53 102.87))
  3813. (stroke (width 0) (type default) (color 0 0 0 0))
  3814. (uuid 620d0d18-5248-4410-bb06-dea084235707)
  3815. )
  3816. (wire (pts (xy 158.75 72.39) (xy 162.56 72.39))
  3817. (stroke (width 0) (type default) (color 0 0 0 0))
  3818. (uuid 62e8c4d4-266c-4e53-8981-1028251d724c)
  3819. )
  3820. (wire (pts (xy 274.32 48.26) (xy 270.51 48.26))
  3821. (stroke (width 0) (type default) (color 0 0 0 0))
  3822. (uuid 631c7be5-8dc2-4df4-ab73-737bb928e763)
  3823. )
  3824. (wire (pts (xy 143.51 102.87) (xy 143.51 105.41))
  3825. (stroke (width 0) (type default) (color 0 0 0 0))
  3826. (uuid 633292d3-80c5-4986-be82-ce926e9f09f4)
  3827. )
  3828. (wire (pts (xy 158.75 100.33) (xy 158.75 97.79))
  3829. (stroke (width 0) (type default) (color 0 0 0 0))
  3830. (uuid 63489ebf-0f52-43a6-a0ab-158b1a7d4988)
  3831. )
  3832. (wire (pts (xy 254 27.94) (xy 265.43 27.94))
  3833. (stroke (width 0) (type default) (color 0 0 0 0))
  3834. (uuid 637e9edf-ffed-49a2-8408-fa110c9a4c79)
  3835. )
  3836. (wire (pts (xy 226.06 77.47) (xy 227.33 77.47))
  3837. (stroke (width 0) (type default) (color 0 0 0 0))
  3838. (uuid 643a0e14-1c81-4883-9037-039c243acc5c)
  3839. )
  3840. (wire (pts (xy 111.76 50.8) (xy 115.57 50.8))
  3841. (stroke (width 0) (type default) (color 0 0 0 0))
  3842. (uuid 649fe687-776d-40a8-8956-cf56be8678e1)
  3843. )
  3844. (wire (pts (xy 236.22 153.67) (xy 251.46 153.67))
  3845. (stroke (width 0) (type default) (color 0 0 0 0))
  3846. (uuid 64d1d0fe-4fd6-4a55-8314-56a651e1ccab)
  3847. )
  3848. (wire (pts (xy 175.26 74.93) (xy 176.53 74.93))
  3849. (stroke (width 0) (type default) (color 0 0 0 0))
  3850. (uuid 663516d2-919a-4a92-bdfb-fab0b7a33e92)
  3851. )
  3852. (wire (pts (xy 175.26 97.79) (xy 189.23 97.79))
  3853. (stroke (width 0) (type default) (color 0 0 0 0))
  3854. (uuid 66ca01b3-51ff-4294-9b77-4492e98f6aec)
  3855. )
  3856. (wire (pts (xy 128.27 66.04) (xy 130.81 66.04))
  3857. (stroke (width 0) (type default) (color 0 0 0 0))
  3858. (uuid 6807b074-032b-4c51-b22d-e941de673402)
  3859. )
  3860. (wire (pts (xy 24.13 175.26) (xy 26.67 175.26))
  3861. (stroke (width 0) (type default) (color 0 0 0 0))
  3862. (uuid 68191023-0d18-4f99-a293-00db5ad9e7a0)
  3863. )
  3864. (wire (pts (xy 111.76 91.44) (xy 111.76 93.98))
  3865. (stroke (width 0) (type default) (color 0 0 0 0))
  3866. (uuid 6823c850-9a49-4624-92ab-0fa22f6fef1e)
  3867. )
  3868. (wire (pts (xy 128.27 58.42) (xy 130.81 58.42))
  3869. (stroke (width 0) (type default) (color 0 0 0 0))
  3870. (uuid 692165ae-3334-4d40-a34f-38277ee462be)
  3871. )
  3872. (wire (pts (xy 54.61 124.46) (xy 57.15 124.46))
  3873. (stroke (width 0) (type default) (color 0 0 0 0))
  3874. (uuid 6a70becb-201a-40d0-89c1-812e1e681e52)
  3875. )
  3876. (wire (pts (xy 254 68.58) (xy 265.43 68.58))
  3877. (stroke (width 0) (type default) (color 0 0 0 0))
  3878. (uuid 6ae963fb-e34f-4e11-9adf-78839a5b2ef1)
  3879. )
  3880. (wire (pts (xy 158.75 72.39) (xy 158.75 74.93))
  3881. (stroke (width 0) (type default) (color 0 0 0 0))
  3882. (uuid 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8)
  3883. )
  3884. (wire (pts (xy 242.57 118.11) (xy 248.92 118.11))
  3885. (stroke (width 0) (type default) (color 0 0 0 0))
  3886. (uuid 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
  3887. )
  3888. (wire (pts (xy 274.32 43.18) (xy 274.32 48.26))
  3889. (stroke (width 0) (type default) (color 0 0 0 0))
  3890. (uuid 6d2a06fb-0b1e-452a-ab38-11a5f45e1b32)
  3891. )
  3892. (wire (pts (xy 49.53 194.31) (xy 50.8 194.31))
  3893. (stroke (width 0) (type default) (color 0 0 0 0))
  3894. (uuid 6e6b92ab-7f1b-4573-8552-037452a50e96)
  3895. )
  3896. (wire (pts (xy 156.21 170.18) (xy 158.75 170.18))
  3897. (stroke (width 0) (type default) (color 0 0 0 0))
  3898. (uuid 6f5a9f10-1b2c-4916-b4e5-cb5bd0f851a0)
  3899. )
  3900. (wire (pts (xy 175.26 105.41) (xy 189.23 105.41))
  3901. (stroke (width 0) (type default) (color 0 0 0 0))
  3902. (uuid 6ff9bb63-d6fd-4e32-bb60-7ac65509c2e9)
  3903. )
  3904. (wire (pts (xy 31.75 78.74) (xy 21.59 78.74))
  3905. (stroke (width 0) (type default) (color 0 0 0 0))
  3906. (uuid 706c1cb9-5d96-4282-9efc-6147f0125147)
  3907. )
  3908. (wire (pts (xy 226.06 57.15) (xy 227.33 57.15))
  3909. (stroke (width 0) (type default) (color 0 0 0 0))
  3910. (uuid 709b97c7-c0c7-478c-bd89-4135c69c0161)
  3911. )
  3912. (wire (pts (xy 24.13 187.96) (xy 26.67 187.96))
  3913. (stroke (width 0) (type default) (color 0 0 0 0))
  3914. (uuid 70a2e356-245d-4d32-a1fc-9371f952d347)
  3915. )
  3916. (wire (pts (xy 236.22 151.13) (xy 236.22 153.67))
  3917. (stroke (width 0) (type default) (color 0 0 0 0))
  3918. (uuid 70cda344-73be-4466-a097-1fd56f3b19e2)
  3919. )
  3920. (wire (pts (xy 128.27 60.96) (xy 130.81 60.96))
  3921. (stroke (width 0) (type default) (color 0 0 0 0))
  3922. (uuid 71deed4a-3525-41c7-864c-419bd64a18d8)
  3923. )
  3924. (wire (pts (xy 217.17 138.43) (xy 227.33 138.43))
  3925. (stroke (width 0) (type default) (color 0 0 0 0))
  3926. (uuid 71ee0878-3a21-46c5-9585-084073e61e46)
  3927. )
  3928. (wire (pts (xy 162.56 97.79) (xy 158.75 97.79))
  3929. (stroke (width 0) (type default) (color 0 0 0 0))
  3930. (uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48)
  3931. )
  3932. (wire (pts (xy 54.61 88.9) (xy 66.04 88.9))
  3933. (stroke (width 0) (type default) (color 0 0 0 0))
  3934. (uuid 722636b6-8ff0-452f-9357-23deb317d921)
  3935. )
  3936. (wire (pts (xy 54.61 111.76) (xy 55.88 111.76))
  3937. (stroke (width 0) (type default) (color 0 0 0 0))
  3938. (uuid 7273dd21-e834-41d3-b279-d7de727709ca)
  3939. )
  3940. (wire (pts (xy 111.76 78.74) (xy 111.76 81.28))
  3941. (stroke (width 0) (type default) (color 0 0 0 0))
  3942. (uuid 732adcdb-5400-4b48-b390-9c07efe3787d)
  3943. )
  3944. (wire (pts (xy 111.76 68.58) (xy 111.76 71.12))
  3945. (stroke (width 0) (type default) (color 0 0 0 0))
  3946. (uuid 73c09a8e-334a-415d-8fcf-2f80e5530386)
  3947. )
  3948. (wire (pts (xy 254 48.26) (xy 265.43 48.26))
  3949. (stroke (width 0) (type default) (color 0 0 0 0))
  3950. (uuid 73ee7e03-97a8-4121-b568-c25f3934a935)
  3951. )
  3952. (wire (pts (xy 162.56 77.47) (xy 158.75 77.47))
  3953. (stroke (width 0) (type default) (color 0 0 0 0))
  3954. (uuid 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a)
  3955. )
  3956. (wire (pts (xy 270.51 58.42) (xy 274.32 58.42))
  3957. (stroke (width 0) (type default) (color 0 0 0 0))
  3958. (uuid 751d823e-1d7b-4501-9658-d06d459b0e16)
  3959. )
  3960. (wire (pts (xy 111.76 58.42) (xy 111.76 60.96))
  3961. (stroke (width 0) (type default) (color 0 0 0 0))
  3962. (uuid 7555990b-6425-4e86-89df-79d641461153)
  3963. )
  3964. (wire (pts (xy 158.75 85.09) (xy 158.75 82.55))
  3965. (stroke (width 0) (type default) (color 0 0 0 0))
  3966. (uuid 759788bd-3cb9-4d38-b58c-5cb10b7dca6b)
  3967. )
  3968. (wire (pts (xy 143.51 97.79) (xy 158.75 97.79))
  3969. (stroke (width 0) (type default) (color 0 0 0 0))
  3970. (uuid 7744b6ee-910d-401d-b730-65c35d3d8092)
  3971. )
  3972. (wire (pts (xy 111.76 45.72) (xy 111.76 48.26))
  3973. (stroke (width 0) (type default) (color 0 0 0 0))
  3974. (uuid 79418ab7-d09c-4c13-9426-59e88a9a6e18)
  3975. )
  3976. (wire (pts (xy 111.76 68.58) (xy 115.57 68.58))
  3977. (stroke (width 0) (type default) (color 0 0 0 0))
  3978. (uuid 7ad6872e-544b-496c-b63f-ef820d73efe1)
  3979. )
  3980. (wire (pts (xy 78.74 109.22) (xy 81.28 109.22))
  3981. (stroke (width 0) (type default) (color 0 0 0 0))
  3982. (uuid 7b70c41a-7204-4f10-80ea-4ef9a4ee9e3f)
  3983. )
  3984. (wire (pts (xy 158.75 97.79) (xy 158.75 95.25))
  3985. (stroke (width 0) (type default) (color 0 0 0 0))
  3986. (uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e)
  3987. )
  3988. (wire (pts (xy 107.95 36.195) (xy 107.95 36.83))
  3989. (stroke (width 0) (type default) (color 0 0 0 0))
  3990. (uuid 7d856ed4-2211-4e0b-8f57-f63e4ba404e4)
  3991. )
  3992. (wire (pts (xy 158.75 102.87) (xy 158.75 100.33))
  3993. (stroke (width 0) (type default) (color 0 0 0 0))
  3994. (uuid 7db990e4-92e1-4f99-b4d2-435bbec1ba83)
  3995. )
  3996. (wire (pts (xy 128.27 76.2) (xy 130.81 76.2))
  3997. (stroke (width 0) (type default) (color 0 0 0 0))
  3998. (uuid 7e4acdae-bb82-4c28-bdbc-521d32bd98f8)
  3999. )
  4000. (wire (pts (xy 118.11 166.37) (xy 118.11 168.91))
  4001. (stroke (width 0) (type default) (color 0 0 0 0))
  4002. (uuid 80a0ec3e-8559-4e62-8a7d-014f201a8630)
  4003. )
  4004. (wire (pts (xy 264.16 148.59) (xy 266.7 148.59))
  4005. (stroke (width 0) (type default) (color 0 0 0 0))
  4006. (uuid 80f8c1b4-10dd-40fe-b7f7-67988bc3ad81)
  4007. )
  4008. (wire (pts (xy 111.76 66.04) (xy 115.57 66.04))
  4009. (stroke (width 0) (type default) (color 0 0 0 0))
  4010. (uuid 81942b2b-e9f9-4911-a8e1-de17115edd34)
  4011. )
  4012. (wire (pts (xy 226.06 36.83) (xy 227.33 36.83))
  4013. (stroke (width 0) (type default) (color 0 0 0 0))
  4014. (uuid 830f705c-6254-4bfd-97c9-b4a49db1c87a)
  4015. )
  4016. (wire (pts (xy 111.76 60.96) (xy 115.57 60.96))
  4017. (stroke (width 0) (type default) (color 0 0 0 0))
  4018. (uuid 83a028cb-daf6-43c6-bb0d-a9bb6cd2a863)
  4019. )
  4020. (wire (pts (xy 189.23 20.32) (xy 189.23 21.59))
  4021. (stroke (width 0) (type default) (color 0 0 0 0))
  4022. (uuid 843b53af-dd34-4db8-aa6b-5035b25affc7)
  4023. )
  4024. (wire (pts (xy 182.88 143.51) (xy 182.88 139.7))
  4025. (stroke (width 0) (type default) (color 0 0 0 0))
  4026. (uuid 84544935-1faf-4126-88f6-e96cd0681253)
  4027. )
  4028. (wire (pts (xy 175.26 92.71) (xy 176.53 92.71))
  4029. (stroke (width 0) (type default) (color 0 0 0 0))
  4030. (uuid 84573600-cda0-4425-92c4-d7541d59592f)
  4031. )
  4032. (wire (pts (xy 111.76 81.28) (xy 115.57 81.28))
  4033. (stroke (width 0) (type default) (color 0 0 0 0))
  4034. (uuid 84eb08f1-0a1f-4d6f-8c5c-d15a819ccdd5)
  4035. )
  4036. (wire (pts (xy 218.44 153.67) (xy 219.71 153.67))
  4037. (stroke (width 0) (type default) (color 0 0 0 0))
  4038. (uuid 85ccc615-869a-4036-82a2-a7ac8bd5531a)
  4039. )
  4040. (wire (pts (xy 49.53 186.69) (xy 50.8 186.69))
  4041. (stroke (width 0) (type default) (color 0 0 0 0))
  4042. (uuid 86bc49f4-68c7-472b-a547-30f1290af584)
  4043. )
  4044. (wire (pts (xy 139.7 20.32) (xy 139.7 21.59))
  4045. (stroke (width 0) (type default) (color 0 0 0 0))
  4046. (uuid 8765371a-21c2-4fe3-a3af-88f5eb1f02a0)
  4047. )
  4048. (wire (pts (xy 254 63.5) (xy 265.43 63.5))
  4049. (stroke (width 0) (type default) (color 0 0 0 0))
  4050. (uuid 87ba184f-bff5-4989-8217-6af375cc3dd8)
  4051. )
  4052. (wire (pts (xy 111.76 99.06) (xy 115.57 99.06))
  4053. (stroke (width 0) (type default) (color 0 0 0 0))
  4054. (uuid 87d21a28-f5ce-4361-b5cf-47858dfef8d8)
  4055. )
  4056. (wire (pts (xy 264.16 146.05) (xy 266.7 146.05))
  4057. (stroke (width 0) (type default) (color 0 0 0 0))
  4058. (uuid 883105b0-f6a6-466b-ba58-a2fcc1f18e4b)
  4059. )
  4060. (wire (pts (xy 54.61 86.36) (xy 66.04 86.36))
  4061. (stroke (width 0) (type default) (color 0 0 0 0))
  4062. (uuid 88deea08-baa5-4041-beb7-01c299cf00e6)
  4063. )
  4064. (wire (pts (xy 146.05 167.64) (xy 147.32 167.64))
  4065. (stroke (width 0) (type default) (color 0 0 0 0))
  4066. (uuid 8a31a6e8-de50-46d8-9f88-57e4d3d98a89)
  4067. )
  4068. (bus (pts (xy 49.53 173.99) (xy 64.77 173.99))
  4069. (stroke (width 0) (type default) (color 0 0 0 0))
  4070. (uuid 8a5d3cc0-5e58-4772-b8ed-616d461ac222)
  4071. )
  4072. (wire (pts (xy 104.14 121.92) (xy 112.395 121.92))
  4073. (stroke (width 0) (type default) (color 0 0 0 0))
  4074. (uuid 8a8ab9d8-b8d7-4bb4-a217-42d273c00eb7)
  4075. )
  4076. (wire (pts (xy 274.32 63.5) (xy 274.32 58.42))
  4077. (stroke (width 0) (type default) (color 0 0 0 0))
  4078. (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698)
  4079. )
  4080. (wire (pts (xy 107.95 39.37) (xy 107.95 36.83))
  4081. (stroke (width 0) (type default) (color 0 0 0 0))
  4082. (uuid 8cb5a828-8cef-4784-b78d-175b49646952)
  4083. )
  4084. (wire (pts (xy 115.57 45.72) (xy 111.76 45.72))
  4085. (stroke (width 0) (type default) (color 0 0 0 0))
  4086. (uuid 8eaf6a06-4675-4396-80ad-3f0aec3cf44d)
  4087. )
  4088. (wire (pts (xy 111.76 93.98) (xy 111.76 96.52))
  4089. (stroke (width 0) (type default) (color 0 0 0 0))
  4090. (uuid 8f73769d-d6ee-4481-af51-f24a2b202099)
  4091. )
  4092. (wire (pts (xy 157.48 167.64) (xy 158.75 167.64))
  4093. (stroke (width 0) (type default) (color 0 0 0 0))
  4094. (uuid 8ff8ff6e-d217-46cc-b48c-9a03cdac2032)
  4095. )
  4096. (wire (pts (xy 24.13 182.88) (xy 26.67 182.88))
  4097. (stroke (width 0) (type default) (color 0 0 0 0))
  4098. (uuid 90358cb2-bdb6-48de-8f7b-fde76fb4cd36)
  4099. )
  4100. (wire (pts (xy 111.76 50.8) (xy 111.76 53.34))
  4101. (stroke (width 0) (type default) (color 0 0 0 0))
  4102. (uuid 911422e1-2c1b-4b48-98bf-1cfa390d5967)
  4103. )
  4104. (wire (pts (xy 111.76 83.82) (xy 111.76 86.36))
  4105. (stroke (width 0) (type default) (color 0 0 0 0))
  4106. (uuid 915cd6f0-d23f-4be4-a6bd-9624a37012b0)
  4107. )
  4108. (wire (pts (xy 71.12 116.84) (xy 81.28 116.84))
  4109. (stroke (width 0) (type default) (color 0 0 0 0))
  4110. (uuid 9208ea78-8dde-4b3d-91e9-5755ab5efd9a)
  4111. )
  4112. (wire (pts (xy 270.51 63.5) (xy 274.32 63.5))
  4113. (stroke (width 0) (type default) (color 0 0 0 0))
  4114. (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d)
  4115. )
  4116. (wire (pts (xy 31.75 86.36) (xy 21.59 86.36))
  4117. (stroke (width 0) (type default) (color 0 0 0 0))
  4118. (uuid 93ac15d8-5f91-4361-acff-be4992b93b51)
  4119. )
  4120. (wire (pts (xy 222.25 128.27) (xy 227.33 128.27))
  4121. (stroke (width 0) (type default) (color 0 0 0 0))
  4122. (uuid 93fce3d9-6366-4fd6-9cb4-5dea61c5fc4f)
  4123. )
  4124. (wire (pts (xy 24.13 177.8) (xy 26.67 177.8))
  4125. (stroke (width 0) (type default) (color 0 0 0 0))
  4126. (uuid 94dbbf07-776e-489c-bf10-aad9fddb4b70)
  4127. )
  4128. (wire (pts (xy 175.26 67.31) (xy 176.53 67.31))
  4129. (stroke (width 0) (type default) (color 0 0 0 0))
  4130. (uuid 9628da2d-251a-42dd-b606-c284cad02d89)
  4131. )
  4132. (wire (pts (xy 21.59 149.86) (xy 31.75 149.86))
  4133. (stroke (width 0) (type default) (color 0 0 0 0))
  4134. (uuid 966ee9ec-860e-45bb-af89-30bda72b2032)
  4135. )
  4136. (wire (pts (xy 54.61 81.28) (xy 66.04 81.28))
  4137. (stroke (width 0) (type default) (color 0 0 0 0))
  4138. (uuid 968a6172-7a4e-40ab-a78a-e4d03671e136)
  4139. )
  4140. (wire (pts (xy 111.76 53.34) (xy 115.57 53.34))
  4141. (stroke (width 0) (type default) (color 0 0 0 0))
  4142. (uuid 96aa2b8a-4424-4fb9-8558-aee17effda2c)
  4143. )
  4144. (bus (pts (xy 49.53 176.53) (xy 64.77 176.53))
  4145. (stroke (width 0) (type default) (color 0 0 0 0))
  4146. (uuid 9710ec47-7e55-45b4-abed-e335e0b81e28)
  4147. )
  4148. (wire (pts (xy 158.75 95.25) (xy 158.75 92.71))
  4149. (stroke (width 0) (type default) (color 0 0 0 0))
  4150. (uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6)
  4151. )
  4152. (wire (pts (xy 128.27 96.52) (xy 130.81 96.52))
  4153. (stroke (width 0) (type default) (color 0 0 0 0))
  4154. (uuid 98840b25-f2e8-4b5f-abb6-8c14da6c0152)
  4155. )
  4156. (wire (pts (xy 226.06 97.79) (xy 227.33 97.79))
  4157. (stroke (width 0) (type default) (color 0 0 0 0))
  4158. (uuid 9a7dc00e-0d3f-4329-ac3d-e2f4d39382c9)
  4159. )
  4160. (wire (pts (xy 107.95 36.83) (xy 111.76 36.83))
  4161. (stroke (width 0) (type default) (color 0 0 0 0))
  4162. (uuid 9bb406d9-c650-4e67-9a26-3195d4de542e)
  4163. )
  4164. (wire (pts (xy 111.76 55.88) (xy 115.57 55.88))
  4165. (stroke (width 0) (type default) (color 0 0 0 0))
  4166. (uuid 9bd4c0f8-c3c0-4d90-8fbb-f0f029ee301b)
  4167. )
  4168. (wire (pts (xy 21.59 81.28) (xy 31.75 81.28))
  4169. (stroke (width 0) (type default) (color 0 0 0 0))
  4170. (uuid 9c2999b2-1cf1-4204-9d23-243401b77aa3)
  4171. )
  4172. (wire (pts (xy 274.32 27.94) (xy 270.51 27.94))
  4173. (stroke (width 0) (type default) (color 0 0 0 0))
  4174. (uuid 9da1ace0-4181-4f12-80f8-16786a9e5c07)
  4175. )
  4176. (wire (pts (xy 242.57 87.63) (xy 248.92 87.63))
  4177. (stroke (width 0) (type default) (color 0 0 0 0))
  4178. (uuid 9db16341-dac0-4aab-9c62-7d88c111c1ce)
  4179. )
  4180. (wire (pts (xy 270.51 97.79) (xy 274.32 97.79))
  4181. (stroke (width 0) (type default) (color 0 0 0 0))
  4182. (uuid 9e136ac4-5d28-4814-9ebf-c30c372bc2ec)
  4183. )
  4184. (wire (pts (xy 254 92.71) (xy 265.43 92.71))
  4185. (stroke (width 0) (type default) (color 0 0 0 0))
  4186. (uuid 9e2492fd-e074-42db-8129-fe39460dc1e0)
  4187. )
  4188. (wire (pts (xy 29.972 139.7) (xy 31.75 139.7))
  4189. (stroke (width 0) (type default) (color 0 0 0 0))
  4190. (uuid a1a5f77e-d865-42f1-9d75-c27e95794088)
  4191. )
  4192. (wire (pts (xy 175.26 72.39) (xy 189.23 72.39))
  4193. (stroke (width 0) (type default) (color 0 0 0 0))
  4194. (uuid a239fd1d-dfbb-49fd-b565-8c3de9dcf42b)
  4195. )
  4196. (wire (pts (xy 79.375 111.76) (xy 81.28 111.76))
  4197. (stroke (width 0) (type default) (color 0 0 0 0))
  4198. (uuid a4c0b8b4-bcb0-4ae2-9dfe-2530d03fe318)
  4199. )
  4200. (wire (pts (xy 162.56 92.71) (xy 158.75 92.71))
  4201. (stroke (width 0) (type default) (color 0 0 0 0))
  4202. (uuid a5c8e189-1ddc-4a66-984b-e0fd1529d346)
  4203. )
  4204. (wire (pts (xy 111.76 48.26) (xy 111.76 50.8))
  4205. (stroke (width 0) (type default) (color 0 0 0 0))
  4206. (uuid a7688449-9952-4584-8101-9ab6d851dcd2)
  4207. )
  4208. (wire (pts (xy 226.06 87.63) (xy 227.33 87.63))
  4209. (stroke (width 0) (type default) (color 0 0 0 0))
  4210. (uuid a81c142a-a1f2-4334-bd16-60dba1bd4309)
  4211. )
  4212. (wire (pts (xy 124.46 184.15) (xy 125.73 184.15))
  4213. (stroke (width 0) (type default) (color 0 0 0 0))
  4214. (uuid a8f1baa1-2b08-47ad-bea9-d3b3dfc53b4f)
  4215. )
  4216. (wire (pts (xy 175.26 64.77) (xy 176.53 64.77))
  4217. (stroke (width 0) (type default) (color 0 0 0 0))
  4218. (uuid a9c5e8cb-7e6c-477b-a602-f739a18c5503)
  4219. )
  4220. (wire (pts (xy 128.27 68.58) (xy 130.81 68.58))
  4221. (stroke (width 0) (type default) (color 0 0 0 0))
  4222. (uuid a9c73773-0e9e-46cb-a0a7-3f1b8d377e9e)
  4223. )
  4224. (wire (pts (xy 242.57 46.99) (xy 248.92 46.99))
  4225. (stroke (width 0) (type default) (color 0 0 0 0))
  4226. (uuid aa047297-22f8-4de0-a969-0b3451b8e164)
  4227. )
  4228. (wire (pts (xy 144.78 170.18) (xy 144.78 172.72))
  4229. (stroke (width 0) (type default) (color 0 0 0 0))
  4230. (uuid aa48ec10-373c-4362-ad1d-b391c597316c)
  4231. )
  4232. (wire (pts (xy 242.57 67.31) (xy 248.92 67.31))
  4233. (stroke (width 0) (type default) (color 0 0 0 0))
  4234. (uuid ab8b0540-9c9f-4195-88f5-7bed0b0a8ed6)
  4235. )
  4236. (wire (pts (xy 111.76 96.52) (xy 115.57 96.52))
  4237. (stroke (width 0) (type default) (color 0 0 0 0))
  4238. (uuid abe306dd-1edd-4fdd-87f4-7ca5963c9ea7)
  4239. )
  4240. (wire (pts (xy 111.76 104.14) (xy 115.57 104.14))
  4241. (stroke (width 0) (type default) (color 0 0 0 0))
  4242. (uuid ac0380df-fedb-4df2-985d-2d7af79c1b50)
  4243. )
  4244. (wire (pts (xy 57.15 25.4) (xy 57.15 26.67))
  4245. (stroke (width 0) (type default) (color 0 0 0 0))
  4246. (uuid acb6c3f3-e677-4f35-9fc2-138ba10f33af)
  4247. )
  4248. (wire (pts (xy 271.78 151.13) (xy 271.78 160.02))
  4249. (stroke (width 0) (type default) (color 0 0 0 0))
  4250. (uuid adcbf4d0-ed9c-4c7d-b78f-3bcbe974bdcb)
  4251. )
  4252. (wire (pts (xy 24.13 180.34) (xy 26.67 180.34))
  4253. (stroke (width 0) (type default) (color 0 0 0 0))
  4254. (uuid aeaadbdf-86af-4f08-9da0-3d321e9b530e)
  4255. )
  4256. (wire (pts (xy 68.58 53.34) (xy 71.12 53.34))
  4257. (stroke (width 0) (type default) (color 0 0 0 0))
  4258. (uuid af3cc109-862a-4cfb-8f3d-1fa76867efce)
  4259. )
  4260. (wire (pts (xy 274.32 53.34) (xy 274.32 48.26))
  4261. (stroke (width 0) (type default) (color 0 0 0 0))
  4262. (uuid b21299b9-3c4d-43df-b399-7f9b08eb5470)
  4263. )
  4264. (wire (pts (xy 254 33.02) (xy 265.43 33.02))
  4265. (stroke (width 0) (type default) (color 0 0 0 0))
  4266. (uuid b456cffc-d9d7-4c91-91f2-36ec9a65dd1b)
  4267. )
  4268. (wire (pts (xy 204.47 156.21) (xy 205.74 156.21))
  4269. (stroke (width 0) (type default) (color 0 0 0 0))
  4270. (uuid b645d226-73c2-4fa2-99d4-8f77587b4ca2)
  4271. )
  4272. (wire (pts (xy 270.51 113.03) (xy 274.32 113.03))
  4273. (stroke (width 0) (type default) (color 0 0 0 0))
  4274. (uuid b7b00984-6ab1-482e-b4b4-67cac44d44da)
  4275. )
  4276. (wire (pts (xy 242.57 77.47) (xy 248.92 77.47))
  4277. (stroke (width 0) (type default) (color 0 0 0 0))
  4278. (uuid b7d06af4-a5b1-447f-9b1a-8b44eb1cc204)
  4279. )
  4280. (wire (pts (xy 175.26 95.25) (xy 189.23 95.25))
  4281. (stroke (width 0) (type default) (color 0 0 0 0))
  4282. (uuid b9d4de74-d246-495d-8b63-12ab2133d6d6)
  4283. )
  4284. (wire (pts (xy 158.75 82.55) (xy 158.75 80.01))
  4285. (stroke (width 0) (type default) (color 0 0 0 0))
  4286. (uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
  4287. )
  4288. (wire (pts (xy 111.76 93.98) (xy 115.57 93.98))
  4289. (stroke (width 0) (type default) (color 0 0 0 0))
  4290. (uuid bcd30c68-6a0c-4d48-b059-36bb89da1e79)
  4291. )
  4292. (wire (pts (xy 111.76 83.82) (xy 115.57 83.82))
  4293. (stroke (width 0) (type default) (color 0 0 0 0))
  4294. (uuid bd0dd8cc-2030-49e6-af9c-fd81a82f9d87)
  4295. )
  4296. (wire (pts (xy 158.75 74.93) (xy 162.56 74.93))
  4297. (stroke (width 0) (type default) (color 0 0 0 0))
  4298. (uuid bd793ae5-cde5-43f6-8def-1f95f35b1be6)
  4299. )
  4300. (wire (pts (xy 242.57 107.95) (xy 248.92 107.95))
  4301. (stroke (width 0) (type default) (color 0 0 0 0))
  4302. (uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
  4303. )
  4304. (wire (pts (xy 111.76 63.5) (xy 111.76 66.04))
  4305. (stroke (width 0) (type default) (color 0 0 0 0))
  4306. (uuid bf48d325-aa3e-4b5d-9567-32fa56f5e35b)
  4307. )
  4308. (wire (pts (xy 57.15 40.64) (xy 57.15 43.18))
  4309. (stroke (width 0) (type default) (color 0 0 0 0))
  4310. (uuid bf8d857b-70bf-41ee-a068-5771461e04e9)
  4311. )
  4312. (wire (pts (xy 54.61 114.3) (xy 55.88 114.3))
  4313. (stroke (width 0) (type default) (color 0 0 0 0))
  4314. (uuid c15b2f75-2e10-4b71-bebb-e2b872171b92)
  4315. )
  4316. (wire (pts (xy 254 113.03) (xy 265.43 113.03))
  4317. (stroke (width 0) (type default) (color 0 0 0 0))
  4318. (uuid c20aea50-e9e4-4978-b938-d613d445aab7)
  4319. )
  4320. (wire (pts (xy 270.51 53.34) (xy 274.32 53.34))
  4321. (stroke (width 0) (type default) (color 0 0 0 0))
  4322. (uuid c210293b-1d7a-4e96-92e9-058784106727)
  4323. )
  4324. (wire (pts (xy 229.87 156.21) (xy 251.46 156.21))
  4325. (stroke (width 0) (type default) (color 0 0 0 0))
  4326. (uuid c2a9d834-7cb1-4ec5-b0ba-ae56215ff9fc)
  4327. )
  4328. (wire (pts (xy 68.58 50.8) (xy 71.12 50.8))
  4329. (stroke (width 0) (type default) (color 0 0 0 0))
  4330. (uuid c32397b2-e014-45d8-b63d-e72b10005f84)
  4331. )
  4332. (wire (pts (xy 128.27 63.5) (xy 130.81 63.5))
  4333. (stroke (width 0) (type default) (color 0 0 0 0))
  4334. (uuid c3c540e1-6789-4fb5-a7f3-e013ed58d2f0)
  4335. )
  4336. (wire (pts (xy 274.32 78.74) (xy 274.32 73.66))
  4337. (stroke (width 0) (type default) (color 0 0 0 0))
  4338. (uuid c3d5daf8-d359-42b2-a7c2-0d080ba7e212)
  4339. )
  4340. (wire (pts (xy 111.76 53.34) (xy 111.76 55.88))
  4341. (stroke (width 0) (type default) (color 0 0 0 0))
  4342. (uuid c634a039-7d21-44f5-afe8-c31a95f913fa)
  4343. )
  4344. (wire (pts (xy 264.16 151.13) (xy 271.78 151.13))
  4345. (stroke (width 0) (type default) (color 0 0 0 0))
  4346. (uuid c6bba6d7-3631-448e-9df8-b5a9e3238ade)
  4347. )
  4348. (wire (pts (xy 158.75 92.71) (xy 158.75 90.17))
  4349. (stroke (width 0) (type default) (color 0 0 0 0))
  4350. (uuid c71f56c1-5b7c-4373-9716-fffac482104c)
  4351. )
  4352. (wire (pts (xy 54.61 127) (xy 57.15 127))
  4353. (stroke (width 0) (type default) (color 0 0 0 0))
  4354. (uuid c78fe4d2-3bca-4944-970b-90c59993e3ea)
  4355. )
  4356. (wire (pts (xy 162.56 64.77) (xy 158.75 64.77))
  4357. (stroke (width 0) (type default) (color 0 0 0 0))
  4358. (uuid c7df8431-dcf5-4ab4-b8f8-21c1cafc5246)
  4359. )
  4360. (wire (pts (xy 167.64 143.51) (xy 170.18 143.51))
  4361. (stroke (width 0) (type default) (color 0 0 0 0))
  4362. (uuid c8263b20-79fc-4839-a962-2f02144545a4)
  4363. )
  4364. (wire (pts (xy 229.87 151.13) (xy 229.87 156.21))
  4365. (stroke (width 0) (type default) (color 0 0 0 0))
  4366. (uuid c9badf80-21f8-404a-b5df-18e98bffebf9)
  4367. )
  4368. (wire (pts (xy 21.59 121.92) (xy 31.75 121.92))
  4369. (stroke (width 0) (type default) (color 0 0 0 0))
  4370. (uuid ca56e1ad-54bf-4df5-a4f7-99f5d61d0de9)
  4371. )
  4372. (wire (pts (xy 175.26 87.63) (xy 176.53 87.63))
  4373. (stroke (width 0) (type default) (color 0 0 0 0))
  4374. (uuid caec258f-08ad-4a14-a897-c865492c6866)
  4375. )
  4376. (wire (pts (xy 205.74 158.75) (xy 199.39 158.75))
  4377. (stroke (width 0) (type default) (color 0 0 0 0))
  4378. (uuid caecdfb7-ad32-4c62-85bf-e74b77cca81e)
  4379. )
  4380. (wire (pts (xy 111.76 63.5) (xy 115.57 63.5))
  4381. (stroke (width 0) (type default) (color 0 0 0 0))
  4382. (uuid cc82dc36-4024-423c-8da3-2d14d47e5181)
  4383. )
  4384. (wire (pts (xy 162.56 102.87) (xy 158.75 102.87))
  4385. (stroke (width 0) (type default) (color 0 0 0 0))
  4386. (uuid cd5e758d-cb66-484a-ae8b-21f53ceee49e)
  4387. )
  4388. (wire (pts (xy 182.88 139.7) (xy 182.88 135.89))
  4389. (stroke (width 0) (type default) (color 0 0 0 0))
  4390. (uuid ceaf7d3e-c900-458e-a1b1-b52da1114534)
  4391. )
  4392. (wire (pts (xy 30.48 104.14) (xy 31.75 104.14))
  4393. (stroke (width 0) (type default) (color 0 0 0 0))
  4394. (uuid ceb12634-32ca-4cbf-9ff5-5e8b53ab18ad)
  4395. )
  4396. (wire (pts (xy 143.51 105.41) (xy 139.7 105.41))
  4397. (stroke (width 0) (type default) (color 0 0 0 0))
  4398. (uuid d0cd3439-276c-41ba-b38d-f84f6da38415)
  4399. )
  4400. (wire (pts (xy 111.76 76.2) (xy 115.57 76.2))
  4401. (stroke (width 0) (type default) (color 0 0 0 0))
  4402. (uuid d23f7535-a044-4247-95d7-457cdd1c122f)
  4403. )
  4404. (wire (pts (xy 226.06 107.95) (xy 227.33 107.95))
  4405. (stroke (width 0) (type default) (color 0 0 0 0))
  4406. (uuid d25b2628-ae11-499a-9364-d37bc176f51a)
  4407. )
  4408. (wire (pts (xy 156.21 170.18) (xy 156.21 172.72))
  4409. (stroke (width 0) (type default) (color 0 0 0 0))
  4410. (uuid d2db53d0-2821-4ebe-bf21-b864eac8ca44)
  4411. )
  4412. (wire (pts (xy 54.61 137.16) (xy 56.515 137.16))
  4413. (stroke (width 0) (type default) (color 0 0 0 0))
  4414. (uuid d38388e6-e9fd-4b8f-b41b-1bbc34e47cb3)
  4415. )
  4416. (wire (pts (xy 158.75 64.77) (xy 158.75 67.31))
  4417. (stroke (width 0) (type default) (color 0 0 0 0))
  4418. (uuid d38aa458-d7c4-47af-ba08-2b6be506a3fd)
  4419. )
  4420. (wire (pts (xy 226.06 118.11) (xy 227.33 118.11))
  4421. (stroke (width 0) (type default) (color 0 0 0 0))
  4422. (uuid d3a871af-3e46-4a18-909a-afda82616114)
  4423. )
  4424. (wire (pts (xy 218.44 69.85) (xy 218.44 46.99))
  4425. (stroke (width 0) (type default) (color 0 0 0 0))
  4426. (uuid d3a97c30-4ac8-4098-8132-98f3b6543eaa)
  4427. )
  4428. (wire (pts (xy 270.51 78.74) (xy 274.32 78.74))
  4429. (stroke (width 0) (type default) (color 0 0 0 0))
  4430. (uuid d3dd7cdb-b730-487d-804d-99150ba318ef)
  4431. )
  4432. (wire (pts (xy 111.76 71.12) (xy 111.76 73.66))
  4433. (stroke (width 0) (type default) (color 0 0 0 0))
  4434. (uuid d41a5206-cc17-4bcb-8c5a-8e7f7357a9a3)
  4435. )
  4436. (wire (pts (xy 254 73.66) (xy 265.43 73.66))
  4437. (stroke (width 0) (type default) (color 0 0 0 0))
  4438. (uuid d45d1afe-78e6-4045-862c-b274469da903)
  4439. )
  4440. (wire (pts (xy 250.19 146.05) (xy 251.46 146.05))
  4441. (stroke (width 0) (type default) (color 0 0 0 0))
  4442. (uuid d4e4ffa8-e3e2-4590-b9df-630d1880f3e4)
  4443. )
  4444. (wire (pts (xy 111.76 81.28) (xy 111.76 83.82))
  4445. (stroke (width 0) (type default) (color 0 0 0 0))
  4446. (uuid d5752e0f-5ead-4438-8daf-6a0f62b20fff)
  4447. )
  4448. (wire (pts (xy 175.26 77.47) (xy 176.53 77.47))
  4449. (stroke (width 0) (type default) (color 0 0 0 0))
  4450. (uuid d5cd321f-154d-44fc-8d43-4ec6816b5a0c)
  4451. )
  4452. (wire (pts (xy 189.23 46.99) (xy 189.23 49.53))
  4453. (stroke (width 0) (type default) (color 0 0 0 0))
  4454. (uuid d5f4d798-57d3-493b-b57c-3b6e89508879)
  4455. )
  4456. (wire (pts (xy 122.555 129.54) (xy 122.555 130.81))
  4457. (stroke (width 0) (type default) (color 0 0 0 0))
  4458. (uuid d655bb0a-cbf9-4908-ad60-7024ff468fbd)
  4459. )
  4460. (wire (pts (xy 175.26 69.85) (xy 218.44 69.85))
  4461. (stroke (width 0) (type default) (color 0 0 0 0))
  4462. (uuid d86b23c2-4505-475a-b56c-9a20b82b4564)
  4463. )
  4464. (wire (pts (xy 54.61 139.7) (xy 56.515 139.7))
  4465. (stroke (width 0) (type default) (color 0 0 0 0))
  4466. (uuid d9d0e002-c676-4481-b5ab-bdd0a5e964a1)
  4467. )
  4468. (wire (pts (xy 151.13 20.32) (xy 151.13 21.59))
  4469. (stroke (width 0) (type default) (color 0 0 0 0))
  4470. (uuid da337fe1-c322-4637-ad26-2622b82ac8ee)
  4471. )
  4472. (wire (pts (xy 31.75 147.32) (xy 21.59 147.32))
  4473. (stroke (width 0) (type default) (color 0 0 0 0))
  4474. (uuid db6412d3-e6c3-4bdd-abf4-a8f55d56df31)
  4475. )
  4476. (wire (pts (xy 162.56 95.25) (xy 158.75 95.25))
  4477. (stroke (width 0) (type default) (color 0 0 0 0))
  4478. (uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018)
  4479. )
  4480. (wire (pts (xy 199.39 158.75) (xy 199.39 160.02))
  4481. (stroke (width 0) (type default) (color 0 0 0 0))
  4482. (uuid dc2434c5-9883-49e3-a65f-233a4b4287b8)
  4483. )
  4484. (wire (pts (xy 241.3 160.02) (xy 241.3 151.13))
  4485. (stroke (width 0) (type default) (color 0 0 0 0))
  4486. (uuid dd6c35f3-ae45-4706-ad6f-8028797ca8e0)
  4487. )
  4488. (wire (pts (xy 182.88 139.7) (xy 184.15 139.7))
  4489. (stroke (width 0) (type default) (color 0 0 0 0))
  4490. (uuid dda0e41f-1d9a-4045-be58-aba2f0b0530f)
  4491. )
  4492. (wire (pts (xy 143.51 105.41) (xy 146.05 105.41))
  4493. (stroke (width 0) (type default) (color 0 0 0 0))
  4494. (uuid dda1e6ca-91ec-4136-b90b-3c54d79454b9)
  4495. )
  4496. (wire (pts (xy 242.57 36.83) (xy 248.92 36.83))
  4497. (stroke (width 0) (type default) (color 0 0 0 0))
  4498. (uuid df3dc9a2-ba40-4c3a-87fe-61cc8e23d71b)
  4499. )
  4500. (wire (pts (xy 151.13 26.67) (xy 151.13 27.94))
  4501. (stroke (width 0) (type default) (color 0 0 0 0))
  4502. (uuid dff67d5c-d976-4516-ae67-dbbdb70f8ddd)
  4503. )
  4504. (wire (pts (xy 265.43 102.87) (xy 254 102.87))
  4505. (stroke (width 0) (type default) (color 0 0 0 0))
  4506. (uuid e04b8c10-725b-4bde-8cbf-66bfea5053e6)
  4507. )
  4508. (wire (pts (xy 226.06 27.94) (xy 227.33 27.94))
  4509. (stroke (width 0) (type default) (color 0 0 0 0))
  4510. (uuid e0d598e4-d700-418e-81d8-4a06e1fafba0)
  4511. )
  4512. (wire (pts (xy 270.51 73.66) (xy 274.32 73.66))
  4513. (stroke (width 0) (type default) (color 0 0 0 0))
  4514. (uuid e11ae5a5-aa10-4f10-b346-f16e33c7899a)
  4515. )
  4516. (wire (pts (xy 111.76 104.14) (xy 111.76 106.68))
  4517. (stroke (width 0) (type default) (color 0 0 0 0))
  4518. (uuid e27535b7-e54a-4a5a-98af-cd2921ed47c2)
  4519. )
  4520. (wire (pts (xy 274.32 33.02) (xy 270.51 33.02))
  4521. (stroke (width 0) (type default) (color 0 0 0 0))
  4522. (uuid e2fac877-439c-4da0-af2e-5fdc70f85d42)
  4523. )
  4524. (wire (pts (xy 158.75 100.33) (xy 154.94 100.33))
  4525. (stroke (width 0) (type default) (color 0 0 0 0))
  4526. (uuid e300709f-6c72-488d-a598-efcbd6d3af54)
  4527. )
  4528. (wire (pts (xy 111.76 78.74) (xy 115.57 78.74))
  4529. (stroke (width 0) (type default) (color 0 0 0 0))
  4530. (uuid e3faefe1-ec26-4576-8d54-ae0993368ae3)
  4531. )
  4532. (wire (pts (xy 30.48 154.94) (xy 31.75 154.94))
  4533. (stroke (width 0) (type default) (color 0 0 0 0))
  4534. (uuid e4504518-96e7-4c9e-8457-7273f5a490f1)
  4535. )
  4536. (wire (pts (xy 129.54 162.56) (xy 129.54 165.1))
  4537. (stroke (width 0) (type default) (color 0 0 0 0))
  4538. (uuid e623f100-5d92-4d52-a4ee-879775a3b961)
  4539. )
  4540. (wire (pts (xy 158.75 77.47) (xy 158.75 74.93))
  4541. (stroke (width 0) (type default) (color 0 0 0 0))
  4542. (uuid e70b6168-f98e-4322-bc55-500948ef7b77)
  4543. )
  4544. (wire (pts (xy 242.57 57.15) (xy 248.92 57.15))
  4545. (stroke (width 0) (type default) (color 0 0 0 0))
  4546. (uuid e79c8e11-ed47-4701-ae80-a54cdb6682a5)
  4547. )
  4548. (wire (pts (xy 158.75 69.85) (xy 162.56 69.85))
  4549. (stroke (width 0) (type default) (color 0 0 0 0))
  4550. (uuid e7d81bce-286e-41e4-9181-3511e9c0455e)
  4551. )
  4552. (wire (pts (xy 276.86 153.67) (xy 276.86 151.13))
  4553. (stroke (width 0) (type default) (color 0 0 0 0))
  4554. (uuid e80b0e91-f15f-4e36-9a9c-b2cfd5a01d2a)
  4555. )
  4556. (wire (pts (xy 270.51 102.87) (xy 274.32 102.87))
  4557. (stroke (width 0) (type default) (color 0 0 0 0))
  4558. (uuid e8274862-c966-456a-98d5-9c42f72963c1)
  4559. )
  4560. (wire (pts (xy 242.57 27.94) (xy 248.92 27.94))
  4561. (stroke (width 0) (type default) (color 0 0 0 0))
  4562. (uuid e87a6f80-914f-4f62-9c9f-9ba62a88ee3d)
  4563. )
  4564. (wire (pts (xy 24.13 185.42) (xy 26.67 185.42))
  4565. (stroke (width 0) (type default) (color 0 0 0 0))
  4566. (uuid e9e21288-a1da-4e40-9282-79c2fe7455e5)
  4567. )
  4568. (wire (pts (xy 167.64 139.7) (xy 170.18 139.7))
  4569. (stroke (width 0) (type default) (color 0 0 0 0))
  4570. (uuid ea262f36-6725-4873-a0e9-06d96f680d55)
  4571. )
  4572. (wire (pts (xy 167.64 46.99) (xy 167.64 49.53))
  4573. (stroke (width 0) (type default) (color 0 0 0 0))
  4574. (uuid ea77ba09-319a-49bd-ad5b-49f4c76f232c)
  4575. )
  4576. (wire (pts (xy 199.39 151.13) (xy 199.39 153.67))
  4577. (stroke (width 0) (type default) (color 0 0 0 0))
  4578. (uuid eab51dd7-660f-4f60-86ec-46ce23e50144)
  4579. )
  4580. (wire (pts (xy 111.76 106.68) (xy 111.76 111.76))
  4581. (stroke (width 0) (type default) (color 0 0 0 0))
  4582. (uuid ecdfb0d6-40ce-48d1-9a5f-4d48b9122aad)
  4583. )
  4584. (wire (pts (xy 111.76 88.9) (xy 115.57 88.9))
  4585. (stroke (width 0) (type default) (color 0 0 0 0))
  4586. (uuid ed9ead52-6238-44fd-a3d4-0700bcb50d4b)
  4587. )
  4588. (wire (pts (xy 274.32 102.87) (xy 274.32 97.79))
  4589. (stroke (width 0) (type default) (color 0 0 0 0))
  4590. (uuid efd7a1e0-5bed-4583-a94e-5ccec9e4eb74)
  4591. )
  4592. (wire (pts (xy 254 78.74) (xy 265.43 78.74))
  4593. (stroke (width 0) (type default) (color 0 0 0 0))
  4594. (uuid f203116d-f256-4611-a03e-9536bbedaf2f)
  4595. )
  4596. (wire (pts (xy 274.32 73.66) (xy 274.32 68.58))
  4597. (stroke (width 0) (type default) (color 0 0 0 0))
  4598. (uuid f23ac723-a36d-491d-9473-7ec0ffed332d)
  4599. )
  4600. (wire (pts (xy 151.13 105.41) (xy 162.56 105.41))
  4601. (stroke (width 0) (type default) (color 0 0 0 0))
  4602. (uuid f2480d0c-9b08-4037-9175-b2369af04d4c)
  4603. )
  4604. (wire (pts (xy 128.27 93.98) (xy 130.81 93.98))
  4605. (stroke (width 0) (type default) (color 0 0 0 0))
  4606. (uuid f27395de-9934-421f-8875-68b92fffd253)
  4607. )
  4608. (wire (pts (xy 158.75 189.23) (xy 161.29 189.23))
  4609. (stroke (width 0) (type default) (color 0 0 0 0))
  4610. (uuid f284b1e2-75a4-4a3f-a5f4-6f05f15fb4f5)
  4611. )
  4612. (wire (pts (xy 158.75 87.63) (xy 158.75 85.09))
  4613. (stroke (width 0) (type default) (color 0 0 0 0))
  4614. (uuid f447e585-df78-4239-b8cb-4653b3837bb1)
  4615. )
  4616. (wire (pts (xy 162.56 85.09) (xy 158.75 85.09))
  4617. (stroke (width 0) (type default) (color 0 0 0 0))
  4618. (uuid f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
  4619. )
  4620. (wire (pts (xy 254 97.79) (xy 265.43 97.79))
  4621. (stroke (width 0) (type default) (color 0 0 0 0))
  4622. (uuid f4aae365-6c70-41da-9253-52b239e8f5e6)
  4623. )
  4624. (wire (pts (xy 270.51 107.95) (xy 274.32 107.95))
  4625. (stroke (width 0) (type default) (color 0 0 0 0))
  4626. (uuid f5eb7390-4215-4bb5-bc53-f82f663cc9a5)
  4627. )
  4628. (wire (pts (xy 242.57 138.43) (xy 248.92 138.43))
  4629. (stroke (width 0) (type default) (color 0 0 0 0))
  4630. (uuid f699494a-77d6-4c73-bd50-29c1c1c5b879)
  4631. )
  4632. (wire (pts (xy 54.61 116.84) (xy 55.88 116.84))
  4633. (stroke (width 0) (type default) (color 0 0 0 0))
  4634. (uuid f6a5c856-f2b5-40eb-a958-b666a0d408a0)
  4635. )
  4636. (wire (pts (xy 49.53 189.23) (xy 64.77 189.23))
  4637. (stroke (width 0) (type default) (color 0 0 0 0))
  4638. (uuid f8e330f1-723d-46db-b5fa-90c7bd2e3c19)
  4639. )
  4640. (wire (pts (xy 111.76 96.52) (xy 111.76 99.06))
  4641. (stroke (width 0) (type default) (color 0 0 0 0))
  4642. (uuid f9320816-e65b-4f3a-aaf1-d8542dc397ef)
  4643. )
  4644. (wire (pts (xy 158.75 69.85) (xy 158.75 72.39))
  4645. (stroke (width 0) (type default) (color 0 0 0 0))
  4646. (uuid fc3d51c1-8b35-4da3-a742-0ebe104989d7)
  4647. )
  4648. (wire (pts (xy 274.32 68.58) (xy 274.32 63.5))
  4649. (stroke (width 0) (type default) (color 0 0 0 0))
  4650. (uuid fd60415a-f01a-46c5-9369-ea970e435e5b)
  4651. )
  4652. (text "WRITE INHIBIT" (at 207.01 125.095 0)
  4653. (effects (font (size 1.27 1.27)) (justify left bottom))
  4654. (uuid 044de712-d3da-40ed-9c9f-d91ef285c74c)
  4655. )
  4656. (text "ST-LINK" (at 261.62 140.97 0)
  4657. (effects (font (size 1.27 1.27)) (justify left bottom))
  4658. (uuid 8220ba36-5fda-4461-95e2-49a5bc0c76af)
  4659. )
  4660. (label "~{WR_GATE}" (at 242.57 128.27 0)
  4661. (effects (font (size 1.27 1.27)) (justify left bottom))
  4662. (uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51)
  4663. )
  4664. (label "~{WR_DAT}" (at 30.48 83.82 180)
  4665. (effects (font (size 1.27 1.27)) (justify right bottom))
  4666. (uuid 044dde97-ee2e-473a-9264-ed4dff1893a5)
  4667. )
  4668. (label "~{WR_DATA}" (at 226.06 118.11 180)
  4669. (effects (font (size 1.27 1.27)) (justify right bottom))
  4670. (uuid 04ab0cfd-0e8d-474e-bc39-9b21c3d360c9)
  4671. )
  4672. (label "LED1" (at 30.48 154.94 180)
  4673. (effects (font (size 1.27 1.27)) (justify right bottom))
  4674. (uuid 0a5610bb-d01a-4417-8271-dc424dd2c838)
  4675. )
  4676. (label "~{RDY}" (at 255.27 113.03 0)
  4677. (effects (font (size 1.27 1.27)) (justify left bottom))
  4678. (uuid 0b110cbc-e477-4bdc-9c81-26a3d588d354)
  4679. )
  4680. (label "~{DENSEL}" (at 128.27 45.72 0)
  4681. (effects (font (size 1.27 1.27)) (justify left bottom))
  4682. (uuid 0f66079d-975f-43b2-9b94-5ed2a07d9162)
  4683. )
  4684. (label "~{DIR}" (at 255.27 63.5 0)
  4685. (effects (font (size 1.27 1.27)) (justify left bottom))
  4686. (uuid 112371bd-7aa2-4b47-b184-50d12afc2534)
  4687. )
  4688. (label "RX" (at 30.48 104.14 180)
  4689. (effects (font (size 1.27 1.27)) (justify right bottom))
  4690. (uuid 113ffcdf-4c54-4e37-81dc-f91efa934ba7)
  4691. )
  4692. (label "RXE_N" (at 50.8 194.31 0)
  4693. (effects (font (size 1.27 1.27)) (justify left bottom))
  4694. (uuid 117925c1-afea-41fc-b518-60288f690804)
  4695. )
  4696. (label "~{DRIVE1}" (at 176.53 77.47 0)
  4697. (effects (font (size 1.27 1.27)) (justify left bottom))
  4698. (uuid 11c46ed6-a4c0-496e-aeea-27757b88d27c)
  4699. )
  4700. (label "~{DRIVE1}" (at 226.06 67.31 180)
  4701. (effects (font (size 1.27 1.27)) (justify right bottom))
  4702. (uuid 1222150b-916f-4129-817c-4d0356e5a191)
  4703. )
  4704. (label "~{TRK_00}" (at 176.53 95.25 0)
  4705. (effects (font (size 1.27 1.27)) (justify left bottom))
  4706. (uuid 178ae27e-edb9-4ffb-bd13-c0a6dd659606)
  4707. )
  4708. (label "BE_1" (at 56.515 134.62 0)
  4709. (effects (font (size 1.27 1.27)) (justify left bottom))
  4710. (uuid 1931f864-e76e-4b4c-a08c-21941904eaa3)
  4711. )
  4712. (label "TXE_N" (at 50.8 191.77 0)
  4713. (effects (font (size 1.27 1.27)) (justify left bottom))
  4714. (uuid 1a7826b7-68bc-414b-aab8-8fada4a422e8)
  4715. )
  4716. (label "BE_0" (at 50.8 179.07 0)
  4717. (effects (font (size 1.27 1.27)) (justify left bottom))
  4718. (uuid 1cae581d-51c9-42bf-bd4d-9b4ad5d63797)
  4719. )
  4720. (label "~{SIDE}" (at 255.27 83.82 0)
  4721. (effects (font (size 1.27 1.27)) (justify left bottom))
  4722. (uuid 1d0d5161-c82f-4c77-a9ca-15d017db65d3)
  4723. )
  4724. (label "~{DENSEL}" (at 176.53 64.77 0)
  4725. (effects (font (size 1.27 1.27)) (justify left bottom))
  4726. (uuid 1f9fc6ff-03a6-460e-ba12-d6a241cd0f48)
  4727. )
  4728. (label "~{INDEX}" (at 24.13 185.42 180)
  4729. (effects (font (size 1.27 1.27)) (justify right bottom))
  4730. (uuid 1fb62290-089a-4cdf-b37b-f810068b852c)
  4731. )
  4732. (label "INUSE" (at 130.81 63.5 0)
  4733. (effects (font (size 1.27 1.27)) (justify left bottom))
  4734. (uuid 21783cf4-91af-460e-ac99-9922d6b7d60e)
  4735. )
  4736. (label "~{MOTOR_EN}" (at 130.81 66.04 0)
  4737. (effects (font (size 1.27 1.27)) (justify left bottom))
  4738. (uuid 21872bbc-f7bd-4fc9-89e0-5de9dc30b08f)
  4739. )
  4740. (label "~{DIR}" (at 24.13 180.34 180)
  4741. (effects (font (size 1.27 1.27)) (justify right bottom))
  4742. (uuid 22cee2fe-730e-411c-83d4-d741c8e3424c)
  4743. )
  4744. (label "USB_D-" (at 161.29 189.23 0)
  4745. (effects (font (size 1.27 1.27)) (justify left bottom))
  4746. (uuid 232ccf4f-3322-4e62-990b-290e6ff36fcd)
  4747. )
  4748. (label "~{DENSEL}" (at 226.06 27.94 180)
  4749. (effects (font (size 1.27 1.27)) (justify right bottom))
  4750. (uuid 238f9083-46e5-4f0c-bcf3-448afb2553f6)
  4751. )
  4752. (label "~{DS1}" (at 242.57 67.31 0)
  4753. (effects (font (size 1.27 1.27)) (justify left bottom))
  4754. (uuid 2518d4ea-25cc-4e57-a0d6-8482034e7318)
  4755. )
  4756. (label "~{DS1}" (at 30.48 121.92 180)
  4757. (effects (font (size 1.27 1.27)) (justify right bottom))
  4758. (uuid 254f7cc6-cee1-44ca-9afe-939b318201aa)
  4759. )
  4760. (label "~{RDY}" (at 176.53 105.41 0)
  4761. (effects (font (size 1.27 1.27)) (justify left bottom))
  4762. (uuid 25c663ff-96b6-4263-a06e-d1829409cf73)
  4763. )
  4764. (label "~{M0_EN}" (at 167.64 139.7 180)
  4765. (effects (font (size 1.27 1.27)) (justify right bottom))
  4766. (uuid 26444c2f-6072-46b6-bb67-df561d826796)
  4767. )
  4768. (label "~{FLIPPY}" (at 55.88 81.28 0)
  4769. (effects (font (size 1.27 1.27)) (justify left bottom))
  4770. (uuid 26a22c19-4cc5-4237-9651-0edc4f854154)
  4771. )
  4772. (label "SWDIO" (at 219.71 153.67 0)
  4773. (effects (font (size 1.27 1.27)) (justify left bottom))
  4774. (uuid 2900965f-8b8d-458a-b86a-6e9955743074)
  4775. )
  4776. (label "~{M1_EN}" (at 167.64 143.51 180)
  4777. (effects (font (size 1.27 1.27)) (justify right bottom))
  4778. (uuid 2b295bac-9753-4da5-990b-f753b6ce9bda)
  4779. )
  4780. (label "~{STEPS}" (at 130.81 88.9 0)
  4781. (effects (font (size 1.27 1.27)) (justify left bottom))
  4782. (uuid 2bd46b23-cd1b-4758-94b3-eaa8bb441c6c)
  4783. )
  4784. (label "BE_0" (at 56.515 132.08 0)
  4785. (effects (font (size 1.27 1.27)) (justify left bottom))
  4786. (uuid 2c56bcd0-deac-4672-8d58-7ff821dbcc41)
  4787. )
  4788. (label "~{TG43_0}" (at 78.74 106.68 180)
  4789. (effects (font (size 1.27 1.27)) (justify right bottom))
  4790. (uuid 2cb237d0-5497-49f3-996f-bda143f4cb08)
  4791. )
  4792. (label "~{WR_PROT}" (at 130.81 99.06 0)
  4793. (effects (font (size 1.27 1.27)) (justify left bottom))
  4794. (uuid 2f9c49f2-2034-4978-8916-aa0655e2f9f8)
  4795. )
  4796. (label "~{DENS}" (at 255.27 27.94 0)
  4797. (effects (font (size 1.27 1.27)) (justify left bottom))
  4798. (uuid 31bfc3e7-147b-4531-a0c5-e3a305c1647d)
  4799. )
  4800. (label "~{M0_EN}" (at 226.06 57.15 180)
  4801. (effects (font (size 1.27 1.27)) (justify right bottom))
  4802. (uuid 33495d31-b72d-44fa-9c0f-389fb23eb659)
  4803. )
  4804. (label "~{M0}" (at 255.27 43.18 0)
  4805. (effects (font (size 1.27 1.27)) (justify left bottom))
  4806. (uuid 363189af-2faa-46a4-b025-5a779d801f2e)
  4807. )
  4808. (label "~{INDEX}" (at 130.81 68.58 0)
  4809. (effects (font (size 1.27 1.27)) (justify left bottom))
  4810. (uuid 371e69e8-c492-4e8d-85fd-3ca4ff5c48dc)
  4811. )
  4812. (label "SPARE2" (at 255.27 38.1 0)
  4813. (effects (font (size 1.27 1.27)) (justify left bottom))
  4814. (uuid 37657eee-b379-4145-b65d-79c82b53e49e)
  4815. )
  4816. (label "~{WR_GATE_OUT}" (at 130.81 93.98 0)
  4817. (effects (font (size 1.27 1.27)) (justify left bottom))
  4818. (uuid 38029921-f5d0-4b06-b806-54c68d329f8c)
  4819. )
  4820. (label "USB_D+" (at 30.48 160.02 180)
  4821. (effects (font (size 1.27 1.27)) (justify right bottom))
  4822. (uuid 3a1a39fc-8030-4c93-9d9c-d79ba6824099)
  4823. )
  4824. (label "~{RD_DATA" (at 130.81 101.6 0)
  4825. (effects (font (size 1.27 1.27)) (justify left bottom))
  4826. (uuid 3d9da780-2975-4cf6-8d88-e86bfca02620)
  4827. )
  4828. (label "SWCLK" (at 30.48 114.3 180)
  4829. (effects (font (size 1.27 1.27)) (justify right bottom))
  4830. (uuid 3f2a6679-91d7-4b6c-bf5c-c4d5abb2bc44)
  4831. )
  4832. (label "~{RD_DATA" (at 24.13 175.26 180)
  4833. (effects (font (size 1.27 1.27)) (justify right bottom))
  4834. (uuid 41e02b86-e75d-48dd-b73f-1ca41019a3da)
  4835. )
  4836. (label "~{WR_DATA}" (at 176.53 90.17 0)
  4837. (effects (font (size 1.27 1.27)) (justify left bottom))
  4838. (uuid 43d52763-bb58-40dc-85ff-f539d4a17e32)
  4839. )
  4840. (label "~{DIR}" (at 55.88 88.9 0)
  4841. (effects (font (size 1.27 1.27)) (justify left bottom))
  4842. (uuid 4970ec6e-3725-4619-b57d-dc2c2cb86ed0)
  4843. )
  4844. (label "ID1" (at 146.05 167.64 180)
  4845. (effects (font (size 1.27 1.27)) (justify right bottom))
  4846. (uuid 49d97c73-e37a-4154-9d0a-88037e40cc11)
  4847. )
  4848. (label "SWCLK" (at 266.7 146.05 0)
  4849. (effects (font (size 1.27 1.27)) (justify left bottom))
  4850. (uuid 4b471778-f61d-4b9d-a507-3d4f82ec4b7c)
  4851. )
  4852. (label "~{M1_EN}" (at 226.06 87.63 180)
  4853. (effects (font (size 1.27 1.27)) (justify right bottom))
  4854. (uuid 4b8b9044-1b17-4fac-b8d3-7511d3efd589)
  4855. )
  4856. (label "~{DENS}" (at 30.48 152.4 180)
  4857. (effects (font (size 1.27 1.27)) (justify right bottom))
  4858. (uuid 4ce9470f-5633-41bf-89ac-74a810939893)
  4859. )
  4860. (label "RXE_N" (at 57.15 124.46 0)
  4861. (effects (font (size 1.27 1.27)) (justify left bottom))
  4862. (uuid 4e28e2fb-698a-4635-ae33-0d53221f701f)
  4863. )
  4864. (label "~{RDY}" (at 130.81 58.42 0)
  4865. (effects (font (size 1.27 1.27)) (justify left bottom))
  4866. (uuid 4ed83c86-6683-48d9-ad36-3c4016416c3c)
  4867. )
  4868. (label "~{STEP}" (at 242.57 107.95 0)
  4869. (effects (font (size 1.27 1.27)) (justify left bottom))
  4870. (uuid 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd)
  4871. )
  4872. (label "PB[0..11]" (at 52.07 176.53 0)
  4873. (effects (font (size 1.27 1.27)) (justify left bottom))
  4874. (uuid 51bc70a6-2f66-431d-9492-186dca686508)
  4875. )
  4876. (label "~{M1}" (at 30.48 147.32 180)
  4877. (effects (font (size 1.27 1.27)) (justify right bottom))
  4878. (uuid 51cc007a-3378-4ce3-909c-71e94822f8d1)
  4879. )
  4880. (label "P_STUSB" (at 79.375 111.76 180)
  4881. (effects (font (size 1.27 1.27)) (justify right bottom))
  4882. (uuid 57bbd8ea-1586-4678-a626-0bffa2aa9c36)
  4883. )
  4884. (label "~{TG43_0}" (at 68.58 50.8 180)
  4885. (effects (font (size 1.27 1.27)) (justify right bottom))
  4886. (uuid 57ca04c1-dd22-43ca-a802-639ad9d92015)
  4887. )
  4888. (label "~{DRIVE0}" (at 130.81 76.2 0)
  4889. (effects (font (size 1.27 1.27)) (justify left bottom))
  4890. (uuid 5860b84f-3484-424c-8cae-5de0b22df872)
  4891. )
  4892. (label "PA[0..11]" (at 52.07 173.99 0)
  4893. (effects (font (size 1.27 1.27)) (justify left bottom))
  4894. (uuid 59e058da-2964-4ef6-bd9a-9c7aa026d0b2)
  4895. )
  4896. (label "~{STEP}" (at 255.27 68.58 0)
  4897. (effects (font (size 1.27 1.27)) (justify left bottom))
  4898. (uuid 5c32b099-dba7-4228-8a5e-c2156f635ce2)
  4899. )
  4900. (label "~{TRK_00}" (at 24.13 182.88 180)
  4901. (effects (font (size 1.27 1.27)) (justify right bottom))
  4902. (uuid 5ce4df25-e816-4843-9a48-29160907263a)
  4903. )
  4904. (label "INUSE" (at 226.06 36.83 180)
  4905. (effects (font (size 1.27 1.27)) (justify right bottom))
  4906. (uuid 5eb94574-4b17-4405-ab0e-af45ba088621)
  4907. )
  4908. (label "~{M0}" (at 30.48 124.46 180)
  4909. (effects (font (size 1.27 1.27)) (justify right bottom))
  4910. (uuid 5f48b0f2-82cf-40ce-afac-440f97643c36)
  4911. )
  4912. (label "RX" (at 109.22 34.29 180)
  4913. (effects (font (size 1.27 1.27)) (justify right bottom))
  4914. (uuid 629fdb7a-7978-43d0-987e-b84465775826)
  4915. )
  4916. (label "ID1" (at 55.88 114.3 0)
  4917. (effects (font (size 1.27 1.27)) (justify left bottom))
  4918. (uuid 62f15a9a-9893-486e-9ad0-ea43f88fc9e7)
  4919. )
  4920. (label "~{DRIVE0}" (at 176.53 80.01 0)
  4921. (effects (font (size 1.27 1.27)) (justify left bottom))
  4922. (uuid 6406f0fb-9933-4ab4-8954-3fcb06c214bc)
  4923. )
  4924. (label "~{TRK_00}" (at 30.48 86.36 180)
  4925. (effects (font (size 1.27 1.27)) (justify right bottom))
  4926. (uuid 661ca2ba-bce5-4308-99a6-de333a625515)
  4927. )
  4928. (label "~{RD_DATA}" (at 255.27 107.95 0)
  4929. (effects (font (size 1.27 1.27)) (justify left bottom))
  4930. (uuid 6762c669-2824-49a2-8bd4-3f19091dd75a)
  4931. )
  4932. (label "BE_3" (at 56.515 139.7 0)
  4933. (effects (font (size 1.27 1.27)) (justify left bottom))
  4934. (uuid 69fc5468-ed19-4664-a4ec-e0f951e6bffa)
  4935. )
  4936. (label "BE_2" (at 56.515 137.16 0)
  4937. (effects (font (size 1.27 1.27)) (justify left bottom))
  4938. (uuid 6b132a4e-6d89-4c40-8542-6c0fa51a94d3)
  4939. )
  4940. (label "USB_D+" (at 161.29 185.42 0)
  4941. (effects (font (size 1.27 1.27)) (justify left bottom))
  4942. (uuid 6d7ff8c0-8a2a-4636-844f-c7210ff3e6f2)
  4943. )
  4944. (label "~{WR_GATE}" (at 255.27 78.74 0)
  4945. (effects (font (size 1.27 1.27)) (justify left bottom))
  4946. (uuid 6f1beb86-67e1-46bf-8c2b-6d1e1485d5c0)
  4947. )
  4948. (label "~{DIR}" (at 242.57 97.79 0)
  4949. (effects (font (size 1.27 1.27)) (justify left bottom))
  4950. (uuid 71af7b65-0e6b-402e-b1a4-b66be507b4dc)
  4951. )
  4952. (label "~{INDEX}" (at 176.53 72.39 0)
  4953. (effects (font (size 1.27 1.27)) (justify left bottom))
  4954. (uuid 73fbe87f-3928-49c2-bf87-839d907c6aef)
  4955. )
  4956. (label "~{STEP}" (at 30.48 96.52 180)
  4957. (effects (font (size 1.27 1.27)) (justify right bottom))
  4958. (uuid 755f94aa-38f0-4a64-a7c7-6c71cb18cddf)
  4959. )
  4960. (label "SPARE1" (at 255.27 33.02 0)
  4961. (effects (font (size 1.27 1.27)) (justify left bottom))
  4962. (uuid 7668b629-abd6-4e14-be84-df90ae487fc6)
  4963. )
  4964. (label "~{M1}" (at 242.57 87.63 0)
  4965. (effects (font (size 1.27 1.27)) (justify left bottom))
  4966. (uuid 799e761c-1426-40e9-a069-1f4cb353bfaa)
  4967. )
  4968. (label "INUSE" (at 176.53 67.31 0)
  4969. (effects (font (size 1.27 1.27)) (justify left bottom))
  4970. (uuid 7b41936f-8892-4c2e-8a5d-04d1cd2d6fa3)
  4971. )
  4972. (label "~{WR_DAT}" (at 255.27 73.66 0)
  4973. (effects (font (size 1.27 1.27)) (justify left bottom))
  4974. (uuid 7ca71fec-e7f1-454f-9196-b80d15925fff)
  4975. )
  4976. (label "~{DIRECTION}" (at 226.06 97.79 180)
  4977. (effects (font (size 1.27 1.27)) (justify right bottom))
  4978. (uuid 7ca974e9-cb7c-4def-9cab-b7ce7bb7ac62)
  4979. )
  4980. (label "~{SIDE_SEL}" (at 176.53 102.87 0)
  4981. (effects (font (size 1.27 1.27)) (justify left bottom))
  4982. (uuid 8196cec5-f23f-4729-a049-5f8821aabad6)
  4983. )
  4984. (label "~{DS0}" (at 30.48 149.86 180)
  4985. (effects (font (size 1.27 1.27)) (justify right bottom))
  4986. (uuid 83184391-76ed-44f0-8cd0-01f89f157bdb)
  4987. )
  4988. (label "~{WR_DAT}" (at 242.57 118.11 0)
  4989. (effects (font (size 1.27 1.27)) (justify left bottom))
  4990. (uuid 86e98417-f5e4-48ba-8147-ef66cc03dde6)
  4991. )
  4992. (label "~{WR_PROT}" (at 30.48 81.28 180)
  4993. (effects (font (size 1.27 1.27)) (justify right bottom))
  4994. (uuid 8ae05d37-86b4-45ea-800f-f1f9fb167857)
  4995. )
  4996. (label "SPARE2" (at 80.01 116.84 180)
  4997. (effects (font (size 1.27 1.27)) (justify right bottom))
  4998. (uuid 94d24676-7ae3-483c-8bd6-88d31adf00b4)
  4999. )
  5000. (label "ID0" (at 130.81 167.64 180)
  5001. (effects (font (size 1.27 1.27)) (justify right bottom))
  5002. (uuid 9505be36-b21c-4db8-9484-dd0861395d26)
  5003. )
  5004. (label "ID2" (at 157.48 167.64 180)
  5005. (effects (font (size 1.27 1.27)) (justify right bottom))
  5006. (uuid 961b4579-9ee8-407a-89a7-81f36f1ad865)
  5007. )
  5008. (label "~{WR_GATE_OUT}" (at 176.53 92.71 0)
  5009. (effects (font (size 1.27 1.27)) (justify left bottom))
  5010. (uuid 96cde6a5-b5a4-41f4-be57-14529a48aa65)
  5011. )
  5012. (label "~{DRIVE1}" (at 130.81 78.74 0)
  5013. (effects (font (size 1.27 1.27)) (justify left bottom))
  5014. (uuid 998438c1-cf31-461b-9870-09f708a5cd72)
  5015. )
  5016. (label "SPARE2" (at 242.57 46.99 0)
  5017. (effects (font (size 1.27 1.27)) (justify left bottom))
  5018. (uuid 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7)
  5019. )
  5020. (label "~{WR_DATA}" (at 130.81 91.44 0)
  5021. (effects (font (size 1.27 1.27)) (justify left bottom))
  5022. (uuid 9a445d32-7123-4c5a-9f28-0b3a5e65e844)
  5023. )
  5024. (label "TX" (at 109.22 31.75 180)
  5025. (effects (font (size 1.27 1.27)) (justify right bottom))
  5026. (uuid 9c5933cf-1535-4465-90dd-da9b75afcdcf)
  5027. )
  5028. (label "~{WR_GATE}" (at 30.48 93.98 180)
  5029. (effects (font (size 1.27 1.27)) (justify right bottom))
  5030. (uuid 9ed09117-33cf-45a3-85a7-2606522feaf8)
  5031. )
  5032. (label "~{WR_GATE_OUT}" (at 204.47 128.27 180)
  5033. (effects (font (size 1.27 1.27)) (justify right bottom))
  5034. (uuid a39e442b-564b-427c-8c97-ea8707b3a1d8)
  5035. )
  5036. (label "ID0" (at 55.88 111.76 0)
  5037. (effects (font (size 1.27 1.27)) (justify left bottom))
  5038. (uuid a3fab380-991d-404b-95d5-1c209b047b6e)
  5039. )
  5040. (label "BE_2" (at 50.8 184.15 0)
  5041. (effects (font (size 1.27 1.27)) (justify left bottom))
  5042. (uuid a68a9d4a-9c01-49ba-b114-c53d4012d6ea)
  5043. )
  5044. (label "~{WR_PROT}" (at 255.27 102.87 0)
  5045. (effects (font (size 1.27 1.27)) (justify left bottom))
  5046. (uuid a9d76dfc-52ba-46de-beb4-dab7b94ee663)
  5047. )
  5048. (label "USB_D-" (at 30.48 157.48 180)
  5049. (effects (font (size 1.27 1.27)) (justify right bottom))
  5050. (uuid aa23bfe3-454b-4a2b-bfe1-101c747eb84e)
  5051. )
  5052. (label "~{WR_PROT}" (at 176.53 97.79 0)
  5053. (effects (font (size 1.27 1.27)) (justify left bottom))
  5054. (uuid aa8663be-9516-4b07-84d2-4c4d668b8596)
  5055. )
  5056. (label "~{SIDE}" (at 55.88 86.36 0)
  5057. (effects (font (size 1.27 1.27)) (justify left bottom))
  5058. (uuid ad4d05f5-6957-42f8-b65c-c657b9a26485)
  5059. )
  5060. (label "~{TRK_00}" (at 130.81 96.52 0)
  5061. (effects (font (size 1.27 1.27)) (justify left bottom))
  5062. (uuid ae2627f8-bfa0-44d6-8ce5-4df81452e696)
  5063. )
  5064. (label "ID2" (at 55.88 116.84 0)
  5065. (effects (font (size 1.27 1.27)) (justify left bottom))
  5066. (uuid b2b363dd-8e47-4a76-a142-e00e28334875)
  5067. )
  5068. (label "BE_3" (at 50.8 186.69 0)
  5069. (effects (font (size 1.27 1.27)) (justify left bottom))
  5070. (uuid b3390bbe-f381-4106-a540-3cdda6967f5e)
  5071. )
  5072. (label "~{MOTOR_EN}" (at 184.15 139.7 0)
  5073. (effects (font (size 1.27 1.27)) (justify left bottom))
  5074. (uuid b59fca79-e320-4eb0-83be-1506dc492388)
  5075. )
  5076. (label "~{M1_EN}" (at 176.53 82.55 0)
  5077. (effects (font (size 1.27 1.27)) (justify left bottom))
  5078. (uuid b60fe4b1-9c0f-4a22-9c47-1eb969b306ae)
  5079. )
  5080. (label "~{DS1}" (at 255.27 48.26 0)
  5081. (effects (font (size 1.27 1.27)) (justify left bottom))
  5082. (uuid b66b83a0-313f-4b03-b851-c6e9577a6eb7)
  5083. )
  5084. (label "~{DENS}" (at 242.57 27.94 0)
  5085. (effects (font (size 1.27 1.27)) (justify left bottom))
  5086. (uuid b794d099-f823-4d35-9755-ca1c45247ee9)
  5087. )
  5088. (label "LED1" (at 57.15 43.18 180)
  5089. (effects (font (size 1.27 1.27)) (justify right bottom))
  5090. (uuid b7ac5cea-ed28-4028-87d0-45e58c709cf1)
  5091. )
  5092. (label "SWCLK" (at 219.71 156.21 0)
  5093. (effects (font (size 1.27 1.27)) (justify left bottom))
  5094. (uuid b83c0b65-9035-44f4-9939-bf63baaf6b52)
  5095. )
  5096. (label "~{STEPS}" (at 176.53 87.63 0)
  5097. (effects (font (size 1.27 1.27)) (justify left bottom))
  5098. (uuid b8d45b0e-7a89-4c6a-bafb-b38131792b26)
  5099. )
  5100. (label "~{DIRECTION}" (at 130.81 86.36 0)
  5101. (effects (font (size 1.27 1.27)) (justify left bottom))
  5102. (uuid be0d4b70-103c-4e11-a759-a5fbc6164b7c)
  5103. )
  5104. (label "~{RDY}" (at 55.88 83.82 0)
  5105. (effects (font (size 1.27 1.27)) (justify left bottom))
  5106. (uuid c1b11207-7c0a-49b3-a41d-2fe677d5f3b8)
  5107. )
  5108. (label "~{STEPS}" (at 226.06 107.95 180)
  5109. (effects (font (size 1.27 1.27)) (justify right bottom))
  5110. (uuid c283c5c5-a3f3-492b-abc6-13a971f417c7)
  5111. )
  5112. (label "~{TG43_1}" (at 68.58 53.34 180)
  5113. (effects (font (size 1.27 1.27)) (justify right bottom))
  5114. (uuid c45dfc0a-ba10-4db5-ab69-2d89343fe369)
  5115. )
  5116. (label "P_STUSB" (at 125.73 184.15 0)
  5117. (effects (font (size 1.27 1.27)) (justify left bottom))
  5118. (uuid c73639f1-fcbc-430f-b4de-ad2f2e664dfe)
  5119. )
  5120. (label "SWDIO" (at 30.48 111.76 180)
  5121. (effects (font (size 1.27 1.27)) (justify right bottom))
  5122. (uuid c7cd39db-931a-4d86-96b8-57e6b39f58f9)
  5123. )
  5124. (label "~{M0_EN}" (at 176.53 74.93 0)
  5125. (effects (font (size 1.27 1.27)) (justify left bottom))
  5126. (uuid c7f2486c-d7b2-4a7b-aa54-8db7dad7108b)
  5127. )
  5128. (label "ID0" (at 114.3 166.37 180)
  5129. (effects (font (size 1.27 1.27)) (justify right bottom))
  5130. (uuid ce3c8b7c-3419-4d70-91ee-74fba7e4b950)
  5131. )
  5132. (label "~{TG43_1}" (at 78.74 109.22 180)
  5133. (effects (font (size 1.27 1.27)) (justify right bottom))
  5134. (uuid d035fc5a-c842-4a93-b621-a2ae773113e7)
  5135. )
  5136. (label "~{SIDE}" (at 24.13 190.5 180)
  5137. (effects (font (size 1.27 1.27)) (justify right bottom))
  5138. (uuid d28a78ab-2168-4efb-aa09-70733b60123c)
  5139. )
  5140. (label "~{RD_DATA}" (at 30.226 78.74 180)
  5141. (effects (font (size 1.27 1.27)) (justify right bottom))
  5142. (uuid d790ac31-48e7-4e4b-82dc-634404122ce7)
  5143. )
  5144. (label "~{TRK_00}" (at 255.27 97.79 0)
  5145. (effects (font (size 1.27 1.27)) (justify left bottom))
  5146. (uuid d9cf2d61-3126-40fe-a66d-ae5145f94be8)
  5147. )
  5148. (label "~{SIDE_SEL}" (at 217.17 138.43 0)
  5149. (effects (font (size 1.27 1.27)) (justify left bottom))
  5150. (uuid daa508c5-8f27-4b6f-ae12-3bffccc2008e)
  5151. )
  5152. (label "~{DS0}" (at 255.27 53.34 0)
  5153. (effects (font (size 1.27 1.27)) (justify left bottom))
  5154. (uuid dad2f9a9-292b-4f7e-9524-a263f3c1ba74)
  5155. )
  5156. (label "~{M0}" (at 242.57 57.15 0)
  5157. (effects (font (size 1.27 1.27)) (justify left bottom))
  5158. (uuid db851147-6a1e-4d19-898c-0ba71182359b)
  5159. )
  5160. (label "~{DIRECTION}" (at 176.53 85.09 0)
  5161. (effects (font (size 1.27 1.27)) (justify left bottom))
  5162. (uuid dcbaec81-1b4e-42e0-bf43-284215f091f7)
  5163. )
  5164. (label "TX" (at 30.48 101.6 180)
  5165. (effects (font (size 1.27 1.27)) (justify right bottom))
  5166. (uuid dd70858b-2f9a-4b3f-9af5-ead3a9ba57e9)
  5167. )
  5168. (label "SPARE1" (at 242.57 36.83 0)
  5169. (effects (font (size 1.27 1.27)) (justify left bottom))
  5170. (uuid de370984-7922-4327-a0ba-7cd613995df4)
  5171. )
  5172. (label "~{INDEX}" (at 255.27 92.71 0)
  5173. (effects (font (size 1.27 1.27)) (justify left bottom))
  5174. (uuid df5c9f6b-a62e-44ba-997f-b2cf3279c7d4)
  5175. )
  5176. (label "~{RD_DATA}" (at 176.53 100.33 0)
  5177. (effects (font (size 1.27 1.27)) (justify left bottom))
  5178. (uuid dfcef016-1bf5-4158-8a79-72d38a522877)
  5179. )
  5180. (label "SPARE1" (at 80.01 114.3 180)
  5181. (effects (font (size 1.27 1.27)) (justify right bottom))
  5182. (uuid e45aa7d8-0254-4176-afd9-766820762e19)
  5183. )
  5184. (label "BE_1" (at 50.8 181.61 0)
  5185. (effects (font (size 1.27 1.27)) (justify left bottom))
  5186. (uuid e5becfa8-468c-448d-aaea-f82fad86fd9e)
  5187. )
  5188. (label "~{DS0}" (at 242.57 77.47 0)
  5189. (effects (font (size 1.27 1.27)) (justify left bottom))
  5190. (uuid e69c64f9-717d-4a97-b3df-80325ec2fa63)
  5191. )
  5192. (label "~{SIDE}" (at 242.57 138.43 0)
  5193. (effects (font (size 1.27 1.27)) (justify left bottom))
  5194. (uuid e70d061b-28f0-4421-ad15-0598604086e8)
  5195. )
  5196. (label "~{INDEX}" (at 30.48 127 180)
  5197. (effects (font (size 1.27 1.27)) (justify right bottom))
  5198. (uuid e86e4fae-9ca7-4857-a93c-bc6a3048f887)
  5199. )
  5200. (label "~{RDY}" (at 24.13 187.96 180)
  5201. (effects (font (size 1.27 1.27)) (justify right bottom))
  5202. (uuid f2b56347-0c47-4bbc-8fbc-afd4af879320)
  5203. )
  5204. (label "~{M1}" (at 255.27 58.42 0)
  5205. (effects (font (size 1.27 1.27)) (justify left bottom))
  5206. (uuid f4117d3e-819d-4d33-bf85-69e28ba32fe5)
  5207. )
  5208. (label "~{DRIVE0}" (at 226.06 77.47 180)
  5209. (effects (font (size 1.27 1.27)) (justify right bottom))
  5210. (uuid f5987f1b-b17c-450e-95c5-6acf6dfcf136)
  5211. )
  5212. (label "~{FLIPPY}" (at 139.7 105.41 270)
  5213. (effects (font (size 1.27 1.27)) (justify right bottom))
  5214. (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
  5215. )
  5216. (label "~{SIDE_SEL}" (at 130.81 60.96 0)
  5217. (effects (font (size 1.27 1.27)) (justify left bottom))
  5218. (uuid f7b74101-684a-494a-af23-daffa52c836c)
  5219. )
  5220. (label "SWDIO" (at 266.7 148.59 0)
  5221. (effects (font (size 1.27 1.27)) (justify left bottom))
  5222. (uuid f8621ac5-1e7e-4e87-8c69-5fd403df9470)
  5223. )
  5224. (label "ID1" (at 118.11 166.37 180)
  5225. (effects (font (size 1.27 1.27)) (justify right bottom))
  5226. (uuid fb48170c-d7f3-41ce-ac73-664c66386c51)
  5227. )
  5228. (label "TXE_N" (at 57.15 127 0)
  5229. (effects (font (size 1.27 1.27)) (justify left bottom))
  5230. (uuid fd276bbc-bbb7-47d1-b257-52480198750f)
  5231. )
  5232. (label "~{STEP}" (at 24.13 177.8 180)
  5233. (effects (font (size 1.27 1.27)) (justify right bottom))
  5234. (uuid fe15bfaa-dcda-4806-8d15-02807e914ad4)
  5235. )
  5236. (global_label "SCL_3V3" (shape input) (at 29.972 137.16 180) (fields_autoplaced)
  5237. (effects (font (size 1.27 1.27)) (justify right))
  5238. (uuid 95b348ce-a1ec-4474-b8ff-6454bee5f80d)
  5239. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.6649 137.0806 0)
  5240. (effects (font (size 1.27 1.27)) (justify right) hide)
  5241. )
  5242. )
  5243. (global_label "nRST" (shape input) (at 204.47 156.21 180) (fields_autoplaced)
  5244. (effects (font (size 1.27 1.27)) (justify right))
  5245. (uuid d6984b42-b9a8-4892-9bee-b20ffcb9eedf)
  5246. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -45.72 10.16 0)
  5247. (effects (font (size 1.27 1.27)) hide)
  5248. )
  5249. )
  5250. (global_label "nRST" (shape input) (at 250.19 146.05 180) (fields_autoplaced)
  5251. (effects (font (size 1.27 1.27)) (justify right))
  5252. (uuid d8dc9b6c-67d0-4a0d-a791-6f7d43ef3652)
  5253. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  5254. (effects (font (size 1.27 1.27)) hide)
  5255. )
  5256. )
  5257. (global_label "SDA_3V3" (shape input) (at 29.972 139.7 180) (fields_autoplaced)
  5258. (effects (font (size 1.27 1.27)) (justify right))
  5259. (uuid f6cf5603-b183-4632-9453-2e800c25ea22)
  5260. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.6045 139.6206 0)
  5261. (effects (font (size 1.27 1.27)) (justify right) hide)
  5262. )
  5263. )
  5264. (symbol (lib_id "Mechanical:MountingHole") (at 26.67 22.86 0) (unit 1)
  5265. (in_bom yes) (on_board yes)
  5266. (uuid 00000000-0000-0000-0000-000060f2641d)
  5267. (property "Reference" "H1" (id 0) (at 29.21 21.6916 0)
  5268. (effects (font (size 1.27 1.27)) (justify left))
  5269. )
  5270. (property "Value" "MountingHole" (id 1) (at 29.21 24.003 0)
  5271. (effects (font (size 1.27 1.27)) (justify left))
  5272. )
  5273. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 26.67 22.86 0)
  5274. (effects (font (size 1.27 1.27)) hide)
  5275. )
  5276. (property "Datasheet" "~" (id 3) (at 26.67 22.86 0)
  5277. (effects (font (size 1.27 1.27)) hide)
  5278. )
  5279. (property "LCSC" "DNP" (id 4) (at 26.67 22.86 0)
  5280. (effects (font (size 1.27 1.27)) hide)
  5281. )
  5282. )
  5283. (symbol (lib_id "Mechanical:MountingHole") (at 26.67 27.94 0) (unit 1)
  5284. (in_bom yes) (on_board yes)
  5285. (uuid 00000000-0000-0000-0000-000060f2c7b9)
  5286. (property "Reference" "H2" (id 0) (at 29.21 26.7716 0)
  5287. (effects (font (size 1.27 1.27)) (justify left))
  5288. )
  5289. (property "Value" "MountingHole" (id 1) (at 29.21 29.083 0)
  5290. (effects (font (size 1.27 1.27)) (justify left))
  5291. )
  5292. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 26.67 27.94 0)
  5293. (effects (font (size 1.27 1.27)) hide)
  5294. )
  5295. (property "Datasheet" "~" (id 3) (at 26.67 27.94 0)
  5296. (effects (font (size 1.27 1.27)) hide)
  5297. )
  5298. (property "LCSC" "DNP" (id 4) (at 26.67 27.94 0)
  5299. (effects (font (size 1.27 1.27)) hide)
  5300. )
  5301. )
  5302. (symbol (lib_id "Mechanical:MountingHole") (at 26.67 33.02 0) (unit 1)
  5303. (in_bom yes) (on_board yes)
  5304. (uuid 00000000-0000-0000-0000-000060f34430)
  5305. (property "Reference" "H3" (id 0) (at 29.21 31.8516 0)
  5306. (effects (font (size 1.27 1.27)) (justify left))
  5307. )
  5308. (property "Value" "MountingHole" (id 1) (at 29.21 34.163 0)
  5309. (effects (font (size 1.27 1.27)) (justify left))
  5310. )
  5311. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 26.67 33.02 0)
  5312. (effects (font (size 1.27 1.27)) hide)
  5313. )
  5314. (property "Datasheet" "~" (id 3) (at 26.67 33.02 0)
  5315. (effects (font (size 1.27 1.27)) hide)
  5316. )
  5317. (property "LCSC" "DNP" (id 4) (at 26.67 33.02 0)
  5318. (effects (font (size 1.27 1.27)) hide)
  5319. )
  5320. )
  5321. (symbol (lib_id "Mechanical:MountingHole") (at 26.67 38.1 0) (unit 1)
  5322. (in_bom yes) (on_board yes)
  5323. (uuid 00000000-0000-0000-0000-000060f360e1)
  5324. (property "Reference" "H4" (id 0) (at 29.21 36.9316 0)
  5325. (effects (font (size 1.27 1.27)) (justify left))
  5326. )
  5327. (property "Value" "MountingHole" (id 1) (at 29.21 39.243 0)
  5328. (effects (font (size 1.27 1.27)) (justify left))
  5329. )
  5330. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 26.67 38.1 0)
  5331. (effects (font (size 1.27 1.27)) hide)
  5332. )
  5333. (property "Datasheet" "~" (id 3) (at 26.67 38.1 0)
  5334. (effects (font (size 1.27 1.27)) hide)
  5335. )
  5336. (property "LCSC" "DNP" (id 4) (at 26.67 38.1 0)
  5337. (effects (font (size 1.27 1.27)) hide)
  5338. )
  5339. )
  5340. (symbol (lib_id "sm6uax:STM32F730Z8T6") (at 29.21 78.74 0) (unit 2)
  5341. (in_bom yes) (on_board yes)
  5342. (uuid 00000000-0000-0000-0000-000060f41cbf)
  5343. (property "Reference" "U1" (id 0) (at 43.18 72.009 0))
  5344. (property "Value" "STM32F730Z8T6" (id 1) (at 43.18 74.3204 0))
  5345. (property "Footprint" "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (id 2) (at 29.21 68.58 0)
  5346. (effects (font (size 1.27 1.27)) (justify left) hide)
  5347. )
  5348. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f730r8.pdf" (id 3) (at 29.21 66.04 0)
  5349. (effects (font (size 1.27 1.27)) (justify left) hide)
  5350. )
  5351. (property "LCSC" "C508478" (id 4) (at 29.21 78.74 0)
  5352. (effects (font (size 1.27 1.27)) hide)
  5353. )
  5354. (pin "106" (uuid a05e62e5-8a12-4b3a-abcb-36d78716a980))
  5355. (pin "107" (uuid 02bf7031-accf-4a07-9374-b56c96ba51bd))
  5356. (pin "108" (uuid 809e78c9-703b-41bf-879e-8209a04db1e1))
  5357. (pin "120" (uuid 8acf70c6-eaf2-49d7-9d8c-075ebf31d0d3))
  5358. (pin "121" (uuid 5b9978de-deb4-4369-a133-dbacee393331))
  5359. (pin "130" (uuid dbcc2930-ef6a-44e8-8014-9620cb8e40bd))
  5360. (pin "131" (uuid 532fa493-fb02-4ce2-8c75-1264d055dd4e))
  5361. (pin "138" (uuid 224998c1-d3b5-4067-92a8-91edfcf0acc2))
  5362. (pin "143" (uuid 80e3a773-b5c2-4a32-9b19-5322cc9afdb2))
  5363. (pin "144" (uuid 062d2adc-e3f9-4242-90fa-ac44d21f6549))
  5364. (pin "16" (uuid 68a6ee81-2192-4883-9047-bf3fb7421987))
  5365. (pin "17" (uuid 63a973e8-f946-476d-a64d-50d848d46ac6))
  5366. (pin "25" (uuid 7516a090-352e-4b41-8f35-c5ddb45bfc00))
  5367. (pin "30" (uuid 3a9ec382-558b-4f6d-984b-525f80db894a))
  5368. (pin "31" (uuid 1f682622-18e5-48bc-a0fb-aa5d1b3af239))
  5369. (pin "32" (uuid feec0303-d2e1-4bef-a5cc-5b8648d9ef35))
  5370. (pin "33" (uuid 96a3f4b6-b8ec-4c19-9271-fbaac080edb4))
  5371. (pin "38" (uuid 04b81dd7-caba-4820-b03d-495f0947651c))
  5372. (pin "39" (uuid 0abc5089-9496-4301-8951-1f3113da1173))
  5373. (pin "51" (uuid 9ac0c158-d5e1-4c9d-bd73-f7a92cc162e7))
  5374. (pin "52" (uuid caa7fce5-9dd4-4478-bb7c-10cbdcf71188))
  5375. (pin "6" (uuid 5ff9fc6a-806e-49c1-8e18-55dcd8eb9ab3))
  5376. (pin "61" (uuid 0625cd49-10d2-4592-8a20-c259f8c4a606))
  5377. (pin "62" (uuid 24ab808d-3abf-4efb-a211-b18c0d7fe506))
  5378. (pin "71" (uuid 24db9dc7-cf8c-4165-b50d-ccc8a95af4d3))
  5379. (pin "72" (uuid 7d8e457b-34c7-4826-9842-0d341adf088b))
  5380. (pin "75" (uuid 3529c213-b7c7-43f0-b7fb-d27dbfa2de1c))
  5381. (pin "76" (uuid c9d5e295-8a06-45b1-b35a-c6ad2d69a6b2))
  5382. (pin "85" (uuid 3890def0-a9bf-462d-b237-11cda7ea37d8))
  5383. (pin "86" (uuid 43c11780-1021-4c47-9b81-f90559dda7fd))
  5384. (pin "94" (uuid b2211a89-b953-40db-aba2-a3fbe0a5b7da))
  5385. (pin "95" (uuid 7b2c4678-95ad-45a2-8ffc-8bad2ddefc8c))
  5386. (pin "100" (uuid 42482779-f9f2-40ab-baf7-4c1790415678))
  5387. (pin "101" (uuid e3ccee67-8018-467d-8b07-397d5feb3047))
  5388. (pin "102" (uuid 364429d4-c2db-4b92-b5b3-81a955855816))
  5389. (pin "103" (uuid 2c2edfd1-0910-4683-9b11-324fb21e0d16))
  5390. (pin "104" (uuid 8588d019-3df7-4e6c-99b4-c25e560e198f))
  5391. (pin "105" (uuid 5ff816d2-14fe-422a-aec9-0030719e3ff6))
  5392. (pin "109" (uuid 732cf7f1-1497-49fb-9df9-283f13bc9404))
  5393. (pin "110" (uuid 8afe3ccb-06c4-449f-a360-cd097848bd4d))
  5394. (pin "111" (uuid 26551ff6-d2b6-499a-9b1f-76cc044dd976))
  5395. (pin "112" (uuid 4c8451c7-cce3-4abc-89c4-dc2ac5202733))
  5396. (pin "113" (uuid ad58f393-9ae7-4f86-afbb-9666afbf3eb9))
  5397. (pin "114" (uuid 12ab9aa0-7650-4363-b78e-49387aff44ac))
  5398. (pin "115" (uuid 29bdf366-29cb-4aba-a242-14bed940e319))
  5399. (pin "116" (uuid 05cb53dc-04d8-46bb-851d-dc8d2852fc88))
  5400. (pin "117" (uuid d6f1af51-0e95-41dd-a8b8-9ae612c65faa))
  5401. (pin "118" (uuid 7fc5bab0-7e23-48c7-8069-9d335e1f094f))
  5402. (pin "119" (uuid 75565b0e-79d0-4bb9-8c23-bac6cbf61dc1))
  5403. (pin "122" (uuid 8c195c07-ef74-48f2-84eb-404421262d70))
  5404. (pin "123" (uuid 5deaca77-ce5d-4538-bbaa-4d5f26accafd))
  5405. (pin "133" (uuid bac6dc4c-de97-4edb-9ea2-b15d3b1814fc))
  5406. (pin "134" (uuid ca4119e7-0ccd-4468-af69-690a2633ead6))
  5407. (pin "135" (uuid 60daeeeb-ed6d-40d2-803e-e5526dc10d0e))
  5408. (pin "136" (uuid 7ec119d9-9cd1-4e53-8ad0-bc8cee5fc3fd))
  5409. (pin "137" (uuid f3e96e9a-d0a4-412a-8548-1b08376f1473))
  5410. (pin "139" (uuid a43a8018-3e71-4d1f-97fa-068c488081d4))
  5411. (pin "140" (uuid ca8f82f2-88a8-426c-8f24-a25219306dd1))
  5412. (pin "26" (uuid 17282933-a81a-4b61-8ca9-db5ca090bd86))
  5413. (pin "27" (uuid cadab07e-00a4-4e4a-b247-861666897cd6))
  5414. (pin "28" (uuid 2189d1be-0ed2-4565-afed-3c37f89f419d))
  5415. (pin "29" (uuid a6c2c227-1aac-42d4-a023-22a436a5d746))
  5416. (pin "34" (uuid 2fa59316-d176-4553-aee4-a43b611b0503))
  5417. (pin "35" (uuid 11f41cfe-3fc1-4e7b-8256-ae3816fc9398))
  5418. (pin "36" (uuid b8cfb57c-c563-47fd-969c-7b1c7851ffe7))
  5419. (pin "37" (uuid 74d6a48f-dc35-488c-8425-9e6684eb439c))
  5420. (pin "40" (uuid 6dd26538-ec73-4f8d-827f-8d03adf27aa0))
  5421. (pin "41" (uuid 1dec311a-aa54-4a68-a19e-4a94a75ae4be))
  5422. (pin "42" (uuid 449aa4fd-01df-4352-b690-80e85a4798b8))
  5423. (pin "43" (uuid 4f9e6cae-fab3-4485-8e9d-93d0810a8d1e))
  5424. (pin "44" (uuid 5ac6169e-4082-4f07-86af-bbbe1039f563))
  5425. (pin "45" (uuid f3dafbe0-98f5-43c0-a9b4-9aa3fcdaa621))
  5426. (pin "46" (uuid 68759b10-ad4f-4ff4-8fe7-98d34bd21274))
  5427. (pin "47" (uuid 24fb8ab1-dba6-4a17-9e07-642a7d579224))
  5428. (pin "48" (uuid a3d30bdf-c68b-4ea0-97c2-1ef75d6f7f78))
  5429. (pin "69" (uuid 03133b52-4c75-4a2b-a5da-286e63de596a))
  5430. (pin "7" (uuid 38c640a4-73cd-4a06-aae4-d89190ab1acc))
  5431. (pin "70" (uuid ea404c26-60ae-403d-bc79-976a0d3ac5e2))
  5432. (pin "73" (uuid c4e3d562-90f9-4653-bc60-00a5d8001f40))
  5433. (pin "74" (uuid 9280e48f-bc81-469e-897a-a0d1e8f16506))
  5434. (pin "77" (uuid d5999206-eb84-4af8-bdb9-b2b0a802279d))
  5435. (pin "78" (uuid 1bf4d2d7-d987-4596-9a7d-e95a7d391735))
  5436. (pin "79" (uuid 09c41a12-7105-4f5b-ba67-01f5510a9d75))
  5437. (pin "8" (uuid c7420b7d-0c35-477a-a996-b9e7e88b90ba))
  5438. (pin "80" (uuid 6aadae28-7197-43a0-ada3-0c09939cd024))
  5439. (pin "81" (uuid 7140ec3e-8241-4c98-9305-3e76208507dc))
  5440. (pin "82" (uuid a8a7dad5-f843-4c5a-b6f9-e002393e1baf))
  5441. (pin "83" (uuid 64bf311b-f54a-4dee-a743-fade97165da2))
  5442. (pin "84" (uuid 90e33c19-4c6f-4ef5-8114-69630f997371))
  5443. (pin "87" (uuid a7de3a40-26af-41ea-a03a-cb1cca262e27))
  5444. (pin "88" (uuid c7ff192a-cc63-4eb7-9ae1-ff75956be99c))
  5445. (pin "9" (uuid aacc088b-2901-4053-9010-eb52148e7f6d))
  5446. (pin "96" (uuid 101b6eaf-af0e-4209-a274-ca7157d23f85))
  5447. (pin "97" (uuid 7ad57f9c-b465-4d3d-8576-fb4f8bda29ba))
  5448. (pin "98" (uuid d1d2ca14-a057-486d-b8ae-dcc5a5c5bab8))
  5449. (pin "99" (uuid f3135e8c-47df-4d28-8958-6b5d38f6bcea))
  5450. (pin "1" (uuid 6d649c1c-1282-4585-af76-f4fca42e46bf))
  5451. (pin "10" (uuid f32158f0-9641-488d-a662-cb90cabc2ffa))
  5452. (pin "11" (uuid e6cfc905-0aa2-4615-b9a4-09151df5ec80))
  5453. (pin "12" (uuid be228e25-5e63-4f49-8bd5-0f7908aa4a52))
  5454. (pin "124" (uuid 30303d00-168f-4d7b-bfbb-36c0a42eecc2))
  5455. (pin "125" (uuid b303cee4-917d-46e4-ae71-4d445c63f3f2))
  5456. (pin "126" (uuid 70b6714e-3413-4a01-bcd9-c25e9272b2c2))
  5457. (pin "127" (uuid 655bbcc7-450f-4b1b-9863-ed3ef68b6780))
  5458. (pin "128" (uuid d4a2f439-5070-4488-bccc-f5f0e561c193))
  5459. (pin "129" (uuid 9011c783-3ce3-4943-ad88-9a8d7a8e3340))
  5460. (pin "13" (uuid 4eb0838e-81f5-4001-8e5c-7254680d8140))
  5461. (pin "132" (uuid 068e5b76-90a7-46f8-90c3-158e6ab74c00))
  5462. (pin "14" (uuid 413c3ce6-cc3e-4840-a36e-4690f23ae2e0))
  5463. (pin "141" (uuid 44aacbc5-f286-4d18-a56e-331bb728348a))
  5464. (pin "142" (uuid fcd75c1c-4eac-4b4a-959f-00fd9176fe45))
  5465. (pin "15" (uuid 819d1b2f-030f-4240-aabf-35156e55f88a))
  5466. (pin "18" (uuid 3010cad3-6508-4489-a6a3-420c2b28a980))
  5467. (pin "19" (uuid f274271a-92b6-4224-bea8-688aab8c1b8d))
  5468. (pin "2" (uuid b47cc8d8-429e-4448-9d6d-a4db78f6702b))
  5469. (pin "20" (uuid 07fc1b66-6fe9-4203-b202-dbaf9df1b7fb))
  5470. (pin "21" (uuid 4b689846-0dc3-4ed1-8930-5f4de9a36c03))
  5471. (pin "22" (uuid a9e349b6-edaa-4b78-ae40-3c9502ee17a7))
  5472. (pin "23" (uuid b258de74-450e-49f1-b11d-7390d420ca7f))
  5473. (pin "24" (uuid 026bbe15-4b46-4de0-b150-391ad62f2a39))
  5474. (pin "3" (uuid 699d0d90-a704-4170-8887-b235d7d19d43))
  5475. (pin "4" (uuid 0b26c560-e5ea-4520-a280-9bd29d2f7728))
  5476. (pin "49" (uuid e6b52cc5-6b6f-44ac-9a38-6e67e25349db))
  5477. (pin "5" (uuid 6290267d-996a-4793-898d-3d73e9b493f4))
  5478. (pin "50" (uuid 0d7c6cef-243f-407f-9d8a-bfdc54b0b1c5))
  5479. (pin "53" (uuid 82eb952e-c83d-43fb-a22c-559f0b613842))
  5480. (pin "54" (uuid e16c1e87-65cb-4621-9471-e57bbcd22758))
  5481. (pin "55" (uuid f51cda7d-99c3-47ec-a8c7-e02a13a859cf))
  5482. (pin "56" (uuid 97a2828f-4004-40bc-9f49-fa4285e56d03))
  5483. (pin "57" (uuid 6110dc1b-091a-47bf-ad4d-4b4dc44b1ef8))
  5484. (pin "58" (uuid 5aca0a57-47f6-49f3-bd96-8dc9ba2237bd))
  5485. (pin "59" (uuid 5f268bd8-de1b-4ec1-b1a0-a775bfa4f3a0))
  5486. (pin "60" (uuid d64759f0-e618-48ef-b1cd-eff8f698a5c7))
  5487. (pin "63" (uuid f178198c-9ec6-4c88-ad7f-ca2b81d7a10e))
  5488. (pin "64" (uuid 25623d0c-fbd4-4505-9b34-e9d50fbc4dd3))
  5489. (pin "65" (uuid 80c66b59-3f8c-4eb6-8cbc-5b50d25222d4))
  5490. (pin "66" (uuid 6ac7c62a-b80e-414a-a35c-46ec0d4f368f))
  5491. (pin "67" (uuid 1cb4ca17-2bb6-4c65-9bee-55b74c7921ed))
  5492. (pin "68" (uuid 5ac87a21-4dc6-496f-9d04-dbcfb3cc1594))
  5493. (pin "89" (uuid 69c75556-b676-4bff-a2fa-62c3d6aa45b0))
  5494. (pin "90" (uuid 6f27504b-4bfd-426d-a319-fb0e82d6e59f))
  5495. (pin "91" (uuid fbfdeae9-9585-4409-bdc4-09e398560622))
  5496. (pin "92" (uuid 8ef3ba74-1fba-4e4e-b2a6-4a7fe882a320))
  5497. (pin "93" (uuid 7ea403ed-1fad-4752-9907-6333e3f7d475))
  5498. )
  5499. (symbol (lib_id "Greaseweazle:STM32F730Z8T6") (at 78.74 78.74 0) (unit 3)
  5500. (in_bom yes) (on_board yes)
  5501. (uuid 00000000-0000-0000-0000-000060f442ce)
  5502. (property "Reference" "U1" (id 0) (at 92.71 72.009 0))
  5503. (property "Value" "STM32F730Z8T6" (id 1) (at 92.71 74.3204 0))
  5504. (property "Footprint" "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (id 2) (at 78.74 68.58 0)
  5505. (effects (font (size 1.27 1.27)) (justify left) hide)
  5506. )
  5507. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f730r8.pdf" (id 3) (at 78.74 66.04 0)
  5508. (effects (font (size 1.27 1.27)) (justify left) hide)
  5509. )
  5510. (property "LCSC" "C508478" (id 4) (at 78.74 78.74 0)
  5511. (effects (font (size 1.27 1.27)) hide)
  5512. )
  5513. (pin "106" (uuid 12bb0dd0-2751-49c8-b8a0-b24197d809ae))
  5514. (pin "107" (uuid 4c2bc665-c349-4443-af58-89ff222c9d4a))
  5515. (pin "108" (uuid cad3adc8-7365-4320-aba5-368fed95921c))
  5516. (pin "120" (uuid 4b319c7e-f44b-4e36-8f39-15b35906b029))
  5517. (pin "121" (uuid 0cf2131a-a663-40c2-9c6c-8d1a79672dac))
  5518. (pin "130" (uuid 73972f5c-83a0-449a-98df-036c48a5bc7c))
  5519. (pin "131" (uuid 249603fc-9620-482d-a9bf-7cca0ea26b4c))
  5520. (pin "138" (uuid c4d1d1d8-b03a-45c9-b7b9-7667097d0935))
  5521. (pin "143" (uuid 1941afb5-18b6-48ff-b60d-a2e54b07b19a))
  5522. (pin "144" (uuid 558d5913-e9e6-4f32-9895-25e6abba5cc9))
  5523. (pin "16" (uuid 6726d07a-c683-45c1-8f9b-c762308dc74f))
  5524. (pin "17" (uuid 82d3ec7c-2174-4eb3-bf8c-da3042c9e869))
  5525. (pin "25" (uuid f5ce3cfc-eea8-4ebc-bad6-8b410e4e4be4))
  5526. (pin "30" (uuid eed2b6e7-fe18-47ee-a582-5f1a01af7f53))
  5527. (pin "31" (uuid e9187bba-2f81-4433-82d7-7a6b4a24f239))
  5528. (pin "32" (uuid ddda7f73-1b94-4276-a6c3-08985d578fd5))
  5529. (pin "33" (uuid d1a40ce8-1fd3-4997-85de-cf0ed28ea797))
  5530. (pin "38" (uuid 46d7efef-ffba-4bc1-bd17-2217105fbb13))
  5531. (pin "39" (uuid 60f6134a-06bb-466e-804b-db7370bcaa72))
  5532. (pin "51" (uuid e1131acc-e2dc-42b2-9152-da01844c203d))
  5533. (pin "52" (uuid b187fe55-b577-4eff-a078-cc74e8a17cd6))
  5534. (pin "6" (uuid 0e7a63cd-41e8-4996-bffb-2beb71c9dc40))
  5535. (pin "61" (uuid e493ba3e-2aa0-4869-839e-d43eee0d5004))
  5536. (pin "62" (uuid 21bed587-b569-4f8f-9c15-87106699428e))
  5537. (pin "71" (uuid e7fc54ab-8a9f-43d1-856a-e0a8dd6b407f))
  5538. (pin "72" (uuid e768bdb2-49d1-4141-b1ce-f08e7702b86d))
  5539. (pin "75" (uuid b4aff9c3-d37b-4504-b7a8-ea8744c0b108))
  5540. (pin "76" (uuid e46fc7e3-355e-4a65-9c37-5358eee318a1))
  5541. (pin "85" (uuid e347177b-0bce-4338-81b9-b69e106d6363))
  5542. (pin "86" (uuid 5aaf7d65-cb0f-46d7-a5b0-270e64c2b7ea))
  5543. (pin "94" (uuid 2fa53027-e822-469e-a70f-48ecb1d460fb))
  5544. (pin "95" (uuid 6e07f4fc-7b6b-4ac2-a212-18f0f8a75ddb))
  5545. (pin "100" (uuid 95ab5127-1825-4d95-9ead-972cdae77fe1))
  5546. (pin "101" (uuid 830290da-4ba0-4310-b3f4-a9dd322c15ba))
  5547. (pin "102" (uuid 9a43532a-adfe-4839-9757-e5822ad0cf8f))
  5548. (pin "103" (uuid a7d862c2-e81a-4eb1-9f33-edcbe2644983))
  5549. (pin "104" (uuid 61a222aa-ec86-4d2f-b4fe-65cf869efecd))
  5550. (pin "105" (uuid 924dd16a-7351-4ba1-837d-0e20ef5d36ad))
  5551. (pin "109" (uuid f6c0d718-237d-46f0-985f-5ef1fa49abda))
  5552. (pin "110" (uuid 20b55ca4-300c-4df4-86e8-5673023ef44b))
  5553. (pin "111" (uuid be1422e5-163a-414a-be6a-e7bb2720c15b))
  5554. (pin "112" (uuid 6e45b5ab-a78f-45ac-b379-782aebfb39f0))
  5555. (pin "113" (uuid dabaf7df-9122-4b3a-9aa6-7e3efe197b77))
  5556. (pin "114" (uuid 388ff6d3-5f5c-49de-ace5-726b29bf15f3))
  5557. (pin "115" (uuid 55f29105-0630-4677-b597-eb66ae4aac9f))
  5558. (pin "116" (uuid 29ccb7d3-5883-403c-b848-f6d5a38c8510))
  5559. (pin "117" (uuid 41d8b032-46b3-4b06-ae02-9aef37534c7e))
  5560. (pin "118" (uuid 8aba5d26-4a26-4fde-8cad-e65f58147c1e))
  5561. (pin "119" (uuid 51dec9a6-d90c-49ff-9f15-1fe809a68cbb))
  5562. (pin "122" (uuid 43d13ba6-c1aa-4680-95de-383e78c6ab1b))
  5563. (pin "123" (uuid 9d167048-c558-41be-899a-44c8a5e2bc1b))
  5564. (pin "133" (uuid 022e5ab7-7eaa-4687-8450-a7c4facff5e2))
  5565. (pin "134" (uuid 60affab8-618b-419d-9d90-e446ee931e9f))
  5566. (pin "135" (uuid d45d2567-2410-4685-9328-a7c28532e655))
  5567. (pin "136" (uuid 307a20af-75b0-404a-ae20-bb31dc419cdd))
  5568. (pin "137" (uuid 3ab54aef-a833-4fbd-a46d-43d255ab729b))
  5569. (pin "139" (uuid 15b25213-ef96-441f-bdfb-519f8fea6db1))
  5570. (pin "140" (uuid 09c8d343-d1a3-4104-a2fd-9f9f009bf578))
  5571. (pin "26" (uuid bc25ed28-815b-4cac-939f-06195e40b0e7))
  5572. (pin "27" (uuid ca879304-d446-4e3a-942e-effcb507b3c1))
  5573. (pin "28" (uuid a9a988aa-37e8-496f-a40f-04956cc19bb8))
  5574. (pin "29" (uuid 57d6a12a-f4e7-4e20-8336-dee786be9f8a))
  5575. (pin "34" (uuid b98742f9-b09d-4e8f-8bc0-8b1c1a3b1508))
  5576. (pin "35" (uuid 67eb1cf3-3212-49ac-9f35-9f8448e723fa))
  5577. (pin "36" (uuid 41cf983c-2fb1-4301-b7e4-1c03a6748790))
  5578. (pin "37" (uuid 4e648328-5961-45a4-a8b7-54114b77da92))
  5579. (pin "40" (uuid 4466e777-034d-4701-8a20-bbd45ec8f3a2))
  5580. (pin "41" (uuid 39a350a5-8e7e-4218-8c61-e1a35b6b6cbe))
  5581. (pin "42" (uuid eae394dd-437c-4280-87fa-9ffe297cb407))
  5582. (pin "43" (uuid 829fc960-9294-4a1b-a541-a5881d5d8b87))
  5583. (pin "44" (uuid ff72f2ac-223e-4f10-9aba-70030ae49d23))
  5584. (pin "45" (uuid 6a0a9d55-9ce5-4fe8-b056-8138553a75e2))
  5585. (pin "46" (uuid fef9b3d3-8489-41c5-83f7-9ecdd6ee41db))
  5586. (pin "47" (uuid ff478cd3-6e9b-4b32-a85f-44feb5d240d9))
  5587. (pin "48" (uuid 449676b9-f159-4bb0-b989-a14409414101))
  5588. (pin "69" (uuid 9d998291-7199-43b5-8012-ae1b81cd2209))
  5589. (pin "7" (uuid 5ee817df-f860-4648-acb2-57a8b1aab39a))
  5590. (pin "70" (uuid 6d0cd76b-3d82-4f34-bc8d-c250f3bb52a6))
  5591. (pin "73" (uuid 3aa35793-28de-4af4-8e5a-05e40718fb72))
  5592. (pin "74" (uuid fbc28f53-e422-4a08-bce2-9e712d8c3d4c))
  5593. (pin "77" (uuid bf25e3ed-c674-4a42-88bc-7e316a8c4952))
  5594. (pin "78" (uuid 0dee9048-ab48-4861-853e-9e5553970e40))
  5595. (pin "79" (uuid 5e7f9c7f-ec12-48b7-8d41-b8250aaa20f3))
  5596. (pin "8" (uuid 78bb75db-007d-4457-9fce-c434481a0a66))
  5597. (pin "80" (uuid a9a27a77-db72-45bd-ae5c-e6b003a899e0))
  5598. (pin "81" (uuid fd650954-e4d2-405d-acdc-fcedfc08870c))
  5599. (pin "82" (uuid 8c4257f8-d2f3-4596-9858-359bebba1408))
  5600. (pin "83" (uuid ce93465f-dd12-4cd3-ab70-11b6149fe818))
  5601. (pin "84" (uuid 9ca070a5-ad16-4aec-9145-dbc1b7ca53f0))
  5602. (pin "87" (uuid cf674aad-8cf2-4c6a-861d-37a02ccc3486))
  5603. (pin "88" (uuid e639a79e-60af-4ac0-ae4f-e3863f43674e))
  5604. (pin "9" (uuid a3a71a9a-18b1-4f1b-89d2-d256e1cbf445))
  5605. (pin "96" (uuid 09c51243-dded-47db-a760-e531f07b4d04))
  5606. (pin "97" (uuid fa22b361-f661-42fd-ab6f-a4b1772bac2e))
  5607. (pin "98" (uuid 7a38e764-5ee5-4cc9-9adf-f33c2fc3a690))
  5608. (pin "99" (uuid 746be952-39eb-4630-ae6a-b8653a50e99b))
  5609. (pin "1" (uuid f3639215-b551-487d-ae8c-60273667099a))
  5610. (pin "10" (uuid e33d7611-a840-4788-a1e6-68497c6522b2))
  5611. (pin "11" (uuid b24ce7c7-0154-43f1-b8a3-d77f7357f530))
  5612. (pin "12" (uuid 4a258637-74af-4e31-9499-73ec42eb090e))
  5613. (pin "124" (uuid cf06ffd0-8420-4e50-a7fb-7ba5b412320a))
  5614. (pin "125" (uuid adf48ab3-4e39-4561-abfa-0696b06a797e))
  5615. (pin "126" (uuid a89423a0-ed83-46d2-9347-3f642d13e46e))
  5616. (pin "127" (uuid b179feb9-2f49-4e0e-a200-fc5a38d984ae))
  5617. (pin "128" (uuid 7cd7f63a-c80d-4e72-9ceb-3478c0ef1738))
  5618. (pin "129" (uuid 9b9e4f49-fa16-42db-844d-6f607afeb674))
  5619. (pin "13" (uuid 7aa76fbf-6d13-485a-8bf9-4e821ab52578))
  5620. (pin "132" (uuid 429a8d1d-c10a-4b01-ac24-ecfeb9734155))
  5621. (pin "14" (uuid 10f95310-255b-493c-ac24-50ebb7de2e30))
  5622. (pin "141" (uuid 32e1aed6-e06d-402f-b13b-cddeae58cd61))
  5623. (pin "142" (uuid 8c9b65b8-604e-4402-84ed-ae1f6870ba9f))
  5624. (pin "15" (uuid 789a3be2-3ddf-4185-a259-98f054b74afa))
  5625. (pin "18" (uuid 720d84a5-d456-43d5-8a65-667f26a4e24a))
  5626. (pin "19" (uuid 6f11d598-f7c5-44d6-806f-724d5c4e20f0))
  5627. (pin "2" (uuid c0e39e81-4fdf-4cb3-9d6d-7e082337b449))
  5628. (pin "20" (uuid 06fbe29b-b299-4f32-a6dd-c90c02612952))
  5629. (pin "21" (uuid 21913590-4e2f-43fa-bbd7-cb7f24ddacd5))
  5630. (pin "22" (uuid e6e13d1c-360e-4fa0-9b92-15c11b8ce28d))
  5631. (pin "23" (uuid 0ca10eb8-7e39-4592-a016-4b54e43b5dfb))
  5632. (pin "24" (uuid 8d3c9ae7-a390-4a71-aed1-567e25c5f448))
  5633. (pin "3" (uuid 17a1b522-2ee3-4822-93fe-d4342cbed430))
  5634. (pin "4" (uuid 7562f07e-e5bb-40bf-9bac-e4fbbb2b9fe8))
  5635. (pin "49" (uuid e346bbd7-a637-4efd-888e-008ad9afccf3))
  5636. (pin "5" (uuid bc418028-adfa-4d91-91e8-622122f2a484))
  5637. (pin "50" (uuid 6d6a02c4-9d75-4f69-8d2b-d9dac1f98fb9))
  5638. (pin "53" (uuid c80f4224-5cb4-44fa-8af7-ac2df201f153))
  5639. (pin "54" (uuid d757e929-0349-4135-8c0f-677905da760b))
  5640. (pin "55" (uuid 22a0b7ff-6314-4a7c-939b-f23f858ed1b1))
  5641. (pin "56" (uuid b17dc3ba-b6c2-441d-923c-8e9e359300be))
  5642. (pin "57" (uuid 50b0b2da-09f5-4fbc-9ecb-6495e9c1af44))
  5643. (pin "58" (uuid b1dd9b3e-a7ee-4111-ab24-3bd333096d17))
  5644. (pin "59" (uuid cf20bfb1-8393-4551-8655-dcac7a3c32ba))
  5645. (pin "60" (uuid f1c1d2c5-60a1-4d40-b95d-5f8af761ab9f))
  5646. (pin "63" (uuid 80bf846b-a650-46bb-9f84-c7cc6d8ad54b))
  5647. (pin "64" (uuid deb52071-5967-4bea-abd3-18ec89d3a79e))
  5648. (pin "65" (uuid 53bbcfdd-728c-4b1c-891d-759e34ac482f))
  5649. (pin "66" (uuid d8f76f48-be08-432a-ba04-7fc13b308ec8))
  5650. (pin "67" (uuid 505a33df-d18d-42f5-b21a-0d35edec1115))
  5651. (pin "68" (uuid ac33d4ae-6cf8-443e-a0ba-e1364b8b2396))
  5652. (pin "89" (uuid d469820a-9cb5-40d5-b8ac-bedb08233feb))
  5653. (pin "90" (uuid c0d8c685-a6f1-4a7f-b389-a18c80b6d37c))
  5654. (pin "91" (uuid a9303d62-f256-43ac-bb4a-8797c11ca40d))
  5655. (pin "92" (uuid e3e0c89f-2ade-4dfb-a48f-3e2e411609ed))
  5656. (pin "93" (uuid 4848bfef-8d8f-406b-a025-f4f77ca61ae7))
  5657. )
  5658. (symbol (lib_id "Connector_Generic:Conn_02x17_Odd_Even") (at 167.64 85.09 0) (unit 1)
  5659. (in_bom yes) (on_board yes)
  5660. (uuid 00000000-0000-0000-0000-000060f4c92b)
  5661. (property "Reference" "J1" (id 0) (at 168.91 59.2582 0))
  5662. (property "Value" "Conn_02x17_Odd_Even" (id 1) (at 168.91 61.5696 0))
  5663. (property "Footprint" "Connector_IDC:IDC-Header_2x17_P2.54mm_Vertical" (id 2) (at 167.64 85.09 0)
  5664. (effects (font (size 1.27 1.27)) hide)
  5665. )
  5666. (property "Datasheet" "~" (id 3) (at 167.64 85.09 0)
  5667. (effects (font (size 1.27 1.27)) hide)
  5668. )
  5669. (property "LCSC" "C707014" (id 4) (at 167.64 85.09 0)
  5670. (effects (font (size 1.27 1.27)) hide)
  5671. )
  5672. (pin "1" (uuid b8cc6224-2f81-46b6-a77a-773baaf2b6d0))
  5673. (pin "10" (uuid 0aa86141-1459-4a87-9396-130aede42323))
  5674. (pin "11" (uuid 12f39ff6-5f59-4b51-a71a-df15b8dcf55b))
  5675. (pin "12" (uuid 8765664d-be73-4392-8c1b-8c6b12024e16))
  5676. (pin "13" (uuid 93040d74-6406-463e-a97a-a48b20506717))
  5677. (pin "14" (uuid 17c3a4cd-f30e-4042-b755-1ee0a4149172))
  5678. (pin "15" (uuid 71f79fc4-fa4c-48ce-bde7-3b66cd98e9ff))
  5679. (pin "16" (uuid d4b4f1c6-f9f0-4c00-8754-53e7b5e5e549))
  5680. (pin "17" (uuid de15fe5d-45d2-4dca-ba71-66ab9f54444b))
  5681. (pin "18" (uuid 0214ea21-f575-44a3-b503-44671f335a8e))
  5682. (pin "19" (uuid 833feb1f-5f9c-4353-9923-1e7f4dc21a46))
  5683. (pin "2" (uuid 19a3b9b1-d4e3-4222-a8ec-927f2152e5bb))
  5684. (pin "20" (uuid ab2b3c3d-85e3-4392-8f47-e18919aff965))
  5685. (pin "21" (uuid 4e50f9bc-3e87-4c13-870e-8a8fad85b563))
  5686. (pin "22" (uuid cf81a8d6-b162-4b49-b351-4b76e65b25ec))
  5687. (pin "23" (uuid c3f298a1-f22c-4d8c-a17a-8a0ae31cd9ae))
  5688. (pin "24" (uuid 4b66930d-e1f9-40d8-93e4-e8a8841729c3))
  5689. (pin "25" (uuid d5306c93-9546-4845-8d44-737008a08930))
  5690. (pin "26" (uuid 161d4802-fde1-46e2-a40e-e7d76d4c0ed0))
  5691. (pin "27" (uuid 4d597a20-72a5-4a02-bc54-623ca5389e9a))
  5692. (pin "28" (uuid affee555-ded7-46de-bff4-a724c2bcaa09))
  5693. (pin "29" (uuid 36a622e5-4091-4a5e-bae0-b659b4043931))
  5694. (pin "3" (uuid 23c58602-2348-4da2-9507-8278ff434ceb))
  5695. (pin "30" (uuid 13c91444-9126-4814-8b6a-ce70c8b9abe0))
  5696. (pin "31" (uuid 0b9077a1-b269-4aa9-aaed-746706b0433a))
  5697. (pin "32" (uuid 6fc77fe5-79e6-450e-b23d-5030c1d9462e))
  5698. (pin "33" (uuid 8dc812a5-09db-44f1-853e-af14748d8d08))
  5699. (pin "34" (uuid 0131a8bc-235f-48c3-b245-7e00786eaf66))
  5700. (pin "4" (uuid ebf7c116-2f1b-4bae-8c7f-65453f8cf504))
  5701. (pin "5" (uuid 7b9869b5-7af6-411e-acd5-a10638854032))
  5702. (pin "6" (uuid 448d47e1-fe0b-4e38-aff7-c747fbf3150a))
  5703. (pin "7" (uuid 205f2f89-709d-4ac9-aae2-d82248cd0ff8))
  5704. (pin "8" (uuid 27f20f52-9431-4e60-a894-1ea89f12d744))
  5705. (pin "9" (uuid c7cbdd03-1f8f-4c83-b4b0-98f201e67593))
  5706. )
  5707. (symbol (lib_id "power:GND") (at 154.94 107.95 0) (unit 1)
  5708. (in_bom yes) (on_board yes)
  5709. (uuid 00000000-0000-0000-0000-000060f79d03)
  5710. (property "Reference" "#PWR01" (id 0) (at 154.94 114.3 0)
  5711. (effects (font (size 1.27 1.27)) hide)
  5712. )
  5713. (property "Value" "GND" (id 1) (at 155.067 112.3442 0))
  5714. (property "Footprint" "" (id 2) (at 154.94 107.95 0)
  5715. (effects (font (size 1.27 1.27)) hide)
  5716. )
  5717. (property "Datasheet" "" (id 3) (at 154.94 107.95 0)
  5718. (effects (font (size 1.27 1.27)) hide)
  5719. )
  5720. (pin "1" (uuid f6ca2bfd-4c67-4258-aa2f-7ddc30211957))
  5721. )
  5722. (symbol (lib_id "Device:R_Small") (at 148.59 105.41 270) (unit 1)
  5723. (in_bom yes) (on_board yes)
  5724. (uuid 00000000-0000-0000-0000-000060f7b3e5)
  5725. (property "Reference" "R4" (id 0) (at 148.59 100.4316 90))
  5726. (property "Value" "3k" (id 1) (at 148.59 102.743 90))
  5727. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 148.59 105.41 0)
  5728. (effects (font (size 1.27 1.27)) hide)
  5729. )
  5730. (property "Datasheet" "~" (id 3) (at 148.59 105.41 0)
  5731. (effects (font (size 1.27 1.27)) hide)
  5732. )
  5733. (property "LCSC" "C137987" (id 4) (at 148.59 105.41 0)
  5734. (effects (font (size 1.27 1.27)) hide)
  5735. )
  5736. (pin "1" (uuid 76037a64-7f40-4d35-9914-f40473a56e64))
  5737. (pin "2" (uuid f2aee87f-c31d-42db-870e-2f0cf1ab9c8b))
  5738. )
  5739. (symbol (lib_id "Device:R_Small") (at 143.51 100.33 180) (unit 1)
  5740. (in_bom yes) (on_board yes)
  5741. (uuid 00000000-0000-0000-0000-000060f7de7e)
  5742. (property "Reference" "R3" (id 0) (at 145.0086 99.1616 0)
  5743. (effects (font (size 1.27 1.27)) (justify right))
  5744. )
  5745. (property "Value" "3k" (id 1) (at 145.0086 101.473 0)
  5746. (effects (font (size 1.27 1.27)) (justify right))
  5747. )
  5748. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 143.51 100.33 0)
  5749. (effects (font (size 1.27 1.27)) hide)
  5750. )
  5751. (property "Datasheet" "~" (id 3) (at 143.51 100.33 0)
  5752. (effects (font (size 1.27 1.27)) hide)
  5753. )
  5754. (property "LCSC" "C137987" (id 4) (at 143.51 100.33 0)
  5755. (effects (font (size 1.27 1.27)) hide)
  5756. )
  5757. (pin "1" (uuid e06a59e6-3afe-4857-8998-a5946749a3af))
  5758. (pin "2" (uuid 7dc2e59d-84c1-4673-a0c3-d287d43e80c1))
  5759. )
  5760. (symbol (lib_id "74xx:SN74LS07") (at 234.95 27.94 180) (unit 1)
  5761. (in_bom yes) (on_board yes)
  5762. (uuid 00000000-0000-0000-0000-000060f860dc)
  5763. (property "Reference" "U3" (id 0) (at 229.87 25.4 0))
  5764. (property "Value" "SN74LS07" (id 1) (at 245.11 24.13 0))
  5765. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 27.94 0)
  5766. (effects (font (size 1.27 1.27)) hide)
  5767. )
  5768. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 27.94 0)
  5769. (effects (font (size 1.27 1.27)) hide)
  5770. )
  5771. (property "LCSC" "C371970" (id 4) (at 234.95 27.94 0)
  5772. (effects (font (size 1.27 1.27)) hide)
  5773. )
  5774. (pin "1" (uuid 6295c533-797a-4550-b2d2-5bed7c2d6f23))
  5775. (pin "2" (uuid 6b6a5170-71ed-4b5e-8698-0c07fcb58794))
  5776. (pin "3" (uuid c47957ee-3a4f-4950-be3a-833e1056c65a))
  5777. (pin "4" (uuid 88a98547-b96b-4c2e-ad95-3d3445aaf284))
  5778. (pin "5" (uuid f183d8f8-b67b-4ed9-8345-38014e6af716))
  5779. (pin "6" (uuid 83f0e17e-1c01-41a9-9a33-9d21a5bbd23c))
  5780. (pin "8" (uuid c7ad971d-b604-4e7a-9b77-19a07098e0e2))
  5781. (pin "9" (uuid a7a90992-576f-47b9-9d1e-00dc4f4e2285))
  5782. (pin "10" (uuid 3356c3eb-7abe-4986-93dd-9397999c2389))
  5783. (pin "11" (uuid 95b90317-399a-442c-9fa3-0efd163f3c0d))
  5784. (pin "12" (uuid d6dfff7f-7cd4-4ec0-b698-cb843ad68d5f))
  5785. (pin "13" (uuid 8044f13f-6974-4e7d-83a1-8e482605b584))
  5786. (pin "14" (uuid c6bb35fd-6291-401c-a73d-df8a567dbec6))
  5787. (pin "7" (uuid a4164ae9-ff81-4e0b-a0a8-4b70a2d3c084))
  5788. )
  5789. (symbol (lib_id "74xx:SN74LS07") (at 234.95 77.47 180) (unit 2)
  5790. (in_bom yes) (on_board yes)
  5791. (uuid 00000000-0000-0000-0000-000060f8e956)
  5792. (property "Reference" "U3" (id 0) (at 229.87 73.66 0))
  5793. (property "Value" "SN74LS07" (id 1) (at 245.11 73.66 0))
  5794. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 77.47 0)
  5795. (effects (font (size 1.27 1.27)) hide)
  5796. )
  5797. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 77.47 0)
  5798. (effects (font (size 1.27 1.27)) hide)
  5799. )
  5800. (property "LCSC" "C371970" (id 4) (at 234.95 77.47 0)
  5801. (effects (font (size 1.27 1.27)) hide)
  5802. )
  5803. (pin "1" (uuid f4d06970-31bf-4f56-b3b8-8e620b4c0ce5))
  5804. (pin "2" (uuid 9e28e4ba-23b0-4daa-8349-0865ed41b59a))
  5805. (pin "3" (uuid 04c877dc-86e7-4d6b-b354-0ba706f86dc1))
  5806. (pin "4" (uuid fb33ce2b-9929-4774-84fa-8290a264fc87))
  5807. (pin "5" (uuid 00ebbcd6-caf0-4d1b-868f-4c8847b5142c))
  5808. (pin "6" (uuid 20ba087c-77e9-4af7-8dd4-254900380a33))
  5809. (pin "8" (uuid 0eef7088-ce66-4e32-a2fc-cdc787703d8e))
  5810. (pin "9" (uuid 58ab3e30-7a51-424d-81ff-cb95b1959e59))
  5811. (pin "10" (uuid 2e90d921-c7a9-452e-8915-8b0e5294c0fd))
  5812. (pin "11" (uuid 587004bf-78d2-4171-a39e-81b35f704950))
  5813. (pin "12" (uuid b98e66b7-1496-44c9-868d-f58eb358bd8d))
  5814. (pin "13" (uuid e0b09c3b-b7ad-4a31-a685-5a3821a9a673))
  5815. (pin "14" (uuid 7df5dcc1-a994-4d42-98ba-d66d9cb06a8e))
  5816. (pin "7" (uuid 5c771d12-3b99-41a7-9560-21090ca5a2c5))
  5817. )
  5818. (symbol (lib_id "74xx:SN74LS07") (at 234.95 87.63 180) (unit 3)
  5819. (in_bom yes) (on_board yes)
  5820. (uuid 00000000-0000-0000-0000-000060f9020d)
  5821. (property "Reference" "U3" (id 0) (at 229.87 83.82 0))
  5822. (property "Value" "SN74LS07" (id 1) (at 245.11 83.82 0))
  5823. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 87.63 0)
  5824. (effects (font (size 1.27 1.27)) hide)
  5825. )
  5826. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 87.63 0)
  5827. (effects (font (size 1.27 1.27)) hide)
  5828. )
  5829. (property "LCSC" "C371970" (id 4) (at 234.95 87.63 0)
  5830. (effects (font (size 1.27 1.27)) hide)
  5831. )
  5832. (pin "1" (uuid bed79146-bc22-432a-b8a0-dd5a1bc2b866))
  5833. (pin "2" (uuid b80cb951-c116-4884-bf48-ec09f1703495))
  5834. (pin "3" (uuid ae4dfc3d-839a-4296-a987-f4f1a9afaa74))
  5835. (pin "4" (uuid 50b06345-df03-4f3f-9e25-ba185eacda3d))
  5836. (pin "5" (uuid c0ee9747-f834-4fbb-85a9-6f249f422fdb))
  5837. (pin "6" (uuid e9da25f2-a680-45c2-8f43-700de870251c))
  5838. (pin "8" (uuid 2f9f07bc-63b9-4afe-ba92-5c279b97eedb))
  5839. (pin "9" (uuid 3561576f-c15b-4012-9f6b-9911d32bd67b))
  5840. (pin "10" (uuid 8c3c9ee3-07e5-4c67-a789-7f71a09bc3b2))
  5841. (pin "11" (uuid 76069c75-e210-4ffd-837f-6e519ab7ad56))
  5842. (pin "12" (uuid bb0c1b2b-cd02-419e-945a-7797e418ba41))
  5843. (pin "13" (uuid 971f0304-ee69-45cb-9aba-e21af195d127))
  5844. (pin "14" (uuid 4b3c8008-b823-4d8d-b99e-68484101f396))
  5845. (pin "7" (uuid ad3c5e19-300d-4bae-98d1-a0f8d09f891c))
  5846. )
  5847. (symbol (lib_id "74xx:SN74LS07") (at 234.95 57.15 180) (unit 4)
  5848. (in_bom yes) (on_board yes)
  5849. (uuid 00000000-0000-0000-0000-000060f91637)
  5850. (property "Reference" "U3" (id 0) (at 229.87 54.61 0))
  5851. (property "Value" "SN74LS07" (id 1) (at 245.11 53.34 0))
  5852. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 57.15 0)
  5853. (effects (font (size 1.27 1.27)) hide)
  5854. )
  5855. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 57.15 0)
  5856. (effects (font (size 1.27 1.27)) hide)
  5857. )
  5858. (property "LCSC" "C371970" (id 4) (at 234.95 57.15 0)
  5859. (effects (font (size 1.27 1.27)) hide)
  5860. )
  5861. (pin "1" (uuid 8b351629-fc98-477b-84c6-ea5a6d5142c8))
  5862. (pin "2" (uuid 6ba9c947-676c-4bca-a69a-94b4efe43002))
  5863. (pin "3" (uuid 03f1c55d-e25d-466b-8b97-cf61e03ec0b6))
  5864. (pin "4" (uuid b1f7dda5-3fc1-4c20-9195-fd426f090951))
  5865. (pin "5" (uuid e8a3462d-4ce9-4834-8d2a-2bacd73d6629))
  5866. (pin "6" (uuid 8d7da2d8-1607-4b29-a822-4afa91b052f3))
  5867. (pin "8" (uuid 4eaa075d-7fb1-4efd-94ee-06a96e8b5ed3))
  5868. (pin "9" (uuid 76d63f42-b317-4d36-9487-95d72b9dd6e1))
  5869. (pin "10" (uuid aed49a57-a3b3-4106-98b4-ac86e75c1d9a))
  5870. (pin "11" (uuid e7940986-df10-4dc5-b4d2-e3c1e8596738))
  5871. (pin "12" (uuid fd82c3bb-e4c6-4c82-8fe0-96ca4a76b516))
  5872. (pin "13" (uuid 275b6bd8-bfb3-4873-9571-e4a5ab4e6bab))
  5873. (pin "14" (uuid dbf13184-00c8-4953-b3a4-933fb53e92e3))
  5874. (pin "7" (uuid d40a2ee7-2242-45d0-8986-893e0087d6b0))
  5875. )
  5876. (symbol (lib_id "74xx:SN74LS07") (at 234.95 46.99 180) (unit 5)
  5877. (in_bom yes) (on_board yes)
  5878. (uuid 00000000-0000-0000-0000-000060f93294)
  5879. (property "Reference" "U3" (id 0) (at 229.87 43.18 0))
  5880. (property "Value" "SN74LS07" (id 1) (at 245.11 43.18 0))
  5881. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 46.99 0)
  5882. (effects (font (size 1.27 1.27)) hide)
  5883. )
  5884. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 46.99 0)
  5885. (effects (font (size 1.27 1.27)) hide)
  5886. )
  5887. (property "LCSC" "C371970" (id 4) (at 234.95 46.99 0)
  5888. (effects (font (size 1.27 1.27)) hide)
  5889. )
  5890. (pin "1" (uuid ad8f41be-f5b8-4db9-91c1-4ac88215132f))
  5891. (pin "2" (uuid 8524f880-4d9e-4e04-bf87-83a014939864))
  5892. (pin "3" (uuid ea3901b5-afa3-4cca-82ca-8772b619ee94))
  5893. (pin "4" (uuid eef0ae26-648d-48c9-ae3e-b9f072770fbc))
  5894. (pin "5" (uuid a2ab87f0-a517-4e98-b164-49ff82023253))
  5895. (pin "6" (uuid 7a3490b4-17f5-42e1-87dd-df4d9f71b1ff))
  5896. (pin "8" (uuid c65093e6-048f-46e0-886d-4fe9ca85f41b))
  5897. (pin "9" (uuid 67d30b3d-9756-4d82-a07e-db4c12497446))
  5898. (pin "10" (uuid f5554ab6-a586-4d52-83f2-873de3663067))
  5899. (pin "11" (uuid 1f867b4f-e3fd-485f-9296-ed4f9cae7ab3))
  5900. (pin "12" (uuid b62bedb0-05f8-422e-b49f-2eaa1d042596))
  5901. (pin "13" (uuid 02941a67-3142-4aa1-8359-46cd00c25bdc))
  5902. (pin "14" (uuid 6c0ddf16-c134-485d-ad59-bc7cb1b97db3))
  5903. (pin "7" (uuid a0311bd1-8e3c-476e-8049-cd28f98d7766))
  5904. )
  5905. (symbol (lib_id "74xx:SN74LS07") (at 234.95 36.83 180) (unit 6)
  5906. (in_bom yes) (on_board yes)
  5907. (uuid 00000000-0000-0000-0000-000060f949da)
  5908. (property "Reference" "U3" (id 0) (at 229.87 33.02 0))
  5909. (property "Value" "SN74LS07" (id 1) (at 245.11 33.02 0))
  5910. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 36.83 0)
  5911. (effects (font (size 1.27 1.27)) hide)
  5912. )
  5913. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 36.83 0)
  5914. (effects (font (size 1.27 1.27)) hide)
  5915. )
  5916. (property "LCSC" "C371970" (id 4) (at 234.95 36.83 0)
  5917. (effects (font (size 1.27 1.27)) hide)
  5918. )
  5919. (pin "1" (uuid fb2ce701-3696-47ba-9260-b241e1e64743))
  5920. (pin "2" (uuid e74fe830-489c-4eea-92ab-36963cd09f15))
  5921. (pin "3" (uuid 7d5f6f01-199f-440a-a9d9-2d9e0f86c636))
  5922. (pin "4" (uuid dd431ab0-b3ac-4d58-a651-5f72635e752d))
  5923. (pin "5" (uuid 7219aa8f-eaea-48e4-9b35-fe7e14a73eb1))
  5924. (pin "6" (uuid 498d8fe3-4824-4211-9a9c-02d345c8524d))
  5925. (pin "8" (uuid b63cb0b9-9001-4f94-8223-7a51201da816))
  5926. (pin "9" (uuid bceccfd9-3b04-4046-8c4b-d3a7a676d17d))
  5927. (pin "10" (uuid 43c0b0b5-060a-416b-9065-fe29036f400f))
  5928. (pin "11" (uuid 71eaf77e-9e03-48fd-8863-33bb3c289791))
  5929. (pin "12" (uuid 0fa42326-3fa2-4523-b403-e582e228b584))
  5930. (pin "13" (uuid 334d2aea-23a6-47a1-8548-51ea33472ce4))
  5931. (pin "14" (uuid 44e575f8-9f35-4e64-b144-9981aa6c57cb))
  5932. (pin "7" (uuid 77dd0303-6fd7-41d0-b8ee-fac855872888))
  5933. )
  5934. (symbol (lib_id "74xx:SN74LS07") (at 167.64 34.29 0) (unit 7)
  5935. (in_bom yes) (on_board yes)
  5936. (uuid 00000000-0000-0000-0000-000060f95e46)
  5937. (property "Reference" "U3" (id 0) (at 173.482 33.1216 0)
  5938. (effects (font (size 1.27 1.27)) (justify left))
  5939. )
  5940. (property "Value" "SN74LS07" (id 1) (at 173.482 35.433 0)
  5941. (effects (font (size 1.27 1.27)) (justify left))
  5942. )
  5943. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 167.64 34.29 0)
  5944. (effects (font (size 1.27 1.27)) hide)
  5945. )
  5946. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 167.64 34.29 0)
  5947. (effects (font (size 1.27 1.27)) hide)
  5948. )
  5949. (property "LCSC" "C371970" (id 4) (at 167.64 34.29 0)
  5950. (effects (font (size 1.27 1.27)) hide)
  5951. )
  5952. (pin "1" (uuid 544453a9-afb4-4dcc-876b-4b10608576ed))
  5953. (pin "2" (uuid 9de2e906-f49e-46ef-8acd-054576ece926))
  5954. (pin "3" (uuid 37c939a5-968e-423f-b1c0-f415f2f84c95))
  5955. (pin "4" (uuid 15f14210-b812-40fe-ba04-0477cba8533d))
  5956. (pin "5" (uuid 72b44fdb-0813-4afe-877b-6f3eb25ef332))
  5957. (pin "6" (uuid 8ebee397-6ca9-4127-bf4e-4d533d479197))
  5958. (pin "8" (uuid 907ac0db-613b-4500-84a5-3a1bf5bc4632))
  5959. (pin "9" (uuid c715b474-717e-43c7-af3c-23f3515c958b))
  5960. (pin "10" (uuid 3acb1917-3846-4f39-8a60-17872e413002))
  5961. (pin "11" (uuid b85120cd-4ce6-4f12-8976-67a4d98fc944))
  5962. (pin "12" (uuid 2bba2ac3-1d94-46b8-9027-dc1ff23941bb))
  5963. (pin "13" (uuid c45fac7a-8497-45f4-a86b-2de6f80a2f45))
  5964. (pin "14" (uuid 41d3d80b-e46d-45c7-868b-84557a85f8a6))
  5965. (pin "7" (uuid 49df4c2e-b520-458b-a40c-83b813e3a918))
  5966. )
  5967. (symbol (lib_id "74xx:SN74LS07") (at 234.95 67.31 180) (unit 1)
  5968. (in_bom yes) (on_board yes)
  5969. (uuid 00000000-0000-0000-0000-00006102cdb8)
  5970. (property "Reference" "U4" (id 0) (at 229.87 63.5 0))
  5971. (property "Value" "SN74LS07" (id 1) (at 245.11 63.5 0))
  5972. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 67.31 0)
  5973. (effects (font (size 1.27 1.27)) hide)
  5974. )
  5975. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 67.31 0)
  5976. (effects (font (size 1.27 1.27)) hide)
  5977. )
  5978. (property "LCSC" "C371970" (id 4) (at 234.95 67.31 0)
  5979. (effects (font (size 1.27 1.27)) hide)
  5980. )
  5981. (pin "1" (uuid 62103c11-51d2-468d-851b-b3ecb76379fd))
  5982. (pin "2" (uuid 6dc190ab-497b-47c1-b6b2-6a0a7da3d0ba))
  5983. (pin "3" (uuid 6ba82d23-453f-48dc-a5a1-23aea4308bf8))
  5984. (pin "4" (uuid 662c0b65-d4d9-4e2f-b086-b1c99d02c2f4))
  5985. (pin "5" (uuid 04e831e2-b9cb-4e06-8254-326d43185925))
  5986. (pin "6" (uuid d9d37e6d-22d9-4844-a013-9af387824261))
  5987. (pin "8" (uuid 866cb55e-f570-40d7-a73c-c50c4df1463d))
  5988. (pin "9" (uuid 23a662f5-79dd-404e-a69e-7df450533437))
  5989. (pin "10" (uuid 0dd45ff4-6429-44e0-90c0-bc999ba3a60b))
  5990. (pin "11" (uuid bb89660a-c171-4dfb-a647-43808e70f067))
  5991. (pin "12" (uuid 74461c54-9441-45b8-800f-265e41e12d96))
  5992. (pin "13" (uuid d4aef4eb-ee95-4642-bd25-931288f96104))
  5993. (pin "14" (uuid b9f80874-e89b-4487-b3f9-2a84c8454fc0))
  5994. (pin "7" (uuid 97917855-3b2b-4e3c-8a77-93b5b2033aeb))
  5995. )
  5996. (symbol (lib_id "74xx:SN74LS07") (at 234.95 128.27 180) (unit 2)
  5997. (in_bom yes) (on_board yes)
  5998. (uuid 00000000-0000-0000-0000-00006102d33e)
  5999. (property "Reference" "U4" (id 0) (at 229.87 124.46 0))
  6000. (property "Value" "SN74LS07" (id 1) (at 245.11 123.19 0))
  6001. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 128.27 0)
  6002. (effects (font (size 1.27 1.27)) hide)
  6003. )
  6004. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 128.27 0)
  6005. (effects (font (size 1.27 1.27)) hide)
  6006. )
  6007. (property "LCSC" "C371970" (id 4) (at 234.95 128.27 0)
  6008. (effects (font (size 1.27 1.27)) hide)
  6009. )
  6010. (pin "1" (uuid 54b39782-0217-4bf7-9ba1-5d63d4481e8f))
  6011. (pin "2" (uuid b396102c-85e8-4bc1-bfa0-97e07019d085))
  6012. (pin "3" (uuid ce6fe94f-9351-48d2-bc59-9ec2780191f4))
  6013. (pin "4" (uuid 59650916-13de-4138-8779-8aa11bcfa820))
  6014. (pin "5" (uuid fc5987d0-b3ee-414e-a254-cefc82368a4f))
  6015. (pin "6" (uuid 3aa29644-ef2d-4b50-97ac-74614698f252))
  6016. (pin "8" (uuid a67391ab-6585-4a04-b0a9-0b6f3df8a55b))
  6017. (pin "9" (uuid 4512c64b-92b3-4399-8b1d-4af572da087a))
  6018. (pin "10" (uuid 65c7e039-e823-4c15-9681-a4344e5e06cd))
  6019. (pin "11" (uuid c2cf6d18-b9b9-4856-8dea-3c2089bc854e))
  6020. (pin "12" (uuid be0aaed8-57f1-4af4-9fa9-61096f8a5b45))
  6021. (pin "13" (uuid bf10640f-151b-49f3-b57f-0c3862bef553))
  6022. (pin "14" (uuid d37910f5-048c-487e-a2a2-0aa2c74c6c31))
  6023. (pin "7" (uuid 95140643-e9d7-46e5-9709-3823132c548f))
  6024. )
  6025. (symbol (lib_id "74xx:SN74LS07") (at 234.95 138.43 180) (unit 3)
  6026. (in_bom yes) (on_board yes)
  6027. (uuid 00000000-0000-0000-0000-00006102d348)
  6028. (property "Reference" "U4" (id 0) (at 229.87 134.62 0))
  6029. (property "Value" "SN74LS07" (id 1) (at 245.11 134.62 0))
  6030. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 138.43 0)
  6031. (effects (font (size 1.27 1.27)) hide)
  6032. )
  6033. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 138.43 0)
  6034. (effects (font (size 1.27 1.27)) hide)
  6035. )
  6036. (property "LCSC" "C371970" (id 4) (at 234.95 138.43 0)
  6037. (effects (font (size 1.27 1.27)) hide)
  6038. )
  6039. (pin "1" (uuid c6fda81d-1d3c-406a-8758-9f1b259764dd))
  6040. (pin "2" (uuid 049dc3c8-2e9d-40ca-abb8-9e3a47c022ff))
  6041. (pin "3" (uuid 7d060dc6-48b5-4e5c-bc80-46e3dea77289))
  6042. (pin "4" (uuid d2424eb0-4779-4ebc-9e7b-7b14ae2f527f))
  6043. (pin "5" (uuid 09df223b-8d4d-4be3-a158-ffa72fa73cdd))
  6044. (pin "6" (uuid 0ea711b1-d5d0-4be4-80c2-95f902cd0ea0))
  6045. (pin "8" (uuid 595ad7b0-c707-4e3c-b71a-d1c82058b074))
  6046. (pin "9" (uuid 3545e7ef-6762-4e72-b551-134daddf5c2f))
  6047. (pin "10" (uuid dcd859ad-b1d9-4705-a43e-804ef5baa05e))
  6048. (pin "11" (uuid 9b8ebbfa-89eb-4af2-85ca-1ef150139fa7))
  6049. (pin "12" (uuid 8f18a6bd-773e-4524-aa0f-478baf1deb84))
  6050. (pin "13" (uuid c0350447-4b09-49a3-9a36-a045f2a74542))
  6051. (pin "14" (uuid 52cd17a0-187c-42be-b917-c002bb120058))
  6052. (pin "7" (uuid d0ff1f8a-ea9a-41ae-8f9d-53c1cea866a0))
  6053. )
  6054. (symbol (lib_id "74xx:SN74LS07") (at 234.95 118.11 180) (unit 4)
  6055. (in_bom yes) (on_board yes)
  6056. (uuid 00000000-0000-0000-0000-00006102d352)
  6057. (property "Reference" "U4" (id 0) (at 229.87 114.3 0))
  6058. (property "Value" "SN74LS07" (id 1) (at 245.11 114.3 0))
  6059. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 118.11 0)
  6060. (effects (font (size 1.27 1.27)) hide)
  6061. )
  6062. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 118.11 0)
  6063. (effects (font (size 1.27 1.27)) hide)
  6064. )
  6065. (property "LCSC" "C371970" (id 4) (at 234.95 118.11 0)
  6066. (effects (font (size 1.27 1.27)) hide)
  6067. )
  6068. (pin "1" (uuid 3ca55dc2-43a8-4e7d-bfa9-2f645c14293d))
  6069. (pin "2" (uuid 48351a43-a786-49b8-82c7-bec1860b0dbd))
  6070. (pin "3" (uuid cef112d8-d090-46b0-a67f-c9d495aaf614))
  6071. (pin "4" (uuid dbde08c9-197c-4287-800f-e0d7c88721f7))
  6072. (pin "5" (uuid f695c34d-5192-467d-ba69-5943bd8eb359))
  6073. (pin "6" (uuid 8f2f24a8-96ac-4649-87d9-c01b482cb432))
  6074. (pin "8" (uuid ab53bdc6-ce0d-4241-8996-ce7f96233d93))
  6075. (pin "9" (uuid f0d8b35b-2fcc-4e9f-ae47-ff97b26d93c5))
  6076. (pin "10" (uuid 7a4f28d3-df64-4fc3-aa93-73928f681c88))
  6077. (pin "11" (uuid 7361005d-a3c1-4ea9-8141-d6f3ebc988b0))
  6078. (pin "12" (uuid 4a35a2b2-afe9-490e-99ce-b0b4184bbf6a))
  6079. (pin "13" (uuid f183bdb7-918e-4e75-9147-8fd9599ff2e5))
  6080. (pin "14" (uuid 9b18f8bd-25fc-4def-8ffa-7ec5fade04a9))
  6081. (pin "7" (uuid 5bf5788e-9590-4e56-a2be-4d105af61f5c))
  6082. )
  6083. (symbol (lib_id "74xx:SN74LS07") (at 234.95 107.95 180) (unit 5)
  6084. (in_bom yes) (on_board yes)
  6085. (uuid 00000000-0000-0000-0000-00006102d35c)
  6086. (property "Reference" "U4" (id 0) (at 229.87 104.14 0))
  6087. (property "Value" "SN74LS07" (id 1) (at 245.11 104.14 0))
  6088. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 107.95 0)
  6089. (effects (font (size 1.27 1.27)) hide)
  6090. )
  6091. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 107.95 0)
  6092. (effects (font (size 1.27 1.27)) hide)
  6093. )
  6094. (property "LCSC" "C371970" (id 4) (at 234.95 107.95 0)
  6095. (effects (font (size 1.27 1.27)) hide)
  6096. )
  6097. (pin "1" (uuid 0a0f5a28-356d-472b-939d-32321be8b642))
  6098. (pin "2" (uuid edb3e4a9-d34e-494a-97bb-7eeb71b77924))
  6099. (pin "3" (uuid f93c9357-67f5-4b5b-8995-f6295624cfe7))
  6100. (pin "4" (uuid f8bc9c74-48e0-4607-bad6-32358436973b))
  6101. (pin "5" (uuid b0343855-a069-4ada-87d0-c38b6bc73b78))
  6102. (pin "6" (uuid c7c42cae-062c-461d-ab2e-ab184b9ee396))
  6103. (pin "8" (uuid ffde6f99-591c-4421-80bc-047fe9d210b0))
  6104. (pin "9" (uuid 2a1bcd04-0f95-412f-b777-5ea2d413a31b))
  6105. (pin "10" (uuid 25545c85-5f3e-45cb-8a45-5d4689dfa3b1))
  6106. (pin "11" (uuid 94b179d6-cace-41c1-86d1-c64ce4de0da1))
  6107. (pin "12" (uuid 684f2ecf-c856-4969-8783-0c41a499d588))
  6108. (pin "13" (uuid 215d5459-d270-4040-a6dc-d8f2c2db0ef6))
  6109. (pin "14" (uuid f6c461ae-ca3e-4b81-8eaa-6adce7b5d940))
  6110. (pin "7" (uuid de13f1b6-9f3d-4d2a-9617-3eeb1dc41a08))
  6111. )
  6112. (symbol (lib_id "74xx:SN74LS07") (at 234.95 97.79 180) (unit 6)
  6113. (in_bom yes) (on_board yes)
  6114. (uuid 00000000-0000-0000-0000-00006102d366)
  6115. (property "Reference" "U4" (id 0) (at 229.87 93.98 0))
  6116. (property "Value" "SN74LS07" (id 1) (at 245.11 93.98 0))
  6117. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 234.95 97.79 0)
  6118. (effects (font (size 1.27 1.27)) hide)
  6119. )
  6120. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 234.95 97.79 0)
  6121. (effects (font (size 1.27 1.27)) hide)
  6122. )
  6123. (property "LCSC" "C371970" (id 4) (at 234.95 97.79 0)
  6124. (effects (font (size 1.27 1.27)) hide)
  6125. )
  6126. (pin "1" (uuid 62db7132-85da-4f51-bd4c-a10536ab91d0))
  6127. (pin "2" (uuid 82a93c8e-8dc4-43c4-a0a8-69806538b0ce))
  6128. (pin "3" (uuid c61cd22d-8592-4fb6-9a17-ac3d3d55fab7))
  6129. (pin "4" (uuid 0adb69d0-f073-4491-aac4-c578babb7343))
  6130. (pin "5" (uuid 7d54c3b0-29e5-4e22-858f-6b6f3b6ffa3e))
  6131. (pin "6" (uuid c1c20ed6-b585-471f-80d6-1cf3a8ac686d))
  6132. (pin "8" (uuid 9bc21a05-eb32-4f35-b054-6ee8456e14fc))
  6133. (pin "9" (uuid 742dbdc8-a9bf-43e4-a51e-aacc2631b992))
  6134. (pin "10" (uuid bac81bd5-bf26-4aa1-9d35-74424ff858ff))
  6135. (pin "11" (uuid acc3d950-1f9b-4fd1-857e-d07059443388))
  6136. (pin "12" (uuid 3e495ac4-b11f-4e38-b2d2-d494623eabe5))
  6137. (pin "13" (uuid a58ec886-072f-4e13-ad85-88e0fa7fdea6))
  6138. (pin "14" (uuid 620497c4-93b9-4834-bc1c-2d659147fb5a))
  6139. (pin "7" (uuid ef21d34a-1e90-48d4-bd60-0e32a4ab9c40))
  6140. )
  6141. (symbol (lib_id "74xx:SN74LS07") (at 189.23 34.29 0) (unit 7)
  6142. (in_bom yes) (on_board yes)
  6143. (uuid 00000000-0000-0000-0000-00006102d370)
  6144. (property "Reference" "U4" (id 0) (at 195.072 33.1216 0)
  6145. (effects (font (size 1.27 1.27)) (justify left))
  6146. )
  6147. (property "Value" "SN74LS07" (id 1) (at 195.072 35.433 0)
  6148. (effects (font (size 1.27 1.27)) (justify left))
  6149. )
  6150. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 189.23 34.29 0)
  6151. (effects (font (size 1.27 1.27)) hide)
  6152. )
  6153. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (id 3) (at 189.23 34.29 0)
  6154. (effects (font (size 1.27 1.27)) hide)
  6155. )
  6156. (property "LCSC" "C371970" (id 4) (at 189.23 34.29 0)
  6157. (effects (font (size 1.27 1.27)) hide)
  6158. )
  6159. (pin "1" (uuid b54c14a1-e7a4-4c83-a86a-f7bdbbb9e89e))
  6160. (pin "2" (uuid 482af62e-69af-467e-9687-7d912769da3f))
  6161. (pin "3" (uuid 62ad75f6-b79c-4071-b45c-d5f2d3400f5c))
  6162. (pin "4" (uuid 0c51601a-17b5-4b0b-a711-778aed55818e))
  6163. (pin "5" (uuid 2f877b66-60ed-471a-9c6f-2f0332611ee1))
  6164. (pin "6" (uuid 91db498e-ac1e-4b6d-a772-9dc72737a8de))
  6165. (pin "8" (uuid 6bf5501d-27f4-4d30-91de-b6f3fb93137a))
  6166. (pin "9" (uuid 9b6f3876-7389-4900-8d9b-7095db74b12b))
  6167. (pin "10" (uuid c380cd8d-3b83-44f5-ab97-1992fb0e0d6b))
  6168. (pin "11" (uuid 3ea39008-2129-480a-b855-d1e3a9269528))
  6169. (pin "12" (uuid 5bb28526-d563-4297-8282-bd72f77cd279))
  6170. (pin "13" (uuid bf1fa5df-a87d-44ba-a7dc-fea0ddbe480f))
  6171. (pin "14" (uuid c114b98f-c340-46d0-85d6-3e787c776a13))
  6172. (pin "7" (uuid c1257a43-33f6-4ff2-9e53-85ba1a2b0d2d))
  6173. )
  6174. (symbol (lib_id "Switch:SW_DIP_x01") (at 214.63 128.27 0) (unit 1)
  6175. (in_bom yes) (on_board yes)
  6176. (uuid 00000000-0000-0000-0000-00006113965b)
  6177. (property "Reference" "J2" (id 0) (at 218.5416 133.0452 90)
  6178. (effects (font (size 1.27 1.27)) (justify right))
  6179. )
  6180. (property "Value" "Conn_01x02_Male" (id 1) (at 212.09 121.92 0)
  6181. (effects (font (size 1.27 1.27)) (justify right))
  6182. )
  6183. (property "Footprint" "Button_Switch_THT:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile" (id 2) (at 214.63 128.27 0)
  6184. (effects (font (size 1.27 1.27)) hide)
  6185. )
  6186. (property "Datasheet" "~" (id 3) (at 214.63 128.27 0)
  6187. (effects (font (size 1.27 1.27)) hide)
  6188. )
  6189. (property "LCSC" "C160332" (id 4) (at 214.63 128.27 0)
  6190. (effects (font (size 1.27 1.27)) hide)
  6191. )
  6192. (pin "1" (uuid 681cfc22-eb9d-4c2f-9ea5-89c04aecadc4))
  6193. (pin "2" (uuid 0606874a-8758-44e9-ae59-f5feb3be295e))
  6194. )
  6195. (symbol (lib_id "Connector:Conn_01x03_Male") (at 116.84 34.29 180) (unit 1)
  6196. (in_bom yes) (on_board yes)
  6197. (uuid 00000000-0000-0000-0000-00006115910d)
  6198. (property "Reference" "J10" (id 0) (at 117.5512 32.5628 0)
  6199. (effects (font (size 1.27 1.27)) (justify right))
  6200. )
  6201. (property "Value" "Conn_01x03_Male" (id 1) (at 117.5512 34.8742 0)
  6202. (effects (font (size 1.27 1.27)) (justify right))
  6203. )
  6204. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 116.84 34.29 0)
  6205. (effects (font (size 1.27 1.27)) hide)
  6206. )
  6207. (property "Datasheet" "~" (id 3) (at 116.84 34.29 0)
  6208. (effects (font (size 1.27 1.27)) hide)
  6209. )
  6210. (pin "1" (uuid 0bc865a5-b2f9-4250-aa9c-7cde34db911e))
  6211. (pin "2" (uuid 48bfce0d-2c2e-48ed-ad0b-e8ca9c82f9a0))
  6212. (pin "3" (uuid 3d5cf429-0f57-410f-9cb4-66e75156a04a))
  6213. )
  6214. (symbol (lib_id "power:GND") (at 107.95 39.37 0) (unit 1)
  6215. (in_bom yes) (on_board yes)
  6216. (uuid 00000000-0000-0000-0000-000061180e4f)
  6217. (property "Reference" "#PWR0170" (id 0) (at 107.95 45.72 0)
  6218. (effects (font (size 1.27 1.27)) hide)
  6219. )
  6220. (property "Value" "GND" (id 1) (at 108.077 43.7642 0))
  6221. (property "Footprint" "" (id 2) (at 107.95 39.37 0)
  6222. (effects (font (size 1.27 1.27)) hide)
  6223. )
  6224. (property "Datasheet" "" (id 3) (at 107.95 39.37 0)
  6225. (effects (font (size 1.27 1.27)) hide)
  6226. )
  6227. (pin "1" (uuid cd2d2fb2-9aca-41f0-be21-42fed54a3cf3))
  6228. )
  6229. (symbol (lib_id "Device:R_Small") (at 267.97 27.94 270) (unit 1)
  6230. (in_bom yes) (on_board yes)
  6231. (uuid 00000000-0000-0000-0000-0000611f6a4c)
  6232. (property "Reference" "R7" (id 0) (at 264.16 25.4 90))
  6233. (property "Value" "10k" (id 1) (at 271.78 25.4 90))
  6234. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 27.94 0)
  6235. (effects (font (size 1.27 1.27)) hide)
  6236. )
  6237. (property "Datasheet" "~" (id 3) (at 267.97 27.94 0)
  6238. (effects (font (size 1.27 1.27)) hide)
  6239. )
  6240. (property "LCSC" "C25744" (id 4) (at 267.97 27.94 0)
  6241. (effects (font (size 1.27 1.27)) hide)
  6242. )
  6243. (pin "1" (uuid cf6489b9-2cb7-4d60-8de9-72e7fbb778c5))
  6244. (pin "2" (uuid 896dca97-c39b-4601-9bf9-cd3e123f007c))
  6245. )
  6246. (symbol (lib_id "Device:R_Small") (at 267.97 33.02 270) (unit 1)
  6247. (in_bom yes) (on_board yes)
  6248. (uuid 00000000-0000-0000-0000-0000611f8573)
  6249. (property "Reference" "R8" (id 0) (at 264.16 31.75 90))
  6250. (property "Value" "10k" (id 1) (at 271.78 30.48 90))
  6251. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 33.02 0)
  6252. (effects (font (size 1.27 1.27)) hide)
  6253. )
  6254. (property "Datasheet" "~" (id 3) (at 267.97 33.02 0)
  6255. (effects (font (size 1.27 1.27)) hide)
  6256. )
  6257. (property "LCSC" "C25744" (id 4) (at 267.97 33.02 0)
  6258. (effects (font (size 1.27 1.27)) hide)
  6259. )
  6260. (pin "1" (uuid 8f159cda-aff3-4861-936e-7f023a40f556))
  6261. (pin "2" (uuid 61dc861a-f1a1-4047-b0dc-8467c610b19a))
  6262. )
  6263. (symbol (lib_id "Device:R_Small") (at 267.97 38.1 270) (unit 1)
  6264. (in_bom yes) (on_board yes)
  6265. (uuid 00000000-0000-0000-0000-0000611f9281)
  6266. (property "Reference" "R9" (id 0) (at 264.16 35.56 90))
  6267. (property "Value" "10k" (id 1) (at 271.78 35.56 90))
  6268. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 38.1 0)
  6269. (effects (font (size 1.27 1.27)) hide)
  6270. )
  6271. (property "Datasheet" "~" (id 3) (at 267.97 38.1 0)
  6272. (effects (font (size 1.27 1.27)) hide)
  6273. )
  6274. (property "LCSC" "C25744" (id 4) (at 267.97 38.1 0)
  6275. (effects (font (size 1.27 1.27)) hide)
  6276. )
  6277. (pin "1" (uuid 75a97f43-6f80-4dbe-9aa5-53b49f5586eb))
  6278. (pin "2" (uuid 16cf0e22-c6b2-45a4-beaa-5cff542bc08d))
  6279. )
  6280. (symbol (lib_id "Device:R_Small") (at 267.97 43.18 270) (unit 1)
  6281. (in_bom yes) (on_board yes)
  6282. (uuid 00000000-0000-0000-0000-0000611f9f92)
  6283. (property "Reference" "R10" (id 0) (at 264.16 40.64 90))
  6284. (property "Value" "10k" (id 1) (at 271.78 40.64 90))
  6285. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 43.18 0)
  6286. (effects (font (size 1.27 1.27)) hide)
  6287. )
  6288. (property "Datasheet" "~" (id 3) (at 267.97 43.18 0)
  6289. (effects (font (size 1.27 1.27)) hide)
  6290. )
  6291. (property "LCSC" "C25744" (id 4) (at 267.97 43.18 0)
  6292. (effects (font (size 1.27 1.27)) hide)
  6293. )
  6294. (pin "1" (uuid 9d0adf74-661d-4cea-89c5-e9ae58448d24))
  6295. (pin "2" (uuid ca522c15-b33e-4fb6-80bd-2eed05cd4b4d))
  6296. )
  6297. (symbol (lib_id "Device:R_Small") (at 267.97 48.26 270) (unit 1)
  6298. (in_bom yes) (on_board yes)
  6299. (uuid 00000000-0000-0000-0000-0000611facfa)
  6300. (property "Reference" "R11" (id 0) (at 264.16 45.72 90))
  6301. (property "Value" "10k" (id 1) (at 271.78 45.72 90))
  6302. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 48.26 0)
  6303. (effects (font (size 1.27 1.27)) hide)
  6304. )
  6305. (property "Datasheet" "~" (id 3) (at 267.97 48.26 0)
  6306. (effects (font (size 1.27 1.27)) hide)
  6307. )
  6308. (property "LCSC" "C25744" (id 4) (at 267.97 48.26 0)
  6309. (effects (font (size 1.27 1.27)) hide)
  6310. )
  6311. (pin "1" (uuid e8a21aee-ae8d-479c-b81e-4be470b5870a))
  6312. (pin "2" (uuid 7a46ad85-358d-4ee5-b34b-d4ba07f16a44))
  6313. )
  6314. (symbol (lib_id "Device:R_Small") (at 267.97 53.34 270) (unit 1)
  6315. (in_bom yes) (on_board yes)
  6316. (uuid 00000000-0000-0000-0000-0000611fbaa4)
  6317. (property "Reference" "R12" (id 0) (at 264.16 50.8 90))
  6318. (property "Value" "10k" (id 1) (at 271.78 50.8 90))
  6319. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 53.34 0)
  6320. (effects (font (size 1.27 1.27)) hide)
  6321. )
  6322. (property "Datasheet" "~" (id 3) (at 267.97 53.34 0)
  6323. (effects (font (size 1.27 1.27)) hide)
  6324. )
  6325. (property "LCSC" "C25744" (id 4) (at 267.97 53.34 0)
  6326. (effects (font (size 1.27 1.27)) hide)
  6327. )
  6328. (pin "1" (uuid 31f31c7e-646d-4a37-88c6-75b4dcda809d))
  6329. (pin "2" (uuid d376e8ff-b4e6-45ee-bfe5-561ed1a3a9e4))
  6330. )
  6331. (symbol (lib_id "Device:R_Small") (at 267.97 58.42 270) (unit 1)
  6332. (in_bom yes) (on_board yes)
  6333. (uuid 00000000-0000-0000-0000-0000611fc856)
  6334. (property "Reference" "R13" (id 0) (at 264.16 55.88 90))
  6335. (property "Value" "10k" (id 1) (at 271.78 55.88 90))
  6336. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 58.42 0)
  6337. (effects (font (size 1.27 1.27)) hide)
  6338. )
  6339. (property "Datasheet" "~" (id 3) (at 267.97 58.42 0)
  6340. (effects (font (size 1.27 1.27)) hide)
  6341. )
  6342. (property "LCSC" "C25744" (id 4) (at 267.97 58.42 0)
  6343. (effects (font (size 1.27 1.27)) hide)
  6344. )
  6345. (pin "1" (uuid bc32c772-f75a-43e4-b3a8-a7be7eb0b0b7))
  6346. (pin "2" (uuid 103c4835-5f15-418a-ace8-90d7911eeeec))
  6347. )
  6348. (symbol (lib_id "Device:R_Small") (at 267.97 63.5 270) (unit 1)
  6349. (in_bom yes) (on_board yes)
  6350. (uuid 00000000-0000-0000-0000-0000611fd625)
  6351. (property "Reference" "R14" (id 0) (at 264.16 60.96 90))
  6352. (property "Value" "10k" (id 1) (at 271.78 60.96 90))
  6353. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 63.5 0)
  6354. (effects (font (size 1.27 1.27)) hide)
  6355. )
  6356. (property "Datasheet" "~" (id 3) (at 267.97 63.5 0)
  6357. (effects (font (size 1.27 1.27)) hide)
  6358. )
  6359. (property "LCSC" "C25744" (id 4) (at 267.97 63.5 0)
  6360. (effects (font (size 1.27 1.27)) hide)
  6361. )
  6362. (pin "1" (uuid 91254066-d51b-4c18-a8cf-b313fdb6f168))
  6363. (pin "2" (uuid cf26a1c6-e7a7-483b-a332-36e4672e2728))
  6364. )
  6365. (symbol (lib_id "Device:R_Small") (at 267.97 68.58 270) (unit 1)
  6366. (in_bom yes) (on_board yes)
  6367. (uuid 00000000-0000-0000-0000-0000611fe402)
  6368. (property "Reference" "R15" (id 0) (at 264.16 66.04 90))
  6369. (property "Value" "10k" (id 1) (at 271.78 66.04 90))
  6370. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 68.58 0)
  6371. (effects (font (size 1.27 1.27)) hide)
  6372. )
  6373. (property "Datasheet" "~" (id 3) (at 267.97 68.58 0)
  6374. (effects (font (size 1.27 1.27)) hide)
  6375. )
  6376. (property "LCSC" "C25744" (id 4) (at 267.97 68.58 0)
  6377. (effects (font (size 1.27 1.27)) hide)
  6378. )
  6379. (pin "1" (uuid 2195e2f2-da04-4bd6-a319-2c21e265eda5))
  6380. (pin "2" (uuid b5a18fcc-9f5b-4e8c-834d-52e7758a3c86))
  6381. )
  6382. (symbol (lib_id "Device:R_Small") (at 267.97 73.66 270) (unit 1)
  6383. (in_bom yes) (on_board yes)
  6384. (uuid 00000000-0000-0000-0000-0000611ff27a)
  6385. (property "Reference" "R16" (id 0) (at 264.16 71.12 90))
  6386. (property "Value" "10k" (id 1) (at 271.78 71.12 90))
  6387. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 73.66 0)
  6388. (effects (font (size 1.27 1.27)) hide)
  6389. )
  6390. (property "Datasheet" "~" (id 3) (at 267.97 73.66 0)
  6391. (effects (font (size 1.27 1.27)) hide)
  6392. )
  6393. (property "LCSC" "C25744" (id 4) (at 267.97 73.66 0)
  6394. (effects (font (size 1.27 1.27)) hide)
  6395. )
  6396. (pin "1" (uuid 2b4cd3f3-7dbf-4150-8a50-b1ff074d7900))
  6397. (pin "2" (uuid 8f7d91fb-9467-4183-80a1-867a2c3f8a7e))
  6398. )
  6399. (symbol (lib_id "Device:R_Small") (at 267.97 78.74 270) (unit 1)
  6400. (in_bom yes) (on_board yes)
  6401. (uuid 00000000-0000-0000-0000-0000612000bb)
  6402. (property "Reference" "R17" (id 0) (at 265.43 76.2 90))
  6403. (property "Value" "10k" (id 1) (at 271.78 76.2 90))
  6404. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 78.74 0)
  6405. (effects (font (size 1.27 1.27)) hide)
  6406. )
  6407. (property "Datasheet" "~" (id 3) (at 267.97 78.74 0)
  6408. (effects (font (size 1.27 1.27)) hide)
  6409. )
  6410. (property "LCSC" "C25744" (id 4) (at 267.97 78.74 0)
  6411. (effects (font (size 1.27 1.27)) hide)
  6412. )
  6413. (pin "1" (uuid 73841576-14f3-438c-b6e1-04ce224ed47b))
  6414. (pin "2" (uuid 0145e00b-171e-43d9-b06d-fee0a2f04f39))
  6415. )
  6416. (symbol (lib_id "Device:R_Small") (at 267.97 83.82 270) (unit 1)
  6417. (in_bom yes) (on_board yes)
  6418. (uuid 00000000-0000-0000-0000-000061200f43)
  6419. (property "Reference" "R18" (id 0) (at 264.16 81.28 90))
  6420. (property "Value" "10k" (id 1) (at 271.78 81.28 90))
  6421. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 83.82 0)
  6422. (effects (font (size 1.27 1.27)) hide)
  6423. )
  6424. (property "Datasheet" "~" (id 3) (at 267.97 83.82 0)
  6425. (effects (font (size 1.27 1.27)) hide)
  6426. )
  6427. (property "LCSC" "C25744" (id 4) (at 267.97 83.82 0)
  6428. (effects (font (size 1.27 1.27)) hide)
  6429. )
  6430. (pin "1" (uuid c7879267-0799-48e8-9735-c2b4735a16f6))
  6431. (pin "2" (uuid eec36734-bff4-49be-8a73-c2e6d89da086))
  6432. )
  6433. (symbol (lib_id "power:+5V") (at 274.32 90.17 0) (unit 1)
  6434. (in_bom yes) (on_board yes)
  6435. (uuid 00000000-0000-0000-0000-00006126baa5)
  6436. (property "Reference" "#PWR09" (id 0) (at 274.32 93.98 0)
  6437. (effects (font (size 1.27 1.27)) hide)
  6438. )
  6439. (property "Value" "+5V" (id 1) (at 274.701 85.7758 0))
  6440. (property "Footprint" "" (id 2) (at 274.32 90.17 0)
  6441. (effects (font (size 1.27 1.27)) hide)
  6442. )
  6443. (property "Datasheet" "" (id 3) (at 274.32 90.17 0)
  6444. (effects (font (size 1.27 1.27)) hide)
  6445. )
  6446. (pin "1" (uuid 807871f7-f850-4128-bdfe-ed4ba365f245))
  6447. )
  6448. (symbol (lib_id "Oscillator:ASCO") (at 122.555 121.92 0) (mirror y) (unit 1)
  6449. (in_bom yes) (on_board yes)
  6450. (uuid 00000000-0000-0000-0000-00006138d37a)
  6451. (property "Reference" "X1" (id 0) (at 133.8326 120.7516 0)
  6452. (effects (font (size 1.27 1.27)) (justify right))
  6453. )
  6454. (property "Value" "16MHz" (id 1) (at 133.8326 123.063 0)
  6455. (effects (font (size 1.27 1.27)) (justify right))
  6456. )
  6457. (property "Footprint" "Greaseweazle:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" (id 2) (at 120.015 130.81 0)
  6458. (effects (font (size 1.27 1.27)) hide)
  6459. )
  6460. (property "Datasheet" "https://abracon.com/Oscillators/ASCO.pdf" (id 3) (at 128.27 118.745 0)
  6461. (effects (font (size 1.27 1.27)) hide)
  6462. )
  6463. (property "MOUSER" "520-3225MV-160-BNT" (id 4) (at 122.555 121.92 0)
  6464. (effects (font (size 1.27 1.27)) hide)
  6465. )
  6466. (property "LCSC" "C252336" (id 5) (at 122.555 121.92 0)
  6467. (effects (font (size 1.27 1.27)) hide)
  6468. )
  6469. (pin "1" (uuid 02b07214-5684-4bf1-9764-9cbbb73366f0))
  6470. (pin "2" (uuid 94b02acb-b941-4e5d-a803-5f767ff385da))
  6471. (pin "3" (uuid dd18e56c-7eee-4e90-ad95-e6ce34c0fb16))
  6472. (pin "4" (uuid b68961b1-2003-495c-ae70-e4148030a126))
  6473. )
  6474. (symbol (lib_id "power:+3V3") (at 122.555 111.76 0) (unit 1)
  6475. (in_bom yes) (on_board yes)
  6476. (uuid 00000000-0000-0000-0000-00006139973e)
  6477. (property "Reference" "#PWR04" (id 0) (at 122.555 115.57 0)
  6478. (effects (font (size 1.27 1.27)) hide)
  6479. )
  6480. (property "Value" "+3V3" (id 1) (at 126.365 110.49 0))
  6481. (property "Footprint" "" (id 2) (at 122.555 111.76 0)
  6482. (effects (font (size 1.27 1.27)) hide)
  6483. )
  6484. (property "Datasheet" "" (id 3) (at 122.555 111.76 0)
  6485. (effects (font (size 1.27 1.27)) hide)
  6486. )
  6487. (pin "1" (uuid 989a8ff9-18c2-413e-961e-31d789a51854))
  6488. )
  6489. (symbol (lib_id "power:GND") (at 122.555 130.81 0) (unit 1)
  6490. (in_bom yes) (on_board yes)
  6491. (uuid 00000000-0000-0000-0000-0000613a4a45)
  6492. (property "Reference" "#PWR05" (id 0) (at 122.555 137.16 0)
  6493. (effects (font (size 1.27 1.27)) hide)
  6494. )
  6495. (property "Value" "GND" (id 1) (at 122.682 135.2042 0))
  6496. (property "Footprint" "" (id 2) (at 122.555 130.81 0)
  6497. (effects (font (size 1.27 1.27)) hide)
  6498. )
  6499. (property "Datasheet" "" (id 3) (at 122.555 130.81 0)
  6500. (effects (font (size 1.27 1.27)) hide)
  6501. )
  6502. (pin "1" (uuid bd599c2b-ec09-436e-942e-6849fdb43942))
  6503. )
  6504. (symbol (lib_id "Device:R_Small") (at 267.97 92.71 270) (unit 1)
  6505. (in_bom yes) (on_board yes)
  6506. (uuid 00000000-0000-0000-0000-000061540484)
  6507. (property "Reference" "R19" (id 0) (at 264.16 90.17 90))
  6508. (property "Value" "1k" (id 1) (at 271.78 90.17 90))
  6509. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 92.71 0)
  6510. (effects (font (size 1.27 1.27)) hide)
  6511. )
  6512. (property "Datasheet" "~" (id 3) (at 267.97 92.71 0)
  6513. (effects (font (size 1.27 1.27)) hide)
  6514. )
  6515. (property "LCSC" "C11702" (id 4) (at 267.97 92.71 0)
  6516. (effects (font (size 1.27 1.27)) hide)
  6517. )
  6518. (pin "1" (uuid bdb39d38-ce31-4800-bd04-5e8489581a7c))
  6519. (pin "2" (uuid b868dcd4-3a02-4fb0-9750-dc85febd6913))
  6520. )
  6521. (symbol (lib_id "Device:R_Small") (at 267.97 97.79 270) (unit 1)
  6522. (in_bom yes) (on_board yes)
  6523. (uuid 00000000-0000-0000-0000-000061541c23)
  6524. (property "Reference" "R20" (id 0) (at 264.16 95.25 90))
  6525. (property "Value" "1k" (id 1) (at 271.78 96.52 90))
  6526. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 97.79 0)
  6527. (effects (font (size 1.27 1.27)) hide)
  6528. )
  6529. (property "Datasheet" "~" (id 3) (at 267.97 97.79 0)
  6530. (effects (font (size 1.27 1.27)) hide)
  6531. )
  6532. (property "LCSC" "C11702" (id 4) (at 267.97 97.79 0)
  6533. (effects (font (size 1.27 1.27)) hide)
  6534. )
  6535. (pin "1" (uuid c6b17716-5fd8-428a-8f7e-0372ee8b9ea7))
  6536. (pin "2" (uuid c7bce3ff-6d28-4c2c-9b64-11b2aa93a5ca))
  6537. )
  6538. (symbol (lib_id "Device:R_Small") (at 267.97 102.87 270) (unit 1)
  6539. (in_bom yes) (on_board yes)
  6540. (uuid 00000000-0000-0000-0000-0000615428fc)
  6541. (property "Reference" "R21" (id 0) (at 265.43 100.33 90))
  6542. (property "Value" "1k" (id 1) (at 271.78 100.33 90))
  6543. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 102.87 0)
  6544. (effects (font (size 1.27 1.27)) hide)
  6545. )
  6546. (property "Datasheet" "~" (id 3) (at 267.97 102.87 0)
  6547. (effects (font (size 1.27 1.27)) hide)
  6548. )
  6549. (property "LCSC" "C11702" (id 4) (at 267.97 102.87 0)
  6550. (effects (font (size 1.27 1.27)) hide)
  6551. )
  6552. (pin "1" (uuid 925730e4-95c9-4c63-8650-486fa63f2212))
  6553. (pin "2" (uuid 23a5ced7-2b7d-4185-9a82-1fbdc1aa4390))
  6554. )
  6555. (symbol (lib_id "Device:R_Small") (at 267.97 107.95 270) (unit 1)
  6556. (in_bom yes) (on_board yes)
  6557. (uuid 00000000-0000-0000-0000-0000615435d8)
  6558. (property "Reference" "R22" (id 0) (at 264.16 105.41 90))
  6559. (property "Value" "1k" (id 1) (at 271.78 105.41 90))
  6560. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 107.95 0)
  6561. (effects (font (size 1.27 1.27)) hide)
  6562. )
  6563. (property "Datasheet" "~" (id 3) (at 267.97 107.95 0)
  6564. (effects (font (size 1.27 1.27)) hide)
  6565. )
  6566. (property "LCSC" "C11702" (id 4) (at 267.97 107.95 0)
  6567. (effects (font (size 1.27 1.27)) hide)
  6568. )
  6569. (pin "1" (uuid a7dbcf5d-7f15-47b8-818f-7472764a1ac7))
  6570. (pin "2" (uuid 8099129e-89ff-4d3c-8e6f-309333d77fbf))
  6571. )
  6572. (symbol (lib_id "Device:R_Small") (at 267.97 113.03 270) (unit 1)
  6573. (in_bom yes) (on_board yes)
  6574. (uuid 00000000-0000-0000-0000-000061544310)
  6575. (property "Reference" "R23" (id 0) (at 264.16 110.49 90))
  6576. (property "Value" "1k" (id 1) (at 271.78 110.49 90))
  6577. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 267.97 113.03 0)
  6578. (effects (font (size 1.27 1.27)) hide)
  6579. )
  6580. (property "Datasheet" "~" (id 3) (at 267.97 113.03 0)
  6581. (effects (font (size 1.27 1.27)) hide)
  6582. )
  6583. (property "LCSC" "C11702" (id 4) (at 267.97 113.03 0)
  6584. (effects (font (size 1.27 1.27)) hide)
  6585. )
  6586. (pin "1" (uuid 6139c8f7-018f-4692-9e06-8efb167aaa9c))
  6587. (pin "2" (uuid 797aa639-894b-4650-a767-8c9ecc99241c))
  6588. )
  6589. (symbol (lib_id "power:+3V3") (at 274.32 25.4 0) (unit 1)
  6590. (in_bom yes) (on_board yes)
  6591. (uuid 00000000-0000-0000-0000-000061550552)
  6592. (property "Reference" "#PWR08" (id 0) (at 274.32 29.21 0)
  6593. (effects (font (size 1.27 1.27)) hide)
  6594. )
  6595. (property "Value" "+3V3" (id 1) (at 274.701 21.0058 0))
  6596. (property "Footprint" "" (id 2) (at 274.32 25.4 0)
  6597. (effects (font (size 1.27 1.27)) hide)
  6598. )
  6599. (property "Datasheet" "" (id 3) (at 274.32 25.4 0)
  6600. (effects (font (size 1.27 1.27)) hide)
  6601. )
  6602. (pin "1" (uuid ccfbcf7f-cf75-49ec-a1e7-7b013b2d3905))
  6603. )
  6604. (symbol (lib_id "Device:C_Small") (at 151.13 24.13 0) (unit 1)
  6605. (in_bom yes) (on_board yes)
  6606. (uuid 00000000-0000-0000-0000-0000616c45b0)
  6607. (property "Reference" "C19" (id 0) (at 153.4668 22.9616 0)
  6608. (effects (font (size 1.27 1.27)) (justify left))
  6609. )
  6610. (property "Value" "100nF" (id 1) (at 153.4668 25.273 0)
  6611. (effects (font (size 1.27 1.27)) (justify left))
  6612. )
  6613. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 151.13 24.13 0)
  6614. (effects (font (size 1.27 1.27)) hide)
  6615. )
  6616. (property "Datasheet" "~" (id 3) (at 151.13 24.13 0)
  6617. (effects (font (size 1.27 1.27)) hide)
  6618. )
  6619. (property "LCSC" "C1525" (id 4) (at 151.13 24.13 0)
  6620. (effects (font (size 1.27 1.27)) hide)
  6621. )
  6622. (pin "1" (uuid 6ff4ddb0-7fc2-4345-b786-a84d787ec204))
  6623. (pin "2" (uuid de8b9cd6-23ff-4031-b87e-0b8a74cfc6f3))
  6624. )
  6625. (symbol (lib_id "Device:C_Small") (at 139.7 24.13 0) (unit 1)
  6626. (in_bom yes) (on_board yes)
  6627. (uuid 00000000-0000-0000-0000-0000616c45ba)
  6628. (property "Reference" "C18" (id 0) (at 142.0368 22.9616 0)
  6629. (effects (font (size 1.27 1.27)) (justify left))
  6630. )
  6631. (property "Value" "100nF" (id 1) (at 142.0368 25.273 0)
  6632. (effects (font (size 1.27 1.27)) (justify left))
  6633. )
  6634. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 139.7 24.13 0)
  6635. (effects (font (size 1.27 1.27)) hide)
  6636. )
  6637. (property "Datasheet" "~" (id 3) (at 139.7 24.13 0)
  6638. (effects (font (size 1.27 1.27)) hide)
  6639. )
  6640. (property "LCSC" "C1525" (id 4) (at 139.7 24.13 0)
  6641. (effects (font (size 1.27 1.27)) hide)
  6642. )
  6643. (pin "1" (uuid b9b9114f-cfdd-4f0f-994c-c896bb2c8ed4))
  6644. (pin "2" (uuid d9ec4686-42ea-445a-9055-88bd8eb9cf52))
  6645. )
  6646. (symbol (lib_id "power:GND") (at 167.64 49.53 0) (unit 1)
  6647. (in_bom yes) (on_board yes)
  6648. (uuid 00000000-0000-0000-0000-00006170e1c1)
  6649. (property "Reference" "#PWR06" (id 0) (at 167.64 55.88 0)
  6650. (effects (font (size 1.27 1.27)) hide)
  6651. )
  6652. (property "Value" "GND" (id 1) (at 167.767 53.9242 0))
  6653. (property "Footprint" "" (id 2) (at 167.64 49.53 0)
  6654. (effects (font (size 1.27 1.27)) hide)
  6655. )
  6656. (property "Datasheet" "" (id 3) (at 167.64 49.53 0)
  6657. (effects (font (size 1.27 1.27)) hide)
  6658. )
  6659. (pin "1" (uuid de1be746-b7ec-4baf-8299-9379d5cfcc62))
  6660. )
  6661. (symbol (lib_id "power:GND") (at 189.23 49.53 0) (unit 1)
  6662. (in_bom yes) (on_board yes)
  6663. (uuid 00000000-0000-0000-0000-00006171a8a6)
  6664. (property "Reference" "#PWR07" (id 0) (at 189.23 55.88 0)
  6665. (effects (font (size 1.27 1.27)) hide)
  6666. )
  6667. (property "Value" "GND" (id 1) (at 189.357 53.9242 0))
  6668. (property "Footprint" "" (id 2) (at 189.23 49.53 0)
  6669. (effects (font (size 1.27 1.27)) hide)
  6670. )
  6671. (property "Datasheet" "" (id 3) (at 189.23 49.53 0)
  6672. (effects (font (size 1.27 1.27)) hide)
  6673. )
  6674. (pin "1" (uuid 778638ac-e0fb-42b8-8c63-0809f5895195))
  6675. )
  6676. (symbol (lib_id "Device:LED") (at 57.15 36.83 90) (unit 1)
  6677. (in_bom yes) (on_board yes)
  6678. (uuid 00000000-0000-0000-0000-000061787067)
  6679. (property "Reference" "D1" (id 0) (at 60.1472 35.8394 90)
  6680. (effects (font (size 1.27 1.27)) (justify right))
  6681. )
  6682. (property "Value" "LED" (id 1) (at 60.1472 38.1508 90)
  6683. (effects (font (size 1.27 1.27)) (justify right))
  6684. )
  6685. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 57.15 36.83 0)
  6686. (effects (font (size 1.27 1.27)) hide)
  6687. )
  6688. (property "Datasheet" "~" (id 3) (at 57.15 36.83 0)
  6689. (effects (font (size 1.27 1.27)) hide)
  6690. )
  6691. (property "LCSC" "C72041" (id 4) (at 57.15 36.83 0)
  6692. (effects (font (size 1.27 1.27)) hide)
  6693. )
  6694. (pin "1" (uuid 62a2d35c-51f3-4560-9ba3-c8554b164be4))
  6695. (pin "2" (uuid 43adeeda-45a9-49c0-9f1f-746f14391161))
  6696. )
  6697. (symbol (lib_id "Device:R_Small") (at 57.15 29.21 0) (unit 1)
  6698. (in_bom yes) (on_board yes)
  6699. (uuid 00000000-0000-0000-0000-000061789539)
  6700. (property "Reference" "R6" (id 0) (at 58.6486 28.0416 0)
  6701. (effects (font (size 1.27 1.27)) (justify left))
  6702. )
  6703. (property "Value" "470" (id 1) (at 58.6486 30.353 0)
  6704. (effects (font (size 1.27 1.27)) (justify left))
  6705. )
  6706. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 57.15 29.21 0)
  6707. (effects (font (size 1.27 1.27)) hide)
  6708. )
  6709. (property "Datasheet" "~" (id 3) (at 57.15 29.21 0)
  6710. (effects (font (size 1.27 1.27)) hide)
  6711. )
  6712. (property "LCSC" "C25117" (id 4) (at 57.15 29.21 0)
  6713. (effects (font (size 1.27 1.27)) hide)
  6714. )
  6715. (pin "1" (uuid 1cb534a2-4c17-4751-8a89-694b1a1ecbe7))
  6716. (pin "2" (uuid d80a6ce8-ddc9-4465-843e-77fab6b40b99))
  6717. )
  6718. (symbol (lib_id "power:+3V3") (at 57.15 25.4 0) (unit 1)
  6719. (in_bom yes) (on_board yes)
  6720. (uuid 00000000-0000-0000-0000-0000617910f5)
  6721. (property "Reference" "#PWR03" (id 0) (at 57.15 29.21 0)
  6722. (effects (font (size 1.27 1.27)) hide)
  6723. )
  6724. (property "Value" "+3V3" (id 1) (at 57.531 21.0058 0))
  6725. (property "Footprint" "" (id 2) (at 57.15 25.4 0)
  6726. (effects (font (size 1.27 1.27)) hide)
  6727. )
  6728. (property "Datasheet" "" (id 3) (at 57.15 25.4 0)
  6729. (effects (font (size 1.27 1.27)) hide)
  6730. )
  6731. (pin "1" (uuid 7b73243f-f2a2-4601-b3a2-a4364a47c988))
  6732. )
  6733. (symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 256.54 151.13 0) (unit 1)
  6734. (in_bom yes) (on_board yes)
  6735. (uuid 00000000-0000-0000-0000-0000619aeefc)
  6736. (property "Reference" "J5" (id 0) (at 257.81 140.5382 0))
  6737. (property "Value" "ST LINK DEBUG/FLASH" (id 1) (at 257.81 142.8496 0))
  6738. (property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (id 2) (at 256.54 151.13 0)
  6739. (effects (font (size 1.27 1.27)) hide)
  6740. )
  6741. (property "Datasheet" "~" (id 3) (at 256.54 151.13 0)
  6742. (effects (font (size 1.27 1.27)) hide)
  6743. )
  6744. (property "LCSC" "C706914" (id 4) (at 256.54 151.13 0)
  6745. (effects (font (size 1.27 1.27)) hide)
  6746. )
  6747. (pin "1" (uuid d9904713-5589-410c-a87c-dc35e17cdc96))
  6748. (pin "10" (uuid c6167abf-5b27-4d58-bbc4-02a12e1b50f2))
  6749. (pin "2" (uuid cc6d8589-d3ef-4c49-8f29-121ddf19266e))
  6750. (pin "3" (uuid c97331df-a2bf-4a4b-b52c-67d808eb3912))
  6751. (pin "4" (uuid b686aa45-50ed-4c6d-9a9e-44c8ef2cc835))
  6752. (pin "5" (uuid feb7af07-00c5-44ae-98db-c56bb3db2efb))
  6753. (pin "6" (uuid 15b9d65e-3834-4c21-b97d-64b85ecb2c04))
  6754. (pin "7" (uuid a2cb3dd4-7456-4418-96f1-4c8fc4e82f93))
  6755. (pin "8" (uuid 1a3dca5e-9f4a-44a8-b3e2-f1721faa1094))
  6756. (pin "9" (uuid 876b127b-2c90-425b-b412-703b2a6ab315))
  6757. )
  6758. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 152.4 167.64 0) (unit 1)
  6759. (in_bom yes) (on_board yes)
  6760. (uuid 00000000-0000-0000-0000-000061a29d54)
  6761. (property "Reference" "J7" (id 0) (at 151.13 158.75 0)
  6762. (effects (font (size 1.27 1.27)) (justify left))
  6763. )
  6764. (property "Value" "ID" (id 1) (at 135.89 161.29 0)
  6765. (effects (font (size 1.27 1.27)) (justify left))
  6766. )
  6767. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (id 2) (at 152.4 167.64 0)
  6768. (effects (font (size 1.27 1.27)) hide)
  6769. )
  6770. (property "Datasheet" "~" (id 3) (at 152.4 167.64 0)
  6771. (effects (font (size 1.27 1.27)) hide)
  6772. )
  6773. (property "LCSC" "C225478" (id 4) (at 152.4 167.64 0)
  6774. (effects (font (size 1.27 1.27)) hide)
  6775. )
  6776. (pin "1" (uuid 2460893c-a3af-4899-95e1-0e398bf3d855))
  6777. (pin "2" (uuid 4aa6fc9f-d2ac-435f-8408-092c94eb96e1))
  6778. (pin "3" (uuid a044e21d-edf5-4199-9c94-8aa40ba0be53))
  6779. )
  6780. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 163.83 167.64 0) (unit 1)
  6781. (in_bom yes) (on_board yes)
  6782. (uuid 00000000-0000-0000-0000-000061a2b329)
  6783. (property "Reference" "J8" (id 0) (at 162.56 158.75 0)
  6784. (effects (font (size 1.27 1.27)) (justify left))
  6785. )
  6786. (property "Value" "ID LOW" (id 1) (at 161.29 161.29 0)
  6787. (effects (font (size 1.27 1.27)) (justify left))
  6788. )
  6789. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (id 2) (at 163.83 167.64 0)
  6790. (effects (font (size 1.27 1.27)) hide)
  6791. )
  6792. (property "Datasheet" "~" (id 3) (at 163.83 167.64 0)
  6793. (effects (font (size 1.27 1.27)) hide)
  6794. )
  6795. (property "LCSC" "C225478" (id 4) (at 163.83 167.64 0)
  6796. (effects (font (size 1.27 1.27)) hide)
  6797. )
  6798. (pin "1" (uuid a9f64757-5858-4f74-85b0-83b0b6984315))
  6799. (pin "2" (uuid 6b41202c-9017-4555-8823-836bda0ce6bf))
  6800. (pin "3" (uuid e71a0e1f-4c5f-4fa7-97cc-0c3ffe757078))
  6801. )
  6802. (symbol (lib_id "power:+3V3") (at 144.78 162.56 0) (unit 1)
  6803. (in_bom yes) (on_board yes)
  6804. (uuid 00000000-0000-0000-0000-000061a5abb1)
  6805. (property "Reference" "#PWR0107" (id 0) (at 144.78 166.37 0)
  6806. (effects (font (size 1.27 1.27)) hide)
  6807. )
  6808. (property "Value" "+3V3" (id 1) (at 145.161 158.1658 0))
  6809. (property "Footprint" "" (id 2) (at 144.78 162.56 0)
  6810. (effects (font (size 1.27 1.27)) hide)
  6811. )
  6812. (property "Datasheet" "" (id 3) (at 144.78 162.56 0)
  6813. (effects (font (size 1.27 1.27)) hide)
  6814. )
  6815. (pin "1" (uuid 7134f0e7-4867-4617-b970-a95d472f2379))
  6816. )
  6817. (symbol (lib_id "power:GND") (at 156.21 172.72 0) (unit 1)
  6818. (in_bom yes) (on_board yes)
  6819. (uuid 00000000-0000-0000-0000-000061a8d98a)
  6820. (property "Reference" "#PWR0108" (id 0) (at 156.21 179.07 0)
  6821. (effects (font (size 1.27 1.27)) hide)
  6822. )
  6823. (property "Value" "GND" (id 1) (at 156.337 177.1142 0))
  6824. (property "Footprint" "" (id 2) (at 156.21 172.72 0)
  6825. (effects (font (size 1.27 1.27)) hide)
  6826. )
  6827. (property "Datasheet" "" (id 3) (at 156.21 172.72 0)
  6828. (effects (font (size 1.27 1.27)) hide)
  6829. )
  6830. (pin "1" (uuid 391a6298-71f7-4c29-9a57-1b9126684372))
  6831. )
  6832. (symbol (lib_id "power:GND") (at 241.3 160.02 0) (unit 1)
  6833. (in_bom yes) (on_board yes)
  6834. (uuid 00000000-0000-0000-0000-000061aafd54)
  6835. (property "Reference" "#PWR0110" (id 0) (at 241.3 166.37 0)
  6836. (effects (font (size 1.27 1.27)) hide)
  6837. )
  6838. (property "Value" "GND" (id 1) (at 241.427 164.4142 0))
  6839. (property "Footprint" "" (id 2) (at 241.3 160.02 0)
  6840. (effects (font (size 1.27 1.27)) hide)
  6841. )
  6842. (property "Datasheet" "" (id 3) (at 241.3 160.02 0)
  6843. (effects (font (size 1.27 1.27)) hide)
  6844. )
  6845. (pin "1" (uuid f6661887-cf0e-4db1-8f7b-e7f30359b22c))
  6846. )
  6847. (symbol (lib_id "power:GND") (at 271.78 160.02 0) (unit 1)
  6848. (in_bom yes) (on_board yes)
  6849. (uuid 00000000-0000-0000-0000-000061abe3cd)
  6850. (property "Reference" "#PWR0111" (id 0) (at 271.78 166.37 0)
  6851. (effects (font (size 1.27 1.27)) hide)
  6852. )
  6853. (property "Value" "GND" (id 1) (at 271.907 164.4142 0))
  6854. (property "Footprint" "" (id 2) (at 271.78 160.02 0)
  6855. (effects (font (size 1.27 1.27)) hide)
  6856. )
  6857. (property "Datasheet" "" (id 3) (at 271.78 160.02 0)
  6858. (effects (font (size 1.27 1.27)) hide)
  6859. )
  6860. (pin "1" (uuid f9f013bd-5225-4bad-a22e-600cf9fcef63))
  6861. )
  6862. (symbol (lib_id "power:+3V3") (at 276.86 151.13 0) (unit 1)
  6863. (in_bom yes) (on_board yes)
  6864. (uuid 00000000-0000-0000-0000-000061aecf76)
  6865. (property "Reference" "#PWR0112" (id 0) (at 276.86 154.94 0)
  6866. (effects (font (size 1.27 1.27)) hide)
  6867. )
  6868. (property "Value" "+3V3" (id 1) (at 277.241 146.7358 0))
  6869. (property "Footprint" "" (id 2) (at 276.86 151.13 0)
  6870. (effects (font (size 1.27 1.27)) hide)
  6871. )
  6872. (property "Datasheet" "" (id 3) (at 276.86 151.13 0)
  6873. (effects (font (size 1.27 1.27)) hide)
  6874. )
  6875. (pin "1" (uuid 8657ebd4-6149-4492-bac5-2ce6f77c5b3b))
  6876. )
  6877. (symbol (lib_id "power:+5V") (at 281.94 151.13 0) (unit 1)
  6878. (in_bom yes) (on_board yes)
  6879. (uuid 00000000-0000-0000-0000-000061afd140)
  6880. (property "Reference" "#PWR0113" (id 0) (at 281.94 154.94 0)
  6881. (effects (font (size 1.27 1.27)) hide)
  6882. )
  6883. (property "Value" "+5V" (id 1) (at 282.321 146.7358 0))
  6884. (property "Footprint" "" (id 2) (at 281.94 151.13 0)
  6885. (effects (font (size 1.27 1.27)) hide)
  6886. )
  6887. (property "Datasheet" "" (id 3) (at 281.94 151.13 0)
  6888. (effects (font (size 1.27 1.27)) hide)
  6889. )
  6890. (pin "1" (uuid a01755df-86c4-4a62-95cc-ecf2809c8a1a))
  6891. )
  6892. (symbol (lib_id "power:+3V3") (at 236.22 151.13 0) (unit 1)
  6893. (in_bom yes) (on_board yes)
  6894. (uuid 00000000-0000-0000-0000-000061b0e64a)
  6895. (property "Reference" "#PWR0114" (id 0) (at 236.22 154.94 0)
  6896. (effects (font (size 1.27 1.27)) hide)
  6897. )
  6898. (property "Value" "+3V3" (id 1) (at 236.601 146.7358 0))
  6899. (property "Footprint" "" (id 2) (at 236.22 151.13 0)
  6900. (effects (font (size 1.27 1.27)) hide)
  6901. )
  6902. (property "Datasheet" "" (id 3) (at 236.22 151.13 0)
  6903. (effects (font (size 1.27 1.27)) hide)
  6904. )
  6905. (pin "1" (uuid a61f637c-a305-4916-bf82-376a9a4e2a26))
  6906. )
  6907. (symbol (lib_id "power:+5V") (at 229.87 151.13 0) (unit 1)
  6908. (in_bom yes) (on_board yes)
  6909. (uuid 00000000-0000-0000-0000-000061b1e450)
  6910. (property "Reference" "#PWR0115" (id 0) (at 229.87 154.94 0)
  6911. (effects (font (size 1.27 1.27)) hide)
  6912. )
  6913. (property "Value" "+5V" (id 1) (at 230.251 146.7358 0))
  6914. (property "Footprint" "" (id 2) (at 229.87 151.13 0)
  6915. (effects (font (size 1.27 1.27)) hide)
  6916. )
  6917. (property "Datasheet" "" (id 3) (at 229.87 151.13 0)
  6918. (effects (font (size 1.27 1.27)) hide)
  6919. )
  6920. (pin "1" (uuid cf88f82e-a67e-47a6-9146-3dc97dd3a3ac))
  6921. )
  6922. (symbol (lib_id "power:GND") (at 139.7 27.94 0) (unit 1)
  6923. (in_bom yes) (on_board yes)
  6924. (uuid 00000000-0000-0000-0000-000061b7ab9b)
  6925. (property "Reference" "#PWR0116" (id 0) (at 139.7 34.29 0)
  6926. (effects (font (size 1.27 1.27)) hide)
  6927. )
  6928. (property "Value" "GND" (id 1) (at 139.827 32.3342 0))
  6929. (property "Footprint" "" (id 2) (at 139.7 27.94 0)
  6930. (effects (font (size 1.27 1.27)) hide)
  6931. )
  6932. (property "Datasheet" "" (id 3) (at 139.7 27.94 0)
  6933. (effects (font (size 1.27 1.27)) hide)
  6934. )
  6935. (pin "1" (uuid 7e8e834c-5fcc-4c97-a591-250d41a34553))
  6936. )
  6937. (symbol (lib_id "power:GND") (at 151.13 27.94 0) (unit 1)
  6938. (in_bom yes) (on_board yes)
  6939. (uuid 00000000-0000-0000-0000-000061b8acb1)
  6940. (property "Reference" "#PWR0117" (id 0) (at 151.13 34.29 0)
  6941. (effects (font (size 1.27 1.27)) hide)
  6942. )
  6943. (property "Value" "GND" (id 1) (at 151.257 32.3342 0))
  6944. (property "Footprint" "" (id 2) (at 151.13 27.94 0)
  6945. (effects (font (size 1.27 1.27)) hide)
  6946. )
  6947. (property "Datasheet" "" (id 3) (at 151.13 27.94 0)
  6948. (effects (font (size 1.27 1.27)) hide)
  6949. )
  6950. (pin "1" (uuid a6fbafad-3f9c-4613-abf9-d6b0ea786512))
  6951. )
  6952. (symbol (lib_id "power:+3V3") (at 139.7 20.32 0) (unit 1)
  6953. (in_bom yes) (on_board yes)
  6954. (uuid 00000000-0000-0000-0000-000061b9ba45)
  6955. (property "Reference" "#PWR0118" (id 0) (at 139.7 24.13 0)
  6956. (effects (font (size 1.27 1.27)) hide)
  6957. )
  6958. (property "Value" "+3V3" (id 1) (at 140.081 15.9258 0))
  6959. (property "Footprint" "" (id 2) (at 139.7 20.32 0)
  6960. (effects (font (size 1.27 1.27)) hide)
  6961. )
  6962. (property "Datasheet" "" (id 3) (at 139.7 20.32 0)
  6963. (effects (font (size 1.27 1.27)) hide)
  6964. )
  6965. (pin "1" (uuid cd376ec6-47e1-418a-9127-045d1da49ecd))
  6966. )
  6967. (symbol (lib_id "power:+3V3") (at 151.13 20.32 0) (unit 1)
  6968. (in_bom yes) (on_board yes)
  6969. (uuid 00000000-0000-0000-0000-000061b9cd1c)
  6970. (property "Reference" "#PWR0119" (id 0) (at 151.13 24.13 0)
  6971. (effects (font (size 1.27 1.27)) hide)
  6972. )
  6973. (property "Value" "+3V3" (id 1) (at 151.511 15.9258 0))
  6974. (property "Footprint" "" (id 2) (at 151.13 20.32 0)
  6975. (effects (font (size 1.27 1.27)) hide)
  6976. )
  6977. (property "Datasheet" "" (id 3) (at 151.13 20.32 0)
  6978. (effects (font (size 1.27 1.27)) hide)
  6979. )
  6980. (pin "1" (uuid c148d6a2-b769-45c3-bba5-967203976bd7))
  6981. )
  6982. (symbol (lib_id "power:+3V3") (at 167.64 20.32 0) (unit 1)
  6983. (in_bom yes) (on_board yes)
  6984. (uuid 00000000-0000-0000-0000-000061b9df0e)
  6985. (property "Reference" "#PWR0120" (id 0) (at 167.64 24.13 0)
  6986. (effects (font (size 1.27 1.27)) hide)
  6987. )
  6988. (property "Value" "+3V3" (id 1) (at 168.021 15.9258 0))
  6989. (property "Footprint" "" (id 2) (at 167.64 20.32 0)
  6990. (effects (font (size 1.27 1.27)) hide)
  6991. )
  6992. (property "Datasheet" "" (id 3) (at 167.64 20.32 0)
  6993. (effects (font (size 1.27 1.27)) hide)
  6994. )
  6995. (pin "1" (uuid c37f6d7b-cb0d-41e8-bebd-5887732015af))
  6996. )
  6997. (symbol (lib_id "power:+3V3") (at 189.23 20.32 0) (unit 1)
  6998. (in_bom yes) (on_board yes)
  6999. (uuid 00000000-0000-0000-0000-000061b9f12d)
  7000. (property "Reference" "#PWR0121" (id 0) (at 189.23 24.13 0)
  7001. (effects (font (size 1.27 1.27)) hide)
  7002. )
  7003. (property "Value" "+3V3" (id 1) (at 189.611 15.9258 0))
  7004. (property "Footprint" "" (id 2) (at 189.23 20.32 0)
  7005. (effects (font (size 1.27 1.27)) hide)
  7006. )
  7007. (property "Datasheet" "" (id 3) (at 189.23 20.32 0)
  7008. (effects (font (size 1.27 1.27)) hide)
  7009. )
  7010. (pin "1" (uuid 79ba0572-2056-43c1-be53-6ceefc2cf25a))
  7011. )
  7012. (symbol (lib_id "power:GND") (at 199.39 160.02 0) (unit 1)
  7013. (in_bom yes) (on_board yes) (fields_autoplaced)
  7014. (uuid 138b55c4-a8cf-43b6-aeeb-467cc948641b)
  7015. (property "Reference" "#PWR0175" (id 0) (at 199.39 166.37 0)
  7016. (effects (font (size 1.27 1.27)) hide)
  7017. )
  7018. (property "Value" "GND" (id 1) (at 199.39 165.1 0))
  7019. (property "Footprint" "" (id 2) (at 199.39 160.02 0)
  7020. (effects (font (size 1.27 1.27)) hide)
  7021. )
  7022. (property "Datasheet" "" (id 3) (at 199.39 160.02 0)
  7023. (effects (font (size 1.27 1.27)) hide)
  7024. )
  7025. (pin "1" (uuid cb2084ec-bf02-4b3f-b3b1-2b9f517acb7d))
  7026. )
  7027. (symbol (lib_id "power:+3V3") (at 114.3 162.56 0) (unit 1)
  7028. (in_bom yes) (on_board yes)
  7029. (uuid 19095159-4ec4-446a-9d52-3f5f6b54c307)
  7030. (property "Reference" "#PWR0223" (id 0) (at 114.3 166.37 0)
  7031. (effects (font (size 1.27 1.27)) hide)
  7032. )
  7033. (property "Value" "+3V3" (id 1) (at 114.681 158.1658 0))
  7034. (property "Footprint" "" (id 2) (at 114.3 162.56 0)
  7035. (effects (font (size 1.27 1.27)) hide)
  7036. )
  7037. (property "Datasheet" "" (id 3) (at 114.3 162.56 0)
  7038. (effects (font (size 1.27 1.27)) hide)
  7039. )
  7040. (pin "1" (uuid 5a64cde9-d891-41a2-bd50-a55fbb47acc4))
  7041. )
  7042. (symbol (lib_id "power:+3V3") (at 156.21 162.56 0) (unit 1)
  7043. (in_bom yes) (on_board yes)
  7044. (uuid 1e363680-fc77-40a0-b7ae-3279abfba965)
  7045. (property "Reference" "#PWR0173" (id 0) (at 156.21 166.37 0)
  7046. (effects (font (size 1.27 1.27)) hide)
  7047. )
  7048. (property "Value" "+3V3" (id 1) (at 156.591 158.1658 0))
  7049. (property "Footprint" "" (id 2) (at 156.21 162.56 0)
  7050. (effects (font (size 1.27 1.27)) hide)
  7051. )
  7052. (property "Datasheet" "" (id 3) (at 156.21 162.56 0)
  7053. (effects (font (size 1.27 1.27)) hide)
  7054. )
  7055. (pin "1" (uuid 5c4cf1a6-89ae-432e-ad2c-5f8e8ab9f4e3))
  7056. )
  7057. (symbol (lib_id "power:GND") (at 129.54 172.72 0) (unit 1)
  7058. (in_bom yes) (on_board yes)
  7059. (uuid 1f643113-fa5c-4d33-af0d-36613c1d3ae5)
  7060. (property "Reference" "#PWR0172" (id 0) (at 129.54 179.07 0)
  7061. (effects (font (size 1.27 1.27)) hide)
  7062. )
  7063. (property "Value" "GND" (id 1) (at 129.667 177.1142 0))
  7064. (property "Footprint" "" (id 2) (at 129.54 172.72 0)
  7065. (effects (font (size 1.27 1.27)) hide)
  7066. )
  7067. (property "Datasheet" "" (id 3) (at 129.54 172.72 0)
  7068. (effects (font (size 1.27 1.27)) hide)
  7069. )
  7070. (pin "1" (uuid 25d2c409-9df9-4f79-afd7-4c5cf7171864))
  7071. )
  7072. (symbol (lib_id "Device:R_Small") (at 182.88 133.35 0) (unit 1)
  7073. (in_bom yes) (on_board yes)
  7074. (uuid 3d4ee57f-7979-4983-a450-d4a7eead57eb)
  7075. (property "Reference" "R64" (id 0) (at 177.9016 133.35 90))
  7076. (property "Value" "3k" (id 1) (at 180.213 133.35 90))
  7077. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 182.88 133.35 0)
  7078. (effects (font (size 1.27 1.27)) hide)
  7079. )
  7080. (property "Datasheet" "~" (id 3) (at 182.88 133.35 0)
  7081. (effects (font (size 1.27 1.27)) hide)
  7082. )
  7083. (property "LCSC" "C137987" (id 4) (at 182.88 133.35 0)
  7084. (effects (font (size 1.27 1.27)) hide)
  7085. )
  7086. (pin "1" (uuid 7e827eb7-a125-47f1-acc1-e503cdd953f0))
  7087. (pin "2" (uuid 4912fcb7-37bd-4af0-9140-1d62d6b8949e))
  7088. )
  7089. (symbol (lib_id "Connector_Generic:Conn_02x03_Odd_Even") (at 210.82 156.21 0) (unit 1)
  7090. (in_bom yes) (on_board yes) (fields_autoplaced)
  7091. (uuid 4ed97a04-0986-4770-aed0-dc9f909c392f)
  7092. (property "Reference" "J11" (id 0) (at 212.09 147.32 0))
  7093. (property "Value" "Conn_02x03_Odd_Even" (id 1) (at 212.09 149.86 0))
  7094. (property "Footprint" "Connector:Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical" (id 2) (at 210.82 156.21 0)
  7095. (effects (font (size 1.27 1.27)) hide)
  7096. )
  7097. (property "Datasheet" "~" (id 3) (at 210.82 156.21 0)
  7098. (effects (font (size 1.27 1.27)) hide)
  7099. )
  7100. (property "LCSC" "NM" (id 4) (at 210.82 156.21 0)
  7101. (effects (font (size 1.27 1.27)) hide)
  7102. )
  7103. (pin "1" (uuid 694349ac-dd8e-4206-ab3f-a2667df33d53))
  7104. (pin "2" (uuid 4be1cee2-a15e-46bb-b636-7b7b95d7450e))
  7105. (pin "3" (uuid 4e7f077b-b549-4a6c-88a8-b7e8876537d4))
  7106. (pin "4" (uuid f4136950-38cb-4981-9884-4447a479e935))
  7107. (pin "5" (uuid c04676dc-af89-4568-9231-c9d886469934))
  7108. (pin "6" (uuid cc688cd2-08ad-4256-bba2-7e9697424f84))
  7109. )
  7110. (symbol (lib_id "power:GND") (at 111.76 111.76 0) (unit 1)
  7111. (in_bom yes) (on_board yes)
  7112. (uuid 579f6b2b-1542-4dae-8619-560e86764e1b)
  7113. (property "Reference" "#PWR0185" (id 0) (at 111.76 118.11 0)
  7114. (effects (font (size 1.27 1.27)) hide)
  7115. )
  7116. (property "Value" "GND" (id 1) (at 111.887 116.1542 0))
  7117. (property "Footprint" "" (id 2) (at 111.76 111.76 0)
  7118. (effects (font (size 1.27 1.27)) hide)
  7119. )
  7120. (property "Datasheet" "" (id 3) (at 111.76 111.76 0)
  7121. (effects (font (size 1.27 1.27)) hide)
  7122. )
  7123. (pin "1" (uuid 173b7683-fc15-4518-a4c2-6e93812e700a))
  7124. )
  7125. (symbol (lib_id "Switch:SW_DIP_x02") (at 78.74 53.34 0) (unit 1)
  7126. (in_bom yes) (on_board yes) (fields_autoplaced)
  7127. (uuid 603979c9-b707-4515-8d60-2b9d6885fb89)
  7128. (property "Reference" "SW2" (id 0) (at 78.74 43.18 0))
  7129. (property "Value" "SW_DIP_x02" (id 1) (at 78.74 45.72 0))
  7130. (property "Footprint" "Button_Switch_THT:SW_DIP_SPSTx02_Slide_6.7x6.64mm_W7.62mm_P2.54mm_LowProfile" (id 2) (at 78.74 53.34 0)
  7131. (effects (font (size 1.27 1.27)) hide)
  7132. )
  7133. (property "Datasheet" "~" (id 3) (at 78.74 53.34 0)
  7134. (effects (font (size 1.27 1.27)) hide)
  7135. )
  7136. (pin "1" (uuid a49cb624-c91b-404a-a202-90c3af26c3b1))
  7137. (pin "2" (uuid 92b424eb-af42-40f7-a01e-f30780672dde))
  7138. (pin "3" (uuid 63d428dc-734e-40c8-9dfd-e5b42fcbb3b5))
  7139. (pin "4" (uuid 08f46db2-d79f-4db8-86ff-942bdd4e4d42))
  7140. )
  7141. (symbol (lib_id "Diode:1N4148W") (at 173.99 143.51 0) (unit 1)
  7142. (in_bom yes) (on_board yes)
  7143. (uuid 615e49fd-3f83-4aa6-b131-9d3dcb501f2c)
  7144. (property "Reference" "D10" (id 0) (at 173.99 149.86 0))
  7145. (property "Value" "B340A-13-F" (id 1) (at 173.99 147.32 0))
  7146. (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 173.99 147.955 0)
  7147. (effects (font (size 1.27 1.27)) hide)
  7148. )
  7149. (property "Datasheet" "" (id 3) (at 173.99 143.51 0)
  7150. (effects (font (size 1.27 1.27)) hide)
  7151. )
  7152. (property "LCSC" "C26178" (id 4) (at 173.99 143.51 0)
  7153. (effects (font (size 1.27 1.27)) hide)
  7154. )
  7155. (pin "1" (uuid 29762142-0fbc-4564-8d28-2a150dda40c7))
  7156. (pin "2" (uuid 717a7f41-32cd-45c4-8023-b8f092a09e3f))
  7157. )
  7158. (symbol (lib_id "power:+5V") (at 182.88 129.54 0) (unit 1)
  7159. (in_bom yes) (on_board yes) (fields_autoplaced)
  7160. (uuid 75db0569-c1c9-47ca-b2fd-be6d039ffae9)
  7161. (property "Reference" "#PWR0190" (id 0) (at 182.88 133.35 0)
  7162. (effects (font (size 1.27 1.27)) hide)
  7163. )
  7164. (property "Value" "+5V" (id 1) (at 182.88 124.46 0))
  7165. (property "Footprint" "" (id 2) (at 182.88 129.54 0)
  7166. (effects (font (size 1.27 1.27)) hide)
  7167. )
  7168. (property "Datasheet" "" (id 3) (at 182.88 129.54 0)
  7169. (effects (font (size 1.27 1.27)) hide)
  7170. )
  7171. (pin "1" (uuid 94b4e1d3-26de-4d2a-aee2-105f21e7f527))
  7172. )
  7173. (symbol (lib_id "power:+3V3") (at 129.54 162.56 0) (unit 1)
  7174. (in_bom yes) (on_board yes)
  7175. (uuid 7e409286-fd81-4589-a252-d85b68bce9f6)
  7176. (property "Reference" "#PWR0174" (id 0) (at 129.54 166.37 0)
  7177. (effects (font (size 1.27 1.27)) hide)
  7178. )
  7179. (property "Value" "+3V3" (id 1) (at 129.921 158.1658 0))
  7180. (property "Footprint" "" (id 2) (at 129.54 162.56 0)
  7181. (effects (font (size 1.27 1.27)) hide)
  7182. )
  7183. (property "Datasheet" "" (id 3) (at 129.54 162.56 0)
  7184. (effects (font (size 1.27 1.27)) hide)
  7185. )
  7186. (pin "1" (uuid 5162ce73-0694-4c4d-b59c-441dae82bbe8))
  7187. )
  7188. (symbol (lib_id "power:+3V3") (at 199.39 151.13 0) (unit 1)
  7189. (in_bom yes) (on_board yes) (fields_autoplaced)
  7190. (uuid 831181f3-e07e-4359-85a3-43a55598e402)
  7191. (property "Reference" "#PWR0159" (id 0) (at 199.39 154.94 0)
  7192. (effects (font (size 1.27 1.27)) hide)
  7193. )
  7194. (property "Value" "+3V3" (id 1) (at 199.39 145.415 0))
  7195. (property "Footprint" "" (id 2) (at 199.39 151.13 0)
  7196. (effects (font (size 1.27 1.27)) hide)
  7197. )
  7198. (property "Datasheet" "" (id 3) (at 199.39 151.13 0)
  7199. (effects (font (size 1.27 1.27)) hide)
  7200. )
  7201. (pin "1" (uuid 49bb3b6b-654d-4e70-a4aa-1f1efa32c9ab))
  7202. )
  7203. (symbol (lib_id "power:GND") (at 88.9 57.15 0) (unit 1)
  7204. (in_bom yes) (on_board yes) (fields_autoplaced)
  7205. (uuid 90754c3c-d69a-4aee-b4f2-ee2e9607e874)
  7206. (property "Reference" "#PWR0224" (id 0) (at 88.9 63.5 0)
  7207. (effects (font (size 1.27 1.27)) hide)
  7208. )
  7209. (property "Value" "GND" (id 1) (at 88.9 62.23 0))
  7210. (property "Footprint" "" (id 2) (at 88.9 57.15 0)
  7211. (effects (font (size 1.27 1.27)) hide)
  7212. )
  7213. (property "Datasheet" "" (id 3) (at 88.9 57.15 0)
  7214. (effects (font (size 1.27 1.27)) hide)
  7215. )
  7216. (pin "1" (uuid a8feff19-a3ee-4ffe-b81f-beab7358e4d8))
  7217. )
  7218. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 137.16 167.64 0) (unit 1)
  7219. (in_bom yes) (on_board yes)
  7220. (uuid 984c0ab6-7c29-4883-bf92-47178f65fa30)
  7221. (property "Reference" "J18" (id 0) (at 135.89 158.75 0)
  7222. (effects (font (size 1.27 1.27)) (justify left))
  7223. )
  7224. (property "Value" "ID" (id 1) (at 124.46 161.29 0)
  7225. (effects (font (size 1.27 1.27)) (justify left))
  7226. )
  7227. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (id 2) (at 137.16 167.64 0)
  7228. (effects (font (size 1.27 1.27)) hide)
  7229. )
  7230. (property "Datasheet" "~" (id 3) (at 137.16 167.64 0)
  7231. (effects (font (size 1.27 1.27)) hide)
  7232. )
  7233. (property "LCSC" "C225478" (id 4) (at 137.16 167.64 0)
  7234. (effects (font (size 1.27 1.27)) hide)
  7235. )
  7236. (pin "1" (uuid e16fe284-3e83-4f02-b341-e8c1052206e4))
  7237. (pin "2" (uuid 86df543b-a021-4705-8ddd-979f504b208a))
  7238. (pin "3" (uuid 404c4fbc-710e-4a25-9168-a98dd9bac3d0))
  7239. )
  7240. (symbol (lib_id "power:GND") (at 118.11 168.91 0) (unit 1)
  7241. (in_bom yes) (on_board yes)
  7242. (uuid b493a636-5a02-409a-9733-9060e83b6f45)
  7243. (property "Reference" "#PWR0222" (id 0) (at 118.11 175.26 0)
  7244. (effects (font (size 1.27 1.27)) hide)
  7245. )
  7246. (property "Value" "GND" (id 1) (at 118.237 173.3042 0))
  7247. (property "Footprint" "" (id 2) (at 118.11 168.91 0)
  7248. (effects (font (size 1.27 1.27)) hide)
  7249. )
  7250. (property "Datasheet" "" (id 3) (at 118.11 168.91 0)
  7251. (effects (font (size 1.27 1.27)) hide)
  7252. )
  7253. (pin "1" (uuid d33816e4-2eeb-4b87-8d57-53abf597d625))
  7254. )
  7255. (symbol (lib_id "Diode:1N4148W") (at 173.99 139.7 0) (unit 1)
  7256. (in_bom yes) (on_board yes) (fields_autoplaced)
  7257. (uuid caa6303a-9842-4b6b-90f3-1429bc2a97a5)
  7258. (property "Reference" "D9" (id 0) (at 173.99 133.35 0))
  7259. (property "Value" "B340A-13-F" (id 1) (at 173.99 135.89 0))
  7260. (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 173.99 144.145 0)
  7261. (effects (font (size 1.27 1.27)) hide)
  7262. )
  7263. (property "Datasheet" "" (id 3) (at 173.99 139.7 0)
  7264. (effects (font (size 1.27 1.27)) hide)
  7265. )
  7266. (property "LCSC" "C26178" (id 4) (at 173.99 139.7 0)
  7267. (effects (font (size 1.27 1.27)) hide)
  7268. )
  7269. (pin "1" (uuid d701d0d6-82cc-42bf-a7c9-7931e6a1fc89))
  7270. (pin "2" (uuid 2ae579a8-31c8-4a78-8bf6-72fca00e8bf2))
  7271. )
  7272. (symbol (lib_id "power:PWR_FLAG") (at 100.33 36.195 0) (unit 1)
  7273. (in_bom yes) (on_board yes) (fields_autoplaced)
  7274. (uuid d3519d5d-ab9f-49c3-a5db-54441331c0e6)
  7275. (property "Reference" "#FLG0110" (id 0) (at 100.33 34.29 0)
  7276. (effects (font (size 1.27 1.27)) hide)
  7277. )
  7278. (property "Value" "PWR_FLAG" (id 1) (at 100.33 30.48 0))
  7279. (property "Footprint" "" (id 2) (at 100.33 36.195 0)
  7280. (effects (font (size 1.27 1.27)) hide)
  7281. )
  7282. (property "Datasheet" "~" (id 3) (at 100.33 36.195 0)
  7283. (effects (font (size 1.27 1.27)) hide)
  7284. )
  7285. (pin "1" (uuid 316f303a-173c-4a1d-984f-1bfe28354a4d))
  7286. )
  7287. (symbol (lib_id "Connector_Generic:Conn_02x25_Odd_Even") (at 120.65 76.2 0) (unit 1)
  7288. (in_bom yes) (on_board yes)
  7289. (uuid de74180e-b890-44b7-9756-b45db32a51e7)
  7290. (property "Reference" "J12" (id 0) (at 121.92 46.99 0))
  7291. (property "Value" "Conn_02x25_Odd_Even" (id 1) (at 137.16 41.91 0))
  7292. (property "Footprint" "Connector_IDC:IDC-Header_2x25_P2.54mm_Vertical" (id 2) (at 120.65 76.2 0)
  7293. (effects (font (size 1.27 1.27)) hide)
  7294. )
  7295. (property "Datasheet" "~" (id 3) (at 120.65 76.2 0)
  7296. (effects (font (size 1.27 1.27)) hide)
  7297. )
  7298. (pin "1" (uuid e82cf3eb-2e7a-4a8b-996b-2004f7cc101e))
  7299. (pin "10" (uuid f85f1d29-b803-48d0-a168-b0de65e2db9a))
  7300. (pin "11" (uuid ce4709a5-6b7e-44ee-9871-1149986c2e7b))
  7301. (pin "12" (uuid bc60c623-edf8-4166-a45a-3c9a60efe4c5))
  7302. (pin "13" (uuid fdf58be0-57f4-4f08-9b70-a06b3776c6dd))
  7303. (pin "14" (uuid 98dc8f49-9dd6-478e-96d0-75e275701e99))
  7304. (pin "15" (uuid b77a486d-6152-4411-b337-ad777a3a63b2))
  7305. (pin "16" (uuid 81a6758a-a06b-4d3e-81b9-1534449b7457))
  7306. (pin "17" (uuid a30248e1-36ea-41cd-9738-19184ec09b84))
  7307. (pin "18" (uuid d6a3e2ff-d905-48de-9d37-71f236ccc546))
  7308. (pin "19" (uuid 9a06744a-f10d-4166-ac1a-8b7135113449))
  7309. (pin "2" (uuid 6c6de6b0-904e-47e2-b173-fef9720dc2f0))
  7310. (pin "20" (uuid 3ecbfdf0-8e49-4182-8306-2d2414f292e8))
  7311. (pin "21" (uuid a9852008-7e99-4f79-b5b8-e7f11c815644))
  7312. (pin "22" (uuid 2d47214f-09f7-4be0-b959-6a1a12712566))
  7313. (pin "23" (uuid 5bd07084-94cc-440c-a517-4f05f269a051))
  7314. (pin "24" (uuid bec7a52d-6468-43d5-af05-b1095ac23562))
  7315. (pin "25" (uuid 758a7679-139e-4a9c-9aeb-308864cc3fa2))
  7316. (pin "26" (uuid 63439fd7-d47e-44e9-8dcc-82c2d87ff6e7))
  7317. (pin "27" (uuid da0a5b3e-b06b-4b1c-8f68-88dfb234e103))
  7318. (pin "28" (uuid 9bbbfda7-00a5-46bc-bd4b-24d24b05c493))
  7319. (pin "29" (uuid 69c84803-47b1-473f-9de9-b49f05339acb))
  7320. (pin "3" (uuid 9d071495-1596-4032-9674-45bf136b1434))
  7321. (pin "30" (uuid 24cf2efd-e65a-4663-bd27-2c130a59e247))
  7322. (pin "31" (uuid 03c60276-9cee-4781-b007-54c011d4d0b6))
  7323. (pin "32" (uuid 5672feed-8ce9-45eb-a12b-2ae55f14cf06))
  7324. (pin "33" (uuid 97ff1303-2a73-45a8-9dce-ccfad4d8856d))
  7325. (pin "34" (uuid aebd8b10-f548-4b59-b363-faf804cceb80))
  7326. (pin "35" (uuid 6b41e40e-6fd1-4184-8969-2fab7495f289))
  7327. (pin "36" (uuid 2194bd37-8058-4a74-bea1-ddfab1944045))
  7328. (pin "37" (uuid 9e30b787-f77c-4eaf-b66c-041831445de5))
  7329. (pin "38" (uuid 8ff8d685-c3b5-4f17-a85d-ae040b646d36))
  7330. (pin "39" (uuid 066a5e73-7597-4b00-b55e-e8762abce7dc))
  7331. (pin "4" (uuid 81989f3d-72e0-4d08-9169-c7889ecb5198))
  7332. (pin "40" (uuid 3d854c76-58a1-4a84-9941-a2d726b4718f))
  7333. (pin "41" (uuid ade87e76-71e5-4f80-befe-9281ddcf366b))
  7334. (pin "42" (uuid 7fb81863-adfd-4a97-a8bd-b9b260872a7f))
  7335. (pin "43" (uuid e930b31f-dd3e-4ac0-bc3c-b32d2ce4ec42))
  7336. (pin "44" (uuid 5c4bedb2-6b2c-4477-86d9-75961acfd50a))
  7337. (pin "45" (uuid 60d4226d-73a7-409c-9af7-9138eaebce1c))
  7338. (pin "46" (uuid f5276d96-dfca-441c-a300-6ff68916b237))
  7339. (pin "47" (uuid 2c12258c-2060-4e56-8405-f8e95f0f8b23))
  7340. (pin "48" (uuid b2f5fcbb-4108-47c2-9b21-a00c8af39f28))
  7341. (pin "49" (uuid 0e128492-d712-448d-a57e-b745cd318360))
  7342. (pin "5" (uuid 01b5e3f8-125a-43e6-8d70-b31b6fea712d))
  7343. (pin "50" (uuid eb6d13a3-cb69-4d31-9377-c8373d0f7cf7))
  7344. (pin "6" (uuid 6b78cc14-a42d-4692-b883-1ebe582371c0))
  7345. (pin "7" (uuid 15ddd425-ab43-47ec-aa05-f2c5d1bf61df))
  7346. (pin "8" (uuid 042fa674-2585-40a6-9b91-3a24ef63d8b0))
  7347. (pin "9" (uuid 7ad2f2e1-1e93-4416-a934-bf1ba56dc10a))
  7348. )
  7349. (symbol (lib_id "power:GND") (at 144.78 172.72 0) (unit 1)
  7350. (in_bom yes) (on_board yes)
  7351. (uuid e3a430e6-9432-407c-b496-db8bd65368c8)
  7352. (property "Reference" "#PWR0171" (id 0) (at 144.78 179.07 0)
  7353. (effects (font (size 1.27 1.27)) hide)
  7354. )
  7355. (property "Value" "GND" (id 1) (at 144.907 177.1142 0))
  7356. (property "Footprint" "" (id 2) (at 144.78 172.72 0)
  7357. (effects (font (size 1.27 1.27)) hide)
  7358. )
  7359. (property "Datasheet" "" (id 3) (at 144.78 172.72 0)
  7360. (effects (font (size 1.27 1.27)) hide)
  7361. )
  7362. (pin "1" (uuid e08b015f-c58a-412f-a287-830ddd1dade3))
  7363. )
  7364. (sheet (at 137.16 181.61) (size 21.59 11.43) (fields_autoplaced)
  7365. (stroke (width 0) (type solid) (color 0 0 0 0))
  7366. (fill (color 0 0 0 0.0000))
  7367. (uuid 00000000-0000-0000-0000-000060f22a52)
  7368. (property "Sheet name" "USB" (id 0) (at 137.16 180.8984 0)
  7369. (effects (font (size 1.27 1.27)) (justify left bottom))
  7370. )
  7371. (property "Sheet file" "usb.kicad_sch" (id 1) (at 137.16 193.6246 0)
  7372. (effects (font (size 1.27 1.27)) (justify left top))
  7373. )
  7374. (pin "USB_D+" input (at 158.75 185.42 0)
  7375. (effects (font (size 1.27 1.27)) (justify right))
  7376. (uuid 269f19c3-6824-45a8-be29-fa58d70cbb42)
  7377. )
  7378. (pin "USB_D-" input (at 158.75 189.23 0)
  7379. (effects (font (size 1.27 1.27)) (justify right))
  7380. (uuid da481376-0e49-44d3-91b8-aaa39b869dd1)
  7381. )
  7382. )
  7383. (sheet (at 104.14 181.61) (size 20.32 11.43) (fields_autoplaced)
  7384. (stroke (width 0) (type solid) (color 0 0 0 0))
  7385. (fill (color 0 0 0 0.0000))
  7386. (uuid 00000000-0000-0000-0000-0000618a932e)
  7387. (property "Sheet name" "Power_USB" (id 0) (at 104.14 180.8984 0)
  7388. (effects (font (size 1.27 1.27)) (justify left bottom))
  7389. )
  7390. (property "Sheet file" "Power_USB.kicad_sch" (id 1) (at 104.14 193.6246 0)
  7391. (effects (font (size 1.27 1.27)) (justify left top))
  7392. )
  7393. (pin "prog_stusb" input (at 124.46 184.15 0)
  7394. (effects (font (size 1.27 1.27)) (justify right))
  7395. (uuid 7efc5d82-4869-48e6-b2c2-d225fc5d404a)
  7396. )
  7397. )
  7398. (sheet (at 82.55 181.61) (size 19.05 11.43) (fields_autoplaced)
  7399. (stroke (width 0) (type solid) (color 0 0 0 0))
  7400. (fill (color 0 0 0 0.0000))
  7401. (uuid 00000000-0000-0000-0000-0000619586c3)
  7402. (property "Sheet name" "Power" (id 0) (at 82.55 180.8984 0)
  7403. (effects (font (size 1.27 1.27)) (justify left bottom))
  7404. )
  7405. (property "Sheet file" "Power.kicad_sch" (id 1) (at 82.55 193.6246 0)
  7406. (effects (font (size 1.27 1.27)) (justify left top))
  7407. )
  7408. )
  7409. (sheet (at 26.67 171.45) (size 22.86 24.13)
  7410. (stroke (width 0.1524) (type solid) (color 0 0 0 0))
  7411. (fill (color 0 0 0 0.0000))
  7412. (uuid 39d9aca3-c269-4acc-b200-a28fd3c81717)
  7413. (property "Sheet name" "AD_USB" (id 0) (at 26.67 170.7384 0)
  7414. (effects (font (size 1.27 1.27)) (justify left bottom))
  7415. )
  7416. (property "Sheet file" "ad_usb.kicad_sch" (id 1) (at 14.605 195.58 0)
  7417. (effects (font (size 1.27 1.27)) (justify left top))
  7418. )
  7419. (pin "STEP" input (at 26.67 177.8 180)
  7420. (effects (font (size 1.27 1.27)) (justify left))
  7421. (uuid eb170636-6185-4375-9f1c-1fdddb64f74e)
  7422. )
  7423. (pin "R_DATA" input (at 26.67 175.26 180)
  7424. (effects (font (size 1.27 1.27)) (justify left))
  7425. (uuid d12e2ddd-dbf6-4288-8370-002533a5c144)
  7426. )
  7427. (pin "TRK_00" input (at 26.67 182.88 180)
  7428. (effects (font (size 1.27 1.27)) (justify left))
  7429. (uuid 53bb84f9-c469-4af3-91d6-1b2c9c63edef)
  7430. )
  7431. (pin "DIR" input (at 26.67 180.34 180)
  7432. (effects (font (size 1.27 1.27)) (justify left))
  7433. (uuid b008c4af-d775-4f04-ad60-7d6baa46bebe)
  7434. )
  7435. (pin "READY" input (at 26.67 187.96 180)
  7436. (effects (font (size 1.27 1.27)) (justify left))
  7437. (uuid ac3b8662-b07d-4123-b7b5-75a78cc0387c)
  7438. )
  7439. (pin "INDEX" input (at 26.67 185.42 180)
  7440. (effects (font (size 1.27 1.27)) (justify left))
  7441. (uuid 9da5a5f9-7aac-4826-be9a-29f4b0854a62)
  7442. )
  7443. (pin "PB[0..11]" input (at 49.53 176.53 0)
  7444. (effects (font (size 1.27 1.27)) (justify right))
  7445. (uuid c38b7402-09d9-4335-aea2-cc4f797b5808)
  7446. )
  7447. (pin "PA[0..11]" input (at 49.53 173.99 0)
  7448. (effects (font (size 1.27 1.27)) (justify right))
  7449. (uuid 5e6dc98a-40f2-41f2-901c-f762536e4328)
  7450. )
  7451. (pin "SIDE_SEL" input (at 26.67 190.5 180)
  7452. (effects (font (size 1.27 1.27)) (justify left))
  7453. (uuid 7fc1cf34-43d1-49db-ab5f-9e1f3086d5bf)
  7454. )
  7455. (pin "CLK" input (at 49.53 189.23 0)
  7456. (effects (font (size 1.27 1.27)) (justify right))
  7457. (uuid cedd4bfc-3b6c-451f-973e-e5f75962f8a5)
  7458. )
  7459. (pin "BE_3" input (at 49.53 186.69 0)
  7460. (effects (font (size 1.27 1.27)) (justify right))
  7461. (uuid 780ed93c-620a-40b9-9e25-acc43379f2c2)
  7462. )
  7463. (pin "BE_0" input (at 49.53 179.07 0)
  7464. (effects (font (size 1.27 1.27)) (justify right))
  7465. (uuid 85925cf5-a1dc-4b19-8948-e9216e68f370)
  7466. )
  7467. (pin "BE_2" input (at 49.53 184.15 0)
  7468. (effects (font (size 1.27 1.27)) (justify right))
  7469. (uuid 7076e039-13be-4752-bf5b-f091b9bbf3fa)
  7470. )
  7471. (pin "BE_1" input (at 49.53 181.61 0)
  7472. (effects (font (size 1.27 1.27)) (justify right))
  7473. (uuid 1c5386b3-6224-45ba-a5ce-446562ffe8e8)
  7474. )
  7475. (pin "TXE_N" input (at 49.53 191.77 0)
  7476. (effects (font (size 1.27 1.27)) (justify right))
  7477. (uuid faf30c08-f706-43b6-b711-67f7d6075f46)
  7478. )
  7479. (pin "RXE_N" input (at 49.53 194.31 0)
  7480. (effects (font (size 1.27 1.27)) (justify right))
  7481. (uuid d058855d-1b48-40ce-836c-b62fc8d13db4)
  7482. )
  7483. )
  7484. (sheet (at 64.77 171.45) (size 12.7 21.59) (fields_autoplaced)
  7485. (stroke (width 0.1524) (type solid) (color 0 0 0 0))
  7486. (fill (color 0 0 0 0.0000))
  7487. (uuid 587e0876-966b-4d35-bd3c-c5066c967aa3)
  7488. (property "Sheet name" "AD" (id 0) (at 64.77 170.7384 0)
  7489. (effects (font (size 1.27 1.27)) (justify left bottom))
  7490. )
  7491. (property "Sheet file" "ad.kicad_sch" (id 1) (at 64.77 193.6246 0)
  7492. (effects (font (size 1.27 1.27)) (justify left top))
  7493. )
  7494. (pin "PA[0..11]" input (at 64.77 173.99 180)
  7495. (effects (font (size 1.27 1.27)) (justify left))
  7496. (uuid 766758f2-edd5-4881-8f91-2127594b41f4)
  7497. )
  7498. (pin "PB[0..11]" input (at 64.77 176.53 180)
  7499. (effects (font (size 1.27 1.27)) (justify left))
  7500. (uuid bed1934f-df91-4927-898c-8e7a784fec42)
  7501. )
  7502. (pin "CLK_60MHz" input (at 64.77 189.23 180)
  7503. (effects (font (size 1.27 1.27)) (justify left))
  7504. (uuid 4200158d-c449-455c-9ec7-047d4a76287d)
  7505. )
  7506. )
  7507. (sheet_instances
  7508. (path "/" (page "1"))
  7509. (path "/00000000-0000-0000-0000-0000619586c3" (page "2"))
  7510. (path "/00000000-0000-0000-0000-0000618a932e" (page "3"))
  7511. (path "/00000000-0000-0000-0000-000060f22a52" (page "4"))
  7512. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3" (page "5"))
  7513. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717" (page "6"))
  7514. )
  7515. (symbol_instances
  7516. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/f5496f64-fa88-46b0-96c0-0a7db8062989"
  7517. (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
  7518. )
  7519. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/1d3f356b-b244-426b-8b1c-39ae6c5a4b4e"
  7520. (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
  7521. )
  7522. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/1a2f49e0-d170-44d3-8b11-709402d66ce5"
  7523. (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
  7524. )
  7525. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/e5ea224b-0e76-44c2-a5e6-4b4190be2a8e"
  7526. (reference "#FLG0104") (unit 1) (value "PWR_FLAG") (footprint "")
  7527. )
  7528. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/2be7e7bd-d5ba-4c78-9e38-9ff398a01218"
  7529. (reference "#FLG0105") (unit 1) (value "PWR_FLAG") (footprint "")
  7530. )
  7531. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/b9a9e427-e1af-4f15-8dfa-7e6722964a32"
  7532. (reference "#FLG0106") (unit 1) (value "PWR_FLAG") (footprint "")
  7533. )
  7534. (path "/00000000-0000-0000-0000-0000619586c3/1860ab6b-7c96-46da-a389-953e3500b475"
  7535. (reference "#FLG0107") (unit 1) (value "PWR_FLAG") (footprint "")
  7536. )
  7537. (path "/00000000-0000-0000-0000-0000619586c3/d5874da5-2b31-4964-a8a8-91e3a906c13d"
  7538. (reference "#FLG0108") (unit 1) (value "PWR_FLAG") (footprint "")
  7539. )
  7540. (path "/00000000-0000-0000-0000-0000619586c3/0b8d24ce-dbbd-436a-adb4-856a5e438a19"
  7541. (reference "#FLG0109") (unit 1) (value "PWR_FLAG") (footprint "")
  7542. )
  7543. (path "/d3519d5d-ab9f-49c3-a5db-54441331c0e6"
  7544. (reference "#FLG0110") (unit 1) (value "PWR_FLAG") (footprint "")
  7545. )
  7546. (path "/00000000-0000-0000-0000-0000619586c3/a201057c-42fc-4fe1-8298-c34f4f09ffab"
  7547. (reference "#FLG0111") (unit 1) (value "PWR_FLAG") (footprint "")
  7548. )
  7549. (path "/00000000-0000-0000-0000-0000618a932e/308c645d-0099-4b83-8dd3-f803cce8ede3"
  7550. (reference "#FLG0112") (unit 1) (value "PWR_FLAG") (footprint "")
  7551. )
  7552. (path "/00000000-0000-0000-0000-000060f79d03"
  7553. (reference "#PWR01") (unit 1) (value "GND") (footprint "")
  7554. )
  7555. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006248a530"
  7556. (reference "#PWR02") (unit 1) (value "+3.3V") (footprint "")
  7557. )
  7558. (path "/00000000-0000-0000-0000-0000617910f5"
  7559. (reference "#PWR03") (unit 1) (value "+3V3") (footprint "")
  7560. )
  7561. (path "/00000000-0000-0000-0000-00006139973e"
  7562. (reference "#PWR04") (unit 1) (value "+3V3") (footprint "")
  7563. )
  7564. (path "/00000000-0000-0000-0000-0000613a4a45"
  7565. (reference "#PWR05") (unit 1) (value "GND") (footprint "")
  7566. )
  7567. (path "/00000000-0000-0000-0000-00006170e1c1"
  7568. (reference "#PWR06") (unit 1) (value "GND") (footprint "")
  7569. )
  7570. (path "/00000000-0000-0000-0000-00006171a8a6"
  7571. (reference "#PWR07") (unit 1) (value "GND") (footprint "")
  7572. )
  7573. (path "/00000000-0000-0000-0000-000061550552"
  7574. (reference "#PWR08") (unit 1) (value "+3V3") (footprint "")
  7575. )
  7576. (path "/00000000-0000-0000-0000-00006126baa5"
  7577. (reference "#PWR09") (unit 1) (value "+5V") (footprint "")
  7578. )
  7579. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006248b2f4"
  7580. (reference "#PWR010") (unit 1) (value "GND") (footprint "")
  7581. )
  7582. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000619943a8"
  7583. (reference "#PWR011") (unit 1) (value "GND") (footprint "")
  7584. )
  7585. (path "/00000000-0000-0000-0000-0000619586c3/6553d8eb-c75a-476a-8d4d-a3729779c9ea"
  7586. (reference "#PWR012") (unit 1) (value "+5V") (footprint "")
  7587. )
  7588. (path "/00000000-0000-0000-0000-0000619586c3/b99f049b-86ba-49a7-80e9-213f3e98b092"
  7589. (reference "#PWR013") (unit 1) (value "GND") (footprint "")
  7590. )
  7591. (path "/00000000-0000-0000-0000-0000619586c3/9efba57b-3500-4f45-9fe5-be8043407d0a"
  7592. (reference "#PWR014") (unit 1) (value "GND") (footprint "")
  7593. )
  7594. (path "/00000000-0000-0000-0000-0000619586c3/f2bfa2d8-80d5-4b13-ae87-9c844021de35"
  7595. (reference "#PWR015") (unit 1) (value "GND") (footprint "")
  7596. )
  7597. (path "/00000000-0000-0000-0000-0000619586c3/bced4998-bac0-4d66-bf24-5c442d5a0060"
  7598. (reference "#PWR016") (unit 1) (value "GND") (footprint "")
  7599. )
  7600. (path "/00000000-0000-0000-0000-0000619586c3/e9e88504-9527-4479-a4fc-483b95b11399"
  7601. (reference "#PWR017") (unit 1) (value "GND") (footprint "")
  7602. )
  7603. (path "/00000000-0000-0000-0000-0000619586c3/3f3e2887-0131-4b6d-b226-262c167d3f98"
  7604. (reference "#PWR018") (unit 1) (value "+3V3") (footprint "")
  7605. )
  7606. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000619a72a6"
  7607. (reference "#PWR0101") (unit 1) (value "+3.3V") (footprint "")
  7608. )
  7609. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005cc8b39c"
  7610. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  7611. )
  7612. (path "/00000000-0000-0000-0000-0000619586c3/0c5fd953-b3c5-4a33-b878-c8771600a700"
  7613. (reference "#PWR0103") (unit 1) (value "+3V3") (footprint "")
  7614. )
  7615. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005cc7520b"
  7616. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  7617. )
  7618. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e9ecde8"
  7619. (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
  7620. )
  7621. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-000062237a55"
  7622. (reference "#PWR0106") (unit 1) (value "+5V") (footprint "")
  7623. )
  7624. (path "/00000000-0000-0000-0000-000061a5abb1"
  7625. (reference "#PWR0107") (unit 1) (value "+3V3") (footprint "")
  7626. )
  7627. (path "/00000000-0000-0000-0000-000061a8d98a"
  7628. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  7629. )
  7630. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061a13217"
  7631. (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
  7632. )
  7633. (path "/00000000-0000-0000-0000-000061aafd54"
  7634. (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
  7635. )
  7636. (path "/00000000-0000-0000-0000-000061abe3cd"
  7637. (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
  7638. )
  7639. (path "/00000000-0000-0000-0000-000061aecf76"
  7640. (reference "#PWR0112") (unit 1) (value "+3V3") (footprint "")
  7641. )
  7642. (path "/00000000-0000-0000-0000-000061afd140"
  7643. (reference "#PWR0113") (unit 1) (value "+5V") (footprint "")
  7644. )
  7645. (path "/00000000-0000-0000-0000-000061b0e64a"
  7646. (reference "#PWR0114") (unit 1) (value "+3V3") (footprint "")
  7647. )
  7648. (path "/00000000-0000-0000-0000-000061b1e450"
  7649. (reference "#PWR0115") (unit 1) (value "+5V") (footprint "")
  7650. )
  7651. (path "/00000000-0000-0000-0000-000061b7ab9b"
  7652. (reference "#PWR0116") (unit 1) (value "GND") (footprint "")
  7653. )
  7654. (path "/00000000-0000-0000-0000-000061b8acb1"
  7655. (reference "#PWR0117") (unit 1) (value "GND") (footprint "")
  7656. )
  7657. (path "/00000000-0000-0000-0000-000061b9ba45"
  7658. (reference "#PWR0118") (unit 1) (value "+3V3") (footprint "")
  7659. )
  7660. (path "/00000000-0000-0000-0000-000061b9cd1c"
  7661. (reference "#PWR0119") (unit 1) (value "+3V3") (footprint "")
  7662. )
  7663. (path "/00000000-0000-0000-0000-000061b9df0e"
  7664. (reference "#PWR0120") (unit 1) (value "+3V3") (footprint "")
  7665. )
  7666. (path "/00000000-0000-0000-0000-000061b9f12d"
  7667. (reference "#PWR0121") (unit 1) (value "+3V3") (footprint "")
  7668. )
  7669. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c052fd"
  7670. (reference "#PWR0122") (unit 1) (value "GND") (footprint "")
  7671. )
  7672. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf280e"
  7673. (reference "#PWR0123") (unit 1) (value "GND") (footprint "")
  7674. )
  7675. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf71ab"
  7676. (reference "#PWR0124") (unit 1) (value "GND") (footprint "")
  7677. )
  7678. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf8580"
  7679. (reference "#PWR0125") (unit 1) (value "GND") (footprint "")
  7680. )
  7681. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c054d5"
  7682. (reference "#PWR0126") (unit 1) (value "GND") (footprint "")
  7683. )
  7684. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf9eea"
  7685. (reference "#PWR0127") (unit 1) (value "GND") (footprint "")
  7686. )
  7687. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c163d3"
  7688. (reference "#PWR0128") (unit 1) (value "GND") (footprint "")
  7689. )
  7690. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c1eb9a"
  7691. (reference "#PWR0129") (unit 1) (value "GND") (footprint "")
  7692. )
  7693. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000062230106"
  7694. (reference "#PWR0130") (unit 1) (value "+24V") (footprint "")
  7695. )
  7696. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000060faaca0"
  7697. (reference "#PWR0131") (unit 1) (value "GND") (footprint "")
  7698. )
  7699. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006101dfa2"
  7700. (reference "#PWR0132") (unit 1) (value "GND") (footprint "")
  7701. )
  7702. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c2bef0"
  7703. (reference "#PWR0133") (unit 1) (value "VPP") (footprint "")
  7704. )
  7705. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c2dece"
  7706. (reference "#PWR0134") (unit 1) (value "VCC") (footprint "")
  7707. )
  7708. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c30b1a"
  7709. (reference "#PWR0135") (unit 1) (value "VPP") (footprint "")
  7710. )
  7711. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c5199c"
  7712. (reference "#PWR0136") (unit 1) (value "VCC") (footprint "")
  7713. )
  7714. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c576d0"
  7715. (reference "#PWR0137") (unit 1) (value "GND") (footprint "")
  7716. )
  7717. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c5980b"
  7718. (reference "#PWR0138") (unit 1) (value "GND") (footprint "")
  7719. )
  7720. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c5d42d"
  7721. (reference "#PWR0139") (unit 1) (value "GND") (footprint "")
  7722. )
  7723. (path "/00000000-0000-0000-0000-0000619586c3/f458115f-385e-4b7e-96e6-e47f9d8828c8"
  7724. (reference "#PWR0140") (unit 1) (value "+5VA") (footprint "")
  7725. )
  7726. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061070447"
  7727. (reference "#PWR0141") (unit 1) (value "+12V") (footprint "")
  7728. )
  7729. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cc8dda"
  7730. (reference "#PWR0142") (unit 1) (value "GND") (footprint "")
  7731. )
  7732. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000610715f3"
  7733. (reference "#PWR0143") (unit 1) (value "GND") (footprint "")
  7734. )
  7735. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cebf91"
  7736. (reference "#PWR0144") (unit 1) (value "GND") (footprint "")
  7737. )
  7738. (path "/00000000-0000-0000-0000-0000619586c3/c44f3506-fdb2-4e65-9a29-9adbc98d0f6c"
  7739. (reference "#PWR0145") (unit 1) (value "GND") (footprint "")
  7740. )
  7741. (path "/00000000-0000-0000-0000-0000619586c3/30da45cc-a8bc-44fc-8e7b-2858d6603444"
  7742. (reference "#PWR0146") (unit 1) (value "GND") (footprint "")
  7743. )
  7744. (path "/00000000-0000-0000-0000-0000619586c3/c5133f35-adbf-4ce4-bebc-090279107ab9"
  7745. (reference "#PWR0147") (unit 1) (value "GND") (footprint "")
  7746. )
  7747. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967b6"
  7748. (reference "#PWR0148") (unit 1) (value "GND") (footprint "")
  7749. )
  7750. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967c0"
  7751. (reference "#PWR0149") (unit 1) (value "GND") (footprint "")
  7752. )
  7753. (path "/00000000-0000-0000-0000-0000619586c3/d7b957cc-18a9-46de-b844-2af67b2367f9"
  7754. (reference "#PWR0150") (unit 1) (value "+5VA") (footprint "")
  7755. )
  7756. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061db36eb"
  7757. (reference "#PWR0151") (unit 1) (value "+12V") (footprint "")
  7758. )
  7759. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061deec14"
  7760. (reference "#PWR0152") (unit 1) (value "+3V3") (footprint "")
  7761. )
  7762. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061e68f7d"
  7763. (reference "#PWR0153") (unit 1) (value "GND") (footprint "")
  7764. )
  7765. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061ee93e8"
  7766. (reference "#PWR0154") (unit 1) (value "GND") (footprint "")
  7767. )
  7768. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061f3f533"
  7769. (reference "#PWR0155") (unit 1) (value "GND") (footprint "")
  7770. )
  7771. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061f4c845"
  7772. (reference "#PWR0156") (unit 1) (value "+3V3") (footprint "")
  7773. )
  7774. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061f90b65"
  7775. (reference "#PWR0157") (unit 1) (value "GND") (footprint "")
  7776. )
  7777. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061f19e0b"
  7778. (reference "#PWR0158") (unit 1) (value "GND") (footprint "")
  7779. )
  7780. (path "/831181f3-e07e-4359-85a3-43a55598e402"
  7781. (reference "#PWR0159") (unit 1) (value "+3V3") (footprint "")
  7782. )
  7783. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061fe2dba"
  7784. (reference "#PWR0160") (unit 1) (value "GND") (footprint "")
  7785. )
  7786. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006205c39d"
  7787. (reference "#PWR0161") (unit 1) (value "GND") (footprint "")
  7788. )
  7789. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000062114235"
  7790. (reference "#PWR0162") (unit 1) (value "+12V") (footprint "")
  7791. )
  7792. (path "/00000000-0000-0000-0000-0000618a932e/5f913140-2c34-4501-b371-858a0c11d771"
  7793. (reference "#PWR0163") (unit 1) (value "+5VA") (footprint "")
  7794. )
  7795. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-00006212dbb5"
  7796. (reference "#PWR0164") (unit 1) (value "GND") (footprint "")
  7797. )
  7798. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061117579"
  7799. (reference "#PWR0165") (unit 1) (value "+3V3") (footprint "")
  7800. )
  7801. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a3c"
  7802. (reference "#PWR0166") (unit 1) (value "GND") (footprint "")
  7803. )
  7804. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a46"
  7805. (reference "#PWR0167") (unit 1) (value "GND") (footprint "")
  7806. )
  7807. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165ae0"
  7808. (reference "#PWR0168") (unit 1) (value "+12V") (footprint "")
  7809. )
  7810. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621ca70f"
  7811. (reference "#PWR0169") (unit 1) (value "+24V") (footprint "")
  7812. )
  7813. (path "/00000000-0000-0000-0000-000061180e4f"
  7814. (reference "#PWR0170") (unit 1) (value "GND") (footprint "")
  7815. )
  7816. (path "/e3a430e6-9432-407c-b496-db8bd65368c8"
  7817. (reference "#PWR0171") (unit 1) (value "GND") (footprint "")
  7818. )
  7819. (path "/1f643113-fa5c-4d33-af0d-36613c1d3ae5"
  7820. (reference "#PWR0172") (unit 1) (value "GND") (footprint "")
  7821. )
  7822. (path "/1e363680-fc77-40a0-b7ae-3279abfba965"
  7823. (reference "#PWR0173") (unit 1) (value "+3V3") (footprint "")
  7824. )
  7825. (path "/7e409286-fd81-4589-a252-d85b68bce9f6"
  7826. (reference "#PWR0174") (unit 1) (value "+3V3") (footprint "")
  7827. )
  7828. (path "/138b55c4-a8cf-43b6-aeeb-467cc948641b"
  7829. (reference "#PWR0175") (unit 1) (value "GND") (footprint "")
  7830. )
  7831. (path "/00000000-0000-0000-0000-0000618a932e/7366efb4-8376-4153-8376-8e8efa53da71"
  7832. (reference "#PWR0176") (unit 1) (value "VPP") (footprint "")
  7833. )
  7834. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/f8943277-c0ad-4703-bab4-a2905995b5cd"
  7835. (reference "#PWR0177") (unit 1) (value "GND") (footprint "")
  7836. )
  7837. (path "/00000000-0000-0000-0000-0000618a932e/c6315284-c1a5-481e-acc9-907a4b5f620d"
  7838. (reference "#PWR0178") (unit 1) (value "+5V") (footprint "")
  7839. )
  7840. (path "/00000000-0000-0000-0000-0000618a932e/4ca44258-1e5c-44c1-ba8a-36ba31b68f52"
  7841. (reference "#PWR0179") (unit 1) (value "+3V3") (footprint "")
  7842. )
  7843. (path "/00000000-0000-0000-0000-0000618a932e/131544d1-99b1-4185-bbe4-5057bbb29d1c"
  7844. (reference "#PWR0180") (unit 1) (value "+5V") (footprint "")
  7845. )
  7846. (path "/00000000-0000-0000-0000-0000618a932e/2aa51d3c-cec4-4e75-86a2-706373fb593f"
  7847. (reference "#PWR0181") (unit 1) (value "+5V") (footprint "")
  7848. )
  7849. (path "/00000000-0000-0000-0000-0000618a932e/9815c0c0-909c-470a-8382-3e353daf2683"
  7850. (reference "#PWR0182") (unit 1) (value "+3V3") (footprint "")
  7851. )
  7852. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/4deb904e-fd2d-4d48-8ca1-9d6a1354ae8d"
  7853. (reference "#PWR0183") (unit 1) (value "GNDA") (footprint "")
  7854. )
  7855. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/db86c91b-5306-439e-923d-f0a0603bec55"
  7856. (reference "#PWR0184") (unit 1) (value "GNDA") (footprint "")
  7857. )
  7858. (path "/579f6b2b-1542-4dae-8619-560e86764e1b"
  7859. (reference "#PWR0185") (unit 1) (value "GND") (footprint "")
  7860. )
  7861. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e28a05db-55cf-4f3b-8a53-7501eb154f18"
  7862. (reference "#PWR0186") (unit 1) (value "+3.3VADC") (footprint "")
  7863. )
  7864. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/dbea19a7-d3cf-4adf-910d-4ca6d1d43f18"
  7865. (reference "#PWR0187") (unit 1) (value "GNDA") (footprint "")
  7866. )
  7867. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/2ba0cfff-1796-4cd2-b9b4-0ee05bc768ef"
  7868. (reference "#PWR0188") (unit 1) (value "GNDA") (footprint "")
  7869. )
  7870. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/54d04f66-b81d-46aa-89e0-c9e6591e7c8d"
  7871. (reference "#PWR0189") (unit 1) (value "+3V3") (footprint "")
  7872. )
  7873. (path "/75db0569-c1c9-47ca-b2fd-be6d039ffae9"
  7874. (reference "#PWR0190") (unit 1) (value "+5V") (footprint "")
  7875. )
  7876. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/37191450-a834-4171-80df-9fee91b104fd"
  7877. (reference "#PWR0191") (unit 1) (value "GND") (footprint "")
  7878. )
  7879. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/1b529824-337e-4f41-8aae-49b6ae00652d"
  7880. (reference "#PWR0192") (unit 1) (value "GND") (footprint "")
  7881. )
  7882. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/bd2cb2aa-a578-4ea4-83ab-829eeaee310a"
  7883. (reference "#PWR0193") (unit 1) (value "GNDA") (footprint "")
  7884. )
  7885. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/50eda5fa-93e9-477a-9ecd-081aa0fb8923"
  7886. (reference "#PWR0194") (unit 1) (value "GNDA") (footprint "")
  7887. )
  7888. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/0e117833-f253-45cc-981e-737ef0e2df43"
  7889. (reference "#PWR0195") (unit 1) (value "GNDA") (footprint "")
  7890. )
  7891. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e504f737-afa3-4e8f-813d-636cac6e64c2"
  7892. (reference "#PWR0196") (unit 1) (value "+3V3") (footprint "")
  7893. )
  7894. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/ae23faac-f730-4d4b-a62c-3c8216cd43d3"
  7895. (reference "#PWR0197") (unit 1) (value "GND") (footprint "")
  7896. )
  7897. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b9a5576a-8f1f-407b-8db8-2597d5ccf48b"
  7898. (reference "#PWR0198") (unit 1) (value "GND") (footprint "")
  7899. )
  7900. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/4520838b-b386-4c1a-ae61-0999e4bb0c70"
  7901. (reference "#PWR0199") (unit 1) (value "GNDA") (footprint "")
  7902. )
  7903. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/fb0b8725-c9f5-4019-8f2d-5d01dc6047a1"
  7904. (reference "#PWR0202") (unit 1) (value "GNDA") (footprint "")
  7905. )
  7906. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/56cf5c35-6aa6-4082-ba0d-e6c3653bc82c"
  7907. (reference "#PWR0203") (unit 1) (value "+3.3VADC") (footprint "")
  7908. )
  7909. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/ed632bc7-7448-4fcc-b2cb-45c037bf88b8"
  7910. (reference "#PWR0204") (unit 1) (value "GND") (footprint "")
  7911. )
  7912. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/20dbb1dd-fd1c-48bd-9224-700eadf6ff96"
  7913. (reference "#PWR0205") (unit 1) (value "GNDA") (footprint "")
  7914. )
  7915. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/d84ef48d-75f6-4f2a-bbb4-6b10fa08f99d"
  7916. (reference "#PWR0206") (unit 1) (value "-3V3") (footprint "")
  7917. )
  7918. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/29b617e8-701d-4c6d-a11f-ec26e65094f0"
  7919. (reference "#PWR0207") (unit 1) (value "-3V3") (footprint "")
  7920. )
  7921. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/bdb85bdc-171e-4460-aebf-8d0d5c5d34a2"
  7922. (reference "#PWR0208") (unit 1) (value "+3V3") (footprint "")
  7923. )
  7924. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/7be74137-1904-41a3-b044-50d9530ffcd8"
  7925. (reference "#PWR0209") (unit 1) (value "+3V3") (footprint "")
  7926. )
  7927. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/0073505c-a814-46df-b863-e34c87cae6cf"
  7928. (reference "#PWR0210") (unit 1) (value "+3.3VADC") (footprint "")
  7929. )
  7930. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/660ec9e9-a96b-418b-bf77-78b1133eaaa7"
  7931. (reference "#PWR0211") (unit 1) (value "GND") (footprint "")
  7932. )
  7933. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/1a0db7ac-3a63-4703-b6a1-569c421c930d"
  7934. (reference "#PWR0212") (unit 1) (value "GNDA") (footprint "")
  7935. )
  7936. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/a3b7dfab-9d62-4ac7-97a3-e2e31b3f84ba"
  7937. (reference "#PWR0214") (unit 1) (value "GND") (footprint "")
  7938. )
  7939. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/77286fe1-c01a-4d48-94a1-e4ecfcbede1f"
  7940. (reference "#PWR0215") (unit 1) (value "GNDA") (footprint "")
  7941. )
  7942. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/c88011a8-c447-40cf-ae4a-39b4de961c04"
  7943. (reference "#PWR0216") (unit 1) (value "GNDA") (footprint "")
  7944. )
  7945. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/67ff579f-1797-45a2-97ef-2719922260b6"
  7946. (reference "#PWR0217") (unit 1) (value "+3V3") (footprint "")
  7947. )
  7948. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/88431cd8-35c8-4f27-a56c-98e34ac94dee"
  7949. (reference "#PWR0218") (unit 1) (value "GND") (footprint "")
  7950. )
  7951. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/a16bd792-2baf-4e92-844c-a5fbf8086093"
  7952. (reference "#PWR0219") (unit 1) (value "GND") (footprint "")
  7953. )
  7954. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/84bdff7a-5f16-44cb-bcd0-c7a0a2a826b3"
  7955. (reference "#PWR0220") (unit 1) (value "GND") (footprint "")
  7956. )
  7957. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/45481b81-958c-402d-91eb-6b05620f4dce"
  7958. (reference "#PWR0221") (unit 1) (value "GND") (footprint "")
  7959. )
  7960. (path "/b493a636-5a02-409a-9733-9060e83b6f45"
  7961. (reference "#PWR0222") (unit 1) (value "GND") (footprint "")
  7962. )
  7963. (path "/19095159-4ec4-446a-9d52-3f5f6b54c307"
  7964. (reference "#PWR0223") (unit 1) (value "+3V3") (footprint "")
  7965. )
  7966. (path "/90754c3c-d69a-4aee-b4f2-ee2e9607e874"
  7967. (reference "#PWR0224") (unit 1) (value "GND") (footprint "")
  7968. )
  7969. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/4ecffab0-fd63-4249-9eaf-9c17f9c8dfa7"
  7970. (reference "#PWR0227") (unit 1) (value "GND") (footprint "")
  7971. )
  7972. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/5cfc5aa4-5938-4912-a168-63dcbd43fd24"
  7973. (reference "#PWR0228") (unit 1) (value "+3V3") (footprint "")
  7974. )
  7975. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/c519dd4f-a22b-4a03-b94c-46a9e39348df"
  7976. (reference "#PWR0229") (unit 1) (value "GND") (footprint "")
  7977. )
  7978. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/ee09ac27-035c-4790-babe-b409ddd85d55"
  7979. (reference "#PWR0230") (unit 1) (value "+3V3") (footprint "")
  7980. )
  7981. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/aa64d0a8-ded1-4c24-a1bd-623f73676f5a"
  7982. (reference "#PWR0231") (unit 1) (value "GND") (footprint "")
  7983. )
  7984. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/0e3bde92-83bc-461a-ad8a-2334e46d5a4a"
  7985. (reference "#PWR0232") (unit 1) (value "GND") (footprint "")
  7986. )
  7987. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/2c6db664-62f7-4acc-9702-c6cca00ac65c"
  7988. (reference "#PWR0241") (unit 1) (value "GND") (footprint "")
  7989. )
  7990. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/4ca8148d-9c7e-41fc-aebf-4361f143746c"
  7991. (reference "#PWR0242") (unit 1) (value "GND") (footprint "")
  7992. )
  7993. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/f7086363-842e-4f81-871d-20d4f23719d0"
  7994. (reference "#PWR0245") (unit 1) (value "GND") (footprint "")
  7995. )
  7996. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/6258cfdd-be98-4049-94da-6c84ef897344"
  7997. (reference "#PWR0246") (unit 1) (value "GND") (footprint "")
  7998. )
  7999. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/d7b84b2f-7a32-4554-a4a0-2b4a73d91479"
  8000. (reference "#PWR0250") (unit 1) (value "+3V3") (footprint "")
  8001. )
  8002. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/ce0dd184-9f48-4058-80cb-ffbf993a7037"
  8003. (reference "#PWR0251") (unit 1) (value "GND") (footprint "")
  8004. )
  8005. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/c31335b1-4eb3-4b22-ada7-ccf91437570c"
  8006. (reference "#PWR0254") (unit 1) (value "+3V3") (footprint "")
  8007. )
  8008. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/436f66d0-8540-456a-8d95-6afa125f4ad6"
  8009. (reference "#PWR0255") (unit 1) (value "GND") (footprint "")
  8010. )
  8011. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/8b543612-7469-4968-8cce-8071e2619531"
  8012. (reference "#PWR0256") (unit 1) (value "+3V3") (footprint "")
  8013. )
  8014. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/0b681b1f-253f-4c60-af8d-74274e9173d5"
  8015. (reference "#PWR0257") (unit 1) (value "GND") (footprint "")
  8016. )
  8017. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e078b70d-e62d-4a0d-8422-652097a4c099"
  8018. (reference "#PWR0258") (unit 1) (value "GNDA") (footprint "")
  8019. )
  8020. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/8745a1d9-71fe-4b5f-a509-2ed0c97c06df"
  8021. (reference "#PWR0259") (unit 1) (value "GND") (footprint "")
  8022. )
  8023. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/4d731e4f-ca60-4d17-b9ef-1fddddbf0d4c"
  8024. (reference "#PWR0260") (unit 1) (value "GND") (footprint "")
  8025. )
  8026. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/ea0b4153-b639-445d-bc04-dccc5d549a5c"
  8027. (reference "#PWR0261") (unit 1) (value "+3V3") (footprint "")
  8028. )
  8029. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/afa73031-ad9b-4633-a3de-1f8710a74d74"
  8030. (reference "#PWR0262") (unit 1) (value "GND") (footprint "")
  8031. )
  8032. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e7feac9"
  8033. (reference "C1") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8034. )
  8035. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cb935e"
  8036. (reference "C2") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8037. )
  8038. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061ce2725"
  8039. (reference "C3") (unit 1) (value "100uF") (footprint "Capacitor_SMD:C_1210_3225Metric")
  8040. )
  8041. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96834"
  8042. (reference "C4") (unit 1) (value "220uF") (footprint "Capacitor_SMD:CP_Elec_8x10.5")
  8043. )
  8044. (path "/00000000-0000-0000-0000-0000619586c3/8a273ef1-0085-4a14-9190-f6d0f6313d4c"
  8045. (reference "C5") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8046. )
  8047. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006199437d"
  8048. (reference "C6") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8049. )
  8050. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994383"
  8051. (reference "C7") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8052. )
  8053. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994377"
  8054. (reference "C8") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8055. )
  8056. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994389"
  8057. (reference "C9") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8058. )
  8059. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994371"
  8060. (reference "C10") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8061. )
  8062. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061f82fc0"
  8063. (reference "C11") (unit 1) (value "2.2uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8064. )
  8065. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006199436b"
  8066. (reference "C12") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8067. )
  8068. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061edc345"
  8069. (reference "C13") (unit 1) (value "2.2uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8070. )
  8071. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994365"
  8072. (reference "C14") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8073. )
  8074. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061ef5b8b"
  8075. (reference "C15") (unit 1) (value "2.2uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8076. )
  8077. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006199435f"
  8078. (reference "C16") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8079. )
  8080. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994359"
  8081. (reference "C17") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8082. )
  8083. (path "/00000000-0000-0000-0000-0000616c45ba"
  8084. (reference "C18") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8085. )
  8086. (path "/00000000-0000-0000-0000-0000616c45b0"
  8087. (reference "C19") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8088. )
  8089. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994353"
  8090. (reference "C20") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8091. )
  8092. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006199434d"
  8093. (reference "C21") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8094. )
  8095. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994341"
  8096. (reference "C22") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8097. )
  8098. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c56c9b"
  8099. (reference "C23") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8100. )
  8101. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c54e11"
  8102. (reference "C24") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8103. )
  8104. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c5650b"
  8105. (reference "C25") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8106. )
  8107. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96808"
  8108. (reference "C26") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_1206_3216Metric")
  8109. )
  8110. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967cc"
  8111. (reference "C27") (unit 1) (value "15nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8112. )
  8113. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d9678d"
  8114. (reference "C28") (unit 1) (value "5600pF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8115. )
  8116. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96382"
  8117. (reference "C29") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8118. )
  8119. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96798"
  8120. (reference "C30") (unit 1) (value "390pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8121. )
  8122. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96772"
  8123. (reference "C31") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_1206_3216Metric")
  8124. )
  8125. (path "/00000000-0000-0000-0000-0000619586c3/50f3aa0d-e02c-4605-8d23-8f30a192db6b"
  8126. (reference "C32") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8127. )
  8128. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165aa6"
  8129. (reference "C33") (unit 1) (value "220uF") (footprint "Capacitor_SMD:CP_Elec_8x10.5")
  8130. )
  8131. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a7a"
  8132. (reference "C34") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_1206_3216Metric")
  8133. )
  8134. (path "/00000000-0000-0000-0000-0000619586c3/2371edfd-3192-49c5-a18b-146e47cbce4a"
  8135. (reference "C35") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8136. )
  8137. (path "/00000000-0000-0000-0000-0000619586c3/a699b0e4-7d28-4143-92c1-fd238fd7270e"
  8138. (reference "C36") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8139. )
  8140. (path "/00000000-0000-0000-0000-0000619586c3/afeb5d6b-7f4d-41b9-ac0b-8457c1693aac"
  8141. (reference "C37") (unit 1) (value "220uF") (footprint "Capacitor_SMD:CP_Elec_8x10.5")
  8142. )
  8143. (path "/00000000-0000-0000-0000-0000619586c3/54426ce1-260f-4569-b31f-0b544e60105f"
  8144. (reference "C38") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8145. )
  8146. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a52"
  8147. (reference "C39") (unit 1) (value "15nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8148. )
  8149. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a13"
  8150. (reference "C40") (unit 1) (value "5600pF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8151. )
  8152. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659b8"
  8153. (reference "C41") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8154. )
  8155. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a1e"
  8156. (reference "C42") (unit 1) (value "390pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8157. )
  8158. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659f8"
  8159. (reference "C43") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_1206_3216Metric")
  8160. )
  8161. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/0b98176c-f35e-4f33-aaa2-9c6b5da0eecd"
  8162. (reference "C44") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8163. )
  8164. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062489810"
  8165. (reference "C45") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8166. )
  8167. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000624d0c15"
  8168. (reference "C46") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8169. )
  8170. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000060f6ef2a"
  8171. (reference "C47") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8172. )
  8173. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e6fe311c-62ea-4949-9548-07e5a2a2fbf5"
  8174. (reference "C48") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8175. )
  8176. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/74c6cdf0-1811-4024-880f-2fc2fbce716a"
  8177. (reference "C49") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8178. )
  8179. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b49381b7-86d8-4468-9408-0d3f72bf79fd"
  8180. (reference "C50") (unit 1) (value "18pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8181. )
  8182. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b45c8235-0e72-46e9-b581-1e9ec7ba5169"
  8183. (reference "C51") (unit 1) (value "18pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8184. )
  8185. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/d0e4d675-6dec-4855-84b2-3dd0bb949370"
  8186. (reference "C53") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8187. )
  8188. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/292eecaa-1713-4c27-a066-538c5ee44376"
  8189. (reference "C55") (unit 1) (value "3.3uF") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  8190. )
  8191. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/690cc8a8-660a-4d68-85d8-28464242ed6c"
  8192. (reference "C56") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8193. )
  8194. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/3451e0b8-e5cc-4bd4-9ee5-586832783336"
  8195. (reference "C57") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8196. )
  8197. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/90ec0fa0-8653-4b41-aa06-80c30336e014"
  8198. (reference "C58") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8199. )
  8200. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/0f0a097f-1e00-488c-a3a7-2a1967026c19"
  8201. (reference "C61") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8202. )
  8203. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/9feecfcf-7d25-40cf-ad2d-488769ee4aad"
  8204. (reference "C62") (unit 1) (value "3.3uF") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  8205. )
  8206. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/19a96f21-b011-4a2d-8cd2-5048cd043ae5"
  8207. (reference "C63") (unit 1) (value "3.3uF") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  8208. )
  8209. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/7da573c9-2ed3-46bd-9520-ce143e314f93"
  8210. (reference "C65") (unit 1) (value "3.3uF") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  8211. )
  8212. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/925eea5a-795f-4716-bbbb-1e1b6a567a73"
  8213. (reference "C68") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8214. )
  8215. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/494bf120-7732-48b5-a8d5-04599731a5ad"
  8216. (reference "C70") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8217. )
  8218. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e8d93bc9-2d59-4913-8099-f98850f69c17"
  8219. (reference "C71") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8220. )
  8221. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/2a3aa0e4-74df-4ebb-9b71-9df5a99f9b47"
  8222. (reference "C72") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8223. )
  8224. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/7b91f57c-cb55-4826-abf2-3818754597d9"
  8225. (reference "C73") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8226. )
  8227. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/f9a295b3-49bd-4542-bce7-702ac63e14ed"
  8228. (reference "C74") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8229. )
  8230. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/e388f1ff-7709-4cec-a523-4bf1afec8889"
  8231. (reference "C75") (unit 1) (value "18pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8232. )
  8233. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/87c067ed-7584-46ea-a4ea-b71ec597ad3f"
  8234. (reference "C76") (unit 1) (value "18pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8235. )
  8236. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/415154e3-0b4d-4395-985d-8408ba5ca3d5"
  8237. (reference "C77") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8238. )
  8239. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/719c630a-63ee-4403-be6b-abcb945c1232"
  8240. (reference "C78") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8241. )
  8242. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/0fd699b6-51d7-4501-a3dd-19916dac77b3"
  8243. (reference "C79") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8244. )
  8245. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/41a9d0f7-b660-448e-bfdb-826542775cd5"
  8246. (reference "C80") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8247. )
  8248. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/3e0c574b-35f2-46e3-9aac-c11407c0bc18"
  8249. (reference "C81") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8250. )
  8251. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/a38c58da-a242-4a84-9f98-4a7788f47e09"
  8252. (reference "C82") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8253. )
  8254. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/1e3c736e-05e0-4820-bd06-ab8e8ff874df"
  8255. (reference "C83") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8256. )
  8257. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/aa48e07f-186b-45e6-9f82-394b42456b80"
  8258. (reference "C84") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8259. )
  8260. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/4d088351-f858-4705-8851-088dbf6ebc8d"
  8261. (reference "C85") (unit 1) (value "6800pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8262. )
  8263. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/e0c0fd97-0ef2-4aff-b4f5-598570ce6474"
  8264. (reference "C86") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8265. )
  8266. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/d97a29f1-3127-4474-8e0b-83537eca46a3"
  8267. (reference "C87") (unit 1) (value "6800pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8268. )
  8269. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/9f89b039-e78e-4fd5-89ea-1ff4780ae441"
  8270. (reference "C88") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8271. )
  8272. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/0d7357e4-355a-4aa4-841a-03851fab5f63"
  8273. (reference "C89") (unit 1) (value "6800pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8274. )
  8275. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/24823d32-efb6-46a1-98da-c30d8db5d1a4"
  8276. (reference "C90") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8277. )
  8278. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/d6d2cb1a-f3d2-41fb-98d9-7a135a63ed1c"
  8279. (reference "C91") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8280. )
  8281. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/26cb46f8-8a8c-4873-a0ff-7d7542f1b5af"
  8282. (reference "C92") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8283. )
  8284. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/4d9a9552-cfd6-498b-b548-ce5e6e4a1592"
  8285. (reference "C93") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8286. )
  8287. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/8c921dfd-9f2a-4b32-aee8-653411ecdb4e"
  8288. (reference "C94") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8289. )
  8290. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/0c2f62ea-dbda-4ec0-b7e6-ec80c3dba194"
  8291. (reference "C95") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8292. )
  8293. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/b87cbef9-857c-4347-ad70-6bdd0df21822"
  8294. (reference "C96") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8295. )
  8296. (path "/00000000-0000-0000-0000-0000619586c3/782d2b8a-da0b-4737-8865-abd9774a99c2"
  8297. (reference "C97") (unit 1) (value "220uF") (footprint "Capacitor_SMD:CP_Elec_8x10.5")
  8298. )
  8299. (path "/00000000-0000-0000-0000-000061787067"
  8300. (reference "D1") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
  8301. )
  8302. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cc4ade"
  8303. (reference "D2") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8304. )
  8305. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf640d"
  8306. (reference "D3") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8307. )
  8308. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf74de"
  8309. (reference "D4") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8310. )
  8311. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bf0f20"
  8312. (reference "D5") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8313. )
  8314. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d9673d"
  8315. (reference "D6") (unit 1) (value "B340A-13-F") (footprint "Diode_SMD:D_SMA")
  8316. )
  8317. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96850"
  8318. (reference "D7") (unit 1) (value "LED-B") (footprint "LED_SMD:LED_0603_1608Metric")
  8319. )
  8320. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-0000620de268"
  8321. (reference "D8") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8322. )
  8323. (path "/caa6303a-9842-4b6b-90f3-1429bc2a97a5"
  8324. (reference "D9") (unit 1) (value "B340A-13-F") (footprint "Diode_SMD:D_SMA")
  8325. )
  8326. (path "/615e49fd-3f83-4aa6-b131-9d3dcb501f2c"
  8327. (reference "D10") (unit 1) (value "B340A-13-F") (footprint "Diode_SMD:D_SMA")
  8328. )
  8329. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659c3"
  8330. (reference "D11") (unit 1) (value "B340A-13-F") (footprint "Diode_SMD:D_SMA")
  8331. )
  8332. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165ac0"
  8333. (reference "D12") (unit 1) (value "LED-B") (footprint "LED_SMD:LED_0603_1608Metric")
  8334. )
  8335. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165aed"
  8336. (reference "D13") (unit 1) (value "B340A-13-F") (footprint "Diode_SMD:D_SMA")
  8337. )
  8338. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000620ac1a6"
  8339. (reference "D14") (unit 1) (value "B340A-13-F") (footprint "Diode_SMD:D_SMA")
  8340. )
  8341. (path "/00000000-0000-0000-0000-0000619586c3/74dd3e82-6ce0-40e5-9a7e-400e2add8afc"
  8342. (reference "D15") (unit 1) (value "LED-B") (footprint "LED_SMD:LED_0603_1608Metric")
  8343. )
  8344. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/ae20d466-ac82-43b4-abc2-122d1c5f9b1c"
  8345. (reference "D16") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8346. )
  8347. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/77c8ecad-2afb-4efe-9ccd-5517d87ebe40"
  8348. (reference "D17") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  8349. )
  8350. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005cc74192"
  8351. (reference "F1") (unit 1) (value "Polyfuse 460mA") (footprint "Greaseweazle:Fuse_1206_3216Metric")
  8352. )
  8353. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-00006223ce57"
  8354. (reference "F2") (unit 1) (value "Polyfuse 2.2A") (footprint "Greaseweazle:Fuse_2018Metric")
  8355. )
  8356. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000622abbc4"
  8357. (reference "F6") (unit 1) (value "Polyfuse 4.2A") (footprint "Greaseweazle:Fuse_2018Metric")
  8358. )
  8359. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-00006226e0d2"
  8360. (reference "F7") (unit 1) (value "Polyfuse 2.2A") (footprint "Greaseweazle:Fuse_2018Metric")
  8361. )
  8362. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-00006110f4b4"
  8363. (reference "F8") (unit 1) (value "Polyfuse 4.2A") (footprint "Greaseweazle:Fuse_2018Metric")
  8364. )
  8365. (path "/00000000-0000-0000-0000-000060f2641d"
  8366. (reference "H1") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  8367. )
  8368. (path "/00000000-0000-0000-0000-000060f2c7b9"
  8369. (reference "H2") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  8370. )
  8371. (path "/00000000-0000-0000-0000-000060f34430"
  8372. (reference "H3") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  8373. )
  8374. (path "/00000000-0000-0000-0000-000060f360e1"
  8375. (reference "H4") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  8376. )
  8377. (path "/00000000-0000-0000-0000-000060f4c92b"
  8378. (reference "J1") (unit 1) (value "Conn_02x17_Odd_Even") (footprint "Connector_IDC:IDC-Header_2x17_P2.54mm_Vertical")
  8379. )
  8380. (path "/00000000-0000-0000-0000-00006113965b"
  8381. (reference "J2") (unit 1) (value "Conn_01x02_Male") (footprint "Button_Switch_THT:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile")
  8382. )
  8383. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000060fde913"
  8384. (reference "J3") (unit 1) (value "Floppy power") (footprint "Greaseweazle:TE_171826-4_1x4_P2.50mm_Horizontal")
  8385. )
  8386. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061bef97d"
  8387. (reference "J4") (unit 1) (value "Power Connector") (footprint "Connector_Phoenix_MC:PhoenixContact_MC_1,5_4-G-3.81_1x04_P3.81mm_Horizontal")
  8388. )
  8389. (path "/00000000-0000-0000-0000-0000619aeefc"
  8390. (reference "J5") (unit 1) (value "ST LINK DEBUG/FLASH") (footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical")
  8391. )
  8392. (path "/00000000-0000-0000-0000-000061a29d54"
  8393. (reference "J7") (unit 1) (value "ID") (footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels")
  8394. )
  8395. (path "/00000000-0000-0000-0000-000061a2b329"
  8396. (reference "J8") (unit 1) (value "ID LOW") (footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels")
  8397. )
  8398. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c0ccd0"
  8399. (reference "J9") (unit 1) (value "STUBS4500 Programming") (footprint "Connector_IDC:IDC-Header_2x06_P2.54mm_Vertical")
  8400. )
  8401. (path "/00000000-0000-0000-0000-00006115910d"
  8402. (reference "J10") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical")
  8403. )
  8404. (path "/4ed97a04-0986-4770-aed0-dc9f909c392f"
  8405. (reference "J11") (unit 1) (value "Conn_02x03_Odd_Even") (footprint "Connector:Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical")
  8406. )
  8407. (path "/de74180e-b890-44b7-9756-b45db32a51e7"
  8408. (reference "J12") (unit 1) (value "Conn_02x25_Odd_Even") (footprint "Connector_IDC:IDC-Header_2x25_P2.54mm_Vertical")
  8409. )
  8410. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/18f3be4d-442e-4446-b8d8-42499a6418cc"
  8411. (reference "J15") (unit 1) (value "GPIO0") (footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels")
  8412. )
  8413. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/fb9ce2a9-1dc3-4813-ab09-573cfd0b87a4"
  8414. (reference "J16") (unit 1) (value "GPIO1") (footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels")
  8415. )
  8416. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b1301c60-ff7e-469f-b090-63f6a467a427"
  8417. (reference "J17") (unit 1) (value "FLOPPY-SIDE-0") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical")
  8418. )
  8419. (path "/984c0ab6-7c29-4883-bf92-47178f65fa30"
  8420. (reference "J18") (unit 1) (value "ID") (footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels")
  8421. )
  8422. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d9681d"
  8423. (reference "L1") (unit 1) (value "15uH") (footprint "Greaseweazle:L_6.3x6.3_H3")
  8424. )
  8425. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/0e088394-8c5a-44be-ac98-14bc2dc355fb"
  8426. (reference "L2") (unit 1) (value "100uH") (footprint "Greaseweazle:L_6.3x6.3_H3")
  8427. )
  8428. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a8f"
  8429. (reference "L3") (unit 1) (value "15uH") (footprint "Greaseweazle:L_6.3x6.3_H3")
  8430. )
  8431. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/cff86929-ce63-4508-8edc-a0fb9eb66289"
  8432. (reference "L4") (unit 1) (value "100uH") (footprint "Greaseweazle:L_6.3x6.3_H3")
  8433. )
  8434. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/d1f5be86-af55-48c4-bbeb-9815fbccdf78"
  8435. (reference "L5") (unit 1) (value "100uH") (footprint "Greaseweazle:L_6.3x6.3_H3")
  8436. )
  8437. (path "/00000000-0000-0000-0000-0000619586c3/677b9b48-432b-4f16-9b1d-4e001f4808a4"
  8438. (reference "L6") (unit 1) (value "15uH") (footprint "Greaseweazle:L_6.3x6.3_H3")
  8439. )
  8440. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c7c2e9"
  8441. (reference "Q1") (unit 1) (value "AO4407C") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  8442. )
  8443. (path "/00000000-0000-0000-0000-0000618a932e/7cb5267b-02e0-46f9-9a48-d31c48814c00"
  8444. (reference "Q2") (unit 1) (value "BSS138") (footprint "Package_TO_SOT_SMD:SOT-23")
  8445. )
  8446. (path "/00000000-0000-0000-0000-0000618a932e/603b1750-0482-4332-a28b-9b74150b9566"
  8447. (reference "Q3") (unit 1) (value "BSS138") (footprint "Package_TO_SOT_SMD:SOT-23")
  8448. )
  8449. (path "/00000000-0000-0000-0000-0000618a932e/232d0c9a-0752-47ab-a532-e1a9d47faefb"
  8450. (reference "Q4") (unit 1) (value "AO3401A") (footprint "Package_TO_SOT_SMD:SOT-23")
  8451. )
  8452. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e733708"
  8453. (reference "R1") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8454. )
  8455. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e79f20f"
  8456. (reference "R2") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8457. )
  8458. (path "/00000000-0000-0000-0000-000060f7de7e"
  8459. (reference "R3") (unit 1) (value "3k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8460. )
  8461. (path "/00000000-0000-0000-0000-000060f7b3e5"
  8462. (reference "R4") (unit 1) (value "3k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8463. )
  8464. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000619943a1"
  8465. (reference "R5") (unit 1) (value "3k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8466. )
  8467. (path "/00000000-0000-0000-0000-000061789539"
  8468. (reference "R6") (unit 1) (value "470") (footprint "Resistor_SMD:R_0402_1005Metric")
  8469. )
  8470. (path "/00000000-0000-0000-0000-0000611f6a4c"
  8471. (reference "R7") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8472. )
  8473. (path "/00000000-0000-0000-0000-0000611f8573"
  8474. (reference "R8") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8475. )
  8476. (path "/00000000-0000-0000-0000-0000611f9281"
  8477. (reference "R9") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8478. )
  8479. (path "/00000000-0000-0000-0000-0000611f9f92"
  8480. (reference "R10") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8481. )
  8482. (path "/00000000-0000-0000-0000-0000611facfa"
  8483. (reference "R11") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8484. )
  8485. (path "/00000000-0000-0000-0000-0000611fbaa4"
  8486. (reference "R12") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8487. )
  8488. (path "/00000000-0000-0000-0000-0000611fc856"
  8489. (reference "R13") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8490. )
  8491. (path "/00000000-0000-0000-0000-0000611fd625"
  8492. (reference "R14") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8493. )
  8494. (path "/00000000-0000-0000-0000-0000611fe402"
  8495. (reference "R15") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8496. )
  8497. (path "/00000000-0000-0000-0000-0000611ff27a"
  8498. (reference "R16") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8499. )
  8500. (path "/00000000-0000-0000-0000-0000612000bb"
  8501. (reference "R17") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8502. )
  8503. (path "/00000000-0000-0000-0000-000061200f43"
  8504. (reference "R18") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8505. )
  8506. (path "/00000000-0000-0000-0000-000061540484"
  8507. (reference "R19") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8508. )
  8509. (path "/00000000-0000-0000-0000-000061541c23"
  8510. (reference "R20") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8511. )
  8512. (path "/00000000-0000-0000-0000-0000615428fc"
  8513. (reference "R21") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8514. )
  8515. (path "/00000000-0000-0000-0000-0000615435d8"
  8516. (reference "R22") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8517. )
  8518. (path "/00000000-0000-0000-0000-000061544310"
  8519. (reference "R23") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8520. )
  8521. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c03140"
  8522. (reference "R24") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8523. )
  8524. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c1d791"
  8525. (reference "R25") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8526. )
  8527. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c48580"
  8528. (reference "R26") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8529. )
  8530. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c47e41"
  8531. (reference "R27") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8532. )
  8533. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c31387"
  8534. (reference "R28") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8535. )
  8536. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c36c80"
  8537. (reference "R29") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8538. )
  8539. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c39cf4"
  8540. (reference "R30") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8541. )
  8542. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c3b934"
  8543. (reference "R31") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8544. )
  8545. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c3df7b"
  8546. (reference "R32") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8547. )
  8548. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c4031d"
  8549. (reference "R33") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8550. )
  8551. (path "/00000000-0000-0000-0000-0000619586c3/ddf1d253-db65-4693-a880-6f566c4de4b7"
  8552. (reference "R34") (unit 1) (value "470") (footprint "Resistor_SMD:R_0402_1005Metric")
  8553. )
  8554. (path "/00000000-0000-0000-0000-0000618a932e/c0ff9264-07fc-4cd6-8b9d-9956044633a2"
  8555. (reference "R35") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8556. )
  8557. (path "/00000000-0000-0000-0000-0000618a932e/0ba63d92-8d75-4d10-8d9d-9abe26b02317"
  8558. (reference "R36") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8559. )
  8560. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061c9cd51"
  8561. (reference "R37") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8562. )
  8563. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061ca64e3"
  8564. (reference "R38") (unit 1) (value "22k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8565. )
  8566. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cb587b"
  8567. (reference "R39") (unit 1) (value "100") (footprint "Resistor_SMD:R_0402_1005Metric")
  8568. )
  8569. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061cdb3e1"
  8570. (reference "R40") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8571. )
  8572. (path "/00000000-0000-0000-0000-0000618a932e/135a8189-cb8f-427c-98c0-5b42cbd7be3a"
  8573. (reference "R41") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8574. )
  8575. (path "/00000000-0000-0000-0000-0000618a932e/f584fe43-11f3-4350-ac5e-df1dd1ce9a3a"
  8576. (reference "R42") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8577. )
  8578. (path "/00000000-0000-0000-0000-0000618a932e/4ddcf6b9-fab3-458a-ba6a-f6692afff192"
  8579. (reference "R43") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8580. )
  8581. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967ed"
  8582. (reference "R44") (unit 1) (value "330k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8583. )
  8584. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967f8"
  8585. (reference "R45") (unit 1) (value "120k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8586. )
  8587. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d967a3"
  8588. (reference "R46") (unit 1) (value "12.7k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8589. )
  8590. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96749"
  8591. (reference "R47") (unit 1) (value "17k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8592. )
  8593. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d96754"
  8594. (reference "R48") (unit 1) (value "3.24k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8595. )
  8596. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d9685b"
  8597. (reference "R49") (unit 1) (value "1,5k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8598. )
  8599. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a5f"
  8600. (reference "R50") (unit 1) (value "330k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8601. )
  8602. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a6a"
  8603. (reference "R51") (unit 1) (value "120k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8604. )
  8605. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165a29"
  8606. (reference "R52") (unit 1) (value "12.7k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8607. )
  8608. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659cf"
  8609. (reference "R53") (unit 1) (value "45k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8610. )
  8611. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659da"
  8612. (reference "R54") (unit 1) (value "3.24k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8613. )
  8614. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000062165acb"
  8615. (reference "R55") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8616. )
  8617. (path "/3d4ee57f-7979-4983-a450-d4a7eead57eb"
  8618. (reference "R64") (unit 1) (value "3k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8619. )
  8620. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/e7ccc987-ceaf-4508-8dbc-ea6b1d931777"
  8621. (reference "R65") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8622. )
  8623. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/40ba2de4-e92f-4d99-9118-a68407bb88ff"
  8624. (reference "R66") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8625. )
  8626. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/1b5747a6-762a-4b6e-8f91-1aa90cbd0339"
  8627. (reference "R67") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8628. )
  8629. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/756b0a26-47b6-45ab-9b00-76ddfba740d4"
  8630. (reference "R68") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  8631. )
  8632. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/a0b4b5f9-8033-4f4a-b05f-6a9cf7772979"
  8633. (reference "R69") (unit 1) (value "22") (footprint "Resistor_SMD:R_0402_1005Metric")
  8634. )
  8635. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/b62a4fb1-6880-4226-9be9-56d9577fb96f"
  8636. (reference "R70") (unit 1) (value "22") (footprint "Resistor_SMD:R_0402_1005Metric")
  8637. )
  8638. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/cbabf5a1-56c1-4765-8f8f-ba34e1fcd706"
  8639. (reference "R71") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8640. )
  8641. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/badea698-84a4-43e3-b805-1a4cd74cddd7"
  8642. (reference "R72") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8643. )
  8644. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/0c63677b-8ab6-4db8-89dd-30bf81a99fed"
  8645. (reference "R73") (unit 1) (value "100") (footprint "Resistor_SMD:R_0402_1005Metric")
  8646. )
  8647. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/dde54e0d-3a65-4882-925e-9a1e80d910e1"
  8648. (reference "R74") (unit 1) (value "100") (footprint "Resistor_SMD:R_0402_1005Metric")
  8649. )
  8650. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/29c3c356-515f-4654-9bd9-f28bf8dedd06"
  8651. (reference "R75") (unit 1) (value "3.24k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8652. )
  8653. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/85b2e19e-b45a-40ca-b4ab-a142e19b1bb5"
  8654. (reference "R76") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8655. )
  8656. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/cf6a1f13-5c3d-41fb-8d52-cc90c89efccb"
  8657. (reference "R77") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8658. )
  8659. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/b1fbba1e-518f-41f9-9ab2-18a766350f5e"
  8660. (reference "R78") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8661. )
  8662. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/51247e4d-64f3-4cc9-8851-1cb58496eecd"
  8663. (reference "R79") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8664. )
  8665. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/68c972c1-d236-44d7-ba5d-fc564029f0e5"
  8666. (reference "R80") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8667. )
  8668. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/70509a60-a861-47e4-b268-49df395d9006"
  8669. (reference "R81") (unit 1) (value "3.24k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8670. )
  8671. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/717766a6-f88f-481f-9de7-c5fc5df0c2ba"
  8672. (reference "R82") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8673. )
  8674. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/c7fc8421-8850-487e-9b4e-587fa22df1ca"
  8675. (reference "R83") (unit 1) (value "1.6k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8676. )
  8677. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/8301f38d-c178-492c-bf4b-301332f291f8"
  8678. (reference "R84") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8679. )
  8680. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/17aaf0b1-1af0-4b06-822a-679dc5b3f7a6"
  8681. (reference "R85") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8682. )
  8683. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/1130f7d7-ff37-44ed-8434-d5eeae594084"
  8684. (reference "R86") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8685. )
  8686. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/79ab4f67-a09e-4106-bbd3-c81b95beefc0"
  8687. (reference "R87") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8688. )
  8689. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/774d6f1c-4dd6-4970-bc0d-73d590f92396"
  8690. (reference "R88") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8691. )
  8692. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/9b94bf1e-2e29-4ce9-aff6-87f613c116f7"
  8693. (reference "R89") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8694. )
  8695. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/885ad2b9-c10b-41ea-87a9-2ac1b602d3d1"
  8696. (reference "R90") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8697. )
  8698. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/6c72395a-5432-4c20-a5d5-daea076c49e2"
  8699. (reference "R91") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8700. )
  8701. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/a787ca91-baaa-4893-ab57-4b6ed1cac1ff"
  8702. (reference "R92") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8703. )
  8704. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/760ee491-0234-4c56-8c7c-df5c142a853f"
  8705. (reference "R93") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8706. )
  8707. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/a6033b31-5726-42ca-a95e-15b7e97f36ae"
  8708. (reference "R94") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8709. )
  8710. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/4e231a97-8b64-41b1-8ccf-ea7da127c2e1"
  8711. (reference "R95") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  8712. )
  8713. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000060ffedf2"
  8714. (reference "SW1") (unit 1) (value "RESET") (footprint "Greaseweazle:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04")
  8715. )
  8716. (path "/603979c9-b707-4515-8d60-2b9d6885fb89"
  8717. (reference "SW2") (unit 1) (value "SW_DIP_x02") (footprint "Button_Switch_THT:SW_DIP_SPSTx02_Slide_6.7x6.64mm_W7.62mm_P2.54mm_LowProfile")
  8718. )
  8719. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/54df2ba8-5bb7-4320-a2d4-f98aeb31a817"
  8720. (reference "SW3") (unit 1) (value "RESET") (footprint "Greaseweazle:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04")
  8721. )
  8722. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061994339"
  8723. (reference "U1") (unit 1) (value "STM32F730Z8T6") (footprint "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A")
  8724. )
  8725. (path "/00000000-0000-0000-0000-000060f41cbf"
  8726. (reference "U1") (unit 2) (value "STM32F730Z8T6") (footprint "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A")
  8727. )
  8728. (path "/00000000-0000-0000-0000-000060f442ce"
  8729. (reference "U1") (unit 3) (value "STM32F730Z8T6") (footprint "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A")
  8730. )
  8731. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e95f9cd"
  8732. (reference "U2") (unit 1) (value "USBLC6-2SC6") (footprint "Package_TO_SOT_SMD:SOT-23-6")
  8733. )
  8734. (path "/00000000-0000-0000-0000-000060f860dc"
  8735. (reference "U3") (unit 1) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8736. )
  8737. (path "/00000000-0000-0000-0000-000060f8e956"
  8738. (reference "U3") (unit 2) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8739. )
  8740. (path "/00000000-0000-0000-0000-000060f9020d"
  8741. (reference "U3") (unit 3) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8742. )
  8743. (path "/00000000-0000-0000-0000-000060f91637"
  8744. (reference "U3") (unit 4) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8745. )
  8746. (path "/00000000-0000-0000-0000-000060f93294"
  8747. (reference "U3") (unit 5) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8748. )
  8749. (path "/00000000-0000-0000-0000-000060f949da"
  8750. (reference "U3") (unit 6) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8751. )
  8752. (path "/00000000-0000-0000-0000-000060f95e46"
  8753. (reference "U3") (unit 7) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8754. )
  8755. (path "/00000000-0000-0000-0000-00006102cdb8"
  8756. (reference "U4") (unit 1) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8757. )
  8758. (path "/00000000-0000-0000-0000-00006102d33e"
  8759. (reference "U4") (unit 2) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8760. )
  8761. (path "/00000000-0000-0000-0000-00006102d348"
  8762. (reference "U4") (unit 3) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8763. )
  8764. (path "/00000000-0000-0000-0000-00006102d352"
  8765. (reference "U4") (unit 4) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8766. )
  8767. (path "/00000000-0000-0000-0000-00006102d35c"
  8768. (reference "U4") (unit 5) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8769. )
  8770. (path "/00000000-0000-0000-0000-00006102d366"
  8771. (reference "U4") (unit 6) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8772. )
  8773. (path "/00000000-0000-0000-0000-00006102d370"
  8774. (reference "U4") (unit 7) (value "SN74LS07") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  8775. )
  8776. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-00006190f976"
  8777. (reference "U5") (unit 1) (value "STUSB4500QTR") (footprint "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm")
  8778. )
  8779. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-000061d9675f"
  8780. (reference "U6") (unit 1) (value "TPS54331") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  8781. )
  8782. (path "/00000000-0000-0000-0000-0000619586c3/00000000-0000-0000-0000-0000621659e5"
  8783. (reference "U7") (unit 1) (value "TPS54331") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  8784. )
  8785. (path "/00000000-0000-0000-0000-0000619586c3/8883f98f-fba0-4976-882c-30cc0b8d2aea"
  8786. (reference "U8") (unit 1) (value "AMS1117-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
  8787. )
  8788. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/483f3754-695f-4639-a7d4-e12085459452"
  8789. (reference "U9") (unit 1) (value "AD8138ARZ-R7") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  8790. )
  8791. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/85fd9882-f192-4cf4-a9fb-2e6abbcba5e2"
  8792. (reference "U10") (unit 1) (value "AD9235BRUZ-65") (footprint "Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm")
  8793. )
  8794. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/eeab0e80-e6e5-44e5-8328-097faabb11ab"
  8795. (reference "U11") (unit 1) (value "FT601Q-B-T") (footprint "Package_DFN_QFN:QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm")
  8796. )
  8797. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/dced2418-a24c-43d3-8166-e6512ca54b8b"
  8798. (reference "U13") (unit 1) (value "74LVC2G04") (footprint "Package_TO_SOT_SMD:SOT-23-6")
  8799. )
  8800. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/367c56f6-510c-4539-b2da-88ba506d8283"
  8801. (reference "U13") (unit 2) (value "74LVC2G04") (footprint "Package_TO_SOT_SMD:SOT-23-6")
  8802. )
  8803. (path "/587e0876-966b-4d35-bd3c-c5066c967aa3/530796e2-7331-4204-8f24-dcc33f1230f9"
  8804. (reference "U14") (unit 1) (value "LM2664") (footprint "Package_TO_SOT_SMD:SOT-23-6")
  8805. )
  8806. (path "/00000000-0000-0000-0000-000060f22a52/00000000-0000-0000-0000-00005e68a6b6"
  8807. (reference "USB1") (unit 1) (value "HRO-TYPE-C-31-M-12") (footprint "Greaseweazle:HRO-TYPE-C-31-M-12")
  8808. )
  8809. (path "/00000000-0000-0000-0000-0000618a932e/00000000-0000-0000-0000-000061910067"
  8810. (reference "USB2") (unit 1) (value "HRO-TYPE-C-31-M-12") (footprint "Greaseweazle:HRO-TYPE-C-31-M-12")
  8811. )
  8812. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/ff2bd700-3acd-4ff9-91eb-6c52d2dde82a"
  8813. (reference "USB3") (unit 1) (value "HRO-TYPE-C-31-M-12") (footprint "Greaseweazle:USB_C_Receptacle_Amphenol_12401548E4-2A")
  8814. )
  8815. (path "/00000000-0000-0000-0000-00006138d37a"
  8816. (reference "X1") (unit 1) (value "16MHz") (footprint "Greaseweazle:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm")
  8817. )
  8818. (path "/39d9aca3-c269-4acc-b200-a28fd3c81717/534d131b-fa77-404d-a3be-44fb0807597e"
  8819. (reference "Y1") (unit 1) (value "30 MHz") (footprint "Oscillator:Oscillator_SMD_Abracon_ASDMB-4Pin_2.5x2.0mm")
  8820. )
  8821. )
  8822. )