BlackSASI.kicad_sch 449 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid c4d97e29-4300-4520-9366-edbdee93f48a)
  3. (paper "A3")
  4. (title_block
  5. (title "BlackSASI")
  6. (date "2022-03-20")
  7. (rev "1.00")
  8. (company "SweProj.com")
  9. )
  10. (lib_symbols
  11. (symbol "74xx:74LS125" (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" "74LS125" (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" "http://www.ti.com/lit/gpn/sn74LS125" (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 buffer 3State" (id 5) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (property "ki_description" "Quad buffer 3-State outputs" (id 6) (at 0 0 0)
  31. (effects (font (size 1.27 1.27)) hide)
  32. )
  33. (property "ki_fp_filters" "DIP*W7.62mm*" (id 7) (at 0 0 0)
  34. (effects (font (size 1.27 1.27)) hide)
  35. )
  36. (symbol "74LS125_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 inverted (at 0 -6.35 90) (length 4.445)
  48. (name "~" (effects (font (size 1.27 1.27))))
  49. (number "1" (effects (font (size 1.27 1.27))))
  50. )
  51. (pin input line (at -7.62 0 0) (length 3.81)
  52. (name "~" (effects (font (size 1.27 1.27))))
  53. (number "2" (effects (font (size 1.27 1.27))))
  54. )
  55. (pin tri_state line (at 7.62 0 180) (length 3.81)
  56. (name "~" (effects (font (size 1.27 1.27))))
  57. (number "3" (effects (font (size 1.27 1.27))))
  58. )
  59. )
  60. (symbol "74LS125_2_0"
  61. (polyline
  62. (pts
  63. (xy -3.81 3.81)
  64. (xy -3.81 -3.81)
  65. (xy 3.81 0)
  66. (xy -3.81 3.81)
  67. )
  68. (stroke (width 0.254) (type default) (color 0 0 0 0))
  69. (fill (type background))
  70. )
  71. (pin input inverted (at 0 -6.35 90) (length 4.445)
  72. (name "~" (effects (font (size 1.27 1.27))))
  73. (number "4" (effects (font (size 1.27 1.27))))
  74. )
  75. (pin input line (at -7.62 0 0) (length 3.81)
  76. (name "~" (effects (font (size 1.27 1.27))))
  77. (number "5" (effects (font (size 1.27 1.27))))
  78. )
  79. (pin tri_state line (at 7.62 0 180) (length 3.81)
  80. (name "~" (effects (font (size 1.27 1.27))))
  81. (number "6" (effects (font (size 1.27 1.27))))
  82. )
  83. )
  84. (symbol "74LS125_3_0"
  85. (polyline
  86. (pts
  87. (xy -3.81 3.81)
  88. (xy -3.81 -3.81)
  89. (xy 3.81 0)
  90. (xy -3.81 3.81)
  91. )
  92. (stroke (width 0.254) (type default) (color 0 0 0 0))
  93. (fill (type background))
  94. )
  95. (pin input inverted (at 0 -6.35 90) (length 4.445)
  96. (name "~" (effects (font (size 1.27 1.27))))
  97. (number "10" (effects (font (size 1.27 1.27))))
  98. )
  99. (pin tri_state line (at 7.62 0 180) (length 3.81)
  100. (name "~" (effects (font (size 1.27 1.27))))
  101. (number "8" (effects (font (size 1.27 1.27))))
  102. )
  103. (pin input line (at -7.62 0 0) (length 3.81)
  104. (name "~" (effects (font (size 1.27 1.27))))
  105. (number "9" (effects (font (size 1.27 1.27))))
  106. )
  107. )
  108. (symbol "74LS125_4_0"
  109. (polyline
  110. (pts
  111. (xy -3.81 3.81)
  112. (xy -3.81 -3.81)
  113. (xy 3.81 0)
  114. (xy -3.81 3.81)
  115. )
  116. (stroke (width 0.254) (type default) (color 0 0 0 0))
  117. (fill (type background))
  118. )
  119. (pin tri_state line (at 7.62 0 180) (length 3.81)
  120. (name "~" (effects (font (size 1.27 1.27))))
  121. (number "11" (effects (font (size 1.27 1.27))))
  122. )
  123. (pin input line (at -7.62 0 0) (length 3.81)
  124. (name "~" (effects (font (size 1.27 1.27))))
  125. (number "12" (effects (font (size 1.27 1.27))))
  126. )
  127. (pin input inverted (at 0 -6.35 90) (length 4.445)
  128. (name "~" (effects (font (size 1.27 1.27))))
  129. (number "13" (effects (font (size 1.27 1.27))))
  130. )
  131. )
  132. (symbol "74LS125_5_0"
  133. (pin power_in line (at 0 12.7 270) (length 5.08)
  134. (name "VCC" (effects (font (size 1.27 1.27))))
  135. (number "14" (effects (font (size 1.27 1.27))))
  136. )
  137. (pin power_in line (at 0 -12.7 90) (length 5.08)
  138. (name "GND" (effects (font (size 1.27 1.27))))
  139. (number "7" (effects (font (size 1.27 1.27))))
  140. )
  141. )
  142. (symbol "74LS125_5_1"
  143. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  144. (stroke (width 0.254) (type default) (color 0 0 0 0))
  145. (fill (type background))
  146. )
  147. )
  148. )
  149. (symbol "74xx_IEEE:74LS641" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
  150. (property "Reference" "U" (id 0) (at 7.62 12.7 0)
  151. (effects (font (size 1.27 1.27)) (justify left))
  152. )
  153. (property "Value" "74LS641" (id 1) (at 2.54 -15.24 0)
  154. (effects (font (size 1.27 1.27)) (justify left))
  155. )
  156. (property "Footprint" "" (id 2) (at 0 0 0)
  157. (effects (font (size 1.27 1.27)) hide)
  158. )
  159. (property "Datasheet" "" (id 3) (at 0 0 0)
  160. (effects (font (size 1.27 1.27)) hide)
  161. )
  162. (symbol "74LS641_0_0"
  163. (polyline
  164. (pts
  165. (xy -1.524 7.112)
  166. (xy -1.524 5.588)
  167. (xy 0 6.35)
  168. (xy -1.524 7.112)
  169. (xy -1.524 7.112)
  170. )
  171. (stroke (width 0) (type default) (color 0 0 0 0))
  172. (fill (type none))
  173. )
  174. (polyline
  175. (pts
  176. (xy -3.302 5.334)
  177. (xy -2.286 5.334)
  178. (xy -1.778 7.366)
  179. (xy -1.27 7.366)
  180. (xy -2.286 7.366)
  181. (xy -2.794 5.334)
  182. (xy -2.794 5.334)
  183. )
  184. (stroke (width 0) (type default) (color 0 0 0 0))
  185. (fill (type none))
  186. )
  187. (polyline
  188. (pts
  189. (xy 1.016 7.112)
  190. (xy 1.778 6.35)
  191. (xy 1.27 5.842)
  192. (xy 1.778 5.842)
  193. (xy 0.254 5.842)
  194. (xy 0.762 5.842)
  195. (xy 0.254 6.35)
  196. (xy 1.016 7.112)
  197. (xy 1.016 7.112)
  198. )
  199. (stroke (width 0) (type default) (color 0 0 0 0))
  200. (fill (type none))
  201. )
  202. (pin power_in line (at 1.27 16.51 270) (length 0) hide
  203. (name "GND" (effects (font (size 1.27 1.27))))
  204. (number "10" (effects (font (size 1.27 1.27))))
  205. )
  206. (pin power_in line (at 5.08 16.51 270) (length 0) hide
  207. (name "VCC" (effects (font (size 1.27 1.27))))
  208. (number "20" (effects (font (size 1.27 1.27))))
  209. )
  210. )
  211. (symbol "74LS641_0_1"
  212. (rectangle (start -6.35 -10.16) (end 6.35 -12.7)
  213. (stroke (width 0) (type default) (color 0 0 0 0))
  214. (fill (type none))
  215. )
  216. (rectangle (start -6.35 -7.62) (end 6.35 -10.16)
  217. (stroke (width 0) (type default) (color 0 0 0 0))
  218. (fill (type none))
  219. )
  220. (rectangle (start -6.35 -5.08) (end 6.35 -7.62)
  221. (stroke (width 0) (type default) (color 0 0 0 0))
  222. (fill (type none))
  223. )
  224. (rectangle (start -6.35 -2.54) (end 6.35 -5.08)
  225. (stroke (width 0) (type default) (color 0 0 0 0))
  226. (fill (type none))
  227. )
  228. (rectangle (start -6.35 0) (end 6.35 -2.54)
  229. (stroke (width 0) (type default) (color 0 0 0 0))
  230. (fill (type none))
  231. )
  232. (rectangle (start -6.35 2.54) (end 6.35 0)
  233. (stroke (width 0) (type default) (color 0 0 0 0))
  234. (fill (type none))
  235. )
  236. (rectangle (start -6.35 5.08) (end 6.35 2.54)
  237. (stroke (width 0) (type default) (color 0 0 0 0))
  238. (fill (type none))
  239. )
  240. (rectangle (start -6.35 7.62) (end 6.35 5.08)
  241. (stroke (width 0) (type default) (color 0 0 0 0))
  242. (fill (type none))
  243. )
  244. (polyline
  245. (pts
  246. (xy -5.08 7.62)
  247. (xy -5.08 8.89)
  248. (xy -6.35 8.89)
  249. (xy -6.35 16.51)
  250. (xy 6.35 16.51)
  251. (xy 6.35 8.89)
  252. (xy 5.08 8.89)
  253. (xy 5.08 7.62)
  254. (xy 5.08 7.62)
  255. )
  256. (stroke (width 0) (type default) (color 0 0 0 0))
  257. (fill (type none))
  258. )
  259. )
  260. (symbol "74LS641_1_1"
  261. (pin input line (at -13.97 11.43 0) (length 7.62)
  262. (name "GAB" (effects (font (size 1.27 1.27))))
  263. (number "1" (effects (font (size 1.27 1.27))))
  264. )
  265. (pin tri_state line (at 13.97 -11.43 180) (length 7.62)
  266. (name "B7" (effects (font (size 1.27 1.27))))
  267. (number "11" (effects (font (size 1.27 1.27))))
  268. )
  269. (pin tri_state line (at 13.97 -8.89 180) (length 7.62)
  270. (name "B6" (effects (font (size 1.27 1.27))))
  271. (number "12" (effects (font (size 1.27 1.27))))
  272. )
  273. (pin tri_state line (at 13.97 -6.35 180) (length 7.62)
  274. (name "B5" (effects (font (size 1.27 1.27))))
  275. (number "13" (effects (font (size 1.27 1.27))))
  276. )
  277. (pin tri_state line (at 13.97 -3.81 180) (length 7.62)
  278. (name "B4" (effects (font (size 1.27 1.27))))
  279. (number "14" (effects (font (size 1.27 1.27))))
  280. )
  281. (pin tri_state line (at 13.97 -1.27 180) (length 7.62)
  282. (name "B3" (effects (font (size 1.27 1.27))))
  283. (number "15" (effects (font (size 1.27 1.27))))
  284. )
  285. (pin tri_state line (at 13.97 1.27 180) (length 7.62)
  286. (name "B2" (effects (font (size 1.27 1.27))))
  287. (number "16" (effects (font (size 1.27 1.27))))
  288. )
  289. (pin tri_state line (at 13.97 3.81 180) (length 7.62)
  290. (name "B1" (effects (font (size 1.27 1.27))))
  291. (number "17" (effects (font (size 1.27 1.27))))
  292. )
  293. (pin tri_state line (at 13.97 6.35 180) (length 7.62)
  294. (name "B0" (effects (font (size 1.27 1.27))))
  295. (number "18" (effects (font (size 1.27 1.27))))
  296. )
  297. (pin input inverted (at -13.97 13.97 0) (length 7.62)
  298. (name "~{GBA}" (effects (font (size 1.27 1.27))))
  299. (number "19" (effects (font (size 1.27 1.27))))
  300. )
  301. (pin tri_state line (at -13.97 6.35 0) (length 7.62)
  302. (name "A0" (effects (font (size 1.27 1.27))))
  303. (number "2" (effects (font (size 1.27 1.27))))
  304. )
  305. (pin tri_state line (at -13.97 3.81 0) (length 7.62)
  306. (name "A1" (effects (font (size 1.27 1.27))))
  307. (number "3" (effects (font (size 1.27 1.27))))
  308. )
  309. (pin tri_state line (at -13.97 1.27 0) (length 7.62)
  310. (name "A2" (effects (font (size 1.27 1.27))))
  311. (number "4" (effects (font (size 1.27 1.27))))
  312. )
  313. (pin tri_state line (at -13.97 -1.27 0) (length 7.62)
  314. (name "A3" (effects (font (size 1.27 1.27))))
  315. (number "5" (effects (font (size 1.27 1.27))))
  316. )
  317. (pin tri_state line (at -13.97 -3.81 0) (length 7.62)
  318. (name "A4" (effects (font (size 1.27 1.27))))
  319. (number "6" (effects (font (size 1.27 1.27))))
  320. )
  321. (pin tri_state line (at -13.97 -6.35 0) (length 7.62)
  322. (name "A5" (effects (font (size 1.27 1.27))))
  323. (number "7" (effects (font (size 1.27 1.27))))
  324. )
  325. (pin tri_state line (at -13.97 -8.89 0) (length 7.62)
  326. (name "A6" (effects (font (size 1.27 1.27))))
  327. (number "8" (effects (font (size 1.27 1.27))))
  328. )
  329. (pin tri_state line (at -13.97 -11.43 0) (length 7.62)
  330. (name "A7" (effects (font (size 1.27 1.27))))
  331. (number "9" (effects (font (size 1.27 1.27))))
  332. )
  333. )
  334. )
  335. (symbol "BlackSASI:HRO-TYPE-C-31-M-12" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  336. (property "Reference" "USB" (id 0) (at -5.08 16.51 0)
  337. (effects (font (size 1.524 1.524)))
  338. )
  339. (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at -10.16 -1.27 90)
  340. (effects (font (size 1.524 1.524)))
  341. )
  342. (property "Footprint" "" (id 2) (at 0 0 0)
  343. (effects (font (size 1.524 1.524)) hide)
  344. )
  345. (property "Datasheet" "" (id 3) (at 0 0 0)
  346. (effects (font (size 1.524 1.524)) hide)
  347. )
  348. (symbol "HRO-TYPE-C-31-M-12_0_1"
  349. (rectangle (start -11.43 15.24) (end -8.89 -17.78)
  350. (stroke (width 0) (type default) (color 0 0 0 0))
  351. (fill (type background))
  352. )
  353. (rectangle (start 0 -17.78) (end -8.89 15.24)
  354. (stroke (width 0) (type default) (color 0 0 0 0))
  355. (fill (type background))
  356. )
  357. )
  358. (symbol "HRO-TYPE-C-31-M-12_1_1"
  359. (pin input line (at 2.54 13.97 180) (length 2.54)
  360. (name "GND" (effects (font (size 1.27 1.27))))
  361. (number "1" (effects (font (size 1.27 1.27))))
  362. )
  363. (pin input line (at 2.54 -8.89 180) (length 2.54)
  364. (name "CC2" (effects (font (size 1.27 1.27))))
  365. (number "10" (effects (font (size 1.27 1.27))))
  366. )
  367. (pin input line (at 2.54 -11.43 180) (length 2.54)
  368. (name "VBUS" (effects (font (size 1.27 1.27))))
  369. (number "11" (effects (font (size 1.27 1.27))))
  370. )
  371. (pin input line (at 2.54 -13.97 180) (length 2.54)
  372. (name "GND" (effects (font (size 1.27 1.27))))
  373. (number "12" (effects (font (size 1.27 1.27))))
  374. )
  375. (pin input line (at 2.54 -16.51 180) (length 2.54)
  376. (name "SHIELD" (effects (font (size 1.27 1.27))))
  377. (number "13" (effects (font (size 1.27 1.27))))
  378. )
  379. (pin input line (at 2.54 11.43 180) (length 2.54)
  380. (name "VBUS" (effects (font (size 1.27 1.27))))
  381. (number "2" (effects (font (size 1.27 1.27))))
  382. )
  383. (pin input line (at 2.54 8.89 180) (length 2.54)
  384. (name "SBU2" (effects (font (size 1.27 1.27))))
  385. (number "3" (effects (font (size 1.27 1.27))))
  386. )
  387. (pin input line (at 2.54 6.35 180) (length 2.54)
  388. (name "CC1" (effects (font (size 1.27 1.27))))
  389. (number "4" (effects (font (size 1.27 1.27))))
  390. )
  391. (pin input line (at 2.54 3.81 180) (length 2.54)
  392. (name "DN2" (effects (font (size 1.27 1.27))))
  393. (number "5" (effects (font (size 1.27 1.27))))
  394. )
  395. (pin input line (at 2.54 1.27 180) (length 2.54)
  396. (name "DP1" (effects (font (size 1.27 1.27))))
  397. (number "6" (effects (font (size 1.27 1.27))))
  398. )
  399. (pin input line (at 2.54 -1.27 180) (length 2.54)
  400. (name "DN1" (effects (font (size 1.27 1.27))))
  401. (number "7" (effects (font (size 1.27 1.27))))
  402. )
  403. (pin input line (at 2.54 -3.81 180) (length 2.54)
  404. (name "DP2" (effects (font (size 1.27 1.27))))
  405. (number "8" (effects (font (size 1.27 1.27))))
  406. )
  407. (pin input line (at 2.54 -6.35 180) (length 2.54)
  408. (name "SBU1" (effects (font (size 1.27 1.27))))
  409. (number "9" (effects (font (size 1.27 1.27))))
  410. )
  411. )
  412. )
  413. (symbol "BlackSASI:Micro_SD_Card TF015" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  414. (property "Reference" "J" (id 0) (at -16.51 15.24 0)
  415. (effects (font (size 1.27 1.27)))
  416. )
  417. (property "Value" "Micro_SD_Card TF015" (id 1) (at 16.51 15.24 0)
  418. (effects (font (size 1.27 1.27)) (justify right))
  419. )
  420. (property "Footprint" "" (id 2) (at 29.21 7.62 0)
  421. (effects (font (size 1.27 1.27)) hide)
  422. )
  423. (property "Datasheet" "https://datasheet.lcsc.com/lcsc/2112221030_SOFNG-TF-015_C113206.pdf" (id 3) (at 0 0 0)
  424. (effects (font (size 1.27 1.27)) hide)
  425. )
  426. (property "ki_keywords" "connector SD microsd" (id 4) (at 0 0 0)
  427. (effects (font (size 1.27 1.27)) hide)
  428. )
  429. (property "ki_description" "Micro SD Card Socket" (id 5) (at 0 0 0)
  430. (effects (font (size 1.27 1.27)) hide)
  431. )
  432. (property "ki_fp_filters" "microSD*" (id 6) (at 0 0 0)
  433. (effects (font (size 1.27 1.27)) hide)
  434. )
  435. (symbol "Micro_SD_Card TF015_0_0"
  436. (pin output line (at -21.59 -12.7 0) (length 2.54)
  437. (name "CD" (effects (font (size 1.27 1.27))))
  438. (number "9" (effects (font (size 1.27 1.27))))
  439. )
  440. )
  441. (symbol "Micro_SD_Card TF015_0_1"
  442. (rectangle (start -7.62 -9.525) (end -5.08 -10.795)
  443. (stroke (width 0) (type default) (color 0 0 0 0))
  444. (fill (type outline))
  445. )
  446. (rectangle (start -7.62 -6.985) (end -5.08 -8.255)
  447. (stroke (width 0) (type default) (color 0 0 0 0))
  448. (fill (type outline))
  449. )
  450. (rectangle (start -7.62 -4.445) (end -5.08 -5.715)
  451. (stroke (width 0) (type default) (color 0 0 0 0))
  452. (fill (type outline))
  453. )
  454. (rectangle (start -7.62 -1.905) (end -5.08 -3.175)
  455. (stroke (width 0) (type default) (color 0 0 0 0))
  456. (fill (type outline))
  457. )
  458. (rectangle (start -7.62 0.635) (end -5.08 -0.635)
  459. (stroke (width 0) (type default) (color 0 0 0 0))
  460. (fill (type outline))
  461. )
  462. (rectangle (start -7.62 3.175) (end -5.08 1.905)
  463. (stroke (width 0) (type default) (color 0 0 0 0))
  464. (fill (type outline))
  465. )
  466. (rectangle (start -7.62 5.715) (end -5.08 4.445)
  467. (stroke (width 0) (type default) (color 0 0 0 0))
  468. (fill (type outline))
  469. )
  470. (rectangle (start -7.62 8.255) (end -5.08 6.985)
  471. (stroke (width 0) (type default) (color 0 0 0 0))
  472. (fill (type outline))
  473. )
  474. (polyline
  475. (pts
  476. (xy 16.51 12.7)
  477. (xy 16.51 13.97)
  478. (xy -19.05 13.97)
  479. (xy -19.05 -16.51)
  480. (xy 16.51 -16.51)
  481. (xy 16.51 -11.43)
  482. )
  483. (stroke (width 0.254) (type default) (color 0 0 0 0))
  484. (fill (type none))
  485. )
  486. (polyline
  487. (pts
  488. (xy -8.89 -11.43)
  489. (xy -8.89 8.89)
  490. (xy -1.27 8.89)
  491. (xy 2.54 12.7)
  492. (xy 3.81 12.7)
  493. (xy 3.81 11.43)
  494. (xy 6.35 11.43)
  495. (xy 7.62 12.7)
  496. (xy 20.32 12.7)
  497. (xy 20.32 -11.43)
  498. (xy -8.89 -11.43)
  499. )
  500. (stroke (width 0.254) (type default) (color 0 0 0 0))
  501. (fill (type background))
  502. )
  503. )
  504. (symbol "Micro_SD_Card TF015_1_1"
  505. (pin bidirectional line (at -22.86 7.62 0) (length 3.81)
  506. (name "DAT2" (effects (font (size 1.27 1.27))))
  507. (number "1" (effects (font (size 1.27 1.27))))
  508. )
  509. (pin passive line (at 20.32 -15.24 180) (length 3.81)
  510. (name "SHIELD" (effects (font (size 1.27 1.27))))
  511. (number "10" (effects (font (size 1.27 1.27))))
  512. )
  513. (pin bidirectional line (at -22.86 5.08 0) (length 3.81)
  514. (name "DAT3/CD" (effects (font (size 1.27 1.27))))
  515. (number "2" (effects (font (size 1.27 1.27))))
  516. )
  517. (pin input line (at -22.86 2.54 0) (length 3.81)
  518. (name "CMD" (effects (font (size 1.27 1.27))))
  519. (number "3" (effects (font (size 1.27 1.27))))
  520. )
  521. (pin power_in line (at -22.86 0 0) (length 3.81)
  522. (name "VDD" (effects (font (size 1.27 1.27))))
  523. (number "4" (effects (font (size 1.27 1.27))))
  524. )
  525. (pin input line (at -22.86 -2.54 0) (length 3.81)
  526. (name "CLK" (effects (font (size 1.27 1.27))))
  527. (number "5" (effects (font (size 1.27 1.27))))
  528. )
  529. (pin power_in line (at -22.86 -5.08 0) (length 3.81)
  530. (name "VSS" (effects (font (size 1.27 1.27))))
  531. (number "6" (effects (font (size 1.27 1.27))))
  532. )
  533. (pin bidirectional line (at -22.86 -7.62 0) (length 3.81)
  534. (name "DAT0" (effects (font (size 1.27 1.27))))
  535. (number "7" (effects (font (size 1.27 1.27))))
  536. )
  537. (pin bidirectional line (at -22.86 -10.16 0) (length 3.81)
  538. (name "DAT1" (effects (font (size 1.27 1.27))))
  539. (number "8" (effects (font (size 1.27 1.27))))
  540. )
  541. )
  542. )
  543. (symbol "BlackSASI:UCC5606" (in_bom yes) (on_board yes)
  544. (property "Reference" "U" (id 0) (at -12.7 19.05 0)
  545. (effects (font (size 1.27 1.27)))
  546. )
  547. (property "Value" "UCC5606" (id 1) (at 10.16 17.78 0)
  548. (effects (font (size 1.27 1.27)))
  549. )
  550. (property "Footprint" "Package_SO:TSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm" (id 2) (at 7.62 -36.83 0)
  551. (effects (font (size 1.27 1.27)) hide)
  552. )
  553. (property "Datasheet" "https://www.ti.com/lit/ds/slus347a/slus347a.pdf" (id 3) (at 7.62 -34.29 0)
  554. (effects (font (size 1.27 1.27)) hide)
  555. )
  556. (symbol "UCC5606_0_0"
  557. (pin output line (at -16.51 -2.54 0) (length 2.54)
  558. (name "D7" (effects (font (size 1.27 1.27))))
  559. (number "1" (effects (font (size 1.27 1.27))))
  560. )
  561. (pin input line (at -16.51 -12.7 0) (length 2.54)
  562. (name "~{DISCNCT}" (effects (font (size 1.27 1.27))))
  563. (number "10" (effects (font (size 1.27 1.27))))
  564. )
  565. (pin output line (at -16.51 12.7 0) (length 2.54)
  566. (name "D1" (effects (font (size 1.27 1.27))))
  567. (number "11" (effects (font (size 1.27 1.27))))
  568. )
  569. (pin output line (at -16.51 10.16 0) (length 2.54)
  570. (name "D2" (effects (font (size 1.27 1.27))))
  571. (number "12" (effects (font (size 1.27 1.27))))
  572. )
  573. (pin output line (at -16.51 7.62 0) (length 2.54)
  574. (name "D3" (effects (font (size 1.27 1.27))))
  575. (number "13" (effects (font (size 1.27 1.27))))
  576. )
  577. (pin output line (at -16.51 5.08 0) (length 2.54)
  578. (name "D4" (effects (font (size 1.27 1.27))))
  579. (number "14" (effects (font (size 1.27 1.27))))
  580. )
  581. (pin power_in line (at 1.27 19.05 270) (length 2.54)
  582. (name "TRMPWR" (effects (font (size 1.27 1.27))))
  583. (number "15" (effects (font (size 1.27 1.27))))
  584. )
  585. (pin power_in line (at -1.27 19.05 270) (length 2.54)
  586. (name "TRMPWR" (effects (font (size 1.27 1.27))))
  587. (number "16" (effects (font (size 1.27 1.27))))
  588. )
  589. (pin power_in line (at 1.27 -22.86 90) (length 2.54)
  590. (name "GND" (effects (font (size 1.27 1.27))))
  591. (number "17" (effects (font (size 1.27 1.27))))
  592. )
  593. (pin power_in line (at 3.81 -22.86 90) (length 2.54)
  594. (name "GND" (effects (font (size 1.27 1.27))))
  595. (number "18" (effects (font (size 1.27 1.27))))
  596. )
  597. (pin power_in line (at 6.35 -22.86 90) (length 2.54)
  598. (name "GND" (effects (font (size 1.27 1.27))))
  599. (number "19" (effects (font (size 1.27 1.27))))
  600. )
  601. (pin output line (at -16.51 -5.08 0) (length 2.54)
  602. (name "D8" (effects (font (size 1.27 1.27))))
  603. (number "2" (effects (font (size 1.27 1.27))))
  604. )
  605. (pin power_in line (at 8.89 -22.86 90) (length 2.54)
  606. (name "GND" (effects (font (size 1.27 1.27))))
  607. (number "20" (effects (font (size 1.27 1.27))))
  608. )
  609. (pin power_out line (at 16.51 11.43 180) (length 2.54)
  610. (name "REG" (effects (font (size 1.27 1.27))))
  611. (number "21" (effects (font (size 1.27 1.27))))
  612. )
  613. (pin power_out line (at 16.51 8.89 180) (length 2.54)
  614. (name "REG" (effects (font (size 1.27 1.27))))
  615. (number "22" (effects (font (size 1.27 1.27))))
  616. )
  617. (pin output line (at -16.51 2.54 0) (length 2.54)
  618. (name "D5" (effects (font (size 1.27 1.27))))
  619. (number "23" (effects (font (size 1.27 1.27))))
  620. )
  621. (pin output line (at -16.51 0 0) (length 2.54)
  622. (name "D6" (effects (font (size 1.27 1.27))))
  623. (number "24" (effects (font (size 1.27 1.27))))
  624. )
  625. (pin power_in line (at 11.43 -22.86 90) (length 2.54)
  626. (name "GND" (effects (font (size 1.27 1.27))))
  627. (number "25" (effects (font (size 1.27 1.27))))
  628. )
  629. (pin output line (at -16.51 -7.62 0) (length 2.54)
  630. (name "D9" (effects (font (size 1.27 1.27))))
  631. (number "3" (effects (font (size 1.27 1.27))))
  632. )
  633. (pin no_connect line (at 13.97 -13.97 0) (length 2.54)
  634. (name "N/C" (effects (font (size 1.27 1.27))))
  635. (number "4" (effects (font (size 1.27 1.27))))
  636. )
  637. (pin power_in line (at -11.43 -22.86 90) (length 2.54)
  638. (name "SGND" (effects (font (size 1.27 1.27))))
  639. (number "5" (effects (font (size 1.27 1.27))))
  640. )
  641. (pin power_in line (at -8.89 -22.86 90) (length 2.54)
  642. (name "GND" (effects (font (size 1.27 1.27))))
  643. (number "6" (effects (font (size 1.27 1.27))))
  644. )
  645. (pin power_in line (at -6.35 -22.86 90) (length 2.54)
  646. (name "GND" (effects (font (size 1.27 1.27))))
  647. (number "7" (effects (font (size 1.27 1.27))))
  648. )
  649. (pin power_in line (at -3.81 -22.86 90) (length 2.54)
  650. (name "GND" (effects (font (size 1.27 1.27))))
  651. (number "8" (effects (font (size 1.27 1.27))))
  652. )
  653. (pin power_in line (at -1.27 -22.86 90) (length 2.54)
  654. (name "GND" (effects (font (size 1.27 1.27))))
  655. (number "9" (effects (font (size 1.27 1.27))))
  656. )
  657. )
  658. (symbol "UCC5606_0_1"
  659. (rectangle (start -13.97 16.51) (end 13.97 -20.32)
  660. (stroke (width 0) (type default) (color 0 0 0 0))
  661. (fill (type background))
  662. )
  663. )
  664. )
  665. (symbol "Connector:Conn_01x02_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  666. (property "Reference" "J" (id 0) (at 0 2.54 0)
  667. (effects (font (size 1.27 1.27)))
  668. )
  669. (property "Value" "Conn_01x02_Female" (id 1) (at 0 -5.08 0)
  670. (effects (font (size 1.27 1.27)))
  671. )
  672. (property "Footprint" "" (id 2) (at 0 0 0)
  673. (effects (font (size 1.27 1.27)) hide)
  674. )
  675. (property "Datasheet" "~" (id 3) (at 0 0 0)
  676. (effects (font (size 1.27 1.27)) hide)
  677. )
  678. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  679. (effects (font (size 1.27 1.27)) hide)
  680. )
  681. (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  682. (effects (font (size 1.27 1.27)) hide)
  683. )
  684. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  685. (effects (font (size 1.27 1.27)) hide)
  686. )
  687. (symbol "Conn_01x02_Female_1_1"
  688. (arc (start 0 -2.032) (mid -0.508 -2.54) (end 0 -3.048)
  689. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  690. (fill (type none))
  691. )
  692. (polyline
  693. (pts
  694. (xy -1.27 -2.54)
  695. (xy -0.508 -2.54)
  696. )
  697. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  698. (fill (type none))
  699. )
  700. (polyline
  701. (pts
  702. (xy -1.27 0)
  703. (xy -0.508 0)
  704. )
  705. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  706. (fill (type none))
  707. )
  708. (arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508)
  709. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  710. (fill (type none))
  711. )
  712. (pin passive line (at -5.08 0 0) (length 3.81)
  713. (name "Pin_1" (effects (font (size 1.27 1.27))))
  714. (number "1" (effects (font (size 1.27 1.27))))
  715. )
  716. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  717. (name "Pin_2" (effects (font (size 1.27 1.27))))
  718. (number "2" (effects (font (size 1.27 1.27))))
  719. )
  720. )
  721. )
  722. (symbol "Connector:Conn_01x04_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  723. (property "Reference" "J" (id 0) (at 0 5.08 0)
  724. (effects (font (size 1.27 1.27)))
  725. )
  726. (property "Value" "Conn_01x04_Male" (id 1) (at 0 -7.62 0)
  727. (effects (font (size 1.27 1.27)))
  728. )
  729. (property "Footprint" "" (id 2) (at 0 0 0)
  730. (effects (font (size 1.27 1.27)) hide)
  731. )
  732. (property "Datasheet" "~" (id 3) (at 0 0 0)
  733. (effects (font (size 1.27 1.27)) hide)
  734. )
  735. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  736. (effects (font (size 1.27 1.27)) hide)
  737. )
  738. (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  739. (effects (font (size 1.27 1.27)) hide)
  740. )
  741. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  742. (effects (font (size 1.27 1.27)) hide)
  743. )
  744. (symbol "Conn_01x04_Male_1_1"
  745. (polyline
  746. (pts
  747. (xy 1.27 -5.08)
  748. (xy 0.8636 -5.08)
  749. )
  750. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  751. (fill (type none))
  752. )
  753. (polyline
  754. (pts
  755. (xy 1.27 -2.54)
  756. (xy 0.8636 -2.54)
  757. )
  758. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  759. (fill (type none))
  760. )
  761. (polyline
  762. (pts
  763. (xy 1.27 0)
  764. (xy 0.8636 0)
  765. )
  766. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  767. (fill (type none))
  768. )
  769. (polyline
  770. (pts
  771. (xy 1.27 2.54)
  772. (xy 0.8636 2.54)
  773. )
  774. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  775. (fill (type none))
  776. )
  777. (rectangle (start 0.8636 -4.953) (end 0 -5.207)
  778. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  779. (fill (type outline))
  780. )
  781. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  782. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  783. (fill (type outline))
  784. )
  785. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  786. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  787. (fill (type outline))
  788. )
  789. (rectangle (start 0.8636 2.667) (end 0 2.413)
  790. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  791. (fill (type outline))
  792. )
  793. (pin passive line (at 5.08 2.54 180) (length 3.81)
  794. (name "Pin_1" (effects (font (size 1.27 1.27))))
  795. (number "1" (effects (font (size 1.27 1.27))))
  796. )
  797. (pin passive line (at 5.08 0 180) (length 3.81)
  798. (name "Pin_2" (effects (font (size 1.27 1.27))))
  799. (number "2" (effects (font (size 1.27 1.27))))
  800. )
  801. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  802. (name "Pin_3" (effects (font (size 1.27 1.27))))
  803. (number "3" (effects (font (size 1.27 1.27))))
  804. )
  805. (pin passive line (at 5.08 -5.08 180) (length 3.81)
  806. (name "Pin_4" (effects (font (size 1.27 1.27))))
  807. (number "4" (effects (font (size 1.27 1.27))))
  808. )
  809. )
  810. )
  811. (symbol "Connector_Generic:Conn_02x03_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  812. (property "Reference" "J" (id 0) (at 1.27 5.08 0)
  813. (effects (font (size 1.27 1.27)))
  814. )
  815. (property "Value" "Conn_02x03_Odd_Even" (id 1) (at 1.27 -5.08 0)
  816. (effects (font (size 1.27 1.27)))
  817. )
  818. (property "Footprint" "" (id 2) (at 0 0 0)
  819. (effects (font (size 1.27 1.27)) hide)
  820. )
  821. (property "Datasheet" "~" (id 3) (at 0 0 0)
  822. (effects (font (size 1.27 1.27)) hide)
  823. )
  824. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  825. (effects (font (size 1.27 1.27)) hide)
  826. )
  827. (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)
  828. (effects (font (size 1.27 1.27)) hide)
  829. )
  830. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  831. (effects (font (size 1.27 1.27)) hide)
  832. )
  833. (symbol "Conn_02x03_Odd_Even_1_1"
  834. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  835. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  836. (fill (type none))
  837. )
  838. (rectangle (start -1.27 0.127) (end 0 -0.127)
  839. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  840. (fill (type none))
  841. )
  842. (rectangle (start -1.27 2.667) (end 0 2.413)
  843. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  844. (fill (type none))
  845. )
  846. (rectangle (start -1.27 3.81) (end 3.81 -3.81)
  847. (stroke (width 0.254) (type default) (color 0 0 0 0))
  848. (fill (type background))
  849. )
  850. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  851. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  852. (fill (type none))
  853. )
  854. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  855. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  856. (fill (type none))
  857. )
  858. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  859. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  860. (fill (type none))
  861. )
  862. (pin passive line (at -5.08 2.54 0) (length 3.81)
  863. (name "Pin_1" (effects (font (size 1.27 1.27))))
  864. (number "1" (effects (font (size 1.27 1.27))))
  865. )
  866. (pin passive line (at 7.62 2.54 180) (length 3.81)
  867. (name "Pin_2" (effects (font (size 1.27 1.27))))
  868. (number "2" (effects (font (size 1.27 1.27))))
  869. )
  870. (pin passive line (at -5.08 0 0) (length 3.81)
  871. (name "Pin_3" (effects (font (size 1.27 1.27))))
  872. (number "3" (effects (font (size 1.27 1.27))))
  873. )
  874. (pin passive line (at 7.62 0 180) (length 3.81)
  875. (name "Pin_4" (effects (font (size 1.27 1.27))))
  876. (number "4" (effects (font (size 1.27 1.27))))
  877. )
  878. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  879. (name "Pin_5" (effects (font (size 1.27 1.27))))
  880. (number "5" (effects (font (size 1.27 1.27))))
  881. )
  882. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  883. (name "Pin_6" (effects (font (size 1.27 1.27))))
  884. (number "6" (effects (font (size 1.27 1.27))))
  885. )
  886. )
  887. )
  888. (symbol "Connector_Generic:Conn_02x25_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  889. (property "Reference" "J" (id 0) (at 1.27 33.02 0)
  890. (effects (font (size 1.27 1.27)))
  891. )
  892. (property "Value" "Conn_02x25_Odd_Even" (id 1) (at 1.27 -33.02 0)
  893. (effects (font (size 1.27 1.27)))
  894. )
  895. (property "Footprint" "" (id 2) (at 0 0 0)
  896. (effects (font (size 1.27 1.27)) hide)
  897. )
  898. (property "Datasheet" "~" (id 3) (at 0 0 0)
  899. (effects (font (size 1.27 1.27)) hide)
  900. )
  901. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  902. (effects (font (size 1.27 1.27)) hide)
  903. )
  904. (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)
  905. (effects (font (size 1.27 1.27)) hide)
  906. )
  907. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  908. (effects (font (size 1.27 1.27)) hide)
  909. )
  910. (symbol "Conn_02x25_Odd_Even_1_1"
  911. (rectangle (start -1.27 -30.353) (end 0 -30.607)
  912. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  913. (fill (type none))
  914. )
  915. (rectangle (start -1.27 -27.813) (end 0 -28.067)
  916. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  917. (fill (type none))
  918. )
  919. (rectangle (start -1.27 -25.273) (end 0 -25.527)
  920. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  921. (fill (type none))
  922. )
  923. (rectangle (start -1.27 -22.733) (end 0 -22.987)
  924. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  925. (fill (type none))
  926. )
  927. (rectangle (start -1.27 -20.193) (end 0 -20.447)
  928. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  929. (fill (type none))
  930. )
  931. (rectangle (start -1.27 -17.653) (end 0 -17.907)
  932. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  933. (fill (type none))
  934. )
  935. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  936. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  937. (fill (type none))
  938. )
  939. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  940. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  941. (fill (type none))
  942. )
  943. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  944. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  945. (fill (type none))
  946. )
  947. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  948. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  949. (fill (type none))
  950. )
  951. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  952. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  953. (fill (type none))
  954. )
  955. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  956. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  957. (fill (type none))
  958. )
  959. (rectangle (start -1.27 0.127) (end 0 -0.127)
  960. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  961. (fill (type none))
  962. )
  963. (rectangle (start -1.27 2.667) (end 0 2.413)
  964. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  965. (fill (type none))
  966. )
  967. (rectangle (start -1.27 5.207) (end 0 4.953)
  968. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  969. (fill (type none))
  970. )
  971. (rectangle (start -1.27 7.747) (end 0 7.493)
  972. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  973. (fill (type none))
  974. )
  975. (rectangle (start -1.27 10.287) (end 0 10.033)
  976. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  977. (fill (type none))
  978. )
  979. (rectangle (start -1.27 12.827) (end 0 12.573)
  980. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  981. (fill (type none))
  982. )
  983. (rectangle (start -1.27 15.367) (end 0 15.113)
  984. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  985. (fill (type none))
  986. )
  987. (rectangle (start -1.27 17.907) (end 0 17.653)
  988. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  989. (fill (type none))
  990. )
  991. (rectangle (start -1.27 20.447) (end 0 20.193)
  992. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  993. (fill (type none))
  994. )
  995. (rectangle (start -1.27 22.987) (end 0 22.733)
  996. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  997. (fill (type none))
  998. )
  999. (rectangle (start -1.27 25.527) (end 0 25.273)
  1000. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1001. (fill (type none))
  1002. )
  1003. (rectangle (start -1.27 28.067) (end 0 27.813)
  1004. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1005. (fill (type none))
  1006. )
  1007. (rectangle (start -1.27 30.607) (end 0 30.353)
  1008. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1009. (fill (type none))
  1010. )
  1011. (rectangle (start -1.27 31.75) (end 3.81 -31.75)
  1012. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1013. (fill (type background))
  1014. )
  1015. (rectangle (start 3.81 -30.353) (end 2.54 -30.607)
  1016. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1017. (fill (type none))
  1018. )
  1019. (rectangle (start 3.81 -27.813) (end 2.54 -28.067)
  1020. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1021. (fill (type none))
  1022. )
  1023. (rectangle (start 3.81 -25.273) (end 2.54 -25.527)
  1024. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1025. (fill (type none))
  1026. )
  1027. (rectangle (start 3.81 -22.733) (end 2.54 -22.987)
  1028. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1029. (fill (type none))
  1030. )
  1031. (rectangle (start 3.81 -20.193) (end 2.54 -20.447)
  1032. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1033. (fill (type none))
  1034. )
  1035. (rectangle (start 3.81 -17.653) (end 2.54 -17.907)
  1036. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1037. (fill (type none))
  1038. )
  1039. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  1040. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1041. (fill (type none))
  1042. )
  1043. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  1044. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1045. (fill (type none))
  1046. )
  1047. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  1048. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1049. (fill (type none))
  1050. )
  1051. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  1052. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1053. (fill (type none))
  1054. )
  1055. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  1056. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1057. (fill (type none))
  1058. )
  1059. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  1060. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1061. (fill (type none))
  1062. )
  1063. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  1064. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1065. (fill (type none))
  1066. )
  1067. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  1068. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1069. (fill (type none))
  1070. )
  1071. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  1072. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1073. (fill (type none))
  1074. )
  1075. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  1076. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1077. (fill (type none))
  1078. )
  1079. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  1080. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1081. (fill (type none))
  1082. )
  1083. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  1084. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1085. (fill (type none))
  1086. )
  1087. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  1088. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1089. (fill (type none))
  1090. )
  1091. (rectangle (start 3.81 17.907) (end 2.54 17.653)
  1092. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1093. (fill (type none))
  1094. )
  1095. (rectangle (start 3.81 20.447) (end 2.54 20.193)
  1096. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1097. (fill (type none))
  1098. )
  1099. (rectangle (start 3.81 22.987) (end 2.54 22.733)
  1100. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1101. (fill (type none))
  1102. )
  1103. (rectangle (start 3.81 25.527) (end 2.54 25.273)
  1104. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1105. (fill (type none))
  1106. )
  1107. (rectangle (start 3.81 28.067) (end 2.54 27.813)
  1108. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1109. (fill (type none))
  1110. )
  1111. (rectangle (start 3.81 30.607) (end 2.54 30.353)
  1112. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1113. (fill (type none))
  1114. )
  1115. (pin passive line (at -5.08 30.48 0) (length 3.81)
  1116. (name "Pin_1" (effects (font (size 1.27 1.27))))
  1117. (number "1" (effects (font (size 1.27 1.27))))
  1118. )
  1119. (pin passive line (at 7.62 20.32 180) (length 3.81)
  1120. (name "Pin_10" (effects (font (size 1.27 1.27))))
  1121. (number "10" (effects (font (size 1.27 1.27))))
  1122. )
  1123. (pin passive line (at -5.08 17.78 0) (length 3.81)
  1124. (name "Pin_11" (effects (font (size 1.27 1.27))))
  1125. (number "11" (effects (font (size 1.27 1.27))))
  1126. )
  1127. (pin passive line (at 7.62 17.78 180) (length 3.81)
  1128. (name "Pin_12" (effects (font (size 1.27 1.27))))
  1129. (number "12" (effects (font (size 1.27 1.27))))
  1130. )
  1131. (pin passive line (at -5.08 15.24 0) (length 3.81)
  1132. (name "Pin_13" (effects (font (size 1.27 1.27))))
  1133. (number "13" (effects (font (size 1.27 1.27))))
  1134. )
  1135. (pin passive line (at 7.62 15.24 180) (length 3.81)
  1136. (name "Pin_14" (effects (font (size 1.27 1.27))))
  1137. (number "14" (effects (font (size 1.27 1.27))))
  1138. )
  1139. (pin passive line (at -5.08 12.7 0) (length 3.81)
  1140. (name "Pin_15" (effects (font (size 1.27 1.27))))
  1141. (number "15" (effects (font (size 1.27 1.27))))
  1142. )
  1143. (pin passive line (at 7.62 12.7 180) (length 3.81)
  1144. (name "Pin_16" (effects (font (size 1.27 1.27))))
  1145. (number "16" (effects (font (size 1.27 1.27))))
  1146. )
  1147. (pin passive line (at -5.08 10.16 0) (length 3.81)
  1148. (name "Pin_17" (effects (font (size 1.27 1.27))))
  1149. (number "17" (effects (font (size 1.27 1.27))))
  1150. )
  1151. (pin passive line (at 7.62 10.16 180) (length 3.81)
  1152. (name "Pin_18" (effects (font (size 1.27 1.27))))
  1153. (number "18" (effects (font (size 1.27 1.27))))
  1154. )
  1155. (pin passive line (at -5.08 7.62 0) (length 3.81)
  1156. (name "Pin_19" (effects (font (size 1.27 1.27))))
  1157. (number "19" (effects (font (size 1.27 1.27))))
  1158. )
  1159. (pin passive line (at 7.62 30.48 180) (length 3.81)
  1160. (name "Pin_2" (effects (font (size 1.27 1.27))))
  1161. (number "2" (effects (font (size 1.27 1.27))))
  1162. )
  1163. (pin passive line (at 7.62 7.62 180) (length 3.81)
  1164. (name "Pin_20" (effects (font (size 1.27 1.27))))
  1165. (number "20" (effects (font (size 1.27 1.27))))
  1166. )
  1167. (pin passive line (at -5.08 5.08 0) (length 3.81)
  1168. (name "Pin_21" (effects (font (size 1.27 1.27))))
  1169. (number "21" (effects (font (size 1.27 1.27))))
  1170. )
  1171. (pin passive line (at 7.62 5.08 180) (length 3.81)
  1172. (name "Pin_22" (effects (font (size 1.27 1.27))))
  1173. (number "22" (effects (font (size 1.27 1.27))))
  1174. )
  1175. (pin passive line (at -5.08 2.54 0) (length 3.81)
  1176. (name "Pin_23" (effects (font (size 1.27 1.27))))
  1177. (number "23" (effects (font (size 1.27 1.27))))
  1178. )
  1179. (pin passive line (at 7.62 2.54 180) (length 3.81)
  1180. (name "Pin_24" (effects (font (size 1.27 1.27))))
  1181. (number "24" (effects (font (size 1.27 1.27))))
  1182. )
  1183. (pin passive line (at -5.08 0 0) (length 3.81)
  1184. (name "Pin_25" (effects (font (size 1.27 1.27))))
  1185. (number "25" (effects (font (size 1.27 1.27))))
  1186. )
  1187. (pin passive line (at 7.62 0 180) (length 3.81)
  1188. (name "Pin_26" (effects (font (size 1.27 1.27))))
  1189. (number "26" (effects (font (size 1.27 1.27))))
  1190. )
  1191. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  1192. (name "Pin_27" (effects (font (size 1.27 1.27))))
  1193. (number "27" (effects (font (size 1.27 1.27))))
  1194. )
  1195. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  1196. (name "Pin_28" (effects (font (size 1.27 1.27))))
  1197. (number "28" (effects (font (size 1.27 1.27))))
  1198. )
  1199. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  1200. (name "Pin_29" (effects (font (size 1.27 1.27))))
  1201. (number "29" (effects (font (size 1.27 1.27))))
  1202. )
  1203. (pin passive line (at -5.08 27.94 0) (length 3.81)
  1204. (name "Pin_3" (effects (font (size 1.27 1.27))))
  1205. (number "3" (effects (font (size 1.27 1.27))))
  1206. )
  1207. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  1208. (name "Pin_30" (effects (font (size 1.27 1.27))))
  1209. (number "30" (effects (font (size 1.27 1.27))))
  1210. )
  1211. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  1212. (name "Pin_31" (effects (font (size 1.27 1.27))))
  1213. (number "31" (effects (font (size 1.27 1.27))))
  1214. )
  1215. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  1216. (name "Pin_32" (effects (font (size 1.27 1.27))))
  1217. (number "32" (effects (font (size 1.27 1.27))))
  1218. )
  1219. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  1220. (name "Pin_33" (effects (font (size 1.27 1.27))))
  1221. (number "33" (effects (font (size 1.27 1.27))))
  1222. )
  1223. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  1224. (name "Pin_34" (effects (font (size 1.27 1.27))))
  1225. (number "34" (effects (font (size 1.27 1.27))))
  1226. )
  1227. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  1228. (name "Pin_35" (effects (font (size 1.27 1.27))))
  1229. (number "35" (effects (font (size 1.27 1.27))))
  1230. )
  1231. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  1232. (name "Pin_36" (effects (font (size 1.27 1.27))))
  1233. (number "36" (effects (font (size 1.27 1.27))))
  1234. )
  1235. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  1236. (name "Pin_37" (effects (font (size 1.27 1.27))))
  1237. (number "37" (effects (font (size 1.27 1.27))))
  1238. )
  1239. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  1240. (name "Pin_38" (effects (font (size 1.27 1.27))))
  1241. (number "38" (effects (font (size 1.27 1.27))))
  1242. )
  1243. (pin passive line (at -5.08 -17.78 0) (length 3.81)
  1244. (name "Pin_39" (effects (font (size 1.27 1.27))))
  1245. (number "39" (effects (font (size 1.27 1.27))))
  1246. )
  1247. (pin passive line (at 7.62 27.94 180) (length 3.81)
  1248. (name "Pin_4" (effects (font (size 1.27 1.27))))
  1249. (number "4" (effects (font (size 1.27 1.27))))
  1250. )
  1251. (pin passive line (at 7.62 -17.78 180) (length 3.81)
  1252. (name "Pin_40" (effects (font (size 1.27 1.27))))
  1253. (number "40" (effects (font (size 1.27 1.27))))
  1254. )
  1255. (pin passive line (at -5.08 -20.32 0) (length 3.81)
  1256. (name "Pin_41" (effects (font (size 1.27 1.27))))
  1257. (number "41" (effects (font (size 1.27 1.27))))
  1258. )
  1259. (pin passive line (at 7.62 -20.32 180) (length 3.81)
  1260. (name "Pin_42" (effects (font (size 1.27 1.27))))
  1261. (number "42" (effects (font (size 1.27 1.27))))
  1262. )
  1263. (pin passive line (at -5.08 -22.86 0) (length 3.81)
  1264. (name "Pin_43" (effects (font (size 1.27 1.27))))
  1265. (number "43" (effects (font (size 1.27 1.27))))
  1266. )
  1267. (pin passive line (at 7.62 -22.86 180) (length 3.81)
  1268. (name "Pin_44" (effects (font (size 1.27 1.27))))
  1269. (number "44" (effects (font (size 1.27 1.27))))
  1270. )
  1271. (pin passive line (at -5.08 -25.4 0) (length 3.81)
  1272. (name "Pin_45" (effects (font (size 1.27 1.27))))
  1273. (number "45" (effects (font (size 1.27 1.27))))
  1274. )
  1275. (pin passive line (at 7.62 -25.4 180) (length 3.81)
  1276. (name "Pin_46" (effects (font (size 1.27 1.27))))
  1277. (number "46" (effects (font (size 1.27 1.27))))
  1278. )
  1279. (pin passive line (at -5.08 -27.94 0) (length 3.81)
  1280. (name "Pin_47" (effects (font (size 1.27 1.27))))
  1281. (number "47" (effects (font (size 1.27 1.27))))
  1282. )
  1283. (pin passive line (at 7.62 -27.94 180) (length 3.81)
  1284. (name "Pin_48" (effects (font (size 1.27 1.27))))
  1285. (number "48" (effects (font (size 1.27 1.27))))
  1286. )
  1287. (pin passive line (at -5.08 -30.48 0) (length 3.81)
  1288. (name "Pin_49" (effects (font (size 1.27 1.27))))
  1289. (number "49" (effects (font (size 1.27 1.27))))
  1290. )
  1291. (pin passive line (at -5.08 25.4 0) (length 3.81)
  1292. (name "Pin_5" (effects (font (size 1.27 1.27))))
  1293. (number "5" (effects (font (size 1.27 1.27))))
  1294. )
  1295. (pin passive line (at 7.62 -30.48 180) (length 3.81)
  1296. (name "Pin_50" (effects (font (size 1.27 1.27))))
  1297. (number "50" (effects (font (size 1.27 1.27))))
  1298. )
  1299. (pin passive line (at 7.62 25.4 180) (length 3.81)
  1300. (name "Pin_6" (effects (font (size 1.27 1.27))))
  1301. (number "6" (effects (font (size 1.27 1.27))))
  1302. )
  1303. (pin passive line (at -5.08 22.86 0) (length 3.81)
  1304. (name "Pin_7" (effects (font (size 1.27 1.27))))
  1305. (number "7" (effects (font (size 1.27 1.27))))
  1306. )
  1307. (pin passive line (at 7.62 22.86 180) (length 3.81)
  1308. (name "Pin_8" (effects (font (size 1.27 1.27))))
  1309. (number "8" (effects (font (size 1.27 1.27))))
  1310. )
  1311. (pin passive line (at -5.08 20.32 0) (length 3.81)
  1312. (name "Pin_9" (effects (font (size 1.27 1.27))))
  1313. (number "9" (effects (font (size 1.27 1.27))))
  1314. )
  1315. )
  1316. )
  1317. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1318. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  1319. (effects (font (size 1.27 1.27)) (justify left))
  1320. )
  1321. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  1322. (effects (font (size 1.27 1.27)) (justify left))
  1323. )
  1324. (property "Footprint" "" (id 2) (at 0 0 0)
  1325. (effects (font (size 1.27 1.27)) hide)
  1326. )
  1327. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1328. (effects (font (size 1.27 1.27)) hide)
  1329. )
  1330. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  1331. (effects (font (size 1.27 1.27)) hide)
  1332. )
  1333. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  1334. (effects (font (size 1.27 1.27)) hide)
  1335. )
  1336. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  1337. (effects (font (size 1.27 1.27)) hide)
  1338. )
  1339. (symbol "C_Small_0_1"
  1340. (polyline
  1341. (pts
  1342. (xy -1.524 -0.508)
  1343. (xy 1.524 -0.508)
  1344. )
  1345. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  1346. (fill (type none))
  1347. )
  1348. (polyline
  1349. (pts
  1350. (xy -1.524 0.508)
  1351. (xy 1.524 0.508)
  1352. )
  1353. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  1354. (fill (type none))
  1355. )
  1356. )
  1357. (symbol "C_Small_1_1"
  1358. (pin passive line (at 0 2.54 270) (length 2.032)
  1359. (name "~" (effects (font (size 1.27 1.27))))
  1360. (number "1" (effects (font (size 1.27 1.27))))
  1361. )
  1362. (pin passive line (at 0 -2.54 90) (length 2.032)
  1363. (name "~" (effects (font (size 1.27 1.27))))
  1364. (number "2" (effects (font (size 1.27 1.27))))
  1365. )
  1366. )
  1367. )
  1368. (symbol "Device:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1369. (property "Reference" "Y" (id 0) (at 0 3.81 0)
  1370. (effects (font (size 1.27 1.27)))
  1371. )
  1372. (property "Value" "Crystal" (id 1) (at 0 -3.81 0)
  1373. (effects (font (size 1.27 1.27)))
  1374. )
  1375. (property "Footprint" "" (id 2) (at 0 0 0)
  1376. (effects (font (size 1.27 1.27)) hide)
  1377. )
  1378. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1379. (effects (font (size 1.27 1.27)) hide)
  1380. )
  1381. (property "ki_keywords" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
  1382. (effects (font (size 1.27 1.27)) hide)
  1383. )
  1384. (property "ki_description" "Two pin crystal" (id 5) (at 0 0 0)
  1385. (effects (font (size 1.27 1.27)) hide)
  1386. )
  1387. (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
  1388. (effects (font (size 1.27 1.27)) hide)
  1389. )
  1390. (symbol "Crystal_0_1"
  1391. (rectangle (start -1.143 2.54) (end 1.143 -2.54)
  1392. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  1393. (fill (type none))
  1394. )
  1395. (polyline
  1396. (pts
  1397. (xy -2.54 0)
  1398. (xy -1.905 0)
  1399. )
  1400. (stroke (width 0) (type default) (color 0 0 0 0))
  1401. (fill (type none))
  1402. )
  1403. (polyline
  1404. (pts
  1405. (xy -1.905 -1.27)
  1406. (xy -1.905 1.27)
  1407. )
  1408. (stroke (width 0.508) (type default) (color 0 0 0 0))
  1409. (fill (type none))
  1410. )
  1411. (polyline
  1412. (pts
  1413. (xy 1.905 -1.27)
  1414. (xy 1.905 1.27)
  1415. )
  1416. (stroke (width 0.508) (type default) (color 0 0 0 0))
  1417. (fill (type none))
  1418. )
  1419. (polyline
  1420. (pts
  1421. (xy 2.54 0)
  1422. (xy 1.905 0)
  1423. )
  1424. (stroke (width 0) (type default) (color 0 0 0 0))
  1425. (fill (type none))
  1426. )
  1427. )
  1428. (symbol "Crystal_1_1"
  1429. (pin passive line (at -3.81 0 0) (length 1.27)
  1430. (name "1" (effects (font (size 1.27 1.27))))
  1431. (number "1" (effects (font (size 1.27 1.27))))
  1432. )
  1433. (pin passive line (at 3.81 0 180) (length 1.27)
  1434. (name "2" (effects (font (size 1.27 1.27))))
  1435. (number "2" (effects (font (size 1.27 1.27))))
  1436. )
  1437. )
  1438. )
  1439. (symbol "Device:Crystal_GND24" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1440. (property "Reference" "Y" (id 0) (at 3.175 5.08 0)
  1441. (effects (font (size 1.27 1.27)) (justify left))
  1442. )
  1443. (property "Value" "Crystal_GND24" (id 1) (at 3.175 3.175 0)
  1444. (effects (font (size 1.27 1.27)) (justify left))
  1445. )
  1446. (property "Footprint" "" (id 2) (at 0 0 0)
  1447. (effects (font (size 1.27 1.27)) hide)
  1448. )
  1449. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1450. (effects (font (size 1.27 1.27)) hide)
  1451. )
  1452. (property "ki_keywords" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
  1453. (effects (font (size 1.27 1.27)) hide)
  1454. )
  1455. (property "ki_description" "Four pin crystal, GND on pins 2 and 4" (id 5) (at 0 0 0)
  1456. (effects (font (size 1.27 1.27)) hide)
  1457. )
  1458. (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
  1459. (effects (font (size 1.27 1.27)) hide)
  1460. )
  1461. (symbol "Crystal_GND24_0_1"
  1462. (rectangle (start -1.143 2.54) (end 1.143 -2.54)
  1463. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  1464. (fill (type none))
  1465. )
  1466. (polyline
  1467. (pts
  1468. (xy -2.54 0)
  1469. (xy -2.032 0)
  1470. )
  1471. (stroke (width 0) (type default) (color 0 0 0 0))
  1472. (fill (type none))
  1473. )
  1474. (polyline
  1475. (pts
  1476. (xy -2.032 -1.27)
  1477. (xy -2.032 1.27)
  1478. )
  1479. (stroke (width 0.508) (type default) (color 0 0 0 0))
  1480. (fill (type none))
  1481. )
  1482. (polyline
  1483. (pts
  1484. (xy 0 -3.81)
  1485. (xy 0 -3.556)
  1486. )
  1487. (stroke (width 0) (type default) (color 0 0 0 0))
  1488. (fill (type none))
  1489. )
  1490. (polyline
  1491. (pts
  1492. (xy 0 3.556)
  1493. (xy 0 3.81)
  1494. )
  1495. (stroke (width 0) (type default) (color 0 0 0 0))
  1496. (fill (type none))
  1497. )
  1498. (polyline
  1499. (pts
  1500. (xy 2.032 -1.27)
  1501. (xy 2.032 1.27)
  1502. )
  1503. (stroke (width 0.508) (type default) (color 0 0 0 0))
  1504. (fill (type none))
  1505. )
  1506. (polyline
  1507. (pts
  1508. (xy 2.032 0)
  1509. (xy 2.54 0)
  1510. )
  1511. (stroke (width 0) (type default) (color 0 0 0 0))
  1512. (fill (type none))
  1513. )
  1514. (polyline
  1515. (pts
  1516. (xy -2.54 -2.286)
  1517. (xy -2.54 -3.556)
  1518. (xy 2.54 -3.556)
  1519. (xy 2.54 -2.286)
  1520. )
  1521. (stroke (width 0) (type default) (color 0 0 0 0))
  1522. (fill (type none))
  1523. )
  1524. (polyline
  1525. (pts
  1526. (xy -2.54 2.286)
  1527. (xy -2.54 3.556)
  1528. (xy 2.54 3.556)
  1529. (xy 2.54 2.286)
  1530. )
  1531. (stroke (width 0) (type default) (color 0 0 0 0))
  1532. (fill (type none))
  1533. )
  1534. )
  1535. (symbol "Crystal_GND24_1_1"
  1536. (pin passive line (at -3.81 0 0) (length 1.27)
  1537. (name "1" (effects (font (size 1.27 1.27))))
  1538. (number "1" (effects (font (size 1.27 1.27))))
  1539. )
  1540. (pin passive line (at 0 5.08 270) (length 1.27)
  1541. (name "2" (effects (font (size 1.27 1.27))))
  1542. (number "2" (effects (font (size 1.27 1.27))))
  1543. )
  1544. (pin passive line (at 3.81 0 180) (length 1.27)
  1545. (name "3" (effects (font (size 1.27 1.27))))
  1546. (number "3" (effects (font (size 1.27 1.27))))
  1547. )
  1548. (pin passive line (at 0 -5.08 90) (length 1.27)
  1549. (name "4" (effects (font (size 1.27 1.27))))
  1550. (number "4" (effects (font (size 1.27 1.27))))
  1551. )
  1552. )
  1553. )
  1554. (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1555. (property "Reference" "D" (id 0) (at 0 2.54 0)
  1556. (effects (font (size 1.27 1.27)))
  1557. )
  1558. (property "Value" "D_Schottky" (id 1) (at 0 -2.54 0)
  1559. (effects (font (size 1.27 1.27)))
  1560. )
  1561. (property "Footprint" "" (id 2) (at 0 0 0)
  1562. (effects (font (size 1.27 1.27)) hide)
  1563. )
  1564. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1565. (effects (font (size 1.27 1.27)) hide)
  1566. )
  1567. (property "ki_keywords" "diode Schottky" (id 4) (at 0 0 0)
  1568. (effects (font (size 1.27 1.27)) hide)
  1569. )
  1570. (property "ki_description" "Schottky diode" (id 5) (at 0 0 0)
  1571. (effects (font (size 1.27 1.27)) hide)
  1572. )
  1573. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
  1574. (effects (font (size 1.27 1.27)) hide)
  1575. )
  1576. (symbol "D_Schottky_0_1"
  1577. (polyline
  1578. (pts
  1579. (xy 1.27 0)
  1580. (xy -1.27 0)
  1581. )
  1582. (stroke (width 0) (type default) (color 0 0 0 0))
  1583. (fill (type none))
  1584. )
  1585. (polyline
  1586. (pts
  1587. (xy 1.27 1.27)
  1588. (xy 1.27 -1.27)
  1589. (xy -1.27 0)
  1590. (xy 1.27 1.27)
  1591. )
  1592. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1593. (fill (type none))
  1594. )
  1595. (polyline
  1596. (pts
  1597. (xy -1.905 0.635)
  1598. (xy -1.905 1.27)
  1599. (xy -1.27 1.27)
  1600. (xy -1.27 -1.27)
  1601. (xy -0.635 -1.27)
  1602. (xy -0.635 -0.635)
  1603. )
  1604. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1605. (fill (type none))
  1606. )
  1607. )
  1608. (symbol "D_Schottky_1_1"
  1609. (pin passive line (at -3.81 0 0) (length 2.54)
  1610. (name "K" (effects (font (size 1.27 1.27))))
  1611. (number "1" (effects (font (size 1.27 1.27))))
  1612. )
  1613. (pin passive line (at 3.81 0 180) (length 2.54)
  1614. (name "A" (effects (font (size 1.27 1.27))))
  1615. (number "2" (effects (font (size 1.27 1.27))))
  1616. )
  1617. )
  1618. )
  1619. (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1620. (property "Reference" "D" (id 0) (at 0 2.54 0)
  1621. (effects (font (size 1.27 1.27)))
  1622. )
  1623. (property "Value" "LED" (id 1) (at 0 -2.54 0)
  1624. (effects (font (size 1.27 1.27)))
  1625. )
  1626. (property "Footprint" "" (id 2) (at 0 0 0)
  1627. (effects (font (size 1.27 1.27)) hide)
  1628. )
  1629. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1630. (effects (font (size 1.27 1.27)) hide)
  1631. )
  1632. (property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
  1633. (effects (font (size 1.27 1.27)) hide)
  1634. )
  1635. (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
  1636. (effects (font (size 1.27 1.27)) hide)
  1637. )
  1638. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
  1639. (effects (font (size 1.27 1.27)) hide)
  1640. )
  1641. (symbol "LED_0_1"
  1642. (polyline
  1643. (pts
  1644. (xy -1.27 -1.27)
  1645. (xy -1.27 1.27)
  1646. )
  1647. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1648. (fill (type none))
  1649. )
  1650. (polyline
  1651. (pts
  1652. (xy -1.27 0)
  1653. (xy 1.27 0)
  1654. )
  1655. (stroke (width 0) (type default) (color 0 0 0 0))
  1656. (fill (type none))
  1657. )
  1658. (polyline
  1659. (pts
  1660. (xy 1.27 -1.27)
  1661. (xy 1.27 1.27)
  1662. (xy -1.27 0)
  1663. (xy 1.27 -1.27)
  1664. )
  1665. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1666. (fill (type none))
  1667. )
  1668. (polyline
  1669. (pts
  1670. (xy -3.048 -0.762)
  1671. (xy -4.572 -2.286)
  1672. (xy -3.81 -2.286)
  1673. (xy -4.572 -2.286)
  1674. (xy -4.572 -1.524)
  1675. )
  1676. (stroke (width 0) (type default) (color 0 0 0 0))
  1677. (fill (type none))
  1678. )
  1679. (polyline
  1680. (pts
  1681. (xy -1.778 -0.762)
  1682. (xy -3.302 -2.286)
  1683. (xy -2.54 -2.286)
  1684. (xy -3.302 -2.286)
  1685. (xy -3.302 -1.524)
  1686. )
  1687. (stroke (width 0) (type default) (color 0 0 0 0))
  1688. (fill (type none))
  1689. )
  1690. )
  1691. (symbol "LED_1_1"
  1692. (pin passive line (at -3.81 0 0) (length 2.54)
  1693. (name "K" (effects (font (size 1.27 1.27))))
  1694. (number "1" (effects (font (size 1.27 1.27))))
  1695. )
  1696. (pin passive line (at 3.81 0 180) (length 2.54)
  1697. (name "A" (effects (font (size 1.27 1.27))))
  1698. (number "2" (effects (font (size 1.27 1.27))))
  1699. )
  1700. )
  1701. )
  1702. (symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1703. (property "Reference" "L" (id 0) (at 0.762 1.016 0)
  1704. (effects (font (size 1.27 1.27)) (justify left))
  1705. )
  1706. (property "Value" "L_Small" (id 1) (at 0.762 -1.016 0)
  1707. (effects (font (size 1.27 1.27)) (justify left))
  1708. )
  1709. (property "Footprint" "" (id 2) (at 0 0 0)
  1710. (effects (font (size 1.27 1.27)) hide)
  1711. )
  1712. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1713. (effects (font (size 1.27 1.27)) hide)
  1714. )
  1715. (property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
  1716. (effects (font (size 1.27 1.27)) hide)
  1717. )
  1718. (property "ki_description" "Inductor, small symbol" (id 5) (at 0 0 0)
  1719. (effects (font (size 1.27 1.27)) hide)
  1720. )
  1721. (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
  1722. (effects (font (size 1.27 1.27)) hide)
  1723. )
  1724. (symbol "L_Small_0_1"
  1725. (arc (start 0 -2.032) (mid 0.508 -1.524) (end 0 -1.016)
  1726. (stroke (width 0) (type default) (color 0 0 0 0))
  1727. (fill (type none))
  1728. )
  1729. (arc (start 0 -1.016) (mid 0.508 -0.508) (end 0 0)
  1730. (stroke (width 0) (type default) (color 0 0 0 0))
  1731. (fill (type none))
  1732. )
  1733. (arc (start 0 0) (mid 0.508 0.508) (end 0 1.016)
  1734. (stroke (width 0) (type default) (color 0 0 0 0))
  1735. (fill (type none))
  1736. )
  1737. (arc (start 0 1.016) (mid 0.508 1.524) (end 0 2.032)
  1738. (stroke (width 0) (type default) (color 0 0 0 0))
  1739. (fill (type none))
  1740. )
  1741. )
  1742. (symbol "L_Small_1_1"
  1743. (pin passive line (at 0 2.54 270) (length 0.508)
  1744. (name "~" (effects (font (size 1.27 1.27))))
  1745. (number "1" (effects (font (size 1.27 1.27))))
  1746. )
  1747. (pin passive line (at 0 -2.54 90) (length 0.508)
  1748. (name "~" (effects (font (size 1.27 1.27))))
  1749. (number "2" (effects (font (size 1.27 1.27))))
  1750. )
  1751. )
  1752. )
  1753. (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1754. (property "Reference" "F" (id 0) (at -2.54 0 90)
  1755. (effects (font (size 1.27 1.27)))
  1756. )
  1757. (property "Value" "Polyfuse" (id 1) (at 2.54 0 90)
  1758. (effects (font (size 1.27 1.27)))
  1759. )
  1760. (property "Footprint" "" (id 2) (at 1.27 -5.08 0)
  1761. (effects (font (size 1.27 1.27)) (justify left) hide)
  1762. )
  1763. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1764. (effects (font (size 1.27 1.27)) hide)
  1765. )
  1766. (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (id 4) (at 0 0 0)
  1767. (effects (font (size 1.27 1.27)) hide)
  1768. )
  1769. (property "ki_description" "Resettable fuse, polymeric positive temperature coefficient" (id 5) (at 0 0 0)
  1770. (effects (font (size 1.27 1.27)) hide)
  1771. )
  1772. (property "ki_fp_filters" "*polyfuse* *PTC*" (id 6) (at 0 0 0)
  1773. (effects (font (size 1.27 1.27)) hide)
  1774. )
  1775. (symbol "Polyfuse_0_1"
  1776. (rectangle (start -0.762 2.54) (end 0.762 -2.54)
  1777. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1778. (fill (type none))
  1779. )
  1780. (polyline
  1781. (pts
  1782. (xy 0 2.54)
  1783. (xy 0 -2.54)
  1784. )
  1785. (stroke (width 0) (type default) (color 0 0 0 0))
  1786. (fill (type none))
  1787. )
  1788. (polyline
  1789. (pts
  1790. (xy -1.524 2.54)
  1791. (xy -1.524 1.524)
  1792. (xy 1.524 -1.524)
  1793. (xy 1.524 -2.54)
  1794. )
  1795. (stroke (width 0) (type default) (color 0 0 0 0))
  1796. (fill (type none))
  1797. )
  1798. )
  1799. (symbol "Polyfuse_1_1"
  1800. (pin passive line (at 0 3.81 270) (length 1.27)
  1801. (name "~" (effects (font (size 1.27 1.27))))
  1802. (number "1" (effects (font (size 1.27 1.27))))
  1803. )
  1804. (pin passive line (at 0 -3.81 90) (length 1.27)
  1805. (name "~" (effects (font (size 1.27 1.27))))
  1806. (number "2" (effects (font (size 1.27 1.27))))
  1807. )
  1808. )
  1809. )
  1810. (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1811. (property "Reference" "R" (id 0) (at 2.032 0 90)
  1812. (effects (font (size 1.27 1.27)))
  1813. )
  1814. (property "Value" "R" (id 1) (at 0 0 90)
  1815. (effects (font (size 1.27 1.27)))
  1816. )
  1817. (property "Footprint" "" (id 2) (at -1.778 0 90)
  1818. (effects (font (size 1.27 1.27)) hide)
  1819. )
  1820. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1821. (effects (font (size 1.27 1.27)) hide)
  1822. )
  1823. (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
  1824. (effects (font (size 1.27 1.27)) hide)
  1825. )
  1826. (property "ki_description" "Resistor" (id 5) (at 0 0 0)
  1827. (effects (font (size 1.27 1.27)) hide)
  1828. )
  1829. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  1830. (effects (font (size 1.27 1.27)) hide)
  1831. )
  1832. (symbol "R_0_1"
  1833. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  1834. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1835. (fill (type none))
  1836. )
  1837. )
  1838. (symbol "R_1_1"
  1839. (pin passive line (at 0 3.81 270) (length 1.27)
  1840. (name "~" (effects (font (size 1.27 1.27))))
  1841. (number "1" (effects (font (size 1.27 1.27))))
  1842. )
  1843. (pin passive line (at 0 -3.81 90) (length 1.27)
  1844. (name "~" (effects (font (size 1.27 1.27))))
  1845. (number "2" (effects (font (size 1.27 1.27))))
  1846. )
  1847. )
  1848. )
  1849. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1850. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  1851. (effects (font (size 1.27 1.27)) (justify left))
  1852. )
  1853. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  1854. (effects (font (size 1.27 1.27)) (justify left))
  1855. )
  1856. (property "Footprint" "" (id 2) (at 0 0 0)
  1857. (effects (font (size 1.27 1.27)) hide)
  1858. )
  1859. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1860. (effects (font (size 1.27 1.27)) hide)
  1861. )
  1862. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  1863. (effects (font (size 1.27 1.27)) hide)
  1864. )
  1865. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  1866. (effects (font (size 1.27 1.27)) hide)
  1867. )
  1868. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  1869. (effects (font (size 1.27 1.27)) hide)
  1870. )
  1871. (symbol "R_Small_0_1"
  1872. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  1873. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  1874. (fill (type none))
  1875. )
  1876. )
  1877. (symbol "R_Small_1_1"
  1878. (pin passive line (at 0 2.54 270) (length 0.762)
  1879. (name "~" (effects (font (size 1.27 1.27))))
  1880. (number "1" (effects (font (size 1.27 1.27))))
  1881. )
  1882. (pin passive line (at 0 -2.54 90) (length 0.762)
  1883. (name "~" (effects (font (size 1.27 1.27))))
  1884. (number "2" (effects (font (size 1.27 1.27))))
  1885. )
  1886. )
  1887. )
  1888. (symbol "Jumper:SolderJumper_2_Bridged" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1889. (property "Reference" "JP" (id 0) (at 0 2.032 0)
  1890. (effects (font (size 1.27 1.27)))
  1891. )
  1892. (property "Value" "SolderJumper_2_Bridged" (id 1) (at 0 -2.54 0)
  1893. (effects (font (size 1.27 1.27)))
  1894. )
  1895. (property "Footprint" "" (id 2) (at 0 0 0)
  1896. (effects (font (size 1.27 1.27)) hide)
  1897. )
  1898. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1899. (effects (font (size 1.27 1.27)) hide)
  1900. )
  1901. (property "ki_keywords" "solder jumper SPST" (id 4) (at 0 0 0)
  1902. (effects (font (size 1.27 1.27)) hide)
  1903. )
  1904. (property "ki_description" "Solder Jumper, 2-pole, closed/bridged" (id 5) (at 0 0 0)
  1905. (effects (font (size 1.27 1.27)) hide)
  1906. )
  1907. (property "ki_fp_filters" "SolderJumper*Bridged*" (id 6) (at 0 0 0)
  1908. (effects (font (size 1.27 1.27)) hide)
  1909. )
  1910. (symbol "SolderJumper_2_Bridged_0_1"
  1911. (rectangle (start -0.508 0.508) (end 0.508 -0.508)
  1912. (stroke (width 0) (type default) (color 0 0 0 0))
  1913. (fill (type outline))
  1914. )
  1915. (arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
  1916. (stroke (width 0) (type default) (color 0 0 0 0))
  1917. (fill (type none))
  1918. )
  1919. (arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
  1920. (stroke (width 0) (type default) (color 0 0 0 0))
  1921. (fill (type outline))
  1922. )
  1923. (polyline
  1924. (pts
  1925. (xy -0.254 1.016)
  1926. (xy -0.254 -1.016)
  1927. )
  1928. (stroke (width 0) (type default) (color 0 0 0 0))
  1929. (fill (type none))
  1930. )
  1931. (polyline
  1932. (pts
  1933. (xy 0.254 1.016)
  1934. (xy 0.254 -1.016)
  1935. )
  1936. (stroke (width 0) (type default) (color 0 0 0 0))
  1937. (fill (type none))
  1938. )
  1939. (arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
  1940. (stroke (width 0) (type default) (color 0 0 0 0))
  1941. (fill (type none))
  1942. )
  1943. (arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
  1944. (stroke (width 0) (type default) (color 0 0 0 0))
  1945. (fill (type outline))
  1946. )
  1947. )
  1948. (symbol "SolderJumper_2_Bridged_1_1"
  1949. (pin passive line (at -3.81 0 0) (length 2.54)
  1950. (name "A" (effects (font (size 1.27 1.27))))
  1951. (number "1" (effects (font (size 1.27 1.27))))
  1952. )
  1953. (pin passive line (at 3.81 0 180) (length 2.54)
  1954. (name "B" (effects (font (size 1.27 1.27))))
  1955. (number "2" (effects (font (size 1.27 1.27))))
  1956. )
  1957. )
  1958. )
  1959. (symbol "MCU_ST_STM32F4:STM32F411VETx" (in_bom yes) (on_board yes)
  1960. (property "Reference" "U" (id 0) (at -17.78 64.77 0)
  1961. (effects (font (size 1.27 1.27)) (justify left))
  1962. )
  1963. (property "Value" "STM32F411VETx" (id 1) (at 12.7 64.77 0)
  1964. (effects (font (size 1.27 1.27)) (justify left))
  1965. )
  1966. (property "Footprint" "Package_QFP:LQFP-100_14x14mm_P0.5mm" (id 2) (at -17.78 -63.5 0)
  1967. (effects (font (size 1.27 1.27)) (justify right) hide)
  1968. )
  1969. (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00115249.pdf" (id 3) (at 0 0 0)
  1970. (effects (font (size 1.27 1.27)) hide)
  1971. )
  1972. (property "ki_keywords" "ARM Cortex-M4 STM32F4 STM32F411" (id 4) (at 0 0 0)
  1973. (effects (font (size 1.27 1.27)) hide)
  1974. )
  1975. (property "ki_description" "ARM Cortex-M4 MCU, 512KB flash, 128KB RAM, 100MHz, 1.7-3.6V, 81 GPIO, LQFP-100" (id 5) (at 0 0 0)
  1976. (effects (font (size 1.27 1.27)) hide)
  1977. )
  1978. (property "ki_fp_filters" "LQFP*14x14mm*P0.5mm*" (id 6) (at 0 0 0)
  1979. (effects (font (size 1.27 1.27)) hide)
  1980. )
  1981. (symbol "STM32F411VETx_0_1"
  1982. (rectangle (start -17.78 -63.5) (end 17.78 63.5)
  1983. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1984. (fill (type background))
  1985. )
  1986. )
  1987. (symbol "STM32F411VETx_1_1"
  1988. (pin bidirectional line (at -22.86 15.24 0) (length 5.08)
  1989. (name "PE2" (effects (font (size 1.27 1.27))))
  1990. (number "1" (effects (font (size 1.27 1.27))))
  1991. )
  1992. (pin power_in line (at -5.08 -68.58 90) (length 5.08)
  1993. (name "VSS" (effects (font (size 1.27 1.27))))
  1994. (number "10" (effects (font (size 1.27 1.27))))
  1995. )
  1996. (pin power_in line (at 7.62 68.58 270) (length 5.08)
  1997. (name "VDD" (effects (font (size 1.27 1.27))))
  1998. (number "100" (effects (font (size 1.27 1.27))))
  1999. )
  2000. (pin power_in line (at -5.08 68.58 270) (length 5.08)
  2001. (name "VDD" (effects (font (size 1.27 1.27))))
  2002. (number "11" (effects (font (size 1.27 1.27))))
  2003. )
  2004. (pin input line (at -22.86 27.94 0) (length 5.08)
  2005. (name "PH0" (effects (font (size 1.27 1.27))))
  2006. (number "12" (effects (font (size 1.27 1.27))))
  2007. )
  2008. (pin input line (at -22.86 25.4 0) (length 5.08)
  2009. (name "PH1" (effects (font (size 1.27 1.27))))
  2010. (number "13" (effects (font (size 1.27 1.27))))
  2011. )
  2012. (pin input line (at -22.86 60.96 0) (length 5.08)
  2013. (name "NRST" (effects (font (size 1.27 1.27))))
  2014. (number "14" (effects (font (size 1.27 1.27))))
  2015. )
  2016. (pin bidirectional line (at 22.86 -22.86 180) (length 5.08)
  2017. (name "PC0" (effects (font (size 1.27 1.27))))
  2018. (number "15" (effects (font (size 1.27 1.27))))
  2019. )
  2020. (pin bidirectional line (at 22.86 -25.4 180) (length 5.08)
  2021. (name "PC1" (effects (font (size 1.27 1.27))))
  2022. (number "16" (effects (font (size 1.27 1.27))))
  2023. )
  2024. (pin bidirectional line (at 22.86 -27.94 180) (length 5.08)
  2025. (name "PC2" (effects (font (size 1.27 1.27))))
  2026. (number "17" (effects (font (size 1.27 1.27))))
  2027. )
  2028. (pin bidirectional line (at 22.86 -30.48 180) (length 5.08)
  2029. (name "PC3" (effects (font (size 1.27 1.27))))
  2030. (number "18" (effects (font (size 1.27 1.27))))
  2031. )
  2032. (pin power_in line (at -2.54 68.58 270) (length 5.08)
  2033. (name "VDD" (effects (font (size 1.27 1.27))))
  2034. (number "19" (effects (font (size 1.27 1.27))))
  2035. )
  2036. (pin bidirectional line (at -22.86 12.7 0) (length 5.08)
  2037. (name "PE3" (effects (font (size 1.27 1.27))))
  2038. (number "2" (effects (font (size 1.27 1.27))))
  2039. )
  2040. (pin power_in line (at 7.62 -68.58 90) (length 5.08)
  2041. (name "VSSA" (effects (font (size 1.27 1.27))))
  2042. (number "20" (effects (font (size 1.27 1.27))))
  2043. )
  2044. (pin power_in line (at -22.86 45.72 0) (length 5.08)
  2045. (name "VREF+" (effects (font (size 1.27 1.27))))
  2046. (number "21" (effects (font (size 1.27 1.27))))
  2047. )
  2048. (pin power_in line (at 10.16 68.58 270) (length 5.08)
  2049. (name "VDDA" (effects (font (size 1.27 1.27))))
  2050. (number "22" (effects (font (size 1.27 1.27))))
  2051. )
  2052. (pin bidirectional line (at 22.86 60.96 180) (length 5.08)
  2053. (name "PA0" (effects (font (size 1.27 1.27))))
  2054. (number "23" (effects (font (size 1.27 1.27))))
  2055. )
  2056. (pin bidirectional line (at 22.86 58.42 180) (length 5.08)
  2057. (name "PA1" (effects (font (size 1.27 1.27))))
  2058. (number "24" (effects (font (size 1.27 1.27))))
  2059. )
  2060. (pin bidirectional line (at 22.86 55.88 180) (length 5.08)
  2061. (name "PA2" (effects (font (size 1.27 1.27))))
  2062. (number "25" (effects (font (size 1.27 1.27))))
  2063. )
  2064. (pin bidirectional line (at 22.86 53.34 180) (length 5.08)
  2065. (name "PA3" (effects (font (size 1.27 1.27))))
  2066. (number "26" (effects (font (size 1.27 1.27))))
  2067. )
  2068. (pin power_in line (at -2.54 -68.58 90) (length 5.08)
  2069. (name "VSS" (effects (font (size 1.27 1.27))))
  2070. (number "27" (effects (font (size 1.27 1.27))))
  2071. )
  2072. (pin power_in line (at 0 68.58 270) (length 5.08)
  2073. (name "VDD" (effects (font (size 1.27 1.27))))
  2074. (number "28" (effects (font (size 1.27 1.27))))
  2075. )
  2076. (pin bidirectional line (at 22.86 50.8 180) (length 5.08)
  2077. (name "PA4" (effects (font (size 1.27 1.27))))
  2078. (number "29" (effects (font (size 1.27 1.27))))
  2079. )
  2080. (pin bidirectional line (at -22.86 10.16 0) (length 5.08)
  2081. (name "PE4" (effects (font (size 1.27 1.27))))
  2082. (number "3" (effects (font (size 1.27 1.27))))
  2083. )
  2084. (pin bidirectional line (at 22.86 48.26 180) (length 5.08)
  2085. (name "PA5" (effects (font (size 1.27 1.27))))
  2086. (number "30" (effects (font (size 1.27 1.27))))
  2087. )
  2088. (pin bidirectional line (at 22.86 45.72 180) (length 5.08)
  2089. (name "PA6" (effects (font (size 1.27 1.27))))
  2090. (number "31" (effects (font (size 1.27 1.27))))
  2091. )
  2092. (pin bidirectional line (at 22.86 43.18 180) (length 5.08)
  2093. (name "PA7" (effects (font (size 1.27 1.27))))
  2094. (number "32" (effects (font (size 1.27 1.27))))
  2095. )
  2096. (pin bidirectional line (at 22.86 -33.02 180) (length 5.08)
  2097. (name "PC4" (effects (font (size 1.27 1.27))))
  2098. (number "33" (effects (font (size 1.27 1.27))))
  2099. )
  2100. (pin bidirectional line (at 22.86 -35.56 180) (length 5.08)
  2101. (name "PC5" (effects (font (size 1.27 1.27))))
  2102. (number "34" (effects (font (size 1.27 1.27))))
  2103. )
  2104. (pin bidirectional line (at 22.86 17.78 180) (length 5.08)
  2105. (name "PB0" (effects (font (size 1.27 1.27))))
  2106. (number "35" (effects (font (size 1.27 1.27))))
  2107. )
  2108. (pin bidirectional line (at 22.86 15.24 180) (length 5.08)
  2109. (name "PB1" (effects (font (size 1.27 1.27))))
  2110. (number "36" (effects (font (size 1.27 1.27))))
  2111. )
  2112. (pin bidirectional line (at 22.86 12.7 180) (length 5.08)
  2113. (name "PB2" (effects (font (size 1.27 1.27))))
  2114. (number "37" (effects (font (size 1.27 1.27))))
  2115. )
  2116. (pin bidirectional line (at -22.86 2.54 0) (length 5.08)
  2117. (name "PE7" (effects (font (size 1.27 1.27))))
  2118. (number "38" (effects (font (size 1.27 1.27))))
  2119. )
  2120. (pin bidirectional line (at -22.86 0 0) (length 5.08)
  2121. (name "PE8" (effects (font (size 1.27 1.27))))
  2122. (number "39" (effects (font (size 1.27 1.27))))
  2123. )
  2124. (pin bidirectional line (at -22.86 7.62 0) (length 5.08)
  2125. (name "PE5" (effects (font (size 1.27 1.27))))
  2126. (number "4" (effects (font (size 1.27 1.27))))
  2127. )
  2128. (pin bidirectional line (at -22.86 -2.54 0) (length 5.08)
  2129. (name "PE9" (effects (font (size 1.27 1.27))))
  2130. (number "40" (effects (font (size 1.27 1.27))))
  2131. )
  2132. (pin bidirectional line (at -22.86 -5.08 0) (length 5.08)
  2133. (name "PE10" (effects (font (size 1.27 1.27))))
  2134. (number "41" (effects (font (size 1.27 1.27))))
  2135. )
  2136. (pin bidirectional line (at -22.86 -7.62 0) (length 5.08)
  2137. (name "PE11" (effects (font (size 1.27 1.27))))
  2138. (number "42" (effects (font (size 1.27 1.27))))
  2139. )
  2140. (pin bidirectional line (at -22.86 -10.16 0) (length 5.08)
  2141. (name "PE12" (effects (font (size 1.27 1.27))))
  2142. (number "43" (effects (font (size 1.27 1.27))))
  2143. )
  2144. (pin bidirectional line (at -22.86 -12.7 0) (length 5.08)
  2145. (name "PE13" (effects (font (size 1.27 1.27))))
  2146. (number "44" (effects (font (size 1.27 1.27))))
  2147. )
  2148. (pin bidirectional line (at -22.86 -15.24 0) (length 5.08)
  2149. (name "PE14" (effects (font (size 1.27 1.27))))
  2150. (number "45" (effects (font (size 1.27 1.27))))
  2151. )
  2152. (pin bidirectional line (at -22.86 -17.78 0) (length 5.08)
  2153. (name "PE15" (effects (font (size 1.27 1.27))))
  2154. (number "46" (effects (font (size 1.27 1.27))))
  2155. )
  2156. (pin bidirectional line (at 22.86 -7.62 180) (length 5.08)
  2157. (name "PB10" (effects (font (size 1.27 1.27))))
  2158. (number "47" (effects (font (size 1.27 1.27))))
  2159. )
  2160. (pin power_in line (at -22.86 50.8 0) (length 5.08)
  2161. (name "VCAP1" (effects (font (size 1.27 1.27))))
  2162. (number "48" (effects (font (size 1.27 1.27))))
  2163. )
  2164. (pin power_in line (at 0 -68.58 90) (length 5.08)
  2165. (name "VSS" (effects (font (size 1.27 1.27))))
  2166. (number "49" (effects (font (size 1.27 1.27))))
  2167. )
  2168. (pin bidirectional line (at -22.86 5.08 0) (length 5.08)
  2169. (name "PE6" (effects (font (size 1.27 1.27))))
  2170. (number "5" (effects (font (size 1.27 1.27))))
  2171. )
  2172. (pin power_in line (at 2.54 68.58 270) (length 5.08)
  2173. (name "VDD" (effects (font (size 1.27 1.27))))
  2174. (number "50" (effects (font (size 1.27 1.27))))
  2175. )
  2176. (pin bidirectional line (at 22.86 -10.16 180) (length 5.08)
  2177. (name "PB12" (effects (font (size 1.27 1.27))))
  2178. (number "51" (effects (font (size 1.27 1.27))))
  2179. )
  2180. (pin bidirectional line (at 22.86 -12.7 180) (length 5.08)
  2181. (name "PB13" (effects (font (size 1.27 1.27))))
  2182. (number "52" (effects (font (size 1.27 1.27))))
  2183. )
  2184. (pin bidirectional line (at 22.86 -15.24 180) (length 5.08)
  2185. (name "PB14" (effects (font (size 1.27 1.27))))
  2186. (number "53" (effects (font (size 1.27 1.27))))
  2187. )
  2188. (pin bidirectional line (at 22.86 -17.78 180) (length 5.08)
  2189. (name "PB15" (effects (font (size 1.27 1.27))))
  2190. (number "54" (effects (font (size 1.27 1.27))))
  2191. )
  2192. (pin bidirectional line (at -22.86 -43.18 0) (length 5.08)
  2193. (name "PD8" (effects (font (size 1.27 1.27))))
  2194. (number "55" (effects (font (size 1.27 1.27))))
  2195. )
  2196. (pin bidirectional line (at -22.86 -45.72 0) (length 5.08)
  2197. (name "PD9" (effects (font (size 1.27 1.27))))
  2198. (number "56" (effects (font (size 1.27 1.27))))
  2199. )
  2200. (pin bidirectional line (at -22.86 -48.26 0) (length 5.08)
  2201. (name "PD10" (effects (font (size 1.27 1.27))))
  2202. (number "57" (effects (font (size 1.27 1.27))))
  2203. )
  2204. (pin bidirectional line (at -22.86 -50.8 0) (length 5.08)
  2205. (name "PD11" (effects (font (size 1.27 1.27))))
  2206. (number "58" (effects (font (size 1.27 1.27))))
  2207. )
  2208. (pin bidirectional line (at -22.86 -53.34 0) (length 5.08)
  2209. (name "PD12" (effects (font (size 1.27 1.27))))
  2210. (number "59" (effects (font (size 1.27 1.27))))
  2211. )
  2212. (pin power_in line (at -7.62 68.58 270) (length 5.08)
  2213. (name "VBAT" (effects (font (size 1.27 1.27))))
  2214. (number "6" (effects (font (size 1.27 1.27))))
  2215. )
  2216. (pin bidirectional line (at -22.86 -55.88 0) (length 5.08)
  2217. (name "PD13" (effects (font (size 1.27 1.27))))
  2218. (number "60" (effects (font (size 1.27 1.27))))
  2219. )
  2220. (pin bidirectional line (at -22.86 -58.42 0) (length 5.08)
  2221. (name "PD14" (effects (font (size 1.27 1.27))))
  2222. (number "61" (effects (font (size 1.27 1.27))))
  2223. )
  2224. (pin bidirectional line (at -22.86 -60.96 0) (length 5.08)
  2225. (name "PD15" (effects (font (size 1.27 1.27))))
  2226. (number "62" (effects (font (size 1.27 1.27))))
  2227. )
  2228. (pin bidirectional line (at 22.86 -38.1 180) (length 5.08)
  2229. (name "PC6" (effects (font (size 1.27 1.27))))
  2230. (number "63" (effects (font (size 1.27 1.27))))
  2231. )
  2232. (pin bidirectional line (at 22.86 -40.64 180) (length 5.08)
  2233. (name "PC7" (effects (font (size 1.27 1.27))))
  2234. (number "64" (effects (font (size 1.27 1.27))))
  2235. )
  2236. (pin bidirectional line (at 22.86 -43.18 180) (length 5.08)
  2237. (name "PC8" (effects (font (size 1.27 1.27))))
  2238. (number "65" (effects (font (size 1.27 1.27))))
  2239. )
  2240. (pin bidirectional line (at 22.86 -45.72 180) (length 5.08)
  2241. (name "PC9" (effects (font (size 1.27 1.27))))
  2242. (number "66" (effects (font (size 1.27 1.27))))
  2243. )
  2244. (pin bidirectional line (at 22.86 40.64 180) (length 5.08)
  2245. (name "PA8" (effects (font (size 1.27 1.27))))
  2246. (number "67" (effects (font (size 1.27 1.27))))
  2247. )
  2248. (pin bidirectional line (at 22.86 38.1 180) (length 5.08)
  2249. (name "PA9" (effects (font (size 1.27 1.27))))
  2250. (number "68" (effects (font (size 1.27 1.27))))
  2251. )
  2252. (pin bidirectional line (at 22.86 35.56 180) (length 5.08)
  2253. (name "PA10" (effects (font (size 1.27 1.27))))
  2254. (number "69" (effects (font (size 1.27 1.27))))
  2255. )
  2256. (pin bidirectional line (at 22.86 -55.88 180) (length 5.08)
  2257. (name "PC13" (effects (font (size 1.27 1.27))))
  2258. (number "7" (effects (font (size 1.27 1.27))))
  2259. )
  2260. (pin bidirectional line (at 22.86 33.02 180) (length 5.08)
  2261. (name "PA11" (effects (font (size 1.27 1.27))))
  2262. (number "70" (effects (font (size 1.27 1.27))))
  2263. )
  2264. (pin bidirectional line (at 22.86 30.48 180) (length 5.08)
  2265. (name "PA12" (effects (font (size 1.27 1.27))))
  2266. (number "71" (effects (font (size 1.27 1.27))))
  2267. )
  2268. (pin bidirectional line (at 22.86 27.94 180) (length 5.08)
  2269. (name "PA13" (effects (font (size 1.27 1.27))))
  2270. (number "72" (effects (font (size 1.27 1.27))))
  2271. )
  2272. (pin power_in line (at -22.86 48.26 0) (length 5.08)
  2273. (name "VCAP2" (effects (font (size 1.27 1.27))))
  2274. (number "73" (effects (font (size 1.27 1.27))))
  2275. )
  2276. (pin power_in line (at 2.54 -68.58 90) (length 5.08)
  2277. (name "VSS" (effects (font (size 1.27 1.27))))
  2278. (number "74" (effects (font (size 1.27 1.27))))
  2279. )
  2280. (pin power_in line (at 5.08 68.58 270) (length 5.08)
  2281. (name "VDD" (effects (font (size 1.27 1.27))))
  2282. (number "75" (effects (font (size 1.27 1.27))))
  2283. )
  2284. (pin bidirectional line (at 22.86 25.4 180) (length 5.08)
  2285. (name "PA14" (effects (font (size 1.27 1.27))))
  2286. (number "76" (effects (font (size 1.27 1.27))))
  2287. )
  2288. (pin bidirectional line (at 22.86 22.86 180) (length 5.08)
  2289. (name "PA15" (effects (font (size 1.27 1.27))))
  2290. (number "77" (effects (font (size 1.27 1.27))))
  2291. )
  2292. (pin bidirectional line (at 22.86 -48.26 180) (length 5.08)
  2293. (name "PC10" (effects (font (size 1.27 1.27))))
  2294. (number "78" (effects (font (size 1.27 1.27))))
  2295. )
  2296. (pin bidirectional line (at 22.86 -50.8 180) (length 5.08)
  2297. (name "PC11" (effects (font (size 1.27 1.27))))
  2298. (number "79" (effects (font (size 1.27 1.27))))
  2299. )
  2300. (pin bidirectional line (at 22.86 -58.42 180) (length 5.08)
  2301. (name "PC14" (effects (font (size 1.27 1.27))))
  2302. (number "8" (effects (font (size 1.27 1.27))))
  2303. )
  2304. (pin bidirectional line (at 22.86 -53.34 180) (length 5.08)
  2305. (name "PC12" (effects (font (size 1.27 1.27))))
  2306. (number "80" (effects (font (size 1.27 1.27))))
  2307. )
  2308. (pin bidirectional line (at -22.86 -22.86 0) (length 5.08)
  2309. (name "PD0" (effects (font (size 1.27 1.27))))
  2310. (number "81" (effects (font (size 1.27 1.27))))
  2311. )
  2312. (pin bidirectional line (at -22.86 -25.4 0) (length 5.08)
  2313. (name "PD1" (effects (font (size 1.27 1.27))))
  2314. (number "82" (effects (font (size 1.27 1.27))))
  2315. )
  2316. (pin bidirectional line (at -22.86 -27.94 0) (length 5.08)
  2317. (name "PD2" (effects (font (size 1.27 1.27))))
  2318. (number "83" (effects (font (size 1.27 1.27))))
  2319. )
  2320. (pin bidirectional line (at -22.86 -30.48 0) (length 5.08)
  2321. (name "PD3" (effects (font (size 1.27 1.27))))
  2322. (number "84" (effects (font (size 1.27 1.27))))
  2323. )
  2324. (pin bidirectional line (at -22.86 -33.02 0) (length 5.08)
  2325. (name "PD4" (effects (font (size 1.27 1.27))))
  2326. (number "85" (effects (font (size 1.27 1.27))))
  2327. )
  2328. (pin bidirectional line (at -22.86 -35.56 0) (length 5.08)
  2329. (name "PD5" (effects (font (size 1.27 1.27))))
  2330. (number "86" (effects (font (size 1.27 1.27))))
  2331. )
  2332. (pin bidirectional line (at -22.86 -38.1 0) (length 5.08)
  2333. (name "PD6" (effects (font (size 1.27 1.27))))
  2334. (number "87" (effects (font (size 1.27 1.27))))
  2335. )
  2336. (pin bidirectional line (at -22.86 -40.64 0) (length 5.08)
  2337. (name "PD7" (effects (font (size 1.27 1.27))))
  2338. (number "88" (effects (font (size 1.27 1.27))))
  2339. )
  2340. (pin bidirectional line (at 22.86 10.16 180) (length 5.08)
  2341. (name "PB3" (effects (font (size 1.27 1.27))))
  2342. (number "89" (effects (font (size 1.27 1.27))))
  2343. )
  2344. (pin bidirectional line (at 22.86 -60.96 180) (length 5.08)
  2345. (name "PC15" (effects (font (size 1.27 1.27))))
  2346. (number "9" (effects (font (size 1.27 1.27))))
  2347. )
  2348. (pin bidirectional line (at 22.86 7.62 180) (length 5.08)
  2349. (name "PB4" (effects (font (size 1.27 1.27))))
  2350. (number "90" (effects (font (size 1.27 1.27))))
  2351. )
  2352. (pin bidirectional line (at 22.86 5.08 180) (length 5.08)
  2353. (name "PB5" (effects (font (size 1.27 1.27))))
  2354. (number "91" (effects (font (size 1.27 1.27))))
  2355. )
  2356. (pin bidirectional line (at 22.86 2.54 180) (length 5.08)
  2357. (name "PB6" (effects (font (size 1.27 1.27))))
  2358. (number "92" (effects (font (size 1.27 1.27))))
  2359. )
  2360. (pin bidirectional line (at 22.86 0 180) (length 5.08)
  2361. (name "PB7" (effects (font (size 1.27 1.27))))
  2362. (number "93" (effects (font (size 1.27 1.27))))
  2363. )
  2364. (pin input line (at -22.86 55.88 0) (length 5.08)
  2365. (name "BOOT0" (effects (font (size 1.27 1.27))))
  2366. (number "94" (effects (font (size 1.27 1.27))))
  2367. )
  2368. (pin bidirectional line (at 22.86 -2.54 180) (length 5.08)
  2369. (name "PB8" (effects (font (size 1.27 1.27))))
  2370. (number "95" (effects (font (size 1.27 1.27))))
  2371. )
  2372. (pin bidirectional line (at 22.86 -5.08 180) (length 5.08)
  2373. (name "PB9" (effects (font (size 1.27 1.27))))
  2374. (number "96" (effects (font (size 1.27 1.27))))
  2375. )
  2376. (pin bidirectional line (at -22.86 20.32 0) (length 5.08)
  2377. (name "PE0" (effects (font (size 1.27 1.27))))
  2378. (number "97" (effects (font (size 1.27 1.27))))
  2379. )
  2380. (pin bidirectional line (at -22.86 17.78 0) (length 5.08)
  2381. (name "PE1" (effects (font (size 1.27 1.27))))
  2382. (number "98" (effects (font (size 1.27 1.27))))
  2383. )
  2384. (pin power_in line (at 5.08 -68.58 90) (length 5.08)
  2385. (name "VSS" (effects (font (size 1.27 1.27))))
  2386. (number "99" (effects (font (size 1.27 1.27))))
  2387. )
  2388. )
  2389. )
  2390. (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  2391. (property "Reference" "H" (id 0) (at 0 6.35 0)
  2392. (effects (font (size 1.27 1.27)))
  2393. )
  2394. (property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 0)
  2395. (effects (font (size 1.27 1.27)))
  2396. )
  2397. (property "Footprint" "" (id 2) (at 0 0 0)
  2398. (effects (font (size 1.27 1.27)) hide)
  2399. )
  2400. (property "Datasheet" "~" (id 3) (at 0 0 0)
  2401. (effects (font (size 1.27 1.27)) hide)
  2402. )
  2403. (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
  2404. (effects (font (size 1.27 1.27)) hide)
  2405. )
  2406. (property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0)
  2407. (effects (font (size 1.27 1.27)) hide)
  2408. )
  2409. (property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0)
  2410. (effects (font (size 1.27 1.27)) hide)
  2411. )
  2412. (symbol "MountingHole_Pad_0_1"
  2413. (circle (center 0 1.27) (radius 1.27)
  2414. (stroke (width 1.27) (type default) (color 0 0 0 0))
  2415. (fill (type none))
  2416. )
  2417. )
  2418. (symbol "MountingHole_Pad_1_1"
  2419. (pin input line (at 0 -2.54 90) (length 2.54)
  2420. (name "1" (effects (font (size 1.27 1.27))))
  2421. (number "1" (effects (font (size 1.27 1.27))))
  2422. )
  2423. )
  2424. )
  2425. (symbol "Power_Protection:USBLC6-2SC6" (pin_names hide) (in_bom yes) (on_board yes)
  2426. (property "Reference" "U" (id 0) (at 2.54 8.89 0)
  2427. (effects (font (size 1.27 1.27)) (justify left))
  2428. )
  2429. (property "Value" "USBLC6-2SC6" (id 1) (at 2.54 -8.89 0)
  2430. (effects (font (size 1.27 1.27)) (justify left))
  2431. )
  2432. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 0 -12.7 0)
  2433. (effects (font (size 1.27 1.27)) hide)
  2434. )
  2435. (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" (id 3) (at 5.08 8.89 0)
  2436. (effects (font (size 1.27 1.27)) hide)
  2437. )
  2438. (property "ki_keywords" "usb ethernet video" (id 4) (at 0 0 0)
  2439. (effects (font (size 1.27 1.27)) hide)
  2440. )
  2441. (property "ki_description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6" (id 5) (at 0 0 0)
  2442. (effects (font (size 1.27 1.27)) hide)
  2443. )
  2444. (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
  2445. (effects (font (size 1.27 1.27)) hide)
  2446. )
  2447. (symbol "USBLC6-2SC6_0_1"
  2448. (rectangle (start -7.62 -7.62) (end 7.62 7.62)
  2449. (stroke (width 0.254) (type default) (color 0 0 0 0))
  2450. (fill (type background))
  2451. )
  2452. (circle (center -5.08 0) (radius 0.254)
  2453. (stroke (width 0) (type default) (color 0 0 0 0))
  2454. (fill (type outline))
  2455. )
  2456. (circle (center -2.54 0) (radius 0.254)
  2457. (stroke (width 0) (type default) (color 0 0 0 0))
  2458. (fill (type outline))
  2459. )
  2460. (rectangle (start -2.54 6.35) (end 2.54 -6.35)
  2461. (stroke (width 0) (type default) (color 0 0 0 0))
  2462. (fill (type none))
  2463. )
  2464. (circle (center 0 -6.35) (radius 0.254)
  2465. (stroke (width 0) (type default) (color 0 0 0 0))
  2466. (fill (type outline))
  2467. )
  2468. (polyline
  2469. (pts
  2470. (xy -5.08 -2.54)
  2471. (xy -7.62 -2.54)
  2472. )
  2473. (stroke (width 0) (type default) (color 0 0 0 0))
  2474. (fill (type none))
  2475. )
  2476. (polyline
  2477. (pts
  2478. (xy -5.08 0)
  2479. (xy -5.08 -2.54)
  2480. )
  2481. (stroke (width 0) (type default) (color 0 0 0 0))
  2482. (fill (type none))
  2483. )
  2484. (polyline
  2485. (pts
  2486. (xy -5.08 2.54)
  2487. (xy -7.62 2.54)
  2488. )
  2489. (stroke (width 0) (type default) (color 0 0 0 0))
  2490. (fill (type none))
  2491. )
  2492. (polyline
  2493. (pts
  2494. (xy -1.524 -2.794)
  2495. (xy -3.556 -2.794)
  2496. )
  2497. (stroke (width 0) (type default) (color 0 0 0 0))
  2498. (fill (type none))
  2499. )
  2500. (polyline
  2501. (pts
  2502. (xy -1.524 4.826)
  2503. (xy -3.556 4.826)
  2504. )
  2505. (stroke (width 0) (type default) (color 0 0 0 0))
  2506. (fill (type none))
  2507. )
  2508. (polyline
  2509. (pts
  2510. (xy 0 -7.62)
  2511. (xy 0 -6.35)
  2512. )
  2513. (stroke (width 0) (type default) (color 0 0 0 0))
  2514. (fill (type none))
  2515. )
  2516. (polyline
  2517. (pts
  2518. (xy 0 -6.35)
  2519. (xy 0 1.27)
  2520. )
  2521. (stroke (width 0) (type default) (color 0 0 0 0))
  2522. (fill (type none))
  2523. )
  2524. (polyline
  2525. (pts
  2526. (xy 0 1.27)
  2527. (xy 0 6.35)
  2528. )
  2529. (stroke (width 0) (type default) (color 0 0 0 0))
  2530. (fill (type none))
  2531. )
  2532. (polyline
  2533. (pts
  2534. (xy 0 6.35)
  2535. (xy 0 7.62)
  2536. )
  2537. (stroke (width 0) (type default) (color 0 0 0 0))
  2538. (fill (type none))
  2539. )
  2540. (polyline
  2541. (pts
  2542. (xy 1.524 -2.794)
  2543. (xy 3.556 -2.794)
  2544. )
  2545. (stroke (width 0) (type default) (color 0 0 0 0))
  2546. (fill (type none))
  2547. )
  2548. (polyline
  2549. (pts
  2550. (xy 1.524 4.826)
  2551. (xy 3.556 4.826)
  2552. )
  2553. (stroke (width 0) (type default) (color 0 0 0 0))
  2554. (fill (type none))
  2555. )
  2556. (polyline
  2557. (pts
  2558. (xy 5.08 -2.54)
  2559. (xy 7.62 -2.54)
  2560. )
  2561. (stroke (width 0) (type default) (color 0 0 0 0))
  2562. (fill (type none))
  2563. )
  2564. (polyline
  2565. (pts
  2566. (xy 5.08 0)
  2567. (xy 5.08 -2.54)
  2568. )
  2569. (stroke (width 0) (type default) (color 0 0 0 0))
  2570. (fill (type none))
  2571. )
  2572. (polyline
  2573. (pts
  2574. (xy 5.08 2.54)
  2575. (xy 7.62 2.54)
  2576. )
  2577. (stroke (width 0) (type default) (color 0 0 0 0))
  2578. (fill (type none))
  2579. )
  2580. (polyline
  2581. (pts
  2582. (xy -2.54 0)
  2583. (xy -5.08 0)
  2584. (xy -5.08 2.54)
  2585. )
  2586. (stroke (width 0) (type default) (color 0 0 0 0))
  2587. (fill (type none))
  2588. )
  2589. (polyline
  2590. (pts
  2591. (xy 2.54 0)
  2592. (xy 5.08 0)
  2593. (xy 5.08 2.54)
  2594. )
  2595. (stroke (width 0) (type default) (color 0 0 0 0))
  2596. (fill (type none))
  2597. )
  2598. (polyline
  2599. (pts
  2600. (xy -3.556 -4.826)
  2601. (xy -1.524 -4.826)
  2602. (xy -2.54 -2.794)
  2603. (xy -3.556 -4.826)
  2604. )
  2605. (stroke (width 0) (type default) (color 0 0 0 0))
  2606. (fill (type none))
  2607. )
  2608. (polyline
  2609. (pts
  2610. (xy -3.556 2.794)
  2611. (xy -1.524 2.794)
  2612. (xy -2.54 4.826)
  2613. (xy -3.556 2.794)
  2614. )
  2615. (stroke (width 0) (type default) (color 0 0 0 0))
  2616. (fill (type none))
  2617. )
  2618. (polyline
  2619. (pts
  2620. (xy -1.016 -1.016)
  2621. (xy 1.016 -1.016)
  2622. (xy 0 1.016)
  2623. (xy -1.016 -1.016)
  2624. )
  2625. (stroke (width 0) (type default) (color 0 0 0 0))
  2626. (fill (type none))
  2627. )
  2628. (polyline
  2629. (pts
  2630. (xy 1.016 1.016)
  2631. (xy 0.762 1.016)
  2632. (xy -1.016 1.016)
  2633. (xy -1.016 0.508)
  2634. )
  2635. (stroke (width 0) (type default) (color 0 0 0 0))
  2636. (fill (type none))
  2637. )
  2638. (polyline
  2639. (pts
  2640. (xy 3.556 -4.826)
  2641. (xy 1.524 -4.826)
  2642. (xy 2.54 -2.794)
  2643. (xy 3.556 -4.826)
  2644. )
  2645. (stroke (width 0) (type default) (color 0 0 0 0))
  2646. (fill (type none))
  2647. )
  2648. (polyline
  2649. (pts
  2650. (xy 3.556 2.794)
  2651. (xy 1.524 2.794)
  2652. (xy 2.54 4.826)
  2653. (xy 3.556 2.794)
  2654. )
  2655. (stroke (width 0) (type default) (color 0 0 0 0))
  2656. (fill (type none))
  2657. )
  2658. (circle (center 0 6.35) (radius 0.254)
  2659. (stroke (width 0) (type default) (color 0 0 0 0))
  2660. (fill (type outline))
  2661. )
  2662. (circle (center 2.54 0) (radius 0.254)
  2663. (stroke (width 0) (type default) (color 0 0 0 0))
  2664. (fill (type outline))
  2665. )
  2666. (circle (center 5.08 0) (radius 0.254)
  2667. (stroke (width 0) (type default) (color 0 0 0 0))
  2668. (fill (type outline))
  2669. )
  2670. )
  2671. (symbol "USBLC6-2SC6_1_1"
  2672. (pin passive line (at -10.16 -2.54 0) (length 2.54)
  2673. (name "I/O1" (effects (font (size 1.27 1.27))))
  2674. (number "1" (effects (font (size 1.27 1.27))))
  2675. )
  2676. (pin passive line (at 0 -10.16 90) (length 2.54)
  2677. (name "GND" (effects (font (size 1.27 1.27))))
  2678. (number "2" (effects (font (size 1.27 1.27))))
  2679. )
  2680. (pin passive line (at 10.16 -2.54 180) (length 2.54)
  2681. (name "I/O2" (effects (font (size 1.27 1.27))))
  2682. (number "3" (effects (font (size 1.27 1.27))))
  2683. )
  2684. (pin passive line (at 10.16 2.54 180) (length 2.54)
  2685. (name "I/O2" (effects (font (size 1.27 1.27))))
  2686. (number "4" (effects (font (size 1.27 1.27))))
  2687. )
  2688. (pin passive line (at 0 10.16 270) (length 2.54)
  2689. (name "VBUS" (effects (font (size 1.27 1.27))))
  2690. (number "5" (effects (font (size 1.27 1.27))))
  2691. )
  2692. (pin passive line (at -10.16 2.54 0) (length 2.54)
  2693. (name "I/O1" (effects (font (size 1.27 1.27))))
  2694. (number "6" (effects (font (size 1.27 1.27))))
  2695. )
  2696. )
  2697. )
  2698. (symbol "Regulator_Linear:AMS1117-3.3" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  2699. (property "Reference" "U" (id 0) (at -3.81 3.175 0)
  2700. (effects (font (size 1.27 1.27)))
  2701. )
  2702. (property "Value" "AMS1117-3.3" (id 1) (at 0 3.175 0)
  2703. (effects (font (size 1.27 1.27)) (justify left))
  2704. )
  2705. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.08 0)
  2706. (effects (font (size 1.27 1.27)) hide)
  2707. )
  2708. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 2.54 -6.35 0)
  2709. (effects (font (size 1.27 1.27)) hide)
  2710. )
  2711. (property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
  2712. (effects (font (size 1.27 1.27)) hide)
  2713. )
  2714. (property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" (id 5) (at 0 0 0)
  2715. (effects (font (size 1.27 1.27)) hide)
  2716. )
  2717. (property "ki_fp_filters" "SOT?223*TabPin2*" (id 6) (at 0 0 0)
  2718. (effects (font (size 1.27 1.27)) hide)
  2719. )
  2720. (symbol "AMS1117-3.3_0_1"
  2721. (rectangle (start -5.08 -5.08) (end 5.08 1.905)
  2722. (stroke (width 0.254) (type default) (color 0 0 0 0))
  2723. (fill (type background))
  2724. )
  2725. )
  2726. (symbol "AMS1117-3.3_1_1"
  2727. (pin power_in line (at 0 -7.62 90) (length 2.54)
  2728. (name "GND" (effects (font (size 1.27 1.27))))
  2729. (number "1" (effects (font (size 1.27 1.27))))
  2730. )
  2731. (pin power_out line (at 7.62 0 180) (length 2.54)
  2732. (name "VO" (effects (font (size 1.27 1.27))))
  2733. (number "2" (effects (font (size 1.27 1.27))))
  2734. )
  2735. (pin power_in line (at -7.62 0 0) (length 2.54)
  2736. (name "VI" (effects (font (size 1.27 1.27))))
  2737. (number "3" (effects (font (size 1.27 1.27))))
  2738. )
  2739. )
  2740. )
  2741. (symbol "Switch:SW_DIP_x04" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  2742. (property "Reference" "SW" (id 0) (at 0 8.89 0)
  2743. (effects (font (size 1.27 1.27)))
  2744. )
  2745. (property "Value" "SW_DIP_x04" (id 1) (at 0 -6.35 0)
  2746. (effects (font (size 1.27 1.27)))
  2747. )
  2748. (property "Footprint" "" (id 2) (at 0 0 0)
  2749. (effects (font (size 1.27 1.27)) hide)
  2750. )
  2751. (property "Datasheet" "~" (id 3) (at 0 0 0)
  2752. (effects (font (size 1.27 1.27)) hide)
  2753. )
  2754. (property "ki_keywords" "dip switch" (id 4) (at 0 0 0)
  2755. (effects (font (size 1.27 1.27)) hide)
  2756. )
  2757. (property "ki_description" "4x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (id 5) (at 0 0 0)
  2758. (effects (font (size 1.27 1.27)) hide)
  2759. )
  2760. (property "ki_fp_filters" "SW?DIP?x4*" (id 6) (at 0 0 0)
  2761. (effects (font (size 1.27 1.27)) hide)
  2762. )
  2763. (symbol "SW_DIP_x04_0_0"
  2764. (circle (center -2.032 -2.54) (radius 0.508)
  2765. (stroke (width 0) (type default) (color 0 0 0 0))
  2766. (fill (type none))
  2767. )
  2768. (circle (center -2.032 0) (radius 0.508)
  2769. (stroke (width 0) (type default) (color 0 0 0 0))
  2770. (fill (type none))
  2771. )
  2772. (circle (center -2.032 2.54) (radius 0.508)
  2773. (stroke (width 0) (type default) (color 0 0 0 0))
  2774. (fill (type none))
  2775. )
  2776. (circle (center -2.032 5.08) (radius 0.508)
  2777. (stroke (width 0) (type default) (color 0 0 0 0))
  2778. (fill (type none))
  2779. )
  2780. (polyline
  2781. (pts
  2782. (xy -1.524 -2.3876)
  2783. (xy 2.3622 -1.3462)
  2784. )
  2785. (stroke (width 0) (type default) (color 0 0 0 0))
  2786. (fill (type none))
  2787. )
  2788. (polyline
  2789. (pts
  2790. (xy -1.524 0.127)
  2791. (xy 2.3622 1.1684)
  2792. )
  2793. (stroke (width 0) (type default) (color 0 0 0 0))
  2794. (fill (type none))
  2795. )
  2796. (polyline
  2797. (pts
  2798. (xy -1.524 2.667)
  2799. (xy 2.3622 3.7084)
  2800. )
  2801. (stroke (width 0) (type default) (color 0 0 0 0))
  2802. (fill (type none))
  2803. )
  2804. (polyline
  2805. (pts
  2806. (xy -1.524 5.207)
  2807. (xy 2.3622 6.2484)
  2808. )
  2809. (stroke (width 0) (type default) (color 0 0 0 0))
  2810. (fill (type none))
  2811. )
  2812. (circle (center 2.032 -2.54) (radius 0.508)
  2813. (stroke (width 0) (type default) (color 0 0 0 0))
  2814. (fill (type none))
  2815. )
  2816. (circle (center 2.032 0) (radius 0.508)
  2817. (stroke (width 0) (type default) (color 0 0 0 0))
  2818. (fill (type none))
  2819. )
  2820. (circle (center 2.032 2.54) (radius 0.508)
  2821. (stroke (width 0) (type default) (color 0 0 0 0))
  2822. (fill (type none))
  2823. )
  2824. (circle (center 2.032 5.08) (radius 0.508)
  2825. (stroke (width 0) (type default) (color 0 0 0 0))
  2826. (fill (type none))
  2827. )
  2828. )
  2829. (symbol "SW_DIP_x04_0_1"
  2830. (rectangle (start -3.81 7.62) (end 3.81 -5.08)
  2831. (stroke (width 0.254) (type default) (color 0 0 0 0))
  2832. (fill (type background))
  2833. )
  2834. )
  2835. (symbol "SW_DIP_x04_1_1"
  2836. (pin passive line (at -7.62 5.08 0) (length 5.08)
  2837. (name "~" (effects (font (size 1.27 1.27))))
  2838. (number "1" (effects (font (size 1.27 1.27))))
  2839. )
  2840. (pin passive line (at -7.62 2.54 0) (length 5.08)
  2841. (name "~" (effects (font (size 1.27 1.27))))
  2842. (number "2" (effects (font (size 1.27 1.27))))
  2843. )
  2844. (pin passive line (at -7.62 0 0) (length 5.08)
  2845. (name "~" (effects (font (size 1.27 1.27))))
  2846. (number "3" (effects (font (size 1.27 1.27))))
  2847. )
  2848. (pin passive line (at -7.62 -2.54 0) (length 5.08)
  2849. (name "~" (effects (font (size 1.27 1.27))))
  2850. (number "4" (effects (font (size 1.27 1.27))))
  2851. )
  2852. (pin passive line (at 7.62 -2.54 180) (length 5.08)
  2853. (name "~" (effects (font (size 1.27 1.27))))
  2854. (number "5" (effects (font (size 1.27 1.27))))
  2855. )
  2856. (pin passive line (at 7.62 0 180) (length 5.08)
  2857. (name "~" (effects (font (size 1.27 1.27))))
  2858. (number "6" (effects (font (size 1.27 1.27))))
  2859. )
  2860. (pin passive line (at 7.62 2.54 180) (length 5.08)
  2861. (name "~" (effects (font (size 1.27 1.27))))
  2862. (number "7" (effects (font (size 1.27 1.27))))
  2863. )
  2864. (pin passive line (at 7.62 5.08 180) (length 5.08)
  2865. (name "~" (effects (font (size 1.27 1.27))))
  2866. (number "8" (effects (font (size 1.27 1.27))))
  2867. )
  2868. )
  2869. )
  2870. (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2871. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2872. (effects (font (size 1.27 1.27)) hide)
  2873. )
  2874. (property "Value" "+3.3V" (id 1) (at 0 3.556 0)
  2875. (effects (font (size 1.27 1.27)))
  2876. )
  2877. (property "Footprint" "" (id 2) (at 0 0 0)
  2878. (effects (font (size 1.27 1.27)) hide)
  2879. )
  2880. (property "Datasheet" "" (id 3) (at 0 0 0)
  2881. (effects (font (size 1.27 1.27)) hide)
  2882. )
  2883. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2884. (effects (font (size 1.27 1.27)) hide)
  2885. )
  2886. (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0)
  2887. (effects (font (size 1.27 1.27)) hide)
  2888. )
  2889. (symbol "+3.3V_0_1"
  2890. (polyline
  2891. (pts
  2892. (xy -0.762 1.27)
  2893. (xy 0 2.54)
  2894. )
  2895. (stroke (width 0) (type default) (color 0 0 0 0))
  2896. (fill (type none))
  2897. )
  2898. (polyline
  2899. (pts
  2900. (xy 0 0)
  2901. (xy 0 2.54)
  2902. )
  2903. (stroke (width 0) (type default) (color 0 0 0 0))
  2904. (fill (type none))
  2905. )
  2906. (polyline
  2907. (pts
  2908. (xy 0 2.54)
  2909. (xy 0.762 1.27)
  2910. )
  2911. (stroke (width 0) (type default) (color 0 0 0 0))
  2912. (fill (type none))
  2913. )
  2914. )
  2915. (symbol "+3.3V_1_1"
  2916. (pin power_in line (at 0 0 90) (length 0) hide
  2917. (name "+3V3" (effects (font (size 1.27 1.27))))
  2918. (number "1" (effects (font (size 1.27 1.27))))
  2919. )
  2920. )
  2921. )
  2922. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2923. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2924. (effects (font (size 1.27 1.27)) hide)
  2925. )
  2926. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  2927. (effects (font (size 1.27 1.27)))
  2928. )
  2929. (property "Footprint" "" (id 2) (at 0 0 0)
  2930. (effects (font (size 1.27 1.27)) hide)
  2931. )
  2932. (property "Datasheet" "" (id 3) (at 0 0 0)
  2933. (effects (font (size 1.27 1.27)) hide)
  2934. )
  2935. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2936. (effects (font (size 1.27 1.27)) hide)
  2937. )
  2938. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  2939. (effects (font (size 1.27 1.27)) hide)
  2940. )
  2941. (symbol "+3V3_0_1"
  2942. (polyline
  2943. (pts
  2944. (xy -0.762 1.27)
  2945. (xy 0 2.54)
  2946. )
  2947. (stroke (width 0) (type default) (color 0 0 0 0))
  2948. (fill (type none))
  2949. )
  2950. (polyline
  2951. (pts
  2952. (xy 0 0)
  2953. (xy 0 2.54)
  2954. )
  2955. (stroke (width 0) (type default) (color 0 0 0 0))
  2956. (fill (type none))
  2957. )
  2958. (polyline
  2959. (pts
  2960. (xy 0 2.54)
  2961. (xy 0.762 1.27)
  2962. )
  2963. (stroke (width 0) (type default) (color 0 0 0 0))
  2964. (fill (type none))
  2965. )
  2966. )
  2967. (symbol "+3V3_1_1"
  2968. (pin power_in line (at 0 0 90) (length 0) hide
  2969. (name "+3V3" (effects (font (size 1.27 1.27))))
  2970. (number "1" (effects (font (size 1.27 1.27))))
  2971. )
  2972. )
  2973. )
  2974. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2975. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2976. (effects (font (size 1.27 1.27)) hide)
  2977. )
  2978. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  2979. (effects (font (size 1.27 1.27)))
  2980. )
  2981. (property "Footprint" "" (id 2) (at 0 0 0)
  2982. (effects (font (size 1.27 1.27)) hide)
  2983. )
  2984. (property "Datasheet" "" (id 3) (at 0 0 0)
  2985. (effects (font (size 1.27 1.27)) hide)
  2986. )
  2987. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2988. (effects (font (size 1.27 1.27)) hide)
  2989. )
  2990. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  2991. (effects (font (size 1.27 1.27)) hide)
  2992. )
  2993. (symbol "+5V_0_1"
  2994. (polyline
  2995. (pts
  2996. (xy -0.762 1.27)
  2997. (xy 0 2.54)
  2998. )
  2999. (stroke (width 0) (type default) (color 0 0 0 0))
  3000. (fill (type none))
  3001. )
  3002. (polyline
  3003. (pts
  3004. (xy 0 0)
  3005. (xy 0 2.54)
  3006. )
  3007. (stroke (width 0) (type default) (color 0 0 0 0))
  3008. (fill (type none))
  3009. )
  3010. (polyline
  3011. (pts
  3012. (xy 0 2.54)
  3013. (xy 0.762 1.27)
  3014. )
  3015. (stroke (width 0) (type default) (color 0 0 0 0))
  3016. (fill (type none))
  3017. )
  3018. )
  3019. (symbol "+5V_1_1"
  3020. (pin power_in line (at 0 0 90) (length 0) hide
  3021. (name "+5V" (effects (font (size 1.27 1.27))))
  3022. (number "1" (effects (font (size 1.27 1.27))))
  3023. )
  3024. )
  3025. )
  3026. (symbol "power:+5VP" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  3027. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  3028. (effects (font (size 1.27 1.27)) hide)
  3029. )
  3030. (property "Value" "+5VP" (id 1) (at 0 3.556 0)
  3031. (effects (font (size 1.27 1.27)))
  3032. )
  3033. (property "Footprint" "" (id 2) (at 0 0 0)
  3034. (effects (font (size 1.27 1.27)) hide)
  3035. )
  3036. (property "Datasheet" "" (id 3) (at 0 0 0)
  3037. (effects (font (size 1.27 1.27)) hide)
  3038. )
  3039. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  3040. (effects (font (size 1.27 1.27)) hide)
  3041. )
  3042. (property "ki_description" "Power symbol creates a global label with name \"+5VP\"" (id 5) (at 0 0 0)
  3043. (effects (font (size 1.27 1.27)) hide)
  3044. )
  3045. (symbol "+5VP_0_1"
  3046. (polyline
  3047. (pts
  3048. (xy -0.762 1.27)
  3049. (xy 0 2.54)
  3050. )
  3051. (stroke (width 0) (type default) (color 0 0 0 0))
  3052. (fill (type none))
  3053. )
  3054. (polyline
  3055. (pts
  3056. (xy 0 0)
  3057. (xy 0 2.54)
  3058. )
  3059. (stroke (width 0) (type default) (color 0 0 0 0))
  3060. (fill (type none))
  3061. )
  3062. (polyline
  3063. (pts
  3064. (xy 0 2.54)
  3065. (xy 0.762 1.27)
  3066. )
  3067. (stroke (width 0) (type default) (color 0 0 0 0))
  3068. (fill (type none))
  3069. )
  3070. )
  3071. (symbol "+5VP_1_1"
  3072. (pin power_in line (at 0 0 90) (length 0) hide
  3073. (name "+5VP" (effects (font (size 1.27 1.27))))
  3074. (number "1" (effects (font (size 1.27 1.27))))
  3075. )
  3076. )
  3077. )
  3078. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  3079. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  3080. (effects (font (size 1.27 1.27)) hide)
  3081. )
  3082. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  3083. (effects (font (size 1.27 1.27)))
  3084. )
  3085. (property "Footprint" "" (id 2) (at 0 0 0)
  3086. (effects (font (size 1.27 1.27)) hide)
  3087. )
  3088. (property "Datasheet" "" (id 3) (at 0 0 0)
  3089. (effects (font (size 1.27 1.27)) hide)
  3090. )
  3091. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  3092. (effects (font (size 1.27 1.27)) hide)
  3093. )
  3094. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  3095. (effects (font (size 1.27 1.27)) hide)
  3096. )
  3097. (symbol "GND_0_1"
  3098. (polyline
  3099. (pts
  3100. (xy 0 0)
  3101. (xy 0 -1.27)
  3102. (xy 1.27 -1.27)
  3103. (xy 0 -2.54)
  3104. (xy -1.27 -1.27)
  3105. (xy 0 -1.27)
  3106. )
  3107. (stroke (width 0) (type default) (color 0 0 0 0))
  3108. (fill (type none))
  3109. )
  3110. )
  3111. (symbol "GND_1_1"
  3112. (pin power_in line (at 0 0 270) (length 0) hide
  3113. (name "GND" (effects (font (size 1.27 1.27))))
  3114. (number "1" (effects (font (size 1.27 1.27))))
  3115. )
  3116. )
  3117. )
  3118. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  3119. (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
  3120. (effects (font (size 1.27 1.27)) hide)
  3121. )
  3122. (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
  3123. (effects (font (size 1.27 1.27)))
  3124. )
  3125. (property "Footprint" "" (id 2) (at 0 0 0)
  3126. (effects (font (size 1.27 1.27)) hide)
  3127. )
  3128. (property "Datasheet" "~" (id 3) (at 0 0 0)
  3129. (effects (font (size 1.27 1.27)) hide)
  3130. )
  3131. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  3132. (effects (font (size 1.27 1.27)) hide)
  3133. )
  3134. (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
  3135. (effects (font (size 1.27 1.27)) hide)
  3136. )
  3137. (symbol "PWR_FLAG_0_0"
  3138. (pin power_out line (at 0 0 90) (length 0)
  3139. (name "pwr" (effects (font (size 1.27 1.27))))
  3140. (number "1" (effects (font (size 1.27 1.27))))
  3141. )
  3142. )
  3143. (symbol "PWR_FLAG_0_1"
  3144. (polyline
  3145. (pts
  3146. (xy 0 0)
  3147. (xy 0 1.27)
  3148. (xy -1.016 1.905)
  3149. (xy 0 2.54)
  3150. (xy 1.016 1.905)
  3151. (xy 0 1.27)
  3152. )
  3153. (stroke (width 0) (type default) (color 0 0 0 0))
  3154. (fill (type none))
  3155. )
  3156. )
  3157. )
  3158. )
  3159. (junction (at 243.84 40.64) (diameter 0) (color 0 0 0 0)
  3160. (uuid 001f7033-df35-4373-8892-f5fe288a577b)
  3161. )
  3162. (junction (at 256.54 223.52) (diameter 0) (color 0 0 0 0)
  3163. (uuid 00e1b5df-fa73-41ee-9f86-36bcd930675a)
  3164. )
  3165. (junction (at 170.18 271.145) (diameter 0) (color 0 0 0 0)
  3166. (uuid 03e94c59-5042-4399-ab30-7231129af02e)
  3167. )
  3168. (junction (at 50.165 67.945) (diameter 0) (color 0 0 0 0)
  3169. (uuid 187feb91-784a-4b10-9988-0312cb47e7cb)
  3170. )
  3171. (junction (at 40.64 136.525) (diameter 0) (color 0 0 0 0)
  3172. (uuid 19e6b6fe-d437-445e-b92f-996aa4197b3f)
  3173. )
  3174. (junction (at 400.05 128.27) (diameter 0) (color 0 0 0 0)
  3175. (uuid 1b5d7dc9-5cfd-464e-b180-00317aa95f69)
  3176. )
  3177. (junction (at 203.835 180.975) (diameter 0) (color 0 0 0 0)
  3178. (uuid 1c4844f2-ca26-4b6a-acce-3d1920bb0e72)
  3179. )
  3180. (junction (at 362.585 100.33) (diameter 0) (color 0 0 0 0)
  3181. (uuid 1c69dee1-ed36-4504-987d-9fd81232ae4b)
  3182. )
  3183. (junction (at 38.735 191.135) (diameter 0) (color 0 0 0 0)
  3184. (uuid 20eba151-a9b0-47d5-b959-86ab23c14c41)
  3185. )
  3186. (junction (at 362.585 148.59) (diameter 0) (color 0 0 0 0)
  3187. (uuid 2d0de9fb-d263-40a3-a4b8-534699f8dc00)
  3188. )
  3189. (junction (at 170.18 268.605) (diameter 0) (color 0 0 0 0)
  3190. (uuid 2d969b0a-6800-41e3-9f8e-e411603c9b39)
  3191. )
  3192. (junction (at 278.765 235.585) (diameter 0) (color 0 0 0 0)
  3193. (uuid 2da975d4-e343-4a15-b306-b792e8ef0bc5)
  3194. )
  3195. (junction (at 400.05 123.19) (diameter 0) (color 0 0 0 0)
  3196. (uuid 2e56912e-16d0-4e5f-87ba-0f703dfaa920)
  3197. )
  3198. (junction (at 288.29 30.48) (diameter 0) (color 0 0 0 0)
  3199. (uuid 2e5858a1-1c8b-439c-a8bf-7337dab74d4c)
  3200. )
  3201. (junction (at 83.185 127.635) (diameter 0) (color 0 0 0 0)
  3202. (uuid 2f8e7466-929f-4db2-a6d9-9b9bcfa49a4b)
  3203. )
  3204. (junction (at 203.835 178.435) (diameter 0) (color 0 0 0 0)
  3205. (uuid 308a1136-f747-4aba-95ac-176109f144ad)
  3206. )
  3207. (junction (at 362.585 135.89) (diameter 0) (color 0 0 0 0)
  3208. (uuid 31545c31-1411-4502-a4bd-72118e527e5d)
  3209. )
  3210. (junction (at 26.67 34.29) (diameter 0) (color 0 0 0 0)
  3211. (uuid 32c6b611-a1f1-4ef6-b715-dc84841a662e)
  3212. )
  3213. (junction (at 88.265 268.605) (diameter 0) (color 0 0 0 0)
  3214. (uuid 3548ff4d-f8a5-4204-9fb0-d451a98bab1f)
  3215. )
  3216. (junction (at 362.585 133.35) (diameter 0) (color 0 0 0 0)
  3217. (uuid 36e8430f-296c-401d-840d-d587ff561db5)
  3218. )
  3219. (junction (at 362.585 128.27) (diameter 0) (color 0 0 0 0)
  3220. (uuid 38d9d508-28f7-4f62-a362-c4d1b141a768)
  3221. )
  3222. (junction (at 114.935 261.62) (diameter 0) (color 0 0 0 0)
  3223. (uuid 3bf04610-7106-46c5-a128-70d07dd26e16)
  3224. )
  3225. (junction (at 362.585 151.13) (diameter 0) (color 0 0 0 0)
  3226. (uuid 3e5d48f5-435e-42d1-ab23-e56f92a77133)
  3227. )
  3228. (junction (at 222.25 40.64) (diameter 0) (color 0 0 0 0)
  3229. (uuid 40853290-56f0-4511-9992-f63a853aece2)
  3230. )
  3231. (junction (at 255.27 40.64) (diameter 0) (color 0 0 0 0)
  3232. (uuid 409cba5a-1b66-4682-831c-d780a98ad593)
  3233. )
  3234. (junction (at 203.2 230.505) (diameter 0) (color 0 0 0 0)
  3235. (uuid 42c167fb-869d-48dd-b05f-b577934378a4)
  3236. )
  3237. (junction (at 354.965 236.22) (diameter 0) (color 0 0 0 0)
  3238. (uuid 44ff3cc5-6fd5-4ae2-b093-8209d0992af8)
  3239. )
  3240. (junction (at 362.585 143.51) (diameter 0) (color 0 0 0 0)
  3241. (uuid 45708189-6cf6-4828-a1a1-fe879b822edb)
  3242. )
  3243. (junction (at 161.925 85.09) (diameter 0) (color 0 0 0 0)
  3244. (uuid 477d7677-9d1e-4a5b-8190-a872bb7fdf4f)
  3245. )
  3246. (junction (at 342.265 236.22) (diameter 0) (color 0 0 0 0)
  3247. (uuid 47ecdfbb-3190-4908-a143-6fd72a71136a)
  3248. )
  3249. (junction (at 233.68 30.48) (diameter 0) (color 0 0 0 0)
  3250. (uuid 4fb208b4-38ed-4b49-b658-e5e79ff8124c)
  3251. )
  3252. (junction (at 170.815 183.515) (diameter 0) (color 0 0 0 0)
  3253. (uuid 52ceff6b-623f-4549-b5ee-93e84cd99982)
  3254. )
  3255. (junction (at 278.765 191.135) (diameter 0) (color 0 0 0 0)
  3256. (uuid 53570ddf-5ce6-4769-b8ec-534b730d8447)
  3257. )
  3258. (junction (at 347.345 236.22) (diameter 0) (color 0 0 0 0)
  3259. (uuid 55c467d0-300f-4b0a-8508-ef948cd2b9ae)
  3260. )
  3261. (junction (at 362.585 123.19) (diameter 0) (color 0 0 0 0)
  3262. (uuid 5639c275-fdd6-456c-b900-9ae20aa01a2c)
  3263. )
  3264. (junction (at 203.2 266.065) (diameter 0) (color 0 0 0 0)
  3265. (uuid 566774ee-88e3-4a6f-8b35-70a904dbb055)
  3266. )
  3267. (junction (at 170.18 227.965) (diameter 0) (color 0 0 0 0)
  3268. (uuid 5a1ac72e-c554-49ef-90cb-127e03620b7b)
  3269. )
  3270. (junction (at 44.45 169.545) (diameter 0) (color 0 0 0 0)
  3271. (uuid 5d108873-1f71-4242-afd4-2ca74761375d)
  3272. )
  3273. (junction (at 52.705 73.025) (diameter 0) (color 0 0 0 0)
  3274. (uuid 5dcae560-31e9-42b5-a382-de7f205c5e73)
  3275. )
  3276. (junction (at 243.84 30.48) (diameter 0) (color 0 0 0 0)
  3277. (uuid 5ed6ec94-a7d8-4815-b83a-48b981f3fad4)
  3278. )
  3279. (junction (at 29.845 177.165) (diameter 0) (color 0 0 0 0)
  3280. (uuid 6095e6c3-33af-45b7-8c60-a9823a4fc171)
  3281. )
  3282. (junction (at 130.175 32.385) (diameter 0) (color 0 0 0 0)
  3283. (uuid 61f500ac-4797-4177-8b2e-a54a84120620)
  3284. )
  3285. (junction (at 44.45 181.61) (diameter 0) (color 0 0 0 0)
  3286. (uuid 685c0694-c48c-409f-b9e1-da2e29cb1d94)
  3287. )
  3288. (junction (at 327.025 227.965) (diameter 0) (color 0 0 0 0)
  3289. (uuid 6a5c5248-043e-40e2-9f4b-4e962e41e0dd)
  3290. )
  3291. (junction (at 52.705 93.345) (diameter 0) (color 0 0 0 0)
  3292. (uuid 6affca1b-7214-425b-8e68-3f73d95908fc)
  3293. )
  3294. (junction (at 400.05 120.65) (diameter 0) (color 0 0 0 0)
  3295. (uuid 6dc5c987-e66b-420e-8b13-a723c76a94b2)
  3296. )
  3297. (junction (at 85.725 127.635) (diameter 0) (color 0 0 0 0)
  3298. (uuid 6dd42b34-ed05-4bd4-950a-05c7eefc567f)
  3299. )
  3300. (junction (at 362.585 146.05) (diameter 0) (color 0 0 0 0)
  3301. (uuid 720717f4-339a-4150-b330-09fd40bb07fc)
  3302. )
  3303. (junction (at 108.585 32.385) (diameter 0) (color 0 0 0 0)
  3304. (uuid 7257f7a3-8ece-4e27-a43c-b850f979b198)
  3305. )
  3306. (junction (at 255.27 30.48) (diameter 0) (color 0 0 0 0)
  3307. (uuid 7300131c-ba3e-45bb-9aee-7ea5e6e38c74)
  3308. )
  3309. (junction (at 327.025 224.155) (diameter 0) (color 0 0 0 0)
  3310. (uuid 76541732-d722-4f3b-8d25-a0fc2c05203f)
  3311. )
  3312. (junction (at 362.585 113.03) (diameter 0) (color 0 0 0 0)
  3313. (uuid 76a8edde-eadd-410b-aeb4-7991cba5a237)
  3314. )
  3315. (junction (at 299.72 201.93) (diameter 0) (color 0 0 0 0)
  3316. (uuid 76fa555d-328d-459a-a37a-951d50f91cdb)
  3317. )
  3318. (junction (at 346.075 191.77) (diameter 0) (color 0 0 0 0)
  3319. (uuid 77807873-8299-4424-afd6-5ef0b37cb335)
  3320. )
  3321. (junction (at 203.835 175.895) (diameter 0) (color 0 0 0 0)
  3322. (uuid 7796c738-9ffd-4552-b67d-92c4affa2dde)
  3323. )
  3324. (junction (at 189.23 40.64) (diameter 0) (color 0 0 0 0)
  3325. (uuid 783bf3c5-f812-4647-bd92-bb58af54ab52)
  3326. )
  3327. (junction (at 203.2 271.145) (diameter 0) (color 0 0 0 0)
  3328. (uuid 79f66b80-628c-4a8e-8d7c-a923b866cdc7)
  3329. )
  3330. (junction (at 203.835 186.055) (diameter 0) (color 0 0 0 0)
  3331. (uuid 7a42237b-a99f-460e-b663-9f6b4afedf90)
  3332. )
  3333. (junction (at 88.265 127.635) (diameter 0) (color 0 0 0 0)
  3334. (uuid 7cc0e3fe-7a5e-497a-80ea-fcb86e6d12e2)
  3335. )
  3336. (junction (at 269.875 235.585) (diameter 0) (color 0 0 0 0)
  3337. (uuid 80747ba7-af56-4bf3-be02-816ec45776f7)
  3338. )
  3339. (junction (at 189.23 30.48) (diameter 0) (color 0 0 0 0)
  3340. (uuid 81fa19ab-01af-43e7-9ba0-2b5dc6cc058b)
  3341. )
  3342. (junction (at 274.955 235.585) (diameter 0) (color 0 0 0 0)
  3343. (uuid 82989534-95a7-4706-b132-1e04606a8d8d)
  3344. )
  3345. (junction (at 362.585 115.57) (diameter 0) (color 0 0 0 0)
  3346. (uuid 82b4abd0-6051-4ea0-a591-f949e19388d1)
  3347. )
  3348. (junction (at 85.725 268.605) (diameter 0) (color 0 0 0 0)
  3349. (uuid 872d8c1c-5eba-4462-81a9-1d7a34a9eabe)
  3350. )
  3351. (junction (at 282.575 235.585) (diameter 0) (color 0 0 0 0)
  3352. (uuid 883c6da6-7640-4314-ac13-5d9d3f25a282)
  3353. )
  3354. (junction (at 362.585 138.43) (diameter 0) (color 0 0 0 0)
  3355. (uuid 886cdf94-08ba-4e1f-8da0-d95b9f653a8b)
  3356. )
  3357. (junction (at 362.585 140.97) (diameter 0) (color 0 0 0 0)
  3358. (uuid 8987f8b8-e9a9-4cde-8fe5-e3fab146b2a6)
  3359. )
  3360. (junction (at 203.2 227.965) (diameter 0) (color 0 0 0 0)
  3361. (uuid 8f399f50-80e4-4de8-a083-f04a1de7a253)
  3362. )
  3363. (junction (at 362.585 156.21) (diameter 0) (color 0 0 0 0)
  3364. (uuid 8fc84969-be80-474c-a0d4-707c4c0cc724)
  3365. )
  3366. (junction (at 170.815 178.435) (diameter 0) (color 0 0 0 0)
  3367. (uuid 93140cc1-f8ed-44ae-80ac-85241b3056df)
  3368. )
  3369. (junction (at 203.835 173.355) (diameter 0) (color 0 0 0 0)
  3370. (uuid 9320d367-a283-4bce-8ba2-4391ad23aee7)
  3371. )
  3372. (junction (at 90.805 127.635) (diameter 0) (color 0 0 0 0)
  3373. (uuid 949a8cd3-b170-41cd-9cc9-981f7a74a1d7)
  3374. )
  3375. (junction (at 367.03 202.565) (diameter 0) (color 0 0 0 0)
  3376. (uuid 95a65168-9b0e-449f-b805-e3f225b938f0)
  3377. )
  3378. (junction (at 170.815 180.975) (diameter 0) (color 0 0 0 0)
  3379. (uuid 9827434f-26a1-4aae-b779-e35915e6cb26)
  3380. )
  3381. (junction (at 124.46 240.665) (diameter 0) (color 0 0 0 0)
  3382. (uuid 9832eb3e-8666-42b0-969a-0e76174e1989)
  3383. )
  3384. (junction (at 251.46 223.52) (diameter 0) (color 0 0 0 0)
  3385. (uuid 98384c9f-d77c-4eb3-a7cf-f76e356a62d1)
  3386. )
  3387. (junction (at 277.495 235.585) (diameter 0) (color 0 0 0 0)
  3388. (uuid 9ae2b1c7-d458-4066-b406-094eaf23b2ba)
  3389. )
  3390. (junction (at 362.585 105.41) (diameter 0) (color 0 0 0 0)
  3391. (uuid 9f9bd548-777a-406d-8c65-9efee286b26c)
  3392. )
  3393. (junction (at 362.585 118.11) (diameter 0) (color 0 0 0 0)
  3394. (uuid a0975632-1b21-4b38-81f8-f1f2680f6fed)
  3395. )
  3396. (junction (at 89.535 268.605) (diameter 0) (color 0 0 0 0)
  3397. (uuid a8d71f45-0110-4b7a-b05e-0e16aadcabe6)
  3398. )
  3399. (junction (at 171.45 85.09) (diameter 0) (color 0 0 0 0)
  3400. (uuid abe8d828-e71c-46db-8605-768c57f8434f)
  3401. )
  3402. (junction (at 170.815 175.895) (diameter 0) (color 0 0 0 0)
  3403. (uuid af5a5ea0-12bc-45c6-964a-cd8d4200a9ca)
  3404. )
  3405. (junction (at 52.705 88.265) (diameter 0) (color 0 0 0 0)
  3406. (uuid af68c406-ceec-4ea4-812b-5cfaaffe59c6)
  3407. )
  3408. (junction (at 222.25 30.48) (diameter 0) (color 0 0 0 0)
  3409. (uuid b2521a1c-58d0-42a0-be5f-34984a560bd8)
  3410. )
  3411. (junction (at 400.05 130.81) (diameter 0) (color 0 0 0 0)
  3412. (uuid b278c6f4-5009-48d4-af08-74b28d07711f)
  3413. )
  3414. (junction (at 346.075 236.22) (diameter 0) (color 0 0 0 0)
  3415. (uuid b46b45e2-2ffd-479d-833b-0014719ddddb)
  3416. )
  3417. (junction (at 98.425 128.905) (diameter 0) (color 0 0 0 0)
  3418. (uuid b470a752-9dc2-4e2c-9892-c498aa40f59a)
  3419. )
  3420. (junction (at 42.545 78.105) (diameter 0) (color 0 0 0 0)
  3421. (uuid b5921d30-5395-47c8-b627-9dfb0b5627e3)
  3422. )
  3423. (junction (at 362.585 153.67) (diameter 0) (color 0 0 0 0)
  3424. (uuid b74e1229-693d-4376-98c6-46772cb16ac8)
  3425. )
  3426. (junction (at 362.585 110.49) (diameter 0) (color 0 0 0 0)
  3427. (uuid b7d6fe90-98b9-4699-8c47-5d01b930d65a)
  3428. )
  3429. (junction (at 362.585 107.95) (diameter 0) (color 0 0 0 0)
  3430. (uuid b7eb0e3a-bbfc-4294-8595-dde8ca6c0ca7)
  3431. )
  3432. (junction (at 344.805 236.22) (diameter 0) (color 0 0 0 0)
  3433. (uuid b8ba7538-0161-4a13-9463-3fb7fd930071)
  3434. )
  3435. (junction (at 210.82 30.48) (diameter 0) (color 0 0 0 0)
  3436. (uuid b928da43-5e3b-4e65-815c-70d433e56206)
  3437. )
  3438. (junction (at 170.18 230.505) (diameter 0) (color 0 0 0 0)
  3439. (uuid bafaf2e8-96b9-41c0-bed7-5111cec0d59f)
  3440. )
  3441. (junction (at 142.24 75.565) (diameter 0) (color 0 0 0 0)
  3442. (uuid bbb96b4d-2a93-4d46-8ecc-3ac6ccbd5148)
  3443. )
  3444. (junction (at 137.795 32.385) (diameter 0) (color 0 0 0 0)
  3445. (uuid bc3c9b71-1bb4-4105-bfd1-8a24188957d5)
  3446. )
  3447. (junction (at 276.86 30.48) (diameter 0) (color 0 0 0 0)
  3448. (uuid be02b28d-7f7d-4178-8ba2-ba5bdc81e5dc)
  3449. )
  3450. (junction (at 233.68 40.64) (diameter 0) (color 0 0 0 0)
  3451. (uuid be3b6551-80db-4baf-9fa3-8b231e1eef52)
  3452. )
  3453. (junction (at 90.805 268.605) (diameter 0) (color 0 0 0 0)
  3454. (uuid bf2be611-c3fa-4e3b-ad38-8a93bdc82023)
  3455. )
  3456. (junction (at 170.815 173.355) (diameter 0) (color 0 0 0 0)
  3457. (uuid c2755ea2-6ca6-485a-bcfc-f0e3f079e5f7)
  3458. )
  3459. (junction (at 362.585 130.81) (diameter 0) (color 0 0 0 0)
  3460. (uuid c2d7b71c-39f0-4beb-9225-8f0b5672e878)
  3461. )
  3462. (junction (at 81.28 40.64) (diameter 0) (color 0 0 0 0)
  3463. (uuid c5282137-515e-4266-84de-39add2ddec0e)
  3464. )
  3465. (junction (at 362.585 102.87) (diameter 0) (color 0 0 0 0)
  3466. (uuid c5390552-39ea-4a79-8d9a-cd6028d15183)
  3467. )
  3468. (junction (at 29.845 191.135) (diameter 0) (color 0 0 0 0)
  3469. (uuid c6468651-dd30-4e9f-8cfe-44958b9b778c)
  3470. )
  3471. (junction (at 349.885 236.22) (diameter 0) (color 0 0 0 0)
  3472. (uuid c74adcf2-e6d8-4d58-9270-da508bcce569)
  3473. )
  3474. (junction (at 272.415 235.585) (diameter 0) (color 0 0 0 0)
  3475. (uuid d137c24a-659b-47e6-afb0-939c3e934de4)
  3476. )
  3477. (junction (at 170.815 186.055) (diameter 0) (color 0 0 0 0)
  3478. (uuid d50f0759-e6e2-4af9-ae68-718305af4c72)
  3479. )
  3480. (junction (at 362.585 120.65) (diameter 0) (color 0 0 0 0)
  3481. (uuid d5a92d89-aa92-4096-a176-707b299f359c)
  3482. )
  3483. (junction (at 26.67 175.895) (diameter 0) (color 0 0 0 0)
  3484. (uuid d6371195-a98c-4851-98f2-131ee8feffde)
  3485. )
  3486. (junction (at 210.82 40.64) (diameter 0) (color 0 0 0 0)
  3487. (uuid da6316c0-e699-4e23-b0e4-b1d5eba3a4e2)
  3488. )
  3489. (junction (at 203.835 183.515) (diameter 0) (color 0 0 0 0)
  3490. (uuid db8bec98-e454-459b-bf3b-aa9c2b706999)
  3491. )
  3492. (junction (at 339.725 236.22) (diameter 0) (color 0 0 0 0)
  3493. (uuid dc2ca78e-43c1-4511-9ca9-52382244f319)
  3494. )
  3495. (junction (at 352.425 236.22) (diameter 0) (color 0 0 0 0)
  3496. (uuid dc7f3e1f-74f6-42fd-9aae-31b76536bf41)
  3497. )
  3498. (junction (at 337.185 236.22) (diameter 0) (color 0 0 0 0)
  3499. (uuid dd1a0c60-7f5f-4f67-a445-52f3400aee38)
  3500. )
  3501. (junction (at 47.625 80.645) (diameter 0) (color 0 0 0 0)
  3502. (uuid ddce59da-a6c2-42cd-95c6-6052c7a421dc)
  3503. )
  3504. (junction (at 29.845 181.61) (diameter 0) (color 0 0 0 0)
  3505. (uuid de60ff0e-71ab-4d6b-a0b2-5e0037edff59)
  3506. )
  3507. (junction (at 102.235 32.385) (diameter 0) (color 0 0 0 0)
  3508. (uuid de74d78d-f7bb-4720-9397-f8948e2f5bd7)
  3509. )
  3510. (junction (at 276.86 40.64) (diameter 0) (color 0 0 0 0)
  3511. (uuid dfc49f43-995a-407e-a46d-fbec24f61e8d)
  3512. )
  3513. (junction (at 76.835 67.945) (diameter 0) (color 0 0 0 0)
  3514. (uuid e07d866e-06c2-4e8b-8de1-f7d61b91b336)
  3515. )
  3516. (junction (at 51.435 157.48) (diameter 0) (color 0 0 0 0)
  3517. (uuid e18270aa-8d4b-43f6-8f7f-0ea1ffdcd0ac)
  3518. )
  3519. (junction (at 59.055 67.945) (diameter 0) (color 0 0 0 0)
  3520. (uuid e5e87b25-f171-4256-9eb7-c35f51c8b665)
  3521. )
  3522. (junction (at 121.285 271.145) (diameter 0) (color 0 0 0 0)
  3523. (uuid e759a7fe-da07-4c9a-ab45-c05b98f6bd19)
  3524. )
  3525. (junction (at 288.29 40.64) (diameter 0) (color 0 0 0 0)
  3526. (uuid e8ba5849-749d-4e0a-968c-fd80f9b36113)
  3527. )
  3528. (junction (at 142.24 73.025) (diameter 0) (color 0 0 0 0)
  3529. (uuid ebaf0258-8844-46c1-b9fa-e2bdc09ba718)
  3530. )
  3531. (junction (at 142.24 78.105) (diameter 0) (color 0 0 0 0)
  3532. (uuid ee7ac5bf-e3f9-438b-a11e-7e33a9325406)
  3533. )
  3534. (junction (at 81.28 26.67) (diameter 0) (color 0 0 0 0)
  3535. (uuid f0660155-3837-4c65-ae15-6eb7a56dae44)
  3536. )
  3537. (junction (at 93.345 268.605) (diameter 0) (color 0 0 0 0)
  3538. (uuid f507d3d0-7b83-4dcf-bbd6-1eafa1641982)
  3539. )
  3540. (junction (at 93.345 127.635) (diameter 0) (color 0 0 0 0)
  3541. (uuid f70e3f3f-dfc5-4fa0-b7dc-90a4bee7b70d)
  3542. )
  3543. (junction (at 266.7 40.64) (diameter 0) (color 0 0 0 0)
  3544. (uuid f76c8050-2707-476f-b36e-6a0cd6119e1c)
  3545. )
  3546. (junction (at 266.7 30.48) (diameter 0) (color 0 0 0 0)
  3547. (uuid f7fa3149-429f-4628-a90d-d54d4e1cdd50)
  3548. )
  3549. (junction (at 170.18 266.065) (diameter 0) (color 0 0 0 0)
  3550. (uuid f856a9ed-06f6-406c-a051-6a6dc5fd3706)
  3551. )
  3552. (junction (at 362.585 97.79) (diameter 0) (color 0 0 0 0)
  3553. (uuid f94d7499-7294-47e8-9a6e-afebf2e0d1a1)
  3554. )
  3555. (junction (at 81.28 31.75) (diameter 0) (color 0 0 0 0)
  3556. (uuid fb348661-8622-4f74-b5c5-e07db16a2735)
  3557. )
  3558. (junction (at 287.655 235.585) (diameter 0) (color 0 0 0 0)
  3559. (uuid fc8d5d90-a72d-4cf6-9b25-dc3096aefc32)
  3560. )
  3561. (junction (at 280.035 235.585) (diameter 0) (color 0 0 0 0)
  3562. (uuid fcee0107-d1b5-4cef-805c-cbbeb367fedd)
  3563. )
  3564. (junction (at 128.27 261.62) (diameter 0) (color 0 0 0 0)
  3565. (uuid fd50ec7e-592f-4ebf-96df-67edd5fc448b)
  3566. )
  3567. (junction (at 203.2 268.605) (diameter 0) (color 0 0 0 0)
  3568. (uuid fd8619d7-bc15-47ac-aa39-1afd18fa21d9)
  3569. )
  3570. (junction (at 285.115 235.585) (diameter 0) (color 0 0 0 0)
  3571. (uuid fe40b140-71be-4894-a6e3-2e3333f7a818)
  3572. )
  3573. (no_connect (at 111.125 253.365) (uuid 08a02abf-06df-42af-aa34-ba13d2dea005))
  3574. (no_connect (at 111.125 238.125) (uuid 0a43c551-dbfe-43ff-a241-076a8ca91cef))
  3575. (no_connect (at 111.125 227.965) (uuid 0a62cbae-1c9f-48cd-8d93-d9df88b13243))
  3576. (no_connect (at 65.405 253.365) (uuid 0e546bcc-9681-4691-9c72-4496bc622d67))
  3577. (no_connect (at 303.53 82.55) (uuid 0ff232e9-6aba-4c6d-a5f6-0b3d26257d35))
  3578. (no_connect (at 65.405 151.765) (uuid 1dc37920-78ce-42dc-b8b2-d3c90b811d84))
  3579. (no_connect (at 65.405 205.105) (uuid 2bfc3999-ae73-47fc-aff0-72f4d50d19e8))
  3580. (no_connect (at 65.405 255.905) (uuid 422ce139-0e0e-40b1-b064-2ca2d20ff386))
  3581. (no_connect (at 111.125 154.305) (uuid 580b2978-8940-4f63-a13e-248d6928a0d9))
  3582. (no_connect (at 65.405 250.825) (uuid 5e102930-72dd-435b-a54c-86fb25971139))
  3583. (no_connect (at 111.125 215.265) (uuid 62fa40df-6d7a-4e42-865c-d096f7c82f70))
  3584. (no_connect (at 111.125 243.205) (uuid 6c4cc4a1-08f5-4b5b-a135-7bf713b104d8))
  3585. (no_connect (at 65.405 194.945) (uuid 6d5f86fa-3f67-4c51-9cb1-d497c3f206cb))
  3586. (no_connect (at 111.125 250.825) (uuid 6d9f6563-b395-49b4-90ea-ded5f84aeba3))
  3587. (no_connect (at 65.405 215.265) (uuid 6e3a2635-1003-4575-bf5e-8caf80c668c0))
  3588. (no_connect (at 40.005 70.485) (uuid 79ef4bc5-551e-4449-8656-30000c51237b))
  3589. (no_connect (at 111.125 235.585) (uuid 7dbb3959-ac86-4aa8-b7c5-c52b9d14f614))
  3590. (no_connect (at 379.73 135.89) (uuid 8587fdad-ef15-4da2-87f0-0ca0c2a896d7))
  3591. (no_connect (at 65.405 200.025) (uuid 86f8149d-10e3-4723-98b8-5f7829f6b611))
  3592. (no_connect (at 65.405 197.485) (uuid 987647d8-d104-4d42-a0af-8c44a350066c))
  3593. (no_connect (at 65.405 245.745) (uuid 992557e4-e8ca-4faf-89e3-c4933f7e724b))
  3594. (no_connect (at 111.125 184.785) (uuid a32010b5-ad76-441e-91c4-e41e9f21be41))
  3595. (no_connect (at 65.405 248.285) (uuid ac8c8244-b4ca-45d6-96c4-38d707f1b6fc))
  3596. (no_connect (at 111.125 159.385) (uuid b2c1399b-afc9-4226-975a-d8ebf5e268a3))
  3597. (no_connect (at 65.405 258.445) (uuid b35e5c7e-3a34-4064-bf81-a931bdbda3ad))
  3598. (no_connect (at 111.125 161.925) (uuid bedd5cce-9524-40aa-b156-aa5a5a468593))
  3599. (no_connect (at 40.005 95.885) (uuid bfdc7b86-ec99-40af-b64f-9e678ee1ad49))
  3600. (no_connect (at 65.405 202.565) (uuid cd81ab56-7d10-484d-ab07-8a09229721ab))
  3601. (no_connect (at 40.005 85.725) (uuid d1f49220-ee68-4d6c-8e05-d5dcdde26e38))
  3602. (no_connect (at 111.125 139.065) (uuid d2f3a464-7d16-4235-a981-b294fc1f7ce3))
  3603. (no_connect (at 65.405 207.645) (uuid d9c5c2a6-a368-4964-9f44-eee473480b9f))
  3604. (no_connect (at 367.03 125.73) (uuid da8ee858-3d50-4ee8-899b-82c917ea595a))
  3605. (no_connect (at 65.405 210.185) (uuid e0ddde18-63e4-4b29-b598-2031eabae133))
  3606. (no_connect (at 65.405 212.725) (uuid ebb117fc-7e72-48fb-bc46-e141a27228fa))
  3607. (no_connect (at 24.13 32.385) (uuid ec9fb9d6-f906-48e6-887e-78edb3140908))
  3608. (no_connect (at 65.405 179.705) (uuid f356a60e-7a8d-4e45-a402-0850260ff0ee))
  3609. (wire (pts (xy 179.07 30.48) (xy 179.07 32.385))
  3610. (stroke (width 0) (type default) (color 0 0 0 0))
  3611. (uuid 00e2af4c-6709-4814-9145-95f68d8adb52)
  3612. )
  3613. (wire (pts (xy 362.585 105.41) (xy 367.03 105.41))
  3614. (stroke (width 0) (type default) (color 0 0 0 0))
  3615. (uuid 017653c0-bf30-4619-99dc-ad384eeb6a59)
  3616. )
  3617. (wire (pts (xy 233.68 30.48) (xy 233.68 32.385))
  3618. (stroke (width 0) (type default) (color 0 0 0 0))
  3619. (uuid 018e76a5-2210-4e35-823f-18adc23432df)
  3620. )
  3621. (wire (pts (xy 267.335 233.68) (xy 267.335 235.585))
  3622. (stroke (width 0) (type default) (color 0 0 0 0))
  3623. (uuid 01f7c357-ae1d-491b-9879-e29c71a3436f)
  3624. )
  3625. (wire (pts (xy 362.585 146.05) (xy 362.585 148.59))
  3626. (stroke (width 0) (type default) (color 0 0 0 0))
  3627. (uuid 02372aac-f316-4ef1-9197-7eea48c6d465)
  3628. )
  3629. (wire (pts (xy 111.125 220.345) (xy 114.3 220.345))
  3630. (stroke (width 0) (type default) (color 0 0 0 0))
  3631. (uuid 02ceac0d-3e9e-416e-a05c-6cdef38dfa23)
  3632. )
  3633. (polyline (pts (xy 224.155 246.38) (xy 224.155 173.355))
  3634. (stroke (width 0) (type default) (color 0 0 0 0))
  3635. (uuid 02d24662-781b-4552-b6fa-f43b24b94702)
  3636. )
  3637. (wire (pts (xy 362.585 102.87) (xy 362.585 105.41))
  3638. (stroke (width 0) (type default) (color 0 0 0 0))
  3639. (uuid 03a6e710-e978-4cd1-8bad-d74c0acbe0ba)
  3640. )
  3641. (wire (pts (xy 53.34 142.875) (xy 53.34 141.605))
  3642. (stroke (width 0) (type default) (color 0 0 0 0))
  3643. (uuid 03d3d650-4f6a-4100-be49-7b3e4ecd19d6)
  3644. )
  3645. (wire (pts (xy 89.535 268.605) (xy 90.805 268.605))
  3646. (stroke (width 0) (type default) (color 0 0 0 0))
  3647. (uuid 04030806-f1e1-4149-ad4f-95873c6a667e)
  3648. )
  3649. (wire (pts (xy 362.585 146.05) (xy 367.03 146.05))
  3650. (stroke (width 0) (type default) (color 0 0 0 0))
  3651. (uuid 0415dd77-d192-4b0c-acf7-68821ac4a3ef)
  3652. )
  3653. (wire (pts (xy 44.45 189.23) (xy 44.45 191.135))
  3654. (stroke (width 0) (type default) (color 0 0 0 0))
  3655. (uuid 04dab952-2201-457e-8937-b2ce027e0d16)
  3656. )
  3657. (wire (pts (xy 249.555 215.9) (xy 262.255 215.9))
  3658. (stroke (width 0) (type default) (color 0 0 0 0))
  3659. (uuid 04f3d18e-1693-4d01-a603-2f91c3f117ae)
  3660. )
  3661. (polyline (pts (xy 17.78 59.69) (xy 17.78 108.585))
  3662. (stroke (width 0) (type default) (color 0 0 0 0))
  3663. (uuid 05bbac58-7c7c-4730-b685-2c654788eea4)
  3664. )
  3665. (wire (pts (xy 128.27 271.145) (xy 128.27 268.605))
  3666. (stroke (width 0) (type default) (color 0 0 0 0))
  3667. (uuid 06082504-9577-44b1-9135-4a14f417ed63)
  3668. )
  3669. (wire (pts (xy 203.835 170.815) (xy 203.835 173.355))
  3670. (stroke (width 0) (type default) (color 0 0 0 0))
  3671. (uuid 062e487c-34fd-427d-b762-3e27013564dd)
  3672. )
  3673. (wire (pts (xy 249.555 198.12) (xy 262.255 198.12))
  3674. (stroke (width 0) (type default) (color 0 0 0 0))
  3675. (uuid 0643e8bb-397e-4cf2-9760-e466f8ed5e6f)
  3676. )
  3677. (wire (pts (xy 111.125 141.605) (xy 114.3 141.605))
  3678. (stroke (width 0) (type default) (color 0 0 0 0))
  3679. (uuid 06afcd14-9829-4976-9807-b8f8e2fd0bd6)
  3680. )
  3681. (wire (pts (xy 46.99 40.64) (xy 50.8 40.64))
  3682. (stroke (width 0) (type default) (color 0 0 0 0))
  3683. (uuid 080cf07c-3ae2-4839-88ac-7180e2d29ed4)
  3684. )
  3685. (polyline (pts (xy 86.36 16.51) (xy 86.36 56.515))
  3686. (stroke (width 0) (type default) (color 0 0 0 0))
  3687. (uuid 085afd9a-ec75-457b-be29-980c9da43d8d)
  3688. )
  3689. (wire (pts (xy 52.705 65.405) (xy 52.705 73.025))
  3690. (stroke (width 0) (type default) (color 0 0 0 0))
  3691. (uuid 08a7d256-20bb-4f6a-97ee-f64eb7fa4677)
  3692. )
  3693. (wire (pts (xy 111.125 248.285) (xy 114.935 248.285))
  3694. (stroke (width 0) (type default) (color 0 0 0 0))
  3695. (uuid 09072105-8913-48c7-9adc-3996bfa91f69)
  3696. )
  3697. (wire (pts (xy 170.18 230.505) (xy 172.72 230.505))
  3698. (stroke (width 0) (type default) (color 0 0 0 0))
  3699. (uuid 092456b3-1805-430f-aedd-ea98e5a49285)
  3700. )
  3701. (wire (pts (xy 367.03 202.565) (xy 367.03 204.47))
  3702. (stroke (width 0) (type default) (color 0 0 0 0))
  3703. (uuid 093c1953-e17e-472e-b31d-18568b33569c)
  3704. )
  3705. (wire (pts (xy 65.405 225.425) (xy 62.23 225.425))
  3706. (stroke (width 0) (type default) (color 0 0 0 0))
  3707. (uuid 094da4f3-b6e5-41c9-a7d2-9270796c3003)
  3708. )
  3709. (wire (pts (xy 65.405 177.165) (xy 62.23 177.165))
  3710. (stroke (width 0) (type default) (color 0 0 0 0))
  3711. (uuid 098288de-513d-4718-875d-b2a2cd0fc903)
  3712. )
  3713. (wire (pts (xy 203.835 186.055) (xy 203.835 187.96))
  3714. (stroke (width 0) (type default) (color 0 0 0 0))
  3715. (uuid 09df4ef8-a32a-4aa5-bdb3-07858551254a)
  3716. )
  3717. (wire (pts (xy 244.475 168.275) (xy 244.475 168.91))
  3718. (stroke (width 0) (type default) (color 0 0 0 0))
  3719. (uuid 0a1ec4c8-d18d-4593-8c74-6f3423cf5a6d)
  3720. )
  3721. (wire (pts (xy 201.93 128.905) (xy 204.47 128.905))
  3722. (stroke (width 0) (type default) (color 0 0 0 0))
  3723. (uuid 0b161b11-5ceb-446f-91dc-36e19587dbcd)
  3724. )
  3725. (wire (pts (xy 170.18 207.645) (xy 172.72 207.645))
  3726. (stroke (width 0) (type default) (color 0 0 0 0))
  3727. (uuid 0ba08930-b3e6-429d-bfd6-fb77c9139c12)
  3728. )
  3729. (wire (pts (xy 111.125 194.945) (xy 114.935 194.945))
  3730. (stroke (width 0) (type default) (color 0 0 0 0))
  3731. (uuid 0bec1e8e-0e2c-4974-9ead-912fcf9fac98)
  3732. )
  3733. (wire (pts (xy 170.815 180.975) (xy 170.815 183.515))
  3734. (stroke (width 0) (type default) (color 0 0 0 0))
  3735. (uuid 0c2efa81-b310-4c00-b7fe-f9d5d8ff8059)
  3736. )
  3737. (wire (pts (xy 321.31 189.865) (xy 321.31 190.5))
  3738. (stroke (width 0) (type default) (color 0 0 0 0))
  3739. (uuid 0c49916e-5aab-4342-94ce-563438e7f35a)
  3740. )
  3741. (wire (pts (xy 62.23 240.665) (xy 65.405 240.665))
  3742. (stroke (width 0) (type default) (color 0 0 0 0))
  3743. (uuid 0c6ddf4e-a774-4759-87c5-16aae7528735)
  3744. )
  3745. (wire (pts (xy 362.585 95.25) (xy 367.03 95.25))
  3746. (stroke (width 0) (type default) (color 0 0 0 0))
  3747. (uuid 0d124c86-01ee-47c9-aa2b-f7b4d9ee87bc)
  3748. )
  3749. (wire (pts (xy 89.535 268.605) (xy 89.535 269.875))
  3750. (stroke (width 0) (type default) (color 0 0 0 0))
  3751. (uuid 0d2918f7-5efd-422b-9f71-cd33d4d1b4c4)
  3752. )
  3753. (wire (pts (xy 249.555 208.28) (xy 262.255 208.28))
  3754. (stroke (width 0) (type default) (color 0 0 0 0))
  3755. (uuid 0d5bb5d6-1333-4364-bb68-1db757da8683)
  3756. )
  3757. (polyline (pts (xy 108.585 108.585) (xy 108.585 59.69))
  3758. (stroke (width 0) (type default) (color 0 0 0 0))
  3759. (uuid 0e2c484b-f9f6-4445-a03d-80c2d8da4809)
  3760. )
  3761. (wire (pts (xy 344.805 236.22) (xy 346.075 236.22))
  3762. (stroke (width 0) (type default) (color 0 0 0 0))
  3763. (uuid 0ee74577-6ea5-4912-b4fa-40148e4d16c7)
  3764. )
  3765. (wire (pts (xy 56.515 106.045) (xy 69.215 106.045))
  3766. (stroke (width 0) (type default) (color 0 0 0 0))
  3767. (uuid 0f1d5ce3-51f7-4e6b-8863-03ed536b5833)
  3768. )
  3769. (wire (pts (xy 379.73 151.13) (xy 393.7 151.13))
  3770. (stroke (width 0) (type default) (color 0 0 0 0))
  3771. (uuid 0f726bd6-60c5-40ae-afa3-84d5e8133630)
  3772. )
  3773. (wire (pts (xy 111.125 172.085) (xy 114.935 172.085))
  3774. (stroke (width 0) (type default) (color 0 0 0 0))
  3775. (uuid 0fbae64c-5d5c-4a99-869f-fcf9ce2e489b)
  3776. )
  3777. (wire (pts (xy 201.295 180.975) (xy 203.835 180.975))
  3778. (stroke (width 0) (type default) (color 0 0 0 0))
  3779. (uuid 0fbd26ff-7cd5-4487-b2fe-d4fbfe7446f1)
  3780. )
  3781. (wire (pts (xy 42.545 78.105) (xy 69.215 78.105))
  3782. (stroke (width 0) (type default) (color 0 0 0 0))
  3783. (uuid 10be7ad7-7fc9-4142-8a8e-4c767c1a5bb0)
  3784. )
  3785. (wire (pts (xy 189.23 32.385) (xy 189.23 30.48))
  3786. (stroke (width 0) (type default) (color 0 0 0 0))
  3787. (uuid 10f303e1-c21a-4798-83a3-96e152e6d26f)
  3788. )
  3789. (polyline (pts (xy 224.79 96.52) (xy 224.79 97.155))
  3790. (stroke (width 0) (type default) (color 0 0 0 0))
  3791. (uuid 1129abe7-8de3-41ce-981e-0bd8f0f0e69c)
  3792. )
  3793. (wire (pts (xy 207.645 73.025) (xy 207.645 74.93))
  3794. (stroke (width 0) (type default) (color 0 0 0 0))
  3795. (uuid 11667a9d-7359-4a68-8d27-e205b6e96d25)
  3796. )
  3797. (wire (pts (xy 327.025 236.855) (xy 327.025 237.49))
  3798. (stroke (width 0) (type default) (color 0 0 0 0))
  3799. (uuid 11eea4aa-ae56-422f-9067-7bcb973139ac)
  3800. )
  3801. (wire (pts (xy 200.66 263.525) (xy 203.2 263.525))
  3802. (stroke (width 0) (type default) (color 0 0 0 0))
  3803. (uuid 1282241b-7d3b-4a5d-ba21-4c86fecdbb49)
  3804. )
  3805. (wire (pts (xy 121.285 73.025) (xy 123.825 73.025))
  3806. (stroke (width 0) (type default) (color 0 0 0 0))
  3807. (uuid 13668d11-336b-4a12-8922-1936503865eb)
  3808. )
  3809. (wire (pts (xy 74.93 50.8) (xy 81.28 50.8))
  3810. (stroke (width 0) (type default) (color 0 0 0 0))
  3811. (uuid 13e081a2-551a-4b47-88e2-a2ec1ce3609a)
  3812. )
  3813. (wire (pts (xy 44.45 169.545) (xy 65.405 169.545))
  3814. (stroke (width 0) (type default) (color 0 0 0 0))
  3815. (uuid 13ef08a4-86c8-4018-9974-795594dfac8b)
  3816. )
  3817. (polyline (pts (xy 91.44 16.51) (xy 93.345 16.51))
  3818. (stroke (width 0) (type default) (color 0 0 0 0))
  3819. (uuid 14024c61-79e8-40dc-9057-37cc4ebba99b)
  3820. )
  3821. (wire (pts (xy 48.895 73.025) (xy 52.705 73.025))
  3822. (stroke (width 0) (type default) (color 0 0 0 0))
  3823. (uuid 148445d0-3d4d-4c4c-9398-bac7f2dbe40c)
  3824. )
  3825. (wire (pts (xy 42.545 169.545) (xy 44.45 169.545))
  3826. (stroke (width 0) (type default) (color 0 0 0 0))
  3827. (uuid 14d7bc38-eb2b-4a70-a925-e9cf44ff15e4)
  3828. )
  3829. (wire (pts (xy 29.845 181.61) (xy 34.925 181.61))
  3830. (stroke (width 0) (type default) (color 0 0 0 0))
  3831. (uuid 1501a31e-d351-40fc-9455-4b6209c268b3)
  3832. )
  3833. (wire (pts (xy 142.875 27.94) (xy 142.875 32.385))
  3834. (stroke (width 0) (type default) (color 0 0 0 0))
  3835. (uuid 15230a8d-f709-487e-a2d1-99716d454023)
  3836. )
  3837. (wire (pts (xy 362.585 118.11) (xy 362.585 120.65))
  3838. (stroke (width 0) (type default) (color 0 0 0 0))
  3839. (uuid 15e36333-29ed-4ab8-9be6-d3696d64f774)
  3840. )
  3841. (wire (pts (xy 200.66 255.905) (xy 203.835 255.905))
  3842. (stroke (width 0) (type default) (color 0 0 0 0))
  3843. (uuid 15e3bd5e-9f0a-42c6-9ee2-77dfb80b1628)
  3844. )
  3845. (wire (pts (xy 252.73 189.23) (xy 252.73 189.865))
  3846. (stroke (width 0) (type default) (color 0 0 0 0))
  3847. (uuid 15ea1587-e8cf-43b5-8d6f-e6992315b0cc)
  3848. )
  3849. (wire (pts (xy 48.895 88.265) (xy 52.705 88.265))
  3850. (stroke (width 0) (type default) (color 0 0 0 0))
  3851. (uuid 171bb268-4041-49aa-bb13-a6501a870eb0)
  3852. )
  3853. (polyline (pts (xy 17.78 108.585) (xy 108.585 108.585))
  3854. (stroke (width 0) (type default) (color 0 0 0 0))
  3855. (uuid 173a115b-4a32-4278-8ffe-79adea288bb3)
  3856. )
  3857. (wire (pts (xy 357.505 236.22) (xy 357.505 234.315))
  3858. (stroke (width 0) (type default) (color 0 0 0 0))
  3859. (uuid 173e372b-cdd5-43be-bad9-aedf8329ec07)
  3860. )
  3861. (wire (pts (xy 76.835 31.75) (xy 81.28 31.75))
  3862. (stroke (width 0) (type default) (color 0 0 0 0))
  3863. (uuid 179bafd4-9c60-41c5-8568-4bc61bce67e1)
  3864. )
  3865. (wire (pts (xy 50.8 172.085) (xy 50.8 177.165))
  3866. (stroke (width 0) (type default) (color 0 0 0 0))
  3867. (uuid 17cb3599-ffc9-4e81-8e64-aec1508999a5)
  3868. )
  3869. (polyline (pts (xy 313.69 59.69) (xy 313.69 93.98))
  3870. (stroke (width 0) (type default) (color 0 0 0 0))
  3871. (uuid 183d5d17-bbaa-41e8-a274-9433bf32a63c)
  3872. )
  3873. (wire (pts (xy 26.67 32.385) (xy 26.67 34.29))
  3874. (stroke (width 0) (type default) (color 0 0 0 0))
  3875. (uuid 1853557f-d870-4f73-bc70-e89fb0093629)
  3876. )
  3877. (wire (pts (xy 26.67 175.895) (xy 26.67 191.135))
  3878. (stroke (width 0) (type default) (color 0 0 0 0))
  3879. (uuid 1891a343-2c95-4c2a-b897-4ca130a4d929)
  3880. )
  3881. (wire (pts (xy 379.73 110.49) (xy 393.7 110.49))
  3882. (stroke (width 0) (type default) (color 0 0 0 0))
  3883. (uuid 1950b271-98e0-447a-b2e3-7b8ca89d2b4d)
  3884. )
  3885. (wire (pts (xy 201.93 136.525) (xy 204.47 136.525))
  3886. (stroke (width 0) (type default) (color 0 0 0 0))
  3887. (uuid 19885406-9410-44eb-8604-e128cc55bd5b)
  3888. )
  3889. (wire (pts (xy 335.915 161.29) (xy 340.995 161.29))
  3890. (stroke (width 0) (type default) (color 0 0 0 0))
  3891. (uuid 1a21fb5c-007e-4928-82ba-f3b23c2ba5ac)
  3892. )
  3893. (wire (pts (xy 283.845 77.47) (xy 290.83 77.47))
  3894. (stroke (width 0) (type default) (color 0 0 0 0))
  3895. (uuid 1b36856d-e82c-4ce3-8abd-9c24a6656ca5)
  3896. )
  3897. (wire (pts (xy 196.215 83.82) (xy 205.105 83.82))
  3898. (stroke (width 0) (type default) (color 0 0 0 0))
  3899. (uuid 1b7b8f74-1080-4186-a795-2b3151a5aead)
  3900. )
  3901. (wire (pts (xy 362.585 148.59) (xy 362.585 151.13))
  3902. (stroke (width 0) (type default) (color 0 0 0 0))
  3903. (uuid 1c2ea9fe-7994-4d54-8c25-e76362d5382e)
  3904. )
  3905. (wire (pts (xy 111.125 144.145) (xy 114.3 144.145))
  3906. (stroke (width 0) (type default) (color 0 0 0 0))
  3907. (uuid 1ce15c77-9268-4145-ab00-2e186578141b)
  3908. )
  3909. (wire (pts (xy 184.785 236.855) (xy 187.96 236.855))
  3910. (stroke (width 0) (type default) (color 0 0 0 0))
  3911. (uuid 1d1ad576-78b7-425f-8c7c-c37ed8dfae33)
  3912. )
  3913. (wire (pts (xy 47.625 75.565) (xy 47.625 80.645))
  3914. (stroke (width 0) (type default) (color 0 0 0 0))
  3915. (uuid 1d800193-8381-4a99-80f3-8ee3b46600a3)
  3916. )
  3917. (wire (pts (xy 255.27 76.2) (xy 257.175 76.2))
  3918. (stroke (width 0) (type default) (color 0 0 0 0))
  3919. (uuid 1e01dac7-81dc-469b-9775-21c240d8463a)
  3920. )
  3921. (wire (pts (xy 324.485 81.915) (xy 328.295 81.915))
  3922. (stroke (width 0) (type default) (color 0 0 0 0))
  3923. (uuid 1eaea42d-027a-41aa-b8c3-2be3c987f6fc)
  3924. )
  3925. (wire (pts (xy 81.28 23.495) (xy 81.28 26.67))
  3926. (stroke (width 0) (type default) (color 0 0 0 0))
  3927. (uuid 1ef92e9b-c657-4d5d-a786-74fb67e06a5c)
  3928. )
  3929. (wire (pts (xy 285.115 233.68) (xy 285.115 235.585))
  3930. (stroke (width 0) (type default) (color 0 0 0 0))
  3931. (uuid 1f63af88-695d-468f-a10c-bf4f495eed60)
  3932. )
  3933. (wire (pts (xy 40.64 136.525) (xy 40.64 137.795))
  3934. (stroke (width 0) (type default) (color 0 0 0 0))
  3935. (uuid 1f6937ba-1d4f-4c27-bbb2-eb5d945c6cb3)
  3936. )
  3937. (wire (pts (xy 111.125 156.845) (xy 128.905 156.845))
  3938. (stroke (width 0) (type default) (color 0 0 0 0))
  3939. (uuid 1fa439e8-e0ff-4e18-8867-070d2709d44e)
  3940. )
  3941. (wire (pts (xy 53.34 157.48) (xy 53.34 156.845))
  3942. (stroke (width 0) (type default) (color 0 0 0 0))
  3943. (uuid 1fa6137c-aeda-464a-947d-f5062691ae2f)
  3944. )
  3945. (wire (pts (xy 252.73 183.515) (xy 252.73 184.15))
  3946. (stroke (width 0) (type default) (color 0 0 0 0))
  3947. (uuid 2027bef6-0e85-454e-9860-83d6fb4893b4)
  3948. )
  3949. (wire (pts (xy 282.575 235.585) (xy 285.115 235.585))
  3950. (stroke (width 0) (type default) (color 0 0 0 0))
  3951. (uuid 2033cee0-86b8-462b-8841-9d0948ff4e85)
  3952. )
  3953. (wire (pts (xy 255.27 37.465) (xy 255.27 40.64))
  3954. (stroke (width 0) (type default) (color 0 0 0 0))
  3955. (uuid 205c730f-e2a3-4fc9-a686-7c22414969ef)
  3956. )
  3957. (wire (pts (xy 292.735 151.13) (xy 277.495 151.13))
  3958. (stroke (width 0) (type default) (color 0 0 0 0))
  3959. (uuid 212e52b2-9c83-412d-94d8-a5194a1c19d5)
  3960. )
  3961. (wire (pts (xy 379.73 97.79) (xy 393.7 97.79))
  3962. (stroke (width 0) (type default) (color 0 0 0 0))
  3963. (uuid 2144419a-0661-4219-a18f-5821a6b3255c)
  3964. )
  3965. (wire (pts (xy 344.805 234.315) (xy 344.805 236.22))
  3966. (stroke (width 0) (type default) (color 0 0 0 0))
  3967. (uuid 215fa116-3d2e-47fd-b341-919e31aeac1d)
  3968. )
  3969. (polyline (pts (xy 151.765 16.51) (xy 307.34 16.51))
  3970. (stroke (width 0) (type default) (color 0 0 0 0))
  3971. (uuid 21b84837-1194-4250-8beb-b11e9bbeee1f)
  3972. )
  3973. (wire (pts (xy 161.925 67.31) (xy 161.925 69.215))
  3974. (stroke (width 0) (type default) (color 0 0 0 0))
  3975. (uuid 21f02a65-f544-4231-a70d-670812e23978)
  3976. )
  3977. (wire (pts (xy 251.46 223.52) (xy 251.46 227.33))
  3978. (stroke (width 0) (type default) (color 0 0 0 0))
  3979. (uuid 221f2c8d-6662-4d5b-84e0-3a0cfb155a13)
  3980. )
  3981. (polyline (pts (xy 149.86 280.67) (xy 220.345 280.67))
  3982. (stroke (width 0) (type default) (color 0 0 0 0))
  3983. (uuid 226ae8a2-2ef4-4695-9a88-38d4ec779979)
  3984. )
  3985. (polyline (pts (xy 146.05 88.265) (xy 146.05 59.69))
  3986. (stroke (width 0) (type default) (color 0 0 0 0))
  3987. (uuid 22923849-93fb-405d-88d0-0295d2307701)
  3988. )
  3989. (wire (pts (xy 255.27 30.48) (xy 266.7 30.48))
  3990. (stroke (width 0) (type default) (color 0 0 0 0))
  3991. (uuid 22baa68f-3f23-4839-b76c-411989b7f940)
  3992. )
  3993. (polyline (pts (xy 17.78 59.69) (xy 108.585 59.69))
  3994. (stroke (width 0) (type default) (color 0 0 0 0))
  3995. (uuid 22c58e14-e003-4cb8-8303-9703f1256aa0)
  3996. )
  3997. (wire (pts (xy 90.805 266.065) (xy 90.805 268.605))
  3998. (stroke (width 0) (type default) (color 0 0 0 0))
  3999. (uuid 22e1eb19-3641-45aa-8389-a4444d315e41)
  4000. )
  4001. (polyline (pts (xy 241.3 93.98) (xy 149.86 93.98))
  4002. (stroke (width 0) (type default) (color 0 0 0 0))
  4003. (uuid 22ee7e8a-680c-42b4-91bb-d295a7fa1d49)
  4004. )
  4005. (wire (pts (xy 200.66 225.425) (xy 203.2 225.425))
  4006. (stroke (width 0) (type default) (color 0 0 0 0))
  4007. (uuid 23142993-ad00-4bdd-96e7-740082bb12f1)
  4008. )
  4009. (wire (pts (xy 200.66 258.445) (xy 203.835 258.445))
  4010. (stroke (width 0) (type default) (color 0 0 0 0))
  4011. (uuid 233bb547-4fb0-4616-8d83-7fa9995ec070)
  4012. )
  4013. (wire (pts (xy 111.125 187.325) (xy 114.935 187.325))
  4014. (stroke (width 0) (type default) (color 0 0 0 0))
  4015. (uuid 23d6d507-4f00-456a-8a09-626ab3b1fe91)
  4016. )
  4017. (wire (pts (xy 85.725 127.635) (xy 85.725 128.905))
  4018. (stroke (width 0) (type default) (color 0 0 0 0))
  4019. (uuid 23f99c42-3b61-428a-8caf-1c72c9ac6097)
  4020. )
  4021. (wire (pts (xy 231.14 127) (xy 236.22 127))
  4022. (stroke (width 0) (type default) (color 0 0 0 0))
  4023. (uuid 2453a7d2-8d26-4267-a1f8-778b39064e41)
  4024. )
  4025. (wire (pts (xy 93.345 127.635) (xy 95.885 127.635))
  4026. (stroke (width 0) (type default) (color 0 0 0 0))
  4027. (uuid 24e62209-a3fc-47ea-a135-2144b4b301c6)
  4028. )
  4029. (polyline (pts (xy 151.765 16.51) (xy 151.765 56.515))
  4030. (stroke (width 0) (type default) (color 0 0 0 0))
  4031. (uuid 2534e1bc-8c94-4f0a-8465-3070496f47e2)
  4032. )
  4033. (wire (pts (xy 201.93 131.445) (xy 204.47 131.445))
  4034. (stroke (width 0) (type default) (color 0 0 0 0))
  4035. (uuid 256a901e-cac1-472f-9817-a945038af399)
  4036. )
  4037. (wire (pts (xy 169.545 260.985) (xy 172.72 260.985))
  4038. (stroke (width 0) (type default) (color 0 0 0 0))
  4039. (uuid 2593e065-9eb0-4560-a9e0-ec1a4b85b145)
  4040. )
  4041. (wire (pts (xy 222.25 30.48) (xy 222.25 32.385))
  4042. (stroke (width 0) (type default) (color 0 0 0 0))
  4043. (uuid 259d8959-8b40-4633-a765-b994a4e7158e)
  4044. )
  4045. (wire (pts (xy 40.005 65.405) (xy 52.705 65.405))
  4046. (stroke (width 0) (type default) (color 0 0 0 0))
  4047. (uuid 268c6d65-c0e0-47a4-901b-a81d0ea95c0c)
  4048. )
  4049. (wire (pts (xy 334.645 234.315) (xy 334.645 236.22))
  4050. (stroke (width 0) (type default) (color 0 0 0 0))
  4051. (uuid 26a552c5-5c1e-4995-add6-006802a8aee2)
  4052. )
  4053. (wire (pts (xy 98.425 116.84) (xy 98.425 117.475))
  4054. (stroke (width 0) (type default) (color 0 0 0 0))
  4055. (uuid 2728491e-5bfa-4174-8120-372c72191036)
  4056. )
  4057. (wire (pts (xy 83.185 266.065) (xy 83.185 268.605))
  4058. (stroke (width 0) (type default) (color 0 0 0 0))
  4059. (uuid 278e7511-871f-4473-90d7-f2b8bfedbc00)
  4060. )
  4061. (wire (pts (xy 189.23 40.64) (xy 189.23 42.545))
  4062. (stroke (width 0) (type default) (color 0 0 0 0))
  4063. (uuid 27d4373a-34d6-40e4-9dd6-06943182e2ec)
  4064. )
  4065. (wire (pts (xy 367.03 209.55) (xy 367.03 210.82))
  4066. (stroke (width 0) (type default) (color 0 0 0 0))
  4067. (uuid 2885583c-a13e-4f4e-bf09-e1753c9abfc3)
  4068. )
  4069. (wire (pts (xy 201.93 126.365) (xy 204.47 126.365))
  4070. (stroke (width 0) (type default) (color 0 0 0 0))
  4071. (uuid 28e376fd-e580-43ab-a255-ef7a20b46e2d)
  4072. )
  4073. (wire (pts (xy 170.815 173.355) (xy 170.815 175.895))
  4074. (stroke (width 0) (type default) (color 0 0 0 0))
  4075. (uuid 29780c51-81b4-441e-9066-3151f981455f)
  4076. )
  4077. (wire (pts (xy 253.365 70.485) (xy 253.365 73.66))
  4078. (stroke (width 0) (type default) (color 0 0 0 0))
  4079. (uuid 29def2e7-9e53-4c53-8689-a8567f20aa5b)
  4080. )
  4081. (wire (pts (xy 200.66 227.965) (xy 203.2 227.965))
  4082. (stroke (width 0) (type default) (color 0 0 0 0))
  4083. (uuid 2a23f38a-c87f-4db1-ba82-74af7b6b9d31)
  4084. )
  4085. (wire (pts (xy 205.105 74.93) (xy 205.105 73.025))
  4086. (stroke (width 0) (type default) (color 0 0 0 0))
  4087. (uuid 2a45869b-64cc-4a9c-a0f2-746141ff5500)
  4088. )
  4089. (wire (pts (xy 249.555 203.2) (xy 262.255 203.2))
  4090. (stroke (width 0) (type default) (color 0 0 0 0))
  4091. (uuid 2a4e3929-a07e-4377-ae5e-e48dbc6d0aca)
  4092. )
  4093. (wire (pts (xy 111.125 225.425) (xy 114.3 225.425))
  4094. (stroke (width 0) (type default) (color 0 0 0 0))
  4095. (uuid 2b7b9bdc-718b-4d3a-9593-833134efbcc0)
  4096. )
  4097. (wire (pts (xy 139.065 70.485) (xy 142.24 70.485))
  4098. (stroke (width 0) (type default) (color 0 0 0 0))
  4099. (uuid 2bdebe79-7ca7-41f6-b558-381ecb4089ac)
  4100. )
  4101. (wire (pts (xy 59.69 50.8) (xy 67.31 50.8))
  4102. (stroke (width 0) (type default) (color 0 0 0 0))
  4103. (uuid 2c5a05df-e5c6-4a6a-b380-1c843aeb8ead)
  4104. )
  4105. (wire (pts (xy 269.875 235.585) (xy 272.415 235.585))
  4106. (stroke (width 0) (type default) (color 0 0 0 0))
  4107. (uuid 2d060537-ea01-4bbc-99fb-2ec92377946b)
  4108. )
  4109. (wire (pts (xy 137.795 32.385) (xy 142.875 32.385))
  4110. (stroke (width 0) (type default) (color 0 0 0 0))
  4111. (uuid 2d242666-0bff-40a1-9b39-81e2b09bf680)
  4112. )
  4113. (wire (pts (xy 128.27 261.62) (xy 128.27 263.525))
  4114. (stroke (width 0) (type default) (color 0 0 0 0))
  4115. (uuid 2d5d6e96-efba-4521-ba94-50a00a196588)
  4116. )
  4117. (wire (pts (xy 88.265 266.065) (xy 88.265 268.605))
  4118. (stroke (width 0) (type default) (color 0 0 0 0))
  4119. (uuid 2d71d273-c7b5-4767-9855-2ccae03abe5a)
  4120. )
  4121. (wire (pts (xy 379.73 102.87) (xy 393.7 102.87))
  4122. (stroke (width 0) (type default) (color 0 0 0 0))
  4123. (uuid 2dbe99f5-baa6-4300-8456-3e3be7aa02d9)
  4124. )
  4125. (polyline (pts (xy 309.88 16.51) (xy 309.88 56.515))
  4126. (stroke (width 0) (type default) (color 0 0 0 0))
  4127. (uuid 2dc007f8-6d79-4fcf-b9b6-58570cdabb9a)
  4128. )
  4129. (wire (pts (xy 81.28 40.64) (xy 81.28 50.8))
  4130. (stroke (width 0) (type default) (color 0 0 0 0))
  4131. (uuid 2e7a13e0-b095-4ee8-a13f-2114bbccba96)
  4132. )
  4133. (wire (pts (xy 362.585 135.89) (xy 367.03 135.89))
  4134. (stroke (width 0) (type default) (color 0 0 0 0))
  4135. (uuid 2e8a33b4-b970-419a-8ba1-3263fd543106)
  4136. )
  4137. (wire (pts (xy 170.18 266.065) (xy 170.18 263.525))
  4138. (stroke (width 0) (type default) (color 0 0 0 0))
  4139. (uuid 2e8e8db1-897f-4e47-9634-a9869176a561)
  4140. )
  4141. (wire (pts (xy 379.73 128.27) (xy 400.05 128.27))
  4142. (stroke (width 0) (type default) (color 0 0 0 0))
  4143. (uuid 2f670324-aec0-491f-a8b2-53fe0726a16c)
  4144. )
  4145. (wire (pts (xy 65.405 184.785) (xy 62.23 184.785))
  4146. (stroke (width 0) (type default) (color 0 0 0 0))
  4147. (uuid 2f8cbda9-783c-42df-8b95-dfcbb5bb3868)
  4148. )
  4149. (wire (pts (xy 111.125 182.245) (xy 114.935 182.245))
  4150. (stroke (width 0) (type default) (color 0 0 0 0))
  4151. (uuid 30164fa7-d858-4c5c-99d9-24f55d08a73f)
  4152. )
  4153. (wire (pts (xy 38.735 162.56) (xy 38.735 164.465))
  4154. (stroke (width 0) (type default) (color 0 0 0 0))
  4155. (uuid 30352b87-6e24-4ba1-863a-86c77e4eb7db)
  4156. )
  4157. (wire (pts (xy 346.075 236.22) (xy 346.075 239.395))
  4158. (stroke (width 0) (type default) (color 0 0 0 0))
  4159. (uuid 3048c361-bc02-4f53-adf4-b5fc6a66fed8)
  4160. )
  4161. (wire (pts (xy 170.815 183.515) (xy 173.355 183.515))
  4162. (stroke (width 0) (type default) (color 0 0 0 0))
  4163. (uuid 30a558f8-5c13-48ae-a44f-148d8bdea6fb)
  4164. )
  4165. (wire (pts (xy 111.125 245.745) (xy 114.935 245.745))
  4166. (stroke (width 0) (type default) (color 0 0 0 0))
  4167. (uuid 314989b1-6769-4a72-9672-b6584b42a61f)
  4168. )
  4169. (polyline (pts (xy 309.88 16.51) (xy 365.125 16.51))
  4170. (stroke (width 0) (type default) (color 0 0 0 0))
  4171. (uuid 318cc37a-c31a-401e-8570-d2c55d89cdc7)
  4172. )
  4173. (wire (pts (xy 85.725 268.605) (xy 88.265 268.605))
  4174. (stroke (width 0) (type default) (color 0 0 0 0))
  4175. (uuid 31eb47e5-f1f2-4903-816e-97657445b3ac)
  4176. )
  4177. (wire (pts (xy 200.66 266.065) (xy 203.2 266.065))
  4178. (stroke (width 0) (type default) (color 0 0 0 0))
  4179. (uuid 322533db-6229-4f97-beb6-87c6aceb4e97)
  4180. )
  4181. (polyline (pts (xy 224.79 170.6816) (xy 269.24 170.6816))
  4182. (stroke (width 0) (type default) (color 0 0 0 0))
  4183. (uuid 3260f30c-1ad1-4e0b-ad50-51792b0195b1)
  4184. )
  4185. (wire (pts (xy 29.21 34.29) (xy 29.21 32.385))
  4186. (stroke (width 0) (type default) (color 0 0 0 0))
  4187. (uuid 32b86445-adde-4a81-bf9d-39e88f21bb24)
  4188. )
  4189. (wire (pts (xy 222.25 37.465) (xy 222.25 40.64))
  4190. (stroke (width 0) (type default) (color 0 0 0 0))
  4191. (uuid 32ee6b10-e8f5-40a8-b531-0a783c1056c7)
  4192. )
  4193. (wire (pts (xy 88.265 268.605) (xy 89.535 268.605))
  4194. (stroke (width 0) (type default) (color 0 0 0 0))
  4195. (uuid 3311882e-989c-41fe-b5e3-433293aa932c)
  4196. )
  4197. (wire (pts (xy 231.14 144.145) (xy 236.855 144.145))
  4198. (stroke (width 0) (type default) (color 0 0 0 0))
  4199. (uuid 333a5d77-e195-4284-a630-7760f1766417)
  4200. )
  4201. (wire (pts (xy 50.165 67.945) (xy 50.165 90.805))
  4202. (stroke (width 0) (type default) (color 0 0 0 0))
  4203. (uuid 33b8ef37-e87b-422a-98a0-e5c2a200938e)
  4204. )
  4205. (wire (pts (xy 29.845 189.23) (xy 29.845 191.135))
  4206. (stroke (width 0) (type default) (color 0 0 0 0))
  4207. (uuid 33c3a7d2-7493-4bab-b997-52149b7007d6)
  4208. )
  4209. (wire (pts (xy 111.125 222.885) (xy 114.3 222.885))
  4210. (stroke (width 0) (type default) (color 0 0 0 0))
  4211. (uuid 33f91f8f-9892-4e99-8d8f-4f26f762e2e8)
  4212. )
  4213. (wire (pts (xy 324.485 224.155) (xy 327.025 224.155))
  4214. (stroke (width 0) (type default) (color 0 0 0 0))
  4215. (uuid 34419e31-ae10-4071-b8ad-d52eb3f3cc4e)
  4216. )
  4217. (wire (pts (xy 111.125 197.485) (xy 114.935 197.485))
  4218. (stroke (width 0) (type default) (color 0 0 0 0))
  4219. (uuid 347d7925-04dc-48be-92a8-e4134575d264)
  4220. )
  4221. (wire (pts (xy 362.585 133.35) (xy 367.03 133.35))
  4222. (stroke (width 0) (type default) (color 0 0 0 0))
  4223. (uuid 35130e1b-0a4f-4ea7-9eaa-0d29c6794f5e)
  4224. )
  4225. (wire (pts (xy 171.45 139.065) (xy 173.99 139.065))
  4226. (stroke (width 0) (type default) (color 0 0 0 0))
  4227. (uuid 35320e78-cef9-43b9-b573-2a0b619f990a)
  4228. )
  4229. (wire (pts (xy 186.055 111.125) (xy 186.055 109.855))
  4230. (stroke (width 0) (type default) (color 0 0 0 0))
  4231. (uuid 36c9317e-fece-4188-b43c-b4b4eb91cc96)
  4232. )
  4233. (wire (pts (xy 210.82 30.48) (xy 222.25 30.48))
  4234. (stroke (width 0) (type default) (color 0 0 0 0))
  4235. (uuid 3712e9b3-8e2c-482f-bfd7-efc2882059cc)
  4236. )
  4237. (wire (pts (xy 170.815 170.815) (xy 170.815 173.355))
  4238. (stroke (width 0) (type default) (color 0 0 0 0))
  4239. (uuid 3717cba2-c703-40bc-8b17-d21260e8b65b)
  4240. )
  4241. (polyline (pts (xy 84.455 56.515) (xy 41.275 56.515))
  4242. (stroke (width 0) (type default) (color 0 0 0 0))
  4243. (uuid 371a24d9-89c9-47fb-acfb-585857e96f8c)
  4244. )
  4245. (wire (pts (xy 342.265 234.315) (xy 342.265 236.22))
  4246. (stroke (width 0) (type default) (color 0 0 0 0))
  4247. (uuid 38069a96-3ad3-4562-8c3e-36c66ee30bc8)
  4248. )
  4249. (wire (pts (xy 313.69 227.965) (xy 319.405 227.965))
  4250. (stroke (width 0) (type default) (color 0 0 0 0))
  4251. (uuid 3808062c-ea79-4019-8163-8fc3c1f5d95d)
  4252. )
  4253. (wire (pts (xy 251.46 227.33) (xy 248.92 227.33))
  4254. (stroke (width 0) (type default) (color 0 0 0 0))
  4255. (uuid 3828afcf-80b0-401e-9af2-f3b27b04e9d1)
  4256. )
  4257. (wire (pts (xy 328.295 36.195) (xy 328.295 39.37))
  4258. (stroke (width 0) (type default) (color 0 0 0 0))
  4259. (uuid 38352288-d519-401f-8928-bb58be697731)
  4260. )
  4261. (wire (pts (xy 231.14 108.585) (xy 231.14 109.855))
  4262. (stroke (width 0) (type default) (color 0 0 0 0))
  4263. (uuid 3846b943-37dc-43d8-a48f-0f57550f00f0)
  4264. )
  4265. (wire (pts (xy 65.405 222.885) (xy 62.23 222.885))
  4266. (stroke (width 0) (type default) (color 0 0 0 0))
  4267. (uuid 384d9496-3189-4679-ab30-540ef3c9b3db)
  4268. )
  4269. (wire (pts (xy 346.075 236.22) (xy 347.345 236.22))
  4270. (stroke (width 0) (type default) (color 0 0 0 0))
  4271. (uuid 38d1ab87-f802-439c-884d-858458b8f582)
  4272. )
  4273. (wire (pts (xy 40.005 78.105) (xy 42.545 78.105))
  4274. (stroke (width 0) (type default) (color 0 0 0 0))
  4275. (uuid 39d169d5-9667-48eb-bd15-b1e6109fdfcf)
  4276. )
  4277. (wire (pts (xy 111.125 205.105) (xy 114.935 205.105))
  4278. (stroke (width 0) (type default) (color 0 0 0 0))
  4279. (uuid 3a5169d8-8944-4b95-8026-23b92dbf2ec4)
  4280. )
  4281. (wire (pts (xy 189.23 40.64) (xy 200.66 40.64))
  4282. (stroke (width 0) (type default) (color 0 0 0 0))
  4283. (uuid 3a5458eb-ebde-4913-9117-3fa7e52b9475)
  4284. )
  4285. (wire (pts (xy 362.585 107.95) (xy 367.03 107.95))
  4286. (stroke (width 0) (type default) (color 0 0 0 0))
  4287. (uuid 3b1570c8-3136-4a84-b6e1-be20af8cc72d)
  4288. )
  4289. (wire (pts (xy 111.125 230.505) (xy 114.935 230.505))
  4290. (stroke (width 0) (type default) (color 0 0 0 0))
  4291. (uuid 3b73304a-b828-4362-9d4b-f5999c112e3f)
  4292. )
  4293. (wire (pts (xy 362.585 123.19) (xy 362.585 128.27))
  4294. (stroke (width 0) (type default) (color 0 0 0 0))
  4295. (uuid 3c8d0734-8b3f-4e41-b91e-ded0d7ee120f)
  4296. )
  4297. (wire (pts (xy 379.73 125.73) (xy 393.7 125.73))
  4298. (stroke (width 0) (type default) (color 0 0 0 0))
  4299. (uuid 3c9549ae-220b-4d1f-b27a-70cd7a09d053)
  4300. )
  4301. (wire (pts (xy 40.64 142.875) (xy 40.64 144.145))
  4302. (stroke (width 0) (type default) (color 0 0 0 0))
  4303. (uuid 3d048352-79d8-48a3-a217-5e43ec7d5b8b)
  4304. )
  4305. (wire (pts (xy 51.435 157.48) (xy 53.34 157.48))
  4306. (stroke (width 0) (type default) (color 0 0 0 0))
  4307. (uuid 3e468eec-2c33-4131-bd4b-4e8b6aa12f4d)
  4308. )
  4309. (wire (pts (xy 170.18 268.605) (xy 170.18 271.145))
  4310. (stroke (width 0) (type default) (color 0 0 0 0))
  4311. (uuid 3e768bb3-17fb-4ae5-a311-c95dd2a01a85)
  4312. )
  4313. (wire (pts (xy 59.055 67.945) (xy 62.865 67.945))
  4314. (stroke (width 0) (type default) (color 0 0 0 0))
  4315. (uuid 3e929eb5-78b3-4d06-b162-e0b85b93ab05)
  4316. )
  4317. (wire (pts (xy 280.035 235.585) (xy 282.575 235.585))
  4318. (stroke (width 0) (type default) (color 0 0 0 0))
  4319. (uuid 3ea2838d-dd36-4f3d-9f26-826243341375)
  4320. )
  4321. (wire (pts (xy 244.475 150.495) (xy 244.475 151.765))
  4322. (stroke (width 0) (type default) (color 0 0 0 0))
  4323. (uuid 3eae3dde-d8bf-47d1-947e-95d5480b6f11)
  4324. )
  4325. (wire (pts (xy 222.25 40.64) (xy 233.68 40.64))
  4326. (stroke (width 0) (type default) (color 0 0 0 0))
  4327. (uuid 3f810c37-a444-4ef6-9dfc-541f4da8e6ef)
  4328. )
  4329. (wire (pts (xy 111.125 200.025) (xy 114.935 200.025))
  4330. (stroke (width 0) (type default) (color 0 0 0 0))
  4331. (uuid 4042f113-4dc4-4b00-8bca-e51cfe4fe265)
  4332. )
  4333. (polyline (pts (xy 314.579 59.69) (xy 346.075 59.69))
  4334. (stroke (width 0) (type default) (color 0 0 0 0))
  4335. (uuid 406858e2-5095-4324-b0ba-fbf45f33d41a)
  4336. )
  4337. (wire (pts (xy 111.125 164.465) (xy 114.935 164.465))
  4338. (stroke (width 0) (type default) (color 0 0 0 0))
  4339. (uuid 4072123f-a34a-48b6-9da9-975e9ae9083b)
  4340. )
  4341. (polyline (pts (xy 309.88 56.515) (xy 365.125 56.515))
  4342. (stroke (width 0) (type default) (color 0 0 0 0))
  4343. (uuid 42591393-1eab-42b8-9b5e-f854cb011bd8)
  4344. )
  4345. (wire (pts (xy 74.295 81.915) (xy 74.295 83.185))
  4346. (stroke (width 0) (type default) (color 0 0 0 0))
  4347. (uuid 427aea57-3a3b-4d02-85e9-f23bd5b59f5f)
  4348. )
  4349. (wire (pts (xy 187.96 236.855) (xy 187.96 243.205))
  4350. (stroke (width 0) (type default) (color 0 0 0 0))
  4351. (uuid 42eacf9c-ec11-45ce-a625-d61c0efa9099)
  4352. )
  4353. (wire (pts (xy 253.365 73.66) (xy 257.175 73.66))
  4354. (stroke (width 0) (type default) (color 0 0 0 0))
  4355. (uuid 4466848a-6325-4708-8d9d-37ac5389ac09)
  4356. )
  4357. (wire (pts (xy 170.815 175.895) (xy 173.355 175.895))
  4358. (stroke (width 0) (type default) (color 0 0 0 0))
  4359. (uuid 449c9b0e-819f-4725-a650-45118a5dc945)
  4360. )
  4361. (wire (pts (xy 362.585 135.89) (xy 362.585 138.43))
  4362. (stroke (width 0) (type default) (color 0 0 0 0))
  4363. (uuid 4536ece3-6998-477e-a561-f0e18bfeb612)
  4364. )
  4365. (polyline (pts (xy 224.155 173.355) (xy 375.92 173.355))
  4366. (stroke (width 0) (type default) (color 0 0 0 0))
  4367. (uuid 454dd555-c5f6-4f4c-b2da-1c56dd0f7a16)
  4368. )
  4369. (wire (pts (xy 354.965 236.22) (xy 357.505 236.22))
  4370. (stroke (width 0) (type default) (color 0 0 0 0))
  4371. (uuid 460d1871-18dd-49cc-99d9-d33f7bcca253)
  4372. )
  4373. (wire (pts (xy 386.08 38.735) (xy 386.08 40.005))
  4374. (stroke (width 0) (type default) (color 0 0 0 0))
  4375. (uuid 461a2820-760d-4e5f-a1bf-77c76f45b760)
  4376. )
  4377. (wire (pts (xy 169.545 222.885) (xy 172.72 222.885))
  4378. (stroke (width 0) (type default) (color 0 0 0 0))
  4379. (uuid 4680aabb-68f5-4a2b-ac02-6e7ec1c21e25)
  4380. )
  4381. (wire (pts (xy 277.495 235.585) (xy 278.765 235.585))
  4382. (stroke (width 0) (type default) (color 0 0 0 0))
  4383. (uuid 468b464e-ad67-44eb-b2f2-ad9d58964dfb)
  4384. )
  4385. (wire (pts (xy 31.75 32.385) (xy 31.75 34.925))
  4386. (stroke (width 0) (type default) (color 0 0 0 0))
  4387. (uuid 476f9437-4a89-4d76-af91-e2a134b95e6f)
  4388. )
  4389. (wire (pts (xy 95.885 32.385) (xy 102.235 32.385))
  4390. (stroke (width 0) (type default) (color 0 0 0 0))
  4391. (uuid 4852e59a-b625-4570-944f-5ec16e3317c9)
  4392. )
  4393. (wire (pts (xy 65.405 182.245) (xy 62.23 182.245))
  4394. (stroke (width 0) (type default) (color 0 0 0 0))
  4395. (uuid 485d4dfe-4b18-494d-b20f-8ea75c1fc45c)
  4396. )
  4397. (wire (pts (xy 327.025 227.965) (xy 324.485 227.965))
  4398. (stroke (width 0) (type default) (color 0 0 0 0))
  4399. (uuid 48d7a43d-8235-4900-96fd-6249e7d2ec7f)
  4400. )
  4401. (wire (pts (xy 249.555 213.36) (xy 262.255 213.36))
  4402. (stroke (width 0) (type default) (color 0 0 0 0))
  4403. (uuid 491ab16f-87ca-4347-9b7d-9176c1fad2f4)
  4404. )
  4405. (wire (pts (xy 170.18 230.505) (xy 170.18 232.41))
  4406. (stroke (width 0) (type default) (color 0 0 0 0))
  4407. (uuid 491f2446-6ee7-410d-a42b-939114bb10c0)
  4408. )
  4409. (wire (pts (xy 317.5 219.075) (xy 329.565 219.075))
  4410. (stroke (width 0) (type default) (color 0 0 0 0))
  4411. (uuid 49271389-b507-4661-9e21-a828772f07a8)
  4412. )
  4413. (wire (pts (xy 231.14 109.855) (xy 236.22 109.855))
  4414. (stroke (width 0) (type default) (color 0 0 0 0))
  4415. (uuid 492c5620-268b-42f4-82cf-6c9945a313bd)
  4416. )
  4417. (wire (pts (xy 58.42 40.64) (xy 69.215 40.64))
  4418. (stroke (width 0) (type default) (color 0 0 0 0))
  4419. (uuid 493a085b-c6f8-433f-9275-a4a8ea480f7d)
  4420. )
  4421. (wire (pts (xy 277.495 233.68) (xy 277.495 235.585))
  4422. (stroke (width 0) (type default) (color 0 0 0 0))
  4423. (uuid 493e0012-8fe6-40ae-b627-13688a850224)
  4424. )
  4425. (wire (pts (xy 362.585 115.57) (xy 362.585 118.11))
  4426. (stroke (width 0) (type default) (color 0 0 0 0))
  4427. (uuid 49b40a61-899f-42ae-bf2a-73313d7b8e53)
  4428. )
  4429. (wire (pts (xy 324.485 74.295) (xy 328.295 74.295))
  4430. (stroke (width 0) (type default) (color 0 0 0 0))
  4431. (uuid 4a9415fb-b105-4e94-b1bf-ee107e728f45)
  4432. )
  4433. (wire (pts (xy 40.005 80.645) (xy 47.625 80.645))
  4434. (stroke (width 0) (type default) (color 0 0 0 0))
  4435. (uuid 4ae11040-e206-4d65-93a2-99462b067581)
  4436. )
  4437. (wire (pts (xy 114.935 271.145) (xy 121.285 271.145))
  4438. (stroke (width 0) (type default) (color 0 0 0 0))
  4439. (uuid 4b216144-7a0d-4c1b-87d4-2edc70d70c58)
  4440. )
  4441. (wire (pts (xy 121.285 75.565) (xy 123.825 75.565))
  4442. (stroke (width 0) (type default) (color 0 0 0 0))
  4443. (uuid 4b6b926e-a474-4e35-990e-e489cde108ef)
  4444. )
  4445. (polyline (pts (xy 272.415 121.92) (xy 272.415 170.815))
  4446. (stroke (width 0) (type default) (color 0 0 0 0))
  4447. (uuid 4b8f8df5-02a7-4896-8f82-beb8ba83a571)
  4448. )
  4449. (wire (pts (xy 121.285 271.145) (xy 128.27 271.145))
  4450. (stroke (width 0) (type default) (color 0 0 0 0))
  4451. (uuid 4bf4925f-81af-40a0-bfd9-e8a24321763f)
  4452. )
  4453. (wire (pts (xy 170.18 225.425) (xy 172.72 225.425))
  4454. (stroke (width 0) (type default) (color 0 0 0 0))
  4455. (uuid 4c30afbf-2859-4f71-9bb0-0f25760a19c0)
  4456. )
  4457. (wire (pts (xy 249.555 218.44) (xy 262.255 218.44))
  4458. (stroke (width 0) (type default) (color 0 0 0 0))
  4459. (uuid 4c488793-d375-4d01-83d6-33ec0b02c639)
  4460. )
  4461. (wire (pts (xy 56.515 80.645) (xy 56.515 106.045))
  4462. (stroke (width 0) (type default) (color 0 0 0 0))
  4463. (uuid 4c6496ee-17e0-46ca-a7c9-93d6f843f61f)
  4464. )
  4465. (wire (pts (xy 171.45 85.09) (xy 180.34 85.09))
  4466. (stroke (width 0) (type default) (color 0 0 0 0))
  4467. (uuid 4cb957bd-0efb-4e2a-b926-a8681916b569)
  4468. )
  4469. (wire (pts (xy 277.495 151.13) (xy 277.495 154.94))
  4470. (stroke (width 0) (type default) (color 0 0 0 0))
  4471. (uuid 4e06f3bb-177d-46ec-b9b7-56bd6bf9b48e)
  4472. )
  4473. (wire (pts (xy 170.815 178.435) (xy 173.355 178.435))
  4474. (stroke (width 0) (type default) (color 0 0 0 0))
  4475. (uuid 4e08adfb-769c-4cbd-a39d-255028788d20)
  4476. )
  4477. (polyline (pts (xy 241.3 59.69) (xy 241.3 93.98))
  4478. (stroke (width 0) (type default) (color 0 0 0 0))
  4479. (uuid 4e105b80-2195-4849-a50c-53194479ecb7)
  4480. )
  4481. (wire (pts (xy 188.595 151.765) (xy 188.595 158.115))
  4482. (stroke (width 0) (type default) (color 0 0 0 0))
  4483. (uuid 4e836591-b02d-429a-95e5-1d3a54c8bf62)
  4484. )
  4485. (wire (pts (xy 362.585 151.13) (xy 362.585 153.67))
  4486. (stroke (width 0) (type default) (color 0 0 0 0))
  4487. (uuid 4fbc4438-b68d-4ded-88fb-f402c6aa2440)
  4488. )
  4489. (wire (pts (xy 255.27 78.74) (xy 257.175 78.74))
  4490. (stroke (width 0) (type default) (color 0 0 0 0))
  4491. (uuid 517dcb66-0778-41fc-9cd2-8754ac50ddb3)
  4492. )
  4493. (wire (pts (xy 124.46 240.665) (xy 124.46 242.57))
  4494. (stroke (width 0) (type default) (color 0 0 0 0))
  4495. (uuid 5185e476-77d0-461d-ab31-c1d864943c2e)
  4496. )
  4497. (wire (pts (xy 243.84 30.48) (xy 243.84 32.385))
  4498. (stroke (width 0) (type default) (color 0 0 0 0))
  4499. (uuid 52259dc3-975a-4417-a08e-ea9bbae5e5b8)
  4500. )
  4501. (wire (pts (xy 161.925 83.185) (xy 161.925 85.09))
  4502. (stroke (width 0) (type default) (color 0 0 0 0))
  4503. (uuid 52c38d6d-933c-4f82-8739-62f858e6e741)
  4504. )
  4505. (wire (pts (xy 292.735 148.59) (xy 280.035 148.59))
  4506. (stroke (width 0) (type default) (color 0 0 0 0))
  4507. (uuid 530ba506-b453-47ed-bf55-7eeb13948cb7)
  4508. )
  4509. (wire (pts (xy 52.705 73.025) (xy 52.705 88.265))
  4510. (stroke (width 0) (type default) (color 0 0 0 0))
  4511. (uuid 5338f90a-69fa-409d-b2e4-8e0395c6924c)
  4512. )
  4513. (polyline (pts (xy 149.86 59.69) (xy 201.295 59.69))
  4514. (stroke (width 0) (type default) (color 0 0 0 0))
  4515. (uuid 53424b57-b9da-45dc-a838-77033ba30373)
  4516. )
  4517. (polyline (pts (xy 84.455 16.51) (xy 86.36 16.51))
  4518. (stroke (width 0) (type default) (color 0 0 0 0))
  4519. (uuid 535a5bfe-7b43-4a1e-beac-0e5e56713dd3)
  4520. )
  4521. (wire (pts (xy 243.84 30.48) (xy 255.27 30.48))
  4522. (stroke (width 0) (type default) (color 0 0 0 0))
  4523. (uuid 53715bc0-b74d-41ee-af4b-11f6f51d7c7d)
  4524. )
  4525. (wire (pts (xy 280.035 156.21) (xy 292.735 156.21))
  4526. (stroke (width 0) (type default) (color 0 0 0 0))
  4527. (uuid 53ddf80a-ec6b-4b48-83a3-414d173b859e)
  4528. )
  4529. (wire (pts (xy 238.125 227.33) (xy 243.84 227.33))
  4530. (stroke (width 0) (type default) (color 0 0 0 0))
  4531. (uuid 53e532bd-f066-4f3b-a484-5e98588d7a5f)
  4532. )
  4533. (wire (pts (xy 347.345 191.77) (xy 347.345 192.405))
  4534. (stroke (width 0) (type default) (color 0 0 0 0))
  4535. (uuid 53faae55-a863-45db-a591-5ca28abf8ea0)
  4536. )
  4537. (wire (pts (xy 29.845 177.165) (xy 50.8 177.165))
  4538. (stroke (width 0) (type default) (color 0 0 0 0))
  4539. (uuid 54d60aa9-9d0e-4136-bd47-13670910ebf4)
  4540. )
  4541. (wire (pts (xy 80.645 127.635) (xy 83.185 127.635))
  4542. (stroke (width 0) (type default) (color 0 0 0 0))
  4543. (uuid 54db1fe7-bddf-4d60-9c34-1123cb82962e)
  4544. )
  4545. (wire (pts (xy 40.005 83.185) (xy 42.545 83.185))
  4546. (stroke (width 0) (type default) (color 0 0 0 0))
  4547. (uuid 55146450-4d7e-4b1c-94c8-15f4a894ac6e)
  4548. )
  4549. (polyline (pts (xy 403.86 170.815) (xy 403.86 83.185))
  4550. (stroke (width 0) (type default) (color 0 0 0 0))
  4551. (uuid 5571bd08-df8d-4394-9b10-eadfc0d72d48)
  4552. )
  4553. (wire (pts (xy 111.125 192.405) (xy 114.935 192.405))
  4554. (stroke (width 0) (type default) (color 0 0 0 0))
  4555. (uuid 5608ef17-65f3-423f-8127-371cf2b81d97)
  4556. )
  4557. (wire (pts (xy 111.125 240.665) (xy 124.46 240.665))
  4558. (stroke (width 0) (type default) (color 0 0 0 0))
  4559. (uuid 565a6b72-7700-4190-bc6a-2fec86784987)
  4560. )
  4561. (wire (pts (xy 121.285 271.145) (xy 121.285 271.78))
  4562. (stroke (width 0) (type default) (color 0 0 0 0))
  4563. (uuid 56a50fc7-fa83-4d9e-8950-309293ce36f8)
  4564. )
  4565. (wire (pts (xy 170.815 175.895) (xy 170.815 178.435))
  4566. (stroke (width 0) (type default) (color 0 0 0 0))
  4567. (uuid 571a8764-437f-4b96-9cce-a36a60e121b3)
  4568. )
  4569. (wire (pts (xy 233.68 30.48) (xy 243.84 30.48))
  4570. (stroke (width 0) (type default) (color 0 0 0 0))
  4571. (uuid 57488375-09bb-499b-bc2d-b8142192e895)
  4572. )
  4573. (wire (pts (xy 83.185 128.905) (xy 83.185 127.635))
  4574. (stroke (width 0) (type default) (color 0 0 0 0))
  4575. (uuid 57bff1ff-e6a1-4c79-b91c-1654e66eee5d)
  4576. )
  4577. (wire (pts (xy 379.73 148.59) (xy 393.7 148.59))
  4578. (stroke (width 0) (type default) (color 0 0 0 0))
  4579. (uuid 57e64cc6-965d-4d74-a59a-e5aa25591823)
  4580. )
  4581. (wire (pts (xy 93.345 266.065) (xy 93.345 268.605))
  4582. (stroke (width 0) (type default) (color 0 0 0 0))
  4583. (uuid 58059048-d6e3-4003-847f-0e689aea144e)
  4584. )
  4585. (wire (pts (xy 111.125 212.725) (xy 114.935 212.725))
  4586. (stroke (width 0) (type default) (color 0 0 0 0))
  4587. (uuid 594075b5-ec5f-499e-9904-07c9e4e93ae3)
  4588. )
  4589. (wire (pts (xy 171.45 126.365) (xy 173.99 126.365))
  4590. (stroke (width 0) (type default) (color 0 0 0 0))
  4591. (uuid 59e4b099-0411-4bf8-a428-63d11299e9fb)
  4592. )
  4593. (wire (pts (xy 272.415 235.585) (xy 274.955 235.585))
  4594. (stroke (width 0) (type default) (color 0 0 0 0))
  4595. (uuid 5a7692c0-4fd6-4d98-9fb0-165f36a6f585)
  4596. )
  4597. (wire (pts (xy 65.405 235.585) (xy 62.23 235.585))
  4598. (stroke (width 0) (type default) (color 0 0 0 0))
  4599. (uuid 5a78296f-7870-47c5-add0-59f0fb6502fc)
  4600. )
  4601. (wire (pts (xy 93.345 268.605) (xy 95.885 268.605))
  4602. (stroke (width 0) (type default) (color 0 0 0 0))
  4603. (uuid 5bb0c622-35f1-4390-8d16-535ed10cfeb8)
  4604. )
  4605. (wire (pts (xy 111.125 136.525) (xy 114.935 136.525))
  4606. (stroke (width 0) (type default) (color 0 0 0 0))
  4607. (uuid 5c42dfeb-d385-4b62-9897-cc9f2470f0cc)
  4608. )
  4609. (wire (pts (xy 111.125 255.905) (xy 128.27 255.905))
  4610. (stroke (width 0) (type default) (color 0 0 0 0))
  4611. (uuid 5c7b093e-7488-4429-b3df-8c7341cdc455)
  4612. )
  4613. (wire (pts (xy 276.86 30.48) (xy 288.29 30.48))
  4614. (stroke (width 0) (type default) (color 0 0 0 0))
  4615. (uuid 5d3f92a9-8218-4c90-93d4-23a051b95756)
  4616. )
  4617. (wire (pts (xy 231.14 160.655) (xy 231.14 161.925))
  4618. (stroke (width 0) (type default) (color 0 0 0 0))
  4619. (uuid 5db595cf-54f6-4fb0-a711-b5e53adc4e3a)
  4620. )
  4621. (wire (pts (xy 171.45 85.09) (xy 171.45 83.185))
  4622. (stroke (width 0) (type default) (color 0 0 0 0))
  4623. (uuid 5dd7575b-c69f-4bd6-84cb-ebeaf931fffd)
  4624. )
  4625. (wire (pts (xy 337.185 234.315) (xy 337.185 236.22))
  4626. (stroke (width 0) (type default) (color 0 0 0 0))
  4627. (uuid 5de4b7c2-3c6d-45e6-a2ae-ac820fe6e97e)
  4628. )
  4629. (wire (pts (xy 128.905 151.765) (xy 128.905 156.845))
  4630. (stroke (width 0) (type default) (color 0 0 0 0))
  4631. (uuid 5df61191-457b-4e0d-943d-c1fd3859a473)
  4632. )
  4633. (polyline (pts (xy 375.92 173.355) (xy 375.92 246.38))
  4634. (stroke (width 0) (type default) (color 0 0 0 0))
  4635. (uuid 5eae2239-154a-4e81-88a5-adc8681d03b6)
  4636. )
  4637. (wire (pts (xy 203.2 266.065) (xy 203.2 268.605))
  4638. (stroke (width 0) (type default) (color 0 0 0 0))
  4639. (uuid 5ed313f6-1d3c-415b-b056-9208f5f6603b)
  4640. )
  4641. (wire (pts (xy 347.98 36.195) (xy 347.98 39.37))
  4642. (stroke (width 0) (type default) (color 0 0 0 0))
  4643. (uuid 5f81b674-5ceb-4cf3-9396-c669cf1c2b35)
  4644. )
  4645. (wire (pts (xy 33.655 136.525) (xy 40.64 136.525))
  4646. (stroke (width 0) (type default) (color 0 0 0 0))
  4647. (uuid 5f8ed180-4a49-4e0e-bfe9-6469d4712170)
  4648. )
  4649. (wire (pts (xy 342.265 236.22) (xy 344.805 236.22))
  4650. (stroke (width 0) (type default) (color 0 0 0 0))
  4651. (uuid 5fd78e2c-89db-44bd-a60d-5c6ffeafa338)
  4652. )
  4653. (wire (pts (xy 189.23 37.465) (xy 189.23 40.64))
  4654. (stroke (width 0) (type default) (color 0 0 0 0))
  4655. (uuid 6048e352-762f-4513-be7c-aa78fac9cd37)
  4656. )
  4657. (wire (pts (xy 185.42 153.035) (xy 185.42 151.765))
  4658. (stroke (width 0) (type default) (color 0 0 0 0))
  4659. (uuid 604b936d-f6ca-422c-a449-4ad18fb590ab)
  4660. )
  4661. (wire (pts (xy 252.095 161.925) (xy 254 161.925))
  4662. (stroke (width 0) (type default) (color 0 0 0 0))
  4663. (uuid 605d1a47-f72d-48ed-9174-ffd78e4babee)
  4664. )
  4665. (wire (pts (xy 203.835 173.355) (xy 203.835 175.895))
  4666. (stroke (width 0) (type default) (color 0 0 0 0))
  4667. (uuid 607eeac0-ec98-4e77-a445-83934936c61a)
  4668. )
  4669. (wire (pts (xy 196.215 74.93) (xy 205.105 74.93))
  4670. (stroke (width 0) (type default) (color 0 0 0 0))
  4671. (uuid 60a55fb9-c267-49bd-8b71-8cb22d154310)
  4672. )
  4673. (polyline (pts (xy 86.36 56.515) (xy 84.455 56.515))
  4674. (stroke (width 0) (type default) (color 0 0 0 0))
  4675. (uuid 60af65ed-bf99-4156-b2a8-79fb2c543eef)
  4676. )
  4677. (wire (pts (xy 139.065 75.565) (xy 142.24 75.565))
  4678. (stroke (width 0) (type default) (color 0 0 0 0))
  4679. (uuid 60b372f2-2e05-4740-bb51-cafd2fa200f6)
  4680. )
  4681. (wire (pts (xy 274.955 233.68) (xy 274.955 235.585))
  4682. (stroke (width 0) (type default) (color 0 0 0 0))
  4683. (uuid 619c651a-f7e7-49ce-8643-3b4de2d666d9)
  4684. )
  4685. (wire (pts (xy 191.77 238.76) (xy 191.77 243.205))
  4686. (stroke (width 0) (type default) (color 0 0 0 0))
  4687. (uuid 61eeb03c-4c35-486b-9c23-586f609d22d3)
  4688. )
  4689. (polyline (pts (xy 375.92 246.38) (xy 224.155 246.38))
  4690. (stroke (width 0) (type default) (color 0 0 0 0))
  4691. (uuid 6236737b-de19-48ab-b83d-151f1829e180)
  4692. )
  4693. (wire (pts (xy 256.54 223.52) (xy 262.255 223.52))
  4694. (stroke (width 0) (type default) (color 0 0 0 0))
  4695. (uuid 62d4a997-eca7-4fef-8229-acbc28187683)
  4696. )
  4697. (wire (pts (xy 171.45 141.605) (xy 173.99 141.605))
  4698. (stroke (width 0) (type default) (color 0 0 0 0))
  4699. (uuid 6307b0f1-446f-495d-9830-e54c85e543cd)
  4700. )
  4701. (wire (pts (xy 111.125 151.765) (xy 114.3 151.765))
  4702. (stroke (width 0) (type default) (color 0 0 0 0))
  4703. (uuid 6419a24e-e935-4692-a5ed-1333ad136856)
  4704. )
  4705. (wire (pts (xy 200.66 253.365) (xy 203.835 253.365))
  4706. (stroke (width 0) (type default) (color 0 0 0 0))
  4707. (uuid 647c4cba-ca78-4f76-80fe-41aed04935f1)
  4708. )
  4709. (wire (pts (xy 201.93 133.985) (xy 204.47 133.985))
  4710. (stroke (width 0) (type default) (color 0 0 0 0))
  4711. (uuid 64a9ab04-8fdc-4eac-9536-1b551483fdaf)
  4712. )
  4713. (wire (pts (xy 65.405 189.865) (xy 62.23 189.865))
  4714. (stroke (width 0) (type default) (color 0 0 0 0))
  4715. (uuid 64c95646-b0a6-4353-a696-4e981061b49c)
  4716. )
  4717. (wire (pts (xy 81.28 31.75) (xy 81.28 40.64))
  4718. (stroke (width 0) (type default) (color 0 0 0 0))
  4719. (uuid 651f2bf1-dc61-46d1-85c6-fcc26ca5eb7d)
  4720. )
  4721. (polyline (pts (xy 149.86 102.235) (xy 149.86 280.67))
  4722. (stroke (width 0) (type default) (color 0 0 0 0))
  4723. (uuid 658cbc86-6fde-41c4-9044-a8425eefe75e)
  4724. )
  4725. (wire (pts (xy 171.45 128.905) (xy 173.99 128.905))
  4726. (stroke (width 0) (type default) (color 0 0 0 0))
  4727. (uuid 6652a7f3-1c0c-4dfa-932d-4f8dd7f3d63c)
  4728. )
  4729. (wire (pts (xy 81.915 93.345) (xy 84.455 93.345))
  4730. (stroke (width 0) (type default) (color 0 0 0 0))
  4731. (uuid 66698769-b64b-4ad0-8a3a-00f9b8ef55ce)
  4732. )
  4733. (wire (pts (xy 187.96 196.215) (xy 187.96 202.565))
  4734. (stroke (width 0) (type default) (color 0 0 0 0))
  4735. (uuid 66b50e1d-a709-415f-bbba-d9e5b0e2e68b)
  4736. )
  4737. (wire (pts (xy 379.73 153.67) (xy 393.7 153.67))
  4738. (stroke (width 0) (type default) (color 0 0 0 0))
  4739. (uuid 66f3cef0-5fec-48da-9e13-b9113ea57607)
  4740. )
  4741. (wire (pts (xy 243.84 37.465) (xy 243.84 40.64))
  4742. (stroke (width 0) (type default) (color 0 0 0 0))
  4743. (uuid 6701bf54-5e37-4a9b-afef-3d5239fe271f)
  4744. )
  4745. (wire (pts (xy 52.705 93.345) (xy 52.705 98.425))
  4746. (stroke (width 0) (type default) (color 0 0 0 0))
  4747. (uuid 67076be6-f16b-4d76-bf7e-22147f21f036)
  4748. )
  4749. (wire (pts (xy 349.885 234.315) (xy 349.885 236.22))
  4750. (stroke (width 0) (type default) (color 0 0 0 0))
  4751. (uuid 6729dede-1957-49de-845f-3ce50901f15a)
  4752. )
  4753. (wire (pts (xy 210.82 28.575) (xy 210.82 30.48))
  4754. (stroke (width 0) (type default) (color 0 0 0 0))
  4755. (uuid 677b7f7e-d06d-4b16-9d46-790ba55f52cd)
  4756. )
  4757. (wire (pts (xy 53.34 141.605) (xy 57.15 141.605))
  4758. (stroke (width 0) (type default) (color 0 0 0 0))
  4759. (uuid 685287d1-6068-44a2-8dfb-6fb0e7b0f282)
  4760. )
  4761. (wire (pts (xy 98.425 122.555) (xy 98.425 123.19))
  4762. (stroke (width 0) (type default) (color 0 0 0 0))
  4763. (uuid 69297a32-c18e-4120-8dfd-e1b97063a8aa)
  4764. )
  4765. (polyline (pts (xy 243.205 59.69) (xy 243.205 93.98))
  4766. (stroke (width 0) (type default) (color 0 0 0 0))
  4767. (uuid 69c043fc-96ee-4616-bb3c-79bac4f430be)
  4768. )
  4769. (wire (pts (xy 362.585 153.67) (xy 362.585 156.21))
  4770. (stroke (width 0) (type default) (color 0 0 0 0))
  4771. (uuid 69c36ae8-5dcc-4551-9706-db841c9e2b30)
  4772. )
  4773. (wire (pts (xy 266.7 40.64) (xy 276.86 40.64))
  4774. (stroke (width 0) (type default) (color 0 0 0 0))
  4775. (uuid 69e38f96-6055-478f-be42-37799bcb4fcc)
  4776. )
  4777. (wire (pts (xy 170.18 266.065) (xy 170.18 268.605))
  4778. (stroke (width 0) (type default) (color 0 0 0 0))
  4779. (uuid 6a230829-5e52-41de-bb79-2bbd870098a3)
  4780. )
  4781. (wire (pts (xy 295.275 201.93) (xy 299.72 201.93))
  4782. (stroke (width 0) (type default) (color 0 0 0 0))
  4783. (uuid 6a8ba60a-af03-482f-ba54-c0aa085e8c3b)
  4784. )
  4785. (polyline (pts (xy 347.345 83.185) (xy 347.345 170.815))
  4786. (stroke (width 0) (type default) (color 0 0 0 0))
  4787. (uuid 6b165f91-3725-4309-a838-8a8295bef37f)
  4788. )
  4789. (wire (pts (xy 362.585 130.81) (xy 367.03 130.81))
  4790. (stroke (width 0) (type default) (color 0 0 0 0))
  4791. (uuid 6b5294e3-2583-45c3-ba97-a6f82ade1206)
  4792. )
  4793. (wire (pts (xy 170.815 186.055) (xy 173.355 186.055))
  4794. (stroke (width 0) (type default) (color 0 0 0 0))
  4795. (uuid 6bd0930b-cefc-4f52-9766-73bcb14226ab)
  4796. )
  4797. (wire (pts (xy 362.585 128.27) (xy 362.585 130.81))
  4798. (stroke (width 0) (type default) (color 0 0 0 0))
  4799. (uuid 6cd5ece0-2d96-4e3b-bc7f-3ba7291f7335)
  4800. )
  4801. (wire (pts (xy 186.055 109.855) (xy 189.23 109.855))
  4802. (stroke (width 0) (type default) (color 0 0 0 0))
  4803. (uuid 6d00b895-e930-4241-90ab-074a0f1803b1)
  4804. )
  4805. (wire (pts (xy 276.86 30.48) (xy 276.86 32.385))
  4806. (stroke (width 0) (type default) (color 0 0 0 0))
  4807. (uuid 6dab4c12-d210-46fa-bdc9-6f88f8a9b87e)
  4808. )
  4809. (wire (pts (xy 95.885 127.635) (xy 95.885 128.905))
  4810. (stroke (width 0) (type default) (color 0 0 0 0))
  4811. (uuid 6df70303-a1ca-4c98-8cd4-7800286219a8)
  4812. )
  4813. (wire (pts (xy 139.065 73.025) (xy 142.24 73.025))
  4814. (stroke (width 0) (type default) (color 0 0 0 0))
  4815. (uuid 6e421eb3-1fb4-451a-8281-8aa50b75fd1b)
  4816. )
  4817. (wire (pts (xy 317.5 198.755) (xy 329.565 198.755))
  4818. (stroke (width 0) (type default) (color 0 0 0 0))
  4819. (uuid 6e8e4837-eb54-437b-b0f9-501cb65d849a)
  4820. )
  4821. (wire (pts (xy 201.295 170.815) (xy 203.835 170.815))
  4822. (stroke (width 0) (type default) (color 0 0 0 0))
  4823. (uuid 6f439b0f-755e-4cf9-9213-39fe1bc6ec37)
  4824. )
  4825. (wire (pts (xy 295.275 199.39) (xy 299.72 199.39))
  4826. (stroke (width 0) (type default) (color 0 0 0 0))
  4827. (uuid 6faba25e-8729-499b-9637-ecad3165ce24)
  4828. )
  4829. (wire (pts (xy 201.93 144.145) (xy 204.47 144.145))
  4830. (stroke (width 0) (type default) (color 0 0 0 0))
  4831. (uuid 6ff4e14e-79c5-4c62-9ff6-75ef6cccfeb4)
  4832. )
  4833. (wire (pts (xy 189.23 40.64) (xy 179.07 40.64))
  4834. (stroke (width 0) (type default) (color 0 0 0 0))
  4835. (uuid 700eea11-5bd7-49c0-973d-123303b24c1f)
  4836. )
  4837. (wire (pts (xy 111.125 167.005) (xy 114.935 167.005))
  4838. (stroke (width 0) (type default) (color 0 0 0 0))
  4839. (uuid 70592308-0bcd-4039-91a0-54285277ec93)
  4840. )
  4841. (wire (pts (xy 233.68 37.465) (xy 233.68 40.64))
  4842. (stroke (width 0) (type default) (color 0 0 0 0))
  4843. (uuid 706b5cf1-1a04-4f89-b2c9-4a6ccd4efcaa)
  4844. )
  4845. (wire (pts (xy 347.345 234.315) (xy 347.345 236.22))
  4846. (stroke (width 0) (type default) (color 0 0 0 0))
  4847. (uuid 7079e123-0252-4e99-90b0-b4e3c80ca69b)
  4848. )
  4849. (wire (pts (xy 367.03 200.025) (xy 367.03 202.565))
  4850. (stroke (width 0) (type default) (color 0 0 0 0))
  4851. (uuid 7108c922-0ce5-4618-9b3a-fd08d85ebc0f)
  4852. )
  4853. (polyline (pts (xy 151.765 56.515) (xy 307.34 56.515))
  4854. (stroke (width 0) (type default) (color 0 0 0 0))
  4855. (uuid 71232bfc-0d23-4c95-8699-d76c7d12148c)
  4856. )
  4857. (wire (pts (xy 171.45 131.445) (xy 173.99 131.445))
  4858. (stroke (width 0) (type default) (color 0 0 0 0))
  4859. (uuid 7143ead4-cb01-4dee-88a6-daafa8ca802f)
  4860. )
  4861. (wire (pts (xy 111.125 149.225) (xy 114.3 149.225))
  4862. (stroke (width 0) (type default) (color 0 0 0 0))
  4863. (uuid 71cbe3d5-b90d-460f-abc8-e3946adcd22f)
  4864. )
  4865. (wire (pts (xy 200.66 222.885) (xy 203.835 222.885))
  4866. (stroke (width 0) (type default) (color 0 0 0 0))
  4867. (uuid 71f086f1-8fec-41a1-b241-93469819b60a)
  4868. )
  4869. (wire (pts (xy 379.73 130.81) (xy 400.05 130.81))
  4870. (stroke (width 0) (type default) (color 0 0 0 0))
  4871. (uuid 7222144b-bb37-4ff5-af64-15b27f61dd19)
  4872. )
  4873. (wire (pts (xy 69.215 106.045) (xy 69.215 103.505))
  4874. (stroke (width 0) (type default) (color 0 0 0 0))
  4875. (uuid 724dd58c-5c22-44e5-b30c-2d94c8788496)
  4876. )
  4877. (wire (pts (xy 48.895 146.685) (xy 65.405 146.685))
  4878. (stroke (width 0) (type default) (color 0 0 0 0))
  4879. (uuid 7266d6cb-f566-40fd-9017-b4e4d1416dfb)
  4880. )
  4881. (wire (pts (xy 142.24 73.025) (xy 142.24 75.565))
  4882. (stroke (width 0) (type default) (color 0 0 0 0))
  4883. (uuid 72aa87c9-1130-4c1e-9558-ebe3550a72ff)
  4884. )
  4885. (wire (pts (xy 379.73 123.19) (xy 400.05 123.19))
  4886. (stroke (width 0) (type default) (color 0 0 0 0))
  4887. (uuid 72c7b5e3-e21f-4c07-9987-cb4cce8762b9)
  4888. )
  4889. (wire (pts (xy 102.235 33.655) (xy 102.235 32.385))
  4890. (stroke (width 0) (type default) (color 0 0 0 0))
  4891. (uuid 72ee0659-7653-4920-896c-184a10b8de06)
  4892. )
  4893. (wire (pts (xy 111.125 179.705) (xy 114.935 179.705))
  4894. (stroke (width 0) (type default) (color 0 0 0 0))
  4895. (uuid 730e45b1-4b0e-4b56-864c-5b623485c07d)
  4896. )
  4897. (wire (pts (xy 272.415 233.68) (xy 272.415 235.585))
  4898. (stroke (width 0) (type default) (color 0 0 0 0))
  4899. (uuid 742143f6-2bfb-421e-9a62-876b793e1bbb)
  4900. )
  4901. (wire (pts (xy 171.45 121.285) (xy 173.99 121.285))
  4902. (stroke (width 0) (type default) (color 0 0 0 0))
  4903. (uuid 74637f10-96af-4f1d-827d-6f0fc480c831)
  4904. )
  4905. (wire (pts (xy 108.585 32.385) (xy 108.585 33.655))
  4906. (stroke (width 0) (type default) (color 0 0 0 0))
  4907. (uuid 7471c920-881e-4291-afc1-c79b1e639344)
  4908. )
  4909. (polyline (pts (xy 147.32 56.515) (xy 147.32 16.51))
  4910. (stroke (width 0) (type default) (color 0 0 0 0))
  4911. (uuid 748fdca1-bbaa-4ba0-91b2-ae00f517128a)
  4912. )
  4913. (wire (pts (xy 142.24 75.565) (xy 142.24 78.105))
  4914. (stroke (width 0) (type default) (color 0 0 0 0))
  4915. (uuid 7491652d-887f-4206-b2f9-75f67b5c1ebb)
  4916. )
  4917. (wire (pts (xy 327.025 227.965) (xy 327.025 231.775))
  4918. (stroke (width 0) (type default) (color 0 0 0 0))
  4919. (uuid 750e6586-46ec-4e87-9d91-cd7ff71dac2c)
  4920. )
  4921. (wire (pts (xy 76.835 40.64) (xy 81.28 40.64))
  4922. (stroke (width 0) (type default) (color 0 0 0 0))
  4923. (uuid 757fde3a-90ce-4392-abc5-0c11c847a223)
  4924. )
  4925. (wire (pts (xy 362.585 100.33) (xy 367.03 100.33))
  4926. (stroke (width 0) (type default) (color 0 0 0 0))
  4927. (uuid 75cd314d-935e-4722-8df9-b530c070cd07)
  4928. )
  4929. (wire (pts (xy 108.585 38.735) (xy 108.585 40.005))
  4930. (stroke (width 0) (type default) (color 0 0 0 0))
  4931. (uuid 76278897-7a42-4853-bb13-9e4eb2a1479b)
  4932. )
  4933. (wire (pts (xy 326.39 76.835) (xy 328.295 76.835))
  4934. (stroke (width 0) (type default) (color 0 0 0 0))
  4935. (uuid 76b5945f-3cff-41e9-8e53-0961da5bf1ee)
  4936. )
  4937. (wire (pts (xy 170.18 227.965) (xy 172.72 227.965))
  4938. (stroke (width 0) (type default) (color 0 0 0 0))
  4939. (uuid 772c325a-bd2f-42dc-900d-292d17e6063f)
  4940. )
  4941. (polyline (pts (xy 347.345 83.185) (xy 403.86 83.185))
  4942. (stroke (width 0) (type default) (color 0 0 0 0))
  4943. (uuid 77416dfa-58c5-4175-ae9f-4f28e1be00ca)
  4944. )
  4945. (polyline (pts (xy 269.24 170.6816) (xy 269.24 96.52))
  4946. (stroke (width 0) (type default) (color 0 0 0 0))
  4947. (uuid 77b82267-6084-4d5a-92cc-5da3106547e0)
  4948. )
  4949. (wire (pts (xy 278.765 235.585) (xy 278.765 238.76))
  4950. (stroke (width 0) (type default) (color 0 0 0 0))
  4951. (uuid 77df2d48-6dbc-4133-9505-822a95923cb5)
  4952. )
  4953. (wire (pts (xy 169.545 255.905) (xy 172.72 255.905))
  4954. (stroke (width 0) (type default) (color 0 0 0 0))
  4955. (uuid 7879610e-6a46-4f47-a64a-a8871c2b1dd0)
  4956. )
  4957. (wire (pts (xy 65.405 233.045) (xy 62.23 233.045))
  4958. (stroke (width 0) (type default) (color 0 0 0 0))
  4959. (uuid 79097c73-d5f5-4029-82b6-68f7c771231c)
  4960. )
  4961. (wire (pts (xy 290.195 235.585) (xy 290.195 233.68))
  4962. (stroke (width 0) (type default) (color 0 0 0 0))
  4963. (uuid 796b78f9-e8c3-43db-ab90-39aa259934c8)
  4964. )
  4965. (wire (pts (xy 243.84 116.205) (xy 243.84 116.84))
  4966. (stroke (width 0) (type default) (color 0 0 0 0))
  4967. (uuid 7a2c3b3e-79d2-48e4-b041-58deaa7ee5e5)
  4968. )
  4969. (wire (pts (xy 299.72 199.39) (xy 299.72 201.93))
  4970. (stroke (width 0) (type default) (color 0 0 0 0))
  4971. (uuid 7a5d34de-0ed9-4e18-9c9c-88b6ef69cb1d)
  4972. )
  4973. (wire (pts (xy 111.125 189.865) (xy 114.935 189.865))
  4974. (stroke (width 0) (type default) (color 0 0 0 0))
  4975. (uuid 7b78858f-2192-4cc4-8fae-f53c8cbd95db)
  4976. )
  4977. (polyline (pts (xy 93.345 56.515) (xy 147.32 56.515))
  4978. (stroke (width 0) (type default) (color 0 0 0 0))
  4979. (uuid 7b7e4c58-fd02-485e-98f5-27638872f2f0)
  4980. )
  4981. (wire (pts (xy 114.935 263.525) (xy 114.935 261.62))
  4982. (stroke (width 0) (type default) (color 0 0 0 0))
  4983. (uuid 7b8a4151-8f2a-44fb-aaba-d77b47e8e587)
  4984. )
  4985. (wire (pts (xy 74.295 106.045) (xy 74.295 103.505))
  4986. (stroke (width 0) (type default) (color 0 0 0 0))
  4987. (uuid 7ba518cf-ea36-443e-99ef-2b91f7793eb2)
  4988. )
  4989. (wire (pts (xy 362.585 143.51) (xy 362.585 146.05))
  4990. (stroke (width 0) (type default) (color 0 0 0 0))
  4991. (uuid 7cf56e1b-2ca7-4924-8ba7-7091ae05b4f6)
  4992. )
  4993. (wire (pts (xy 203.2 225.425) (xy 203.2 227.965))
  4994. (stroke (width 0) (type default) (color 0 0 0 0))
  4995. (uuid 7d8ae37d-7dbc-432a-911a-89399b9d192f)
  4996. )
  4997. (wire (pts (xy 50.8 172.085) (xy 65.405 172.085))
  4998. (stroke (width 0) (type default) (color 0 0 0 0))
  4999. (uuid 7d9c3186-0a87-4491-b299-1d53eaefb5cf)
  5000. )
  5001. (wire (pts (xy 111.125 258.445) (xy 114.935 258.445))
  5002. (stroke (width 0) (type default) (color 0 0 0 0))
  5003. (uuid 7e0645d6-f78a-49b7-a9cb-4f2a2dbdd3e2)
  5004. )
  5005. (wire (pts (xy 203.835 178.435) (xy 203.835 180.975))
  5006. (stroke (width 0) (type default) (color 0 0 0 0))
  5007. (uuid 7e449ac1-285e-4e79-ae2d-bee9441a8711)
  5008. )
  5009. (polyline (pts (xy 41.275 56.515) (xy 41.275 16.51))
  5010. (stroke (width 0) (type default) (color 0 0 0 0))
  5011. (uuid 7eebcdea-fb0f-48bf-9d3d-579461ef01d1)
  5012. )
  5013. (wire (pts (xy 44.45 169.545) (xy 44.45 181.61))
  5014. (stroke (width 0) (type default) (color 0 0 0 0))
  5015. (uuid 7f52de80-a092-477d-9369-506458685522)
  5016. )
  5017. (polyline (pts (xy 113.665 88.265) (xy 146.05 88.265))
  5018. (stroke (width 0) (type default) (color 0 0 0 0))
  5019. (uuid 7f94773f-d28d-4f1b-b7b8-3dfedeabcf3b)
  5020. )
  5021. (wire (pts (xy 362.585 120.65) (xy 367.03 120.65))
  5022. (stroke (width 0) (type default) (color 0 0 0 0))
  5023. (uuid 7fa6a4c0-ce51-4514-9d03-77a90a5089f8)
  5024. )
  5025. (wire (pts (xy 201.295 186.055) (xy 203.835 186.055))
  5026. (stroke (width 0) (type default) (color 0 0 0 0))
  5027. (uuid 81464997-bfae-4d0f-96f5-2d3f1e654579)
  5028. )
  5029. (wire (pts (xy 298.45 40.64) (xy 298.45 37.465))
  5030. (stroke (width 0) (type default) (color 0 0 0 0))
  5031. (uuid 817599b9-1b88-4c9f-838f-19733c6137f8)
  5032. )
  5033. (wire (pts (xy 85.725 127.635) (xy 85.725 125.73))
  5034. (stroke (width 0) (type default) (color 0 0 0 0))
  5035. (uuid 81f50107-d047-4540-abfd-69d713c4ba4e)
  5036. )
  5037. (wire (pts (xy 277.495 191.135) (xy 278.765 191.135))
  5038. (stroke (width 0) (type default) (color 0 0 0 0))
  5039. (uuid 82161c78-981a-41bf-9392-ba007813c8c3)
  5040. )
  5041. (wire (pts (xy 278.765 191.135) (xy 280.035 191.135))
  5042. (stroke (width 0) (type default) (color 0 0 0 0))
  5043. (uuid 825f772a-5aa6-4f9d-9a26-0100f16f21b6)
  5044. )
  5045. (wire (pts (xy 379.73 118.11) (xy 400.05 118.11))
  5046. (stroke (width 0) (type default) (color 0 0 0 0))
  5047. (uuid 837505cc-04f5-48c3-b210-0520292d70d0)
  5048. )
  5049. (wire (pts (xy 29.845 177.165) (xy 29.845 181.61))
  5050. (stroke (width 0) (type default) (color 0 0 0 0))
  5051. (uuid 837c2539-a529-4b89-a8b2-c6184b483f9a)
  5052. )
  5053. (wire (pts (xy 111.125 146.685) (xy 114.3 146.685))
  5054. (stroke (width 0) (type default) (color 0 0 0 0))
  5055. (uuid 8388809c-dd00-4b8b-abfe-cc41e4c72588)
  5056. )
  5057. (wire (pts (xy 26.67 175.895) (xy 38.735 175.895))
  5058. (stroke (width 0) (type default) (color 0 0 0 0))
  5059. (uuid 84c9ae5c-3cc9-4db5-8ac3-772c12075039)
  5060. )
  5061. (wire (pts (xy 362.585 138.43) (xy 362.585 140.97))
  5062. (stroke (width 0) (type default) (color 0 0 0 0))
  5063. (uuid 84f7914c-6051-4b18-9906-f0c6e6120a90)
  5064. )
  5065. (wire (pts (xy 180.34 74.295) (xy 180.34 75.565))
  5066. (stroke (width 0) (type default) (color 0 0 0 0))
  5067. (uuid 85326aba-1c08-4efd-9369-f65c4cad0ed1)
  5068. )
  5069. (wire (pts (xy 347.345 236.22) (xy 349.885 236.22))
  5070. (stroke (width 0) (type default) (color 0 0 0 0))
  5071. (uuid 85364669-839f-4141-8a82-593af527d5f1)
  5072. )
  5073. (wire (pts (xy 98.425 128.27) (xy 98.425 128.905))
  5074. (stroke (width 0) (type default) (color 0 0 0 0))
  5075. (uuid 865a31b5-8792-4039-b9fe-1492a6bc935b)
  5076. )
  5077. (wire (pts (xy 379.73 95.25) (xy 393.7 95.25))
  5078. (stroke (width 0) (type default) (color 0 0 0 0))
  5079. (uuid 8660f1d6-3316-4de4-a570-31f9d07e46b3)
  5080. )
  5081. (wire (pts (xy 379.73 140.97) (xy 393.7 140.97))
  5082. (stroke (width 0) (type default) (color 0 0 0 0))
  5083. (uuid 86ca22d0-76f8-443e-99f2-6e0638ba1fa9)
  5084. )
  5085. (wire (pts (xy 362.585 95.25) (xy 362.585 97.79))
  5086. (stroke (width 0) (type default) (color 0 0 0 0))
  5087. (uuid 87c26716-eff5-4368-8862-b5682419d80d)
  5088. )
  5089. (wire (pts (xy 267.335 235.585) (xy 269.875 235.585))
  5090. (stroke (width 0) (type default) (color 0 0 0 0))
  5091. (uuid 8935a537-e58d-44a6-a61c-9bdff9461746)
  5092. )
  5093. (wire (pts (xy 344.805 191.77) (xy 346.075 191.77))
  5094. (stroke (width 0) (type default) (color 0 0 0 0))
  5095. (uuid 8940b223-d005-4aeb-898e-d4eb6e9b8bd7)
  5096. )
  5097. (wire (pts (xy 65.405 220.345) (xy 62.23 220.345))
  5098. (stroke (width 0) (type default) (color 0 0 0 0))
  5099. (uuid 896e6568-e344-4611-96a1-6e8f8053ee24)
  5100. )
  5101. (wire (pts (xy 65.405 227.965) (xy 62.23 227.965))
  5102. (stroke (width 0) (type default) (color 0 0 0 0))
  5103. (uuid 89f4ecc6-41a3-4750-9ae5-6c4bdac7c19e)
  5104. )
  5105. (wire (pts (xy 259.715 189.23) (xy 259.715 189.865))
  5106. (stroke (width 0) (type default) (color 0 0 0 0))
  5107. (uuid 8a25f53e-99fa-4b3b-a507-d9f4fe9dfa6f)
  5108. )
  5109. (wire (pts (xy 200.66 37.465) (xy 200.66 40.64))
  5110. (stroke (width 0) (type default) (color 0 0 0 0))
  5111. (uuid 8b40bfb5-e2fe-4487-9d35-c9b118930195)
  5112. )
  5113. (wire (pts (xy 220.345 83.82) (xy 238.125 83.82))
  5114. (stroke (width 0) (type default) (color 0 0 0 0))
  5115. (uuid 8bd72d47-aeb7-450d-acca-ccb14d6baac1)
  5116. )
  5117. (polyline (pts (xy 313.69 93.98) (xy 243.205 93.98))
  5118. (stroke (width 0) (type default) (color 0 0 0 0))
  5119. (uuid 8bdc8b75-2c27-42b9-bf6b-aeb6b13941aa)
  5120. )
  5121. (wire (pts (xy 251.46 223.52) (xy 256.54 223.52))
  5122. (stroke (width 0) (type default) (color 0 0 0 0))
  5123. (uuid 8d6c9644-64a4-49f3-8d80-27a4d9ac129f)
  5124. )
  5125. (wire (pts (xy 40.005 67.945) (xy 50.165 67.945))
  5126. (stroke (width 0) (type default) (color 0 0 0 0))
  5127. (uuid 8da905a8-8187-487e-9106-344be5491311)
  5128. )
  5129. (wire (pts (xy 362.585 97.79) (xy 367.03 97.79))
  5130. (stroke (width 0) (type default) (color 0 0 0 0))
  5131. (uuid 8e1a1786-971f-493b-a7f6-550d615c04fd)
  5132. )
  5133. (wire (pts (xy 29.845 191.135) (xy 38.735 191.135))
  5134. (stroke (width 0) (type default) (color 0 0 0 0))
  5135. (uuid 8e6e60c9-6f28-4e4e-9f53-1ab75f0b0df5)
  5136. )
  5137. (wire (pts (xy 40.64 136.525) (xy 65.405 136.525))
  5138. (stroke (width 0) (type default) (color 0 0 0 0))
  5139. (uuid 8e737771-89e8-4939-8a44-d7a0e29eccab)
  5140. )
  5141. (wire (pts (xy 288.29 40.64) (xy 298.45 40.64))
  5142. (stroke (width 0) (type default) (color 0 0 0 0))
  5143. (uuid 8ead8662-9e6e-4846-8ddc-d6a5dd2c0efb)
  5144. )
  5145. (wire (pts (xy 137.795 33.655) (xy 137.795 32.385))
  5146. (stroke (width 0) (type default) (color 0 0 0 0))
  5147. (uuid 8f390dbd-3c52-4750-b542-527261345989)
  5148. )
  5149. (wire (pts (xy 169.545 258.445) (xy 172.72 258.445))
  5150. (stroke (width 0) (type default) (color 0 0 0 0))
  5151. (uuid 8f6b2ee5-c212-4863-b3ec-494a60df1055)
  5152. )
  5153. (wire (pts (xy 203.2 263.525) (xy 203.2 266.065))
  5154. (stroke (width 0) (type default) (color 0 0 0 0))
  5155. (uuid 903746e5-a660-4375-bf40-ebfa62797ce0)
  5156. )
  5157. (wire (pts (xy 38.735 191.135) (xy 38.735 193.04))
  5158. (stroke (width 0) (type default) (color 0 0 0 0))
  5159. (uuid 90515f7a-9f3c-4736-84d0-535f69d6e072)
  5160. )
  5161. (wire (pts (xy 379.73 156.21) (xy 393.7 156.21))
  5162. (stroke (width 0) (type default) (color 0 0 0 0))
  5163. (uuid 90563470-fb15-49a0-bd03-654a03bb197b)
  5164. )
  5165. (wire (pts (xy 114.935 258.445) (xy 114.935 261.62))
  5166. (stroke (width 0) (type default) (color 0 0 0 0))
  5167. (uuid 91326d7e-f9ba-43dd-af37-929ab9244d32)
  5168. )
  5169. (wire (pts (xy 207.645 82.55) (xy 207.645 83.82))
  5170. (stroke (width 0) (type default) (color 0 0 0 0))
  5171. (uuid 91a6582d-c885-450f-87a6-af7126326a3e)
  5172. )
  5173. (wire (pts (xy 51.435 157.48) (xy 51.435 158.115))
  5174. (stroke (width 0) (type default) (color 0 0 0 0))
  5175. (uuid 9278818f-5ac4-4f61-9f83-c14979cc40a8)
  5176. )
  5177. (wire (pts (xy 231.775 73.025) (xy 231.775 74.93))
  5178. (stroke (width 0) (type default) (color 0 0 0 0))
  5179. (uuid 9313b593-3f87-45a1-9a1b-390f3dd75f18)
  5180. )
  5181. (wire (pts (xy 287.655 235.585) (xy 290.195 235.585))
  5182. (stroke (width 0) (type default) (color 0 0 0 0))
  5183. (uuid 947874e6-4939-4da8-a33e-3a798c790315)
  5184. )
  5185. (wire (pts (xy 386.08 27.305) (xy 386.08 31.115))
  5186. (stroke (width 0) (type default) (color 0 0 0 0))
  5187. (uuid 952ede4d-798e-4e37-a77c-f008e0d325c8)
  5188. )
  5189. (wire (pts (xy 59.055 93.345) (xy 61.595 93.345))
  5190. (stroke (width 0) (type default) (color 0 0 0 0))
  5191. (uuid 9599c404-619a-4291-923a-9a6d4b551804)
  5192. )
  5193. (wire (pts (xy 121.285 78.105) (xy 123.825 78.105))
  5194. (stroke (width 0) (type default) (color 0 0 0 0))
  5195. (uuid 95e9d86d-c0cd-44f0-b334-c388c8dbaae7)
  5196. )
  5197. (wire (pts (xy 34.925 169.545) (xy 29.845 169.545))
  5198. (stroke (width 0) (type default) (color 0 0 0 0))
  5199. (uuid 960b4517-64e9-4e21-9112-07edf5f0c682)
  5200. )
  5201. (wire (pts (xy 292.735 146.05) (xy 276.225 146.05))
  5202. (stroke (width 0) (type default) (color 0 0 0 0))
  5203. (uuid 96305798-f70e-497f-8e67-db5f376dd81d)
  5204. )
  5205. (wire (pts (xy 62.23 243.205) (xy 65.405 243.205))
  5206. (stroke (width 0) (type default) (color 0 0 0 0))
  5207. (uuid 96bc989e-50e7-41be-99ae-c9ccc0038e2e)
  5208. )
  5209. (polyline (pts (xy 314.579 59.69) (xy 314.579 93.98))
  5210. (stroke (width 0) (type default) (color 0 0 0 0))
  5211. (uuid 9727b85b-b090-4866-90bb-b353c117d263)
  5212. )
  5213. (wire (pts (xy 326.39 79.375) (xy 328.295 79.375))
  5214. (stroke (width 0) (type default) (color 0 0 0 0))
  5215. (uuid 98712ae7-952b-4e6a-a62d-79e9de707219)
  5216. )
  5217. (wire (pts (xy 170.815 186.055) (xy 170.815 187.96))
  5218. (stroke (width 0) (type default) (color 0 0 0 0))
  5219. (uuid 9938030e-5bf1-48bb-8ed4-58c2b5afaf4b)
  5220. )
  5221. (wire (pts (xy 231.14 161.925) (xy 236.855 161.925))
  5222. (stroke (width 0) (type default) (color 0 0 0 0))
  5223. (uuid 997db1f3-5ff5-441e-a8e0-b068493a6f36)
  5224. )
  5225. (wire (pts (xy 65.405 192.405) (xy 62.23 192.405))
  5226. (stroke (width 0) (type default) (color 0 0 0 0))
  5227. (uuid 998b4e56-370e-4b41-a8e4-80814e582181)
  5228. )
  5229. (wire (pts (xy 280.67 138.43) (xy 292.735 138.43))
  5230. (stroke (width 0) (type default) (color 0 0 0 0))
  5231. (uuid 9a298fbc-309c-48ba-a31f-f02e07925d93)
  5232. )
  5233. (wire (pts (xy 362.585 97.79) (xy 362.585 100.33))
  5234. (stroke (width 0) (type default) (color 0 0 0 0))
  5235. (uuid 9a51e425-7c7a-41af-a032-7f7453c42239)
  5236. )
  5237. (wire (pts (xy 170.18 271.145) (xy 172.72 271.145))
  5238. (stroke (width 0) (type default) (color 0 0 0 0))
  5239. (uuid 9a80beb9-1fd4-4fbd-aab4-53a09a662232)
  5240. )
  5241. (polyline (pts (xy 346.075 93.98) (xy 346.075 59.69))
  5242. (stroke (width 0) (type default) (color 0 0 0 0))
  5243. (uuid 9b18c7b7-712e-4fb9-b7bb-93fa05ce4411)
  5244. )
  5245. (wire (pts (xy 98.425 128.905) (xy 109.22 128.905))
  5246. (stroke (width 0) (type default) (color 0 0 0 0))
  5247. (uuid 9b1cb482-b2db-4d30-977d-487858991cec)
  5248. )
  5249. (wire (pts (xy 26.67 191.135) (xy 29.845 191.135))
  5250. (stroke (width 0) (type default) (color 0 0 0 0))
  5251. (uuid 9b8863c6-0a59-4a1f-8979-30e9fe8b4a2b)
  5252. )
  5253. (wire (pts (xy 362.585 140.97) (xy 367.03 140.97))
  5254. (stroke (width 0) (type default) (color 0 0 0 0))
  5255. (uuid 9ba9c28c-cf8e-40df-91e7-b2197948511e)
  5256. )
  5257. (polyline (pts (xy 224.79 97.79) (xy 224.79 170.6816))
  5258. (stroke (width 0) (type default) (color 0 0 0 0))
  5259. (uuid 9c0f4303-30b5-41c4-8bd4-d0a853b15f24)
  5260. )
  5261. (wire (pts (xy 200.66 215.265) (xy 203.835 215.265))
  5262. (stroke (width 0) (type default) (color 0 0 0 0))
  5263. (uuid 9cdaae91-3e76-417b-8f98-c0dae44b853b)
  5264. )
  5265. (wire (pts (xy 280.035 158.75) (xy 294.005 158.75))
  5266. (stroke (width 0) (type default) (color 0 0 0 0))
  5267. (uuid 9d13020f-10f0-4fb6-9d68-148db60117ce)
  5268. )
  5269. (wire (pts (xy 210.82 30.48) (xy 210.82 32.385))
  5270. (stroke (width 0) (type default) (color 0 0 0 0))
  5271. (uuid 9d2c7972-3738-42e2-8005-81b731b5b04a)
  5272. )
  5273. (wire (pts (xy 200.66 217.805) (xy 203.835 217.805))
  5274. (stroke (width 0) (type default) (color 0 0 0 0))
  5275. (uuid 9d681979-5815-424e-9d43-4de22510cb2d)
  5276. )
  5277. (wire (pts (xy 171.45 67.31) (xy 171.45 69.215))
  5278. (stroke (width 0) (type default) (color 0 0 0 0))
  5279. (uuid 9d72b232-a8b9-45ba-871d-237374eb4668)
  5280. )
  5281. (wire (pts (xy 171.45 118.745) (xy 173.99 118.745))
  5282. (stroke (width 0) (type default) (color 0 0 0 0))
  5283. (uuid 9da385c8-4708-4813-bfb1-be4c27bf5b48)
  5284. )
  5285. (wire (pts (xy 379.73 138.43) (xy 393.7 138.43))
  5286. (stroke (width 0) (type default) (color 0 0 0 0))
  5287. (uuid 9dbb841f-4c91-44a1-9c07-88ecee83cb6e)
  5288. )
  5289. (wire (pts (xy 111.125 202.565) (xy 114.935 202.565))
  5290. (stroke (width 0) (type default) (color 0 0 0 0))
  5291. (uuid 9dbcd870-b150-4e92-b2c7-b68ffc14cd0c)
  5292. )
  5293. (wire (pts (xy 170.815 170.815) (xy 173.355 170.815))
  5294. (stroke (width 0) (type default) (color 0 0 0 0))
  5295. (uuid 9de5c429-6b19-4024-87e4-d0a94ebc5790)
  5296. )
  5297. (wire (pts (xy 184.785 196.215) (xy 187.96 196.215))
  5298. (stroke (width 0) (type default) (color 0 0 0 0))
  5299. (uuid 9dfdbf64-c552-4745-ac85-8e45269539d3)
  5300. )
  5301. (wire (pts (xy 80.645 128.905) (xy 80.645 127.635))
  5302. (stroke (width 0) (type default) (color 0 0 0 0))
  5303. (uuid 9e13d343-7e43-4136-b393-d8dae5aacb75)
  5304. )
  5305. (wire (pts (xy 44.45 191.135) (xy 38.735 191.135))
  5306. (stroke (width 0) (type default) (color 0 0 0 0))
  5307. (uuid 9e5d782d-3fd7-4b80-a6c1-d7a7489ef047)
  5308. )
  5309. (polyline (pts (xy 149.86 93.98) (xy 149.86 59.69))
  5310. (stroke (width 0) (type default) (color 0 0 0 0))
  5311. (uuid 9e609b41-4a47-44f4-9eb9-3b50c371082e)
  5312. )
  5313. (wire (pts (xy 40.005 90.805) (xy 50.165 90.805))
  5314. (stroke (width 0) (type default) (color 0 0 0 0))
  5315. (uuid 9e7d28a4-6816-437c-847c-7300fb3e0f58)
  5316. )
  5317. (wire (pts (xy 362.585 100.33) (xy 362.585 102.87))
  5318. (stroke (width 0) (type default) (color 0 0 0 0))
  5319. (uuid 9ea1c4e5-d9c9-42cb-9b5d-af7c5be3ed19)
  5320. )
  5321. (wire (pts (xy 170.815 180.975) (xy 173.355 180.975))
  5322. (stroke (width 0) (type default) (color 0 0 0 0))
  5323. (uuid 9ef717ed-a600-4133-a0a0-a2154ad98dee)
  5324. )
  5325. (wire (pts (xy 292.735 143.51) (xy 280.035 143.51))
  5326. (stroke (width 0) (type default) (color 0 0 0 0))
  5327. (uuid 9f122fb9-58c0-415e-8dd9-ca565eadba5e)
  5328. )
  5329. (wire (pts (xy 292.735 140.97) (xy 280.035 140.97))
  5330. (stroke (width 0) (type default) (color 0 0 0 0))
  5331. (uuid 9fb06e67-f368-45cc-940b-51a88dc59762)
  5332. )
  5333. (wire (pts (xy 379.73 115.57) (xy 393.7 115.57))
  5334. (stroke (width 0) (type default) (color 0 0 0 0))
  5335. (uuid a0020408-9a54-465a-8688-53a9d28e3b04)
  5336. )
  5337. (wire (pts (xy 231.14 125.73) (xy 231.14 127))
  5338. (stroke (width 0) (type default) (color 0 0 0 0))
  5339. (uuid a015705c-4214-4641-9df5-b22624e44c0b)
  5340. )
  5341. (wire (pts (xy 48.895 156.845) (xy 48.895 157.48))
  5342. (stroke (width 0) (type default) (color 0 0 0 0))
  5343. (uuid a0643836-afd7-4505-a818-1b5add207ad0)
  5344. )
  5345. (wire (pts (xy 339.725 234.315) (xy 339.725 236.22))
  5346. (stroke (width 0) (type default) (color 0 0 0 0))
  5347. (uuid a085eea1-704f-4a76-aa42-e4ca7cf78ad4)
  5348. )
  5349. (wire (pts (xy 44.45 181.61) (xy 44.45 184.15))
  5350. (stroke (width 0) (type default) (color 0 0 0 0))
  5351. (uuid a0b7788d-041d-41a6-8c60-df9897345e9c)
  5352. )
  5353. (polyline (pts (xy 149.86 96.52) (xy 149.86 102.235))
  5354. (stroke (width 0) (type default) (color 0 0 0 0))
  5355. (uuid a10b87f8-29c6-424b-9001-ef5c255a801d)
  5356. )
  5357. (wire (pts (xy 201.295 183.515) (xy 203.835 183.515))
  5358. (stroke (width 0) (type default) (color 0 0 0 0))
  5359. (uuid a1b4542b-973d-4219-9804-114da26ae88a)
  5360. )
  5361. (wire (pts (xy 201.295 175.895) (xy 203.835 175.895))
  5362. (stroke (width 0) (type default) (color 0 0 0 0))
  5363. (uuid a1cf372e-28c7-4714-b8c7-d805568ae355)
  5364. )
  5365. (wire (pts (xy 170.815 168.275) (xy 173.355 168.275))
  5366. (stroke (width 0) (type default) (color 0 0 0 0))
  5367. (uuid a1da3970-e890-4fc5-9be7-69c8940225d3)
  5368. )
  5369. (wire (pts (xy 29.845 169.545) (xy 29.845 177.165))
  5370. (stroke (width 0) (type default) (color 0 0 0 0))
  5371. (uuid a1e12785-fe5e-468e-a7d6-1471769e3fc7)
  5372. )
  5373. (wire (pts (xy 189.23 28.575) (xy 189.23 30.48))
  5374. (stroke (width 0) (type default) (color 0 0 0 0))
  5375. (uuid a20fd6cb-031b-454a-9c0d-9bcb6b6e8103)
  5376. )
  5377. (wire (pts (xy 125.73 261.62) (xy 128.27 261.62))
  5378. (stroke (width 0) (type default) (color 0 0 0 0))
  5379. (uuid a210a6e4-b841-4f27-b91a-4539ff50174a)
  5380. )
  5381. (wire (pts (xy 189.23 109.855) (xy 189.23 116.205))
  5382. (stroke (width 0) (type default) (color 0 0 0 0))
  5383. (uuid a284fbce-9f2a-4883-a2a0-192a8f070c3c)
  5384. )
  5385. (wire (pts (xy 130.175 32.385) (xy 137.795 32.385))
  5386. (stroke (width 0) (type default) (color 0 0 0 0))
  5387. (uuid a319f9f3-343d-461b-abe2-bd69e3155580)
  5388. )
  5389. (wire (pts (xy 200.66 230.505) (xy 203.2 230.505))
  5390. (stroke (width 0) (type default) (color 0 0 0 0))
  5391. (uuid a321da22-0aaa-4802-81a7-9c06cfb9c1aa)
  5392. )
  5393. (polyline (pts (xy 91.44 56.515) (xy 93.345 56.515))
  5394. (stroke (width 0) (type default) (color 0 0 0 0))
  5395. (uuid a345b450-37ca-42f8-8b27-62053c278823)
  5396. )
  5397. (wire (pts (xy 26.67 34.29) (xy 29.21 34.29))
  5398. (stroke (width 0) (type default) (color 0 0 0 0))
  5399. (uuid a4064b7d-bdd9-45d9-b477-e6b342b3ab10)
  5400. )
  5401. (wire (pts (xy 303.53 77.47) (xy 304.8 77.47))
  5402. (stroke (width 0) (type default) (color 0 0 0 0))
  5403. (uuid a469407d-2077-4052-9a0d-0f7dc695d844)
  5404. )
  5405. (wire (pts (xy 346.075 191.77) (xy 347.345 191.77))
  5406. (stroke (width 0) (type default) (color 0 0 0 0))
  5407. (uuid a4716396-c348-4744-9602-2325b70edbc2)
  5408. )
  5409. (wire (pts (xy 362.585 102.87) (xy 367.03 102.87))
  5410. (stroke (width 0) (type default) (color 0 0 0 0))
  5411. (uuid a4a4fc46-71fe-442f-891e-02af1614d930)
  5412. )
  5413. (wire (pts (xy 170.18 248.285) (xy 172.72 248.285))
  5414. (stroke (width 0) (type default) (color 0 0 0 0))
  5415. (uuid a50954e0-1590-4677-9a74-2d99c7f3335f)
  5416. )
  5417. (wire (pts (xy 362.585 138.43) (xy 367.03 138.43))
  5418. (stroke (width 0) (type default) (color 0 0 0 0))
  5419. (uuid a58b0120-9338-439c-83b6-80b7ac8cd0ed)
  5420. )
  5421. (wire (pts (xy 400.05 123.19) (xy 400.05 128.27))
  5422. (stroke (width 0) (type default) (color 0 0 0 0))
  5423. (uuid a6186f88-9222-4049-8f42-55d3263e8f58)
  5424. )
  5425. (wire (pts (xy 327.025 189.865) (xy 327.025 190.5))
  5426. (stroke (width 0) (type default) (color 0 0 0 0))
  5427. (uuid a65b4dc8-cef8-4e2b-b519-618ca27b6d8a)
  5428. )
  5429. (wire (pts (xy 266.7 30.48) (xy 276.86 30.48))
  5430. (stroke (width 0) (type default) (color 0 0 0 0))
  5431. (uuid a6db3dc8-a430-462d-8ea6-5cc78759a536)
  5432. )
  5433. (wire (pts (xy 170.18 263.525) (xy 172.72 263.525))
  5434. (stroke (width 0) (type default) (color 0 0 0 0))
  5435. (uuid a6fee473-1711-48e3-83f7-1247cd72c40a)
  5436. )
  5437. (wire (pts (xy 201.93 141.605) (xy 204.47 141.605))
  5438. (stroke (width 0) (type default) (color 0 0 0 0))
  5439. (uuid a79fe82a-1323-44ee-bebd-5781f3eb3659)
  5440. )
  5441. (wire (pts (xy 362.585 143.51) (xy 367.03 143.51))
  5442. (stroke (width 0) (type default) (color 0 0 0 0))
  5443. (uuid a7b9fc31-ed18-46ce-9e26-ce97e3368dd1)
  5444. )
  5445. (wire (pts (xy 207.645 74.93) (xy 215.265 74.93))
  5446. (stroke (width 0) (type default) (color 0 0 0 0))
  5447. (uuid a80a19c8-4fcd-447b-8019-2abaab7c62e3)
  5448. )
  5449. (wire (pts (xy 170.18 225.425) (xy 170.18 227.965))
  5450. (stroke (width 0) (type default) (color 0 0 0 0))
  5451. (uuid a82830c7-3e3f-4a61-b4ff-eacb07510111)
  5452. )
  5453. (wire (pts (xy 200.66 260.985) (xy 203.835 260.985))
  5454. (stroke (width 0) (type default) (color 0 0 0 0))
  5455. (uuid a840a2b7-8d74-45c4-82bd-d4db4ad33aac)
  5456. )
  5457. (wire (pts (xy 201.295 178.435) (xy 203.835 178.435))
  5458. (stroke (width 0) (type default) (color 0 0 0 0))
  5459. (uuid a8b1d5e0-e71c-4574-8918-f05fca7e47d7)
  5460. )
  5461. (wire (pts (xy 362.585 110.49) (xy 367.03 110.49))
  5462. (stroke (width 0) (type default) (color 0 0 0 0))
  5463. (uuid a8ed5da6-f879-4a31-b6de-4cb80cd23923)
  5464. )
  5465. (wire (pts (xy 253.365 81.28) (xy 257.175 81.28))
  5466. (stroke (width 0) (type default) (color 0 0 0 0))
  5467. (uuid a9138101-ef1c-44a3-9da2-ce9cff72a141)
  5468. )
  5469. (wire (pts (xy 102.235 32.385) (xy 108.585 32.385))
  5470. (stroke (width 0) (type default) (color 0 0 0 0))
  5471. (uuid a9458c7d-6d59-4326-81c1-f40ea552cd0b)
  5472. )
  5473. (wire (pts (xy 93.345 127.635) (xy 93.345 128.905))
  5474. (stroke (width 0) (type default) (color 0 0 0 0))
  5475. (uuid a9b05b06-abc3-4bc3-bb33-020096d41198)
  5476. )
  5477. (wire (pts (xy 283.845 74.295) (xy 283.845 77.47))
  5478. (stroke (width 0) (type default) (color 0 0 0 0))
  5479. (uuid a9ca592a-b67b-4bd2-93ac-d2c50d3b570f)
  5480. )
  5481. (wire (pts (xy 90.805 127.635) (xy 93.345 127.635))
  5482. (stroke (width 0) (type default) (color 0 0 0 0))
  5483. (uuid a9d3a5be-e760-4a00-a174-6413e980f993)
  5484. )
  5485. (wire (pts (xy 249.555 200.66) (xy 262.255 200.66))
  5486. (stroke (width 0) (type default) (color 0 0 0 0))
  5487. (uuid ab2374ae-a0bc-4145-a302-79408f6cdfbe)
  5488. )
  5489. (wire (pts (xy 298.45 30.48) (xy 298.45 32.385))
  5490. (stroke (width 0) (type default) (color 0 0 0 0))
  5491. (uuid ab5032de-b095-46c4-9203-c3e249fdb8ed)
  5492. )
  5493. (wire (pts (xy 233.68 40.64) (xy 243.84 40.64))
  5494. (stroke (width 0) (type default) (color 0 0 0 0))
  5495. (uuid abd3191f-3e59-4e7b-92d7-e91d1b7fd7da)
  5496. )
  5497. (wire (pts (xy 400.05 128.27) (xy 400.05 130.81))
  5498. (stroke (width 0) (type default) (color 0 0 0 0))
  5499. (uuid ac261603-5336-4692-858c-6a924eba379b)
  5500. )
  5501. (wire (pts (xy 111.125 207.645) (xy 114.935 207.645))
  5502. (stroke (width 0) (type default) (color 0 0 0 0))
  5503. (uuid ac668a18-8e0f-4aa6-bfc1-4693101bd310)
  5504. )
  5505. (polyline (pts (xy 269.24 96.52) (xy 224.79 96.52))
  5506. (stroke (width 0) (type default) (color 0 0 0 0))
  5507. (uuid acb7f6ac-da80-43f8-9c01-bb7577fcf446)
  5508. )
  5509. (wire (pts (xy 90.805 268.605) (xy 93.345 268.605))
  5510. (stroke (width 0) (type default) (color 0 0 0 0))
  5511. (uuid acfe5383-8299-4bd1-b748-2dccfda7fd99)
  5512. )
  5513. (wire (pts (xy 180.34 67.31) (xy 180.34 69.215))
  5514. (stroke (width 0) (type default) (color 0 0 0 0))
  5515. (uuid ad4c8c6b-4f54-4b59-8cf8-b15b01440b26)
  5516. )
  5517. (wire (pts (xy 62.23 31.75) (xy 69.215 31.75))
  5518. (stroke (width 0) (type default) (color 0 0 0 0))
  5519. (uuid ad6059ff-6e40-435b-9375-a77a28227064)
  5520. )
  5521. (wire (pts (xy 84.455 93.345) (xy 84.455 95.885))
  5522. (stroke (width 0) (type default) (color 0 0 0 0))
  5523. (uuid add0649c-e974-495d-a5cd-7944fd079e83)
  5524. )
  5525. (wire (pts (xy 108.585 32.385) (xy 111.125 32.385))
  5526. (stroke (width 0) (type default) (color 0 0 0 0))
  5527. (uuid ae5b9ac5-e3af-4229-9b0a-fd24acdd6a7d)
  5528. )
  5529. (wire (pts (xy 231.14 142.875) (xy 231.14 144.145))
  5530. (stroke (width 0) (type default) (color 0 0 0 0))
  5531. (uuid ae889b31-41b6-4f6a-9d4c-d83fd6a151dd)
  5532. )
  5533. (wire (pts (xy 83.185 127.635) (xy 85.725 127.635))
  5534. (stroke (width 0) (type default) (color 0 0 0 0))
  5535. (uuid ae8deb39-6ce8-4292-9b6b-9606bf1e87fd)
  5536. )
  5537. (wire (pts (xy 243.84 133.35) (xy 243.84 133.985))
  5538. (stroke (width 0) (type default) (color 0 0 0 0))
  5539. (uuid aeb9ad6c-93a6-454b-947b-a8036aad9157)
  5540. )
  5541. (wire (pts (xy 170.18 245.745) (xy 172.72 245.745))
  5542. (stroke (width 0) (type default) (color 0 0 0 0))
  5543. (uuid aed0a390-e426-49e5-bea8-01421517d5de)
  5544. )
  5545. (wire (pts (xy 259.715 183.515) (xy 259.715 184.15))
  5546. (stroke (width 0) (type default) (color 0 0 0 0))
  5547. (uuid af500ee4-fcca-4579-880c-e5081a90b221)
  5548. )
  5549. (wire (pts (xy 362.585 156.21) (xy 367.03 156.21))
  5550. (stroke (width 0) (type default) (color 0 0 0 0))
  5551. (uuid af60c2f8-895e-49c3-aa09-31f11fe95403)
  5552. )
  5553. (wire (pts (xy 76.2 26.67) (xy 81.28 26.67))
  5554. (stroke (width 0) (type default) (color 0 0 0 0))
  5555. (uuid af714248-72ca-4300-96fb-d7aad236bb39)
  5556. )
  5557. (wire (pts (xy 357.505 36.195) (xy 357.505 39.37))
  5558. (stroke (width 0) (type default) (color 0 0 0 0))
  5559. (uuid b01f157c-49d7-493e-a413-26efe5898fc8)
  5560. )
  5561. (wire (pts (xy 114.935 261.62) (xy 118.11 261.62))
  5562. (stroke (width 0) (type default) (color 0 0 0 0))
  5563. (uuid b1e1decb-bdf6-4fcd-a976-c6b4ee3a015d)
  5564. )
  5565. (wire (pts (xy 288.29 37.465) (xy 288.29 40.64))
  5566. (stroke (width 0) (type default) (color 0 0 0 0))
  5567. (uuid b1fc9b08-96cf-436f-b78c-8456eb239bf9)
  5568. )
  5569. (wire (pts (xy 362.585 130.81) (xy 362.585 133.35))
  5570. (stroke (width 0) (type default) (color 0 0 0 0))
  5571. (uuid b2e00ee2-6d49-4eb1-8fef-e9f51613afd7)
  5572. )
  5573. (wire (pts (xy 201.93 139.065) (xy 204.47 139.065))
  5574. (stroke (width 0) (type default) (color 0 0 0 0))
  5575. (uuid b2e70d1a-803f-4d94-bfc0-894cafc6a9e0)
  5576. )
  5577. (wire (pts (xy 203.835 175.895) (xy 203.835 178.435))
  5578. (stroke (width 0) (type default) (color 0 0 0 0))
  5579. (uuid b3abdc10-2a47-4a67-823c-1e358912878f)
  5580. )
  5581. (wire (pts (xy 352.425 236.22) (xy 354.965 236.22))
  5582. (stroke (width 0) (type default) (color 0 0 0 0))
  5583. (uuid b3e8ac03-3041-42bc-9431-7a0bb3cc9de8)
  5584. )
  5585. (wire (pts (xy 282.575 233.68) (xy 282.575 235.585))
  5586. (stroke (width 0) (type default) (color 0 0 0 0))
  5587. (uuid b3fefca2-87b1-4dc8-8aba-74750b950eb5)
  5588. )
  5589. (wire (pts (xy 266.7 30.48) (xy 266.7 32.385))
  5590. (stroke (width 0) (type default) (color 0 0 0 0))
  5591. (uuid b4cda56c-c08e-42d9-9784-d0a6c383087d)
  5592. )
  5593. (wire (pts (xy 317.5 203.835) (xy 329.565 203.835))
  5594. (stroke (width 0) (type default) (color 0 0 0 0))
  5595. (uuid b4cef304-929b-4c25-8fb8-1545801355fa)
  5596. )
  5597. (wire (pts (xy 299.72 208.915) (xy 299.72 210.185))
  5598. (stroke (width 0) (type default) (color 0 0 0 0))
  5599. (uuid b50c7c22-4e22-406e-a197-964fc4cbc77b)
  5600. )
  5601. (polyline (pts (xy 307.34 56.515) (xy 307.34 16.51))
  5602. (stroke (width 0) (type default) (color 0 0 0 0))
  5603. (uuid b554713b-8484-4af4-a735-25a374436777)
  5604. )
  5605. (wire (pts (xy 26.67 34.29) (xy 26.67 36.195))
  5606. (stroke (width 0) (type default) (color 0 0 0 0))
  5607. (uuid b5c0b069-5d68-4b13-be00-40ef321180aa)
  5608. )
  5609. (wire (pts (xy 40.005 88.265) (xy 41.275 88.265))
  5610. (stroke (width 0) (type default) (color 0 0 0 0))
  5611. (uuid b5e23084-7279-4eda-b551-db97112ea173)
  5612. )
  5613. (wire (pts (xy 40.005 73.025) (xy 41.275 73.025))
  5614. (stroke (width 0) (type default) (color 0 0 0 0))
  5615. (uuid b6fc44af-c273-4cc9-b12c-220b8197f0cd)
  5616. )
  5617. (wire (pts (xy 184.785 236.855) (xy 184.785 238.125))
  5618. (stroke (width 0) (type default) (color 0 0 0 0))
  5619. (uuid b70c2f40-1890-4f76-86e1-c3358bfc5157)
  5620. )
  5621. (wire (pts (xy 379.73 113.03) (xy 393.7 113.03))
  5622. (stroke (width 0) (type default) (color 0 0 0 0))
  5623. (uuid b84b996e-2c5c-4386-ad25-f1fc8b95ab58)
  5624. )
  5625. (wire (pts (xy 191.77 198.12) (xy 191.77 202.565))
  5626. (stroke (width 0) (type default) (color 0 0 0 0))
  5627. (uuid b91c0d44-9909-4d32-a6d5-0ca9781a07de)
  5628. )
  5629. (wire (pts (xy 62.23 141.605) (xy 65.405 141.605))
  5630. (stroke (width 0) (type default) (color 0 0 0 0))
  5631. (uuid b98a13f0-35d3-43e9-a7d3-d7c32f74b146)
  5632. )
  5633. (wire (pts (xy 278.765 235.585) (xy 280.035 235.585))
  5634. (stroke (width 0) (type default) (color 0 0 0 0))
  5635. (uuid ba6307ab-34b4-462f-aa0b-3910fa9105d4)
  5636. )
  5637. (wire (pts (xy 171.45 144.145) (xy 173.99 144.145))
  5638. (stroke (width 0) (type default) (color 0 0 0 0))
  5639. (uuid bb13dc72-f204-490b-a10d-cb4731a489fa)
  5640. )
  5641. (wire (pts (xy 400.05 118.11) (xy 400.05 120.65))
  5642. (stroke (width 0) (type default) (color 0 0 0 0))
  5643. (uuid bb7c7038-8fd8-4519-9f07-3d6e261570db)
  5644. )
  5645. (wire (pts (xy 121.285 70.485) (xy 123.825 70.485))
  5646. (stroke (width 0) (type default) (color 0 0 0 0))
  5647. (uuid bbf09145-3445-4b8f-8a79-7ed199cb39f4)
  5648. )
  5649. (wire (pts (xy 111.125 174.625) (xy 115.57 174.625))
  5650. (stroke (width 0) (type default) (color 0 0 0 0))
  5651. (uuid bc3b156e-77e3-48f6-a2eb-93cfa578060a)
  5652. )
  5653. (wire (pts (xy 90.805 127.635) (xy 90.805 128.905))
  5654. (stroke (width 0) (type default) (color 0 0 0 0))
  5655. (uuid bc5f0e95-0b95-4652-aebe-a2954c201f71)
  5656. )
  5657. (wire (pts (xy 379.73 100.33) (xy 393.7 100.33))
  5658. (stroke (width 0) (type default) (color 0 0 0 0))
  5659. (uuid bc60081a-ce1f-4023-bc88-48d06e81e627)
  5660. )
  5661. (wire (pts (xy 317.5 211.455) (xy 329.565 211.455))
  5662. (stroke (width 0) (type default) (color 0 0 0 0))
  5663. (uuid bd7b2a6c-6c9c-4197-a210-186e09c30753)
  5664. )
  5665. (wire (pts (xy 362.585 113.03) (xy 362.585 115.57))
  5666. (stroke (width 0) (type default) (color 0 0 0 0))
  5667. (uuid bd849a27-3464-4231-bc41-cd6346f4f3d8)
  5668. )
  5669. (wire (pts (xy 85.725 127.635) (xy 88.265 127.635))
  5670. (stroke (width 0) (type default) (color 0 0 0 0))
  5671. (uuid bda15293-4a0f-4486-8469-66533d74fd50)
  5672. )
  5673. (wire (pts (xy 256.54 232.41) (xy 256.54 233.045))
  5674. (stroke (width 0) (type default) (color 0 0 0 0))
  5675. (uuid be0e07ed-38cf-432d-b79b-01e40254980e)
  5676. )
  5677. (wire (pts (xy 210.82 40.64) (xy 210.82 42.545))
  5678. (stroke (width 0) (type default) (color 0 0 0 0))
  5679. (uuid be4fb21d-37a0-488e-ab27-133c1ea9feaa)
  5680. )
  5681. (wire (pts (xy 83.185 268.605) (xy 85.725 268.605))
  5682. (stroke (width 0) (type default) (color 0 0 0 0))
  5683. (uuid be7a2e6b-8f42-4a47-b411-9a7a13770635)
  5684. )
  5685. (wire (pts (xy 169.545 215.265) (xy 172.72 215.265))
  5686. (stroke (width 0) (type default) (color 0 0 0 0))
  5687. (uuid be81610a-f812-4153-80bf-966fe54ba6e0)
  5688. )
  5689. (wire (pts (xy 324.485 71.12) (xy 324.485 74.295))
  5690. (stroke (width 0) (type default) (color 0 0 0 0))
  5691. (uuid bf0bb562-c62c-4368-824d-8a0fb55583cd)
  5692. )
  5693. (wire (pts (xy 362.585 140.97) (xy 362.585 143.51))
  5694. (stroke (width 0) (type default) (color 0 0 0 0))
  5695. (uuid bf4cd4e1-012f-42b7-8c27-76a7b81a4f28)
  5696. )
  5697. (wire (pts (xy 26.67 162.56) (xy 26.67 175.895))
  5698. (stroke (width 0) (type default) (color 0 0 0 0))
  5699. (uuid bfaae7b7-8c52-45e7-88ba-e877bc19a996)
  5700. )
  5701. (wire (pts (xy 376.555 27.305) (xy 376.555 31.115))
  5702. (stroke (width 0) (type default) (color 0 0 0 0))
  5703. (uuid bfc04f77-0120-4aa4-b95d-8a404444d162)
  5704. )
  5705. (wire (pts (xy 192.405 153.67) (xy 192.405 158.115))
  5706. (stroke (width 0) (type default) (color 0 0 0 0))
  5707. (uuid c0b3b927-aca0-46e9-ab42-989032f6e88d)
  5708. )
  5709. (wire (pts (xy 200.66 30.48) (xy 200.66 32.385))
  5710. (stroke (width 0) (type default) (color 0 0 0 0))
  5711. (uuid c11f6c27-ccb3-4cae-af29-7b06298d7a97)
  5712. )
  5713. (wire (pts (xy 362.585 151.13) (xy 367.03 151.13))
  5714. (stroke (width 0) (type default) (color 0 0 0 0))
  5715. (uuid c12a5c38-05ef-4291-a13b-db4f357adc96)
  5716. )
  5717. (wire (pts (xy 48.895 151.765) (xy 48.895 146.685))
  5718. (stroke (width 0) (type default) (color 0 0 0 0))
  5719. (uuid c1339209-3c86-436d-9db9-a6644d653065)
  5720. )
  5721. (wire (pts (xy 170.815 173.355) (xy 173.355 173.355))
  5722. (stroke (width 0) (type default) (color 0 0 0 0))
  5723. (uuid c135ce5c-90df-490c-ab8c-f6fc0550c13e)
  5724. )
  5725. (wire (pts (xy 76.835 67.945) (xy 93.345 67.945))
  5726. (stroke (width 0) (type default) (color 0 0 0 0))
  5727. (uuid c14caf20-13cb-4b35-af14-60e71f4eda1a)
  5728. )
  5729. (wire (pts (xy 118.745 40.005) (xy 118.745 41.275))
  5730. (stroke (width 0) (type default) (color 0 0 0 0))
  5731. (uuid c15455a0-f8c2-49e6-8d16-90a3eac0c843)
  5732. )
  5733. (polyline (pts (xy 113.665 59.69) (xy 113.665 88.265))
  5734. (stroke (width 0) (type default) (color 0 0 0 0))
  5735. (uuid c2105b4b-c68c-4770-88af-4d294d21d2e3)
  5736. )
  5737. (wire (pts (xy 362.585 153.67) (xy 367.03 153.67))
  5738. (stroke (width 0) (type default) (color 0 0 0 0))
  5739. (uuid c2635656-e469-45cb-9027-90ff43ddff7a)
  5740. )
  5741. (wire (pts (xy 285.115 235.585) (xy 287.655 235.585))
  5742. (stroke (width 0) (type default) (color 0 0 0 0))
  5743. (uuid c335c56d-f6e0-458b-8457-791810462c34)
  5744. )
  5745. (wire (pts (xy 346.075 191.77) (xy 346.075 190.5))
  5746. (stroke (width 0) (type default) (color 0 0 0 0))
  5747. (uuid c43d509f-d344-445d-8ca2-6081fc20fa89)
  5748. )
  5749. (wire (pts (xy 352.425 234.315) (xy 352.425 236.22))
  5750. (stroke (width 0) (type default) (color 0 0 0 0))
  5751. (uuid c44fc891-6c5a-4d6f-aa0c-1abdd616780d)
  5752. )
  5753. (wire (pts (xy 65.405 238.125) (xy 62.23 238.125))
  5754. (stroke (width 0) (type default) (color 0 0 0 0))
  5755. (uuid c50b731d-f413-42d2-a8f6-0342c08e406f)
  5756. )
  5757. (polyline (pts (xy 314.579 93.98) (xy 346.075 93.98))
  5758. (stroke (width 0) (type default) (color 0 0 0 0))
  5759. (uuid c5457a4e-c991-465a-89d6-9ba859318ad6)
  5760. )
  5761. (wire (pts (xy 53.34 149.225) (xy 65.405 149.225))
  5762. (stroke (width 0) (type default) (color 0 0 0 0))
  5763. (uuid c54cc5f5-c1e2-4321-a84b-76cc03902979)
  5764. )
  5765. (wire (pts (xy 40.005 75.565) (xy 47.625 75.565))
  5766. (stroke (width 0) (type default) (color 0 0 0 0))
  5767. (uuid c58fe7bf-8c92-4eb4-a124-b478552710bd)
  5768. )
  5769. (wire (pts (xy 203.2 268.605) (xy 203.2 271.145))
  5770. (stroke (width 0) (type default) (color 0 0 0 0))
  5771. (uuid c5baa882-7a0a-4437-a96e-e9bd18a07740)
  5772. )
  5773. (wire (pts (xy 52.705 88.265) (xy 52.705 93.345))
  5774. (stroke (width 0) (type default) (color 0 0 0 0))
  5775. (uuid c5d9a6f8-ef5c-4a63-9eaa-27003bbdf242)
  5776. )
  5777. (wire (pts (xy 169.545 212.725) (xy 172.72 212.725))
  5778. (stroke (width 0) (type default) (color 0 0 0 0))
  5779. (uuid c5ee6eda-2d17-4c8f-85a6-12d64c0f7c6d)
  5780. )
  5781. (wire (pts (xy 303.53 80.01) (xy 304.8 80.01))
  5782. (stroke (width 0) (type default) (color 0 0 0 0))
  5783. (uuid c66e9e2a-b279-47ce-a70e-4000aa47420d)
  5784. )
  5785. (wire (pts (xy 248.92 223.52) (xy 251.46 223.52))
  5786. (stroke (width 0) (type default) (color 0 0 0 0))
  5787. (uuid c67a9af4-f04b-4df8-a7ce-259131904969)
  5788. )
  5789. (wire (pts (xy 362.585 133.35) (xy 362.585 135.89))
  5790. (stroke (width 0) (type default) (color 0 0 0 0))
  5791. (uuid c7ba86bb-4cf1-4135-b430-b58cdd31e260)
  5792. )
  5793. (wire (pts (xy 251.46 109.855) (xy 253.365 109.855))
  5794. (stroke (width 0) (type default) (color 0 0 0 0))
  5795. (uuid c8107f5f-e157-4f8d-b2b9-bc9c6d821aa5)
  5796. )
  5797. (wire (pts (xy 349.885 236.22) (xy 352.425 236.22))
  5798. (stroke (width 0) (type default) (color 0 0 0 0))
  5799. (uuid c8a5c1c2-385e-46b3-bf15-24a73e281763)
  5800. )
  5801. (wire (pts (xy 160.655 24.13) (xy 160.655 24.765))
  5802. (stroke (width 0) (type default) (color 0 0 0 0))
  5803. (uuid c946ab72-735d-4176-aa71-d7cd3d679cb6)
  5804. )
  5805. (wire (pts (xy 362.585 200.025) (xy 367.03 200.025))
  5806. (stroke (width 0) (type default) (color 0 0 0 0))
  5807. (uuid c995db46-2fbe-4287-8125-74261b13363f)
  5808. )
  5809. (wire (pts (xy 255.27 30.48) (xy 255.27 32.385))
  5810. (stroke (width 0) (type default) (color 0 0 0 0))
  5811. (uuid ca501a6f-aba9-43e0-b7d3-54f4c0c12e49)
  5812. )
  5813. (wire (pts (xy 179.07 40.64) (xy 179.07 37.465))
  5814. (stroke (width 0) (type default) (color 0 0 0 0))
  5815. (uuid ca6b6b7a-70dc-483f-9690-716d67e5fa80)
  5816. )
  5817. (wire (pts (xy 53.34 151.765) (xy 53.34 149.225))
  5818. (stroke (width 0) (type default) (color 0 0 0 0))
  5819. (uuid ca84f9e5-1bd1-4251-93ed-3966b62c022f)
  5820. )
  5821. (wire (pts (xy 266.7 37.465) (xy 266.7 40.64))
  5822. (stroke (width 0) (type default) (color 0 0 0 0))
  5823. (uuid cae516a3-fab6-4bb1-8376-85537eaac633)
  5824. )
  5825. (wire (pts (xy 249.555 210.82) (xy 262.255 210.82))
  5826. (stroke (width 0) (type default) (color 0 0 0 0))
  5827. (uuid caf1eb99-d4eb-4141-bfbd-75426839195b)
  5828. )
  5829. (wire (pts (xy 288.29 30.48) (xy 298.45 30.48))
  5830. (stroke (width 0) (type default) (color 0 0 0 0))
  5831. (uuid caf538e1-6f23-4db4-8550-17eb69891451)
  5832. )
  5833. (wire (pts (xy 130.175 33.655) (xy 130.175 32.385))
  5834. (stroke (width 0) (type default) (color 0 0 0 0))
  5835. (uuid cb0859e2-4367-4eb6-a63c-33edcbe9b623)
  5836. )
  5837. (wire (pts (xy 288.29 82.55) (xy 288.29 83.185))
  5838. (stroke (width 0) (type default) (color 0 0 0 0))
  5839. (uuid cb78a5a5-23c5-4051-a29e-edb51bbbe10b)
  5840. )
  5841. (wire (pts (xy 362.585 105.41) (xy 362.585 107.95))
  5842. (stroke (width 0) (type default) (color 0 0 0 0))
  5843. (uuid cb935c7b-bcec-4630-a0e8-016dc29dc182)
  5844. )
  5845. (wire (pts (xy 38.735 174.625) (xy 38.735 175.895))
  5846. (stroke (width 0) (type default) (color 0 0 0 0))
  5847. (uuid cbedae76-c5ff-4803-b4b9-c87aabd0a33f)
  5848. )
  5849. (wire (pts (xy 170.815 160.655) (xy 173.355 160.655))
  5850. (stroke (width 0) (type default) (color 0 0 0 0))
  5851. (uuid cd936423-a0f0-45a4-9d0b-ee7971f699b5)
  5852. )
  5853. (wire (pts (xy 337.185 236.22) (xy 339.725 236.22))
  5854. (stroke (width 0) (type default) (color 0 0 0 0))
  5855. (uuid cde7e9a5-d73c-42f9-a872-5d8c4fd1cb07)
  5856. )
  5857. (wire (pts (xy 128.27 255.905) (xy 128.27 261.62))
  5858. (stroke (width 0) (type default) (color 0 0 0 0))
  5859. (uuid ce14553c-d8f6-48bd-a37c-917b3731b67c)
  5860. )
  5861. (wire (pts (xy 379.73 143.51) (xy 393.7 143.51))
  5862. (stroke (width 0) (type default) (color 0 0 0 0))
  5863. (uuid ce23ce1f-3546-41e5-a5b3-a0dc4c4bdb39)
  5864. )
  5865. (wire (pts (xy 50.165 67.945) (xy 59.055 67.945))
  5866. (stroke (width 0) (type default) (color 0 0 0 0))
  5867. (uuid ce4c994d-9a97-498f-9ed1-31d051eacba1)
  5868. )
  5869. (wire (pts (xy 317.5 213.995) (xy 329.565 213.995))
  5870. (stroke (width 0) (type default) (color 0 0 0 0))
  5871. (uuid cf2dd0b9-fd63-4721-8f25-fe1f4bf9d7f8)
  5872. )
  5873. (wire (pts (xy 200.66 220.345) (xy 203.835 220.345))
  5874. (stroke (width 0) (type default) (color 0 0 0 0))
  5875. (uuid cfabb8fa-2e49-4b2b-aa17-d588548c026c)
  5876. )
  5877. (wire (pts (xy 379.73 105.41) (xy 393.7 105.41))
  5878. (stroke (width 0) (type default) (color 0 0 0 0))
  5879. (uuid d013f472-d6eb-4415-8b55-ca9bbe6edc41)
  5880. )
  5881. (wire (pts (xy 238.125 223.52) (xy 243.84 223.52))
  5882. (stroke (width 0) (type default) (color 0 0 0 0))
  5883. (uuid d05c0bdd-9a1f-4559-b934-8e7211a73cf1)
  5884. )
  5885. (wire (pts (xy 171.45 133.985) (xy 173.99 133.985))
  5886. (stroke (width 0) (type default) (color 0 0 0 0))
  5887. (uuid d05ea51e-baac-4338-add5-db460a6a9bd5)
  5888. )
  5889. (polyline (pts (xy 347.345 170.815) (xy 403.86 170.815))
  5890. (stroke (width 0) (type default) (color 0 0 0 0))
  5891. (uuid d0686a5e-c414-4b0e-9789-e3e19411e498)
  5892. )
  5893. (wire (pts (xy 288.29 30.48) (xy 288.29 32.385))
  5894. (stroke (width 0) (type default) (color 0 0 0 0))
  5895. (uuid d06a519b-9ffa-40c0-a9e1-3fdc2dcf1b2a)
  5896. )
  5897. (wire (pts (xy 288.29 82.55) (xy 290.83 82.55))
  5898. (stroke (width 0) (type default) (color 0 0 0 0))
  5899. (uuid d0a079b1-29bc-42c5-9420-1f723db14cac)
  5900. )
  5901. (wire (pts (xy 47.625 80.645) (xy 56.515 80.645))
  5902. (stroke (width 0) (type default) (color 0 0 0 0))
  5903. (uuid d0b88ea9-e3b6-4934-bf62-97ce68f8f586)
  5904. )
  5905. (wire (pts (xy 354.965 234.315) (xy 354.965 236.22))
  5906. (stroke (width 0) (type default) (color 0 0 0 0))
  5907. (uuid d11714d6-6373-468f-8d31-19cb12cb7a5d)
  5908. )
  5909. (wire (pts (xy 362.585 118.11) (xy 367.03 118.11))
  5910. (stroke (width 0) (type default) (color 0 0 0 0))
  5911. (uuid d15de62d-a72f-4a11-bc27-e846a6167c42)
  5912. )
  5913. (wire (pts (xy 210.82 37.465) (xy 210.82 40.64))
  5914. (stroke (width 0) (type default) (color 0 0 0 0))
  5915. (uuid d1eacb10-654a-460d-b9a7-bbb8e955b20b)
  5916. )
  5917. (wire (pts (xy 317.5 216.535) (xy 329.565 216.535))
  5918. (stroke (width 0) (type default) (color 0 0 0 0))
  5919. (uuid d238c96d-f769-44e7-8e85-fca4936593ef)
  5920. )
  5921. (wire (pts (xy 362.585 128.27) (xy 367.03 128.27))
  5922. (stroke (width 0) (type default) (color 0 0 0 0))
  5923. (uuid d272b0a7-940f-403e-bb8f-ad70c35683cd)
  5924. )
  5925. (wire (pts (xy 95.885 28.575) (xy 95.885 32.385))
  5926. (stroke (width 0) (type default) (color 0 0 0 0))
  5927. (uuid d28c9e30-86e6-4832-aebe-4204e892219b)
  5928. )
  5929. (wire (pts (xy 85.725 266.065) (xy 85.725 268.605))
  5930. (stroke (width 0) (type default) (color 0 0 0 0))
  5931. (uuid d2a3f729-da4d-408b-ae59-e60868126085)
  5932. )
  5933. (polyline (pts (xy 220.345 96.52) (xy 220.345 102.235))
  5934. (stroke (width 0) (type default) (color 0 0 0 0))
  5935. (uuid d354c671-94f5-4fda-9883-c915995fa62b)
  5936. )
  5937. (wire (pts (xy 40.005 181.61) (xy 44.45 181.61))
  5938. (stroke (width 0) (type default) (color 0 0 0 0))
  5939. (uuid d39dd1a8-7667-414d-a5a4-0f53a84a9ae6)
  5940. )
  5941. (wire (pts (xy 170.18 266.065) (xy 172.72 266.065))
  5942. (stroke (width 0) (type default) (color 0 0 0 0))
  5943. (uuid d3cf5932-605a-47f3-b055-c4449f35d9e5)
  5944. )
  5945. (wire (pts (xy 324.485 84.455) (xy 324.485 81.915))
  5946. (stroke (width 0) (type default) (color 0 0 0 0))
  5947. (uuid d427441f-d205-4bcd-acff-78ded9ef400d)
  5948. )
  5949. (wire (pts (xy 274.955 235.585) (xy 277.495 235.585))
  5950. (stroke (width 0) (type default) (color 0 0 0 0))
  5951. (uuid d61d59b4-fb75-479a-8347-b5732b42cbac)
  5952. )
  5953. (polyline (pts (xy 272.415 121.92) (xy 343.535 121.92))
  5954. (stroke (width 0) (type default) (color 0 0 0 0))
  5955. (uuid d658d55e-82a7-45ea-9ccf-ef7c85e5b9b8)
  5956. )
  5957. (wire (pts (xy 253.365 83.82) (xy 253.365 81.28))
  5958. (stroke (width 0) (type default) (color 0 0 0 0))
  5959. (uuid d6a7133e-7065-42fe-a611-6d0fa1640a6d)
  5960. )
  5961. (wire (pts (xy 292.735 153.67) (xy 280.035 153.67))
  5962. (stroke (width 0) (type default) (color 0 0 0 0))
  5963. (uuid d73af769-46d0-42c6-89a6-10b099fd471b)
  5964. )
  5965. (wire (pts (xy 36.195 34.925) (xy 36.195 32.385))
  5966. (stroke (width 0) (type default) (color 0 0 0 0))
  5967. (uuid d77d8856-9294-49b5-a940-ee4a94d96a7d)
  5968. )
  5969. (wire (pts (xy 180.34 83.185) (xy 180.34 85.09))
  5970. (stroke (width 0) (type default) (color 0 0 0 0))
  5971. (uuid d7ba66c5-6487-4f69-8190-0d1b0a75cb9a)
  5972. )
  5973. (wire (pts (xy 280.035 233.68) (xy 280.035 235.585))
  5974. (stroke (width 0) (type default) (color 0 0 0 0))
  5975. (uuid d84c2fdb-b26c-48b4-861d-a33a3d0c237d)
  5976. )
  5977. (wire (pts (xy 379.73 120.65) (xy 400.05 120.65))
  5978. (stroke (width 0) (type default) (color 0 0 0 0))
  5979. (uuid d87f1eb8-2b6f-4c3d-b2e5-fa1e62b7f193)
  5980. )
  5981. (wire (pts (xy 193.04 111.76) (xy 193.04 116.205))
  5982. (stroke (width 0) (type default) (color 0 0 0 0))
  5983. (uuid d8a4516a-f241-433b-b6ef-dbb390974518)
  5984. )
  5985. (wire (pts (xy 379.73 146.05) (xy 393.7 146.05))
  5986. (stroke (width 0) (type default) (color 0 0 0 0))
  5987. (uuid d8afd384-ce86-4dde-b0cb-3b4bdcf89a36)
  5988. )
  5989. (wire (pts (xy 243.84 40.64) (xy 255.27 40.64))
  5990. (stroke (width 0) (type default) (color 0 0 0 0))
  5991. (uuid d8f291aa-8983-4ef7-958f-688e8ad6ace4)
  5992. )
  5993. (wire (pts (xy 124.46 247.65) (xy 124.46 248.285))
  5994. (stroke (width 0) (type default) (color 0 0 0 0))
  5995. (uuid d916a6f6-795d-4297-9098-8cf714e73d41)
  5996. )
  5997. (wire (pts (xy 249.555 205.74) (xy 262.255 205.74))
  5998. (stroke (width 0) (type default) (color 0 0 0 0))
  5999. (uuid d987ba20-e17d-4dd6-9403-592780911a26)
  6000. )
  6001. (wire (pts (xy 280.035 191.135) (xy 280.035 191.77))
  6002. (stroke (width 0) (type default) (color 0 0 0 0))
  6003. (uuid d9c24ba9-587e-463f-87a7-0676acb24268)
  6004. )
  6005. (wire (pts (xy 317.5 201.295) (xy 329.565 201.295))
  6006. (stroke (width 0) (type default) (color 0 0 0 0))
  6007. (uuid da154349-aeac-45c0-a77e-d6910adf94eb)
  6008. )
  6009. (wire (pts (xy 65.405 187.325) (xy 62.23 187.325))
  6010. (stroke (width 0) (type default) (color 0 0 0 0))
  6011. (uuid da2f4e85-18b5-4167-90a3-706823e1ef63)
  6012. )
  6013. (wire (pts (xy 161.925 74.295) (xy 161.925 75.565))
  6014. (stroke (width 0) (type default) (color 0 0 0 0))
  6015. (uuid da5dc54c-bff3-4399-8f62-12c707e9cd59)
  6016. )
  6017. (wire (pts (xy 95.885 266.065) (xy 95.885 268.605))
  6018. (stroke (width 0) (type default) (color 0 0 0 0))
  6019. (uuid da75c9b2-bcab-48b4-8ac4-a253b3c71074)
  6020. )
  6021. (wire (pts (xy 130.175 38.735) (xy 130.175 40.005))
  6022. (stroke (width 0) (type default) (color 0 0 0 0))
  6023. (uuid dad4be53-4e0f-4fc3-879b-e85221e0f36f)
  6024. )
  6025. (wire (pts (xy 111.125 169.545) (xy 114.935 169.545))
  6026. (stroke (width 0) (type default) (color 0 0 0 0))
  6027. (uuid dbb976f0-415f-4d3f-a622-d4a164392d9a)
  6028. )
  6029. (wire (pts (xy 362.585 123.19) (xy 367.03 123.19))
  6030. (stroke (width 0) (type default) (color 0 0 0 0))
  6031. (uuid dbc93761-8e05-4ee2-af07-2caea15cf775)
  6032. )
  6033. (wire (pts (xy 317.5 208.915) (xy 329.565 208.915))
  6034. (stroke (width 0) (type default) (color 0 0 0 0))
  6035. (uuid dbda4d4e-0960-4522-9479-3a3e0dcb3db8)
  6036. )
  6037. (wire (pts (xy 317.5 206.375) (xy 329.565 206.375))
  6038. (stroke (width 0) (type default) (color 0 0 0 0))
  6039. (uuid dbea61cc-307a-4643-941e-9f352054cb9e)
  6040. )
  6041. (wire (pts (xy 379.73 133.35) (xy 393.7 133.35))
  6042. (stroke (width 0) (type default) (color 0 0 0 0))
  6043. (uuid dc2a92d7-fb87-4c96-80dc-0fce5137feb3)
  6044. )
  6045. (wire (pts (xy 203.835 183.515) (xy 203.835 186.055))
  6046. (stroke (width 0) (type default) (color 0 0 0 0))
  6047. (uuid dc876665-4816-41c6-a123-bf982bba3c87)
  6048. )
  6049. (wire (pts (xy 362.585 202.565) (xy 367.03 202.565))
  6050. (stroke (width 0) (type default) (color 0 0 0 0))
  6051. (uuid dcda913f-84f0-4df9-99df-f9ee8896b5b6)
  6052. )
  6053. (wire (pts (xy 210.82 40.64) (xy 222.25 40.64))
  6054. (stroke (width 0) (type default) (color 0 0 0 0))
  6055. (uuid dde71943-9537-4f5f-b297-67d9b5bb6df0)
  6056. )
  6057. (polyline (pts (xy 365.125 56.515) (xy 365.125 16.51))
  6058. (stroke (width 0) (type default) (color 0 0 0 0))
  6059. (uuid de0507ff-8196-42a2-8219-27ef6f3c517c)
  6060. )
  6061. (wire (pts (xy 169.545 253.365) (xy 172.72 253.365))
  6062. (stroke (width 0) (type default) (color 0 0 0 0))
  6063. (uuid de16c30e-e0fd-4dad-9d4b-1df009cea29b)
  6064. )
  6065. (wire (pts (xy 169.545 217.805) (xy 172.72 217.805))
  6066. (stroke (width 0) (type default) (color 0 0 0 0))
  6067. (uuid de4b9c73-7b99-43d1-b8c1-943bb4c4182a)
  6068. )
  6069. (wire (pts (xy 161.925 85.09) (xy 161.925 87.63))
  6070. (stroke (width 0) (type default) (color 0 0 0 0))
  6071. (uuid de6018d9-d307-471c-8bbb-1978346478c8)
  6072. )
  6073. (wire (pts (xy 160.655 50.165) (xy 160.655 50.8))
  6074. (stroke (width 0) (type default) (color 0 0 0 0))
  6075. (uuid dee06325-7bfa-4438-ae4c-fb914964014f)
  6076. )
  6077. (wire (pts (xy 200.66 271.145) (xy 203.2 271.145))
  6078. (stroke (width 0) (type default) (color 0 0 0 0))
  6079. (uuid df1bf6af-df2d-44dc-8e81-29630138107a)
  6080. )
  6081. (wire (pts (xy 327.025 224.155) (xy 327.025 227.965))
  6082. (stroke (width 0) (type default) (color 0 0 0 0))
  6083. (uuid dfd8dc92-b9cb-4ca7-939d-935b126c4ab6)
  6084. )
  6085. (wire (pts (xy 200.66 212.725) (xy 203.835 212.725))
  6086. (stroke (width 0) (type default) (color 0 0 0 0))
  6087. (uuid e007bb0c-0702-4027-95dd-da4261542b0a)
  6088. )
  6089. (wire (pts (xy 170.18 268.605) (xy 172.72 268.605))
  6090. (stroke (width 0) (type default) (color 0 0 0 0))
  6091. (uuid e028ba49-567a-410d-89f4-c582f0c1f560)
  6092. )
  6093. (wire (pts (xy 327.025 184.15) (xy 327.025 184.785))
  6094. (stroke (width 0) (type default) (color 0 0 0 0))
  6095. (uuid e0a59525-d5a9-4362-9091-bbaf3366fea7)
  6096. )
  6097. (wire (pts (xy 277.495 191.77) (xy 277.495 191.135))
  6098. (stroke (width 0) (type default) (color 0 0 0 0))
  6099. (uuid e0cb600f-880f-4eb9-b55a-288b97f29ac9)
  6100. )
  6101. (wire (pts (xy 203.2 227.965) (xy 203.2 230.505))
  6102. (stroke (width 0) (type default) (color 0 0 0 0))
  6103. (uuid e0e66cc6-0c91-4328-949f-0768f95cc09a)
  6104. )
  6105. (wire (pts (xy 327.025 224.155) (xy 329.565 224.155))
  6106. (stroke (width 0) (type default) (color 0 0 0 0))
  6107. (uuid e112d1ce-2323-4f5f-8126-94b721983160)
  6108. )
  6109. (polyline (pts (xy 113.665 59.69) (xy 146.05 59.69))
  6110. (stroke (width 0) (type default) (color 0 0 0 0))
  6111. (uuid e1360a52-83ec-4633-ac0d-9a4359674898)
  6112. )
  6113. (wire (pts (xy 299.72 201.93) (xy 299.72 203.835))
  6114. (stroke (width 0) (type default) (color 0 0 0 0))
  6115. (uuid e1d62c09-8e67-4633-8cdb-d5526c262fc2)
  6116. )
  6117. (wire (pts (xy 203.2 271.145) (xy 203.2 273.05))
  6118. (stroke (width 0) (type default) (color 0 0 0 0))
  6119. (uuid e1d87378-7d87-42ad-857f-4118db2956e7)
  6120. )
  6121. (polyline (pts (xy 272.415 170.815) (xy 343.535 170.815))
  6122. (stroke (width 0) (type default) (color 0 0 0 0))
  6123. (uuid e21a9ff8-b6eb-4b11-b527-34aaf8db3558)
  6124. )
  6125. (wire (pts (xy 185.42 151.765) (xy 188.595 151.765))
  6126. (stroke (width 0) (type default) (color 0 0 0 0))
  6127. (uuid e23afc7e-379f-4119-9f47-eae3ed70fa0a)
  6128. )
  6129. (wire (pts (xy 139.065 78.105) (xy 142.24 78.105))
  6130. (stroke (width 0) (type default) (color 0 0 0 0))
  6131. (uuid e28a5070-b453-43c1-9fbf-a946e5088c36)
  6132. )
  6133. (wire (pts (xy 142.24 70.485) (xy 142.24 73.025))
  6134. (stroke (width 0) (type default) (color 0 0 0 0))
  6135. (uuid e2d44f69-7473-4d2b-9dc4-d1b16d80b5d0)
  6136. )
  6137. (wire (pts (xy 362.585 113.03) (xy 367.03 113.03))
  6138. (stroke (width 0) (type default) (color 0 0 0 0))
  6139. (uuid e3502d7c-a661-4b1b-b7eb-22483d731fac)
  6140. )
  6141. (wire (pts (xy 69.215 78.105) (xy 69.215 83.185))
  6142. (stroke (width 0) (type default) (color 0 0 0 0))
  6143. (uuid e4a67fb4-59e8-45ee-9904-14e8e23aaa56)
  6144. )
  6145. (wire (pts (xy 161.925 85.09) (xy 171.45 85.09))
  6146. (stroke (width 0) (type default) (color 0 0 0 0))
  6147. (uuid e4d0c561-9b6e-49be-8a89-6de50dcfe9de)
  6148. )
  6149. (wire (pts (xy 170.18 271.145) (xy 170.18 273.05))
  6150. (stroke (width 0) (type default) (color 0 0 0 0))
  6151. (uuid e5019f74-7f9c-4766-8ffc-34fe112b91cc)
  6152. )
  6153. (polyline (pts (xy 91.44 16.51) (xy 91.44 56.515))
  6154. (stroke (width 0) (type default) (color 0 0 0 0))
  6155. (uuid e503a526-74ee-444f-8505-776634e0247d)
  6156. )
  6157. (wire (pts (xy 114.935 268.605) (xy 114.935 271.145))
  6158. (stroke (width 0) (type default) (color 0 0 0 0))
  6159. (uuid e5e5defc-3ff7-416f-99b0-987d869bc8d0)
  6160. )
  6161. (wire (pts (xy 40.005 93.345) (xy 52.705 93.345))
  6162. (stroke (width 0) (type default) (color 0 0 0 0))
  6163. (uuid e61399d2-9f09-4f9d-b419-437c1f417cfa)
  6164. )
  6165. (wire (pts (xy 142.24 78.105) (xy 142.24 80.01))
  6166. (stroke (width 0) (type default) (color 0 0 0 0))
  6167. (uuid e68266da-fc5a-46c2-916f-13cee9f07eaf)
  6168. )
  6169. (wire (pts (xy 126.365 32.385) (xy 130.175 32.385))
  6170. (stroke (width 0) (type default) (color 0 0 0 0))
  6171. (uuid e6939f1c-bd89-468a-957f-759f72fb1786)
  6172. )
  6173. (wire (pts (xy 48.895 157.48) (xy 51.435 157.48))
  6174. (stroke (width 0) (type default) (color 0 0 0 0))
  6175. (uuid e6951395-f152-451c-ab3f-5a9d1af4f762)
  6176. )
  6177. (wire (pts (xy 59.055 93.345) (xy 59.055 67.945))
  6178. (stroke (width 0) (type default) (color 0 0 0 0))
  6179. (uuid e6a5aac1-0d67-47e8-9bba-ca2c293d6c9f)
  6180. )
  6181. (wire (pts (xy 70.485 67.945) (xy 76.835 67.945))
  6182. (stroke (width 0) (type default) (color 0 0 0 0))
  6183. (uuid e73f3d6c-1f61-4a32-a5e0-c4c71041bbe0)
  6184. )
  6185. (wire (pts (xy 362.585 107.95) (xy 362.585 110.49))
  6186. (stroke (width 0) (type default) (color 0 0 0 0))
  6187. (uuid e7675ac7-5e8e-4607-88b8-51ba2ee73dc3)
  6188. )
  6189. (wire (pts (xy 220.345 74.93) (xy 231.775 74.93))
  6190. (stroke (width 0) (type default) (color 0 0 0 0))
  6191. (uuid e781a452-d72f-4b1b-8c57-786218384e87)
  6192. )
  6193. (wire (pts (xy 362.585 120.65) (xy 362.585 123.19))
  6194. (stroke (width 0) (type default) (color 0 0 0 0))
  6195. (uuid e95d39d7-e28c-48d1-a60d-4ae75798e9a7)
  6196. )
  6197. (wire (pts (xy 189.23 30.48) (xy 200.66 30.48))
  6198. (stroke (width 0) (type default) (color 0 0 0 0))
  6199. (uuid e962e741-2147-47fa-9391-06d83ea0fe93)
  6200. )
  6201. (wire (pts (xy 169.545 220.345) (xy 172.72 220.345))
  6202. (stroke (width 0) (type default) (color 0 0 0 0))
  6203. (uuid ea419142-4c95-4190-9707-d9fe3bf619c1)
  6204. )
  6205. (wire (pts (xy 251.46 127) (xy 253.365 127))
  6206. (stroke (width 0) (type default) (color 0 0 0 0))
  6207. (uuid ea467e12-efdc-4975-addc-e170c4bd3b6d)
  6208. )
  6209. (wire (pts (xy 109.22 128.27) (xy 109.22 128.905))
  6210. (stroke (width 0) (type default) (color 0 0 0 0))
  6211. (uuid ea659545-ef9a-4da6-bc05-7fa40f1d356c)
  6212. )
  6213. (wire (pts (xy 137.795 38.735) (xy 137.795 40.005))
  6214. (stroke (width 0) (type default) (color 0 0 0 0))
  6215. (uuid eb87b3d9-587b-4319-bca9-606780f30ba7)
  6216. )
  6217. (wire (pts (xy 376.555 38.735) (xy 376.555 40.005))
  6218. (stroke (width 0) (type default) (color 0 0 0 0))
  6219. (uuid ec1bfe24-63ed-4792-b0cd-4eda9c71b70d)
  6220. )
  6221. (wire (pts (xy 170.815 178.435) (xy 170.815 180.975))
  6222. (stroke (width 0) (type default) (color 0 0 0 0))
  6223. (uuid ec4d6f02-800c-49cd-a2d0-a4be9e5feae3)
  6224. )
  6225. (wire (pts (xy 200.66 268.605) (xy 203.2 268.605))
  6226. (stroke (width 0) (type default) (color 0 0 0 0))
  6227. (uuid ec946faa-0ca1-4d9c-b6f7-fe3dfa784d2e)
  6228. )
  6229. (wire (pts (xy 222.25 30.48) (xy 233.68 30.48))
  6230. (stroke (width 0) (type default) (color 0 0 0 0))
  6231. (uuid eccb7ba8-b4f2-4455-a484-f012218656a6)
  6232. )
  6233. (wire (pts (xy 170.815 163.195) (xy 173.355 163.195))
  6234. (stroke (width 0) (type default) (color 0 0 0 0))
  6235. (uuid ecd9ada7-3268-420a-86b4-83901af308e7)
  6236. )
  6237. (wire (pts (xy 362.585 110.49) (xy 362.585 113.03))
  6238. (stroke (width 0) (type default) (color 0 0 0 0))
  6239. (uuid ed47d48d-436a-4212-8dfa-bfd53d498924)
  6240. )
  6241. (polyline (pts (xy 343.535 170.815) (xy 343.535 121.92))
  6242. (stroke (width 0) (type default) (color 0 0 0 0))
  6243. (uuid ed4bb8d2-3853-4bae-9da7-2441dabc061b)
  6244. )
  6245. (wire (pts (xy 26.67 162.56) (xy 38.735 162.56))
  6246. (stroke (width 0) (type default) (color 0 0 0 0))
  6247. (uuid edcf93ba-e8d5-451b-ab9e-9f7a83b6ada2)
  6248. )
  6249. (wire (pts (xy 255.27 40.64) (xy 266.7 40.64))
  6250. (stroke (width 0) (type default) (color 0 0 0 0))
  6251. (uuid edee7cc8-8cf1-4a7f-a315-fc267c6650d7)
  6252. )
  6253. (polyline (pts (xy 243.205 59.69) (xy 313.69 59.69))
  6254. (stroke (width 0) (type default) (color 0 0 0 0))
  6255. (uuid edf0fabc-baff-4c12-bcc5-68c514e53715)
  6256. )
  6257. (wire (pts (xy 252.095 144.145) (xy 254 144.145))
  6258. (stroke (width 0) (type default) (color 0 0 0 0))
  6259. (uuid edfca121-ac91-4811-89cd-0a572b7188f3)
  6260. )
  6261. (wire (pts (xy 400.05 130.81) (xy 400.05 134.62))
  6262. (stroke (width 0) (type default) (color 0 0 0 0))
  6263. (uuid eea1259c-37ec-490f-826e-9b1672175aa9)
  6264. )
  6265. (wire (pts (xy 133.985 240.665) (xy 136.525 240.665))
  6266. (stroke (width 0) (type default) (color 0 0 0 0))
  6267. (uuid ef54fdcb-3603-40a5-8a7a-e878aba97ed1)
  6268. )
  6269. (polyline (pts (xy 41.275 16.51) (xy 84.455 16.51))
  6270. (stroke (width 0) (type default) (color 0 0 0 0))
  6271. (uuid ef736f6d-93ef-4ee4-b173-f131480ca5cc)
  6272. )
  6273. (wire (pts (xy 289.56 80.01) (xy 290.83 80.01))
  6274. (stroke (width 0) (type default) (color 0 0 0 0))
  6275. (uuid f077611d-6b89-433d-b29e-05f54d44c96f)
  6276. )
  6277. (polyline (pts (xy 200.66 59.69) (xy 241.3 59.69))
  6278. (stroke (width 0) (type default) (color 0 0 0 0))
  6279. (uuid f0ca63c0-0c94-4b51-8360-82ae6db450cc)
  6280. )
  6281. (wire (pts (xy 88.265 127.635) (xy 90.805 127.635))
  6282. (stroke (width 0) (type default) (color 0 0 0 0))
  6283. (uuid f1398c19-7442-4cac-842c-3561fd95a7a1)
  6284. )
  6285. (wire (pts (xy 201.295 173.355) (xy 203.835 173.355))
  6286. (stroke (width 0) (type default) (color 0 0 0 0))
  6287. (uuid f1744b21-f87d-4f43-b9e4-e8b8c925a2c5)
  6288. )
  6289. (wire (pts (xy 362.585 156.21) (xy 362.585 161.29))
  6290. (stroke (width 0) (type default) (color 0 0 0 0))
  6291. (uuid f1fa9def-2d20-47de-af2b-447780a76b5e)
  6292. )
  6293. (wire (pts (xy 111.125 210.185) (xy 114.935 210.185))
  6294. (stroke (width 0) (type default) (color 0 0 0 0))
  6295. (uuid f210667a-2681-4020-a11c-3e9c4d81d908)
  6296. )
  6297. (wire (pts (xy 321.31 184.15) (xy 321.31 184.785))
  6298. (stroke (width 0) (type default) (color 0 0 0 0))
  6299. (uuid f217211c-8878-4662-8cd2-53d4096da7c8)
  6300. )
  6301. (polyline (pts (xy 149.86 96.52) (xy 220.345 96.52))
  6302. (stroke (width 0) (type default) (color 0 0 0 0))
  6303. (uuid f22d8b45-01cd-42e5-b9db-25b6f227a617)
  6304. )
  6305. (wire (pts (xy 81.28 26.67) (xy 81.28 31.75))
  6306. (stroke (width 0) (type default) (color 0 0 0 0))
  6307. (uuid f235600b-1762-4d32-812c-7b1fec4dfc5f)
  6308. )
  6309. (wire (pts (xy 102.235 38.735) (xy 102.235 40.005))
  6310. (stroke (width 0) (type default) (color 0 0 0 0))
  6311. (uuid f2d4162f-9978-4e92-9a1f-9634e540cc92)
  6312. )
  6313. (wire (pts (xy 276.86 40.64) (xy 276.86 37.465))
  6314. (stroke (width 0) (type default) (color 0 0 0 0))
  6315. (uuid f2da6875-d36c-4382-ba09-dba8cadc6b40)
  6316. )
  6317. (wire (pts (xy 379.73 107.95) (xy 393.7 107.95))
  6318. (stroke (width 0) (type default) (color 0 0 0 0))
  6319. (uuid f429ddce-0327-41f5-9a1e-134b93941535)
  6320. )
  6321. (wire (pts (xy 88.265 127.635) (xy 88.265 128.905))
  6322. (stroke (width 0) (type default) (color 0 0 0 0))
  6323. (uuid f45e9ed9-cbfc-4f56-9cb5-1f5e017d48c1)
  6324. )
  6325. (wire (pts (xy 339.725 236.22) (xy 342.265 236.22))
  6326. (stroke (width 0) (type default) (color 0 0 0 0))
  6327. (uuid f4ad94e5-a212-46e1-b57d-614791ef6ae6)
  6328. )
  6329. (wire (pts (xy 54.61 31.75) (xy 46.99 31.75))
  6330. (stroke (width 0) (type default) (color 0 0 0 0))
  6331. (uuid f4c270e4-d6d1-497f-8a55-bd02f6b3883f)
  6332. )
  6333. (wire (pts (xy 313.69 224.155) (xy 319.405 224.155))
  6334. (stroke (width 0) (type default) (color 0 0 0 0))
  6335. (uuid f4fcf757-a974-4e06-afa9-26e0ea25f4b6)
  6336. )
  6337. (polyline (pts (xy 220.345 280.67) (xy 220.345 102.235))
  6338. (stroke (width 0) (type default) (color 0 0 0 0))
  6339. (uuid f585fe95-078a-4d15-b629-180fac626945)
  6340. )
  6341. (wire (pts (xy 278.765 191.135) (xy 278.765 189.865))
  6342. (stroke (width 0) (type default) (color 0 0 0 0))
  6343. (uuid f5a98a9c-6203-4533-a6c7-06b053ada4cd)
  6344. )
  6345. (wire (pts (xy 203.2 230.505) (xy 203.2 232.41))
  6346. (stroke (width 0) (type default) (color 0 0 0 0))
  6347. (uuid f5ca94f5-f331-4cdd-9cc1-1e8e3cfb2c6e)
  6348. )
  6349. (wire (pts (xy 29.845 181.61) (xy 29.845 184.15))
  6350. (stroke (width 0) (type default) (color 0 0 0 0))
  6351. (uuid f5d98e2e-d011-40d1-a778-03c975103cd0)
  6352. )
  6353. (wire (pts (xy 169.545 205.105) (xy 172.72 205.105))
  6354. (stroke (width 0) (type default) (color 0 0 0 0))
  6355. (uuid f5f047bc-9d8a-4ede-b9f6-1a1e93b81314)
  6356. )
  6357. (wire (pts (xy 111.125 233.045) (xy 114.935 233.045))
  6358. (stroke (width 0) (type default) (color 0 0 0 0))
  6359. (uuid f6c23c4f-2e3e-4124-ac9e-25d8a3853ff0)
  6360. )
  6361. (wire (pts (xy 269.875 233.68) (xy 269.875 235.585))
  6362. (stroke (width 0) (type default) (color 0 0 0 0))
  6363. (uuid f6cf0ef9-057b-4708-bff8-550eea66fa64)
  6364. )
  6365. (wire (pts (xy 189.23 30.48) (xy 179.07 30.48))
  6366. (stroke (width 0) (type default) (color 0 0 0 0))
  6367. (uuid f6d4800e-fd00-45ed-aac8-30183d5c12b0)
  6368. )
  6369. (wire (pts (xy 207.645 83.82) (xy 215.265 83.82))
  6370. (stroke (width 0) (type default) (color 0 0 0 0))
  6371. (uuid f75b1afd-beae-4b78-8085-b88eb4896033)
  6372. )
  6373. (wire (pts (xy 205.105 83.82) (xy 205.105 82.55))
  6374. (stroke (width 0) (type default) (color 0 0 0 0))
  6375. (uuid f7db30a0-1d12-4e61-85af-41bfebfab664)
  6376. )
  6377. (wire (pts (xy 362.585 148.59) (xy 367.03 148.59))
  6378. (stroke (width 0) (type default) (color 0 0 0 0))
  6379. (uuid f7ebb7f8-417b-4ef2-91b6-ce74a2ba091c)
  6380. )
  6381. (wire (pts (xy 184.785 196.215) (xy 184.785 197.485))
  6382. (stroke (width 0) (type default) (color 0 0 0 0))
  6383. (uuid f8360235-5d73-49dd-b11e-67ca7cc3b3ba)
  6384. )
  6385. (wire (pts (xy 76.835 67.945) (xy 76.835 69.215))
  6386. (stroke (width 0) (type default) (color 0 0 0 0))
  6387. (uuid f88c0647-584d-4472-b313-ba85ab8788db)
  6388. )
  6389. (wire (pts (xy 170.815 183.515) (xy 170.815 186.055))
  6390. (stroke (width 0) (type default) (color 0 0 0 0))
  6391. (uuid f936b588-50ed-4a10-9c26-56559639aad9)
  6392. )
  6393. (wire (pts (xy 334.645 236.22) (xy 337.185 236.22))
  6394. (stroke (width 0) (type default) (color 0 0 0 0))
  6395. (uuid f99bfa7d-c335-4402-839a-24e85fe76abb)
  6396. )
  6397. (wire (pts (xy 203.835 180.975) (xy 203.835 183.515))
  6398. (stroke (width 0) (type default) (color 0 0 0 0))
  6399. (uuid f9b83449-5560-409f-be6d-a31396b42e08)
  6400. )
  6401. (wire (pts (xy 171.45 136.525) (xy 173.99 136.525))
  6402. (stroke (width 0) (type default) (color 0 0 0 0))
  6403. (uuid fa9700e5-78f1-47f9-bca5-b28badb51f1c)
  6404. )
  6405. (wire (pts (xy 340.995 161.29) (xy 340.995 165.1))
  6406. (stroke (width 0) (type default) (color 0 0 0 0))
  6407. (uuid faae4bb2-5d3e-41b2-8f4d-cf6c76404bea)
  6408. )
  6409. (wire (pts (xy 276.86 40.64) (xy 288.29 40.64))
  6410. (stroke (width 0) (type default) (color 0 0 0 0))
  6411. (uuid fb729c23-3a56-485f-8fac-ca385447fed1)
  6412. )
  6413. (wire (pts (xy 171.45 74.295) (xy 171.45 75.565))
  6414. (stroke (width 0) (type default) (color 0 0 0 0))
  6415. (uuid fb946f75-a3d6-4a45-bef1-aea88f6ea5b4)
  6416. )
  6417. (wire (pts (xy 287.655 233.68) (xy 287.655 235.585))
  6418. (stroke (width 0) (type default) (color 0 0 0 0))
  6419. (uuid fbfc35aa-db8d-40ef-a695-5990a7097834)
  6420. )
  6421. (wire (pts (xy 31.75 34.925) (xy 36.195 34.925))
  6422. (stroke (width 0) (type default) (color 0 0 0 0))
  6423. (uuid fc3943c0-562e-42ff-80b3-ee26a4c10e59)
  6424. )
  6425. (wire (pts (xy 256.54 223.52) (xy 256.54 227.33))
  6426. (stroke (width 0) (type default) (color 0 0 0 0))
  6427. (uuid fc9306bc-c902-447f-b144-c37763c73af0)
  6428. )
  6429. (wire (pts (xy 201.295 168.275) (xy 203.835 168.275))
  6430. (stroke (width 0) (type default) (color 0 0 0 0))
  6431. (uuid fd336c0a-4027-46a7-8c5a-d29f5cd77a87)
  6432. )
  6433. (wire (pts (xy 276.225 144.145) (xy 276.225 146.05))
  6434. (stroke (width 0) (type default) (color 0 0 0 0))
  6435. (uuid fd359b49-39c8-4f5f-8444-91ab7af9eeab)
  6436. )
  6437. (wire (pts (xy 400.05 120.65) (xy 400.05 123.19))
  6438. (stroke (width 0) (type default) (color 0 0 0 0))
  6439. (uuid fe1597d1-4616-4966-af8e-8914eb2f096e)
  6440. )
  6441. (wire (pts (xy 65.405 230.505) (xy 62.23 230.505))
  6442. (stroke (width 0) (type default) (color 0 0 0 0))
  6443. (uuid fe168882-7b05-4641-bf4a-7b5fac6ba8a9)
  6444. )
  6445. (polyline (pts (xy 93.345 16.51) (xy 147.32 16.51))
  6446. (stroke (width 0) (type default) (color 0 0 0 0))
  6447. (uuid febeff66-9d87-47f2-9f74-2d97b2da56d5)
  6448. )
  6449. (wire (pts (xy 170.18 227.965) (xy 170.18 230.505))
  6450. (stroke (width 0) (type default) (color 0 0 0 0))
  6451. (uuid fefe92a7-98ae-439d-b903-358102c9db8a)
  6452. )
  6453. (wire (pts (xy 362.585 115.57) (xy 367.03 115.57))
  6454. (stroke (width 0) (type default) (color 0 0 0 0))
  6455. (uuid ff76d6b4-f720-4199-a072-862ed90a2701)
  6456. )
  6457. (wire (pts (xy 124.46 240.665) (xy 128.905 240.665))
  6458. (stroke (width 0) (type default) (color 0 0 0 0))
  6459. (uuid ff823bb4-7592-48ed-817f-a262cf9e1c73)
  6460. )
  6461. (wire (pts (xy 344.805 192.405) (xy 344.805 191.77))
  6462. (stroke (width 0) (type default) (color 0 0 0 0))
  6463. (uuid ff945064-94c3-49db-aa66-3492b5329de9)
  6464. )
  6465. (wire (pts (xy 42.545 83.185) (xy 42.545 78.105))
  6466. (stroke (width 0) (type default) (color 0 0 0 0))
  6467. (uuid ffc9ad28-24ba-4983-b4cd-42e5c51644a0)
  6468. )
  6469. (text "Programming headers" (at 244.475 62.23 0)
  6470. (effects (font (size 1.27 1.27)) (justify left bottom))
  6471. (uuid 1c695c73-6684-4afb-b99e-113827452611)
  6472. )
  6473. (text "Indicators" (at 150.495 62.23 0)
  6474. (effects (font (size 1.27 1.27)) (justify left bottom))
  6475. (uuid 260fd669-dc57-4c26-a52e-80537d189ccc)
  6476. )
  6477. (text "Important, use 74ALS641-1 for 48mA drain" (at 176.53 99.695 0)
  6478. (effects (font (size 1.27 1.27)) (justify left bottom))
  6479. (uuid 267934aa-d52a-46c3-af83-0fcf33ac2764)
  6480. )
  6481. (text "Transicevers SCSI" (at 151.13 99.695 0)
  6482. (effects (font (size 1.27 1.27)) (justify left bottom))
  6483. (uuid 27cb61ca-6553-4384-abaa-5b4135098efd)
  6484. )
  6485. (text "Input power \"selector\"" (at 42.545 19.685 0)
  6486. (effects (font (size 1.27 1.27)) (justify left bottom))
  6487. (uuid 27d2359f-c5b8-4e9c-8abb-b80d23c678a8)
  6488. )
  6489. (text "PWR FLAGS" (at 311.15 19.685 0)
  6490. (effects (font (size 1.27 1.27)) (justify left bottom))
  6491. (uuid 44a2374b-27b7-47c9-90a0-20ef0f1d736c)
  6492. )
  6493. (text "SCSI 50 Pin Header" (at 349.25 86.36 0)
  6494. (effects (font (size 1.27 1.27)) (justify left bottom))
  6495. (uuid 48fd3fe8-7ab7-4ce8-9f1f-e5f79af00c5b)
  6496. )
  6497. (text "MOLEX PWR" (at 17.145 20.32 0)
  6498. (effects (font (size 1.27 1.27)) (justify left bottom))
  6499. (uuid 5fe3cdd5-0605-47a1-82da-e8e0ce903bab)
  6500. )
  6501. (text "UART Interface" (at 315.595 62.865 0)
  6502. (effects (font (size 1.27 1.27)) (justify left bottom))
  6503. (uuid 8717a098-8ab4-4188-8ae0-026041b3d60a)
  6504. )
  6505. (text "Termination" (at 225.425 176.53 0)
  6506. (effects (font (size 1.27 1.27)) (justify left bottom))
  6507. (uuid 94a0fcf5-5648-45a5-8905-e54d752120cc)
  6508. )
  6509. (text "Terminator selector" (at 226.06 99.695 0)
  6510. (effects (font (size 1.27 1.27)) (justify left bottom))
  6511. (uuid a92599f6-8e7a-4af0-94bd-cf879288cb6a)
  6512. )
  6513. (text "3.3v Regulator" (at 92.71 19.685 0)
  6514. (effects (font (size 1.27 1.27)) (justify left bottom))
  6515. (uuid b063a420-f0ac-4c79-b3b1-36efd075f29e)
  6516. )
  6517. (text "Image and termination selector" (at 114.3 62.23 0)
  6518. (effects (font (size 1.27 1.27)) (justify left bottom))
  6519. (uuid d58a56f2-24e8-4f41-af4a-d2e10b7ec282)
  6520. )
  6521. (text "V3" (at 131.445 153.67 0)
  6522. (effects (font (size 1.27 1.27)) (justify left bottom))
  6523. (uuid dc60980e-29f3-407e-9892-3ead8dc75fe6)
  6524. )
  6525. (text "Micro SD Card" (at 273.685 124.46 0)
  6526. (effects (font (size 1.27 1.27)) (justify left bottom))
  6527. (uuid e5793f30-3737-4af2-9fbf-59d1320a4214)
  6528. )
  6529. (label "SCSI_DBP" (at 203.835 168.275 0)
  6530. (effects (font (size 1.27 1.27)) (justify left bottom))
  6531. (uuid 00d02de7-9378-40d4-b8bf-3bfe5dd87709)
  6532. )
  6533. (label "E_SCSI_DAT2" (at 249.555 218.44 0)
  6534. (effects (font (size 1.27 1.27)) (justify left bottom))
  6535. (uuid 01d5d6fc-6ce1-437d-a39c-e2d6682ce000)
  6536. )
  6537. (label "SCSI_DTD" (at 114.3 220.345 0)
  6538. (effects (font (size 1.27 1.27)) (justify left bottom))
  6539. (uuid 020f9e85-24f6-42f0-825f-74ea465c1e64)
  6540. )
  6541. (label "LOW TERM_2" (at 313.69 227.965 180)
  6542. (effects (font (size 1.27 1.27)) (justify right bottom))
  6543. (uuid 022d3a9b-d6f9-44b9-81b0-0c3e1fceee87)
  6544. )
  6545. (label "E_SCSI_CD" (at 317.5 213.995 0)
  6546. (effects (font (size 1.27 1.27)) (justify left bottom))
  6547. (uuid 026086e8-349a-4cdc-8df0-5a797a4a4fbb)
  6548. )
  6549. (label "SCSI_DAT0" (at 62.23 220.345 180)
  6550. (effects (font (size 1.27 1.27)) (justify right bottom))
  6551. (uuid 0366cd55-639a-40a3-a1f1-6d83682f9e4f)
  6552. )
  6553. (label "HIGH_TERM_1" (at 238.125 223.52 180)
  6554. (effects (font (size 1.27 1.27)) (justify right bottom))
  6555. (uuid 060bff41-ce36-4950-ad62-20f6cdd78824)
  6556. )
  6557. (label "E_SCSI_MSG" (at 203.835 220.345 0)
  6558. (effects (font (size 1.27 1.27)) (justify left bottom))
  6559. (uuid 0874bb56-d68c-4d90-87fc-4696f78083c8)
  6560. )
  6561. (label "E_SCSI_DAT3" (at 249.555 210.82 0)
  6562. (effects (font (size 1.27 1.27)) (justify left bottom))
  6563. (uuid 0a1b3870-3611-4010-9ed6-76857a45ff8c)
  6564. )
  6565. (label "TERM_PWR" (at 393.7 125.73 180)
  6566. (effects (font (size 1.27 1.27)) (justify right bottom))
  6567. (uuid 0b3a35c5-ddc2-420d-a21f-4aacf27f1abc)
  6568. )
  6569. (label "USB+" (at 114.935 167.005 0)
  6570. (effects (font (size 1.27 1.27)) (justify left bottom))
  6571. (uuid 0cbcf744-f184-4179-85b6-0da2fae680d6)
  6572. )
  6573. (label "E_SCSI_BSY" (at 203.835 222.885 0)
  6574. (effects (font (size 1.27 1.27)) (justify left bottom))
  6575. (uuid 0cd4b159-1cd6-4217-9126-e0aa42a91644)
  6576. )
  6577. (label "USB-" (at 114.935 164.465 0)
  6578. (effects (font (size 1.27 1.27)) (justify left bottom))
  6579. (uuid 0da4db5f-0f1e-46bb-9ce2-11ee94569fbe)
  6580. )
  6581. (label "~{TRANS_OE}" (at 170.18 245.745 180)
  6582. (effects (font (size 1.27 1.27)) (justify right bottom))
  6583. (uuid 0e0b6043-73cb-46d0-a5a7-8951cbc18ce3)
  6584. )
  6585. (label "SD_CLK" (at 114.935 187.325 0)
  6586. (effects (font (size 1.27 1.27)) (justify left bottom))
  6587. (uuid 11f75c29-f818-4cd9-b543-64150a5ba951)
  6588. )
  6589. (label "HIGH TERM_2" (at 313.69 224.155 180)
  6590. (effects (font (size 1.27 1.27)) (justify right bottom))
  6591. (uuid 126970ae-149d-4d4c-862e-39507e23f0c4)
  6592. )
  6593. (label "LED2" (at 114.3 149.225 0)
  6594. (effects (font (size 1.27 1.27)) (justify left bottom))
  6595. (uuid 14f11d7c-1612-44e4-aa12-6763cd892a36)
  6596. )
  6597. (label "nRST" (at 33.655 136.525 180)
  6598. (effects (font (size 1.27 1.27)) (justify right bottom))
  6599. (uuid 17057aef-2284-4a40-9673-192aa86b5258)
  6600. )
  6601. (label "SCSI_DBP" (at 62.23 177.165 180)
  6602. (effects (font (size 1.27 1.27)) (justify right bottom))
  6603. (uuid 19ba00c8-c3cb-4198-adbb-026273b6dbd1)
  6604. )
  6605. (label "~{TRANS_OE}" (at 114.935 207.645 0)
  6606. (effects (font (size 1.27 1.27)) (justify left bottom))
  6607. (uuid 1a92fae2-9f12-49a4-b987-ce3308aebef9)
  6608. )
  6609. (label "SWCLK" (at 114.935 172.085 0)
  6610. (effects (font (size 1.27 1.27)) (justify left bottom))
  6611. (uuid 1b3e5de3-0e62-4a86-adcf-1f9827dda891)
  6612. )
  6613. (label "SCSI_RST" (at 169.545 255.905 180)
  6614. (effects (font (size 1.27 1.27)) (justify right bottom))
  6615. (uuid 1c30e471-e8fa-4a22-ad55-3eec7f0a1b2f)
  6616. )
  6617. (label "SW1" (at 114.935 230.505 0)
  6618. (effects (font (size 1.27 1.27)) (justify left bottom))
  6619. (uuid 1dce1b6d-c83a-4ef7-8067-046d0faef9ef)
  6620. )
  6621. (label "E_SCSI_IO" (at 393.7 156.21 180)
  6622. (effects (font (size 1.27 1.27)) (justify right bottom))
  6623. (uuid 20c3f022-5079-4eae-9900-28b461c3aa7f)
  6624. )
  6625. (label "E_SCSI_DAT7" (at 171.45 144.145 180)
  6626. (effects (font (size 1.27 1.27)) (justify right bottom))
  6627. (uuid 23d9a765-075d-4350-8dff-dc0562c53db2)
  6628. )
  6629. (label "SCSI_DTD" (at 171.45 121.285 180)
  6630. (effects (font (size 1.27 1.27)) (justify right bottom))
  6631. (uuid 2411ebac-1e3c-406c-b912-f5091b0be214)
  6632. )
  6633. (label "UART_RX" (at 114.3 144.145 0)
  6634. (effects (font (size 1.27 1.27)) (justify left bottom))
  6635. (uuid 243a0039-5ad3-4263-a083-b6b463fccbaf)
  6636. )
  6637. (label "TERM_PWR" (at 136.525 240.665 0)
  6638. (effects (font (size 1.27 1.27)) (justify left bottom))
  6639. (uuid 26cd108c-f946-443f-b78d-f2e7823b5e9e)
  6640. )
  6641. (label "E_SCSI_DAT4" (at 249.555 208.28 0)
  6642. (effects (font (size 1.27 1.27)) (justify left bottom))
  6643. (uuid 29f143f3-78cc-46c9-9059-b4bc3f4d2c46)
  6644. )
  6645. (label "E_SCSI_DAT3" (at 171.45 133.985 180)
  6646. (effects (font (size 1.27 1.27)) (justify right bottom))
  6647. (uuid 2c09210e-95d0-49a8-8681-191079bdc8bc)
  6648. )
  6649. (label "SW4" (at 114.935 248.285 0)
  6650. (effects (font (size 1.27 1.27)) (justify left bottom))
  6651. (uuid 2c8ae10e-5055-4d8a-81c8-19024fd62e31)
  6652. )
  6653. (label "E_SCSI_REQ" (at 393.7 153.67 180)
  6654. (effects (font (size 1.27 1.27)) (justify right bottom))
  6655. (uuid 2e304e48-1c1c-4f11-a6fb-63d1730ea416)
  6656. )
  6657. (label "SWCLK" (at 255.27 78.74 180)
  6658. (effects (font (size 1.27 1.27)) (justify right bottom))
  6659. (uuid 2e8b6ab8-8f01-4754-bc64-d99696417853)
  6660. )
  6661. (label "SCSI_IND" (at 114.3 222.885 0)
  6662. (effects (font (size 1.27 1.27)) (justify left bottom))
  6663. (uuid 2ee7678b-6854-4e41-9aa9-a09abb04adcd)
  6664. )
  6665. (label "SW4" (at 121.285 78.105 180)
  6666. (effects (font (size 1.27 1.27)) (justify right bottom))
  6667. (uuid 3342bd5b-95eb-417f-bf99-ee6785d9744e)
  6668. )
  6669. (label "E_SCSI_ATN" (at 317.5 198.755 0)
  6670. (effects (font (size 1.27 1.27)) (justify left bottom))
  6671. (uuid 3464e199-8857-480b-8e09-a62640e7bb10)
  6672. )
  6673. (label "E_SCSI_IO" (at 203.835 212.725 0)
  6674. (effects (font (size 1.27 1.27)) (justify left bottom))
  6675. (uuid 34f899e7-952f-4233-aa0d-90c4920020cf)
  6676. )
  6677. (label "~{TRANS_OE}" (at 170.815 160.655 180)
  6678. (effects (font (size 1.27 1.27)) (justify right bottom))
  6679. (uuid 36677c8f-9886-42b5-9471-3e3e4bb02255)
  6680. )
  6681. (label "LOW_TERM_1" (at 238.125 227.33 180)
  6682. (effects (font (size 1.27 1.27)) (justify right bottom))
  6683. (uuid 370c5290-1594-4b96-b9f7-c2ff5eeccce2)
  6684. )
  6685. (label "E_SCSI_DAT7" (at 393.7 113.03 180)
  6686. (effects (font (size 1.27 1.27)) (justify right bottom))
  6687. (uuid 3800c743-cde6-49e1-a165-57e5f1ec83b2)
  6688. )
  6689. (label "~{TRANS_OE}" (at 169.545 205.105 180)
  6690. (effects (font (size 1.27 1.27)) (justify right bottom))
  6691. (uuid 3c489103-bac2-40f0-947e-50223ab3f590)
  6692. )
  6693. (label "SCSI_DAT1" (at 204.47 128.905 0)
  6694. (effects (font (size 1.27 1.27)) (justify left bottom))
  6695. (uuid 3cb44dc2-8fab-472f-9c60-12075ebf9f47)
  6696. )
  6697. (label "SWDIO" (at 255.27 76.2 180)
  6698. (effects (font (size 1.27 1.27)) (justify right bottom))
  6699. (uuid 3e9c7433-1a48-4a54-a728-73475b2f1199)
  6700. )
  6701. (label "SCSI_DAT5" (at 62.23 233.045 180)
  6702. (effects (font (size 1.27 1.27)) (justify right bottom))
  6703. (uuid 3f0cbcb5-a244-438e-9cf9-2bd8ff06dcb4)
  6704. )
  6705. (label "SCSI_DAT2" (at 204.47 131.445 0)
  6706. (effects (font (size 1.27 1.27)) (justify left bottom))
  6707. (uuid 410e304e-e038-4e11-b96e-153c14672208)
  6708. )
  6709. (label "SW3" (at 114.935 245.745 0)
  6710. (effects (font (size 1.27 1.27)) (justify left bottom))
  6711. (uuid 46106d5e-acb9-4c5b-aafd-48e10e7ec2e3)
  6712. )
  6713. (label "SW2" (at 121.285 73.025 180)
  6714. (effects (font (size 1.27 1.27)) (justify right bottom))
  6715. (uuid 4628ee0c-55e9-48b8-8ce5-31a37894857e)
  6716. )
  6717. (label "LED1" (at 161.925 67.31 90)
  6718. (effects (font (size 1.27 1.27)) (justify left bottom))
  6719. (uuid 463ea60a-366b-4724-b7c1-bbcbd1e1901b)
  6720. )
  6721. (label "EXTERNAL_LED" (at 238.125 83.82 180)
  6722. (effects (font (size 1.27 1.27)) (justify right bottom))
  6723. (uuid 465cb822-cddf-441d-8f53-8ae0b192b81a)
  6724. )
  6725. (label "SCSI_REQ" (at 62.23 243.205 180)
  6726. (effects (font (size 1.27 1.27)) (justify right bottom))
  6727. (uuid 46a3c22e-42cf-43e3-bd17-4094830557c0)
  6728. )
  6729. (label "LED1" (at 114.3 146.685 0)
  6730. (effects (font (size 1.27 1.27)) (justify left bottom))
  6731. (uuid 4903bfe8-c77a-4f34-a43f-0604f91fab8c)
  6732. )
  6733. (label "E_SCSI_DBP" (at 170.815 168.275 180)
  6734. (effects (font (size 1.27 1.27)) (justify right bottom))
  6735. (uuid 49830841-23ef-48ad-8628-0c44fdd440cc)
  6736. )
  6737. (label "LOW_TERM_1" (at 254 144.145 0)
  6738. (effects (font (size 1.27 1.27)) (justify left bottom))
  6739. (uuid 4a00b5fe-1a94-4eea-a5a8-c8f8fef1e7e2)
  6740. )
  6741. (label "SWCLK" (at 304.8 80.01 0)
  6742. (effects (font (size 1.27 1.27)) (justify left bottom))
  6743. (uuid 4ad07995-a579-40aa-a6b1-b5c9c788554d)
  6744. )
  6745. (label "E_SCSI_ACK" (at 203.835 258.445 0)
  6746. (effects (font (size 1.27 1.27)) (justify left bottom))
  6747. (uuid 4bf2d399-7039-4953-83a2-938b40d2613c)
  6748. )
  6749. (label "E_SCSI_DAT2" (at 171.45 131.445 180)
  6750. (effects (font (size 1.27 1.27)) (justify right bottom))
  6751. (uuid 4d3028ba-65ba-4f1a-948e-5447db8f1c13)
  6752. )
  6753. (label "HIGH_TERM" (at 243.84 116.84 180)
  6754. (effects (font (size 1.27 1.27)) (justify right bottom))
  6755. (uuid 4dac9d4f-d822-44a8-9490-5b9a0423a6ca)
  6756. )
  6757. (label "SD_DET" (at 280.035 158.75 0)
  6758. (effects (font (size 1.27 1.27)) (justify left bottom))
  6759. (uuid 4f367587-71b5-4436-a312-b7426a896be8)
  6760. )
  6761. (label "E_SCSI_ACK" (at 317.5 203.835 0)
  6762. (effects (font (size 1.27 1.27)) (justify left bottom))
  6763. (uuid 5067c2d5-0f24-41e7-aafe-ea5cdd968e31)
  6764. )
  6765. (label "SCSI_DAT7" (at 62.23 238.125 180)
  6766. (effects (font (size 1.27 1.27)) (justify right bottom))
  6767. (uuid 50ca2dd7-c719-4324-9d1c-484071160c12)
  6768. )
  6769. (label "SCSI_CD" (at 62.23 187.325 180)
  6770. (effects (font (size 1.27 1.27)) (justify right bottom))
  6771. (uuid 5189d377-778c-440f-8ce4-0c39fab3f57e)
  6772. )
  6773. (label "SCSI_BSY" (at 169.545 222.885 180)
  6774. (effects (font (size 1.27 1.27)) (justify right bottom))
  6775. (uuid 530e5583-ed5d-4ea4-adf3-4dce7250b4a7)
  6776. )
  6777. (label "HIGH TERM_2" (at 253.365 127 0)
  6778. (effects (font (size 1.27 1.27)) (justify left bottom))
  6779. (uuid 5343a590-fd61-492f-b875-cc2f9d103db6)
  6780. )
  6781. (label "SCSI_DAT2" (at 62.23 225.425 180)
  6782. (effects (font (size 1.27 1.27)) (justify right bottom))
  6783. (uuid 538b196e-2d7a-4a82-aad0-fd15275c0464)
  6784. )
  6785. (label "E_SCSI_DAT7" (at 249.555 205.74 0)
  6786. (effects (font (size 1.27 1.27)) (justify left bottom))
  6787. (uuid 53e69126-4ed7-4733-8ef2-a22b437eaaf9)
  6788. )
  6789. (label "E_SCSI_DAT3" (at 393.7 102.87 180)
  6790. (effects (font (size 1.27 1.27)) (justify right bottom))
  6791. (uuid 5430f505-2940-4a56-b2f9-e02d4f79087c)
  6792. )
  6793. (label "USB-" (at 74.295 106.045 0)
  6794. (effects (font (size 1.27 1.27)) (justify left bottom))
  6795. (uuid 5431a764-32a7-422d-8b07-d113108bac44)
  6796. )
  6797. (label "E_SCSI_DAT5" (at 171.45 139.065 180)
  6798. (effects (font (size 1.27 1.27)) (justify right bottom))
  6799. (uuid 54a88130-7846-4255-b905-7ac2cf4240ff)
  6800. )
  6801. (label "TERM_PWR" (at 46.99 31.75 0)
  6802. (effects (font (size 1.27 1.27)) (justify left bottom))
  6803. (uuid 56e8c8a5-5b23-4f6b-aea6-dac4b9f45c9e)
  6804. )
  6805. (label "E_SCSI_REQ" (at 317.5 216.535 0)
  6806. (effects (font (size 1.27 1.27)) (justify left bottom))
  6807. (uuid 576dffca-fceb-436f-a8fc-5ea1e76eb660)
  6808. )
  6809. (label "SCSI_SEL" (at 62.23 184.785 180)
  6810. (effects (font (size 1.27 1.27)) (justify right bottom))
  6811. (uuid 5911b31f-0c00-4d8d-b4fb-820bdbc94ac9)
  6812. )
  6813. (label "E_SCSI_DAT6" (at 393.7 110.49 180)
  6814. (effects (font (size 1.27 1.27)) (justify right bottom))
  6815. (uuid 596f47bf-dbef-4815-a657-dfa9c0b3fbec)
  6816. )
  6817. (label "SCSI_DBP" (at 62.23 240.665 180)
  6818. (effects (font (size 1.27 1.27)) (justify right bottom))
  6819. (uuid 5a29885b-7c4f-43b3-b25a-1f8785f8a498)
  6820. )
  6821. (label "SW1" (at 121.285 70.485 180)
  6822. (effects (font (size 1.27 1.27)) (justify right bottom))
  6823. (uuid 5ab96b66-a384-46bd-8a83-501738aa39a4)
  6824. )
  6825. (label "SCSI_MSG" (at 62.23 182.245 180)
  6826. (effects (font (size 1.27 1.27)) (justify right bottom))
  6827. (uuid 5baaa545-414b-43ea-883c-28085180ad30)
  6828. )
  6829. (label "E_SCSI_DAT5" (at 393.7 107.95 180)
  6830. (effects (font (size 1.27 1.27)) (justify right bottom))
  6831. (uuid 5e29a514-21f9-4178-8069-f36e6f538646)
  6832. )
  6833. (label "TERM_PWR" (at 357.505 36.195 90)
  6834. (effects (font (size 1.27 1.27)) (justify left bottom))
  6835. (uuid 5f9c13bc-e572-45b8-bf95-ba03c4bc32a1)
  6836. )
  6837. (label "SCSI_DAT0" (at 204.47 126.365 0)
  6838. (effects (font (size 1.27 1.27)) (justify left bottom))
  6839. (uuid 5fe14767-800c-49d2-b2e4-d965e290bd44)
  6840. )
  6841. (label "LED2" (at 171.45 67.31 90)
  6842. (effects (font (size 1.27 1.27)) (justify left bottom))
  6843. (uuid 62b53139-c689-419a-bc2e-233647993e1d)
  6844. )
  6845. (label "E_SCSI_ATN" (at 393.7 133.35 180)
  6846. (effects (font (size 1.27 1.27)) (justify right bottom))
  6847. (uuid 62f6c29e-6f92-40a3-b7ed-8a33e7b489d2)
  6848. )
  6849. (label "E_SCSI_CD" (at 203.835 217.805 0)
  6850. (effects (font (size 1.27 1.27)) (justify left bottom))
  6851. (uuid 635a7802-66fb-4a6e-9760-a55291f8f906)
  6852. )
  6853. (label "SCSI_DAT5" (at 204.47 139.065 0)
  6854. (effects (font (size 1.27 1.27)) (justify left bottom))
  6855. (uuid 6385d3ec-1c45-400a-99d5-e4d68304bab8)
  6856. )
  6857. (label "SWDIO" (at 114.935 169.545 0)
  6858. (effects (font (size 1.27 1.27)) (justify left bottom))
  6859. (uuid 6438a03c-b867-4936-8147-359624097f82)
  6860. )
  6861. (label "E_SCSI_DAT6" (at 249.555 200.66 0)
  6862. (effects (font (size 1.27 1.27)) (justify left bottom))
  6863. (uuid 66debf02-2b94-4321-bee9-23cd6aea6cfa)
  6864. )
  6865. (label "E_SCSI_DAT2" (at 393.7 100.33 180)
  6866. (effects (font (size 1.27 1.27)) (justify right bottom))
  6867. (uuid 677eb441-07e4-425e-8392-d8213b082473)
  6868. )
  6869. (label "nRST" (at 289.56 80.01 180)
  6870. (effects (font (size 1.27 1.27)) (justify right bottom))
  6871. (uuid 6937bc4d-8c32-4f76-89e1-b9d828a5e2ef)
  6872. )
  6873. (label "LED3" (at 114.3 151.765 0)
  6874. (effects (font (size 1.27 1.27)) (justify left bottom))
  6875. (uuid 698a1551-58d0-41b1-952d-9b183cadd20c)
  6876. )
  6877. (label "LOW TERM_2" (at 254 161.925 0)
  6878. (effects (font (size 1.27 1.27)) (justify left bottom))
  6879. (uuid 6f138485-e0fe-4832-a7de-2ddf992eaf52)
  6880. )
  6881. (label "LOW_TERM" (at 244.475 151.765 180)
  6882. (effects (font (size 1.27 1.27)) (justify right bottom))
  6883. (uuid 700fd126-8875-46eb-9e9c-1aecd085b380)
  6884. )
  6885. (label "E_SCSI_BSY" (at 317.5 201.295 0)
  6886. (effects (font (size 1.27 1.27)) (justify left bottom))
  6887. (uuid 702aa6bd-6951-46d5-b464-6a0614c59c2d)
  6888. )
  6889. (label "SD_MOSI" (at 114.935 192.405 0)
  6890. (effects (font (size 1.27 1.27)) (justify left bottom))
  6891. (uuid 72dc69d7-cb08-41fc-8f51-d52fd24fc6d7)
  6892. )
  6893. (label "SW2" (at 114.935 233.045 0)
  6894. (effects (font (size 1.27 1.27)) (justify left bottom))
  6895. (uuid 738268dd-e974-4479-abda-2bc14f0b66e6)
  6896. )
  6897. (label "SD_DAT2" (at 114.935 210.185 0)
  6898. (effects (font (size 1.27 1.27)) (justify left bottom))
  6899. (uuid 73b735fe-2f5e-4789-a2de-c073493c4495)
  6900. )
  6901. (label "E_SCSI_DAT1" (at 171.45 128.905 180)
  6902. (effects (font (size 1.27 1.27)) (justify right bottom))
  6903. (uuid 73b9a9cb-6ec1-4644-8eb6-344d7e837976)
  6904. )
  6905. (label "SCSI_DAT6" (at 204.47 141.605 0)
  6906. (effects (font (size 1.27 1.27)) (justify left bottom))
  6907. (uuid 76f23176-fc6d-4462-81b1-b704fb0868ad)
  6908. )
  6909. (label "USB+" (at 74.295 81.915 0)
  6910. (effects (font (size 1.27 1.27)) (justify left bottom))
  6911. (uuid 793c5b31-85f1-4c52-96c1-ac1a40364a58)
  6912. )
  6913. (label "SD_DAT1" (at 280.035 156.21 0)
  6914. (effects (font (size 1.27 1.27)) (justify left bottom))
  6915. (uuid 79cb8b10-beb5-4f5c-b2e5-999054d910aa)
  6916. )
  6917. (label "HIGH_TERM_1" (at 253.365 109.855 0)
  6918. (effects (font (size 1.27 1.27)) (justify left bottom))
  6919. (uuid 7c04de60-3fc6-436d-aa1c-b55c97bfcb95)
  6920. )
  6921. (label "E_SCSI_DBP" (at 393.7 115.57 180)
  6922. (effects (font (size 1.27 1.27)) (justify right bottom))
  6923. (uuid 811dcbae-74c1-4032-94f8-8be4ad52f001)
  6924. )
  6925. (label "SCSI_DAT3" (at 204.47 133.985 0)
  6926. (effects (font (size 1.27 1.27)) (justify left bottom))
  6927. (uuid 82030ebe-2af2-4ff6-97a8-7ff9a754f77b)
  6928. )
  6929. (label "SCSI_CD" (at 169.545 217.805 180)
  6930. (effects (font (size 1.27 1.27)) (justify right bottom))
  6931. (uuid 82345db0-206c-4d39-8319-98c508b8d234)
  6932. )
  6933. (label "E_SCSI_ATN" (at 203.835 260.985 0)
  6934. (effects (font (size 1.27 1.27)) (justify left bottom))
  6935. (uuid 85f7fd17-3f5c-4eba-a8de-573020eca769)
  6936. )
  6937. (label "SD_MISO" (at 114.935 189.865 0)
  6938. (effects (font (size 1.27 1.27)) (justify left bottom))
  6939. (uuid 872f5fbc-c003-40e8-8433-33531beae166)
  6940. )
  6941. (label "UART_RX" (at 326.39 76.835 180)
  6942. (effects (font (size 1.27 1.27)) (justify right bottom))
  6943. (uuid 897e35fa-5f7e-4dcb-b494-171b19cad8f8)
  6944. )
  6945. (label "SWDIO" (at 304.8 77.47 0)
  6946. (effects (font (size 1.27 1.27)) (justify left bottom))
  6947. (uuid 8ac5d60f-1550-4426-ba5f-03c73ef52228)
  6948. )
  6949. (label "SCSI_RST" (at 115.57 174.625 0)
  6950. (effects (font (size 1.27 1.27)) (justify left bottom))
  6951. (uuid 8ffe5735-c448-42be-9af3-1db110f19998)
  6952. )
  6953. (label "HIGH_TERM" (at 114.935 200.025 0)
  6954. (effects (font (size 1.27 1.27)) (justify left bottom))
  6955. (uuid 90201385-ad90-4de1-81cb-4b96ff9bae4c)
  6956. )
  6957. (label "E_SCSI_DAT1" (at 249.555 215.9 0)
  6958. (effects (font (size 1.27 1.27)) (justify left bottom))
  6959. (uuid 90c27b67-4ef0-4743-a6df-95fe052e816a)
  6960. )
  6961. (label "SCSI_ACK" (at 169.545 258.445 180)
  6962. (effects (font (size 1.27 1.27)) (justify right bottom))
  6963. (uuid 91e55109-686d-4c0b-aa29-55e60400aaa1)
  6964. )
  6965. (label "E_SCSI_SEL" (at 203.835 253.365 0)
  6966. (effects (font (size 1.27 1.27)) (justify left bottom))
  6967. (uuid 92190aec-b57c-4a19-b574-682925aa04b6)
  6968. )
  6969. (label "SCSI_TAD" (at 170.18 248.285 180)
  6970. (effects (font (size 1.27 1.27)) (justify right bottom))
  6971. (uuid 92308411-f906-4460-8f0d-b4e739a58e29)
  6972. )
  6973. (label "SCSI_MSG" (at 169.545 220.345 180)
  6974. (effects (font (size 1.27 1.27)) (justify right bottom))
  6975. (uuid 946c477c-c5f7-43b3-accb-49a7051192f3)
  6976. )
  6977. (label "E_SCSI_MSG" (at 393.7 146.05 180)
  6978. (effects (font (size 1.27 1.27)) (justify right bottom))
  6979. (uuid 994ec885-6884-4cc7-adb2-8624a30a017c)
  6980. )
  6981. (label "SD_CS" (at 280.035 140.97 0)
  6982. (effects (font (size 1.27 1.27)) (justify left bottom))
  6983. (uuid 9b3464e7-b25e-476b-8393-d28f869b1a03)
  6984. )
  6985. (label "SW3" (at 121.285 75.565 180)
  6986. (effects (font (size 1.27 1.27)) (justify right bottom))
  6987. (uuid 9c33887d-bbb5-4b82-b9d9-361b869c15b5)
  6988. )
  6989. (label "SCSI_DAT6" (at 62.23 235.585 180)
  6990. (effects (font (size 1.27 1.27)) (justify right bottom))
  6991. (uuid 9de257cb-c447-4b1f-ae44-c1e3da6efa18)
  6992. )
  6993. (label "E_SCSI_SEL" (at 317.5 211.455 0)
  6994. (effects (font (size 1.27 1.27)) (justify left bottom))
  6995. (uuid a1e0eb07-0244-4d92-8d6c-6a8f3aad86df)
  6996. )
  6997. (label "SCSI_BSY" (at 114.935 194.945 0)
  6998. (effects (font (size 1.27 1.27)) (justify left bottom))
  6999. (uuid a2d00796-078f-401b-983d-8b8112e5c730)
  7000. )
  7001. (label "EXTERNAL_LED" (at 114.935 136.525 0)
  7002. (effects (font (size 1.27 1.27)) (justify left bottom))
  7003. (uuid a3c3d019-d0ce-4d9d-94a4-12394173659e)
  7004. )
  7005. (label "SCSI_DAT4" (at 62.23 230.505 180)
  7006. (effects (font (size 1.27 1.27)) (justify right bottom))
  7007. (uuid aabb4e87-d1c6-4f96-a916-3a05f6410d07)
  7008. )
  7009. (label "E_SCSI_REQ" (at 203.835 215.265 0)
  7010. (effects (font (size 1.27 1.27)) (justify left bottom))
  7011. (uuid ab11b686-7812-4247-9109-bc78e9f0689f)
  7012. )
  7013. (label "SCSI_DAT4" (at 204.47 136.525 0)
  7014. (effects (font (size 1.27 1.27)) (justify left bottom))
  7015. (uuid ac693de2-2bdf-47ce-bf98-1829abae1ab8)
  7016. )
  7017. (label "E_SCSI_RST" (at 317.5 206.375 0)
  7018. (effects (font (size 1.27 1.27)) (justify left bottom))
  7019. (uuid ad729971-cc15-4e0d-aadb-7dbea542bc1f)
  7020. )
  7021. (label "SCSI_SEL" (at 169.545 253.365 180)
  7022. (effects (font (size 1.27 1.27)) (justify right bottom))
  7023. (uuid ad90c2e2-3b80-49a1-91ba-945b960f11e2)
  7024. )
  7025. (label "SCSI_ATN" (at 114.935 212.725 0)
  7026. (effects (font (size 1.27 1.27)) (justify left bottom))
  7027. (uuid adb9dcb1-f583-47b6-89ad-e5ea404410e7)
  7028. )
  7029. (label "SCSI_IND" (at 170.18 207.645 180)
  7030. (effects (font (size 1.27 1.27)) (justify right bottom))
  7031. (uuid ae407555-fe72-4551-9543-a9c59d09d553)
  7032. )
  7033. (label "E_SCSI_SEL" (at 393.7 148.59 180)
  7034. (effects (font (size 1.27 1.27)) (justify right bottom))
  7035. (uuid b2548020-3ce4-4fdc-9a64-8fcd2e6de413)
  7036. )
  7037. (label "E_SCSI_RST" (at 203.835 255.905 0)
  7038. (effects (font (size 1.27 1.27)) (justify left bottom))
  7039. (uuid b8e81c0f-2d09-435c-b193-3eccc44a6fef)
  7040. )
  7041. (label "E_SCSI_RST" (at 393.7 143.51 180)
  7042. (effects (font (size 1.27 1.27)) (justify right bottom))
  7043. (uuid b9be3909-0f30-435c-b7d7-d1a834d6cf4e)
  7044. )
  7045. (label "E_SCSI_DAT4" (at 393.7 105.41 180)
  7046. (effects (font (size 1.27 1.27)) (justify right bottom))
  7047. (uuid ba2b797a-a694-4957-94c4-c935488aba2a)
  7048. )
  7049. (label "E_SCSI_DBP" (at 249.555 203.2 0)
  7050. (effects (font (size 1.27 1.27)) (justify left bottom))
  7051. (uuid be96eb3e-e883-406d-85c4-3e5fdd5138ee)
  7052. )
  7053. (label "E_SCSI_DAT5" (at 249.555 198.12 0)
  7054. (effects (font (size 1.27 1.27)) (justify left bottom))
  7055. (uuid bec9a4ed-7aba-43df-9312-a53db5c6d643)
  7056. )
  7057. (label "~{TRANS_OE}" (at 171.45 118.745 180)
  7058. (effects (font (size 1.27 1.27)) (justify right bottom))
  7059. (uuid c0dd6704-15b7-4ab3-9321-79f3b6d074dc)
  7060. )
  7061. (label "SCSI_REQ" (at 62.23 189.865 180)
  7062. (effects (font (size 1.27 1.27)) (justify right bottom))
  7063. (uuid c56b6365-3459-4cbe-b0bc-a0398a1e14b2)
  7064. )
  7065. (label "UART_TX" (at 326.39 79.375 180)
  7066. (effects (font (size 1.27 1.27)) (justify right bottom))
  7067. (uuid ca6bc19b-a58f-4a09-923d-f8fdece43d9f)
  7068. )
  7069. (label "HIGH_TERM" (at 243.84 133.985 180)
  7070. (effects (font (size 1.27 1.27)) (justify right bottom))
  7071. (uuid cbfdfd2e-c6bd-459a-b7b7-1ef6c8d5c51f)
  7072. )
  7073. (label "E_SCSI_CD" (at 393.7 151.13 180)
  7074. (effects (font (size 1.27 1.27)) (justify right bottom))
  7075. (uuid cdf4c4be-a4f6-4c89-8d02-eacdf67fc0f1)
  7076. )
  7077. (label "LOW_TERM" (at 114.935 202.565 0)
  7078. (effects (font (size 1.27 1.27)) (justify left bottom))
  7079. (uuid ce3626e7-89e1-4f87-8911-870744d611c8)
  7080. )
  7081. (label "E_SCSI_MSG" (at 317.5 208.915 0)
  7082. (effects (font (size 1.27 1.27)) (justify left bottom))
  7083. (uuid d02dca21-30fc-4766-b92c-08219871500d)
  7084. )
  7085. (label "SCSI_ATN" (at 169.545 260.985 180)
  7086. (effects (font (size 1.27 1.27)) (justify right bottom))
  7087. (uuid d1a0de43-564c-433b-8447-bd5be3445397)
  7088. )
  7089. (label "SD_MOSI" (at 280.035 143.51 0)
  7090. (effects (font (size 1.27 1.27)) (justify left bottom))
  7091. (uuid d2583bd8-e8ab-4541-86a8-6cdbc214ef8b)
  7092. )
  7093. (label "SCSI_REQ" (at 169.545 215.265 180)
  7094. (effects (font (size 1.27 1.27)) (justify right bottom))
  7095. (uuid d3474e07-c9bf-4250-8216-447072e44314)
  7096. )
  7097. (label "SCSI_ACK" (at 114.935 197.485 0)
  7098. (effects (font (size 1.27 1.27)) (justify left bottom))
  7099. (uuid d4a4f306-49bb-4931-8c4f-d73c39f332c3)
  7100. )
  7101. (label "E_SCSI_IO" (at 317.5 219.075 0)
  7102. (effects (font (size 1.27 1.27)) (justify left bottom))
  7103. (uuid d53e70ee-37fb-4d92-8a3b-4452c947b2f7)
  7104. )
  7105. (label "E_SCSI_ACK" (at 393.7 140.97 180)
  7106. (effects (font (size 1.27 1.27)) (justify right bottom))
  7107. (uuid d7a79bc6-421a-42d8-892f-d45f994c34d6)
  7108. )
  7109. (label "LOW_TERM" (at 244.475 168.91 180)
  7110. (effects (font (size 1.27 1.27)) (justify right bottom))
  7111. (uuid d860e53d-8301-476b-b530-bda91494ddb4)
  7112. )
  7113. (label "SD_CLK" (at 280.035 148.59 0)
  7114. (effects (font (size 1.27 1.27)) (justify left bottom))
  7115. (uuid d8b0316e-7e65-4e62-b818-28e9a05b8ba7)
  7116. )
  7117. (label "SCSI_DAT7" (at 204.47 144.145 0)
  7118. (effects (font (size 1.27 1.27)) (justify left bottom))
  7119. (uuid da018ba4-889e-4b5e-8406-7a5a7e733786)
  7120. )
  7121. (label "SD_MISO" (at 280.035 153.67 0)
  7122. (effects (font (size 1.27 1.27)) (justify left bottom))
  7123. (uuid df326b0c-af9f-428c-a160-a6f0ab710b85)
  7124. )
  7125. (label "SCSI_IO" (at 169.545 212.725 180)
  7126. (effects (font (size 1.27 1.27)) (justify right bottom))
  7127. (uuid e1c7b701-c8b7-4dff-9bb4-e078e0c29b73)
  7128. )
  7129. (label "E_SCSI_DAT1" (at 393.7 97.79 180)
  7130. (effects (font (size 1.27 1.27)) (justify right bottom))
  7131. (uuid e27f3734-6699-4eaf-9bec-969dfdcd8c6a)
  7132. )
  7133. (label "SD_CS" (at 114.935 182.245 0)
  7134. (effects (font (size 1.27 1.27)) (justify left bottom))
  7135. (uuid e3994526-7289-4880-9deb-383f8ba1dec2)
  7136. )
  7137. (label "E_SCSI_DAT6" (at 171.45 141.605 180)
  7138. (effects (font (size 1.27 1.27)) (justify right bottom))
  7139. (uuid e4d07756-91b0-45b4-a64d-b48bba6c3a98)
  7140. )
  7141. (label "SD_DET" (at 114.935 179.705 0)
  7142. (effects (font (size 1.27 1.27)) (justify left bottom))
  7143. (uuid e59c6690-436c-44a9-be56-25bd56bd204b)
  7144. )
  7145. (label "E_SCSI_DAT4" (at 171.45 136.525 180)
  7146. (effects (font (size 1.27 1.27)) (justify right bottom))
  7147. (uuid e6d51476-fe00-4021-86d2-a5e151fa99a8)
  7148. )
  7149. (label "E_SCSI_BSY" (at 393.7 138.43 180)
  7150. (effects (font (size 1.27 1.27)) (justify right bottom))
  7151. (uuid e8dd929d-d187-4ce7-8194-f8fe96bcfe74)
  7152. )
  7153. (label "E_SCSI_DAT0" (at 393.7 95.25 180)
  7154. (effects (font (size 1.27 1.27)) (justify right bottom))
  7155. (uuid eae523f7-ed4a-40e8-ac0d-595450787a5e)
  7156. )
  7157. (label "SCSI_IO" (at 62.23 192.405 180)
  7158. (effects (font (size 1.27 1.27)) (justify right bottom))
  7159. (uuid ed09add8-c7e7-4b3f-b6a3-7cf690f6d9a3)
  7160. )
  7161. (label "E_SCSI_DAT0" (at 249.555 213.36 0)
  7162. (effects (font (size 1.27 1.27)) (justify left bottom))
  7163. (uuid ed9a2e94-ad45-4666-bfed-de155959559f)
  7164. )
  7165. (label "UART_TX" (at 114.3 141.605 0)
  7166. (effects (font (size 1.27 1.27)) (justify left bottom))
  7167. (uuid f0919976-fb8f-458f-943d-db19f35f490e)
  7168. )
  7169. (label "SD_DAT1" (at 114.935 205.105 0)
  7170. (effects (font (size 1.27 1.27)) (justify left bottom))
  7171. (uuid f0fe1e0e-ffec-4ae3-9fa5-0d6f42227bc3)
  7172. )
  7173. (label "SCSI_TAD" (at 114.3 225.425 0)
  7174. (effects (font (size 1.27 1.27)) (justify left bottom))
  7175. (uuid f2b753c5-c0b0-46c6-968a-9c0778986481)
  7176. )
  7177. (label "E_SCSI_DAT0" (at 171.45 126.365 180)
  7178. (effects (font (size 1.27 1.27)) (justify right bottom))
  7179. (uuid f49962b6-537d-44b9-b1e3-4fab1ac21dda)
  7180. )
  7181. (label "SCSI_DTD" (at 170.815 163.195 180)
  7182. (effects (font (size 1.27 1.27)) (justify right bottom))
  7183. (uuid f5f7cce7-2a76-40c7-aca9-ffecb5727279)
  7184. )
  7185. (label "LED3" (at 180.34 67.31 90)
  7186. (effects (font (size 1.27 1.27)) (justify left bottom))
  7187. (uuid f8eef18d-7f65-452e-8d05-e539aeaa1b8b)
  7188. )
  7189. (label "SCSI_DAT3" (at 62.23 227.965 180)
  7190. (effects (font (size 1.27 1.27)) (justify right bottom))
  7191. (uuid f9e230ed-4d72-4e6b-8627-4d9e42c16a60)
  7192. )
  7193. (label "SD_DAT2" (at 280.67 138.43 0)
  7194. (effects (font (size 1.27 1.27)) (justify left bottom))
  7195. (uuid fa8e7e22-c7c6-496e-9c12-d6b2bc85af74)
  7196. )
  7197. (label "SCSI_DAT1" (at 62.23 222.885 180)
  7198. (effects (font (size 1.27 1.27)) (justify right bottom))
  7199. (uuid fee0fc3e-a0d4-4fc8-8e45-8df9f989d338)
  7200. )
  7201. (global_label "USB_POWER" (shape input) (at 93.345 67.945 0) (fields_autoplaced)
  7202. (effects (font (size 1.27 1.27)) (justify left))
  7203. (uuid 22bb545e-f0e7-4abc-b337-0b0834baacd3)
  7204. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 106.9178 67.8656 0)
  7205. (effects (font (size 1.27 1.27)) (justify left) hide)
  7206. )
  7207. )
  7208. (global_label "USB_POWER" (shape input) (at 347.98 36.195 90) (fields_autoplaced)
  7209. (effects (font (size 1.27 1.27)) (justify left))
  7210. (uuid a72062af-a8aa-4f1b-bdaa-6425bb144d75)
  7211. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 347.9006 22.6222 90)
  7212. (effects (font (size 1.27 1.27)) (justify left) hide)
  7213. )
  7214. )
  7215. (global_label "USB_POWER" (shape input) (at 59.69 50.8 180) (fields_autoplaced)
  7216. (effects (font (size 1.27 1.27)) (justify right))
  7217. (uuid f869f57d-2afd-4e08-967c-90266c5e8292)
  7218. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 46.1172 50.8794 0)
  7219. (effects (font (size 1.27 1.27)) (justify right) hide)
  7220. )
  7221. )
  7222. (symbol (lib_id "Connector_Generic:Conn_02x25_Odd_Even") (at 372.11 125.73 0) (unit 1)
  7223. (in_bom yes) (on_board yes)
  7224. (uuid 00000000-0000-0000-0000-00005f0261a7)
  7225. (property "Reference" "J2" (id 0) (at 373.38 87.4522 0))
  7226. (property "Value" "Conn_02x25_Odd_Even" (id 1) (at 373.38 89.7636 0))
  7227. (property "Footprint" "Connector_IDC:IDC-Header_2x25_P2.54mm_Vertical" (id 2) (at 373.38 92.075 0))
  7228. (property "Datasheet" "https://lcsc.com/product-detail/IDC-Connectors_BOOMELE-Boom-Precision-Elec-C30006_C30006.html" (id 3) (at 372.11 125.73 0)
  7229. (effects (font (size 1.27 1.27)) hide)
  7230. )
  7231. (property "LCSC" "NM" (id 4) (at 372.11 125.73 0)
  7232. (effects (font (size 1.27 1.27)) hide)
  7233. )
  7234. (pin "1" (uuid a878a65d-773f-4607-bbfc-f4344cbe2c63))
  7235. (pin "10" (uuid 39f62b3a-0830-4768-981f-2b872642191e))
  7236. (pin "11" (uuid 184572c6-1b63-43b5-9e46-1e84b2364b2f))
  7237. (pin "12" (uuid ade414b5-58b4-4670-8016-3c98943a4596))
  7238. (pin "13" (uuid 876adcd2-80db-4bf5-9137-80527036cd39))
  7239. (pin "14" (uuid e931cbf9-6b95-404e-89ef-3457fd2bb564))
  7240. (pin "15" (uuid ba49d59a-637d-4e73-9db0-cbb88dde8355))
  7241. (pin "16" (uuid 1db6c9be-6152-49e1-9c12-524f965fcc67))
  7242. (pin "17" (uuid 97522075-3a03-4289-9bc7-80a005e9b05f))
  7243. (pin "18" (uuid 1710dd93-a115-4c7c-ae05-265b8e69234c))
  7244. (pin "19" (uuid 762be30a-0c45-4931-9ad6-61a189ee22bc))
  7245. (pin "2" (uuid 546764d2-ee91-4b0b-9562-8f4ed339e30a))
  7246. (pin "20" (uuid 5b31471c-71ef-46d1-962f-3a49d584cc2e))
  7247. (pin "21" (uuid 263744e5-5825-4486-8611-44009a4dd82d))
  7248. (pin "22" (uuid 220c906f-f072-4494-87c3-65bf7e6fbe2c))
  7249. (pin "23" (uuid 0a357af9-4517-41c0-9c3b-41f96d80989f))
  7250. (pin "24" (uuid c8110d67-dd07-41eb-b317-30dc1e93439e))
  7251. (pin "25" (uuid e1ddd3c9-6a69-4745-966b-a4684aa1cf84))
  7252. (pin "26" (uuid 4599b3e4-76b9-4644-81ef-4016cb94607b))
  7253. (pin "27" (uuid 1124e02c-388b-4117-8e45-9c90cdd9f3a5))
  7254. (pin "28" (uuid b05e0208-1e13-4676-9312-95a4e76d12ca))
  7255. (pin "29" (uuid 6ecfeb42-9ae3-451c-a1a2-9d46dda30573))
  7256. (pin "3" (uuid 1e6332a2-1037-4e1e-9107-35d334b8fd80))
  7257. (pin "30" (uuid f28baf4e-056a-487b-ad1e-ff76163c5881))
  7258. (pin "31" (uuid bab43caf-af0e-4e73-b5ea-4f8d27d28099))
  7259. (pin "32" (uuid 1537e094-d94a-4f3a-8da0-fbbad63b6195))
  7260. (pin "33" (uuid 9d6cf9c4-c512-45e0-a32b-1c79f3b4b171))
  7261. (pin "34" (uuid 7e3a8289-b051-413d-a130-d0d4998e3aaf))
  7262. (pin "35" (uuid 7ec09783-cab2-44c3-8f99-774c0cb232d8))
  7263. (pin "36" (uuid ccd98d43-f224-4c4c-9281-980d870c265f))
  7264. (pin "37" (uuid f24a4f5e-096d-4874-aa75-448d97792bb5))
  7265. (pin "38" (uuid f950d40b-921f-468f-926b-b48d645b445a))
  7266. (pin "39" (uuid 4969d155-4ae1-4c7a-8e0f-cc15f0e05d7f))
  7267. (pin "4" (uuid 0ec435e0-2219-4036-8fc8-9d64c1b535ad))
  7268. (pin "40" (uuid f2d56514-726e-4e01-8e87-06ffc19ccc82))
  7269. (pin "41" (uuid 0245ef34-66d2-488c-8f7f-7c73dcdac75e))
  7270. (pin "42" (uuid ca3271f0-b13c-43ad-8442-99ebd0d29b7d))
  7271. (pin "43" (uuid 20961d63-8151-488c-954b-cf17af4bc6e2))
  7272. (pin "44" (uuid 1ba1bff8-f773-4318-87c1-74dd20d08185))
  7273. (pin "45" (uuid 11345237-a785-4c8d-a63c-c21f7fa92a86))
  7274. (pin "46" (uuid 47abb7cf-eff5-4c62-8cfc-e85e9dc6b657))
  7275. (pin "47" (uuid 74a20e5a-5692-4014-bbdb-9076812465cc))
  7276. (pin "48" (uuid e75196a2-eadc-47d1-ab8b-777aeb535f0f))
  7277. (pin "49" (uuid 63096d75-6860-4e3b-915e-047f9d12b654))
  7278. (pin "5" (uuid 1948d8a4-89c3-4d55-b428-345200057889))
  7279. (pin "50" (uuid 80379cfa-713e-4640-9310-27a00dda4c9a))
  7280. (pin "6" (uuid d1a12057-d931-4249-98b9-95dba20397cb))
  7281. (pin "7" (uuid d1a26eba-c67c-42ce-900d-b3c830dfdcae))
  7282. (pin "8" (uuid 33554528-2214-471f-97a6-c7dafa914052))
  7283. (pin "9" (uuid b9903813-75ae-4ac6-ba73-007d16d2beba))
  7284. )
  7285. (symbol (lib_id "power:GND") (at 362.585 161.29 0) (unit 1)
  7286. (in_bom yes) (on_board yes)
  7287. (uuid 00000000-0000-0000-0000-00005f0440b9)
  7288. (property "Reference" "#PWR0101" (id 0) (at 362.585 167.64 0)
  7289. (effects (font (size 1.27 1.27)) hide)
  7290. )
  7291. (property "Value" "GND" (id 1) (at 362.712 165.6842 0))
  7292. (property "Footprint" "" (id 2) (at 362.585 161.29 0)
  7293. (effects (font (size 1.27 1.27)) hide)
  7294. )
  7295. (property "Datasheet" "" (id 3) (at 362.585 161.29 0)
  7296. (effects (font (size 1.27 1.27)) hide)
  7297. )
  7298. (pin "1" (uuid 3fd38718-90f4-47eb-976c-743c9bbb1775))
  7299. )
  7300. (symbol (lib_id "power:+3.3V") (at 276.225 144.145 0) (unit 1)
  7301. (in_bom yes) (on_board yes)
  7302. (uuid 00000000-0000-0000-0000-00005f08f209)
  7303. (property "Reference" "#PWR0108" (id 0) (at 276.225 147.955 0)
  7304. (effects (font (size 1.27 1.27)) hide)
  7305. )
  7306. (property "Value" "+3.3V" (id 1) (at 276.225 140.335 0))
  7307. (property "Footprint" "" (id 2) (at 276.225 144.145 0)
  7308. (effects (font (size 1.27 1.27)) hide)
  7309. )
  7310. (property "Datasheet" "" (id 3) (at 276.225 144.145 0)
  7311. (effects (font (size 1.27 1.27)) hide)
  7312. )
  7313. (pin "1" (uuid 2e6fee72-f789-4de7-a0d2-bd19cdea2ada))
  7314. )
  7315. (symbol (lib_id "power:GND") (at 277.495 154.94 0) (unit 1)
  7316. (in_bom yes) (on_board yes)
  7317. (uuid 00000000-0000-0000-0000-00005f092548)
  7318. (property "Reference" "#PWR0109" (id 0) (at 277.495 161.29 0)
  7319. (effects (font (size 1.27 1.27)) hide)
  7320. )
  7321. (property "Value" "GND" (id 1) (at 277.622 159.3342 0))
  7322. (property "Footprint" "" (id 2) (at 277.495 154.94 0)
  7323. (effects (font (size 1.27 1.27)) hide)
  7324. )
  7325. (property "Datasheet" "" (id 3) (at 277.495 154.94 0)
  7326. (effects (font (size 1.27 1.27)) hide)
  7327. )
  7328. (pin "1" (uuid f723f77a-ea59-4e49-8c54-4ea2105fa35a))
  7329. )
  7330. (symbol (lib_id "power:GND") (at 340.995 165.1 0) (unit 1)
  7331. (in_bom yes) (on_board yes)
  7332. (uuid 00000000-0000-0000-0000-00005f0d8d42)
  7333. (property "Reference" "#PWR0110" (id 0) (at 340.995 171.45 0)
  7334. (effects (font (size 1.27 1.27)) hide)
  7335. )
  7336. (property "Value" "GND" (id 1) (at 341.122 169.4942 0))
  7337. (property "Footprint" "" (id 2) (at 340.995 165.1 0)
  7338. (effects (font (size 1.27 1.27)) hide)
  7339. )
  7340. (property "Datasheet" "" (id 3) (at 340.995 165.1 0)
  7341. (effects (font (size 1.27 1.27)) hide)
  7342. )
  7343. (pin "1" (uuid bfd6e0a6-92dd-46a9-90dd-46e8cab191d3))
  7344. )
  7345. (symbol (lib_id "power:GND") (at 400.05 134.62 0) (unit 1)
  7346. (in_bom yes) (on_board yes)
  7347. (uuid 00000000-0000-0000-0000-00005f2d285f)
  7348. (property "Reference" "#PWR0116" (id 0) (at 400.05 140.97 0)
  7349. (effects (font (size 1.27 1.27)) hide)
  7350. )
  7351. (property "Value" "GND" (id 1) (at 400.177 139.0142 0))
  7352. (property "Footprint" "" (id 2) (at 400.05 134.62 0)
  7353. (effects (font (size 1.27 1.27)) hide)
  7354. )
  7355. (property "Datasheet" "" (id 3) (at 400.05 134.62 0)
  7356. (effects (font (size 1.27 1.27)) hide)
  7357. )
  7358. (pin "1" (uuid 59f94307-21d0-43ee-8dec-dd88848f697b))
  7359. )
  7360. (symbol (lib_id "power:GND") (at 26.67 36.195 0) (unit 1)
  7361. (in_bom yes) (on_board yes)
  7362. (uuid 00000000-0000-0000-0000-00005f9cfb24)
  7363. (property "Reference" "#PWR0117" (id 0) (at 26.67 42.545 0)
  7364. (effects (font (size 1.27 1.27)) hide)
  7365. )
  7366. (property "Value" "GND" (id 1) (at 26.797 39.4462 90)
  7367. (effects (font (size 1.27 1.27)) (justify right))
  7368. )
  7369. (property "Footprint" "" (id 2) (at 26.67 36.195 0)
  7370. (effects (font (size 1.27 1.27)) hide)
  7371. )
  7372. (property "Datasheet" "" (id 3) (at 26.67 36.195 0)
  7373. (effects (font (size 1.27 1.27)) hide)
  7374. )
  7375. (pin "1" (uuid e7e7f224-4fa2-4326-a5bb-5ec8e5d24746))
  7376. )
  7377. (symbol (lib_id "power:+5V") (at 46.99 40.64 0) (unit 1)
  7378. (in_bom yes) (on_board yes)
  7379. (uuid 00000000-0000-0000-0000-00005fb28dfc)
  7380. (property "Reference" "#PWR0103" (id 0) (at 46.99 44.45 0)
  7381. (effects (font (size 1.27 1.27)) hide)
  7382. )
  7383. (property "Value" "+5V" (id 1) (at 47.371 36.2458 0))
  7384. (property "Footprint" "" (id 2) (at 46.99 40.64 0)
  7385. (effects (font (size 1.27 1.27)) hide)
  7386. )
  7387. (property "Datasheet" "" (id 3) (at 46.99 40.64 0)
  7388. (effects (font (size 1.27 1.27)) hide)
  7389. )
  7390. (pin "1" (uuid 8ad979e3-ab4b-4c91-8ec4-e34515f5fdf5))
  7391. )
  7392. (symbol (lib_id "Device:D_Schottky") (at 54.61 40.64 180) (unit 1)
  7393. (in_bom yes) (on_board yes)
  7394. (uuid 00000000-0000-0000-0000-00005fb96eb2)
  7395. (property "Reference" "D4" (id 0) (at 53.467 37.846 0)
  7396. (effects (font (size 1.27 1.27)) (justify right))
  7397. )
  7398. (property "Value" "1N5819W" (id 1) (at 52.07 43.18 0)
  7399. (effects (font (size 1.27 1.27)) (justify right))
  7400. )
  7401. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 54.61 40.64 0)
  7402. (effects (font (size 1.27 1.27)) hide)
  7403. )
  7404. (property "Datasheet" "~" (id 3) (at 54.61 40.64 0)
  7405. (effects (font (size 1.27 1.27)) hide)
  7406. )
  7407. (property "LCSC" "C963381" (id 4) (at 54.61 40.64 90)
  7408. (effects (font (size 1.27 1.27)) hide)
  7409. )
  7410. (pin "1" (uuid 78474c30-2439-4435-934e-3b4f8c229462))
  7411. (pin "2" (uuid a091ce5d-4794-4521-8a1a-5b035f3f63f9))
  7412. )
  7413. (symbol (lib_id "Device:D_Schottky") (at 58.42 31.75 180) (unit 1)
  7414. (in_bom yes) (on_board yes)
  7415. (uuid 00000000-0000-0000-0000-00005fb97e4b)
  7416. (property "Reference" "D5" (id 0) (at 57.15 29.21 0)
  7417. (effects (font (size 1.27 1.27)) (justify right))
  7418. )
  7419. (property "Value" "1N5819W" (id 1) (at 57.15 34.29 0)
  7420. (effects (font (size 1.27 1.27)) (justify right))
  7421. )
  7422. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 58.42 31.75 0)
  7423. (effects (font (size 1.27 1.27)) hide)
  7424. )
  7425. (property "Datasheet" "~" (id 3) (at 58.42 31.75 0)
  7426. (effects (font (size 1.27 1.27)) hide)
  7427. )
  7428. (property "LCSC" "C963381" (id 4) (at 58.42 31.75 0)
  7429. (effects (font (size 1.27 1.27)) hide)
  7430. )
  7431. (pin "1" (uuid 59eec92d-f394-4b57-bce8-25dd2de46d43))
  7432. (pin "2" (uuid c55c33f1-36be-43d9-8c30-842eb4f3b20d))
  7433. )
  7434. (symbol (lib_id "power:+5V") (at 36.195 32.385 0) (unit 1)
  7435. (in_bom yes) (on_board yes)
  7436. (uuid 00000000-0000-0000-0000-00005fbe27dc)
  7437. (property "Reference" "#PWR0119" (id 0) (at 36.195 36.195 0)
  7438. (effects (font (size 1.27 1.27)) hide)
  7439. )
  7440. (property "Value" "+5V" (id 1) (at 36.576 27.9908 0))
  7441. (property "Footprint" "" (id 2) (at 36.195 32.385 0)
  7442. (effects (font (size 1.27 1.27)) hide)
  7443. )
  7444. (property "Datasheet" "" (id 3) (at 36.195 32.385 0)
  7445. (effects (font (size 1.27 1.27)) hide)
  7446. )
  7447. (pin "1" (uuid d3f08339-25bd-482d-96ee-42dfaab871d1))
  7448. )
  7449. (symbol (lib_id "Connector:Conn_01x02_Female") (at 207.645 77.47 270) (mirror x) (unit 1)
  7450. (in_bom yes) (on_board yes)
  7451. (uuid 00000000-0000-0000-0000-000060d2a72a)
  7452. (property "Reference" "J3" (id 0) (at 206.375 76.2 0)
  7453. (effects (font (size 1.27 1.27)) (justify right))
  7454. )
  7455. (property "Value" "ACT_LED" (id 1) (at 203.2 80.01 90)
  7456. (effects (font (size 1.27 1.27)) (justify right))
  7457. )
  7458. (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x02_P2.54mm_Vertical" (id 2) (at 207.645 77.47 0)
  7459. (effects (font (size 1.27 1.27)) hide)
  7460. )
  7461. (property "Datasheet" "~" (id 3) (at 207.645 77.47 0)
  7462. (effects (font (size 1.27 1.27)) hide)
  7463. )
  7464. (property "Mouser" "https://www.mouser.com/ProductDetail/872-920-0011-01" (id 4) (at 207.645 77.47 0)
  7465. (effects (font (size 1.27 1.27)) hide)
  7466. )
  7467. (property "Mouser_1" "https://www.mouser.com/ProductDetail/151-8001-E" (id 5) (at 207.645 77.47 0)
  7468. (effects (font (size 1.27 1.27)) hide)
  7469. )
  7470. (property "LCSC" "NM" (id 6) (at 207.645 77.47 0)
  7471. (effects (font (size 1.27 1.27)) hide)
  7472. )
  7473. (pin "1" (uuid 9efef95a-acb1-4ac1-b076-dcf48444e6a8))
  7474. (pin "2" (uuid 3df4d97e-2b48-4f61-b05f-5bd8049447e2))
  7475. )
  7476. (symbol (lib_id "Connector:Conn_01x02_Female") (at 207.645 67.945 270) (mirror x) (unit 1)
  7477. (in_bom yes) (on_board yes)
  7478. (uuid 00000000-0000-0000-0000-000060d2a732)
  7479. (property "Reference" "J4" (id 0) (at 206.375 66.675 0)
  7480. (effects (font (size 1.27 1.27)) (justify right))
  7481. )
  7482. (property "Value" "POWER_LED" (id 1) (at 203.835 68.58 90)
  7483. (effects (font (size 1.27 1.27)) (justify right))
  7484. )
  7485. (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x02_P2.54mm_Vertical" (id 2) (at 207.645 67.945 0)
  7486. (effects (font (size 1.27 1.27)) hide)
  7487. )
  7488. (property "Datasheet" "~" (id 3) (at 207.645 67.945 0)
  7489. (effects (font (size 1.27 1.27)) hide)
  7490. )
  7491. (property "Mouser" "https://www.mouser.com/ProductDetail/872-920-0011-01" (id 4) (at 207.645 67.945 0)
  7492. (effects (font (size 1.27 1.27)) hide)
  7493. )
  7494. (property "Mouser_1" "https://www.mouser.com/ProductDetail/151-8001-E" (id 5) (at 207.645 67.945 0)
  7495. (effects (font (size 1.27 1.27)) hide)
  7496. )
  7497. (property "LCSC" "NM" (id 6) (at 207.645 67.945 0)
  7498. (effects (font (size 1.27 1.27)) hide)
  7499. )
  7500. (pin "1" (uuid df6fa2cb-8226-49e6-843c-c62f7e4ab582))
  7501. (pin "2" (uuid e5871204-ecd5-4ba0-8ae7-115d6af7de77))
  7502. )
  7503. (symbol (lib_id "power:GND") (at 196.215 83.82 270) (unit 1)
  7504. (in_bom yes) (on_board yes)
  7505. (uuid 00000000-0000-0000-0000-000060d65ec9)
  7506. (property "Reference" "#PWR0113" (id 0) (at 189.865 83.82 0)
  7507. (effects (font (size 1.27 1.27)) hide)
  7508. )
  7509. (property "Value" "GND" (id 1) (at 191.8208 83.947 0))
  7510. (property "Footprint" "" (id 2) (at 196.215 83.82 0)
  7511. (effects (font (size 1.27 1.27)) hide)
  7512. )
  7513. (property "Datasheet" "" (id 3) (at 196.215 83.82 0)
  7514. (effects (font (size 1.27 1.27)) hide)
  7515. )
  7516. (pin "1" (uuid b63202c8-2cdc-46e9-b292-31a32a9b7667))
  7517. )
  7518. (symbol (lib_id "power:GND") (at 196.215 74.93 270) (unit 1)
  7519. (in_bom yes) (on_board yes)
  7520. (uuid 00000000-0000-0000-0000-000060d6e643)
  7521. (property "Reference" "#PWR0114" (id 0) (at 189.865 74.93 0)
  7522. (effects (font (size 1.27 1.27)) hide)
  7523. )
  7524. (property "Value" "GND" (id 1) (at 191.8208 75.057 0))
  7525. (property "Footprint" "" (id 2) (at 196.215 74.93 0)
  7526. (effects (font (size 1.27 1.27)) hide)
  7527. )
  7528. (property "Datasheet" "" (id 3) (at 196.215 74.93 0)
  7529. (effects (font (size 1.27 1.27)) hide)
  7530. )
  7531. (pin "1" (uuid d5a1a74f-bbad-48d6-a1c3-f7ef491caaf8))
  7532. )
  7533. (symbol (lib_id "74xx:74LS125") (at 244.475 161.925 0) (unit 4)
  7534. (in_bom yes) (on_board yes)
  7535. (uuid 017b9648-bee0-44c3-ae03-bcb77b2b55db)
  7536. (property "Reference" "U10" (id 0) (at 236.22 156.21 0))
  7537. (property "Value" "74AHCT125" (id 1) (at 254 156.21 0))
  7538. (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (id 2) (at 244.475 161.925 0)
  7539. (effects (font (size 1.27 1.27)) hide)
  7540. )
  7541. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS125" (id 3) (at 244.475 161.925 0)
  7542. (effects (font (size 1.27 1.27)) hide)
  7543. )
  7544. (property "MOUSER" "595-SN74AHCT125PWR" (id 4) (at 244.475 161.925 0)
  7545. (effects (font (size 1.27 1.27)) hide)
  7546. )
  7547. (property "LCSC" "C148198" (id 5) (at 244.475 161.925 0)
  7548. (effects (font (size 1.27 1.27)) hide)
  7549. )
  7550. (pin "1" (uuid 86bb7e54-f037-47a0-b596-e108d6b4f269))
  7551. (pin "2" (uuid 43b4c41e-2f8b-4ca3-9572-a148323b8957))
  7552. (pin "3" (uuid 0ea296d6-5875-4618-860c-bfe68796f5b4))
  7553. (pin "4" (uuid d3bd2f73-786f-472c-89b7-10fd054df22c))
  7554. (pin "5" (uuid cb61a608-4d4c-465e-98f1-04dc591a70ac))
  7555. (pin "6" (uuid 50804f87-f832-4c63-a5a7-b7f94bf6665d))
  7556. (pin "10" (uuid dd9691e0-5bea-4f21-9741-4d29638cd32d))
  7557. (pin "8" (uuid 36cd765a-f621-46fc-9b88-d90e333169eb))
  7558. (pin "9" (uuid bc96b171-0e5f-4f36-b582-eb709cbba257))
  7559. (pin "11" (uuid 4b844bc5-89a3-4ce2-8cbd-3c1193cfaeab))
  7560. (pin "12" (uuid dd0ca678-b563-4938-97c1-afb94c824cd2))
  7561. (pin "13" (uuid aeeca739-08a5-40ad-bdde-daf5c4ae4010))
  7562. (pin "14" (uuid b29a0e42-fd5a-49a8-8a01-edc4123e673b))
  7563. (pin "7" (uuid 75f01a69-5b72-43de-ae85-3f0e1d096e8d))
  7564. )
  7565. (symbol (lib_id "power:+5VP") (at 252.73 183.515 0) (unit 1)
  7566. (in_bom yes) (on_board yes) (fields_autoplaced)
  7567. (uuid 01a22446-fb76-47db-ad70-489953a3da59)
  7568. (property "Reference" "#PWR0181" (id 0) (at 252.73 187.325 0)
  7569. (effects (font (size 1.27 1.27)) hide)
  7570. )
  7571. (property "Value" "+5VP" (id 1) (at 252.73 178.435 0))
  7572. (property "Footprint" "" (id 2) (at 252.73 183.515 0)
  7573. (effects (font (size 1.27 1.27)) hide)
  7574. )
  7575. (property "Datasheet" "" (id 3) (at 252.73 183.515 0)
  7576. (effects (font (size 1.27 1.27)) hide)
  7577. )
  7578. (pin "1" (uuid e0d48586-0ccf-415a-87f8-6399c74818bb))
  7579. )
  7580. (symbol (lib_id "Device:R") (at 45.085 88.265 270) (unit 1)
  7581. (in_bom yes) (on_board yes)
  7582. (uuid 032baac2-5124-4dfe-95b3-9d967f5c6b35)
  7583. (property "Reference" "R13" (id 0) (at 45.085 83.0072 90))
  7584. (property "Value" "5.1k" (id 1) (at 45.085 85.3186 90))
  7585. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 45.085 86.487 90)
  7586. (effects (font (size 1.27 1.27)) hide)
  7587. )
  7588. (property "Datasheet" "~" (id 3) (at 45.085 88.265 0)
  7589. (effects (font (size 1.27 1.27)) hide)
  7590. )
  7591. (property "LCSC" "C25905" (id 4) (at 45.085 88.265 0)
  7592. (effects (font (size 1.27 1.27)) hide)
  7593. )
  7594. (property "Supplier" "" (id 5) (at 45.085 88.265 0)
  7595. (effects (font (size 1.27 1.27)) hide)
  7596. )
  7597. (pin "1" (uuid e324b36c-0eb5-4254-9e4f-8a9c37474718))
  7598. (pin "2" (uuid 5617e6ae-4526-4d40-aeef-7c886654e351))
  7599. )
  7600. (symbol (lib_id "power:GND") (at 252.73 189.865 0) (unit 1)
  7601. (in_bom yes) (on_board yes) (fields_autoplaced)
  7602. (uuid 047e6dd3-47f9-437c-b651-739ab8e4232c)
  7603. (property "Reference" "#PWR0180" (id 0) (at 252.73 196.215 0)
  7604. (effects (font (size 1.27 1.27)) hide)
  7605. )
  7606. (property "Value" "GND" (id 1) (at 252.73 194.945 0))
  7607. (property "Footprint" "" (id 2) (at 252.73 189.865 0)
  7608. (effects (font (size 1.27 1.27)) hide)
  7609. )
  7610. (property "Datasheet" "" (id 3) (at 252.73 189.865 0)
  7611. (effects (font (size 1.27 1.27)) hide)
  7612. )
  7613. (pin "1" (uuid 54705018-8333-4a0a-b229-bc712eafec00))
  7614. )
  7615. (symbol (lib_id "74xx_IEEE:74LS641") (at 186.69 219.075 0) (unit 1)
  7616. (in_bom yes) (on_board yes)
  7617. (uuid 0753f7c7-c9db-4831-b835-d7a3037eadfc)
  7618. (property "Reference" "U4" (id 0) (at 180.975 200.66 0))
  7619. (property "Value" "74ALS641-1" (id 1) (at 198.12 201.295 0))
  7620. (property "Footprint" "Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm" (id 2) (at 186.69 219.075 0)
  7621. (effects (font (size 1.27 1.27)) hide)
  7622. )
  7623. (property "Datasheet" "" (id 3) (at 186.69 219.075 0)
  7624. (effects (font (size 1.27 1.27)) hide)
  7625. )
  7626. (property "MOUSER" "595-SN74ALS641A-1DW" (id 4) (at 186.69 219.075 0)
  7627. (effects (font (size 1.27 1.27)) hide)
  7628. )
  7629. (pin "10" (uuid a15b7a86-3f4c-408f-be0c-11fb89cbd4ae))
  7630. (pin "20" (uuid 83c34116-5b69-4e2c-8903-57d902529f02))
  7631. (pin "1" (uuid 9ccc00a4-b877-46d8-b4b9-af47b912f915))
  7632. (pin "11" (uuid 748e5af4-0dc4-4fb1-8f43-c1e6928a286f))
  7633. (pin "12" (uuid e76e0b1e-f06e-4fd5-8460-44935831621f))
  7634. (pin "13" (uuid ce039b53-75f9-4eda-ada7-2caca900fc43))
  7635. (pin "14" (uuid 2393bffa-b39b-4b01-abce-8702ab114f11))
  7636. (pin "15" (uuid c8674fa5-e870-4970-9266-fa34aef0fb14))
  7637. (pin "16" (uuid 30531b7f-197d-4523-9a3b-a2c0e1018a05))
  7638. (pin "17" (uuid a5708c93-0ad3-4b8d-b59e-0c066857451c))
  7639. (pin "18" (uuid 5ccb46ae-f0e6-4d3f-b5cf-5531893c5b9b))
  7640. (pin "19" (uuid cc15b3a6-5599-44a2-a010-6a6634c455e5))
  7641. (pin "2" (uuid 01d2e464-c811-4baa-9089-c321aa6ab74f))
  7642. (pin "3" (uuid d14549b9-f063-44a4-8935-f3eb046b02a9))
  7643. (pin "4" (uuid 517f7290-2760-4845-8781-6b871aaf2927))
  7644. (pin "5" (uuid 1b0ae1bc-2cb2-488f-a978-756a6c9bd1c9))
  7645. (pin "6" (uuid 483746d5-2e66-461c-a525-b25dcd1f62c0))
  7646. (pin "7" (uuid 8d50f09d-3329-467c-afe0-ac15b3c5947f))
  7647. (pin "8" (uuid 5a558585-e061-48a3-a543-8874a604cbf6))
  7648. (pin "9" (uuid fcfe393e-4542-4958-88f2-0672cc3c7788))
  7649. )
  7650. (symbol (lib_id "power:GND") (at 137.795 40.005 0) (unit 1)
  7651. (in_bom yes) (on_board yes)
  7652. (uuid 080d7c9f-cda8-455e-98dc-75229eeef826)
  7653. (property "Reference" "#PWR0153" (id 0) (at 137.795 46.355 0)
  7654. (effects (font (size 1.27 1.27)) hide)
  7655. )
  7656. (property "Value" "GND" (id 1) (at 137.922 44.3992 0))
  7657. (property "Footprint" "" (id 2) (at 137.795 40.005 0)
  7658. (effects (font (size 1.27 1.27)) hide)
  7659. )
  7660. (property "Datasheet" "" (id 3) (at 137.795 40.005 0)
  7661. (effects (font (size 1.27 1.27)) hide)
  7662. )
  7663. (pin "1" (uuid 60e81072-1f24-49ac-8916-0725ddc35437))
  7664. )
  7665. (symbol (lib_id "power:GND") (at 324.485 84.455 0) (unit 1)
  7666. (in_bom yes) (on_board yes) (fields_autoplaced)
  7667. (uuid 09647739-071b-4c77-af30-fb06b1221f12)
  7668. (property "Reference" "#PWR0140" (id 0) (at 324.485 90.805 0)
  7669. (effects (font (size 1.27 1.27)) hide)
  7670. )
  7671. (property "Value" "GND" (id 1) (at 324.485 89.535 0))
  7672. (property "Footprint" "" (id 2) (at 324.485 84.455 0)
  7673. (effects (font (size 1.27 1.27)) hide)
  7674. )
  7675. (property "Datasheet" "" (id 3) (at 324.485 84.455 0)
  7676. (effects (font (size 1.27 1.27)) hide)
  7677. )
  7678. (pin "1" (uuid 018f39b6-c0e8-4570-84e7-1d0d609990ff))
  7679. )
  7680. (symbol (lib_id "Device:C_Small") (at 233.68 34.925 0) (unit 1)
  7681. (in_bom yes) (on_board yes) (fields_autoplaced)
  7682. (uuid 0a017a0d-1c18-47fe-bbf5-926d22419e04)
  7683. (property "Reference" "C13" (id 0) (at 236.855 33.6612 0)
  7684. (effects (font (size 1.27 1.27)) (justify left))
  7685. )
  7686. (property "Value" "100nF" (id 1) (at 236.855 36.2012 0)
  7687. (effects (font (size 1.27 1.27)) (justify left))
  7688. )
  7689. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 233.68 34.925 0)
  7690. (effects (font (size 1.27 1.27)) hide)
  7691. )
  7692. (property "Datasheet" "~" (id 3) (at 233.68 34.925 0)
  7693. (effects (font (size 1.27 1.27)) hide)
  7694. )
  7695. (property "LCSC" "C1525" (id 4) (at 233.68 34.925 0)
  7696. (effects (font (size 1.27 1.27)) hide)
  7697. )
  7698. (pin "1" (uuid 3953d2f5-c7cd-430e-bf90-2491373b0550))
  7699. (pin "2" (uuid 4913185e-81c2-4f59-b139-c682b7a6e118))
  7700. )
  7701. (symbol (lib_id "Device:C_Small") (at 327.025 187.325 0) (unit 1)
  7702. (in_bom yes) (on_board yes)
  7703. (uuid 0a714ada-837a-46e2-8df4-6eadc9598977)
  7704. (property "Reference" "C7" (id 0) (at 328.422 185.293 0)
  7705. (effects (font (size 1.27 1.27)) (justify left))
  7706. )
  7707. (property "Value" "4.7uF" (id 1) (at 327.914 189.738 0)
  7708. (effects (font (size 1.27 1.27)) (justify left))
  7709. )
  7710. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 327.025 187.325 0)
  7711. (effects (font (size 1.27 1.27)) hide)
  7712. )
  7713. (property "Datasheet" "~" (id 3) (at 327.025 187.325 0)
  7714. (effects (font (size 1.27 1.27)) hide)
  7715. )
  7716. (property "LCSC" "C19666" (id 4) (at 327.025 187.325 0)
  7717. (effects (font (size 1.27 1.27)) hide)
  7718. )
  7719. (pin "1" (uuid df2560e9-7f5c-4d4b-88ee-4636f4c2168f))
  7720. (pin "2" (uuid 3e0b7550-5a50-4880-9df1-506aa920d5fc))
  7721. )
  7722. (symbol (lib_id "power:GND") (at 84.455 95.885 0) (unit 1)
  7723. (in_bom yes) (on_board yes)
  7724. (uuid 0ac0bf2a-d012-480e-bd5f-bc76590a2992)
  7725. (property "Reference" "#PWR0169" (id 0) (at 84.455 102.235 0)
  7726. (effects (font (size 1.27 1.27)) hide)
  7727. )
  7728. (property "Value" "GND" (id 1) (at 84.582 100.2792 0))
  7729. (property "Footprint" "" (id 2) (at 84.455 95.885 0)
  7730. (effects (font (size 1.27 1.27)) hide)
  7731. )
  7732. (property "Datasheet" "" (id 3) (at 84.455 95.885 0)
  7733. (effects (font (size 1.27 1.27)) hide)
  7734. )
  7735. (pin "1" (uuid d18c11ef-08c9-4557-867d-24e7bbfe7e1e))
  7736. )
  7737. (symbol (lib_id "Device:LED") (at 180.34 79.375 90) (unit 1)
  7738. (in_bom yes) (on_board yes) (fields_autoplaced)
  7739. (uuid 0b5f3b31-0667-4da1-aed4-77d07c725ec8)
  7740. (property "Reference" "D6" (id 0) (at 183.515 79.6924 90)
  7741. (effects (font (size 1.27 1.27)) (justify right))
  7742. )
  7743. (property "Value" "LED" (id 1) (at 183.515 82.2324 90)
  7744. (effects (font (size 1.27 1.27)) (justify right))
  7745. )
  7746. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 180.34 79.375 0)
  7747. (effects (font (size 1.27 1.27)) hide)
  7748. )
  7749. (property "Datasheet" "~" (id 3) (at 180.34 79.375 0)
  7750. (effects (font (size 1.27 1.27)) hide)
  7751. )
  7752. (property "LCSC" "C72043" (id 4) (at 180.34 79.375 90)
  7753. (effects (font (size 1.27 1.27)) hide)
  7754. )
  7755. (pin "1" (uuid 27e59a62-f9e5-423f-9c65-2c89f10604b6))
  7756. (pin "2" (uuid 0c15fa7b-63fe-4a33-ad3f-8a140c10c9a5))
  7757. )
  7758. (symbol (lib_id "Connector:Conn_01x04_Male") (at 26.67 27.305 90) (mirror x) (unit 1)
  7759. (in_bom yes) (on_board yes) (fields_autoplaced)
  7760. (uuid 0d22858c-b492-4937-a878-78c9ed82c152)
  7761. (property "Reference" "J1" (id 0) (at 27.94 22.225 90))
  7762. (property "Value" "Conn_01x04_Male" (id 1) (at 27.94 24.765 90))
  7763. (property "Footprint" "Connector_TE-Connectivity:TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical" (id 2) (at 26.67 27.305 0)
  7764. (effects (font (size 1.27 1.27)) hide)
  7765. )
  7766. (property "Datasheet" "~" (id 3) (at 26.67 27.305 0)
  7767. (effects (font (size 1.27 1.27)) hide)
  7768. )
  7769. (property "LCSC" "NM" (id 4) (at 26.67 27.305 0)
  7770. (effects (font (size 1.27 1.27)) hide)
  7771. )
  7772. (pin "1" (uuid 10109fa3-42ec-4c53-a27f-f7816cfb532b))
  7773. (pin "2" (uuid c2513b6d-7757-4986-a110-a41d694b9061))
  7774. (pin "3" (uuid a9301c66-2a8f-4cd2-813a-02a3a936c760))
  7775. (pin "4" (uuid 8b8f4c33-a4e9-4d73-ac6a-923624778555))
  7776. )
  7777. (symbol (lib_id "power:+3V3") (at 98.425 116.84 0) (unit 1)
  7778. (in_bom yes) (on_board yes)
  7779. (uuid 0d5651fb-c15d-4719-b41c-03aec04cb5a2)
  7780. (property "Reference" "#PWR0122" (id 0) (at 98.425 120.65 0)
  7781. (effects (font (size 1.27 1.27)) hide)
  7782. )
  7783. (property "Value" "+3V3" (id 1) (at 94.615 113.665 0))
  7784. (property "Footprint" "" (id 2) (at 98.425 116.84 0)
  7785. (effects (font (size 1.27 1.27)) hide)
  7786. )
  7787. (property "Datasheet" "" (id 3) (at 98.425 116.84 0)
  7788. (effects (font (size 1.27 1.27)) hide)
  7789. )
  7790. (pin "1" (uuid 1f658e6a-304c-4ce1-bef2-964490b7a831))
  7791. )
  7792. (symbol (lib_id "power:GND") (at 161.925 87.63 0) (unit 1)
  7793. (in_bom yes) (on_board yes) (fields_autoplaced)
  7794. (uuid 0d9aad53-1103-43a9-b881-0d82c1771d81)
  7795. (property "Reference" "#PWR0177" (id 0) (at 161.925 93.98 0)
  7796. (effects (font (size 1.27 1.27)) hide)
  7797. )
  7798. (property "Value" "GND" (id 1) (at 161.925 92.075 0))
  7799. (property "Footprint" "" (id 2) (at 161.925 87.63 0)
  7800. (effects (font (size 1.27 1.27)) hide)
  7801. )
  7802. (property "Datasheet" "" (id 3) (at 161.925 87.63 0)
  7803. (effects (font (size 1.27 1.27)) hide)
  7804. )
  7805. (pin "1" (uuid 976c5403-0333-4e8b-8803-6ce10d1a1b96))
  7806. )
  7807. (symbol (lib_id "Connector_Generic:Conn_02x03_Odd_Even") (at 295.91 80.01 0) (unit 1)
  7808. (in_bom yes) (on_board yes) (fields_autoplaced)
  7809. (uuid 0f969d51-4c07-44b6-9638-97a79eacc80d)
  7810. (property "Reference" "J7" (id 0) (at 297.18 71.12 0))
  7811. (property "Value" "Conn_02x03_Odd_Even" (id 1) (at 297.18 73.66 0))
  7812. (property "Footprint" "Connector:Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical" (id 2) (at 295.91 80.01 0)
  7813. (effects (font (size 1.27 1.27)) hide)
  7814. )
  7815. (property "Datasheet" "~" (id 3) (at 295.91 80.01 0)
  7816. (effects (font (size 1.27 1.27)) hide)
  7817. )
  7818. (property "LCSC" "NM" (id 4) (at 295.91 80.01 0)
  7819. (effects (font (size 1.27 1.27)) hide)
  7820. )
  7821. (pin "1" (uuid bb796919-47e9-4bf8-bdbe-fad01e1c7d83))
  7822. (pin "2" (uuid c6ce8d58-e7fe-4daa-a4f5-f94903ff01dd))
  7823. (pin "3" (uuid 14e51d1b-784e-47a5-a57a-706851e0ce1d))
  7824. (pin "4" (uuid 29af85f2-da86-4073-b639-21384c781910))
  7825. (pin "5" (uuid 6470e261-20b5-441e-9e4c-0e91aff28f56))
  7826. (pin "6" (uuid a3eb6b96-c02b-47a2-a08d-c9830e0a35cd))
  7827. )
  7828. (symbol (lib_id "power:+3V3") (at 231.775 73.025 0) (unit 1)
  7829. (in_bom yes) (on_board yes) (fields_autoplaced)
  7830. (uuid 113c3609-b86b-43dd-8eaa-5f5ffb08b9be)
  7831. (property "Reference" "#PWR0118" (id 0) (at 231.775 76.835 0)
  7832. (effects (font (size 1.27 1.27)) hide)
  7833. )
  7834. (property "Value" "+3V3" (id 1) (at 231.775 67.945 0))
  7835. (property "Footprint" "" (id 2) (at 231.775 73.025 0)
  7836. (effects (font (size 1.27 1.27)) hide)
  7837. )
  7838. (property "Datasheet" "" (id 3) (at 231.775 73.025 0)
  7839. (effects (font (size 1.27 1.27)) hide)
  7840. )
  7841. (pin "1" (uuid 4ab899b9-a1e5-41e0-a88d-9aa1678b50a5))
  7842. )
  7843. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 376.555 24.765 0) (unit 1)
  7844. (in_bom yes) (on_board yes) (fields_autoplaced)
  7845. (uuid 1256614f-d704-43ec-b118-8304511aaa34)
  7846. (property "Reference" "H2" (id 0) (at 379.73 22.2249 0)
  7847. (effects (font (size 1.27 1.27)) (justify left))
  7848. )
  7849. (property "Value" "Hole" (id 1) (at 379.73 24.7649 0)
  7850. (effects (font (size 1.27 1.27)) (justify left))
  7851. )
  7852. (property "Footprint" "MountingHole:MountingHole_2.5mm_Pad_TopBottom" (id 2) (at 376.555 24.765 0)
  7853. (effects (font (size 1.27 1.27)) hide)
  7854. )
  7855. (property "Datasheet" "~" (id 3) (at 376.555 24.765 0)
  7856. (effects (font (size 1.27 1.27)) hide)
  7857. )
  7858. (property "LCSC" "NM" (id 4) (at 376.555 24.765 0)
  7859. (effects (font (size 1.27 1.27)) hide)
  7860. )
  7861. (pin "1" (uuid f34f2c09-c8a2-4ad9-943e-2d00a4abca7e))
  7862. )
  7863. (symbol (lib_id "power:GND") (at 203.835 187.96 0) (unit 1)
  7864. (in_bom yes) (on_board yes) (fields_autoplaced)
  7865. (uuid 13ece36b-d32d-4adb-b788-f995acf4d921)
  7866. (property "Reference" "#PWR0144" (id 0) (at 203.835 194.31 0)
  7867. (effects (font (size 1.27 1.27)) hide)
  7868. )
  7869. (property "Value" "GND" (id 1) (at 203.835 193.04 0))
  7870. (property "Footprint" "" (id 2) (at 203.835 187.96 0)
  7871. (effects (font (size 1.27 1.27)) hide)
  7872. )
  7873. (property "Datasheet" "" (id 3) (at 203.835 187.96 0)
  7874. (effects (font (size 1.27 1.27)) hide)
  7875. )
  7876. (pin "1" (uuid 935966cd-99e3-4cb6-be56-f1b7f9cf958c))
  7877. )
  7878. (symbol (lib_id "Device:R_Small") (at 217.805 74.93 90) (unit 1)
  7879. (in_bom yes) (on_board yes)
  7880. (uuid 16f96dd5-b4b2-4f83-ab46-09df2d061046)
  7881. (property "Reference" "R1" (id 0) (at 215.9 72.39 90))
  7882. (property "Value" "470" (id 1) (at 219.71 73.025 90))
  7883. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 217.805 74.93 0)
  7884. (effects (font (size 1.27 1.27)) hide)
  7885. )
  7886. (property "Datasheet" "~" (id 3) (at 217.805 74.93 0)
  7887. (effects (font (size 1.27 1.27)) hide)
  7888. )
  7889. (property "LCSC" "C25117" (id 4) (at 217.805 74.93 0)
  7890. (effects (font (size 1.27 1.27)) hide)
  7891. )
  7892. (pin "1" (uuid 2396a867-2f0c-4a37-8501-6e3d33511dd7))
  7893. (pin "2" (uuid f08be12c-5ce9-4bc9-bca1-40b1b59ce9f6))
  7894. )
  7895. (symbol (lib_id "Device:C_Small") (at 114.935 266.065 0) (unit 1)
  7896. (in_bom yes) (on_board yes) (fields_autoplaced)
  7897. (uuid 1757849d-c78e-49b7-acb9-8fbf772724bd)
  7898. (property "Reference" "C3" (id 0) (at 118.11 264.8012 0)
  7899. (effects (font (size 1.27 1.27)) (justify left))
  7900. )
  7901. (property "Value" "12pF" (id 1) (at 118.11 267.3412 0)
  7902. (effects (font (size 1.27 1.27)) (justify left))
  7903. )
  7904. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 114.935 266.065 0)
  7905. (effects (font (size 1.27 1.27)) hide)
  7906. )
  7907. (property "Datasheet" "~" (id 3) (at 114.935 266.065 0)
  7908. (effects (font (size 1.27 1.27)) hide)
  7909. )
  7910. (property "LCSC" "C1547" (id 4) (at 114.935 266.065 0)
  7911. (effects (font (size 1.27 1.27)) hide)
  7912. )
  7913. (pin "1" (uuid 7ad5c949-b672-4260-a0f5-6d4d1e9cc1aa))
  7914. (pin "2" (uuid df9a87c5-4cbd-4154-87dd-834d3cf2ba86))
  7915. )
  7916. (symbol (lib_id "power:PWR_FLAG") (at 328.295 39.37 180) (unit 1)
  7917. (in_bom yes) (on_board yes) (fields_autoplaced)
  7918. (uuid 179748c5-54dc-4622-bd88-0ba80a08042f)
  7919. (property "Reference" "#FLG01" (id 0) (at 328.295 41.275 0)
  7920. (effects (font (size 1.27 1.27)) hide)
  7921. )
  7922. (property "Value" "PWR_FLAG" (id 1) (at 328.295 44.45 0))
  7923. (property "Footprint" "" (id 2) (at 328.295 39.37 0)
  7924. (effects (font (size 1.27 1.27)) hide)
  7925. )
  7926. (property "Datasheet" "~" (id 3) (at 328.295 39.37 0)
  7927. (effects (font (size 1.27 1.27)) hide)
  7928. )
  7929. (pin "1" (uuid e930b815-9243-4f46-8a49-bd85446810f2))
  7930. )
  7931. (symbol (lib_id "power:+5VP") (at 189.23 28.575 0) (unit 1)
  7932. (in_bom yes) (on_board yes) (fields_autoplaced)
  7933. (uuid 1bd420e0-ad85-4dfb-abd1-abe0793788a4)
  7934. (property "Reference" "#PWR0151" (id 0) (at 189.23 32.385 0)
  7935. (effects (font (size 1.27 1.27)) hide)
  7936. )
  7937. (property "Value" "+5VP" (id 1) (at 189.23 23.495 0))
  7938. (property "Footprint" "" (id 2) (at 189.23 28.575 0)
  7939. (effects (font (size 1.27 1.27)) hide)
  7940. )
  7941. (property "Datasheet" "" (id 3) (at 189.23 28.575 0)
  7942. (effects (font (size 1.27 1.27)) hide)
  7943. )
  7944. (pin "1" (uuid 7500de84-0893-4e83-a4c7-cc0a1c897fd8))
  7945. )
  7946. (symbol (lib_id "Device:C_Small") (at 276.86 34.925 0) (unit 1)
  7947. (in_bom yes) (on_board yes) (fields_autoplaced)
  7948. (uuid 1bedd17c-e2fc-4b88-8474-7349a2dce93a)
  7949. (property "Reference" "C17" (id 0) (at 280.035 33.6612 0)
  7950. (effects (font (size 1.27 1.27)) (justify left))
  7951. )
  7952. (property "Value" "100nF" (id 1) (at 280.035 36.2012 0)
  7953. (effects (font (size 1.27 1.27)) (justify left))
  7954. )
  7955. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 276.86 34.925 0)
  7956. (effects (font (size 1.27 1.27)) hide)
  7957. )
  7958. (property "Datasheet" "~" (id 3) (at 276.86 34.925 0)
  7959. (effects (font (size 1.27 1.27)) hide)
  7960. )
  7961. (property "LCSC" "C1525" (id 4) (at 276.86 34.925 0)
  7962. (effects (font (size 1.27 1.27)) hide)
  7963. )
  7964. (pin "1" (uuid dd9f33cc-2d23-4528-b037-eac2fac8ff4c))
  7965. (pin "2" (uuid c56fea54-b67a-45bd-9305-a066e3335750))
  7966. )
  7967. (symbol (lib_id "Device:R_Small") (at 161.925 71.755 180) (unit 1)
  7968. (in_bom yes) (on_board yes) (fields_autoplaced)
  7969. (uuid 1c043c8b-c158-4629-b7ed-6e79020efffa)
  7970. (property "Reference" "R10" (id 0) (at 163.83 70.4849 0)
  7971. (effects (font (size 1.27 1.27)) (justify right))
  7972. )
  7973. (property "Value" "820" (id 1) (at 163.83 73.0249 0)
  7974. (effects (font (size 1.27 1.27)) (justify right))
  7975. )
  7976. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 161.925 71.755 0)
  7977. (effects (font (size 1.27 1.27)) hide)
  7978. )
  7979. (property "Datasheet" "~" (id 3) (at 161.925 71.755 0)
  7980. (effects (font (size 1.27 1.27)) hide)
  7981. )
  7982. (property "LCSC" "C23253" (id 4) (at 161.925 71.755 0)
  7983. (effects (font (size 1.27 1.27)) hide)
  7984. )
  7985. (pin "1" (uuid 1aefee71-3afa-4f82-ac1e-f1d923b40af5))
  7986. (pin "2" (uuid fb3a11a8-fd4f-4a25-8873-ce3e34cef54b))
  7987. )
  7988. (symbol (lib_id "Device:C_Small") (at 44.45 186.69 0) (unit 1)
  7989. (in_bom yes) (on_board yes) (fields_autoplaced)
  7990. (uuid 1cfa204d-7d87-4639-8839-cb62a223477a)
  7991. (property "Reference" "C29" (id 0) (at 47.625 185.4262 0)
  7992. (effects (font (size 1.27 1.27)) (justify left))
  7993. )
  7994. (property "Value" "8pF" (id 1) (at 47.625 187.9662 0)
  7995. (effects (font (size 1.27 1.27)) (justify left))
  7996. )
  7997. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 44.45 186.69 0)
  7998. (effects (font (size 1.27 1.27)) hide)
  7999. )
  8000. (property "Datasheet" "~" (id 3) (at 44.45 186.69 0)
  8001. (effects (font (size 1.27 1.27)) hide)
  8002. )
  8003. (property "LCSC" "C1547" (id 4) (at 44.45 186.69 0)
  8004. (effects (font (size 1.27 1.27)) hide)
  8005. )
  8006. (pin "1" (uuid 58777f17-b40c-407d-9bfb-5d0ea531fe98))
  8007. (pin "2" (uuid b4eae625-39c2-45de-872e-3f831ed47226))
  8008. )
  8009. (symbol (lib_id "power:GND") (at 288.29 83.185 0) (unit 1)
  8010. (in_bom yes) (on_board yes) (fields_autoplaced)
  8011. (uuid 1e0f698d-8955-40c8-b6aa-4bd210f08f1e)
  8012. (property "Reference" "#PWR0176" (id 0) (at 288.29 89.535 0)
  8013. (effects (font (size 1.27 1.27)) hide)
  8014. )
  8015. (property "Value" "GND" (id 1) (at 288.29 88.265 0))
  8016. (property "Footprint" "" (id 2) (at 288.29 83.185 0)
  8017. (effects (font (size 1.27 1.27)) hide)
  8018. )
  8019. (property "Datasheet" "" (id 3) (at 288.29 83.185 0)
  8020. (effects (font (size 1.27 1.27)) hide)
  8021. )
  8022. (pin "1" (uuid 62f91a19-baea-49ba-ba75-d1d4522a87de))
  8023. )
  8024. (symbol (lib_id "power:GND") (at 76.835 74.295 0) (unit 1)
  8025. (in_bom yes) (on_board yes)
  8026. (uuid 21d05730-095a-4dd9-90ce-b91d50725425)
  8027. (property "Reference" "#PWR0170" (id 0) (at 76.835 80.645 0)
  8028. (effects (font (size 1.27 1.27)) hide)
  8029. )
  8030. (property "Value" "GND" (id 1) (at 76.962 78.6892 0))
  8031. (property "Footprint" "" (id 2) (at 76.835 74.295 0)
  8032. (effects (font (size 1.27 1.27)) hide)
  8033. )
  8034. (property "Datasheet" "" (id 3) (at 76.835 74.295 0)
  8035. (effects (font (size 1.27 1.27)) hide)
  8036. )
  8037. (pin "1" (uuid 7d536647-344c-4f10-8f9b-1a0697071777))
  8038. )
  8039. (symbol (lib_id "power:+5VP") (at 346.075 190.5 0) (unit 1)
  8040. (in_bom yes) (on_board yes) (fields_autoplaced)
  8041. (uuid 288a0039-8275-4d3b-b564-d5725c08c768)
  8042. (property "Reference" "#PWR0155" (id 0) (at 346.075 194.31 0)
  8043. (effects (font (size 1.27 1.27)) hide)
  8044. )
  8045. (property "Value" "+5VP" (id 1) (at 346.075 185.42 0))
  8046. (property "Footprint" "" (id 2) (at 346.075 190.5 0)
  8047. (effects (font (size 1.27 1.27)) hide)
  8048. )
  8049. (property "Datasheet" "" (id 3) (at 346.075 190.5 0)
  8050. (effects (font (size 1.27 1.27)) hide)
  8051. )
  8052. (pin "1" (uuid 34244f85-5e4c-4bec-b9d7-f12b5e8ea717))
  8053. )
  8054. (symbol (lib_id "power:GND") (at 186.055 111.125 0) (unit 1)
  8055. (in_bom yes) (on_board yes) (fields_autoplaced)
  8056. (uuid 2914a0c5-0021-4d54-bae8-e95fbf20473a)
  8057. (property "Reference" "#PWR0135" (id 0) (at 186.055 117.475 0)
  8058. (effects (font (size 1.27 1.27)) hide)
  8059. )
  8060. (property "Value" "GND" (id 1) (at 186.055 115.57 0))
  8061. (property "Footprint" "" (id 2) (at 186.055 111.125 0)
  8062. (effects (font (size 1.27 1.27)) hide)
  8063. )
  8064. (property "Datasheet" "" (id 3) (at 186.055 111.125 0)
  8065. (effects (font (size 1.27 1.27)) hide)
  8066. )
  8067. (pin "1" (uuid 3f667276-d8bc-49bf-a26a-e6cfe3c46ee4))
  8068. )
  8069. (symbol (lib_id "Device:C_Small") (at 210.82 34.925 0) (unit 1)
  8070. (in_bom yes) (on_board yes) (fields_autoplaced)
  8071. (uuid 2927f24c-c132-4100-94ed-f06c2bdbe543)
  8072. (property "Reference" "C11" (id 0) (at 213.995 33.6612 0)
  8073. (effects (font (size 1.27 1.27)) (justify left))
  8074. )
  8075. (property "Value" "100nF" (id 1) (at 213.995 36.2012 0)
  8076. (effects (font (size 1.27 1.27)) (justify left))
  8077. )
  8078. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 210.82 34.925 0)
  8079. (effects (font (size 1.27 1.27)) hide)
  8080. )
  8081. (property "Datasheet" "~" (id 3) (at 210.82 34.925 0)
  8082. (effects (font (size 1.27 1.27)) hide)
  8083. )
  8084. (property "LCSC" "C1525" (id 4) (at 210.82 34.925 0)
  8085. (effects (font (size 1.27 1.27)) hide)
  8086. )
  8087. (pin "1" (uuid dae87971-bdfe-4e48-b041-9ea64dc1fe1e))
  8088. (pin "2" (uuid 3fe7d621-8a13-4bd1-97ae-7ba68bb3dadf))
  8089. )
  8090. (symbol (lib_id "Device:R_Small") (at 180.34 71.755 180) (unit 1)
  8091. (in_bom yes) (on_board yes) (fields_autoplaced)
  8092. (uuid 2a5ee645-6562-439a-8d8f-38be1392a8a4)
  8093. (property "Reference" "R14" (id 0) (at 182.88 70.4849 0)
  8094. (effects (font (size 1.27 1.27)) (justify right))
  8095. )
  8096. (property "Value" "820" (id 1) (at 182.88 73.0249 0)
  8097. (effects (font (size 1.27 1.27)) (justify right))
  8098. )
  8099. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 180.34 71.755 0)
  8100. (effects (font (size 1.27 1.27)) hide)
  8101. )
  8102. (property "Datasheet" "~" (id 3) (at 180.34 71.755 0)
  8103. (effects (font (size 1.27 1.27)) hide)
  8104. )
  8105. (property "LCSC" "C23253" (id 4) (at 180.34 71.755 0)
  8106. (effects (font (size 1.27 1.27)) hide)
  8107. )
  8108. (pin "1" (uuid c858af5c-fd8f-4038-b87a-af40faa2be7b))
  8109. (pin "2" (uuid d12b7475-2a61-43ba-b915-08c3e4b8b882))
  8110. )
  8111. (symbol (lib_id "power:+5V") (at 328.295 36.195 0) (unit 1)
  8112. (in_bom yes) (on_board yes)
  8113. (uuid 2bb62141-2e4b-4a1f-8568-db60317fbec5)
  8114. (property "Reference" "#PWR01" (id 0) (at 328.295 40.005 0)
  8115. (effects (font (size 1.27 1.27)) hide)
  8116. )
  8117. (property "Value" "+5V" (id 1) (at 328.676 31.8008 0))
  8118. (property "Footprint" "" (id 2) (at 328.295 36.195 0)
  8119. (effects (font (size 1.27 1.27)) hide)
  8120. )
  8121. (property "Datasheet" "" (id 3) (at 328.295 36.195 0)
  8122. (effects (font (size 1.27 1.27)) hide)
  8123. )
  8124. (pin "1" (uuid b641f7aa-0a62-407b-bd02-f1d638f61fb5))
  8125. )
  8126. (symbol (lib_id "Device:C_Small") (at 299.72 206.375 0) (unit 1)
  8127. (in_bom yes) (on_board yes) (fields_autoplaced)
  8128. (uuid 2c2bcdd2-4d63-4398-b240-5c707726a528)
  8129. (property "Reference" "C6" (id 0) (at 302.26 205.1112 0)
  8130. (effects (font (size 1.27 1.27)) (justify left))
  8131. )
  8132. (property "Value" "4.7uF" (id 1) (at 302.26 207.6512 0)
  8133. (effects (font (size 1.27 1.27)) (justify left))
  8134. )
  8135. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 299.72 206.375 0)
  8136. (effects (font (size 1.27 1.27)) hide)
  8137. )
  8138. (property "Datasheet" "~" (id 3) (at 299.72 206.375 0)
  8139. (effects (font (size 1.27 1.27)) hide)
  8140. )
  8141. (property "LCSC" "C19666" (id 4) (at 299.72 206.375 0)
  8142. (effects (font (size 1.27 1.27)) hide)
  8143. )
  8144. (pin "1" (uuid af313989-b7dc-4674-b073-f1bb42c0ebbc))
  8145. (pin "2" (uuid 18e2ab86-3c01-4cc2-80f9-96bfbd89da72))
  8146. )
  8147. (symbol (lib_id "power:GND") (at 89.535 269.875 0) (unit 1)
  8148. (in_bom yes) (on_board yes) (fields_autoplaced)
  8149. (uuid 2cc67518-63f2-43f3-b75c-a73c37b0bc22)
  8150. (property "Reference" "#PWR0129" (id 0) (at 89.535 276.225 0)
  8151. (effects (font (size 1.27 1.27)) hide)
  8152. )
  8153. (property "Value" "GND" (id 1) (at 89.535 274.32 0))
  8154. (property "Footprint" "" (id 2) (at 89.535 269.875 0)
  8155. (effects (font (size 1.27 1.27)) hide)
  8156. )
  8157. (property "Datasheet" "" (id 3) (at 89.535 269.875 0)
  8158. (effects (font (size 1.27 1.27)) hide)
  8159. )
  8160. (pin "1" (uuid dca34efe-558c-4b03-9fee-d7642e509a95))
  8161. )
  8162. (symbol (lib_id "power:GND") (at 40.64 144.145 0) (unit 1)
  8163. (in_bom yes) (on_board yes) (fields_autoplaced)
  8164. (uuid 2e8c8883-aef7-4027-b275-5a809caa7c84)
  8165. (property "Reference" "#PWR0178" (id 0) (at 40.64 150.495 0)
  8166. (effects (font (size 1.27 1.27)) hide)
  8167. )
  8168. (property "Value" "GND" (id 1) (at 40.64 148.59 0))
  8169. (property "Footprint" "" (id 2) (at 40.64 144.145 0)
  8170. (effects (font (size 1.27 1.27)) hide)
  8171. )
  8172. (property "Datasheet" "" (id 3) (at 40.64 144.145 0)
  8173. (effects (font (size 1.27 1.27)) hide)
  8174. )
  8175. (pin "1" (uuid e9a6eff5-f824-4560-b9a1-863af1851516))
  8176. )
  8177. (symbol (lib_id "power:PWR_FLAG") (at 347.98 39.37 180) (unit 1)
  8178. (in_bom yes) (on_board yes) (fields_autoplaced)
  8179. (uuid 311f3cfd-fc29-4693-936a-db40bd1454cf)
  8180. (property "Reference" "#FLG03" (id 0) (at 347.98 41.275 0)
  8181. (effects (font (size 1.27 1.27)) hide)
  8182. )
  8183. (property "Value" "PWR_FLAG" (id 1) (at 347.98 44.45 0))
  8184. (property "Footprint" "" (id 2) (at 347.98 39.37 0)
  8185. (effects (font (size 1.27 1.27)) hide)
  8186. )
  8187. (property "Datasheet" "~" (id 3) (at 347.98 39.37 0)
  8188. (effects (font (size 1.27 1.27)) hide)
  8189. )
  8190. (pin "1" (uuid 483d1e83-b42f-4ee6-91d6-0ce841cae373))
  8191. )
  8192. (symbol (lib_id "Device:C_Small") (at 189.23 34.925 0) (unit 1)
  8193. (in_bom yes) (on_board yes)
  8194. (uuid 34933934-c90f-4fa7-95eb-83585e06d85e)
  8195. (property "Reference" "C9" (id 0) (at 191.135 33.02 0)
  8196. (effects (font (size 1.27 1.27)) (justify left))
  8197. )
  8198. (property "Value" "100nF" (id 1) (at 191.135 36.83 0)
  8199. (effects (font (size 1.27 1.27)) (justify left))
  8200. )
  8201. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 189.23 34.925 0)
  8202. (effects (font (size 1.27 1.27)) hide)
  8203. )
  8204. (property "Datasheet" "~" (id 3) (at 189.23 34.925 0)
  8205. (effects (font (size 1.27 1.27)) hide)
  8206. )
  8207. (property "LCSC" "C1525" (id 4) (at 189.23 34.925 0)
  8208. (effects (font (size 1.27 1.27)) hide)
  8209. )
  8210. (pin "1" (uuid f2845dc0-e682-4ce2-a506-dce3d55c2965))
  8211. (pin "2" (uuid 92d87229-e87f-4d1f-aeef-7fc0f51e2763))
  8212. )
  8213. (symbol (lib_id "Device:R") (at 45.085 73.025 270) (unit 1)
  8214. (in_bom yes) (on_board yes)
  8215. (uuid 34eea843-2372-4369-ba33-b2c2acfd6ff7)
  8216. (property "Reference" "R11" (id 0) (at 45.085 67.7672 90))
  8217. (property "Value" "5.1k" (id 1) (at 45.085 70.0786 90))
  8218. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 45.085 71.247 90)
  8219. (effects (font (size 1.27 1.27)) hide)
  8220. )
  8221. (property "Datasheet" "~" (id 3) (at 45.085 73.025 0)
  8222. (effects (font (size 1.27 1.27)) hide)
  8223. )
  8224. (property "LCSC" "C25905" (id 4) (at 45.085 73.025 0)
  8225. (effects (font (size 1.27 1.27)) hide)
  8226. )
  8227. (property "Supplier" "" (id 5) (at 45.085 73.025 0)
  8228. (effects (font (size 1.27 1.27)) hide)
  8229. )
  8230. (pin "1" (uuid 6c6d1379-a50a-45e8-8cfe-4e003b5bf4e5))
  8231. (pin "2" (uuid 0476f674-5c41-462a-bca0-b56c12bbb198))
  8232. )
  8233. (symbol (lib_id "power:+3V3") (at 283.845 74.295 0) (unit 1)
  8234. (in_bom yes) (on_board yes) (fields_autoplaced)
  8235. (uuid 35dc454e-1708-4d99-81c0-5ab9ad3103e8)
  8236. (property "Reference" "#PWR0175" (id 0) (at 283.845 78.105 0)
  8237. (effects (font (size 1.27 1.27)) hide)
  8238. )
  8239. (property "Value" "+3V3" (id 1) (at 283.845 68.58 0))
  8240. (property "Footprint" "" (id 2) (at 283.845 74.295 0)
  8241. (effects (font (size 1.27 1.27)) hide)
  8242. )
  8243. (property "Datasheet" "" (id 3) (at 283.845 74.295 0)
  8244. (effects (font (size 1.27 1.27)) hide)
  8245. )
  8246. (pin "1" (uuid f861bc22-0e8a-4a7c-bfbf-6ffe8ca7b35f))
  8247. )
  8248. (symbol (lib_id "power:+3V3") (at 128.905 151.765 0) (unit 1)
  8249. (in_bom yes) (on_board yes) (fields_autoplaced)
  8250. (uuid 3699ed52-3eb0-4748-bba1-bebcbdc7d054)
  8251. (property "Reference" "#PWR0137" (id 0) (at 128.905 155.575 0)
  8252. (effects (font (size 1.27 1.27)) hide)
  8253. )
  8254. (property "Value" "+3V3" (id 1) (at 128.905 146.304 0))
  8255. (property "Footprint" "" (id 2) (at 128.905 151.765 0)
  8256. (effects (font (size 1.27 1.27)) hide)
  8257. )
  8258. (property "Datasheet" "" (id 3) (at 128.905 151.765 0)
  8259. (effects (font (size 1.27 1.27)) hide)
  8260. )
  8261. (pin "1" (uuid b771ffe0-6fa6-4d2c-b362-7448d06fb8a8))
  8262. )
  8263. (symbol (lib_id "power:GND") (at 102.235 40.005 0) (unit 1)
  8264. (in_bom yes) (on_board yes)
  8265. (uuid 3b42d598-9a94-4509-894c-5e47a3c3f8a8)
  8266. (property "Reference" "#PWR0156" (id 0) (at 102.235 46.355 0)
  8267. (effects (font (size 1.27 1.27)) hide)
  8268. )
  8269. (property "Value" "GND" (id 1) (at 102.362 44.3992 0))
  8270. (property "Footprint" "" (id 2) (at 102.235 40.005 0)
  8271. (effects (font (size 1.27 1.27)) hide)
  8272. )
  8273. (property "Datasheet" "" (id 3) (at 102.235 40.005 0)
  8274. (effects (font (size 1.27 1.27)) hide)
  8275. )
  8276. (pin "1" (uuid 048bb2cd-3a4c-431a-a5f3-e048a6ebe6dc))
  8277. )
  8278. (symbol (lib_id "Device:C_Small") (at 130.175 36.195 0) (unit 1)
  8279. (in_bom yes) (on_board yes)
  8280. (uuid 3ddf2bcc-3a53-4386-94a2-890d05c1264f)
  8281. (property "Reference" "C22" (id 0) (at 125.73 34.29 0)
  8282. (effects (font (size 1.27 1.27)) (justify left))
  8283. )
  8284. (property "Value" "47uF" (id 1) (at 125.095 38.735 0)
  8285. (effects (font (size 1.27 1.27)) (justify left))
  8286. )
  8287. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 130.175 36.195 0)
  8288. (effects (font (size 1.27 1.27)) hide)
  8289. )
  8290. (property "Datasheet" "~" (id 3) (at 130.175 36.195 0)
  8291. (effects (font (size 1.27 1.27)) hide)
  8292. )
  8293. (property "LCSC" "C16780" (id 4) (at 130.175 36.195 0)
  8294. (effects (font (size 1.27 1.27)) hide)
  8295. )
  8296. (pin "1" (uuid 77b5fc67-2cb2-42ec-8ca8-b4d769ceb74a))
  8297. (pin "2" (uuid 9dd67ecf-548f-405c-9345-3f1801813c4d))
  8298. )
  8299. (symbol (lib_id "power:+5VP") (at 278.765 189.865 0) (unit 1)
  8300. (in_bom yes) (on_board yes) (fields_autoplaced)
  8301. (uuid 3ed6cd4f-333e-4619-aaa2-3383058063b3)
  8302. (property "Reference" "#PWR0111" (id 0) (at 278.765 193.675 0)
  8303. (effects (font (size 1.27 1.27)) hide)
  8304. )
  8305. (property "Value" "+5VP" (id 1) (at 278.765 184.785 0))
  8306. (property "Footprint" "" (id 2) (at 278.765 189.865 0)
  8307. (effects (font (size 1.27 1.27)) hide)
  8308. )
  8309. (property "Datasheet" "" (id 3) (at 278.765 189.865 0)
  8310. (effects (font (size 1.27 1.27)) hide)
  8311. )
  8312. (pin "1" (uuid 07ab8ac6-1eaa-4817-98b1-acfe58bbd067))
  8313. )
  8314. (symbol (lib_id "Device:D_Schottky") (at 71.12 50.8 180) (unit 1)
  8315. (in_bom yes) (on_board yes)
  8316. (uuid 432b8220-7d52-4701-90ef-16ebbff267c9)
  8317. (property "Reference" "D1" (id 0) (at 69.9516 48.768 0)
  8318. (effects (font (size 1.27 1.27)) (justify right))
  8319. )
  8320. (property "Value" "1N5819W" (id 1) (at 68.58 53.34 0)
  8321. (effects (font (size 1.27 1.27)) (justify right))
  8322. )
  8323. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 71.12 50.8 0)
  8324. (effects (font (size 1.27 1.27)) hide)
  8325. )
  8326. (property "Datasheet" "~" (id 3) (at 71.12 50.8 0)
  8327. (effects (font (size 1.27 1.27)) hide)
  8328. )
  8329. (property "LCSC" "C963381" (id 4) (at 71.12 50.8 90)
  8330. (effects (font (size 1.27 1.27)) hide)
  8331. )
  8332. (pin "1" (uuid dfd821b2-bf21-4f63-878c-732bba73f4c4))
  8333. (pin "2" (uuid 88a64b86-1e68-4d52-b8b3-0bc3bec40d8a))
  8334. )
  8335. (symbol (lib_id "Device:LED") (at 171.45 79.375 90) (unit 1)
  8336. (in_bom yes) (on_board yes) (fields_autoplaced)
  8337. (uuid 443153be-f993-4228-910b-1b24a43c63c3)
  8338. (property "Reference" "D3" (id 0) (at 174.625 79.6924 90)
  8339. (effects (font (size 1.27 1.27)) (justify right))
  8340. )
  8341. (property "Value" "LED" (id 1) (at 174.625 82.2324 90)
  8342. (effects (font (size 1.27 1.27)) (justify right))
  8343. )
  8344. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 171.45 79.375 0)
  8345. (effects (font (size 1.27 1.27)) hide)
  8346. )
  8347. (property "Datasheet" "~" (id 3) (at 171.45 79.375 0)
  8348. (effects (font (size 1.27 1.27)) hide)
  8349. )
  8350. (property "LCSC" "C72043" (id 4) (at 171.45 79.375 90)
  8351. (effects (font (size 1.27 1.27)) hide)
  8352. )
  8353. (pin "1" (uuid f4f7be2b-ae50-4da1-afce-b383341704c8))
  8354. (pin "2" (uuid 024297f1-0819-478d-818b-77805f2e9e9c))
  8355. )
  8356. (symbol (lib_id "power:PWR_FLAG") (at 357.505 39.37 180) (unit 1)
  8357. (in_bom yes) (on_board yes) (fields_autoplaced)
  8358. (uuid 444f99dc-0b38-43a3-a3ac-2ff9cf269cb5)
  8359. (property "Reference" "#FLG04" (id 0) (at 357.505 41.275 0)
  8360. (effects (font (size 1.27 1.27)) hide)
  8361. )
  8362. (property "Value" "PWR_FLAG" (id 1) (at 357.505 44.45 0))
  8363. (property "Footprint" "" (id 2) (at 357.505 39.37 0)
  8364. (effects (font (size 1.27 1.27)) hide)
  8365. )
  8366. (property "Datasheet" "~" (id 3) (at 357.505 39.37 0)
  8367. (effects (font (size 1.27 1.27)) hide)
  8368. )
  8369. (pin "1" (uuid 85b2f0ca-f1ca-46a1-8d4a-326b04e18251))
  8370. )
  8371. (symbol (lib_id "power:GND") (at 124.46 248.285 0) (unit 1)
  8372. (in_bom yes) (on_board yes)
  8373. (uuid 447ad544-422b-4ae0-a6d4-c84c1e24a619)
  8374. (property "Reference" "#PWR0184" (id 0) (at 124.46 254.635 0)
  8375. (effects (font (size 1.27 1.27)) hide)
  8376. )
  8377. (property "Value" "GND" (id 1) (at 117.475 252.73 0))
  8378. (property "Footprint" "" (id 2) (at 124.46 248.285 0)
  8379. (effects (font (size 1.27 1.27)) hide)
  8380. )
  8381. (property "Datasheet" "" (id 3) (at 124.46 248.285 0)
  8382. (effects (font (size 1.27 1.27)) hide)
  8383. )
  8384. (pin "1" (uuid 2f44ebb0-1e90-43fa-8f90-0608fa4b96d4))
  8385. )
  8386. (symbol (lib_id "74xx:74LS125") (at 243.84 109.855 0) (unit 1)
  8387. (in_bom yes) (on_board yes)
  8388. (uuid 44a489ac-0471-4632-8118-d03a622bc89d)
  8389. (property "Reference" "U10" (id 0) (at 236.22 104.14 0))
  8390. (property "Value" "74AHCT125" (id 1) (at 250.19 104.14 0))
  8391. (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (id 2) (at 243.84 109.855 0)
  8392. (effects (font (size 1.27 1.27)) hide)
  8393. )
  8394. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS125" (id 3) (at 243.84 109.855 0)
  8395. (effects (font (size 1.27 1.27)) hide)
  8396. )
  8397. (property "MOUSER" "595-SN74AHCT125PWR" (id 4) (at 243.84 109.855 0)
  8398. (effects (font (size 1.27 1.27)) hide)
  8399. )
  8400. (property "LCSC" "C148198" (id 5) (at 243.84 109.855 0)
  8401. (effects (font (size 1.27 1.27)) hide)
  8402. )
  8403. (pin "1" (uuid 08b6f935-d844-45e8-83bd-9dd5148bc760))
  8404. (pin "2" (uuid f6c83358-f825-41e4-ae25-44b5c52a608c))
  8405. (pin "3" (uuid efe84d41-4408-4dcd-bbb8-bb5ab686dc10))
  8406. (pin "4" (uuid 1913ae2c-1bc2-48d9-914f-4c532d02ffb4))
  8407. (pin "5" (uuid 0f47421c-1e82-4036-b8e8-a06d02b43b87))
  8408. (pin "6" (uuid bcc40fb8-020a-4739-8e85-82c40b31a03a))
  8409. (pin "10" (uuid 6d025ced-6ac4-4b51-9abd-c7c1dda9f9b8))
  8410. (pin "8" (uuid 4b9a1e55-d75d-425c-9459-6ce1d0c58dbe))
  8411. (pin "9" (uuid 115c8e86-c44c-49a7-bc69-7044c5ce83c9))
  8412. (pin "11" (uuid fa41102b-8163-4b6e-a5da-850b9aac1839))
  8413. (pin "12" (uuid eee7b72b-b900-4fb7-9e9e-ffec25e17b7d))
  8414. (pin "13" (uuid 7dc1ce1b-568c-4602-a1cf-8ad58eddd87c))
  8415. (pin "14" (uuid 4559dd26-8d90-4217-a8b2-1adb39d7efbd))
  8416. (pin "7" (uuid bcb83b99-261c-469f-8af0-a0322b6b6b83))
  8417. )
  8418. (symbol (lib_id "power:GND") (at 51.435 158.115 0) (unit 1)
  8419. (in_bom yes) (on_board yes) (fields_autoplaced)
  8420. (uuid 46939356-5ee8-466a-b66e-a41268da092b)
  8421. (property "Reference" "#PWR0120" (id 0) (at 51.435 164.465 0)
  8422. (effects (font (size 1.27 1.27)) hide)
  8423. )
  8424. (property "Value" "GND" (id 1) (at 51.435 162.56 0))
  8425. (property "Footprint" "" (id 2) (at 51.435 158.115 0)
  8426. (effects (font (size 1.27 1.27)) hide)
  8427. )
  8428. (property "Datasheet" "" (id 3) (at 51.435 158.115 0)
  8429. (effects (font (size 1.27 1.27)) hide)
  8430. )
  8431. (pin "1" (uuid 7997fe5a-cda0-4062-9703-abe4fe530c77))
  8432. )
  8433. (symbol (lib_id "Device:C_Small") (at 200.66 34.925 0) (unit 1)
  8434. (in_bom yes) (on_board yes)
  8435. (uuid 4897d442-0321-41fa-a4bb-31b8bde01e92)
  8436. (property "Reference" "C10" (id 0) (at 201.93 33.02 0)
  8437. (effects (font (size 1.27 1.27)) (justify left))
  8438. )
  8439. (property "Value" "100nF" (id 1) (at 201.93 36.83 0)
  8440. (effects (font (size 1.27 1.27)) (justify left))
  8441. )
  8442. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 200.66 34.925 0)
  8443. (effects (font (size 1.27 1.27)) hide)
  8444. )
  8445. (property "Datasheet" "~" (id 3) (at 200.66 34.925 0)
  8446. (effects (font (size 1.27 1.27)) hide)
  8447. )
  8448. (property "LCSC" "C1525" (id 4) (at 200.66 34.925 0)
  8449. (effects (font (size 1.27 1.27)) hide)
  8450. )
  8451. (pin "1" (uuid ffe2e3b5-0a01-4b9c-9ee0-5ebd574df050))
  8452. (pin "2" (uuid 28a9b539-b54c-4fe7-bb0f-97584e1ce616))
  8453. )
  8454. (symbol (lib_id "power:GND") (at 386.08 40.005 0) (unit 1)
  8455. (in_bom yes) (on_board yes) (fields_autoplaced)
  8456. (uuid 4beb6596-ef0e-43a8-a905-0cc7c8d46c0f)
  8457. (property "Reference" "#PWR0171" (id 0) (at 386.08 46.355 0)
  8458. (effects (font (size 1.27 1.27)) hide)
  8459. )
  8460. (property "Value" "GND" (id 1) (at 386.08 45.085 0))
  8461. (property "Footprint" "" (id 2) (at 386.08 40.005 0)
  8462. (effects (font (size 1.27 1.27)) hide)
  8463. )
  8464. (property "Datasheet" "" (id 3) (at 386.08 40.005 0)
  8465. (effects (font (size 1.27 1.27)) hide)
  8466. )
  8467. (pin "1" (uuid dad48fe5-8c14-43e4-9c68-ac9a86872192))
  8468. )
  8469. (symbol (lib_id "power:GND") (at 170.18 273.05 0) (unit 1)
  8470. (in_bom yes) (on_board yes) (fields_autoplaced)
  8471. (uuid 4e85c2cf-ef4e-4f26-8349-e0d5055313ac)
  8472. (property "Reference" "#PWR0143" (id 0) (at 170.18 279.4 0)
  8473. (effects (font (size 1.27 1.27)) hide)
  8474. )
  8475. (property "Value" "GND" (id 1) (at 170.18 278.13 0))
  8476. (property "Footprint" "" (id 2) (at 170.18 273.05 0)
  8477. (effects (font (size 1.27 1.27)) hide)
  8478. )
  8479. (property "Datasheet" "" (id 3) (at 170.18 273.05 0)
  8480. (effects (font (size 1.27 1.27)) hide)
  8481. )
  8482. (pin "1" (uuid 9d395c39-1485-4248-ba13-af7de7a20eab))
  8483. )
  8484. (symbol (lib_id "power:GND") (at 118.745 41.275 0) (unit 1)
  8485. (in_bom yes) (on_board yes)
  8486. (uuid 537a388b-f63b-43cd-b815-1d0ca15bbe75)
  8487. (property "Reference" "#PWR0158" (id 0) (at 118.745 47.625 0)
  8488. (effects (font (size 1.27 1.27)) hide)
  8489. )
  8490. (property "Value" "GND" (id 1) (at 118.872 45.6692 0))
  8491. (property "Footprint" "" (id 2) (at 118.745 41.275 0)
  8492. (effects (font (size 1.27 1.27)) hide)
  8493. )
  8494. (property "Datasheet" "" (id 3) (at 118.745 41.275 0)
  8495. (effects (font (size 1.27 1.27)) hide)
  8496. )
  8497. (pin "1" (uuid bad70e20-8f96-42f2-8703-4ea94660bf4b))
  8498. )
  8499. (symbol (lib_id "Device:LED") (at 161.925 79.375 90) (unit 1)
  8500. (in_bom yes) (on_board yes) (fields_autoplaced)
  8501. (uuid 540f435c-faec-48e2-a852-d725edb6da3e)
  8502. (property "Reference" "D2" (id 0) (at 165.1 79.6924 90)
  8503. (effects (font (size 1.27 1.27)) (justify right))
  8504. )
  8505. (property "Value" "LED" (id 1) (at 165.1 82.2324 90)
  8506. (effects (font (size 1.27 1.27)) (justify right))
  8507. )
  8508. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 161.925 79.375 0)
  8509. (effects (font (size 1.27 1.27)) hide)
  8510. )
  8511. (property "Datasheet" "~" (id 3) (at 161.925 79.375 0)
  8512. (effects (font (size 1.27 1.27)) hide)
  8513. )
  8514. (property "LCSC" "C72043" (id 4) (at 161.925 79.375 90)
  8515. (effects (font (size 1.27 1.27)) hide)
  8516. )
  8517. (pin "1" (uuid e45da1c5-2e38-4341-8ac3-8fb63313fffe))
  8518. (pin "2" (uuid e42c4e02-3c1a-4a07-9c09-ef56d7cc47f5))
  8519. )
  8520. (symbol (lib_id "power:+3V3") (at 210.82 28.575 0) (unit 1)
  8521. (in_bom yes) (on_board yes) (fields_autoplaced)
  8522. (uuid 542b9b14-bbfa-4d26-8f78-cc75b54d8508)
  8523. (property "Reference" "#PWR0131" (id 0) (at 210.82 32.385 0)
  8524. (effects (font (size 1.27 1.27)) hide)
  8525. )
  8526. (property "Value" "+3V3" (id 1) (at 210.82 24.13 0))
  8527. (property "Footprint" "" (id 2) (at 210.82 28.575 0)
  8528. (effects (font (size 1.27 1.27)) hide)
  8529. )
  8530. (property "Datasheet" "" (id 3) (at 210.82 28.575 0)
  8531. (effects (font (size 1.27 1.27)) hide)
  8532. )
  8533. (pin "1" (uuid e5f8ccba-34dc-4c1e-b619-7c6876b20f55))
  8534. )
  8535. (symbol (lib_id "power:+5VP") (at 259.715 183.515 0) (unit 1)
  8536. (in_bom yes) (on_board yes) (fields_autoplaced)
  8537. (uuid 546fb894-7a35-45c0-b598-13b6403fa443)
  8538. (property "Reference" "#PWR0107" (id 0) (at 259.715 187.325 0)
  8539. (effects (font (size 1.27 1.27)) hide)
  8540. )
  8541. (property "Value" "+5VP" (id 1) (at 259.715 178.435 0))
  8542. (property "Footprint" "" (id 2) (at 259.715 183.515 0)
  8543. (effects (font (size 1.27 1.27)) hide)
  8544. )
  8545. (property "Datasheet" "" (id 3) (at 259.715 183.515 0)
  8546. (effects (font (size 1.27 1.27)) hide)
  8547. )
  8548. (pin "1" (uuid 55630954-d4f3-4be9-8f9b-5c44bef1c787))
  8549. )
  8550. (symbol (lib_id "Device:R_Small") (at 37.465 181.61 90) (unit 1)
  8551. (in_bom yes) (on_board yes)
  8552. (uuid 54c01e80-6e93-4dbc-b14b-f15d9363c545)
  8553. (property "Reference" "R18" (id 0) (at 36.83 179.07 90))
  8554. (property "Value" "1M" (id 1) (at 37.465 184.15 90))
  8555. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 28.575 180.975 0)
  8556. (effects (font (size 1.27 1.27)) hide)
  8557. )
  8558. (property "Datasheet" "~" (id 3) (at 37.465 181.61 0)
  8559. (effects (font (size 1.27 1.27)) hide)
  8560. )
  8561. (property "LCSC" "C26083" (id 4) (at 37.465 181.61 0)
  8562. (effects (font (size 1.27 1.27)) hide)
  8563. )
  8564. (pin "1" (uuid 97e3cd55-b42b-42ff-9d40-a035e64ab35d))
  8565. (pin "2" (uuid 880d85f4-3f8c-47ce-823a-f81a45ffeaf8))
  8566. )
  8567. (symbol (lib_id "Device:R_Small") (at 59.69 141.605 270) (unit 1)
  8568. (in_bom yes) (on_board yes)
  8569. (uuid 57214d56-46ee-44dd-8081-2fc92c0b7c95)
  8570. (property "Reference" "R17" (id 0) (at 57.15 139.065 90))
  8571. (property "Value" "10k" (id 1) (at 62.865 139.7 90))
  8572. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 59.69 141.605 0)
  8573. (effects (font (size 1.27 1.27)) hide)
  8574. )
  8575. (property "Datasheet" "~" (id 3) (at 59.69 141.605 0)
  8576. (effects (font (size 1.27 1.27)) hide)
  8577. )
  8578. (property "LCSC" "C25744" (id 4) (at 59.69 141.605 0)
  8579. (effects (font (size 1.27 1.27)) hide)
  8580. )
  8581. (pin "1" (uuid 3a325671-70ff-4aa1-ac7f-e4d0a94064a7))
  8582. (pin "2" (uuid f872140a-f3e9-4ea7-85ca-943f9750ccdc))
  8583. )
  8584. (symbol (lib_id "Device:R_Small") (at 217.805 83.82 90) (unit 1)
  8585. (in_bom yes) (on_board yes)
  8586. (uuid 57e200a6-ccfd-4b09-8b65-3ac22c9764d9)
  8587. (property "Reference" "R2" (id 0) (at 215.265 81.915 90))
  8588. (property "Value" "470" (id 1) (at 220.345 81.915 90))
  8589. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 217.805 83.82 0)
  8590. (effects (font (size 1.27 1.27)) hide)
  8591. )
  8592. (property "Datasheet" "~" (id 3) (at 217.805 83.82 0)
  8593. (effects (font (size 1.27 1.27)) hide)
  8594. )
  8595. (property "LCSC" "C25117" (id 4) (at 217.805 83.82 0)
  8596. (effects (font (size 1.27 1.27)) hide)
  8597. )
  8598. (pin "1" (uuid 5109f35f-b373-4cb4-9f51-ea4564bc8b9b))
  8599. (pin "2" (uuid 7a37894f-dd5b-404d-8cee-3c2e454cbe73))
  8600. )
  8601. (symbol (lib_id "Device:R_Small") (at 246.38 223.52 90) (unit 1)
  8602. (in_bom yes) (on_board yes)
  8603. (uuid 582c9757-ee3f-4e32-9781-f1dd98a8de7b)
  8604. (property "Reference" "R9" (id 0) (at 243.205 221.615 90))
  8605. (property "Value" "220" (id 1) (at 249.555 221.615 90))
  8606. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 246.38 223.52 0)
  8607. (effects (font (size 1.27 1.27)) hide)
  8608. )
  8609. (property "Datasheet" "~" (id 3) (at 246.38 223.52 0)
  8610. (effects (font (size 1.27 1.27)) hide)
  8611. )
  8612. (property "LCSC" "C25091" (id 4) (at 246.38 223.52 0)
  8613. (effects (font (size 1.27 1.27)) hide)
  8614. )
  8615. (pin "1" (uuid 8d7fe14a-12e0-4c79-b758-8400364d29f2))
  8616. (pin "2" (uuid 43d7f063-ccc4-4184-9275-477993cf8a5e))
  8617. )
  8618. (symbol (lib_id "Switch:SW_DIP_x04") (at 131.445 75.565 0) (unit 1)
  8619. (in_bom yes) (on_board yes)
  8620. (uuid 5ae7c200-e1fb-4ae8-b7b0-2efd984bc338)
  8621. (property "Reference" "SW1" (id 0) (at 131.445 63.5 0))
  8622. (property "Value" "SW_DIP_x04" (id 1) (at 131.445 66.04 0))
  8623. (property "Footprint" "Button_Switch_THT:SW_DIP_SPSTx04_Slide_9.78x12.34mm_W7.62mm_P2.54mm" (id 2) (at 131.445 75.565 0)
  8624. (effects (font (size 1.27 1.27)) hide)
  8625. )
  8626. (property "Datasheet" "~" (id 3) (at 131.445 75.565 0)
  8627. (effects (font (size 1.27 1.27)) hide)
  8628. )
  8629. (property "LCSC" "NM" (id 4) (at 131.445 75.565 0)
  8630. (effects (font (size 1.27 1.27)) hide)
  8631. )
  8632. (pin "1" (uuid 27925899-8091-4b34-aa79-264c081b51e5))
  8633. (pin "2" (uuid 63f60cfa-e88d-4c78-bdeb-24b0bc6cdaf5))
  8634. (pin "3" (uuid a2019253-d758-4d2d-b720-cdc967d2bbb6))
  8635. (pin "4" (uuid 716ea594-8b38-4c2f-a3a3-e1f9d20f0bba))
  8636. (pin "5" (uuid f9a4470a-e33f-4d31-a448-fda7ce2253bc))
  8637. (pin "6" (uuid 0e65afae-ae7a-4e09-a222-2f8e1e870c4b))
  8638. (pin "7" (uuid 5d597c45-3dba-4a98-9f9d-a004d4d67973))
  8639. (pin "8" (uuid 88844094-c274-4c20-9887-d954ab7444d0))
  8640. )
  8641. (symbol (lib_id "Device:C_Small") (at 179.07 34.925 0) (mirror y) (unit 1)
  8642. (in_bom yes) (on_board yes)
  8643. (uuid 5b0d7131-76fb-4a67-8133-18b3206c4aa4)
  8644. (property "Reference" "C24" (id 0) (at 184.785 33.655 0)
  8645. (effects (font (size 1.27 1.27)) (justify left))
  8646. )
  8647. (property "Value" "100nF" (id 1) (at 186.69 36.83 0)
  8648. (effects (font (size 1.27 1.27)) (justify left))
  8649. )
  8650. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 179.07 34.925 0)
  8651. (effects (font (size 1.27 1.27)) hide)
  8652. )
  8653. (property "Datasheet" "~" (id 3) (at 179.07 34.925 0)
  8654. (effects (font (size 1.27 1.27)) hide)
  8655. )
  8656. (property "LCSC" "C1525" (id 4) (at 179.07 34.925 0)
  8657. (effects (font (size 1.27 1.27)) hide)
  8658. )
  8659. (pin "1" (uuid 362467b5-a580-4fe3-b4f8-4c5a4830991b))
  8660. (pin "2" (uuid fcfd64d4-d390-45b8-9e03-9e7f531c98cc))
  8661. )
  8662. (symbol (lib_id "74xx:74LS125") (at 243.84 127 0) (unit 2)
  8663. (in_bom yes) (on_board yes)
  8664. (uuid 5d1328f8-1662-4ae1-9dfc-fc33e8c2c0a7)
  8665. (property "Reference" "U10" (id 0) (at 236.22 120.65 0))
  8666. (property "Value" "74AHCT125" (id 1) (at 252.73 120.65 0))
  8667. (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (id 2) (at 243.84 127 0)
  8668. (effects (font (size 1.27 1.27)) hide)
  8669. )
  8670. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS125" (id 3) (at 243.84 127 0)
  8671. (effects (font (size 1.27 1.27)) hide)
  8672. )
  8673. (property "MOUSER" "595-SN74AHCT125PWR" (id 4) (at 243.84 127 0)
  8674. (effects (font (size 1.27 1.27)) hide)
  8675. )
  8676. (property "LCSC" "C148198" (id 5) (at 243.84 127 0)
  8677. (effects (font (size 1.27 1.27)) hide)
  8678. )
  8679. (pin "1" (uuid 3398ffa0-8151-4ab9-9a1e-05a8f3e68625))
  8680. (pin "2" (uuid b2a6f153-6152-4b4a-a95b-ba79228f774c))
  8681. (pin "3" (uuid 866c2804-79f0-42ad-b60b-35330f41683f))
  8682. (pin "4" (uuid 689af784-1978-4ff6-be48-8f4068816a41))
  8683. (pin "5" (uuid 78b3c4ac-ffeb-4a82-8aab-b9317cbbcad3))
  8684. (pin "6" (uuid bac028e6-c10a-492d-a58f-629308b127ea))
  8685. (pin "10" (uuid cb0f55e2-3db9-424f-95d5-cc3e943c6710))
  8686. (pin "8" (uuid 59b84cf5-8fad-4fea-b0b7-c97376d20370))
  8687. (pin "9" (uuid f08b78e3-00cc-4545-b76f-007757fa75b3))
  8688. (pin "11" (uuid 3a11d195-28e0-457d-8a65-fd02d49a1f78))
  8689. (pin "12" (uuid f6bd7aba-1f99-4f1e-b21f-516a44b7739d))
  8690. (pin "13" (uuid a7065f1e-dcee-43b5-a342-a4982c31c272))
  8691. (pin "14" (uuid 2a393301-5f42-4cdb-951b-80f063c75605))
  8692. (pin "7" (uuid 1b6100b1-6db6-46ed-838f-9445ada9c264))
  8693. )
  8694. (symbol (lib_id "power:GND") (at 184.785 238.125 0) (unit 1)
  8695. (in_bom yes) (on_board yes) (fields_autoplaced)
  8696. (uuid 5e905e39-dec5-4b9e-9b5c-94c6564b14f2)
  8697. (property "Reference" "#PWR0148" (id 0) (at 184.785 244.475 0)
  8698. (effects (font (size 1.27 1.27)) hide)
  8699. )
  8700. (property "Value" "GND" (id 1) (at 184.785 242.57 0))
  8701. (property "Footprint" "" (id 2) (at 184.785 238.125 0)
  8702. (effects (font (size 1.27 1.27)) hide)
  8703. )
  8704. (property "Datasheet" "" (id 3) (at 184.785 238.125 0)
  8705. (effects (font (size 1.27 1.27)) hide)
  8706. )
  8707. (pin "1" (uuid b565bc2d-7b98-4778-854f-68837010744b))
  8708. )
  8709. (symbol (lib_id "Device:R_Small") (at 321.945 227.965 90) (unit 1)
  8710. (in_bom yes) (on_board yes)
  8711. (uuid 5fdb2a57-2711-4e21-91a2-3f300b5cd976)
  8712. (property "Reference" "R6" (id 0) (at 318.77 226.06 90))
  8713. (property "Value" "10k" (id 1) (at 325.12 226.06 90))
  8714. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 321.945 227.965 0)
  8715. (effects (font (size 1.27 1.27)) hide)
  8716. )
  8717. (property "Datasheet" "~" (id 3) (at 321.945 227.965 0)
  8718. (effects (font (size 1.27 1.27)) hide)
  8719. )
  8720. (property "LCSC" "C25744" (id 4) (at 321.945 227.965 0)
  8721. (effects (font (size 1.27 1.27)) hide)
  8722. )
  8723. (pin "1" (uuid dfe65717-41e2-49d1-89b1-8a86b68d2c41))
  8724. (pin "2" (uuid 504d317f-2fac-402a-9311-7d338e6d0808))
  8725. )
  8726. (symbol (lib_id "Device:C_Small") (at 108.585 36.195 0) (unit 1)
  8727. (in_bom yes) (on_board yes)
  8728. (uuid 60651e35-6c6d-480b-9692-87623757e268)
  8729. (property "Reference" "C21" (id 0) (at 104.775 34.29 0)
  8730. (effects (font (size 1.27 1.27)) (justify left))
  8731. )
  8732. (property "Value" "47uF" (id 1) (at 103.505 38.735 0)
  8733. (effects (font (size 1.27 1.27)) (justify left))
  8734. )
  8735. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 108.585 36.195 0)
  8736. (effects (font (size 1.27 1.27)) hide)
  8737. )
  8738. (property "Datasheet" "~" (id 3) (at 108.585 36.195 0)
  8739. (effects (font (size 1.27 1.27)) hide)
  8740. )
  8741. (property "LCSC" "C16780" (id 4) (at 108.585 36.195 0)
  8742. (effects (font (size 1.27 1.27)) hide)
  8743. )
  8744. (pin "1" (uuid 2059f2ff-92d9-43fc-87e1-52108e710a0c))
  8745. (pin "2" (uuid 15bf2a6c-205b-4677-a43f-b1dc0596401b))
  8746. )
  8747. (symbol (lib_id "Device:C_Small") (at 53.34 154.305 0) (unit 1)
  8748. (in_bom yes) (on_board yes)
  8749. (uuid 61732b41-8c12-4c4a-bc6b-2793625d081f)
  8750. (property "Reference" "C2" (id 0) (at 53.975 152.4 0)
  8751. (effects (font (size 1.27 1.27)) (justify left))
  8752. )
  8753. (property "Value" "2.2uF" (id 1) (at 53.975 156.21 0)
  8754. (effects (font (size 1.27 1.27)) (justify left))
  8755. )
  8756. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 53.34 154.305 0)
  8757. (effects (font (size 1.27 1.27)) hide)
  8758. )
  8759. (property "Datasheet" "~" (id 3) (at 53.34 154.305 0)
  8760. (effects (font (size 1.27 1.27)) hide)
  8761. )
  8762. (property "LCSC" "C23630" (id 4) (at 53.34 154.305 0)
  8763. (effects (font (size 1.27 1.27)) hide)
  8764. )
  8765. (pin "1" (uuid 983f1566-b0da-4466-9479-fed4c3b64f72))
  8766. (pin "2" (uuid 9e5cbfae-f4a5-4b4a-b3bc-afb3dc167d6a))
  8767. )
  8768. (symbol (lib_id "power:GND") (at 327.025 237.49 0) (unit 1)
  8769. (in_bom yes) (on_board yes) (fields_autoplaced)
  8770. (uuid 621d5e3d-779a-4ffe-9f79-e46c96f3c149)
  8771. (property "Reference" "#PWR0173" (id 0) (at 327.025 243.84 0)
  8772. (effects (font (size 1.27 1.27)) hide)
  8773. )
  8774. (property "Value" "GND" (id 1) (at 327.025 242.57 0))
  8775. (property "Footprint" "" (id 2) (at 327.025 237.49 0)
  8776. (effects (font (size 1.27 1.27)) hide)
  8777. )
  8778. (property "Datasheet" "" (id 3) (at 327.025 237.49 0)
  8779. (effects (font (size 1.27 1.27)) hide)
  8780. )
  8781. (pin "1" (uuid abb54caa-813b-4714-8074-9009d21b8bf8))
  8782. )
  8783. (symbol (lib_id "power:GND") (at 170.18 232.41 0) (unit 1)
  8784. (in_bom yes) (on_board yes) (fields_autoplaced)
  8785. (uuid 64870d3f-8510-45ec-9af4-2f706ff81cec)
  8786. (property "Reference" "#PWR0142" (id 0) (at 170.18 238.76 0)
  8787. (effects (font (size 1.27 1.27)) hide)
  8788. )
  8789. (property "Value" "GND" (id 1) (at 170.18 237.49 0))
  8790. (property "Footprint" "" (id 2) (at 170.18 232.41 0)
  8791. (effects (font (size 1.27 1.27)) hide)
  8792. )
  8793. (property "Datasheet" "" (id 3) (at 170.18 232.41 0)
  8794. (effects (font (size 1.27 1.27)) hide)
  8795. )
  8796. (pin "1" (uuid 05701287-c292-4da2-ba34-35f3e2bde449))
  8797. )
  8798. (symbol (lib_id "Connector:Conn_01x04_Male") (at 262.255 76.2 0) (mirror y) (unit 1)
  8799. (in_bom yes) (on_board yes) (fields_autoplaced)
  8800. (uuid 64ed9de1-2d61-42bd-a7a0-a534b75c62b7)
  8801. (property "Reference" "J6" (id 0) (at 264.16 76.1999 0)
  8802. (effects (font (size 1.27 1.27)) (justify right))
  8803. )
  8804. (property "Value" "Conn_01x04_Male" (id 1) (at 264.16 78.7399 0)
  8805. (effects (font (size 1.27 1.27)) (justify right))
  8806. )
  8807. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (id 2) (at 262.255 76.2 0)
  8808. (effects (font (size 1.27 1.27)) hide)
  8809. )
  8810. (property "Datasheet" "~" (id 3) (at 262.255 76.2 0)
  8811. (effects (font (size 1.27 1.27)) hide)
  8812. )
  8813. (pin "1" (uuid 5fc4f130-0e77-444b-a095-2e172685ac1b))
  8814. (pin "2" (uuid c3cf4311-fa6d-43e3-bfcb-847647194791))
  8815. (pin "3" (uuid 07fa8657-644b-45cc-ac51-bf97ceb0491f))
  8816. (pin "4" (uuid b0ae7376-e4b4-43f0-a034-afc014d5accc))
  8817. )
  8818. (symbol (lib_id "power:+3V3") (at 231.14 142.875 0) (unit 1)
  8819. (in_bom yes) (on_board yes) (fields_autoplaced)
  8820. (uuid 66190135-4ef9-48ac-ae71-30ed1088b5de)
  8821. (property "Reference" "#PWR0166" (id 0) (at 231.14 146.685 0)
  8822. (effects (font (size 1.27 1.27)) hide)
  8823. )
  8824. (property "Value" "+3V3" (id 1) (at 231.14 137.16 0))
  8825. (property "Footprint" "" (id 2) (at 231.14 142.875 0)
  8826. (effects (font (size 1.27 1.27)) hide)
  8827. )
  8828. (property "Datasheet" "" (id 3) (at 231.14 142.875 0)
  8829. (effects (font (size 1.27 1.27)) hide)
  8830. )
  8831. (pin "1" (uuid 16be93cf-ffab-4cea-9ee0-8d191306ad7c))
  8832. )
  8833. (symbol (lib_id "74xx_IEEE:74LS641") (at 187.325 174.625 0) (unit 1)
  8834. (in_bom yes) (on_board yes)
  8835. (uuid 67aa81b2-d545-4589-97dd-6cfad2d8484e)
  8836. (property "Reference" "U6" (id 0) (at 181.61 156.21 0))
  8837. (property "Value" "74ALS641-1" (id 1) (at 198.755 156.845 0))
  8838. (property "Footprint" "Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm" (id 2) (at 187.325 174.625 0)
  8839. (effects (font (size 1.27 1.27)) hide)
  8840. )
  8841. (property "Datasheet" "" (id 3) (at 187.325 174.625 0)
  8842. (effects (font (size 1.27 1.27)) hide)
  8843. )
  8844. (property "MOUSER" "595-SN74ALS641A-1DW" (id 4) (at 187.325 174.625 0)
  8845. (effects (font (size 1.27 1.27)) hide)
  8846. )
  8847. (pin "10" (uuid 463622ed-d5c0-476a-94bd-c3196838349b))
  8848. (pin "20" (uuid b722c4e5-acbf-4258-9a24-3608349df462))
  8849. (pin "1" (uuid f7fac784-4126-4984-8451-5c53de38dd12))
  8850. (pin "11" (uuid 7f2f3620-a64d-46de-875a-2bc52a30c986))
  8851. (pin "12" (uuid 0c3e37eb-ecea-4323-ab6a-0600b874f7f6))
  8852. (pin "13" (uuid 72751349-305b-406a-9a99-91be6dd39d40))
  8853. (pin "14" (uuid 5b444837-0f2b-41dd-a6c5-7b269b2fa63a))
  8854. (pin "15" (uuid 1862852e-12b2-4a7e-a7a2-0a1a625da055))
  8855. (pin "16" (uuid fa607677-fe82-416b-acb6-6da9d7c605f4))
  8856. (pin "17" (uuid ac442c6f-d45b-4633-bca4-7d8b75cb3275))
  8857. (pin "18" (uuid bbd59948-c3ce-4b1f-8b02-d459984d6625))
  8858. (pin "19" (uuid f8f17c7f-2390-4b2a-888c-670b167878ff))
  8859. (pin "2" (uuid 5604356f-a0fb-4061-8937-703267bed76d))
  8860. (pin "3" (uuid a86b76a8-4867-466c-8841-3a1a353eaa15))
  8861. (pin "4" (uuid 120cb3a0-ec94-4c28-83f6-4cf4143ee8db))
  8862. (pin "5" (uuid 23426669-5c6d-49ed-81ea-7caa30ed3410))
  8863. (pin "6" (uuid a2547f5b-216e-4076-842b-6205c817a2c6))
  8864. (pin "7" (uuid 9ca831ba-df54-4439-bad0-98d9d8204c5b))
  8865. (pin "8" (uuid 6059f9f2-cb8f-4404-87f8-7d77db86b0ea))
  8866. (pin "9" (uuid 8201a3c7-91f9-4f1a-b4bd-0cf59dbc6d1a))
  8867. )
  8868. (symbol (lib_id "Device:R_Small") (at 256.54 229.87 180) (unit 1)
  8869. (in_bom yes) (on_board yes)
  8870. (uuid 71a74ee3-329b-409c-94e9-dee9aaeda96c)
  8871. (property "Reference" "R7" (id 0) (at 254.635 233.045 90))
  8872. (property "Value" "100k" (id 1) (at 254.635 227.33 90))
  8873. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 256.54 229.87 0)
  8874. (effects (font (size 1.27 1.27)) hide)
  8875. )
  8876. (property "Datasheet" "~" (id 3) (at 256.54 229.87 0)
  8877. (effects (font (size 1.27 1.27)) hide)
  8878. )
  8879. (property "LCSC" "C25741" (id 4) (at 256.54 229.87 0)
  8880. (effects (font (size 1.27 1.27)) hide)
  8881. )
  8882. (pin "1" (uuid 9a8262d3-07d1-46f3-809a-cd8240d2f7a5))
  8883. (pin "2" (uuid 2b0a188a-feac-40ad-a288-f07ac6071558))
  8884. )
  8885. (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 386.08 34.925 90) (unit 1)
  8886. (in_bom yes) (on_board yes) (fields_autoplaced)
  8887. (uuid 71abe646-92e7-4256-8b38-45225bdfb3e9)
  8888. (property "Reference" "JP2" (id 0) (at 388.62 33.6549 90)
  8889. (effects (font (size 1.27 1.27)) (justify right))
  8890. )
  8891. (property "Value" "SolderJumper_2_Bridged" (id 1) (at 388.62 36.1949 90)
  8892. (effects (font (size 1.27 1.27)) (justify right) hide)
  8893. )
  8894. (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (id 2) (at 386.08 34.925 0)
  8895. (effects (font (size 1.27 1.27)) hide)
  8896. )
  8897. (property "Datasheet" "~" (id 3) (at 386.08 34.925 0)
  8898. (effects (font (size 1.27 1.27)) hide)
  8899. )
  8900. (pin "1" (uuid 03bd23ae-6be9-45ed-82b6-127e38ea12c6))
  8901. (pin "2" (uuid 31cac930-cb2c-44e8-bf41-2cd576a5ba8b))
  8902. )
  8903. (symbol (lib_id "74xx_IEEE:74LS641") (at 186.69 259.715 0) (unit 1)
  8904. (in_bom yes) (on_board yes)
  8905. (uuid 738990b0-a6c9-4fd0-bd8a-41dcd5db3099)
  8906. (property "Reference" "U5" (id 0) (at 180.975 241.3 0))
  8907. (property "Value" "74ALS641-1" (id 1) (at 198.12 241.935 0))
  8908. (property "Footprint" "Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm" (id 2) (at 186.69 259.715 0)
  8909. (effects (font (size 1.27 1.27)) hide)
  8910. )
  8911. (property "Datasheet" "" (id 3) (at 186.69 259.715 0)
  8912. (effects (font (size 1.27 1.27)) hide)
  8913. )
  8914. (property "MOUSER" "595-SN74ALS641A-1DW" (id 4) (at 186.69 259.715 0)
  8915. (effects (font (size 1.27 1.27)) hide)
  8916. )
  8917. (pin "10" (uuid 0aa63e29-f678-48b7-9005-6c263c6cd144))
  8918. (pin "20" (uuid 31b045c7-cd90-4128-99ec-ed599fbfaff6))
  8919. (pin "1" (uuid e082bc17-165b-49e0-b566-64cd28008515))
  8920. (pin "11" (uuid d5e4ca31-1224-45bd-9088-2c12ff28bcc5))
  8921. (pin "12" (uuid 5bfe98af-45f6-41e8-b9cb-d1fa3f9f1bef))
  8922. (pin "13" (uuid 8905d605-8d15-43ab-8588-f95f2c147839))
  8923. (pin "14" (uuid 77f8f2b0-2aff-4edf-b7b3-aa395141cb79))
  8924. (pin "15" (uuid 22be4c52-96e3-42db-a3b3-1bfea5b38058))
  8925. (pin "16" (uuid 29061339-9f18-446c-9cfc-4c2e361989f5))
  8926. (pin "17" (uuid ca165092-bbac-48ba-8dee-2743faecd746))
  8927. (pin "18" (uuid 0bc91527-e495-4814-84d8-dfd500d224f3))
  8928. (pin "19" (uuid c3eb901d-e4d6-4e42-8293-8713c801084a))
  8929. (pin "2" (uuid d4bf059d-96d7-42c5-a2ba-84f7750fd08c))
  8930. (pin "3" (uuid 03cec65c-23c4-4d58-83ea-4d966d83aaac))
  8931. (pin "4" (uuid c9f6dd85-4851-4ee6-8dd1-a8ed331aafc5))
  8932. (pin "5" (uuid 4db46a01-e6c3-4947-9fd7-3d760fef8024))
  8933. (pin "6" (uuid 03b5cbcd-c431-4302-85c6-b6115cb9e483))
  8934. (pin "7" (uuid a4795281-2718-42ba-a499-822e944afc83))
  8935. (pin "8" (uuid 59ee17ae-38a5-4fe8-b3e2-44859413896b))
  8936. (pin "9" (uuid 4019b13b-7035-4e9f-a797-99c95853bfa7))
  8937. )
  8938. (symbol (lib_id "Device:R_Small") (at 171.45 71.755 180) (unit 1)
  8939. (in_bom yes) (on_board yes) (fields_autoplaced)
  8940. (uuid 741a279f-bb19-43db-ae37-7c5c03c324ba)
  8941. (property "Reference" "R12" (id 0) (at 173.99 70.4849 0)
  8942. (effects (font (size 1.27 1.27)) (justify right))
  8943. )
  8944. (property "Value" "820" (id 1) (at 173.99 73.0249 0)
  8945. (effects (font (size 1.27 1.27)) (justify right))
  8946. )
  8947. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 171.45 71.755 0)
  8948. (effects (font (size 1.27 1.27)) hide)
  8949. )
  8950. (property "Datasheet" "~" (id 3) (at 171.45 71.755 0)
  8951. (effects (font (size 1.27 1.27)) hide)
  8952. )
  8953. (property "LCSC" "C23253" (id 4) (at 171.45 71.755 0)
  8954. (effects (font (size 1.27 1.27)) hide)
  8955. )
  8956. (pin "1" (uuid 21324034-666d-4083-a973-a71b625727dc))
  8957. (pin "2" (uuid cbc7420c-9286-46ba-88e4-4f23b88d9388))
  8958. )
  8959. (symbol (lib_id "Device:C_Small") (at 76.835 71.755 0) (mirror y) (unit 1)
  8960. (in_bom yes) (on_board yes)
  8961. (uuid 74a03c6e-9e56-42c8-b454-5e559d46fec1)
  8962. (property "Reference" "C39" (id 0) (at 80.645 70.485 0))
  8963. (property "Value" "1uF" (id 1) (at 80.645 74.295 0))
  8964. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 75.8698 75.565 0)
  8965. (effects (font (size 1.27 1.27)) hide)
  8966. )
  8967. (property "Datasheet" "~" (id 3) (at 76.835 71.755 0)
  8968. (effects (font (size 1.27 1.27)) hide)
  8969. )
  8970. (property "LCSC" "C52923" (id 4) (at 112.395 95.885 0)
  8971. (effects (font (size 1.27 1.27)) hide)
  8972. )
  8973. (property "MOUSER" "" (id 5) (at 112.395 95.885 0)
  8974. (effects (font (size 1.27 1.27)) hide)
  8975. )
  8976. (property "MPN" "" (id 6) (at 112.395 95.885 0)
  8977. (effects (font (size 1.27 1.27)) hide)
  8978. )
  8979. (property "Supplier" "" (id 7) (at 76.835 71.755 0)
  8980. (effects (font (size 1.27 1.27)) hide)
  8981. )
  8982. (pin "1" (uuid f8cd3384-e5e8-4840-9dc8-d34a5e3d962c))
  8983. (pin "2" (uuid 85ebda7d-71ad-4315-a213-99fd9029694c))
  8984. )
  8985. (symbol (lib_id "power:+5VP") (at 95.885 28.575 0) (unit 1)
  8986. (in_bom yes) (on_board yes) (fields_autoplaced)
  8987. (uuid 751a9390-331e-4b44-b0c3-86cc6baaea7f)
  8988. (property "Reference" "#PWR0121" (id 0) (at 95.885 32.385 0)
  8989. (effects (font (size 1.27 1.27)) hide)
  8990. )
  8991. (property "Value" "+5VP" (id 1) (at 95.885 23.495 0))
  8992. (property "Footprint" "" (id 2) (at 95.885 28.575 0)
  8993. (effects (font (size 1.27 1.27)) hide)
  8994. )
  8995. (property "Datasheet" "" (id 3) (at 95.885 28.575 0)
  8996. (effects (font (size 1.27 1.27)) hide)
  8997. )
  8998. (pin "1" (uuid 13b6f6bb-2295-4ab8-b587-00b5e0703296))
  8999. )
  9000. (symbol (lib_id "power:GND") (at 185.42 153.035 0) (unit 1)
  9001. (in_bom yes) (on_board yes) (fields_autoplaced)
  9002. (uuid 75ac25c5-7a87-41cd-83f4-b4736b1603b8)
  9003. (property "Reference" "#PWR0134" (id 0) (at 185.42 159.385 0)
  9004. (effects (font (size 1.27 1.27)) hide)
  9005. )
  9006. (property "Value" "GND" (id 1) (at 185.42 157.48 0))
  9007. (property "Footprint" "" (id 2) (at 185.42 153.035 0)
  9008. (effects (font (size 1.27 1.27)) hide)
  9009. )
  9010. (property "Datasheet" "" (id 3) (at 185.42 153.035 0)
  9011. (effects (font (size 1.27 1.27)) hide)
  9012. )
  9013. (pin "1" (uuid e8914940-84de-4a52-887e-d1dfb223be76))
  9014. )
  9015. (symbol (lib_id "power:+3V3") (at 324.485 71.12 0) (unit 1)
  9016. (in_bom yes) (on_board yes) (fields_autoplaced)
  9017. (uuid 75cd5efb-f3a0-4014-bcff-419850831502)
  9018. (property "Reference" "#PWR0138" (id 0) (at 324.485 74.93 0)
  9019. (effects (font (size 1.27 1.27)) hide)
  9020. )
  9021. (property "Value" "+3V3" (id 1) (at 324.485 65.405 0))
  9022. (property "Footprint" "" (id 2) (at 324.485 71.12 0)
  9023. (effects (font (size 1.27 1.27)) hide)
  9024. )
  9025. (property "Datasheet" "" (id 3) (at 324.485 71.12 0)
  9026. (effects (font (size 1.27 1.27)) hide)
  9027. )
  9028. (pin "1" (uuid ab8a0285-27e1-42a2-b42f-ae62f062498e))
  9029. )
  9030. (symbol (lib_id "power:+5VP") (at 321.31 184.15 0) (unit 1)
  9031. (in_bom yes) (on_board yes) (fields_autoplaced)
  9032. (uuid 779b3555-e911-453d-8c7e-f4ef844ff0b5)
  9033. (property "Reference" "#PWR0183" (id 0) (at 321.31 187.96 0)
  9034. (effects (font (size 1.27 1.27)) hide)
  9035. )
  9036. (property "Value" "+5VP" (id 1) (at 321.31 179.07 0))
  9037. (property "Footprint" "" (id 2) (at 321.31 184.15 0)
  9038. (effects (font (size 1.27 1.27)) hide)
  9039. )
  9040. (property "Datasheet" "" (id 3) (at 321.31 184.15 0)
  9041. (effects (font (size 1.27 1.27)) hide)
  9042. )
  9043. (pin "1" (uuid 7f2952a0-b39c-48e0-a596-aef5fc7111c9))
  9044. )
  9045. (symbol (lib_id "power:GND") (at 203.2 273.05 0) (unit 1)
  9046. (in_bom yes) (on_board yes) (fields_autoplaced)
  9047. (uuid 7adc5d1c-42c1-4e92-adf6-899b036878bb)
  9048. (property "Reference" "#PWR0150" (id 0) (at 203.2 279.4 0)
  9049. (effects (font (size 1.27 1.27)) hide)
  9050. )
  9051. (property "Value" "GND" (id 1) (at 203.2 278.13 0))
  9052. (property "Footprint" "" (id 2) (at 203.2 273.05 0)
  9053. (effects (font (size 1.27 1.27)) hide)
  9054. )
  9055. (property "Datasheet" "" (id 3) (at 203.2 273.05 0)
  9056. (effects (font (size 1.27 1.27)) hide)
  9057. )
  9058. (pin "1" (uuid 4c52999b-3c01-4755-811d-ec45028b32a8))
  9059. )
  9060. (symbol (lib_id "Device:C_Small") (at 255.27 34.925 0) (unit 1)
  9061. (in_bom yes) (on_board yes) (fields_autoplaced)
  9062. (uuid 7b65eb53-8b54-4039-af2d-20f2b46958e4)
  9063. (property "Reference" "C15" (id 0) (at 258.445 33.6612 0)
  9064. (effects (font (size 1.27 1.27)) (justify left))
  9065. )
  9066. (property "Value" "100nF" (id 1) (at 258.445 36.2012 0)
  9067. (effects (font (size 1.27 1.27)) (justify left))
  9068. )
  9069. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 255.27 34.925 0)
  9070. (effects (font (size 1.27 1.27)) hide)
  9071. )
  9072. (property "Datasheet" "~" (id 3) (at 255.27 34.925 0)
  9073. (effects (font (size 1.27 1.27)) hide)
  9074. )
  9075. (property "LCSC" "C1525" (id 4) (at 255.27 34.925 0)
  9076. (effects (font (size 1.27 1.27)) hide)
  9077. )
  9078. (pin "1" (uuid afae4ca4-66fb-4af9-a3b6-2530e3b3dba0))
  9079. (pin "2" (uuid a771d68a-1593-4030-aa06-8bbac5ccf0d9))
  9080. )
  9081. (symbol (lib_id "power:+3V3") (at 253.365 70.485 0) (unit 1)
  9082. (in_bom yes) (on_board yes) (fields_autoplaced)
  9083. (uuid 7b8acfda-2b78-4eb9-805d-6a0207252552)
  9084. (property "Reference" "#PWR0160" (id 0) (at 253.365 74.295 0)
  9085. (effects (font (size 1.27 1.27)) hide)
  9086. )
  9087. (property "Value" "+3V3" (id 1) (at 253.365 64.77 0))
  9088. (property "Footprint" "" (id 2) (at 253.365 70.485 0)
  9089. (effects (font (size 1.27 1.27)) hide)
  9090. )
  9091. (property "Datasheet" "" (id 3) (at 253.365 70.485 0)
  9092. (effects (font (size 1.27 1.27)) hide)
  9093. )
  9094. (pin "1" (uuid 46a8b554-7f23-489e-b9b0-94974ce42392))
  9095. )
  9096. (symbol (lib_id "power:+3V3") (at 191.77 238.76 0) (unit 1)
  9097. (in_bom yes) (on_board yes) (fields_autoplaced)
  9098. (uuid 7bed4b70-24ec-44a6-a58c-0a4ecc758a6b)
  9099. (property "Reference" "#PWR0147" (id 0) (at 191.77 242.57 0)
  9100. (effects (font (size 1.27 1.27)) hide)
  9101. )
  9102. (property "Value" "+3V3" (id 1) (at 191.77 233.68 0))
  9103. (property "Footprint" "" (id 2) (at 191.77 238.76 0)
  9104. (effects (font (size 1.27 1.27)) hide)
  9105. )
  9106. (property "Datasheet" "" (id 3) (at 191.77 238.76 0)
  9107. (effects (font (size 1.27 1.27)) hide)
  9108. )
  9109. (pin "1" (uuid bddd0c70-bc16-40c7-8fd0-2c7146dddbd4))
  9110. )
  9111. (symbol (lib_id "Device:R_Small") (at 246.38 227.33 90) (unit 1)
  9112. (in_bom yes) (on_board yes)
  9113. (uuid 7d8286f3-8f03-4ac0-a158-4015e96e85f9)
  9114. (property "Reference" "R3" (id 0) (at 243.205 225.425 90))
  9115. (property "Value" "10k" (id 1) (at 248.92 225.425 90))
  9116. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 246.38 227.33 0)
  9117. (effects (font (size 1.27 1.27)) hide)
  9118. )
  9119. (property "Datasheet" "~" (id 3) (at 246.38 227.33 0)
  9120. (effects (font (size 1.27 1.27)) hide)
  9121. )
  9122. (property "LCSC" "C25744" (id 4) (at 246.38 227.33 0)
  9123. (effects (font (size 1.27 1.27)) hide)
  9124. )
  9125. (pin "1" (uuid 777aea64-a8ef-41ac-8bbb-d2606ff919a1))
  9126. (pin "2" (uuid 1c1f5069-164a-4d72-8467-8bf19fcc70d5))
  9127. )
  9128. (symbol (lib_id "power:+3V3") (at 85.725 125.73 0) (unit 1)
  9129. (in_bom yes) (on_board yes) (fields_autoplaced)
  9130. (uuid 7d90343c-df5d-4e2a-8c55-41f4b96572b4)
  9131. (property "Reference" "#PWR0102" (id 0) (at 85.725 129.54 0)
  9132. (effects (font (size 1.27 1.27)) hide)
  9133. )
  9134. (property "Value" "+3V3" (id 1) (at 85.725 120.015 0))
  9135. (property "Footprint" "" (id 2) (at 85.725 125.73 0)
  9136. (effects (font (size 1.27 1.27)) hide)
  9137. )
  9138. (property "Datasheet" "" (id 3) (at 85.725 125.73 0)
  9139. (effects (font (size 1.27 1.27)) hide)
  9140. )
  9141. (pin "1" (uuid 161d27f8-5088-40ca-b8ab-dfa9b12dcf01))
  9142. )
  9143. (symbol (lib_id "power:GND") (at 253.365 83.82 0) (unit 1)
  9144. (in_bom yes) (on_board yes) (fields_autoplaced)
  9145. (uuid 7e675522-980d-4039-bd4f-380988c8241b)
  9146. (property "Reference" "#PWR0161" (id 0) (at 253.365 90.17 0)
  9147. (effects (font (size 1.27 1.27)) hide)
  9148. )
  9149. (property "Value" "GND" (id 1) (at 253.365 88.9 0))
  9150. (property "Footprint" "" (id 2) (at 253.365 83.82 0)
  9151. (effects (font (size 1.27 1.27)) hide)
  9152. )
  9153. (property "Datasheet" "" (id 3) (at 253.365 83.82 0)
  9154. (effects (font (size 1.27 1.27)) hide)
  9155. )
  9156. (pin "1" (uuid 49274288-05c5-4b70-be7b-686e26093608))
  9157. )
  9158. (symbol (lib_id "power:GND") (at 299.72 210.185 0) (unit 1)
  9159. (in_bom yes) (on_board yes) (fields_autoplaced)
  9160. (uuid 82be2627-fd2c-4dfb-8f62-06d81b258de5)
  9161. (property "Reference" "#PWR0132" (id 0) (at 299.72 216.535 0)
  9162. (effects (font (size 1.27 1.27)) hide)
  9163. )
  9164. (property "Value" "GND" (id 1) (at 299.72 214.63 0))
  9165. (property "Footprint" "" (id 2) (at 299.72 210.185 0)
  9166. (effects (font (size 1.27 1.27)) hide)
  9167. )
  9168. (property "Datasheet" "" (id 3) (at 299.72 210.185 0)
  9169. (effects (font (size 1.27 1.27)) hide)
  9170. )
  9171. (pin "1" (uuid 5b69986b-a452-4551-b324-1380be1eb7b6))
  9172. )
  9173. (symbol (lib_id "power:PWR_FLAG") (at 76.2 26.67 0) (unit 1)
  9174. (in_bom yes) (on_board yes) (fields_autoplaced)
  9175. (uuid 84cf7347-7c5d-4209-b07a-70dd1aede0a0)
  9176. (property "Reference" "#FLG0103" (id 0) (at 76.2 24.765 0)
  9177. (effects (font (size 1.27 1.27)) hide)
  9178. )
  9179. (property "Value" "PWR_FLAG" (id 1) (at 76.2 21.59 0))
  9180. (property "Footprint" "" (id 2) (at 76.2 26.67 0)
  9181. (effects (font (size 1.27 1.27)) hide)
  9182. )
  9183. (property "Datasheet" "~" (id 3) (at 76.2 26.67 0)
  9184. (effects (font (size 1.27 1.27)) hide)
  9185. )
  9186. (pin "1" (uuid 92ed90cc-486a-4f3c-b003-259e1a712e73))
  9187. )
  9188. (symbol (lib_id "Device:R_Small") (at 124.46 245.11 180) (unit 1)
  9189. (in_bom yes) (on_board yes) (fields_autoplaced)
  9190. (uuid 86e74120-4efc-4f00-b6ef-f75a90a0224d)
  9191. (property "Reference" "R15" (id 0) (at 127 243.8399 0)
  9192. (effects (font (size 1.27 1.27)) (justify right))
  9193. )
  9194. (property "Value" "22k" (id 1) (at 127 246.3799 0)
  9195. (effects (font (size 1.27 1.27)) (justify right))
  9196. )
  9197. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 124.46 245.11 0)
  9198. (effects (font (size 1.27 1.27)) hide)
  9199. )
  9200. (property "Datasheet" "~" (id 3) (at 124.46 245.11 0)
  9201. (effects (font (size 1.27 1.27)) hide)
  9202. )
  9203. (property "LCSC" "C25768" (id 4) (at 124.46 245.11 0)
  9204. (effects (font (size 1.27 1.27)) hide)
  9205. )
  9206. (pin "1" (uuid e54c6352-1a8d-458c-a067-e4e426dc0715))
  9207. (pin "2" (uuid b6f1211d-b9da-4b23-b8d1-0e00fba6ee54))
  9208. )
  9209. (symbol (lib_id "BlackSASI:HRO-TYPE-C-31-M-12") (at 37.465 79.375 0) (unit 1)
  9210. (in_bom yes) (on_board yes)
  9211. (uuid 86f04292-f18d-4ba6-b563-6527b86da0e6)
  9212. (property "Reference" "USB1" (id 0) (at 21.59 64.77 0)
  9213. (effects (font (size 1.524 1.524)))
  9214. )
  9215. (property "Value" "USB-C" (id 1) (at 31.115 62.23 0)
  9216. (effects (font (size 1.524 1.524)))
  9217. )
  9218. (property "Footprint" "BlackSASI:HRO-TYPE-C-31-M-12" (id 2) (at 37.465 79.375 0)
  9219. (effects (font (size 1.524 1.524)) hide)
  9220. )
  9221. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf" (id 3) (at 37.465 79.375 0)
  9222. (effects (font (size 1.524 1.524)) hide)
  9223. )
  9224. (property "LCSC" "C165948" (id 4) (at 37.465 79.375 0)
  9225. (effects (font (size 1.27 1.27)) hide)
  9226. )
  9227. (pin "1" (uuid aa6bb97b-7b7f-404d-b53c-117d28963596))
  9228. (pin "10" (uuid 84592b2f-fcd8-4669-8ba6-67de5caf3f7f))
  9229. (pin "11" (uuid 4f153b55-5297-4eb7-a3b4-cb77247d8a0d))
  9230. (pin "12" (uuid 653e6f92-d6e6-4bb1-bd2f-8e8967c32e20))
  9231. (pin "13" (uuid 50495777-a3c6-4844-9b28-4989a8ad6b8c))
  9232. (pin "2" (uuid 69b020a0-fcb8-4482-97bb-46bcb5cc1cdd))
  9233. (pin "3" (uuid 04c29dc0-bc13-442c-af2a-3d5a795f2b67))
  9234. (pin "4" (uuid e6253216-5f3d-4fe9-a1a1-3d8888c6b5cd))
  9235. (pin "5" (uuid 20573a87-ba95-4d01-a3e9-f7d807dfcf95))
  9236. (pin "6" (uuid 645ff490-b601-45be-813a-4cd7b32b06af))
  9237. (pin "7" (uuid a72773e3-5bf1-4fcb-8b84-c76d64565f80))
  9238. (pin "8" (uuid 76802395-6337-498f-b1d4-81ccfbd35d2a))
  9239. (pin "9" (uuid d7a0a053-7fbf-4b55-8962-825daed467f1))
  9240. )
  9241. (symbol (lib_id "power:GND") (at 121.285 271.78 0) (unit 1)
  9242. (in_bom yes) (on_board yes) (fields_autoplaced)
  9243. (uuid 87935b97-bc9c-408c-9d3f-f476db1d1c3e)
  9244. (property "Reference" "#PWR0125" (id 0) (at 121.285 278.13 0)
  9245. (effects (font (size 1.27 1.27)) hide)
  9246. )
  9247. (property "Value" "GND" (id 1) (at 121.285 276.225 0))
  9248. (property "Footprint" "" (id 2) (at 121.285 271.78 0)
  9249. (effects (font (size 1.27 1.27)) hide)
  9250. )
  9251. (property "Datasheet" "" (id 3) (at 121.285 271.78 0)
  9252. (effects (font (size 1.27 1.27)) hide)
  9253. )
  9254. (pin "1" (uuid 3482d78e-5e2a-4362-95ae-579ab77face6))
  9255. )
  9256. (symbol (lib_id "Connector:Conn_01x04_Male") (at 333.375 76.835 0) (mirror y) (unit 1)
  9257. (in_bom yes) (on_board yes)
  9258. (uuid 89162790-3651-42a8-bce0-99e7e611c56b)
  9259. (property "Reference" "J8" (id 0) (at 335.28 76.8349 0)
  9260. (effects (font (size 1.27 1.27)) (justify right))
  9261. )
  9262. (property "Value" "Conn_01x04_Male" (id 1) (at 328.422 85.852 0)
  9263. (effects (font (size 1.27 1.27)) (justify right))
  9264. )
  9265. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (id 2) (at 333.375 76.835 0)
  9266. (effects (font (size 1.27 1.27)) hide)
  9267. )
  9268. (property "Datasheet" "~" (id 3) (at 333.375 76.835 0)
  9269. (effects (font (size 1.27 1.27)) hide)
  9270. )
  9271. (pin "1" (uuid 36658c9b-c292-49c9-a1d8-94d21aebadb6))
  9272. (pin "2" (uuid f0cb63ab-3276-4759-a058-91e14e4c071a))
  9273. (pin "3" (uuid 74c20067-0e4e-40f0-be94-61aead630d77))
  9274. (pin "4" (uuid 034de6b2-6921-4928-9398-777064bae273))
  9275. )
  9276. (symbol (lib_id "power:GND") (at 160.655 50.8 0) (unit 1)
  9277. (in_bom yes) (on_board yes) (fields_autoplaced)
  9278. (uuid 8b760edd-abc6-4617-a1ce-1d0bbacea7f1)
  9279. (property "Reference" "#PWR0165" (id 0) (at 160.655 57.15 0)
  9280. (effects (font (size 1.27 1.27)) hide)
  9281. )
  9282. (property "Value" "GND" (id 1) (at 160.655 55.245 0))
  9283. (property "Footprint" "" (id 2) (at 160.655 50.8 0)
  9284. (effects (font (size 1.27 1.27)) hide)
  9285. )
  9286. (property "Datasheet" "" (id 3) (at 160.655 50.8 0)
  9287. (effects (font (size 1.27 1.27)) hide)
  9288. )
  9289. (pin "1" (uuid 772b3cd5-141b-4ad0-b7a6-98de0f46b094))
  9290. )
  9291. (symbol (lib_id "power:GND") (at 321.31 190.5 0) (unit 1)
  9292. (in_bom yes) (on_board yes) (fields_autoplaced)
  9293. (uuid 8fd0aada-86f9-4874-8ddb-e962a9219745)
  9294. (property "Reference" "#PWR0182" (id 0) (at 321.31 196.85 0)
  9295. (effects (font (size 1.27 1.27)) hide)
  9296. )
  9297. (property "Value" "GND" (id 1) (at 321.31 195.58 0))
  9298. (property "Footprint" "" (id 2) (at 321.31 190.5 0)
  9299. (effects (font (size 1.27 1.27)) hide)
  9300. )
  9301. (property "Datasheet" "" (id 3) (at 321.31 190.5 0)
  9302. (effects (font (size 1.27 1.27)) hide)
  9303. )
  9304. (pin "1" (uuid aacf9a4f-b953-49a6-8188-23070e484ba4))
  9305. )
  9306. (symbol (lib_id "Device:C_Small") (at 252.73 186.69 0) (unit 1)
  9307. (in_bom yes) (on_board yes)
  9308. (uuid 902870a8-2337-480a-adc3-eb302ac97a9f)
  9309. (property "Reference" "C26" (id 0) (at 248.285 184.785 0)
  9310. (effects (font (size 1.27 1.27)) (justify left))
  9311. )
  9312. (property "Value" "47uF" (id 1) (at 247.65 189.23 0)
  9313. (effects (font (size 1.27 1.27)) (justify left))
  9314. )
  9315. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 252.73 186.69 0)
  9316. (effects (font (size 1.27 1.27)) hide)
  9317. )
  9318. (property "Datasheet" "~" (id 3) (at 252.73 186.69 0)
  9319. (effects (font (size 1.27 1.27)) hide)
  9320. )
  9321. (property "LCSC" "C16780" (id 4) (at 252.73 186.69 0)
  9322. (effects (font (size 1.27 1.27)) hide)
  9323. )
  9324. (pin "1" (uuid 1cff5966-0ade-487d-94a6-166296ed92b3))
  9325. (pin "2" (uuid 072fffce-4d97-4aa6-bdd2-5cb39ea1b8de))
  9326. )
  9327. (symbol (lib_id "power:GND") (at 184.785 197.485 0) (unit 1)
  9328. (in_bom yes) (on_board yes) (fields_autoplaced)
  9329. (uuid 9167de5f-0738-4dd7-8243-d54eaf77c3f1)
  9330. (property "Reference" "#PWR0146" (id 0) (at 184.785 203.835 0)
  9331. (effects (font (size 1.27 1.27)) hide)
  9332. )
  9333. (property "Value" "GND" (id 1) (at 184.785 201.93 0))
  9334. (property "Footprint" "" (id 2) (at 184.785 197.485 0)
  9335. (effects (font (size 1.27 1.27)) hide)
  9336. )
  9337. (property "Datasheet" "" (id 3) (at 184.785 197.485 0)
  9338. (effects (font (size 1.27 1.27)) hide)
  9339. )
  9340. (pin "1" (uuid 119dc4d1-4e0f-40f7-b1dc-2f36d5229164))
  9341. )
  9342. (symbol (lib_id "Device:C_Small") (at 128.27 266.065 0) (unit 1)
  9343. (in_bom yes) (on_board yes) (fields_autoplaced)
  9344. (uuid 91867f1b-19fd-458c-894f-d6647bcfa8d1)
  9345. (property "Reference" "C4" (id 0) (at 131.445 264.8012 0)
  9346. (effects (font (size 1.27 1.27)) (justify left))
  9347. )
  9348. (property "Value" "12pF" (id 1) (at 131.445 267.3412 0)
  9349. (effects (font (size 1.27 1.27)) (justify left))
  9350. )
  9351. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 128.27 266.065 0)
  9352. (effects (font (size 1.27 1.27)) hide)
  9353. )
  9354. (property "Datasheet" "~" (id 3) (at 128.27 266.065 0)
  9355. (effects (font (size 1.27 1.27)) hide)
  9356. )
  9357. (property "LCSC" "C1547" (id 4) (at 128.27 266.065 0)
  9358. (effects (font (size 1.27 1.27)) hide)
  9359. )
  9360. (pin "1" (uuid cd379d5d-639c-4726-8ebc-539c35f31371))
  9361. (pin "2" (uuid 29a8e91d-8874-4c88-8079-a6906ec3f22e))
  9362. )
  9363. (symbol (lib_id "Device:C_Small") (at 40.64 140.335 0) (unit 1)
  9364. (in_bom yes) (on_board yes) (fields_autoplaced)
  9365. (uuid 9195254e-c84f-4881-a358-d70fd08e8cee)
  9366. (property "Reference" "C25" (id 0) (at 43.815 139.0712 0)
  9367. (effects (font (size 1.27 1.27)) (justify left))
  9368. )
  9369. (property "Value" "100nF" (id 1) (at 43.815 141.6112 0)
  9370. (effects (font (size 1.27 1.27)) (justify left))
  9371. )
  9372. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 40.64 140.335 0)
  9373. (effects (font (size 1.27 1.27)) hide)
  9374. )
  9375. (property "Datasheet" "~" (id 3) (at 40.64 140.335 0)
  9376. (effects (font (size 1.27 1.27)) hide)
  9377. )
  9378. (property "LCSC" "C1525" (id 4) (at 40.64 140.335 0)
  9379. (effects (font (size 1.27 1.27)) hide)
  9380. )
  9381. (pin "1" (uuid 9833562b-aeff-4532-a790-6dd4c3455d0d))
  9382. (pin "2" (uuid e645579d-e957-4371-8318-53d4ee65dae0))
  9383. )
  9384. (symbol (lib_id "Device:R_Small") (at 327.025 234.315 180) (unit 1)
  9385. (in_bom yes) (on_board yes)
  9386. (uuid 939b8feb-f572-4a68-b6a1-6afb32eca472)
  9387. (property "Reference" "R8" (id 0) (at 325.12 237.49 90))
  9388. (property "Value" "100k" (id 1) (at 325.12 231.775 90))
  9389. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 327.025 234.315 0)
  9390. (effects (font (size 1.27 1.27)) hide)
  9391. )
  9392. (property "Datasheet" "~" (id 3) (at 327.025 234.315 0)
  9393. (effects (font (size 1.27 1.27)) hide)
  9394. )
  9395. (property "LCSC" "C25741" (id 4) (at 327.025 234.315 0)
  9396. (effects (font (size 1.27 1.27)) hide)
  9397. )
  9398. (pin "1" (uuid d329782a-e54c-4b3a-87f8-caf36db449f1))
  9399. (pin "2" (uuid 3a028635-d1c2-4098-9cce-8065c5eb1bd5))
  9400. )
  9401. (symbol (lib_id "Device:Polyfuse") (at 73.025 31.75 270) (unit 1)
  9402. (in_bom yes) (on_board yes)
  9403. (uuid 93d50ca1-8521-4e36-8d04-92ceb139f379)
  9404. (property "Reference" "F2" (id 0) (at 73.025 29.21 90))
  9405. (property "Value" "Polyfuse 1.8A" (id 1) (at 73.025 34.29 90))
  9406. (property "Footprint" "BlackSASI:Fuse_1206_3216Metric" (id 2) (at 67.945 33.02 0)
  9407. (effects (font (size 1.27 1.27)) (justify left) hide)
  9408. )
  9409. (property "Datasheet" "~" (id 3) (at 73.025 31.75 0)
  9410. (effects (font (size 1.27 1.27)) hide)
  9411. )
  9412. (property "LCSC" "C70082" (id 4) (at 34.925 -2.54 0)
  9413. (effects (font (size 1.27 1.27)) hide)
  9414. )
  9415. (property "MOUSER" "" (id 5) (at 34.925 -2.54 0)
  9416. (effects (font (size 1.27 1.27)) hide)
  9417. )
  9418. (property "MPN" "" (id 6) (at 34.925 -2.54 0)
  9419. (effects (font (size 1.27 1.27)) hide)
  9420. )
  9421. (pin "1" (uuid f94936df-b3cc-4ae3-90e3-3a8a1a2ce2df))
  9422. (pin "2" (uuid 74a31a94-0550-4982-acb2-6bd8147e4316))
  9423. )
  9424. (symbol (lib_id "Device:C_Small") (at 367.03 207.01 0) (unit 1)
  9425. (in_bom yes) (on_board yes) (fields_autoplaced)
  9426. (uuid 9463eeb1-0dbf-480f-8994-b4a956db6a0c)
  9427. (property "Reference" "C8" (id 0) (at 369.57 205.7462 0)
  9428. (effects (font (size 1.27 1.27)) (justify left))
  9429. )
  9430. (property "Value" "4.7uF" (id 1) (at 369.57 208.2862 0)
  9431. (effects (font (size 1.27 1.27)) (justify left))
  9432. )
  9433. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 367.03 207.01 0)
  9434. (effects (font (size 1.27 1.27)) hide)
  9435. )
  9436. (property "Datasheet" "~" (id 3) (at 367.03 207.01 0)
  9437. (effects (font (size 1.27 1.27)) hide)
  9438. )
  9439. (property "LCSC" "C19666" (id 4) (at 367.03 207.01 0)
  9440. (effects (font (size 1.27 1.27)) hide)
  9441. )
  9442. (pin "1" (uuid 42dd0d0c-e40d-4b1f-a4e6-e7471ea69d3b))
  9443. (pin "2" (uuid 9240b6e3-e955-4fab-a78b-b1c2c479b0b4))
  9444. )
  9445. (symbol (lib_id "power:+3V3") (at 191.77 198.12 0) (unit 1)
  9446. (in_bom yes) (on_board yes) (fields_autoplaced)
  9447. (uuid 96b442d9-76ca-4741-a8ab-96e978b1b872)
  9448. (property "Reference" "#PWR0145" (id 0) (at 191.77 201.93 0)
  9449. (effects (font (size 1.27 1.27)) hide)
  9450. )
  9451. (property "Value" "+3V3" (id 1) (at 191.77 193.04 0))
  9452. (property "Footprint" "" (id 2) (at 191.77 198.12 0)
  9453. (effects (font (size 1.27 1.27)) hide)
  9454. )
  9455. (property "Datasheet" "" (id 3) (at 191.77 198.12 0)
  9456. (effects (font (size 1.27 1.27)) hide)
  9457. )
  9458. (pin "1" (uuid 73afcb45-d466-4845-b1f1-46b9ab6b16e9))
  9459. )
  9460. (symbol (lib_id "power:GND") (at 256.54 233.045 0) (unit 1)
  9461. (in_bom yes) (on_board yes) (fields_autoplaced)
  9462. (uuid 96ceef15-1888-490c-bea2-dfce33fdbbec)
  9463. (property "Reference" "#PWR0174" (id 0) (at 256.54 239.395 0)
  9464. (effects (font (size 1.27 1.27)) hide)
  9465. )
  9466. (property "Value" "GND" (id 1) (at 256.54 238.125 0))
  9467. (property "Footprint" "" (id 2) (at 256.54 233.045 0)
  9468. (effects (font (size 1.27 1.27)) hide)
  9469. )
  9470. (property "Datasheet" "" (id 3) (at 256.54 233.045 0)
  9471. (effects (font (size 1.27 1.27)) hide)
  9472. )
  9473. (pin "1" (uuid c3ea20ac-edca-4dfd-96d0-d7dfe1e2acd4))
  9474. )
  9475. (symbol (lib_id "Device:C_Small") (at 288.29 34.925 0) (unit 1)
  9476. (in_bom yes) (on_board yes)
  9477. (uuid 9749136a-9a53-489e-a7af-7ebdb9927b44)
  9478. (property "Reference" "C18" (id 0) (at 290.195 33.655 0)
  9479. (effects (font (size 1.27 1.27)) (justify left))
  9480. )
  9481. (property "Value" "100nF" (id 1) (at 290.195 36.83 0)
  9482. (effects (font (size 1.27 1.27)) (justify left))
  9483. )
  9484. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 288.29 34.925 0)
  9485. (effects (font (size 1.27 1.27)) hide)
  9486. )
  9487. (property "Datasheet" "~" (id 3) (at 288.29 34.925 0)
  9488. (effects (font (size 1.27 1.27)) hide)
  9489. )
  9490. (property "LCSC" "C1525" (id 4) (at 288.29 34.925 0)
  9491. (effects (font (size 1.27 1.27)) hide)
  9492. )
  9493. (pin "1" (uuid 83403af6-7936-4c3a-9270-64eae39c6697))
  9494. (pin "2" (uuid 5df30c6a-3314-4744-896b-a79fb2e188f9))
  9495. )
  9496. (symbol (lib_id "Device:R_Small") (at 98.425 125.73 0) (unit 1)
  9497. (in_bom yes) (on_board yes) (fields_autoplaced)
  9498. (uuid 97c78aa9-fc91-46de-b4f8-820f16918f47)
  9499. (property "Reference" "R5" (id 0) (at 100.965 124.4599 0)
  9500. (effects (font (size 1.27 1.27)) (justify left))
  9501. )
  9502. (property "Value" "0" (id 1) (at 100.965 126.9999 0)
  9503. (effects (font (size 1.27 1.27)) (justify left))
  9504. )
  9505. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 98.425 125.73 0)
  9506. (effects (font (size 1.27 1.27)) hide)
  9507. )
  9508. (property "Datasheet" "~" (id 3) (at 98.425 125.73 0)
  9509. (effects (font (size 1.27 1.27)) hide)
  9510. )
  9511. (property "LCSC" "C21189" (id 4) (at 98.425 125.73 0)
  9512. (effects (font (size 1.27 1.27)) hide)
  9513. )
  9514. (pin "1" (uuid 65390cfd-edc4-4969-a2e0-62fa6b76148f))
  9515. (pin "2" (uuid 364feadd-831e-4d04-bb01-7d3b8f480337))
  9516. )
  9517. (symbol (lib_id "power:+5VP") (at 81.28 23.495 0) (unit 1)
  9518. (in_bom yes) (on_board yes) (fields_autoplaced)
  9519. (uuid 9807a2ba-6b8f-4620-8e15-9593ee3f0a70)
  9520. (property "Reference" "#PWR0123" (id 0) (at 81.28 27.305 0)
  9521. (effects (font (size 1.27 1.27)) hide)
  9522. )
  9523. (property "Value" "+5VP" (id 1) (at 81.28 18.415 0))
  9524. (property "Footprint" "" (id 2) (at 81.28 23.495 0)
  9525. (effects (font (size 1.27 1.27)) hide)
  9526. )
  9527. (property "Datasheet" "" (id 3) (at 81.28 23.495 0)
  9528. (effects (font (size 1.27 1.27)) hide)
  9529. )
  9530. (pin "1" (uuid 765d9df7-3707-4564-bfa5-e3680f470eb0))
  9531. )
  9532. (symbol (lib_id "Device:Polyfuse") (at 73.025 40.64 270) (unit 1)
  9533. (in_bom yes) (on_board yes)
  9534. (uuid 995dccf6-3693-490b-9c7e-61ccc15970c4)
  9535. (property "Reference" "F3" (id 0) (at 73.025 38.1 90))
  9536. (property "Value" "Polyfuse 1.8A" (id 1) (at 73.025 43.18 90))
  9537. (property "Footprint" "BlackSASI:Fuse_1206_3216Metric" (id 2) (at 67.945 41.91 0)
  9538. (effects (font (size 1.27 1.27)) (justify left) hide)
  9539. )
  9540. (property "Datasheet" "~" (id 3) (at 73.025 40.64 0)
  9541. (effects (font (size 1.27 1.27)) hide)
  9542. )
  9543. (property "LCSC" "C70082" (id 4) (at 34.925 6.35 0)
  9544. (effects (font (size 1.27 1.27)) hide)
  9545. )
  9546. (property "MOUSER" "" (id 5) (at 34.925 6.35 0)
  9547. (effects (font (size 1.27 1.27)) hide)
  9548. )
  9549. (property "MPN" "" (id 6) (at 34.925 6.35 0)
  9550. (effects (font (size 1.27 1.27)) hide)
  9551. )
  9552. (pin "1" (uuid 04c2d571-6510-4f6a-b565-822d2c95693c))
  9553. (pin "2" (uuid 3d8c6145-2126-4cd8-a22d-6442c281a440))
  9554. )
  9555. (symbol (lib_id "Device:C_Small") (at 102.235 36.195 0) (unit 1)
  9556. (in_bom yes) (on_board yes)
  9557. (uuid 99fdb4bd-68ed-4314-9b79-3ac0ea3d3127)
  9558. (property "Reference" "C20" (id 0) (at 97.79 34.29 0)
  9559. (effects (font (size 1.27 1.27)) (justify left))
  9560. )
  9561. (property "Value" "100nF" (id 1) (at 95.885 38.735 0)
  9562. (effects (font (size 1.27 1.27)) (justify left))
  9563. )
  9564. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 102.235 36.195 0)
  9565. (effects (font (size 1.27 1.27)) hide)
  9566. )
  9567. (property "Datasheet" "~" (id 3) (at 102.235 36.195 0)
  9568. (effects (font (size 1.27 1.27)) hide)
  9569. )
  9570. (property "LCSC" "C1525" (id 4) (at 102.235 36.195 0)
  9571. (effects (font (size 1.27 1.27)) hide)
  9572. )
  9573. (pin "1" (uuid b7e35920-8a9f-4f9b-9fdd-8aba8561b868))
  9574. (pin "2" (uuid 0cddaad4-9c05-4a3d-94d4-9c1aa86a59ce))
  9575. )
  9576. (symbol (lib_id "Device:C_Small") (at 137.795 36.195 0) (unit 1)
  9577. (in_bom yes) (on_board yes)
  9578. (uuid 9a996f71-54a0-4a19-b12b-85f84b1158b8)
  9579. (property "Reference" "C23" (id 0) (at 138.43 34.29 0)
  9580. (effects (font (size 1.27 1.27)) (justify left))
  9581. )
  9582. (property "Value" "100nF" (id 1) (at 138.43 38.735 0)
  9583. (effects (font (size 1.27 1.27)) (justify left))
  9584. )
  9585. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 137.795 36.195 0)
  9586. (effects (font (size 1.27 1.27)) hide)
  9587. )
  9588. (property "Datasheet" "~" (id 3) (at 137.795 36.195 0)
  9589. (effects (font (size 1.27 1.27)) hide)
  9590. )
  9591. (property "LCSC" "C1525" (id 4) (at 137.795 36.195 0)
  9592. (effects (font (size 1.27 1.27)) hide)
  9593. )
  9594. (pin "1" (uuid cca88fbc-366e-43b5-993f-104850cb46e3))
  9595. (pin "2" (uuid 1a466611-1322-4b0a-8352-257b4063b7cc))
  9596. )
  9597. (symbol (lib_id "Device:Crystal") (at 121.92 261.62 0) (unit 1)
  9598. (in_bom yes) (on_board yes)
  9599. (uuid 9a9ac252-65e8-4c95-88bd-7b25ea744058)
  9600. (property "Reference" "Y1" (id 0) (at 121.92 253.365 0))
  9601. (property "Value" "32kHz" (id 1) (at 121.92 278.765 0))
  9602. (property "Footprint" "BlackSASI:Crystal_SMD_3215-2Pin_3.2x1.5mm" (id 2) (at 121.92 261.62 0)
  9603. (effects (font (size 1.27 1.27)) hide)
  9604. )
  9605. (property "Datasheet" "~" (id 3) (at 121.92 261.62 0)
  9606. (effects (font (size 1.27 1.27)) hide)
  9607. )
  9608. (property "LCSC" "C32346" (id 4) (at 121.92 261.62 0)
  9609. (effects (font (size 1.27 1.27)) hide)
  9610. )
  9611. (pin "1" (uuid 4c52122b-6c67-4801-b279-905651b27c15))
  9612. (pin "2" (uuid b5e5f3ce-cd07-4573-a1dd-e7cbf3af6fc0))
  9613. )
  9614. (symbol (lib_id "power:GND") (at 142.24 80.01 0) (unit 1)
  9615. (in_bom yes) (on_board yes) (fields_autoplaced)
  9616. (uuid 9be219ef-6549-49f7-b496-d229ba0af830)
  9617. (property "Reference" "#PWR0179" (id 0) (at 142.24 86.36 0)
  9618. (effects (font (size 1.27 1.27)) hide)
  9619. )
  9620. (property "Value" "GND" (id 1) (at 142.24 85.09 0))
  9621. (property "Footprint" "" (id 2) (at 142.24 80.01 0)
  9622. (effects (font (size 1.27 1.27)) hide)
  9623. )
  9624. (property "Datasheet" "" (id 3) (at 142.24 80.01 0)
  9625. (effects (font (size 1.27 1.27)) hide)
  9626. )
  9627. (pin "1" (uuid 29641b8d-2c56-4c8a-a7c7-b7503197a258))
  9628. )
  9629. (symbol (lib_id "Device:C_Small") (at 321.31 187.325 0) (unit 1)
  9630. (in_bom yes) (on_board yes)
  9631. (uuid 9d613ade-655f-4bcc-8786-c8dae4951434)
  9632. (property "Reference" "C27" (id 0) (at 316.865 185.42 0)
  9633. (effects (font (size 1.27 1.27)) (justify left))
  9634. )
  9635. (property "Value" "47uF" (id 1) (at 316.23 189.865 0)
  9636. (effects (font (size 1.27 1.27)) (justify left))
  9637. )
  9638. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 321.31 187.325 0)
  9639. (effects (font (size 1.27 1.27)) hide)
  9640. )
  9641. (property "Datasheet" "~" (id 3) (at 321.31 187.325 0)
  9642. (effects (font (size 1.27 1.27)) hide)
  9643. )
  9644. (property "LCSC" "C16780" (id 4) (at 321.31 187.325 0)
  9645. (effects (font (size 1.27 1.27)) hide)
  9646. )
  9647. (pin "1" (uuid 674846bc-8800-477f-ac0b-2b284f1bd561))
  9648. (pin "2" (uuid e41a8926-6bdc-46f1-9ddf-ccd8abcfd954))
  9649. )
  9650. (symbol (lib_id "Device:Polyfuse") (at 66.675 67.945 270) (unit 1)
  9651. (in_bom yes) (on_board yes)
  9652. (uuid a3558b86-d7e8-4faf-8d6e-404057fc1473)
  9653. (property "Reference" "F1" (id 0) (at 66.675 65.405 90))
  9654. (property "Value" "Polyfuse 1.8A" (id 1) (at 66.675 70.485 90))
  9655. (property "Footprint" "BlackSASI:Fuse_1206_3216Metric" (id 2) (at 61.595 69.215 0)
  9656. (effects (font (size 1.27 1.27)) (justify left) hide)
  9657. )
  9658. (property "Datasheet" "~" (id 3) (at 66.675 67.945 0)
  9659. (effects (font (size 1.27 1.27)) hide)
  9660. )
  9661. (property "LCSC" "C70082" (id 4) (at 28.575 33.655 0)
  9662. (effects (font (size 1.27 1.27)) hide)
  9663. )
  9664. (property "MOUSER" "" (id 5) (at 28.575 33.655 0)
  9665. (effects (font (size 1.27 1.27)) hide)
  9666. )
  9667. (property "MPN" "" (id 6) (at 28.575 33.655 0)
  9668. (effects (font (size 1.27 1.27)) hide)
  9669. )
  9670. (pin "1" (uuid 1bc1102e-907f-4e74-9064-56230acc1ded))
  9671. (pin "2" (uuid 7e8809d6-8a00-4246-9980-cbccce73e5a4))
  9672. )
  9673. (symbol (lib_id "Device:C_Small") (at 222.25 34.925 0) (unit 1)
  9674. (in_bom yes) (on_board yes) (fields_autoplaced)
  9675. (uuid a8e9cfa7-6e96-49b5-b314-ba901aa191a6)
  9676. (property "Reference" "C12" (id 0) (at 225.425 33.6612 0)
  9677. (effects (font (size 1.27 1.27)) (justify left))
  9678. )
  9679. (property "Value" "100nF" (id 1) (at 225.425 36.2012 0)
  9680. (effects (font (size 1.27 1.27)) (justify left))
  9681. )
  9682. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 222.25 34.925 0)
  9683. (effects (font (size 1.27 1.27)) hide)
  9684. )
  9685. (property "Datasheet" "~" (id 3) (at 222.25 34.925 0)
  9686. (effects (font (size 1.27 1.27)) hide)
  9687. )
  9688. (property "LCSC" "C1525" (id 4) (at 222.25 34.925 0)
  9689. (effects (font (size 1.27 1.27)) hide)
  9690. )
  9691. (pin "1" (uuid e298299d-f3db-4729-86a2-f5f589a00a6d))
  9692. (pin "2" (uuid e7257b42-4ac1-4ab1-97c3-f82d23b24e01))
  9693. )
  9694. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 386.08 24.765 0) (unit 1)
  9695. (in_bom yes) (on_board yes) (fields_autoplaced)
  9696. (uuid aa01b1ea-3c4d-4a61-a64b-a1f0c33e5e16)
  9697. (property "Reference" "H1" (id 0) (at 389.255 22.2249 0)
  9698. (effects (font (size 1.27 1.27)) (justify left))
  9699. )
  9700. (property "Value" "Hole" (id 1) (at 389.255 24.7649 0)
  9701. (effects (font (size 1.27 1.27)) (justify left))
  9702. )
  9703. (property "Footprint" "MountingHole:MountingHole_2.5mm_Pad_TopBottom" (id 2) (at 386.08 24.765 0)
  9704. (effects (font (size 1.27 1.27)) hide)
  9705. )
  9706. (property "Datasheet" "~" (id 3) (at 386.08 24.765 0)
  9707. (effects (font (size 1.27 1.27)) hide)
  9708. )
  9709. (property "LCSC" "NM" (id 4) (at 386.08 24.765 0)
  9710. (effects (font (size 1.27 1.27)) hide)
  9711. )
  9712. (pin "1" (uuid 3bebea34-1e97-4dd0-9b9b-e63da1ffcfac))
  9713. )
  9714. (symbol (lib_id "power:GND") (at 203.2 232.41 0) (unit 1)
  9715. (in_bom yes) (on_board yes) (fields_autoplaced)
  9716. (uuid aa999da8-d2ec-41b8-aa3f-f2ee43015816)
  9717. (property "Reference" "#PWR0149" (id 0) (at 203.2 238.76 0)
  9718. (effects (font (size 1.27 1.27)) hide)
  9719. )
  9720. (property "Value" "GND" (id 1) (at 203.2 237.49 0))
  9721. (property "Footprint" "" (id 2) (at 203.2 232.41 0)
  9722. (effects (font (size 1.27 1.27)) hide)
  9723. )
  9724. (property "Datasheet" "" (id 3) (at 203.2 232.41 0)
  9725. (effects (font (size 1.27 1.27)) hide)
  9726. )
  9727. (pin "1" (uuid 5bbae2b4-9a6b-462d-9022-fb98cd8fcb2a))
  9728. )
  9729. (symbol (lib_id "Device:C_Small") (at 266.7 34.925 0) (unit 1)
  9730. (in_bom yes) (on_board yes) (fields_autoplaced)
  9731. (uuid ae70a957-4157-4494-969d-14ba832e5284)
  9732. (property "Reference" "C16" (id 0) (at 269.875 33.6612 0)
  9733. (effects (font (size 1.27 1.27)) (justify left))
  9734. )
  9735. (property "Value" "100nF" (id 1) (at 269.875 36.2012 0)
  9736. (effects (font (size 1.27 1.27)) (justify left))
  9737. )
  9738. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 266.7 34.925 0)
  9739. (effects (font (size 1.27 1.27)) hide)
  9740. )
  9741. (property "Datasheet" "~" (id 3) (at 266.7 34.925 0)
  9742. (effects (font (size 1.27 1.27)) hide)
  9743. )
  9744. (property "LCSC" "C1525" (id 4) (at 266.7 34.925 0)
  9745. (effects (font (size 1.27 1.27)) hide)
  9746. )
  9747. (pin "1" (uuid 0b7745d0-7f2b-4347-ad69-ac81b7acc03e))
  9748. (pin "2" (uuid 9df2d500-449c-4129-b837-adbf8cc5b755))
  9749. )
  9750. (symbol (lib_id "Device:R_Small") (at 321.945 224.155 90) (unit 1)
  9751. (in_bom yes) (on_board yes)
  9752. (uuid b1e98df5-faad-41fb-848e-12f787b6dfbc)
  9753. (property "Reference" "R4" (id 0) (at 318.77 222.25 90))
  9754. (property "Value" "220" (id 1) (at 325.12 222.25 90))
  9755. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 321.945 224.155 0)
  9756. (effects (font (size 1.27 1.27)) hide)
  9757. )
  9758. (property "Datasheet" "~" (id 3) (at 321.945 224.155 0)
  9759. (effects (font (size 1.27 1.27)) hide)
  9760. )
  9761. (property "LCSC" "C25091" (id 4) (at 321.945 224.155 0)
  9762. (effects (font (size 1.27 1.27)) hide)
  9763. )
  9764. (pin "1" (uuid 0c3796de-2dfb-444f-a3b4-8c6e1bc1e15f))
  9765. (pin "2" (uuid 9b79f1cd-43da-4f6e-9569-9e971eb75823))
  9766. )
  9767. (symbol (lib_id "power:GND") (at 210.82 42.545 0) (unit 1)
  9768. (in_bom yes) (on_board yes) (fields_autoplaced)
  9769. (uuid b41b1391-0de3-4001-a776-4ff0131c562b)
  9770. (property "Reference" "#PWR0152" (id 0) (at 210.82 48.895 0)
  9771. (effects (font (size 1.27 1.27)) hide)
  9772. )
  9773. (property "Value" "GND" (id 1) (at 210.82 48.26 0))
  9774. (property "Footprint" "" (id 2) (at 210.82 42.545 0)
  9775. (effects (font (size 1.27 1.27)) hide)
  9776. )
  9777. (property "Datasheet" "" (id 3) (at 210.82 42.545 0)
  9778. (effects (font (size 1.27 1.27)) hide)
  9779. )
  9780. (pin "1" (uuid 716179ad-9ce9-4d68-9450-289bb03f9dca))
  9781. )
  9782. (symbol (lib_id "power:+5VP") (at 160.655 24.13 0) (unit 1)
  9783. (in_bom yes) (on_board yes) (fields_autoplaced)
  9784. (uuid b737f173-7eea-497b-9670-594120f82083)
  9785. (property "Reference" "#PWR0164" (id 0) (at 160.655 27.94 0)
  9786. (effects (font (size 1.27 1.27)) hide)
  9787. )
  9788. (property "Value" "+5VP" (id 1) (at 160.655 19.05 0))
  9789. (property "Footprint" "" (id 2) (at 160.655 24.13 0)
  9790. (effects (font (size 1.27 1.27)) hide)
  9791. )
  9792. (property "Datasheet" "" (id 3) (at 160.655 24.13 0)
  9793. (effects (font (size 1.27 1.27)) hide)
  9794. )
  9795. (pin "1" (uuid fdae803f-30d5-4fb5-8942-d92b8836d646))
  9796. )
  9797. (symbol (lib_id "Device:R_Small") (at 131.445 240.665 270) (unit 1)
  9798. (in_bom yes) (on_board yes) (fields_autoplaced)
  9799. (uuid ba772bf8-a47c-4cf1-9acd-c74bee5aca41)
  9800. (property "Reference" "R16" (id 0) (at 131.445 234.95 90))
  9801. (property "Value" "10k" (id 1) (at 131.445 237.49 90))
  9802. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 131.445 240.665 0)
  9803. (effects (font (size 1.27 1.27)) hide)
  9804. )
  9805. (property "Datasheet" "~" (id 3) (at 131.445 240.665 0)
  9806. (effects (font (size 1.27 1.27)) hide)
  9807. )
  9808. (property "LCSC" "C25744" (id 4) (at 131.445 240.665 0)
  9809. (effects (font (size 1.27 1.27)) hide)
  9810. )
  9811. (pin "1" (uuid 5342b988-37d1-487e-9445-9598fefb3af1))
  9812. (pin "2" (uuid 730db734-3764-427c-a131-277db6696b0b))
  9813. )
  9814. (symbol (lib_id "Device:L_Small") (at 98.425 120.015 0) (unit 1)
  9815. (in_bom yes) (on_board yes) (fields_autoplaced)
  9816. (uuid c0fd9f03-f383-48be-9ec6-4434150b361a)
  9817. (property "Reference" "L1" (id 0) (at 99.695 118.7449 0)
  9818. (effects (font (size 1.27 1.27)) (justify left))
  9819. )
  9820. (property "Value" "4.7uH" (id 1) (at 99.695 121.2849 0)
  9821. (effects (font (size 1.27 1.27)) (justify left))
  9822. )
  9823. (property "Footprint" "Inductor_SMD:L_0603_1608Metric" (id 2) (at 98.425 120.015 0)
  9824. (effects (font (size 1.27 1.27)) hide)
  9825. )
  9826. (property "Datasheet" "~" (id 3) (at 98.425 120.015 0)
  9827. (effects (font (size 1.27 1.27)) hide)
  9828. )
  9829. (property "LCSC" "C1034" (id 4) (at 98.425 120.015 0)
  9830. (effects (font (size 1.27 1.27)) hide)
  9831. )
  9832. (pin "1" (uuid b36d7ead-a4ad-4595-a777-83703940c2a8))
  9833. (pin "2" (uuid dc326ef2-4bd8-4fbf-ba67-1d83a0cfb5a8))
  9834. )
  9835. (symbol (lib_id "Device:C_Small") (at 259.715 186.69 0) (unit 1)
  9836. (in_bom yes) (on_board yes)
  9837. (uuid c2892bdd-f368-4b8e-a9dd-e62241b06278)
  9838. (property "Reference" "C5" (id 0) (at 260.985 184.658 0)
  9839. (effects (font (size 1.27 1.27)) (justify left))
  9840. )
  9841. (property "Value" "4.7uF" (id 1) (at 261.112 189.23 0)
  9842. (effects (font (size 1.27 1.27)) (justify left))
  9843. )
  9844. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 259.715 186.69 0)
  9845. (effects (font (size 1.27 1.27)) hide)
  9846. )
  9847. (property "Datasheet" "~" (id 3) (at 259.715 186.69 0)
  9848. (effects (font (size 1.27 1.27)) hide)
  9849. )
  9850. (property "LCSC" "C19666" (id 4) (at 259.715 186.69 0)
  9851. (effects (font (size 1.27 1.27)) hide)
  9852. )
  9853. (pin "1" (uuid 4f6af768-516e-467e-acd6-a8a19f17f8a4))
  9854. (pin "2" (uuid 2785efbe-bd83-4bb2-a060-9466b51cf39a))
  9855. )
  9856. (symbol (lib_id "power:GND") (at 327.025 190.5 0) (unit 1)
  9857. (in_bom yes) (on_board yes) (fields_autoplaced)
  9858. (uuid c2bc585a-243c-492e-89c2-a1947e648a39)
  9859. (property "Reference" "#PWR0128" (id 0) (at 327.025 196.85 0)
  9860. (effects (font (size 1.27 1.27)) hide)
  9861. )
  9862. (property "Value" "GND" (id 1) (at 327.025 195.58 0))
  9863. (property "Footprint" "" (id 2) (at 327.025 190.5 0)
  9864. (effects (font (size 1.27 1.27)) hide)
  9865. )
  9866. (property "Datasheet" "" (id 3) (at 327.025 190.5 0)
  9867. (effects (font (size 1.27 1.27)) hide)
  9868. )
  9869. (pin "1" (uuid 53c5fcd9-526f-4412-98c0-9b11e67bf8be))
  9870. )
  9871. (symbol (lib_id "Device:C_Small") (at 243.84 34.925 0) (unit 1)
  9872. (in_bom yes) (on_board yes) (fields_autoplaced)
  9873. (uuid c35396de-fee9-460e-8212-6f0cde0619f2)
  9874. (property "Reference" "C14" (id 0) (at 247.015 33.6612 0)
  9875. (effects (font (size 1.27 1.27)) (justify left))
  9876. )
  9877. (property "Value" "100nF" (id 1) (at 247.015 36.2012 0)
  9878. (effects (font (size 1.27 1.27)) (justify left))
  9879. )
  9880. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 243.84 34.925 0)
  9881. (effects (font (size 1.27 1.27)) hide)
  9882. )
  9883. (property "Datasheet" "~" (id 3) (at 243.84 34.925 0)
  9884. (effects (font (size 1.27 1.27)) hide)
  9885. )
  9886. (property "LCSC" "C1525" (id 4) (at 243.84 34.925 0)
  9887. (effects (font (size 1.27 1.27)) hide)
  9888. )
  9889. (pin "1" (uuid dbd238a2-7761-4a87-b315-85b9a2bb1534))
  9890. (pin "2" (uuid ffe60723-5963-4a31-9c3a-7a2e9516e6ef))
  9891. )
  9892. (symbol (lib_id "power:GND") (at 278.765 238.76 0) (unit 1)
  9893. (in_bom yes) (on_board yes) (fields_autoplaced)
  9894. (uuid c5ab9e3a-7453-4fbe-8c6f-6d3d42040c82)
  9895. (property "Reference" "#PWR0112" (id 0) (at 278.765 245.11 0)
  9896. (effects (font (size 1.27 1.27)) hide)
  9897. )
  9898. (property "Value" "GND" (id 1) (at 278.765 243.84 0))
  9899. (property "Footprint" "" (id 2) (at 278.765 238.76 0)
  9900. (effects (font (size 1.27 1.27)) hide)
  9901. )
  9902. (property "Datasheet" "" (id 3) (at 278.765 238.76 0)
  9903. (effects (font (size 1.27 1.27)) hide)
  9904. )
  9905. (pin "1" (uuid 53b33297-4939-47d9-a9b9-802b038989d5))
  9906. )
  9907. (symbol (lib_id "power:GND") (at 52.705 98.425 0) (unit 1)
  9908. (in_bom yes) (on_board yes)
  9909. (uuid cb53a82a-fc10-45a0-8bea-ab5cb7bc6e17)
  9910. (property "Reference" "#PWR0168" (id 0) (at 52.705 104.775 0)
  9911. (effects (font (size 1.27 1.27)) hide)
  9912. )
  9913. (property "Value" "GND" (id 1) (at 52.832 102.8192 0))
  9914. (property "Footprint" "" (id 2) (at 52.705 98.425 0)
  9915. (effects (font (size 1.27 1.27)) hide)
  9916. )
  9917. (property "Datasheet" "" (id 3) (at 52.705 98.425 0)
  9918. (effects (font (size 1.27 1.27)) hide)
  9919. )
  9920. (pin "1" (uuid 8797010a-6fea-4491-ac91-18fab3df6e84))
  9921. )
  9922. (symbol (lib_id "Power_Protection:USBLC6-2SC6") (at 71.755 93.345 90) (unit 1)
  9923. (in_bom yes) (on_board yes)
  9924. (uuid cc04e09e-119a-4bfd-96b2-1775a463c8d5)
  9925. (property "Reference" "U9" (id 0) (at 62.865 84.455 90)
  9926. (effects (font (size 1.27 1.27)) (justify right))
  9927. )
  9928. (property "Value" "USBLC6-2SC6" (id 1) (at 76.835 84.455 90)
  9929. (effects (font (size 1.27 1.27)) (justify right))
  9930. )
  9931. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 61.595 112.395 0)
  9932. (effects (font (size 1.27 1.27)) hide)
  9933. )
  9934. (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" (id 3) (at 62.865 88.265 0)
  9935. (effects (font (size 1.27 1.27)) hide)
  9936. )
  9937. (property "LCSC" "C2827654" (id 4) (at 71.755 93.345 0)
  9938. (effects (font (size 1.27 1.27)) hide)
  9939. )
  9940. (pin "1" (uuid 4c496d90-63eb-4228-a695-395b1ec330db))
  9941. (pin "2" (uuid 2aa4c6dd-fd56-4c3f-a235-d83fdef19be1))
  9942. (pin "3" (uuid 6b435b43-3e2c-4e08-b5e5-4b1349a72cd6))
  9943. (pin "4" (uuid ba0ed079-11d8-47e2-af3b-09d5ec6d14c6))
  9944. (pin "5" (uuid ce4b4cb7-9b66-4af6-8b91-c3032fc875f9))
  9945. (pin "6" (uuid da014488-cd56-499b-929f-cd10fd3a9e79))
  9946. )
  9947. (symbol (lib_id "power:GND") (at 130.175 40.005 0) (unit 1)
  9948. (in_bom yes) (on_board yes)
  9949. (uuid cc5bbdcd-a57b-43a8-892a-0b69b5053f91)
  9950. (property "Reference" "#PWR0159" (id 0) (at 130.175 46.355 0)
  9951. (effects (font (size 1.27 1.27)) hide)
  9952. )
  9953. (property "Value" "GND" (id 1) (at 130.302 44.3992 0))
  9954. (property "Footprint" "" (id 2) (at 130.175 40.005 0)
  9955. (effects (font (size 1.27 1.27)) hide)
  9956. )
  9957. (property "Datasheet" "" (id 3) (at 130.175 40.005 0)
  9958. (effects (font (size 1.27 1.27)) hide)
  9959. )
  9960. (pin "1" (uuid 7e44edaa-f3c2-44c2-b27b-e34c132d65f5))
  9961. )
  9962. (symbol (lib_id "power:GND") (at 367.03 210.82 0) (unit 1)
  9963. (in_bom yes) (on_board yes) (fields_autoplaced)
  9964. (uuid cca1bca0-869d-49fb-ad41-c2a18ddb1625)
  9965. (property "Reference" "#PWR0127" (id 0) (at 367.03 217.17 0)
  9966. (effects (font (size 1.27 1.27)) hide)
  9967. )
  9968. (property "Value" "GND" (id 1) (at 367.03 215.265 0))
  9969. (property "Footprint" "" (id 2) (at 367.03 210.82 0)
  9970. (effects (font (size 1.27 1.27)) hide)
  9971. )
  9972. (property "Datasheet" "" (id 3) (at 367.03 210.82 0)
  9973. (effects (font (size 1.27 1.27)) hide)
  9974. )
  9975. (pin "1" (uuid 31706466-e74d-4199-af19-acf4d5c0d01b))
  9976. )
  9977. (symbol (lib_id "power:GND") (at 38.735 193.04 0) (unit 1)
  9978. (in_bom yes) (on_board yes) (fields_autoplaced)
  9979. (uuid d15533a8-fa49-40e7-866d-56ed6c3e13b3)
  9980. (property "Reference" "#PWR0106" (id 0) (at 38.735 199.39 0)
  9981. (effects (font (size 1.27 1.27)) hide)
  9982. )
  9983. (property "Value" "GND" (id 1) (at 38.735 197.485 0))
  9984. (property "Footprint" "" (id 2) (at 38.735 193.04 0)
  9985. (effects (font (size 1.27 1.27)) hide)
  9986. )
  9987. (property "Datasheet" "" (id 3) (at 38.735 193.04 0)
  9988. (effects (font (size 1.27 1.27)) hide)
  9989. )
  9990. (pin "1" (uuid c81de5ee-f82e-4e5c-9638-ab23c92aa5eb))
  9991. )
  9992. (symbol (lib_id "power:+3V3") (at 193.04 111.76 0) (unit 1)
  9993. (in_bom yes) (on_board yes) (fields_autoplaced)
  9994. (uuid d2f6f1a2-e4e2-4690-9d5d-63d139696f68)
  9995. (property "Reference" "#PWR0136" (id 0) (at 193.04 115.57 0)
  9996. (effects (font (size 1.27 1.27)) hide)
  9997. )
  9998. (property "Value" "+3V3" (id 1) (at 193.04 106.68 0))
  9999. (property "Footprint" "" (id 2) (at 193.04 111.76 0)
  10000. (effects (font (size 1.27 1.27)) hide)
  10001. )
  10002. (property "Datasheet" "" (id 3) (at 193.04 111.76 0)
  10003. (effects (font (size 1.27 1.27)) hide)
  10004. )
  10005. (pin "1" (uuid 4b9e07d3-517e-4ce0-8c29-94a78f7e3369))
  10006. )
  10007. (symbol (lib_id "Device:C_Small") (at 298.45 34.925 0) (unit 1)
  10008. (in_bom yes) (on_board yes)
  10009. (uuid d56e2971-a441-4391-9392-b3522e54b592)
  10010. (property "Reference" "C19" (id 0) (at 300.355 33.655 0)
  10011. (effects (font (size 1.27 1.27)) (justify left))
  10012. )
  10013. (property "Value" "100nF" (id 1) (at 300.355 36.83 0)
  10014. (effects (font (size 1.27 1.27)) (justify left))
  10015. )
  10016. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 298.45 34.925 0)
  10017. (effects (font (size 1.27 1.27)) hide)
  10018. )
  10019. (property "Datasheet" "~" (id 3) (at 298.45 34.925 0)
  10020. (effects (font (size 1.27 1.27)) hide)
  10021. )
  10022. (property "LCSC" "C1525" (id 4) (at 298.45 34.925 0)
  10023. (effects (font (size 1.27 1.27)) hide)
  10024. )
  10025. (pin "1" (uuid cf1f42cb-116e-4b27-83a6-204b5f207fa9))
  10026. (pin "2" (uuid 326d69ee-216c-4cc8-94ec-333b8ff57bbd))
  10027. )
  10028. (symbol (lib_id "power:GND") (at 189.23 42.545 0) (unit 1)
  10029. (in_bom yes) (on_board yes) (fields_autoplaced)
  10030. (uuid d5c2c451-2bf4-4588-b48d-a61d6cbce314)
  10031. (property "Reference" "#PWR0130" (id 0) (at 189.23 48.895 0)
  10032. (effects (font (size 1.27 1.27)) hide)
  10033. )
  10034. (property "Value" "GND" (id 1) (at 189.23 48.26 0))
  10035. (property "Footprint" "" (id 2) (at 189.23 42.545 0)
  10036. (effects (font (size 1.27 1.27)) hide)
  10037. )
  10038. (property "Datasheet" "" (id 3) (at 189.23 42.545 0)
  10039. (effects (font (size 1.27 1.27)) hide)
  10040. )
  10041. (pin "1" (uuid d7476e50-aaf2-4009-9267-ae985b5dddf2))
  10042. )
  10043. (symbol (lib_id "BlackSASI:UCC5606") (at 346.075 211.455 0) (unit 1)
  10044. (in_bom yes) (on_board yes)
  10045. (uuid d9ab6125-aee5-48a6-ab01-736e90503fed)
  10046. (property "Reference" "U3" (id 0) (at 332.74 193.04 0)
  10047. (effects (font (size 1.27 1.27)) (justify left))
  10048. )
  10049. (property "Value" "UCC5606" (id 1) (at 351.155 193.675 0)
  10050. (effects (font (size 1.27 1.27)) (justify left))
  10051. )
  10052. (property "Footprint" "BlackSASI:TSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm" (id 2) (at 353.695 248.285 0)
  10053. (effects (font (size 1.27 1.27)) hide)
  10054. )
  10055. (property "Datasheet" "https://www.ti.com/lit/ds/slus347a/slus347a.pdf" (id 3) (at 353.695 245.745 0)
  10056. (effects (font (size 1.27 1.27)) hide)
  10057. )
  10058. (property "MOUSER" "595-UCC5606PWPTR" (id 4) (at 346.075 211.455 0)
  10059. (effects (font (size 1.27 1.27)) hide)
  10060. )
  10061. (pin "1" (uuid e18e367c-a7a7-4de9-9b6a-a75d64de47b0))
  10062. (pin "10" (uuid 3bcf9758-e2e3-4f34-b3ce-f78c10959162))
  10063. (pin "11" (uuid ce0d5c66-8759-4896-8bfb-933b60e6534c))
  10064. (pin "12" (uuid 0e04883c-ae38-436e-8a8a-9faa9c07bd30))
  10065. (pin "13" (uuid dad959df-6e96-4267-8578-15a359fcf6ec))
  10066. (pin "14" (uuid 56013db7-79a3-452b-8bee-e4eb0825a9c6))
  10067. (pin "15" (uuid 2f3338dd-8499-4976-b0b4-6fb54bb8cd68))
  10068. (pin "16" (uuid 756a354d-86ea-43c2-9f25-14847eed61e7))
  10069. (pin "17" (uuid b280bec0-e5ed-43ef-8e60-a66eac730710))
  10070. (pin "18" (uuid fe35aefd-f661-49af-8b05-d10e693085fe))
  10071. (pin "19" (uuid 4a2b5d55-c422-4c22-abce-7138b41b7f1a))
  10072. (pin "2" (uuid 3d6e3aff-6dcd-43eb-a6a5-d1182d001c20))
  10073. (pin "20" (uuid bfd662bd-65e7-417d-8d00-e31e2e733498))
  10074. (pin "21" (uuid 07a25216-b010-4723-9168-e557995ef39f))
  10075. (pin "22" (uuid 91fe37e2-da4b-4e02-985b-65106dd19946))
  10076. (pin "23" (uuid 3f2fe799-32b5-4af1-8249-5cc3da7b66d7))
  10077. (pin "24" (uuid ca1a2840-e6d2-4f75-8565-f4c77d34251d))
  10078. (pin "25" (uuid eaf97731-9f5a-467d-8bd4-d331c014b4b6))
  10079. (pin "3" (uuid 4c606015-092d-4e71-9887-e3b84686fa24))
  10080. (pin "4" (uuid 81a99d66-2b21-4e84-a306-7db3c2b27680))
  10081. (pin "5" (uuid 2e88c112-ceb7-41ce-8d9c-01bd87f9a675))
  10082. (pin "6" (uuid 1b934088-aa46-4e3c-b0a7-f9480cfc523f))
  10083. (pin "7" (uuid 4b72418c-ddae-41f7-b88f-d69e2717a90c))
  10084. (pin "8" (uuid f313079c-2774-407f-b58a-3155e4a28c5f))
  10085. (pin "9" (uuid 87930b16-218d-4f7b-82f4-668696b007ed))
  10086. )
  10087. (symbol (lib_id "power:+3V3") (at 192.405 153.67 0) (unit 1)
  10088. (in_bom yes) (on_board yes) (fields_autoplaced)
  10089. (uuid db1ec1aa-d2c3-43b1-8856-ea51ae9bca4f)
  10090. (property "Reference" "#PWR0133" (id 0) (at 192.405 157.48 0)
  10091. (effects (font (size 1.27 1.27)) hide)
  10092. )
  10093. (property "Value" "+3V3" (id 1) (at 192.405 148.59 0))
  10094. (property "Footprint" "" (id 2) (at 192.405 153.67 0)
  10095. (effects (font (size 1.27 1.27)) hide)
  10096. )
  10097. (property "Datasheet" "" (id 3) (at 192.405 153.67 0)
  10098. (effects (font (size 1.27 1.27)) hide)
  10099. )
  10100. (pin "1" (uuid 39b42ada-8350-4a25-8634-9be2ecbe5760))
  10101. )
  10102. (symbol (lib_id "power:GND") (at 259.715 189.865 0) (unit 1)
  10103. (in_bom yes) (on_board yes) (fields_autoplaced)
  10104. (uuid dbc6732c-8e45-4f3d-b802-d0488075092d)
  10105. (property "Reference" "#PWR0124" (id 0) (at 259.715 196.215 0)
  10106. (effects (font (size 1.27 1.27)) hide)
  10107. )
  10108. (property "Value" "GND" (id 1) (at 259.715 194.945 0))
  10109. (property "Footprint" "" (id 2) (at 259.715 189.865 0)
  10110. (effects (font (size 1.27 1.27)) hide)
  10111. )
  10112. (property "Datasheet" "" (id 3) (at 259.715 189.865 0)
  10113. (effects (font (size 1.27 1.27)) hide)
  10114. )
  10115. (pin "1" (uuid 93f08bb9-d262-471d-96f0-c32b3ded4d20))
  10116. )
  10117. (symbol (lib_id "power:GND") (at 53.34 142.875 0) (unit 1)
  10118. (in_bom yes) (on_board yes)
  10119. (uuid dd6420fd-4dec-4622-945d-61b22d687837)
  10120. (property "Reference" "#PWR0185" (id 0) (at 53.34 149.225 0)
  10121. (effects (font (size 1.27 1.27)) hide)
  10122. )
  10123. (property "Value" "GND" (id 1) (at 50.165 144.78 0))
  10124. (property "Footprint" "" (id 2) (at 53.34 142.875 0)
  10125. (effects (font (size 1.27 1.27)) hide)
  10126. )
  10127. (property "Datasheet" "" (id 3) (at 53.34 142.875 0)
  10128. (effects (font (size 1.27 1.27)) hide)
  10129. )
  10130. (pin "1" (uuid 63449df6-393b-4759-ba83-db35e1dd987c))
  10131. )
  10132. (symbol (lib_id "power:+5VP") (at 327.025 184.15 0) (unit 1)
  10133. (in_bom yes) (on_board yes) (fields_autoplaced)
  10134. (uuid dd78b5d1-3fe6-4943-bfcd-59aceb16f7b6)
  10135. (property "Reference" "#PWR0105" (id 0) (at 327.025 187.96 0)
  10136. (effects (font (size 1.27 1.27)) hide)
  10137. )
  10138. (property "Value" "+5VP" (id 1) (at 327.025 179.07 0))
  10139. (property "Footprint" "" (id 2) (at 327.025 184.15 0)
  10140. (effects (font (size 1.27 1.27)) hide)
  10141. )
  10142. (property "Datasheet" "" (id 3) (at 327.025 184.15 0)
  10143. (effects (font (size 1.27 1.27)) hide)
  10144. )
  10145. (pin "1" (uuid 980e0f4e-196a-49e0-98e9-2e5724351649))
  10146. )
  10147. (symbol (lib_id "power:GND") (at 170.815 187.96 0) (unit 1)
  10148. (in_bom yes) (on_board yes) (fields_autoplaced)
  10149. (uuid df1a2722-3ab0-4d50-9f83-eac7bf82eea6)
  10150. (property "Reference" "#PWR0139" (id 0) (at 170.815 194.31 0)
  10151. (effects (font (size 1.27 1.27)) hide)
  10152. )
  10153. (property "Value" "GND" (id 1) (at 170.815 193.04 0))
  10154. (property "Footprint" "" (id 2) (at 170.815 187.96 0)
  10155. (effects (font (size 1.27 1.27)) hide)
  10156. )
  10157. (property "Datasheet" "" (id 3) (at 170.815 187.96 0)
  10158. (effects (font (size 1.27 1.27)) hide)
  10159. )
  10160. (pin "1" (uuid 1b82cc9b-efa3-40c7-8dc8-fa851420616f))
  10161. )
  10162. (symbol (lib_id "power:+3V3") (at 231.14 108.585 0) (unit 1)
  10163. (in_bom yes) (on_board yes) (fields_autoplaced)
  10164. (uuid df5b2366-ff86-4656-a9ac-6ee31bdddc48)
  10165. (property "Reference" "#PWR0163" (id 0) (at 231.14 112.395 0)
  10166. (effects (font (size 1.27 1.27)) hide)
  10167. )
  10168. (property "Value" "+3V3" (id 1) (at 231.14 102.87 0))
  10169. (property "Footprint" "" (id 2) (at 231.14 108.585 0)
  10170. (effects (font (size 1.27 1.27)) hide)
  10171. )
  10172. (property "Datasheet" "" (id 3) (at 231.14 108.585 0)
  10173. (effects (font (size 1.27 1.27)) hide)
  10174. )
  10175. (pin "1" (uuid 8a96ae89-6604-418b-948d-9898afda5c72))
  10176. )
  10177. (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 376.555 34.925 90) (unit 1)
  10178. (in_bom yes) (on_board yes) (fields_autoplaced)
  10179. (uuid dfd484a0-d916-4f27-9a25-dd2937bb22fb)
  10180. (property "Reference" "JP1" (id 0) (at 379.095 33.6549 90)
  10181. (effects (font (size 1.27 1.27)) (justify right))
  10182. )
  10183. (property "Value" "SolderJumper_2_Bridged" (id 1) (at 379.095 36.1949 90)
  10184. (effects (font (size 1.27 1.27)) (justify right) hide)
  10185. )
  10186. (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (id 2) (at 376.555 34.925 0)
  10187. (effects (font (size 1.27 1.27)) hide)
  10188. )
  10189. (property "Datasheet" "~" (id 3) (at 376.555 34.925 0)
  10190. (effects (font (size 1.27 1.27)) hide)
  10191. )
  10192. (pin "1" (uuid 2f1a25e2-3990-49af-9456-59a058bef0fc))
  10193. (pin "2" (uuid 3ccac50b-660e-4732-8fbd-18f7eac0cd1d))
  10194. )
  10195. (symbol (lib_id "power:PWR_FLAG") (at 109.22 128.27 0) (unit 1)
  10196. (in_bom yes) (on_board yes)
  10197. (uuid e1663dc5-a72c-432b-8ee3-83d73deb0fdd)
  10198. (property "Reference" "#FLG0101" (id 0) (at 109.22 126.365 0)
  10199. (effects (font (size 1.27 1.27)) hide)
  10200. )
  10201. (property "Value" "PWR_FLAG" (id 1) (at 111.76 124.46 0))
  10202. (property "Footprint" "" (id 2) (at 109.22 128.27 0)
  10203. (effects (font (size 1.27 1.27)) hide)
  10204. )
  10205. (property "Datasheet" "~" (id 3) (at 109.22 128.27 0)
  10206. (effects (font (size 1.27 1.27)) hide)
  10207. )
  10208. (pin "1" (uuid 45f557c8-d912-4e87-8c77-c264a7540770))
  10209. )
  10210. (symbol (lib_id "power:GND") (at 346.075 239.395 0) (unit 1)
  10211. (in_bom yes) (on_board yes) (fields_autoplaced)
  10212. (uuid e448d9f8-e84d-4b51-8b25-1ece38b64502)
  10213. (property "Reference" "#PWR0126" (id 0) (at 346.075 245.745 0)
  10214. (effects (font (size 1.27 1.27)) hide)
  10215. )
  10216. (property "Value" "GND" (id 1) (at 346.075 244.475 0))
  10217. (property "Footprint" "" (id 2) (at 346.075 239.395 0)
  10218. (effects (font (size 1.27 1.27)) hide)
  10219. )
  10220. (property "Datasheet" "" (id 3) (at 346.075 239.395 0)
  10221. (effects (font (size 1.27 1.27)) hide)
  10222. )
  10223. (pin "1" (uuid 0f9df579-1fc4-4e93-8e66-4764c2e9a5fe))
  10224. )
  10225. (symbol (lib_id "Device:Crystal_GND24") (at 38.735 169.545 0) (mirror y) (unit 1)
  10226. (in_bom yes) (on_board yes) (fields_autoplaced)
  10227. (uuid e513b2a7-bd2c-402f-93fe-ebc5b497376a)
  10228. (property "Reference" "Y2" (id 0) (at 45.72 165.9636 0))
  10229. (property "Value" "25MHz" (id 1) (at 45.72 168.5036 0))
  10230. (property "Footprint" "BlackSASI:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" (id 2) (at 38.735 169.545 0)
  10231. (effects (font (size 1.27 1.27)) hide)
  10232. )
  10233. (property "Datasheet" "~" (id 3) (at 38.735 169.545 0)
  10234. (effects (font (size 1.27 1.27)) hide)
  10235. )
  10236. (property "LCSC" "C258949" (id 4) (at 38.735 169.545 0)
  10237. (effects (font (size 1.27 1.27)) hide)
  10238. )
  10239. (pin "1" (uuid 88689065-ac69-4fce-886f-5d97d62901f4))
  10240. (pin "2" (uuid 00222bfc-3d46-42d3-ae1b-afe97cd1fe11))
  10241. (pin "3" (uuid 7b4dabf3-86af-42d8-9fac-1412f8caff6f))
  10242. (pin "4" (uuid 6488a696-bfe9-446d-9ca7-3acb8c8599dd))
  10243. )
  10244. (symbol (lib_id "BlackSASI:UCC5606") (at 278.765 210.82 0) (unit 1)
  10245. (in_bom yes) (on_board yes)
  10246. (uuid e52761ff-45eb-42cd-97fb-1bf675650cf9)
  10247. (property "Reference" "U2" (id 0) (at 265.43 192.405 0)
  10248. (effects (font (size 1.27 1.27)) (justify left))
  10249. )
  10250. (property "Value" "UCC5606" (id 1) (at 283.845 193.04 0)
  10251. (effects (font (size 1.27 1.27)) (justify left))
  10252. )
  10253. (property "Footprint" "BlackSASI:TSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm" (id 2) (at 286.385 247.65 0)
  10254. (effects (font (size 1.27 1.27)) hide)
  10255. )
  10256. (property "Datasheet" "https://www.ti.com/lit/ds/slus347a/slus347a.pdf" (id 3) (at 286.385 245.11 0)
  10257. (effects (font (size 1.27 1.27)) hide)
  10258. )
  10259. (property "MOUSER" "595-UCC5606PWPTR" (id 4) (at 278.765 210.82 0)
  10260. (effects (font (size 1.27 1.27)) hide)
  10261. )
  10262. (pin "1" (uuid b65ee826-d16a-40cf-8efa-943dfd5799f3))
  10263. (pin "10" (uuid 1f81b68d-b1b8-420f-ae0f-d8ea0dde5cf8))
  10264. (pin "11" (uuid 7535910b-f581-4522-b3f9-22ca13fb3f8c))
  10265. (pin "12" (uuid e6e6c906-1fd6-4caf-8aa7-025adb2bee27))
  10266. (pin "13" (uuid 1c550049-628a-48b3-a61f-e6603c1e7f4c))
  10267. (pin "14" (uuid aeb5fc6f-4cb5-4f4b-8a54-8c1537a92941))
  10268. (pin "15" (uuid ba429308-c37b-48c5-918e-4c816d06fdd3))
  10269. (pin "16" (uuid 4b60cd1c-e44c-4624-8db3-44731cf853cb))
  10270. (pin "17" (uuid 25490724-ebb8-4269-9434-abaec3c48f77))
  10271. (pin "18" (uuid ca51e5d6-ffb2-4ffa-8046-64b2df9a10a4))
  10272. (pin "19" (uuid 9e24a0e4-3f02-4d79-9f51-186f7fe9b54f))
  10273. (pin "2" (uuid 57c9e314-097c-4355-a286-244a07cf1c28))
  10274. (pin "20" (uuid 54f8e709-2904-49db-bd77-961b7d4bc1d3))
  10275. (pin "21" (uuid 25a485e8-4293-4200-8ef1-2cad29927c2e))
  10276. (pin "22" (uuid b2a8ddc0-f9e3-4bab-8ac1-3af897005176))
  10277. (pin "23" (uuid 0b36c427-4fb8-4cb8-8d37-5e5205ec52d9))
  10278. (pin "24" (uuid 85649f08-49f7-4966-82e9-42d3c0b8d62f))
  10279. (pin "25" (uuid c58914e1-a28a-4bb0-b747-8afe53172ac8))
  10280. (pin "3" (uuid c37b9abb-57df-427a-a79e-02345fee5ef7))
  10281. (pin "4" (uuid 9242ed14-feb0-47c1-9bf9-99eef7156306))
  10282. (pin "5" (uuid 833abefc-673b-45cf-85a8-5cac736cd5ca))
  10283. (pin "6" (uuid d4dd9aa1-c9f1-4700-82e8-75626f9ced48))
  10284. (pin "7" (uuid 1bb3c757-ccd7-42dc-a512-dd68ea11f0db))
  10285. (pin "8" (uuid 528d246a-aea0-4625-91e9-c6699cc2ed1c))
  10286. (pin "9" (uuid 102a6a00-3d11-4640-8307-65caf5b30947))
  10287. )
  10288. (symbol (lib_id "MCU_ST_STM32F4:STM32F411VETx") (at 88.265 197.485 0) (unit 1)
  10289. (in_bom yes) (on_board yes)
  10290. (uuid ea910d0e-2644-4944-b7c5-2972cbed83dd)
  10291. (property "Reference" "U1" (id 0) (at 71.755 130.81 0)
  10292. (effects (font (size 1.27 1.27)) (justify left))
  10293. )
  10294. (property "Value" "STM32F411VETx" (id 1) (at 101.6 131.445 0)
  10295. (effects (font (size 1.27 1.27)) (justify left))
  10296. )
  10297. (property "Footprint" "Package_QFP:LQFP-100_14x14mm_P0.5mm" (id 2) (at 70.485 260.985 0)
  10298. (effects (font (size 1.27 1.27)) (justify right) hide)
  10299. )
  10300. (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00115249.pdf" (id 3) (at 88.265 197.485 0)
  10301. (effects (font (size 1.27 1.27)) hide)
  10302. )
  10303. (property "LCSC" "C382005" (id 4) (at 88.265 197.485 0)
  10304. (effects (font (size 1.27 1.27)) hide)
  10305. )
  10306. (pin "1" (uuid 653a5d10-9999-4703-a6bf-655ff99d14f2))
  10307. (pin "10" (uuid 94d479e8-d62d-4d2c-9ccc-a2045829998e))
  10308. (pin "100" (uuid 8969cd7a-1d4b-4b4c-8f28-a7b51c0d2f7e))
  10309. (pin "11" (uuid 453952ef-2bdd-4a93-8abf-d066663ed982))
  10310. (pin "12" (uuid 69b39057-8df9-4d36-82f8-17cf80cec3a5))
  10311. (pin "13" (uuid a2fcf23a-d170-4987-82c6-f642f2ae3c44))
  10312. (pin "14" (uuid 2354d21c-f62c-466b-b625-4a9571ff7808))
  10313. (pin "15" (uuid 5f48c86a-ca92-4cbc-af59-4401ca2d074a))
  10314. (pin "16" (uuid 6f9c3d18-caf7-4039-8991-a7f4c22b1d6b))
  10315. (pin "17" (uuid 74602655-7690-4ac0-9a72-cc9a2d96b9e5))
  10316. (pin "18" (uuid 82634d2c-d622-4244-abae-89712b889d21))
  10317. (pin "19" (uuid f262d081-2e32-4541-a83f-ed447e534baf))
  10318. (pin "2" (uuid bfd74b82-1d70-4360-9ec1-6c09a0e3349f))
  10319. (pin "20" (uuid d4bf9ecb-49ea-40ca-a356-290aab24f620))
  10320. (pin "21" (uuid 92886334-a0ae-4586-b460-5543814dfca1))
  10321. (pin "22" (uuid 16152df2-f3e8-4274-93ec-2bdd63893c87))
  10322. (pin "23" (uuid 3d0aeedf-a39c-41c8-8f1d-bb1f92e80260))
  10323. (pin "24" (uuid c277b0fd-58b0-4c27-936e-62c8c1ec1cd6))
  10324. (pin "25" (uuid ae6a0786-df38-4ed8-81dd-61f7462ba7b7))
  10325. (pin "26" (uuid d4d73fed-abc8-4afc-a47d-5a16600b892e))
  10326. (pin "27" (uuid 92ca0e7d-7dc6-4b02-a2f1-f2d7dadac99d))
  10327. (pin "28" (uuid 8a09e149-eae4-4a0e-a81d-b5f37ceedaa1))
  10328. (pin "29" (uuid 34f30016-174a-457d-ae0c-d9f60bf85c67))
  10329. (pin "3" (uuid 96c0397f-94ba-4b67-8d2d-3b1ff64785f0))
  10330. (pin "30" (uuid 9996187d-3f49-4add-98fc-24d87d3b9001))
  10331. (pin "31" (uuid 2ba243a5-e709-45ac-9dad-742d9c3eda25))
  10332. (pin "32" (uuid 1d715cb4-f16c-44f9-bd4c-e734e68306a5))
  10333. (pin "33" (uuid 236ef77f-a6c2-49ed-9132-69ab80611b30))
  10334. (pin "34" (uuid d117bc39-a56f-4217-b166-377b71a3061a))
  10335. (pin "35" (uuid b3db1ae6-4241-4255-b4de-2936b8e2865d))
  10336. (pin "36" (uuid b98e06f5-1649-4bf9-bce0-f03422d3ad94))
  10337. (pin "37" (uuid b1ed13fc-fd1d-4307-9619-81b91f865c7b))
  10338. (pin "38" (uuid f61fdcd4-7c24-4e42-b69e-8f4a6d619627))
  10339. (pin "39" (uuid 5103bbfb-d6be-4f0b-bb31-618334ef664a))
  10340. (pin "4" (uuid a986bcff-6cab-49d0-9e0e-2b543ff60ec1))
  10341. (pin "40" (uuid 7e23c694-fa8b-4d17-bfb4-a5e76d194023))
  10342. (pin "41" (uuid ddb0c883-04eb-49de-91f2-2838d0718f70))
  10343. (pin "42" (uuid 8289f12c-a050-4ed9-9c96-f7f871d2f176))
  10344. (pin "43" (uuid d8c50162-27eb-41c4-97be-4c7b633c4b23))
  10345. (pin "44" (uuid 824f4e6f-db9b-4855-a0a7-f9f4b0eee7e4))
  10346. (pin "45" (uuid 030226c9-5c4e-45ec-8b89-d697e8190bc0))
  10347. (pin "46" (uuid 75bb0cae-f721-4762-a370-687dd758d269))
  10348. (pin "47" (uuid 7261fafb-2511-4174-8b46-67ed421442af))
  10349. (pin "48" (uuid 9db62fc2-6c41-4f47-a23d-6f3dcafe92c5))
  10350. (pin "49" (uuid 389ddea9-bd30-4e96-b53c-36d88696352c))
  10351. (pin "5" (uuid d1af511a-92db-4a39-bb44-fd26359086ec))
  10352. (pin "50" (uuid abca5c19-4853-4cff-a839-1e54a6f6ece6))
  10353. (pin "51" (uuid 630df968-90db-4503-b9dc-04f5f7b67fce))
  10354. (pin "52" (uuid d561800d-13a6-4c4c-8f75-1042a0a8098c))
  10355. (pin "53" (uuid df38ec44-1a94-4894-b8d1-330e856ea813))
  10356. (pin "54" (uuid 856b43d2-98f2-4d43-9a3a-f58876ebcede))
  10357. (pin "55" (uuid 869a4e53-8a32-4ff2-93fc-4887b6b481a3))
  10358. (pin "56" (uuid c45c0178-0c43-449d-886b-d847905d1beb))
  10359. (pin "57" (uuid 95c47260-fff8-42d4-82e6-59567540b018))
  10360. (pin "58" (uuid 9516d1e4-871c-42f8-abdf-b237bbb3acfe))
  10361. (pin "59" (uuid f8a7cf99-fb92-4312-b900-3804c63ab7dd))
  10362. (pin "6" (uuid d284f75b-685f-4f75-aef7-e03fa40e5d76))
  10363. (pin "60" (uuid 86d42446-fb55-4113-a4bc-ea6c372fb8dc))
  10364. (pin "61" (uuid cb5c4f7e-188c-4c52-b839-b3a9fbd47851))
  10365. (pin "62" (uuid e947b328-fbfc-46cd-a266-8634005e5808))
  10366. (pin "63" (uuid 590a1caa-0d81-4d8f-8051-549b44e46a45))
  10367. (pin "64" (uuid 5cd91f07-9acd-4dcf-a19f-b6394225f5d4))
  10368. (pin "65" (uuid 11fafc16-6c50-4009-9e7f-601a807d6874))
  10369. (pin "66" (uuid 9171577c-9ec2-4f1d-9505-779eee8434a6))
  10370. (pin "67" (uuid 1484d767-684e-43a3-83f3-a6a5f59eeb1f))
  10371. (pin "68" (uuid 0705dd54-7fe7-4374-8a28-836e6c5ff431))
  10372. (pin "69" (uuid 5a7dca87-941c-429e-ae37-4c5ddf346bdb))
  10373. (pin "7" (uuid 0a377077-3820-4f89-8b74-52c35e9202e2))
  10374. (pin "70" (uuid c65f8f37-9bb4-4008-ada9-ae6acf269042))
  10375. (pin "71" (uuid 2c63a4ff-e107-46b1-b3b2-51c2c63438d9))
  10376. (pin "72" (uuid 55f33df5-be76-4710-be5f-45230240229a))
  10377. (pin "73" (uuid 44d25b70-f4cd-42ce-aaf8-ce1dd4e8f2d1))
  10378. (pin "74" (uuid 1d0a313e-7664-4230-94bc-678db2e72e1b))
  10379. (pin "75" (uuid 37f00749-da79-444b-8db0-f14b99b88772))
  10380. (pin "76" (uuid 7c2f9547-ee74-4dc0-aad7-ee987e01ce40))
  10381. (pin "77" (uuid 6ba85285-1dd1-4483-afb1-115efdfbc3bb))
  10382. (pin "78" (uuid dfdfd4ba-db45-468c-a343-2408546133d2))
  10383. (pin "79" (uuid 05445bb1-872c-454b-b2c6-0585b0ea62eb))
  10384. (pin "8" (uuid fa874716-d455-4ce2-a416-5c94c0d725c6))
  10385. (pin "80" (uuid 80a1ffcc-6a46-4dad-9f57-7cc95d707d96))
  10386. (pin "81" (uuid e15456d0-6612-4989-a7f2-ff1bbfb0aeee))
  10387. (pin "82" (uuid 7f2d743c-f250-43cc-b8f1-fa8200fc423b))
  10388. (pin "83" (uuid 764d5cf8-94a1-45eb-be7e-794341989c79))
  10389. (pin "84" (uuid 24baa91a-5cf7-4a88-a7e9-e52baebbc3cc))
  10390. (pin "85" (uuid 3541003e-5174-43b9-baee-9d3ac92c2bc9))
  10391. (pin "86" (uuid 644105d7-3646-49ab-8542-11eab96b733d))
  10392. (pin "87" (uuid 5b4cac01-27b6-43a0-be92-95f5ec752836))
  10393. (pin "88" (uuid a3dbf243-655c-4201-b94f-3605fdad6d93))
  10394. (pin "89" (uuid b401aa46-f057-4bb3-a592-d586374ed052))
  10395. (pin "9" (uuid 4e7fa3a4-59bf-4008-bb49-7055ffd34063))
  10396. (pin "90" (uuid 5fcf717a-ff24-4040-b2df-5fa7fb7776d1))
  10397. (pin "91" (uuid 2f950f67-e5e0-4031-aee2-4acf688ed45c))
  10398. (pin "92" (uuid be92aaf1-4bb5-4add-837c-8858d532011e))
  10399. (pin "93" (uuid 69c10b2c-5bf6-4b7b-ab5d-71720970119e))
  10400. (pin "94" (uuid f8d34da6-ace6-4ba1-ba5e-652b434e4e28))
  10401. (pin "95" (uuid adb2d8a2-6eb9-4b63-80a3-88f9bfc155df))
  10402. (pin "96" (uuid b82c08e9-8182-43d9-9635-9265f17d1949))
  10403. (pin "97" (uuid e173ea55-229a-4820-b016-aace6b3c82fd))
  10404. (pin "98" (uuid d9cfc3dd-ab6a-4bdc-8c31-2e7ea9eeb22f))
  10405. (pin "99" (uuid ab9a9a26-eb73-4733-98ac-3ce711648711))
  10406. )
  10407. (symbol (lib_id "74xx:74LS125") (at 244.475 144.145 0) (unit 3)
  10408. (in_bom yes) (on_board yes)
  10409. (uuid ebd14bd4-9ebb-48d1-90e7-8e6b2abc8bd2)
  10410. (property "Reference" "U10" (id 0) (at 236.22 138.43 0))
  10411. (property "Value" "74AHCT125" (id 1) (at 253.365 138.43 0))
  10412. (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (id 2) (at 244.475 144.145 0)
  10413. (effects (font (size 1.27 1.27)) hide)
  10414. )
  10415. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS125" (id 3) (at 244.475 144.145 0)
  10416. (effects (font (size 1.27 1.27)) hide)
  10417. )
  10418. (property "MOUSER" "595-SN74AHCT125PWR" (id 4) (at 244.475 144.145 0)
  10419. (effects (font (size 1.27 1.27)) hide)
  10420. )
  10421. (property "LCSC" "C148198" (id 5) (at 244.475 144.145 0)
  10422. (effects (font (size 1.27 1.27)) hide)
  10423. )
  10424. (pin "1" (uuid 05e5f229-ee1b-4890-b97c-8e7ece60ba60))
  10425. (pin "2" (uuid 5a98c2c3-356a-422d-99fb-014d511f11c4))
  10426. (pin "3" (uuid 9be5bfd6-bb09-4bcc-b7df-07ae161053e2))
  10427. (pin "4" (uuid 37081654-8f99-4a40-95a5-cb89ab90304e))
  10428. (pin "5" (uuid 982b7bd6-301a-4a29-b4bb-333ee127a858))
  10429. (pin "6" (uuid 2ce8fc04-dee9-4db8-90b8-839b250529bc))
  10430. (pin "10" (uuid 098ef71b-09ae-41f6-a46d-aa3fd8b36691))
  10431. (pin "8" (uuid fa14cb78-7a57-4ed7-a4dc-28c9c0f6cef4))
  10432. (pin "9" (uuid 2d66efc2-9a44-4a61-8bb1-70d44f70ef16))
  10433. (pin "11" (uuid f9f43e84-340b-4af7-8310-0549b26e116e))
  10434. (pin "12" (uuid df586b02-02b3-429d-a0c0-fe4a87110a37))
  10435. (pin "13" (uuid 9aba9eaa-06af-4d38-b822-b427891cc96f))
  10436. (pin "14" (uuid 3b74bf39-a850-41ab-80d6-abe0d70218a3))
  10437. (pin "7" (uuid 0df6109b-09d2-45fb-ae96-95a5ff5e96e3))
  10438. )
  10439. (symbol (lib_id "Device:C_Small") (at 48.895 154.305 0) (unit 1)
  10440. (in_bom yes) (on_board yes)
  10441. (uuid ec115f07-609a-4a90-857e-145efebc9c3a)
  10442. (property "Reference" "C1" (id 0) (at 45.72 152.4 0)
  10443. (effects (font (size 1.27 1.27)) (justify left))
  10444. )
  10445. (property "Value" "2.2uF" (id 1) (at 43.18 156.21 0)
  10446. (effects (font (size 1.27 1.27)) (justify left))
  10447. )
  10448. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 48.895 154.305 0)
  10449. (effects (font (size 1.27 1.27)) hide)
  10450. )
  10451. (property "Datasheet" "~" (id 3) (at 48.895 154.305 0)
  10452. (effects (font (size 1.27 1.27)) hide)
  10453. )
  10454. (property "LCSC" "C23630" (id 4) (at 48.895 154.305 0)
  10455. (effects (font (size 1.27 1.27)) hide)
  10456. )
  10457. (pin "1" (uuid 6e984e34-e4d8-42c4-a237-c609551e3839))
  10458. (pin "2" (uuid 666d7d45-a6d1-4074-ac9c-18fffb0298d4))
  10459. )
  10460. (symbol (lib_id "power:+3V3") (at 231.14 125.73 0) (unit 1)
  10461. (in_bom yes) (on_board yes) (fields_autoplaced)
  10462. (uuid eeedff19-b5a5-4446-b3a5-f6f7ff671e97)
  10463. (property "Reference" "#PWR0162" (id 0) (at 231.14 129.54 0)
  10464. (effects (font (size 1.27 1.27)) hide)
  10465. )
  10466. (property "Value" "+3V3" (id 1) (at 231.14 120.015 0))
  10467. (property "Footprint" "" (id 2) (at 231.14 125.73 0)
  10468. (effects (font (size 1.27 1.27)) hide)
  10469. )
  10470. (property "Datasheet" "" (id 3) (at 231.14 125.73 0)
  10471. (effects (font (size 1.27 1.27)) hide)
  10472. )
  10473. (pin "1" (uuid 4619f237-7760-439a-8a0e-05cd33819027))
  10474. )
  10475. (symbol (lib_id "power:+3V3") (at 142.875 27.94 0) (unit 1)
  10476. (in_bom yes) (on_board yes)
  10477. (uuid ef42780f-9992-47c9-948b-a923d72ae5a2)
  10478. (property "Reference" "#PWR0154" (id 0) (at 142.875 31.75 0)
  10479. (effects (font (size 1.27 1.27)) hide)
  10480. )
  10481. (property "Value" "+3V3" (id 1) (at 143.256 23.5458 0))
  10482. (property "Footprint" "" (id 2) (at 142.875 27.94 0)
  10483. (effects (font (size 1.27 1.27)) hide)
  10484. )
  10485. (property "Datasheet" "" (id 3) (at 142.875 27.94 0)
  10486. (effects (font (size 1.27 1.27)) hide)
  10487. )
  10488. (pin "1" (uuid b1a14e8a-5725-4b79-a313-db00999165a1))
  10489. )
  10490. (symbol (lib_id "Regulator_Linear:AMS1117-3.3") (at 118.745 32.385 0) (unit 1)
  10491. (in_bom yes) (on_board yes)
  10492. (uuid f2a82fbe-566a-4d38-90b7-f216f0272894)
  10493. (property "Reference" "U8" (id 0) (at 118.745 26.2382 0))
  10494. (property "Value" "AMS1117-3.3" (id 1) (at 118.745 28.5496 0))
  10495. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 118.745 27.305 0)
  10496. (effects (font (size 1.27 1.27)) hide)
  10497. )
  10498. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 121.285 38.735 0)
  10499. (effects (font (size 1.27 1.27)) hide)
  10500. )
  10501. (property "LCSC" "C351784" (id 4) (at 118.745 32.385 0)
  10502. (effects (font (size 1.27 1.27)) hide)
  10503. )
  10504. (pin "1" (uuid 2b9aee99-f251-4f2a-8d55-daa1b25a6e25))
  10505. (pin "2" (uuid 8e719677-e6de-4143-90b9-d6d7af9d7549))
  10506. (pin "3" (uuid b88f203e-589a-4d3b-97ce-0fd3ce10785d))
  10507. )
  10508. (symbol (lib_id "BlackSASI:Micro_SD_Card TF015") (at 315.595 146.05 0) (unit 1)
  10509. (in_bom yes) (on_board yes)
  10510. (uuid f416f802-cf92-4844-919a-63bc636c4925)
  10511. (property "Reference" "J5" (id 0) (at 318.135 143.51 0))
  10512. (property "Value" "Micro_SD_Card_Det_Hirose_DM3AT" (id 1) (at 316.23 126.365 0))
  10513. (property "Footprint" "BlackSASI:microSD_TF-015" (id 2) (at 344.805 138.43 0)
  10514. (effects (font (size 1.27 1.27)) hide)
  10515. )
  10516. (property "Datasheet" "https://datasheet.lcsc.com/lcsc/2112221030_SOFNG-TF-015_C113206.pdf" (id 3) (at 315.595 146.05 0)
  10517. (effects (font (size 1.27 1.27)) hide)
  10518. )
  10519. (property "LCSC" "C113206" (id 4) (at 315.595 146.05 0)
  10520. (effects (font (size 1.27 1.27)) hide)
  10521. )
  10522. (pin "9" (uuid 37c458df-2463-47eb-9132-1dd954230c11))
  10523. (pin "1" (uuid 7f171f35-ccbd-4054-a11f-57b6d2ab1c9c))
  10524. (pin "10" (uuid 1a91fbf4-0864-4755-b487-743a7bab8075))
  10525. (pin "2" (uuid b1bcac29-b37c-4ee6-aae8-b494ce674459))
  10526. (pin "3" (uuid 76161176-fc56-4434-b8ae-5de51d2c90df))
  10527. (pin "4" (uuid 25d94e46-6933-4571-8e3e-2e4bedb35a93))
  10528. (pin "5" (uuid 178dbe03-35db-448e-807b-5a60e7647923))
  10529. (pin "6" (uuid 87a51018-373e-4c77-9c81-0bfd1b61475a))
  10530. (pin "7" (uuid d00ad681-67c9-423e-a75a-00fa78647f32))
  10531. (pin "8" (uuid 64dc691d-f0ff-4dd1-905c-4d6c79856f93))
  10532. )
  10533. (symbol (lib_id "Device:C_Small") (at 29.845 186.69 0) (unit 1)
  10534. (in_bom yes) (on_board yes)
  10535. (uuid f44c7f12-ce80-4fbb-b820-ba9a1512f63a)
  10536. (property "Reference" "C28" (id 0) (at 21.59 185.42 0)
  10537. (effects (font (size 1.27 1.27)) (justify left))
  10538. )
  10539. (property "Value" "8pF" (id 1) (at 22.86 188.595 0)
  10540. (effects (font (size 1.27 1.27)) (justify left))
  10541. )
  10542. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 29.845 186.69 0)
  10543. (effects (font (size 1.27 1.27)) hide)
  10544. )
  10545. (property "Datasheet" "~" (id 3) (at 29.845 186.69 0)
  10546. (effects (font (size 1.27 1.27)) hide)
  10547. )
  10548. (property "LCSC" "C1547" (id 4) (at 29.845 186.69 0)
  10549. (effects (font (size 1.27 1.27)) hide)
  10550. )
  10551. (pin "1" (uuid a549547b-b5f9-4e0f-a99e-6ac1f5d636f7))
  10552. (pin "2" (uuid 6a7872ee-fe16-41d1-b329-987a5a852412))
  10553. )
  10554. (symbol (lib_id "74xx:74LS125") (at 160.655 37.465 0) (unit 5)
  10555. (in_bom yes) (on_board yes)
  10556. (uuid f45222e9-2831-48a8-9909-f10bc70a05a6)
  10557. (property "Reference" "U10" (id 0) (at 153.035 27.305 0)
  10558. (effects (font (size 1.27 1.27)) (justify left))
  10559. )
  10560. (property "Value" "74AHCT125" (id 1) (at 164.465 27.305 0)
  10561. (effects (font (size 1.27 1.27)) (justify left))
  10562. )
  10563. (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (id 2) (at 160.655 37.465 0)
  10564. (effects (font (size 1.27 1.27)) hide)
  10565. )
  10566. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS125" (id 3) (at 160.655 37.465 0)
  10567. (effects (font (size 1.27 1.27)) hide)
  10568. )
  10569. (property "MOUSER" "595-SN74AHCT125PWR" (id 4) (at 160.655 37.465 0)
  10570. (effects (font (size 1.27 1.27)) hide)
  10571. )
  10572. (property "LCSC" "C148198" (id 5) (at 160.655 37.465 0)
  10573. (effects (font (size 1.27 1.27)) hide)
  10574. )
  10575. (pin "1" (uuid fedd826e-74ae-4512-8096-f38aaffedb7c))
  10576. (pin "2" (uuid 0db2329c-20dc-462b-b20a-ad6f2e2cbe93))
  10577. (pin "3" (uuid a5e8c014-a02c-48a7-a56b-b148c03b0656))
  10578. (pin "4" (uuid f5fdbe12-8908-4b4e-99cf-dfba67105b79))
  10579. (pin "5" (uuid f009ac58-f532-4e59-a1ec-f6a687be6983))
  10580. (pin "6" (uuid da74547b-896f-459c-8aa8-f161d000dade))
  10581. (pin "10" (uuid 44caae53-1a52-43c9-bdd2-601a68a99b9d))
  10582. (pin "8" (uuid 6e58d35e-842e-41f9-b302-a0606bc2c8e5))
  10583. (pin "9" (uuid 7622577b-cb45-48f8-91b9-adcbe403ee14))
  10584. (pin "11" (uuid 692dffb0-eeb3-460d-80d8-8bd9541d6d51))
  10585. (pin "12" (uuid 8af22483-6986-4db8-a478-e3da735ace71))
  10586. (pin "13" (uuid 552d2777-af2b-41ec-a31e-cd43b7c8490e))
  10587. (pin "14" (uuid 48eb95ba-a6df-4cfe-848a-0d355f7ca67d))
  10588. (pin "7" (uuid fbeb55f9-5103-4d14-8e32-2ca6deda70bb))
  10589. )
  10590. (symbol (lib_id "power:GND") (at 376.555 40.005 0) (unit 1)
  10591. (in_bom yes) (on_board yes) (fields_autoplaced)
  10592. (uuid f7903794-8f87-4f13-b0a4-23d47230f395)
  10593. (property "Reference" "#PWR0115" (id 0) (at 376.555 46.355 0)
  10594. (effects (font (size 1.27 1.27)) hide)
  10595. )
  10596. (property "Value" "GND" (id 1) (at 376.555 45.085 0))
  10597. (property "Footprint" "" (id 2) (at 376.555 40.005 0)
  10598. (effects (font (size 1.27 1.27)) hide)
  10599. )
  10600. (property "Datasheet" "" (id 3) (at 376.555 40.005 0)
  10601. (effects (font (size 1.27 1.27)) hide)
  10602. )
  10603. (pin "1" (uuid 7eee85ca-13c8-474b-a300-72ca0ee4f567))
  10604. )
  10605. (symbol (lib_id "74xx_IEEE:74LS641") (at 187.96 132.715 0) (unit 1)
  10606. (in_bom yes) (on_board yes)
  10607. (uuid f89c3dfe-9678-441a-a200-85db856d1d6f)
  10608. (property "Reference" "U7" (id 0) (at 182.245 114.3 0))
  10609. (property "Value" "74ALS641-1" (id 1) (at 199.39 114.3 0))
  10610. (property "Footprint" "Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm" (id 2) (at 187.96 132.715 0)
  10611. (effects (font (size 1.27 1.27)) hide)
  10612. )
  10613. (property "Datasheet" "" (id 3) (at 187.96 132.715 0)
  10614. (effects (font (size 1.27 1.27)) hide)
  10615. )
  10616. (property "MOUSER" "595-SN74ALS641A-1DW" (id 4) (at 187.96 132.715 0)
  10617. (effects (font (size 1.27 1.27)) hide)
  10618. )
  10619. (pin "10" (uuid fedd14c9-eeab-4acb-8bce-042617ef0c9d))
  10620. (pin "20" (uuid e13f108b-5790-4f0e-bf12-0a16b878346d))
  10621. (pin "1" (uuid 5044fd70-ed68-4774-9370-54c25b5e6662))
  10622. (pin "11" (uuid f0847d2d-310f-41ae-952a-bd60d1ddbddd))
  10623. (pin "12" (uuid ae46577e-1a4f-4aad-9a05-86c90a02284b))
  10624. (pin "13" (uuid cd18999f-557e-4518-86af-d1628e54bd14))
  10625. (pin "14" (uuid 0e035e94-d032-43dd-8c06-570f10b558ae))
  10626. (pin "15" (uuid 4b8dcac0-a75d-4080-b8be-8867363d4662))
  10627. (pin "16" (uuid c45b9255-59f7-43e2-9246-c1dd3c16ff5c))
  10628. (pin "17" (uuid 230e58ec-01d8-4ce0-a4a0-bb71031fd23b))
  10629. (pin "18" (uuid 4bd3f988-2891-4909-b9b6-328f5d4625a3))
  10630. (pin "19" (uuid 1e57e24e-58b8-4433-9476-ead9d658831c))
  10631. (pin "2" (uuid abad8795-cded-4542-be67-2900e1b99327))
  10632. (pin "3" (uuid b3a24da2-a213-4b72-b29d-74bd1b6cf891))
  10633. (pin "4" (uuid 1bd27448-85fb-42af-9592-bb787a8897de))
  10634. (pin "5" (uuid 6c62f329-71aa-46f4-9def-3e479088032b))
  10635. (pin "6" (uuid 9036588b-5c7f-45c5-ae3b-7799442e93f3))
  10636. (pin "7" (uuid 1ff6a7d7-38ed-407d-8910-d1dec5a720c4))
  10637. (pin "8" (uuid c8011c6a-2617-4fc9-a547-cb48046c0b42))
  10638. (pin "9" (uuid d3cc5595-4e3f-4a58-a4ff-d6711337cb5d))
  10639. )
  10640. (symbol (lib_id "power:+3V3") (at 231.14 160.655 0) (unit 1)
  10641. (in_bom yes) (on_board yes) (fields_autoplaced)
  10642. (uuid fa946695-3100-4de8-8971-ae8f8e66e389)
  10643. (property "Reference" "#PWR0167" (id 0) (at 231.14 164.465 0)
  10644. (effects (font (size 1.27 1.27)) hide)
  10645. )
  10646. (property "Value" "+3V3" (id 1) (at 231.14 154.94 0))
  10647. (property "Footprint" "" (id 2) (at 231.14 160.655 0)
  10648. (effects (font (size 1.27 1.27)) hide)
  10649. )
  10650. (property "Datasheet" "" (id 3) (at 231.14 160.655 0)
  10651. (effects (font (size 1.27 1.27)) hide)
  10652. )
  10653. (pin "1" (uuid 3fc14cd3-ff9a-4aff-bc28-da7f6e45a1bb))
  10654. )
  10655. (symbol (lib_id "power:GND") (at 108.585 40.005 0) (unit 1)
  10656. (in_bom yes) (on_board yes)
  10657. (uuid ff2efa0e-ca9b-4a4b-aa52-d49ec01a94c2)
  10658. (property "Reference" "#PWR0157" (id 0) (at 108.585 46.355 0)
  10659. (effects (font (size 1.27 1.27)) hide)
  10660. )
  10661. (property "Value" "GND" (id 1) (at 108.712 44.3992 0))
  10662. (property "Footprint" "" (id 2) (at 108.585 40.005 0)
  10663. (effects (font (size 1.27 1.27)) hide)
  10664. )
  10665. (property "Datasheet" "" (id 3) (at 108.585 40.005 0)
  10666. (effects (font (size 1.27 1.27)) hide)
  10667. )
  10668. (pin "1" (uuid 30e10495-4557-45d7-b000-66b365b299b7))
  10669. )
  10670. (sheet_instances
  10671. (path "/" (page "1"))
  10672. )
  10673. (symbol_instances
  10674. (path "/179748c5-54dc-4622-bd88-0ba80a08042f"
  10675. (reference "#FLG01") (unit 1) (value "PWR_FLAG") (footprint "")
  10676. )
  10677. (path "/311f3cfd-fc29-4693-936a-db40bd1454cf"
  10678. (reference "#FLG03") (unit 1) (value "PWR_FLAG") (footprint "")
  10679. )
  10680. (path "/444f99dc-0b38-43a3-a3ac-2ff9cf269cb5"
  10681. (reference "#FLG04") (unit 1) (value "PWR_FLAG") (footprint "")
  10682. )
  10683. (path "/e1663dc5-a72c-432b-8ee3-83d73deb0fdd"
  10684. (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
  10685. )
  10686. (path "/84cf7347-7c5d-4209-b07a-70dd1aede0a0"
  10687. (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
  10688. )
  10689. (path "/2bb62141-2e4b-4a1f-8568-db60317fbec5"
  10690. (reference "#PWR01") (unit 1) (value "+5V") (footprint "")
  10691. )
  10692. (path "/00000000-0000-0000-0000-00005f0440b9"
  10693. (reference "#PWR0101") (unit 1) (value "GND") (footprint "")
  10694. )
  10695. (path "/7d90343c-df5d-4e2a-8c55-41f4b96572b4"
  10696. (reference "#PWR0102") (unit 1) (value "+3V3") (footprint "")
  10697. )
  10698. (path "/00000000-0000-0000-0000-00005fb28dfc"
  10699. (reference "#PWR0103") (unit 1) (value "+5V") (footprint "")
  10700. )
  10701. (path "/dd78b5d1-3fe6-4943-bfcd-59aceb16f7b6"
  10702. (reference "#PWR0105") (unit 1) (value "+5VP") (footprint "")
  10703. )
  10704. (path "/d15533a8-fa49-40e7-866d-56ed6c3e13b3"
  10705. (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
  10706. )
  10707. (path "/546fb894-7a35-45c0-b598-13b6403fa443"
  10708. (reference "#PWR0107") (unit 1) (value "+5VP") (footprint "")
  10709. )
  10710. (path "/00000000-0000-0000-0000-00005f08f209"
  10711. (reference "#PWR0108") (unit 1) (value "+3.3V") (footprint "")
  10712. )
  10713. (path "/00000000-0000-0000-0000-00005f092548"
  10714. (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
  10715. )
  10716. (path "/00000000-0000-0000-0000-00005f0d8d42"
  10717. (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
  10718. )
  10719. (path "/3ed6cd4f-333e-4619-aaa2-3383058063b3"
  10720. (reference "#PWR0111") (unit 1) (value "+5VP") (footprint "")
  10721. )
  10722. (path "/c5ab9e3a-7453-4fbe-8c6f-6d3d42040c82"
  10723. (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
  10724. )
  10725. (path "/00000000-0000-0000-0000-000060d65ec9"
  10726. (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
  10727. )
  10728. (path "/00000000-0000-0000-0000-000060d6e643"
  10729. (reference "#PWR0114") (unit 1) (value "GND") (footprint "")
  10730. )
  10731. (path "/f7903794-8f87-4f13-b0a4-23d47230f395"
  10732. (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
  10733. )
  10734. (path "/00000000-0000-0000-0000-00005f2d285f"
  10735. (reference "#PWR0116") (unit 1) (value "GND") (footprint "")
  10736. )
  10737. (path "/00000000-0000-0000-0000-00005f9cfb24"
  10738. (reference "#PWR0117") (unit 1) (value "GND") (footprint "")
  10739. )
  10740. (path "/113c3609-b86b-43dd-8eaa-5f5ffb08b9be"
  10741. (reference "#PWR0118") (unit 1) (value "+3V3") (footprint "")
  10742. )
  10743. (path "/00000000-0000-0000-0000-00005fbe27dc"
  10744. (reference "#PWR0119") (unit 1) (value "+5V") (footprint "")
  10745. )
  10746. (path "/46939356-5ee8-466a-b66e-a41268da092b"
  10747. (reference "#PWR0120") (unit 1) (value "GND") (footprint "")
  10748. )
  10749. (path "/751a9390-331e-4b44-b0c3-86cc6baaea7f"
  10750. (reference "#PWR0121") (unit 1) (value "+5VP") (footprint "")
  10751. )
  10752. (path "/0d5651fb-c15d-4719-b41c-03aec04cb5a2"
  10753. (reference "#PWR0122") (unit 1) (value "+3V3") (footprint "")
  10754. )
  10755. (path "/9807a2ba-6b8f-4620-8e15-9593ee3f0a70"
  10756. (reference "#PWR0123") (unit 1) (value "+5VP") (footprint "")
  10757. )
  10758. (path "/dbc6732c-8e45-4f3d-b802-d0488075092d"
  10759. (reference "#PWR0124") (unit 1) (value "GND") (footprint "")
  10760. )
  10761. (path "/87935b97-bc9c-408c-9d3f-f476db1d1c3e"
  10762. (reference "#PWR0125") (unit 1) (value "GND") (footprint "")
  10763. )
  10764. (path "/e448d9f8-e84d-4b51-8b25-1ece38b64502"
  10765. (reference "#PWR0126") (unit 1) (value "GND") (footprint "")
  10766. )
  10767. (path "/cca1bca0-869d-49fb-ad41-c2a18ddb1625"
  10768. (reference "#PWR0127") (unit 1) (value "GND") (footprint "")
  10769. )
  10770. (path "/c2bc585a-243c-492e-89c2-a1947e648a39"
  10771. (reference "#PWR0128") (unit 1) (value "GND") (footprint "")
  10772. )
  10773. (path "/2cc67518-63f2-43f3-b75c-a73c37b0bc22"
  10774. (reference "#PWR0129") (unit 1) (value "GND") (footprint "")
  10775. )
  10776. (path "/d5c2c451-2bf4-4588-b48d-a61d6cbce314"
  10777. (reference "#PWR0130") (unit 1) (value "GND") (footprint "")
  10778. )
  10779. (path "/542b9b14-bbfa-4d26-8f78-cc75b54d8508"
  10780. (reference "#PWR0131") (unit 1) (value "+3V3") (footprint "")
  10781. )
  10782. (path "/82be2627-fd2c-4dfb-8f62-06d81b258de5"
  10783. (reference "#PWR0132") (unit 1) (value "GND") (footprint "")
  10784. )
  10785. (path "/db1ec1aa-d2c3-43b1-8856-ea51ae9bca4f"
  10786. (reference "#PWR0133") (unit 1) (value "+3V3") (footprint "")
  10787. )
  10788. (path "/75ac25c5-7a87-41cd-83f4-b4736b1603b8"
  10789. (reference "#PWR0134") (unit 1) (value "GND") (footprint "")
  10790. )
  10791. (path "/2914a0c5-0021-4d54-bae8-e95fbf20473a"
  10792. (reference "#PWR0135") (unit 1) (value "GND") (footprint "")
  10793. )
  10794. (path "/d2f6f1a2-e4e2-4690-9d5d-63d139696f68"
  10795. (reference "#PWR0136") (unit 1) (value "+3V3") (footprint "")
  10796. )
  10797. (path "/3699ed52-3eb0-4748-bba1-bebcbdc7d054"
  10798. (reference "#PWR0137") (unit 1) (value "+3V3") (footprint "")
  10799. )
  10800. (path "/75cd5efb-f3a0-4014-bcff-419850831502"
  10801. (reference "#PWR0138") (unit 1) (value "+3V3") (footprint "")
  10802. )
  10803. (path "/df1a2722-3ab0-4d50-9f83-eac7bf82eea6"
  10804. (reference "#PWR0139") (unit 1) (value "GND") (footprint "")
  10805. )
  10806. (path "/09647739-071b-4c77-af30-fb06b1221f12"
  10807. (reference "#PWR0140") (unit 1) (value "GND") (footprint "")
  10808. )
  10809. (path "/64870d3f-8510-45ec-9af4-2f706ff81cec"
  10810. (reference "#PWR0142") (unit 1) (value "GND") (footprint "")
  10811. )
  10812. (path "/4e85c2cf-ef4e-4f26-8349-e0d5055313ac"
  10813. (reference "#PWR0143") (unit 1) (value "GND") (footprint "")
  10814. )
  10815. (path "/13ece36b-d32d-4adb-b788-f995acf4d921"
  10816. (reference "#PWR0144") (unit 1) (value "GND") (footprint "")
  10817. )
  10818. (path "/96b442d9-76ca-4741-a8ab-96e978b1b872"
  10819. (reference "#PWR0145") (unit 1) (value "+3V3") (footprint "")
  10820. )
  10821. (path "/9167de5f-0738-4dd7-8243-d54eaf77c3f1"
  10822. (reference "#PWR0146") (unit 1) (value "GND") (footprint "")
  10823. )
  10824. (path "/7bed4b70-24ec-44a6-a58c-0a4ecc758a6b"
  10825. (reference "#PWR0147") (unit 1) (value "+3V3") (footprint "")
  10826. )
  10827. (path "/5e905e39-dec5-4b9e-9b5c-94c6564b14f2"
  10828. (reference "#PWR0148") (unit 1) (value "GND") (footprint "")
  10829. )
  10830. (path "/aa999da8-d2ec-41b8-aa3f-f2ee43015816"
  10831. (reference "#PWR0149") (unit 1) (value "GND") (footprint "")
  10832. )
  10833. (path "/7adc5d1c-42c1-4e92-adf6-899b036878bb"
  10834. (reference "#PWR0150") (unit 1) (value "GND") (footprint "")
  10835. )
  10836. (path "/1bd420e0-ad85-4dfb-abd1-abe0793788a4"
  10837. (reference "#PWR0151") (unit 1) (value "+5VP") (footprint "")
  10838. )
  10839. (path "/b41b1391-0de3-4001-a776-4ff0131c562b"
  10840. (reference "#PWR0152") (unit 1) (value "GND") (footprint "")
  10841. )
  10842. (path "/080d7c9f-cda8-455e-98dc-75229eeef826"
  10843. (reference "#PWR0153") (unit 1) (value "GND") (footprint "")
  10844. )
  10845. (path "/ef42780f-9992-47c9-948b-a923d72ae5a2"
  10846. (reference "#PWR0154") (unit 1) (value "+3V3") (footprint "")
  10847. )
  10848. (path "/288a0039-8275-4d3b-b564-d5725c08c768"
  10849. (reference "#PWR0155") (unit 1) (value "+5VP") (footprint "")
  10850. )
  10851. (path "/3b42d598-9a94-4509-894c-5e47a3c3f8a8"
  10852. (reference "#PWR0156") (unit 1) (value "GND") (footprint "")
  10853. )
  10854. (path "/ff2efa0e-ca9b-4a4b-aa52-d49ec01a94c2"
  10855. (reference "#PWR0157") (unit 1) (value "GND") (footprint "")
  10856. )
  10857. (path "/537a388b-f63b-43cd-b815-1d0ca15bbe75"
  10858. (reference "#PWR0158") (unit 1) (value "GND") (footprint "")
  10859. )
  10860. (path "/cc5bbdcd-a57b-43a8-892a-0b69b5053f91"
  10861. (reference "#PWR0159") (unit 1) (value "GND") (footprint "")
  10862. )
  10863. (path "/7b8acfda-2b78-4eb9-805d-6a0207252552"
  10864. (reference "#PWR0160") (unit 1) (value "+3V3") (footprint "")
  10865. )
  10866. (path "/7e675522-980d-4039-bd4f-380988c8241b"
  10867. (reference "#PWR0161") (unit 1) (value "GND") (footprint "")
  10868. )
  10869. (path "/eeedff19-b5a5-4446-b3a5-f6f7ff671e97"
  10870. (reference "#PWR0162") (unit 1) (value "+3V3") (footprint "")
  10871. )
  10872. (path "/df5b2366-ff86-4656-a9ac-6ee31bdddc48"
  10873. (reference "#PWR0163") (unit 1) (value "+3V3") (footprint "")
  10874. )
  10875. (path "/b737f173-7eea-497b-9670-594120f82083"
  10876. (reference "#PWR0164") (unit 1) (value "+5VP") (footprint "")
  10877. )
  10878. (path "/8b760edd-abc6-4617-a1ce-1d0bbacea7f1"
  10879. (reference "#PWR0165") (unit 1) (value "GND") (footprint "")
  10880. )
  10881. (path "/66190135-4ef9-48ac-ae71-30ed1088b5de"
  10882. (reference "#PWR0166") (unit 1) (value "+3V3") (footprint "")
  10883. )
  10884. (path "/fa946695-3100-4de8-8971-ae8f8e66e389"
  10885. (reference "#PWR0167") (unit 1) (value "+3V3") (footprint "")
  10886. )
  10887. (path "/cb53a82a-fc10-45a0-8bea-ab5cb7bc6e17"
  10888. (reference "#PWR0168") (unit 1) (value "GND") (footprint "")
  10889. )
  10890. (path "/0ac0bf2a-d012-480e-bd5f-bc76590a2992"
  10891. (reference "#PWR0169") (unit 1) (value "GND") (footprint "")
  10892. )
  10893. (path "/21d05730-095a-4dd9-90ce-b91d50725425"
  10894. (reference "#PWR0170") (unit 1) (value "GND") (footprint "")
  10895. )
  10896. (path "/4beb6596-ef0e-43a8-a905-0cc7c8d46c0f"
  10897. (reference "#PWR0171") (unit 1) (value "GND") (footprint "")
  10898. )
  10899. (path "/621d5e3d-779a-4ffe-9f79-e46c96f3c149"
  10900. (reference "#PWR0173") (unit 1) (value "GND") (footprint "")
  10901. )
  10902. (path "/96ceef15-1888-490c-bea2-dfce33fdbbec"
  10903. (reference "#PWR0174") (unit 1) (value "GND") (footprint "")
  10904. )
  10905. (path "/35dc454e-1708-4d99-81c0-5ab9ad3103e8"
  10906. (reference "#PWR0175") (unit 1) (value "+3V3") (footprint "")
  10907. )
  10908. (path "/1e0f698d-8955-40c8-b6aa-4bd210f08f1e"
  10909. (reference "#PWR0176") (unit 1) (value "GND") (footprint "")
  10910. )
  10911. (path "/0d9aad53-1103-43a9-b881-0d82c1771d81"
  10912. (reference "#PWR0177") (unit 1) (value "GND") (footprint "")
  10913. )
  10914. (path "/2e8c8883-aef7-4027-b275-5a809caa7c84"
  10915. (reference "#PWR0178") (unit 1) (value "GND") (footprint "")
  10916. )
  10917. (path "/9be219ef-6549-49f7-b496-d229ba0af830"
  10918. (reference "#PWR0179") (unit 1) (value "GND") (footprint "")
  10919. )
  10920. (path "/047e6dd3-47f9-437c-b651-739ab8e4232c"
  10921. (reference "#PWR0180") (unit 1) (value "GND") (footprint "")
  10922. )
  10923. (path "/01a22446-fb76-47db-ad70-489953a3da59"
  10924. (reference "#PWR0181") (unit 1) (value "+5VP") (footprint "")
  10925. )
  10926. (path "/8fd0aada-86f9-4874-8ddb-e962a9219745"
  10927. (reference "#PWR0182") (unit 1) (value "GND") (footprint "")
  10928. )
  10929. (path "/779b3555-e911-453d-8c7e-f4ef844ff0b5"
  10930. (reference "#PWR0183") (unit 1) (value "+5VP") (footprint "")
  10931. )
  10932. (path "/447ad544-422b-4ae0-a6d4-c84c1e24a619"
  10933. (reference "#PWR0184") (unit 1) (value "GND") (footprint "")
  10934. )
  10935. (path "/dd6420fd-4dec-4622-945d-61b22d687837"
  10936. (reference "#PWR0185") (unit 1) (value "GND") (footprint "")
  10937. )
  10938. (path "/ec115f07-609a-4a90-857e-145efebc9c3a"
  10939. (reference "C1") (unit 1) (value "2.2uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  10940. )
  10941. (path "/61732b41-8c12-4c4a-bc6b-2793625d081f"
  10942. (reference "C2") (unit 1) (value "2.2uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  10943. )
  10944. (path "/1757849d-c78e-49b7-acb9-8fbf772724bd"
  10945. (reference "C3") (unit 1) (value "12pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10946. )
  10947. (path "/91867f1b-19fd-458c-894f-d6647bcfa8d1"
  10948. (reference "C4") (unit 1) (value "12pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10949. )
  10950. (path "/c2892bdd-f368-4b8e-a9dd-e62241b06278"
  10951. (reference "C5") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  10952. )
  10953. (path "/2c2bcdd2-4d63-4398-b240-5c707726a528"
  10954. (reference "C6") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  10955. )
  10956. (path "/0a714ada-837a-46e2-8df4-6eadc9598977"
  10957. (reference "C7") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  10958. )
  10959. (path "/9463eeb1-0dbf-480f-8994-b4a956db6a0c"
  10960. (reference "C8") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  10961. )
  10962. (path "/34933934-c90f-4fa7-95eb-83585e06d85e"
  10963. (reference "C9") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10964. )
  10965. (path "/4897d442-0321-41fa-a4bb-31b8bde01e92"
  10966. (reference "C10") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10967. )
  10968. (path "/2927f24c-c132-4100-94ed-f06c2bdbe543"
  10969. (reference "C11") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10970. )
  10971. (path "/a8e9cfa7-6e96-49b5-b314-ba901aa191a6"
  10972. (reference "C12") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10973. )
  10974. (path "/0a017a0d-1c18-47fe-bbf5-926d22419e04"
  10975. (reference "C13") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10976. )
  10977. (path "/c35396de-fee9-460e-8212-6f0cde0619f2"
  10978. (reference "C14") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10979. )
  10980. (path "/7b65eb53-8b54-4039-af2d-20f2b46958e4"
  10981. (reference "C15") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10982. )
  10983. (path "/ae70a957-4157-4494-969d-14ba832e5284"
  10984. (reference "C16") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10985. )
  10986. (path "/1bedd17c-e2fc-4b88-8474-7349a2dce93a"
  10987. (reference "C17") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10988. )
  10989. (path "/9749136a-9a53-489e-a7af-7ebdb9927b44"
  10990. (reference "C18") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10991. )
  10992. (path "/d56e2971-a441-4391-9392-b3522e54b592"
  10993. (reference "C19") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10994. )
  10995. (path "/99fdb4bd-68ed-4314-9b79-3ac0ea3d3127"
  10996. (reference "C20") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  10997. )
  10998. (path "/60651e35-6c6d-480b-9692-87623757e268"
  10999. (reference "C21") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  11000. )
  11001. (path "/3ddf2bcc-3a53-4386-94a2-890d05c1264f"
  11002. (reference "C22") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  11003. )
  11004. (path "/9a996f71-54a0-4a19-b12b-85f84b1158b8"
  11005. (reference "C23") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  11006. )
  11007. (path "/5b0d7131-76fb-4a67-8133-18b3206c4aa4"
  11008. (reference "C24") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  11009. )
  11010. (path "/9195254e-c84f-4881-a358-d70fd08e8cee"
  11011. (reference "C25") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  11012. )
  11013. (path "/902870a8-2337-480a-adc3-eb302ac97a9f"
  11014. (reference "C26") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  11015. )
  11016. (path "/9d613ade-655f-4bcc-8786-c8dae4951434"
  11017. (reference "C27") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  11018. )
  11019. (path "/f44c7f12-ce80-4fbb-b820-ba9a1512f63a"
  11020. (reference "C28") (unit 1) (value "8pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  11021. )
  11022. (path "/1cfa204d-7d87-4639-8839-cb62a223477a"
  11023. (reference "C29") (unit 1) (value "8pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  11024. )
  11025. (path "/74a03c6e-9e56-42c8-b454-5e559d46fec1"
  11026. (reference "C39") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  11027. )
  11028. (path "/432b8220-7d52-4701-90ef-16ebbff267c9"
  11029. (reference "D1") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  11030. )
  11031. (path "/540f435c-faec-48e2-a852-d725edb6da3e"
  11032. (reference "D2") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
  11033. )
  11034. (path "/443153be-f993-4228-910b-1b24a43c63c3"
  11035. (reference "D3") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
  11036. )
  11037. (path "/00000000-0000-0000-0000-00005fb96eb2"
  11038. (reference "D4") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  11039. )
  11040. (path "/00000000-0000-0000-0000-00005fb97e4b"
  11041. (reference "D5") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  11042. )
  11043. (path "/0b5f3b31-0667-4da1-aed4-77d07c725ec8"
  11044. (reference "D6") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
  11045. )
  11046. (path "/a3558b86-d7e8-4faf-8d6e-404057fc1473"
  11047. (reference "F1") (unit 1) (value "Polyfuse 1.8A") (footprint "BlackSASI:Fuse_1206_3216Metric")
  11048. )
  11049. (path "/93d50ca1-8521-4e36-8d04-92ceb139f379"
  11050. (reference "F2") (unit 1) (value "Polyfuse 1.8A") (footprint "BlackSASI:Fuse_1206_3216Metric")
  11051. )
  11052. (path "/995dccf6-3693-490b-9c7e-61ccc15970c4"
  11053. (reference "F3") (unit 1) (value "Polyfuse 1.8A") (footprint "BlackSASI:Fuse_1206_3216Metric")
  11054. )
  11055. (path "/aa01b1ea-3c4d-4a61-a64b-a1f0c33e5e16"
  11056. (reference "H1") (unit 1) (value "Hole") (footprint "MountingHole:MountingHole_2.5mm_Pad_TopBottom")
  11057. )
  11058. (path "/1256614f-d704-43ec-b118-8304511aaa34"
  11059. (reference "H2") (unit 1) (value "Hole") (footprint "MountingHole:MountingHole_2.5mm_Pad_TopBottom")
  11060. )
  11061. (path "/0d22858c-b492-4937-a878-78c9ed82c152"
  11062. (reference "J1") (unit 1) (value "Conn_01x04_Male") (footprint "Connector_TE-Connectivity:TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical")
  11063. )
  11064. (path "/00000000-0000-0000-0000-00005f0261a7"
  11065. (reference "J2") (unit 1) (value "Conn_02x25_Odd_Even") (footprint "Connector_IDC:IDC-Header_2x25_P2.54mm_Vertical")
  11066. )
  11067. (path "/00000000-0000-0000-0000-000060d2a72a"
  11068. (reference "J3") (unit 1) (value "ACT_LED") (footprint "Connector_PinSocket_2.54mm:PinSocket_1x02_P2.54mm_Vertical")
  11069. )
  11070. (path "/00000000-0000-0000-0000-000060d2a732"
  11071. (reference "J4") (unit 1) (value "POWER_LED") (footprint "Connector_PinSocket_2.54mm:PinSocket_1x02_P2.54mm_Vertical")
  11072. )
  11073. (path "/f416f802-cf92-4844-919a-63bc636c4925"
  11074. (reference "J5") (unit 1) (value "Micro_SD_Card_Det_Hirose_DM3AT") (footprint "BlackSASI:microSD_TF-015")
  11075. )
  11076. (path "/64ed9de1-2d61-42bd-a7a0-a534b75c62b7"
  11077. (reference "J6") (unit 1) (value "Conn_01x04_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical")
  11078. )
  11079. (path "/0f969d51-4c07-44b6-9638-97a79eacc80d"
  11080. (reference "J7") (unit 1) (value "Conn_02x03_Odd_Even") (footprint "Connector:Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical")
  11081. )
  11082. (path "/89162790-3651-42a8-bce0-99e7e611c56b"
  11083. (reference "J8") (unit 1) (value "Conn_01x04_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical")
  11084. )
  11085. (path "/dfd484a0-d916-4f27-9a25-dd2937bb22fb"
  11086. (reference "JP1") (unit 1) (value "SolderJumper_2_Bridged") (footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm")
  11087. )
  11088. (path "/71abe646-92e7-4256-8b38-45225bdfb3e9"
  11089. (reference "JP2") (unit 1) (value "SolderJumper_2_Bridged") (footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm")
  11090. )
  11091. (path "/c0fd9f03-f383-48be-9ec6-4434150b361a"
  11092. (reference "L1") (unit 1) (value "4.7uH") (footprint "Inductor_SMD:L_0603_1608Metric")
  11093. )
  11094. (path "/16f96dd5-b4b2-4f83-ab46-09df2d061046"
  11095. (reference "R1") (unit 1) (value "470") (footprint "Resistor_SMD:R_0402_1005Metric")
  11096. )
  11097. (path "/57e200a6-ccfd-4b09-8b65-3ac22c9764d9"
  11098. (reference "R2") (unit 1) (value "470") (footprint "Resistor_SMD:R_0402_1005Metric")
  11099. )
  11100. (path "/7d8286f3-8f03-4ac0-a158-4015e96e85f9"
  11101. (reference "R3") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  11102. )
  11103. (path "/b1e98df5-faad-41fb-848e-12f787b6dfbc"
  11104. (reference "R4") (unit 1) (value "220") (footprint "Resistor_SMD:R_0402_1005Metric")
  11105. )
  11106. (path "/97c78aa9-fc91-46de-b4f8-820f16918f47"
  11107. (reference "R5") (unit 1) (value "0") (footprint "Capacitor_SMD:C_0603_1608Metric")
  11108. )
  11109. (path "/5fdb2a57-2711-4e21-91a2-3f300b5cd976"
  11110. (reference "R6") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  11111. )
  11112. (path "/71a74ee3-329b-409c-94e9-dee9aaeda96c"
  11113. (reference "R7") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  11114. )
  11115. (path "/939b8feb-f572-4a68-b6a1-6afb32eca472"
  11116. (reference "R8") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
  11117. )
  11118. (path "/582c9757-ee3f-4e32-9781-f1dd98a8de7b"
  11119. (reference "R9") (unit 1) (value "220") (footprint "Resistor_SMD:R_0402_1005Metric")
  11120. )
  11121. (path "/1c043c8b-c158-4629-b7ed-6e79020efffa"
  11122. (reference "R10") (unit 1) (value "820") (footprint "Resistor_SMD:R_0603_1608Metric")
  11123. )
  11124. (path "/34eea843-2372-4369-ba33-b2c2acfd6ff7"
  11125. (reference "R11") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  11126. )
  11127. (path "/741a279f-bb19-43db-ae37-7c5c03c324ba"
  11128. (reference "R12") (unit 1) (value "820") (footprint "Resistor_SMD:R_0603_1608Metric")
  11129. )
  11130. (path "/032baac2-5124-4dfe-95b3-9d967f5c6b35"
  11131. (reference "R13") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  11132. )
  11133. (path "/2a5ee645-6562-439a-8d8f-38be1392a8a4"
  11134. (reference "R14") (unit 1) (value "820") (footprint "Resistor_SMD:R_0603_1608Metric")
  11135. )
  11136. (path "/86e74120-4efc-4f00-b6ef-f75a90a0224d"
  11137. (reference "R15") (unit 1) (value "22k") (footprint "Resistor_SMD:R_0402_1005Metric")
  11138. )
  11139. (path "/ba772bf8-a47c-4cf1-9acd-c74bee5aca41"
  11140. (reference "R16") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  11141. )
  11142. (path "/57214d56-46ee-44dd-8081-2fc92c0b7c95"
  11143. (reference "R17") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  11144. )
  11145. (path "/54c01e80-6e93-4dbc-b14b-f15d9363c545"
  11146. (reference "R18") (unit 1) (value "1M") (footprint "Resistor_SMD:R_0402_1005Metric")
  11147. )
  11148. (path "/5ae7c200-e1fb-4ae8-b7b0-2efd984bc338"
  11149. (reference "SW1") (unit 1) (value "SW_DIP_x04") (footprint "Button_Switch_THT:SW_DIP_SPSTx04_Slide_9.78x12.34mm_W7.62mm_P2.54mm")
  11150. )
  11151. (path "/ea910d0e-2644-4944-b7c5-2972cbed83dd"
  11152. (reference "U1") (unit 1) (value "STM32F411VETx") (footprint "Package_QFP:LQFP-100_14x14mm_P0.5mm")
  11153. )
  11154. (path "/e52761ff-45eb-42cd-97fb-1bf675650cf9"
  11155. (reference "U2") (unit 1) (value "UCC5606") (footprint "BlackSASI:TSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm")
  11156. )
  11157. (path "/d9ab6125-aee5-48a6-ab01-736e90503fed"
  11158. (reference "U3") (unit 1) (value "UCC5606") (footprint "BlackSASI:TSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm")
  11159. )
  11160. (path "/0753f7c7-c9db-4831-b835-d7a3037eadfc"
  11161. (reference "U4") (unit 1) (value "74ALS641-1") (footprint "Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm")
  11162. )
  11163. (path "/738990b0-a6c9-4fd0-bd8a-41dcd5db3099"
  11164. (reference "U5") (unit 1) (value "74ALS641-1") (footprint "Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm")
  11165. )
  11166. (path "/67aa81b2-d545-4589-97dd-6cfad2d8484e"
  11167. (reference "U6") (unit 1) (value "74ALS641-1") (footprint "Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm")
  11168. )
  11169. (path "/f89c3dfe-9678-441a-a200-85db856d1d6f"
  11170. (reference "U7") (unit 1) (value "74ALS641-1") (footprint "Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm")
  11171. )
  11172. (path "/f2a82fbe-566a-4d38-90b7-f216f0272894"
  11173. (reference "U8") (unit 1) (value "AMS1117-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
  11174. )
  11175. (path "/cc04e09e-119a-4bfd-96b2-1775a463c8d5"
  11176. (reference "U9") (unit 1) (value "USBLC6-2SC6") (footprint "Package_TO_SOT_SMD:SOT-23-6")
  11177. )
  11178. (path "/44a489ac-0471-4632-8118-d03a622bc89d"
  11179. (reference "U10") (unit 1) (value "74AHCT125") (footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm")
  11180. )
  11181. (path "/5d1328f8-1662-4ae1-9dfc-fc33e8c2c0a7"
  11182. (reference "U10") (unit 2) (value "74AHCT125") (footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm")
  11183. )
  11184. (path "/ebd14bd4-9ebb-48d1-90e7-8e6b2abc8bd2"
  11185. (reference "U10") (unit 3) (value "74AHCT125") (footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm")
  11186. )
  11187. (path "/017b9648-bee0-44c3-ae03-bcb77b2b55db"
  11188. (reference "U10") (unit 4) (value "74AHCT125") (footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm")
  11189. )
  11190. (path "/f45222e9-2831-48a8-9909-f10bc70a05a6"
  11191. (reference "U10") (unit 5) (value "74AHCT125") (footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm")
  11192. )
  11193. (path "/86f04292-f18d-4ba6-b563-6527b86da0e6"
  11194. (reference "USB1") (unit 1) (value "USB-C") (footprint "BlackSASI:HRO-TYPE-C-31-M-12")
  11195. )
  11196. (path "/9a9ac252-65e8-4c95-88bd-7b25ea744058"
  11197. (reference "Y1") (unit 1) (value "32kHz") (footprint "BlackSASI:Crystal_SMD_3215-2Pin_3.2x1.5mm")
  11198. )
  11199. (path "/e513b2a7-bd2c-402f-93fe-ebc5b497376a"
  11200. (reference "Y2") (unit 1) (value "25MHz") (footprint "BlackSASI:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm")
  11201. )
  11202. )
  11203. )