ideatausb.kicad_sch 305 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 6a0b1509-c012-4510-a014-035c14c242a7)
  3. (paper "A3")
  4. (title_block
  5. (title "PATA/IDE for STM32F407")
  6. (date "2022-11-21")
  7. )
  8. (lib_symbols
  9. (symbol "Connector:Conn_01x01_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  10. (property "Reference" "J" (id 0) (at 0 2.54 0)
  11. (effects (font (size 1.27 1.27)))
  12. )
  13. (property "Value" "Conn_01x01_Male" (id 1) (at 0 -2.54 0)
  14. (effects (font (size 1.27 1.27)))
  15. )
  16. (property "Footprint" "" (id 2) (at 0 0 0)
  17. (effects (font (size 1.27 1.27)) hide)
  18. )
  19. (property "Datasheet" "~" (id 3) (at 0 0 0)
  20. (effects (font (size 1.27 1.27)) hide)
  21. )
  22. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  23. (effects (font (size 1.27 1.27)) hide)
  24. )
  25. (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  26. (effects (font (size 1.27 1.27)) hide)
  27. )
  28. (property "ki_fp_filters" "Connector*:*" (id 6) (at 0 0 0)
  29. (effects (font (size 1.27 1.27)) hide)
  30. )
  31. (symbol "Conn_01x01_Male_1_1"
  32. (polyline
  33. (pts
  34. (xy 1.27 0)
  35. (xy 0.8636 0)
  36. )
  37. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  38. (fill (type none))
  39. )
  40. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  41. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  42. (fill (type outline))
  43. )
  44. (pin passive line (at 5.08 0 180) (length 3.81)
  45. (name "Pin_1" (effects (font (size 1.27 1.27))))
  46. (number "1" (effects (font (size 1.27 1.27))))
  47. )
  48. )
  49. )
  50. (symbol "Connector:Conn_01x02_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  51. (property "Reference" "J" (id 0) (at 0 2.54 0)
  52. (effects (font (size 1.27 1.27)))
  53. )
  54. (property "Value" "Conn_01x02_Male" (id 1) (at 0 -5.08 0)
  55. (effects (font (size 1.27 1.27)))
  56. )
  57. (property "Footprint" "" (id 2) (at 0 0 0)
  58. (effects (font (size 1.27 1.27)) hide)
  59. )
  60. (property "Datasheet" "~" (id 3) (at 0 0 0)
  61. (effects (font (size 1.27 1.27)) hide)
  62. )
  63. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  64. (effects (font (size 1.27 1.27)) hide)
  65. )
  66. (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  67. (effects (font (size 1.27 1.27)) hide)
  68. )
  69. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  70. (effects (font (size 1.27 1.27)) hide)
  71. )
  72. (symbol "Conn_01x02_Male_1_1"
  73. (polyline
  74. (pts
  75. (xy 1.27 -2.54)
  76. (xy 0.8636 -2.54)
  77. )
  78. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  79. (fill (type none))
  80. )
  81. (polyline
  82. (pts
  83. (xy 1.27 0)
  84. (xy 0.8636 0)
  85. )
  86. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  87. (fill (type none))
  88. )
  89. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  90. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  91. (fill (type outline))
  92. )
  93. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  94. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  95. (fill (type outline))
  96. )
  97. (pin passive line (at 5.08 0 180) (length 3.81)
  98. (name "Pin_1" (effects (font (size 1.27 1.27))))
  99. (number "1" (effects (font (size 1.27 1.27))))
  100. )
  101. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  102. (name "Pin_2" (effects (font (size 1.27 1.27))))
  103. (number "2" (effects (font (size 1.27 1.27))))
  104. )
  105. )
  106. )
  107. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  108. (property "Reference" "J" (id 0) (at 0 5.08 0)
  109. (effects (font (size 1.27 1.27)))
  110. )
  111. (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 0)
  112. (effects (font (size 1.27 1.27)))
  113. )
  114. (property "Footprint" "" (id 2) (at 0 0 0)
  115. (effects (font (size 1.27 1.27)) hide)
  116. )
  117. (property "Datasheet" "~" (id 3) (at 0 0 0)
  118. (effects (font (size 1.27 1.27)) hide)
  119. )
  120. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  121. (effects (font (size 1.27 1.27)) hide)
  122. )
  123. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  124. (effects (font (size 1.27 1.27)) hide)
  125. )
  126. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  127. (effects (font (size 1.27 1.27)) hide)
  128. )
  129. (symbol "Conn_01x03_Male_1_1"
  130. (polyline
  131. (pts
  132. (xy 1.27 -2.54)
  133. (xy 0.8636 -2.54)
  134. )
  135. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  136. (fill (type none))
  137. )
  138. (polyline
  139. (pts
  140. (xy 1.27 0)
  141. (xy 0.8636 0)
  142. )
  143. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  144. (fill (type none))
  145. )
  146. (polyline
  147. (pts
  148. (xy 1.27 2.54)
  149. (xy 0.8636 2.54)
  150. )
  151. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  152. (fill (type none))
  153. )
  154. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  155. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  156. (fill (type outline))
  157. )
  158. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  159. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  160. (fill (type outline))
  161. )
  162. (rectangle (start 0.8636 2.667) (end 0 2.413)
  163. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  164. (fill (type outline))
  165. )
  166. (pin passive line (at 5.08 2.54 180) (length 3.81)
  167. (name "Pin_1" (effects (font (size 1.27 1.27))))
  168. (number "1" (effects (font (size 1.27 1.27))))
  169. )
  170. (pin passive line (at 5.08 0 180) (length 3.81)
  171. (name "Pin_2" (effects (font (size 1.27 1.27))))
  172. (number "2" (effects (font (size 1.27 1.27))))
  173. )
  174. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  175. (name "Pin_3" (effects (font (size 1.27 1.27))))
  176. (number "3" (effects (font (size 1.27 1.27))))
  177. )
  178. )
  179. )
  180. (symbol "Connector:Conn_01x04_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  181. (property "Reference" "J" (id 0) (at 0 5.08 0)
  182. (effects (font (size 1.27 1.27)))
  183. )
  184. (property "Value" "Conn_01x04_Male" (id 1) (at 0 -7.62 0)
  185. (effects (font (size 1.27 1.27)))
  186. )
  187. (property "Footprint" "" (id 2) (at 0 0 0)
  188. (effects (font (size 1.27 1.27)) hide)
  189. )
  190. (property "Datasheet" "~" (id 3) (at 0 0 0)
  191. (effects (font (size 1.27 1.27)) hide)
  192. )
  193. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  194. (effects (font (size 1.27 1.27)) hide)
  195. )
  196. (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  197. (effects (font (size 1.27 1.27)) hide)
  198. )
  199. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  200. (effects (font (size 1.27 1.27)) hide)
  201. )
  202. (symbol "Conn_01x04_Male_1_1"
  203. (polyline
  204. (pts
  205. (xy 1.27 -5.08)
  206. (xy 0.8636 -5.08)
  207. )
  208. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  209. (fill (type none))
  210. )
  211. (polyline
  212. (pts
  213. (xy 1.27 -2.54)
  214. (xy 0.8636 -2.54)
  215. )
  216. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  217. (fill (type none))
  218. )
  219. (polyline
  220. (pts
  221. (xy 1.27 0)
  222. (xy 0.8636 0)
  223. )
  224. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  225. (fill (type none))
  226. )
  227. (polyline
  228. (pts
  229. (xy 1.27 2.54)
  230. (xy 0.8636 2.54)
  231. )
  232. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  233. (fill (type none))
  234. )
  235. (rectangle (start 0.8636 -4.953) (end 0 -5.207)
  236. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  237. (fill (type outline))
  238. )
  239. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  240. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  241. (fill (type outline))
  242. )
  243. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  244. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  245. (fill (type outline))
  246. )
  247. (rectangle (start 0.8636 2.667) (end 0 2.413)
  248. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  249. (fill (type outline))
  250. )
  251. (pin passive line (at 5.08 2.54 180) (length 3.81)
  252. (name "Pin_1" (effects (font (size 1.27 1.27))))
  253. (number "1" (effects (font (size 1.27 1.27))))
  254. )
  255. (pin passive line (at 5.08 0 180) (length 3.81)
  256. (name "Pin_2" (effects (font (size 1.27 1.27))))
  257. (number "2" (effects (font (size 1.27 1.27))))
  258. )
  259. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  260. (name "Pin_3" (effects (font (size 1.27 1.27))))
  261. (number "3" (effects (font (size 1.27 1.27))))
  262. )
  263. (pin passive line (at 5.08 -5.08 180) (length 3.81)
  264. (name "Pin_4" (effects (font (size 1.27 1.27))))
  265. (number "4" (effects (font (size 1.27 1.27))))
  266. )
  267. )
  268. )
  269. (symbol "Connector_Generic:Conn_02x03_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  270. (property "Reference" "J" (id 0) (at 1.27 5.08 0)
  271. (effects (font (size 1.27 1.27)))
  272. )
  273. (property "Value" "Conn_02x03_Odd_Even" (id 1) (at 1.27 -5.08 0)
  274. (effects (font (size 1.27 1.27)))
  275. )
  276. (property "Footprint" "" (id 2) (at 0 0 0)
  277. (effects (font (size 1.27 1.27)) hide)
  278. )
  279. (property "Datasheet" "~" (id 3) (at 0 0 0)
  280. (effects (font (size 1.27 1.27)) hide)
  281. )
  282. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  283. (effects (font (size 1.27 1.27)) hide)
  284. )
  285. (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)
  286. (effects (font (size 1.27 1.27)) hide)
  287. )
  288. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  289. (effects (font (size 1.27 1.27)) hide)
  290. )
  291. (symbol "Conn_02x03_Odd_Even_1_1"
  292. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  293. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  294. (fill (type none))
  295. )
  296. (rectangle (start -1.27 0.127) (end 0 -0.127)
  297. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  298. (fill (type none))
  299. )
  300. (rectangle (start -1.27 2.667) (end 0 2.413)
  301. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  302. (fill (type none))
  303. )
  304. (rectangle (start -1.27 3.81) (end 3.81 -3.81)
  305. (stroke (width 0.254) (type default) (color 0 0 0 0))
  306. (fill (type background))
  307. )
  308. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  309. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  310. (fill (type none))
  311. )
  312. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  313. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  314. (fill (type none))
  315. )
  316. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  317. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  318. (fill (type none))
  319. )
  320. (pin passive line (at -5.08 2.54 0) (length 3.81)
  321. (name "Pin_1" (effects (font (size 1.27 1.27))))
  322. (number "1" (effects (font (size 1.27 1.27))))
  323. )
  324. (pin passive line (at 7.62 2.54 180) (length 3.81)
  325. (name "Pin_2" (effects (font (size 1.27 1.27))))
  326. (number "2" (effects (font (size 1.27 1.27))))
  327. )
  328. (pin passive line (at -5.08 0 0) (length 3.81)
  329. (name "Pin_3" (effects (font (size 1.27 1.27))))
  330. (number "3" (effects (font (size 1.27 1.27))))
  331. )
  332. (pin passive line (at 7.62 0 180) (length 3.81)
  333. (name "Pin_4" (effects (font (size 1.27 1.27))))
  334. (number "4" (effects (font (size 1.27 1.27))))
  335. )
  336. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  337. (name "Pin_5" (effects (font (size 1.27 1.27))))
  338. (number "5" (effects (font (size 1.27 1.27))))
  339. )
  340. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  341. (name "Pin_6" (effects (font (size 1.27 1.27))))
  342. (number "6" (effects (font (size 1.27 1.27))))
  343. )
  344. )
  345. )
  346. (symbol "Connector_Generic:Conn_02x20_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  347. (property "Reference" "J" (id 0) (at 1.27 25.4 0)
  348. (effects (font (size 1.27 1.27)))
  349. )
  350. (property "Value" "Conn_02x20_Odd_Even" (id 1) (at 1.27 -27.94 0)
  351. (effects (font (size 1.27 1.27)))
  352. )
  353. (property "Footprint" "" (id 2) (at 0 0 0)
  354. (effects (font (size 1.27 1.27)) hide)
  355. )
  356. (property "Datasheet" "~" (id 3) (at 0 0 0)
  357. (effects (font (size 1.27 1.27)) hide)
  358. )
  359. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  360. (effects (font (size 1.27 1.27)) hide)
  361. )
  362. (property "ki_description" "Generic connector, double row, 02x20, 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)
  363. (effects (font (size 1.27 1.27)) hide)
  364. )
  365. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  366. (effects (font (size 1.27 1.27)) hide)
  367. )
  368. (symbol "Conn_02x20_Odd_Even_1_1"
  369. (rectangle (start -1.27 -25.273) (end 0 -25.527)
  370. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  371. (fill (type none))
  372. )
  373. (rectangle (start -1.27 -22.733) (end 0 -22.987)
  374. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  375. (fill (type none))
  376. )
  377. (rectangle (start -1.27 -20.193) (end 0 -20.447)
  378. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  379. (fill (type none))
  380. )
  381. (rectangle (start -1.27 -17.653) (end 0 -17.907)
  382. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  383. (fill (type none))
  384. )
  385. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  386. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  387. (fill (type none))
  388. )
  389. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  390. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  391. (fill (type none))
  392. )
  393. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  394. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  395. (fill (type none))
  396. )
  397. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  398. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  399. (fill (type none))
  400. )
  401. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  402. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  403. (fill (type none))
  404. )
  405. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  406. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  407. (fill (type none))
  408. )
  409. (rectangle (start -1.27 0.127) (end 0 -0.127)
  410. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  411. (fill (type none))
  412. )
  413. (rectangle (start -1.27 2.667) (end 0 2.413)
  414. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  415. (fill (type none))
  416. )
  417. (rectangle (start -1.27 5.207) (end 0 4.953)
  418. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  419. (fill (type none))
  420. )
  421. (rectangle (start -1.27 7.747) (end 0 7.493)
  422. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  423. (fill (type none))
  424. )
  425. (rectangle (start -1.27 10.287) (end 0 10.033)
  426. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  427. (fill (type none))
  428. )
  429. (rectangle (start -1.27 12.827) (end 0 12.573)
  430. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  431. (fill (type none))
  432. )
  433. (rectangle (start -1.27 15.367) (end 0 15.113)
  434. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  435. (fill (type none))
  436. )
  437. (rectangle (start -1.27 17.907) (end 0 17.653)
  438. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  439. (fill (type none))
  440. )
  441. (rectangle (start -1.27 20.447) (end 0 20.193)
  442. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  443. (fill (type none))
  444. )
  445. (rectangle (start -1.27 22.987) (end 0 22.733)
  446. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  447. (fill (type none))
  448. )
  449. (rectangle (start -1.27 24.13) (end 3.81 -26.67)
  450. (stroke (width 0.254) (type default) (color 0 0 0 0))
  451. (fill (type background))
  452. )
  453. (rectangle (start 3.81 -25.273) (end 2.54 -25.527)
  454. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  455. (fill (type none))
  456. )
  457. (rectangle (start 3.81 -22.733) (end 2.54 -22.987)
  458. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  459. (fill (type none))
  460. )
  461. (rectangle (start 3.81 -20.193) (end 2.54 -20.447)
  462. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  463. (fill (type none))
  464. )
  465. (rectangle (start 3.81 -17.653) (end 2.54 -17.907)
  466. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  467. (fill (type none))
  468. )
  469. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  470. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  471. (fill (type none))
  472. )
  473. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  474. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  475. (fill (type none))
  476. )
  477. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  478. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  479. (fill (type none))
  480. )
  481. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  482. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  483. (fill (type none))
  484. )
  485. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  486. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  487. (fill (type none))
  488. )
  489. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  490. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  491. (fill (type none))
  492. )
  493. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  494. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  495. (fill (type none))
  496. )
  497. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  498. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  499. (fill (type none))
  500. )
  501. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  502. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  503. (fill (type none))
  504. )
  505. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  506. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  507. (fill (type none))
  508. )
  509. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  510. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  511. (fill (type none))
  512. )
  513. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  514. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  515. (fill (type none))
  516. )
  517. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  518. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  519. (fill (type none))
  520. )
  521. (rectangle (start 3.81 17.907) (end 2.54 17.653)
  522. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  523. (fill (type none))
  524. )
  525. (rectangle (start 3.81 20.447) (end 2.54 20.193)
  526. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  527. (fill (type none))
  528. )
  529. (rectangle (start 3.81 22.987) (end 2.54 22.733)
  530. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  531. (fill (type none))
  532. )
  533. (pin passive line (at -5.08 22.86 0) (length 3.81)
  534. (name "Pin_1" (effects (font (size 1.27 1.27))))
  535. (number "1" (effects (font (size 1.27 1.27))))
  536. )
  537. (pin passive line (at 7.62 12.7 180) (length 3.81)
  538. (name "Pin_10" (effects (font (size 1.27 1.27))))
  539. (number "10" (effects (font (size 1.27 1.27))))
  540. )
  541. (pin passive line (at -5.08 10.16 0) (length 3.81)
  542. (name "Pin_11" (effects (font (size 1.27 1.27))))
  543. (number "11" (effects (font (size 1.27 1.27))))
  544. )
  545. (pin passive line (at 7.62 10.16 180) (length 3.81)
  546. (name "Pin_12" (effects (font (size 1.27 1.27))))
  547. (number "12" (effects (font (size 1.27 1.27))))
  548. )
  549. (pin passive line (at -5.08 7.62 0) (length 3.81)
  550. (name "Pin_13" (effects (font (size 1.27 1.27))))
  551. (number "13" (effects (font (size 1.27 1.27))))
  552. )
  553. (pin passive line (at 7.62 7.62 180) (length 3.81)
  554. (name "Pin_14" (effects (font (size 1.27 1.27))))
  555. (number "14" (effects (font (size 1.27 1.27))))
  556. )
  557. (pin passive line (at -5.08 5.08 0) (length 3.81)
  558. (name "Pin_15" (effects (font (size 1.27 1.27))))
  559. (number "15" (effects (font (size 1.27 1.27))))
  560. )
  561. (pin passive line (at 7.62 5.08 180) (length 3.81)
  562. (name "Pin_16" (effects (font (size 1.27 1.27))))
  563. (number "16" (effects (font (size 1.27 1.27))))
  564. )
  565. (pin passive line (at -5.08 2.54 0) (length 3.81)
  566. (name "Pin_17" (effects (font (size 1.27 1.27))))
  567. (number "17" (effects (font (size 1.27 1.27))))
  568. )
  569. (pin passive line (at 7.62 2.54 180) (length 3.81)
  570. (name "Pin_18" (effects (font (size 1.27 1.27))))
  571. (number "18" (effects (font (size 1.27 1.27))))
  572. )
  573. (pin passive line (at -5.08 0 0) (length 3.81)
  574. (name "Pin_19" (effects (font (size 1.27 1.27))))
  575. (number "19" (effects (font (size 1.27 1.27))))
  576. )
  577. (pin passive line (at 7.62 22.86 180) (length 3.81)
  578. (name "Pin_2" (effects (font (size 1.27 1.27))))
  579. (number "2" (effects (font (size 1.27 1.27))))
  580. )
  581. (pin passive line (at 7.62 0 180) (length 3.81)
  582. (name "Pin_20" (effects (font (size 1.27 1.27))))
  583. (number "20" (effects (font (size 1.27 1.27))))
  584. )
  585. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  586. (name "Pin_21" (effects (font (size 1.27 1.27))))
  587. (number "21" (effects (font (size 1.27 1.27))))
  588. )
  589. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  590. (name "Pin_22" (effects (font (size 1.27 1.27))))
  591. (number "22" (effects (font (size 1.27 1.27))))
  592. )
  593. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  594. (name "Pin_23" (effects (font (size 1.27 1.27))))
  595. (number "23" (effects (font (size 1.27 1.27))))
  596. )
  597. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  598. (name "Pin_24" (effects (font (size 1.27 1.27))))
  599. (number "24" (effects (font (size 1.27 1.27))))
  600. )
  601. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  602. (name "Pin_25" (effects (font (size 1.27 1.27))))
  603. (number "25" (effects (font (size 1.27 1.27))))
  604. )
  605. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  606. (name "Pin_26" (effects (font (size 1.27 1.27))))
  607. (number "26" (effects (font (size 1.27 1.27))))
  608. )
  609. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  610. (name "Pin_27" (effects (font (size 1.27 1.27))))
  611. (number "27" (effects (font (size 1.27 1.27))))
  612. )
  613. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  614. (name "Pin_28" (effects (font (size 1.27 1.27))))
  615. (number "28" (effects (font (size 1.27 1.27))))
  616. )
  617. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  618. (name "Pin_29" (effects (font (size 1.27 1.27))))
  619. (number "29" (effects (font (size 1.27 1.27))))
  620. )
  621. (pin passive line (at -5.08 20.32 0) (length 3.81)
  622. (name "Pin_3" (effects (font (size 1.27 1.27))))
  623. (number "3" (effects (font (size 1.27 1.27))))
  624. )
  625. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  626. (name "Pin_30" (effects (font (size 1.27 1.27))))
  627. (number "30" (effects (font (size 1.27 1.27))))
  628. )
  629. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  630. (name "Pin_31" (effects (font (size 1.27 1.27))))
  631. (number "31" (effects (font (size 1.27 1.27))))
  632. )
  633. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  634. (name "Pin_32" (effects (font (size 1.27 1.27))))
  635. (number "32" (effects (font (size 1.27 1.27))))
  636. )
  637. (pin passive line (at -5.08 -17.78 0) (length 3.81)
  638. (name "Pin_33" (effects (font (size 1.27 1.27))))
  639. (number "33" (effects (font (size 1.27 1.27))))
  640. )
  641. (pin passive line (at 7.62 -17.78 180) (length 3.81)
  642. (name "Pin_34" (effects (font (size 1.27 1.27))))
  643. (number "34" (effects (font (size 1.27 1.27))))
  644. )
  645. (pin passive line (at -5.08 -20.32 0) (length 3.81)
  646. (name "Pin_35" (effects (font (size 1.27 1.27))))
  647. (number "35" (effects (font (size 1.27 1.27))))
  648. )
  649. (pin passive line (at 7.62 -20.32 180) (length 3.81)
  650. (name "Pin_36" (effects (font (size 1.27 1.27))))
  651. (number "36" (effects (font (size 1.27 1.27))))
  652. )
  653. (pin passive line (at -5.08 -22.86 0) (length 3.81)
  654. (name "Pin_37" (effects (font (size 1.27 1.27))))
  655. (number "37" (effects (font (size 1.27 1.27))))
  656. )
  657. (pin passive line (at 7.62 -22.86 180) (length 3.81)
  658. (name "Pin_38" (effects (font (size 1.27 1.27))))
  659. (number "38" (effects (font (size 1.27 1.27))))
  660. )
  661. (pin passive line (at -5.08 -25.4 0) (length 3.81)
  662. (name "Pin_39" (effects (font (size 1.27 1.27))))
  663. (number "39" (effects (font (size 1.27 1.27))))
  664. )
  665. (pin passive line (at 7.62 20.32 180) (length 3.81)
  666. (name "Pin_4" (effects (font (size 1.27 1.27))))
  667. (number "4" (effects (font (size 1.27 1.27))))
  668. )
  669. (pin passive line (at 7.62 -25.4 180) (length 3.81)
  670. (name "Pin_40" (effects (font (size 1.27 1.27))))
  671. (number "40" (effects (font (size 1.27 1.27))))
  672. )
  673. (pin passive line (at -5.08 17.78 0) (length 3.81)
  674. (name "Pin_5" (effects (font (size 1.27 1.27))))
  675. (number "5" (effects (font (size 1.27 1.27))))
  676. )
  677. (pin passive line (at 7.62 17.78 180) (length 3.81)
  678. (name "Pin_6" (effects (font (size 1.27 1.27))))
  679. (number "6" (effects (font (size 1.27 1.27))))
  680. )
  681. (pin passive line (at -5.08 15.24 0) (length 3.81)
  682. (name "Pin_7" (effects (font (size 1.27 1.27))))
  683. (number "7" (effects (font (size 1.27 1.27))))
  684. )
  685. (pin passive line (at 7.62 15.24 180) (length 3.81)
  686. (name "Pin_8" (effects (font (size 1.27 1.27))))
  687. (number "8" (effects (font (size 1.27 1.27))))
  688. )
  689. (pin passive line (at -5.08 12.7 0) (length 3.81)
  690. (name "Pin_9" (effects (font (size 1.27 1.27))))
  691. (number "9" (effects (font (size 1.27 1.27))))
  692. )
  693. )
  694. )
  695. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  696. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  697. (effects (font (size 1.27 1.27)) (justify left))
  698. )
  699. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  700. (effects (font (size 1.27 1.27)) (justify left))
  701. )
  702. (property "Footprint" "" (id 2) (at 0 0 0)
  703. (effects (font (size 1.27 1.27)) hide)
  704. )
  705. (property "Datasheet" "~" (id 3) (at 0 0 0)
  706. (effects (font (size 1.27 1.27)) hide)
  707. )
  708. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  709. (effects (font (size 1.27 1.27)) hide)
  710. )
  711. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  712. (effects (font (size 1.27 1.27)) hide)
  713. )
  714. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  715. (effects (font (size 1.27 1.27)) hide)
  716. )
  717. (symbol "C_Small_0_1"
  718. (polyline
  719. (pts
  720. (xy -1.524 -0.508)
  721. (xy 1.524 -0.508)
  722. )
  723. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  724. (fill (type none))
  725. )
  726. (polyline
  727. (pts
  728. (xy -1.524 0.508)
  729. (xy 1.524 0.508)
  730. )
  731. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  732. (fill (type none))
  733. )
  734. )
  735. (symbol "C_Small_1_1"
  736. (pin passive line (at 0 2.54 270) (length 2.032)
  737. (name "~" (effects (font (size 1.27 1.27))))
  738. (number "1" (effects (font (size 1.27 1.27))))
  739. )
  740. (pin passive line (at 0 -2.54 90) (length 2.032)
  741. (name "~" (effects (font (size 1.27 1.27))))
  742. (number "2" (effects (font (size 1.27 1.27))))
  743. )
  744. )
  745. )
  746. (symbol "Device:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  747. (property "Reference" "Y" (id 0) (at 0 3.81 0)
  748. (effects (font (size 1.27 1.27)))
  749. )
  750. (property "Value" "Crystal" (id 1) (at 0 -3.81 0)
  751. (effects (font (size 1.27 1.27)))
  752. )
  753. (property "Footprint" "" (id 2) (at 0 0 0)
  754. (effects (font (size 1.27 1.27)) hide)
  755. )
  756. (property "Datasheet" "~" (id 3) (at 0 0 0)
  757. (effects (font (size 1.27 1.27)) hide)
  758. )
  759. (property "ki_keywords" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
  760. (effects (font (size 1.27 1.27)) hide)
  761. )
  762. (property "ki_description" "Two pin crystal" (id 5) (at 0 0 0)
  763. (effects (font (size 1.27 1.27)) hide)
  764. )
  765. (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
  766. (effects (font (size 1.27 1.27)) hide)
  767. )
  768. (symbol "Crystal_0_1"
  769. (rectangle (start -1.143 2.54) (end 1.143 -2.54)
  770. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  771. (fill (type none))
  772. )
  773. (polyline
  774. (pts
  775. (xy -2.54 0)
  776. (xy -1.905 0)
  777. )
  778. (stroke (width 0) (type default) (color 0 0 0 0))
  779. (fill (type none))
  780. )
  781. (polyline
  782. (pts
  783. (xy -1.905 -1.27)
  784. (xy -1.905 1.27)
  785. )
  786. (stroke (width 0.508) (type default) (color 0 0 0 0))
  787. (fill (type none))
  788. )
  789. (polyline
  790. (pts
  791. (xy 1.905 -1.27)
  792. (xy 1.905 1.27)
  793. )
  794. (stroke (width 0.508) (type default) (color 0 0 0 0))
  795. (fill (type none))
  796. )
  797. (polyline
  798. (pts
  799. (xy 2.54 0)
  800. (xy 1.905 0)
  801. )
  802. (stroke (width 0) (type default) (color 0 0 0 0))
  803. (fill (type none))
  804. )
  805. )
  806. (symbol "Crystal_1_1"
  807. (pin passive line (at -3.81 0 0) (length 1.27)
  808. (name "1" (effects (font (size 1.27 1.27))))
  809. (number "1" (effects (font (size 1.27 1.27))))
  810. )
  811. (pin passive line (at 3.81 0 180) (length 1.27)
  812. (name "2" (effects (font (size 1.27 1.27))))
  813. (number "2" (effects (font (size 1.27 1.27))))
  814. )
  815. )
  816. )
  817. (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  818. (property "Reference" "D" (id 0) (at 0 2.54 0)
  819. (effects (font (size 1.27 1.27)))
  820. )
  821. (property "Value" "D_Schottky" (id 1) (at 0 -2.54 0)
  822. (effects (font (size 1.27 1.27)))
  823. )
  824. (property "Footprint" "" (id 2) (at 0 0 0)
  825. (effects (font (size 1.27 1.27)) hide)
  826. )
  827. (property "Datasheet" "~" (id 3) (at 0 0 0)
  828. (effects (font (size 1.27 1.27)) hide)
  829. )
  830. (property "ki_keywords" "diode Schottky" (id 4) (at 0 0 0)
  831. (effects (font (size 1.27 1.27)) hide)
  832. )
  833. (property "ki_description" "Schottky diode" (id 5) (at 0 0 0)
  834. (effects (font (size 1.27 1.27)) hide)
  835. )
  836. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
  837. (effects (font (size 1.27 1.27)) hide)
  838. )
  839. (symbol "D_Schottky_0_1"
  840. (polyline
  841. (pts
  842. (xy 1.27 0)
  843. (xy -1.27 0)
  844. )
  845. (stroke (width 0) (type default) (color 0 0 0 0))
  846. (fill (type none))
  847. )
  848. (polyline
  849. (pts
  850. (xy 1.27 1.27)
  851. (xy 1.27 -1.27)
  852. (xy -1.27 0)
  853. (xy 1.27 1.27)
  854. )
  855. (stroke (width 0.254) (type default) (color 0 0 0 0))
  856. (fill (type none))
  857. )
  858. (polyline
  859. (pts
  860. (xy -1.905 0.635)
  861. (xy -1.905 1.27)
  862. (xy -1.27 1.27)
  863. (xy -1.27 -1.27)
  864. (xy -0.635 -1.27)
  865. (xy -0.635 -0.635)
  866. )
  867. (stroke (width 0.254) (type default) (color 0 0 0 0))
  868. (fill (type none))
  869. )
  870. )
  871. (symbol "D_Schottky_1_1"
  872. (pin passive line (at -3.81 0 0) (length 2.54)
  873. (name "K" (effects (font (size 1.27 1.27))))
  874. (number "1" (effects (font (size 1.27 1.27))))
  875. )
  876. (pin passive line (at 3.81 0 180) (length 2.54)
  877. (name "A" (effects (font (size 1.27 1.27))))
  878. (number "2" (effects (font (size 1.27 1.27))))
  879. )
  880. )
  881. )
  882. (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  883. (property "Reference" "D" (id 0) (at 0 2.54 0)
  884. (effects (font (size 1.27 1.27)))
  885. )
  886. (property "Value" "LED" (id 1) (at 0 -2.54 0)
  887. (effects (font (size 1.27 1.27)))
  888. )
  889. (property "Footprint" "" (id 2) (at 0 0 0)
  890. (effects (font (size 1.27 1.27)) hide)
  891. )
  892. (property "Datasheet" "~" (id 3) (at 0 0 0)
  893. (effects (font (size 1.27 1.27)) hide)
  894. )
  895. (property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
  896. (effects (font (size 1.27 1.27)) hide)
  897. )
  898. (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
  899. (effects (font (size 1.27 1.27)) hide)
  900. )
  901. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
  902. (effects (font (size 1.27 1.27)) hide)
  903. )
  904. (symbol "LED_0_1"
  905. (polyline
  906. (pts
  907. (xy -1.27 -1.27)
  908. (xy -1.27 1.27)
  909. )
  910. (stroke (width 0.254) (type default) (color 0 0 0 0))
  911. (fill (type none))
  912. )
  913. (polyline
  914. (pts
  915. (xy -1.27 0)
  916. (xy 1.27 0)
  917. )
  918. (stroke (width 0) (type default) (color 0 0 0 0))
  919. (fill (type none))
  920. )
  921. (polyline
  922. (pts
  923. (xy 1.27 -1.27)
  924. (xy 1.27 1.27)
  925. (xy -1.27 0)
  926. (xy 1.27 -1.27)
  927. )
  928. (stroke (width 0.254) (type default) (color 0 0 0 0))
  929. (fill (type none))
  930. )
  931. (polyline
  932. (pts
  933. (xy -3.048 -0.762)
  934. (xy -4.572 -2.286)
  935. (xy -3.81 -2.286)
  936. (xy -4.572 -2.286)
  937. (xy -4.572 -1.524)
  938. )
  939. (stroke (width 0) (type default) (color 0 0 0 0))
  940. (fill (type none))
  941. )
  942. (polyline
  943. (pts
  944. (xy -1.778 -0.762)
  945. (xy -3.302 -2.286)
  946. (xy -2.54 -2.286)
  947. (xy -3.302 -2.286)
  948. (xy -3.302 -1.524)
  949. )
  950. (stroke (width 0) (type default) (color 0 0 0 0))
  951. (fill (type none))
  952. )
  953. )
  954. (symbol "LED_1_1"
  955. (pin passive line (at -3.81 0 0) (length 2.54)
  956. (name "K" (effects (font (size 1.27 1.27))))
  957. (number "1" (effects (font (size 1.27 1.27))))
  958. )
  959. (pin passive line (at 3.81 0 180) (length 2.54)
  960. (name "A" (effects (font (size 1.27 1.27))))
  961. (number "2" (effects (font (size 1.27 1.27))))
  962. )
  963. )
  964. )
  965. (symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  966. (property "Reference" "L" (id 0) (at 0.762 1.016 0)
  967. (effects (font (size 1.27 1.27)) (justify left))
  968. )
  969. (property "Value" "L_Small" (id 1) (at 0.762 -1.016 0)
  970. (effects (font (size 1.27 1.27)) (justify left))
  971. )
  972. (property "Footprint" "" (id 2) (at 0 0 0)
  973. (effects (font (size 1.27 1.27)) hide)
  974. )
  975. (property "Datasheet" "~" (id 3) (at 0 0 0)
  976. (effects (font (size 1.27 1.27)) hide)
  977. )
  978. (property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
  979. (effects (font (size 1.27 1.27)) hide)
  980. )
  981. (property "ki_description" "Inductor, small symbol" (id 5) (at 0 0 0)
  982. (effects (font (size 1.27 1.27)) hide)
  983. )
  984. (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
  985. (effects (font (size 1.27 1.27)) hide)
  986. )
  987. (symbol "L_Small_0_1"
  988. (arc (start 0 -2.032) (mid 0.508 -1.524) (end 0 -1.016)
  989. (stroke (width 0) (type default) (color 0 0 0 0))
  990. (fill (type none))
  991. )
  992. (arc (start 0 -1.016) (mid 0.508 -0.508) (end 0 0)
  993. (stroke (width 0) (type default) (color 0 0 0 0))
  994. (fill (type none))
  995. )
  996. (arc (start 0 0) (mid 0.508 0.508) (end 0 1.016)
  997. (stroke (width 0) (type default) (color 0 0 0 0))
  998. (fill (type none))
  999. )
  1000. (arc (start 0 1.016) (mid 0.508 1.524) (end 0 2.032)
  1001. (stroke (width 0) (type default) (color 0 0 0 0))
  1002. (fill (type none))
  1003. )
  1004. )
  1005. (symbol "L_Small_1_1"
  1006. (pin passive line (at 0 2.54 270) (length 0.508)
  1007. (name "~" (effects (font (size 1.27 1.27))))
  1008. (number "1" (effects (font (size 1.27 1.27))))
  1009. )
  1010. (pin passive line (at 0 -2.54 90) (length 0.508)
  1011. (name "~" (effects (font (size 1.27 1.27))))
  1012. (number "2" (effects (font (size 1.27 1.27))))
  1013. )
  1014. )
  1015. )
  1016. (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1017. (property "Reference" "F" (id 0) (at -2.54 0 90)
  1018. (effects (font (size 1.27 1.27)))
  1019. )
  1020. (property "Value" "Polyfuse" (id 1) (at 2.54 0 90)
  1021. (effects (font (size 1.27 1.27)))
  1022. )
  1023. (property "Footprint" "" (id 2) (at 1.27 -5.08 0)
  1024. (effects (font (size 1.27 1.27)) (justify left) hide)
  1025. )
  1026. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1027. (effects (font (size 1.27 1.27)) hide)
  1028. )
  1029. (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (id 4) (at 0 0 0)
  1030. (effects (font (size 1.27 1.27)) hide)
  1031. )
  1032. (property "ki_description" "Resettable fuse, polymeric positive temperature coefficient" (id 5) (at 0 0 0)
  1033. (effects (font (size 1.27 1.27)) hide)
  1034. )
  1035. (property "ki_fp_filters" "*polyfuse* *PTC*" (id 6) (at 0 0 0)
  1036. (effects (font (size 1.27 1.27)) hide)
  1037. )
  1038. (symbol "Polyfuse_0_1"
  1039. (rectangle (start -0.762 2.54) (end 0.762 -2.54)
  1040. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1041. (fill (type none))
  1042. )
  1043. (polyline
  1044. (pts
  1045. (xy 0 2.54)
  1046. (xy 0 -2.54)
  1047. )
  1048. (stroke (width 0) (type default) (color 0 0 0 0))
  1049. (fill (type none))
  1050. )
  1051. (polyline
  1052. (pts
  1053. (xy -1.524 2.54)
  1054. (xy -1.524 1.524)
  1055. (xy 1.524 -1.524)
  1056. (xy 1.524 -2.54)
  1057. )
  1058. (stroke (width 0) (type default) (color 0 0 0 0))
  1059. (fill (type none))
  1060. )
  1061. )
  1062. (symbol "Polyfuse_1_1"
  1063. (pin passive line (at 0 3.81 270) (length 1.27)
  1064. (name "~" (effects (font (size 1.27 1.27))))
  1065. (number "1" (effects (font (size 1.27 1.27))))
  1066. )
  1067. (pin passive line (at 0 -3.81 90) (length 1.27)
  1068. (name "~" (effects (font (size 1.27 1.27))))
  1069. (number "2" (effects (font (size 1.27 1.27))))
  1070. )
  1071. )
  1072. )
  1073. (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1074. (property "Reference" "R" (id 0) (at 2.032 0 90)
  1075. (effects (font (size 1.27 1.27)))
  1076. )
  1077. (property "Value" "R" (id 1) (at 0 0 90)
  1078. (effects (font (size 1.27 1.27)))
  1079. )
  1080. (property "Footprint" "" (id 2) (at -1.778 0 90)
  1081. (effects (font (size 1.27 1.27)) hide)
  1082. )
  1083. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1084. (effects (font (size 1.27 1.27)) hide)
  1085. )
  1086. (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
  1087. (effects (font (size 1.27 1.27)) hide)
  1088. )
  1089. (property "ki_description" "Resistor" (id 5) (at 0 0 0)
  1090. (effects (font (size 1.27 1.27)) hide)
  1091. )
  1092. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  1093. (effects (font (size 1.27 1.27)) hide)
  1094. )
  1095. (symbol "R_0_1"
  1096. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  1097. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1098. (fill (type none))
  1099. )
  1100. )
  1101. (symbol "R_1_1"
  1102. (pin passive line (at 0 3.81 270) (length 1.27)
  1103. (name "~" (effects (font (size 1.27 1.27))))
  1104. (number "1" (effects (font (size 1.27 1.27))))
  1105. )
  1106. (pin passive line (at 0 -3.81 90) (length 1.27)
  1107. (name "~" (effects (font (size 1.27 1.27))))
  1108. (number "2" (effects (font (size 1.27 1.27))))
  1109. )
  1110. )
  1111. )
  1112. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1113. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  1114. (effects (font (size 1.27 1.27)) (justify left))
  1115. )
  1116. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  1117. (effects (font (size 1.27 1.27)) (justify left))
  1118. )
  1119. (property "Footprint" "" (id 2) (at 0 0 0)
  1120. (effects (font (size 1.27 1.27)) hide)
  1121. )
  1122. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1123. (effects (font (size 1.27 1.27)) hide)
  1124. )
  1125. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  1126. (effects (font (size 1.27 1.27)) hide)
  1127. )
  1128. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  1129. (effects (font (size 1.27 1.27)) hide)
  1130. )
  1131. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  1132. (effects (font (size 1.27 1.27)) hide)
  1133. )
  1134. (symbol "R_Small_0_1"
  1135. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  1136. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  1137. (fill (type none))
  1138. )
  1139. )
  1140. (symbol "R_Small_1_1"
  1141. (pin passive line (at 0 2.54 270) (length 0.762)
  1142. (name "~" (effects (font (size 1.27 1.27))))
  1143. (number "1" (effects (font (size 1.27 1.27))))
  1144. )
  1145. (pin passive line (at 0 -2.54 90) (length 0.762)
  1146. (name "~" (effects (font (size 1.27 1.27))))
  1147. (number "2" (effects (font (size 1.27 1.27))))
  1148. )
  1149. )
  1150. )
  1151. (symbol "Logic_LevelTranslator:TXS0108EPW" (in_bom yes) (on_board yes)
  1152. (property "Reference" "U" (id 0) (at -6.35 16.51 0)
  1153. (effects (font (size 1.27 1.27)))
  1154. )
  1155. (property "Value" "TXS0108EPW" (id 1) (at 3.81 16.51 0)
  1156. (effects (font (size 1.27 1.27)) (justify left))
  1157. )
  1158. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (id 2) (at 0 -19.05 0)
  1159. (effects (font (size 1.27 1.27)) hide)
  1160. )
  1161. (property "Datasheet" "www.ti.com/lit/ds/symlink/txs0108e.pdf" (id 3) (at 0 -2.54 0)
  1162. (effects (font (size 1.27 1.27)) hide)
  1163. )
  1164. (property "ki_keywords" "8-bit" (id 4) (at 0 0 0)
  1165. (effects (font (size 1.27 1.27)) hide)
  1166. )
  1167. (property "ki_description" "Bidirectional level-shifting voltage translator, TSSOP-20" (id 5) (at 0 0 0)
  1168. (effects (font (size 1.27 1.27)) hide)
  1169. )
  1170. (property "ki_fp_filters" "*SSOP*4.4x6.5mm*P0.65mm*" (id 6) (at 0 0 0)
  1171. (effects (font (size 1.27 1.27)) hide)
  1172. )
  1173. (symbol "TXS0108EPW_0_1"
  1174. (rectangle (start -7.62 15.24) (end 7.62 -15.24)
  1175. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1176. (fill (type background))
  1177. )
  1178. )
  1179. (symbol "TXS0108EPW_1_1"
  1180. (pin bidirectional line (at -10.16 7.62 0) (length 2.54)
  1181. (name "A1" (effects (font (size 1.27 1.27))))
  1182. (number "1" (effects (font (size 1.27 1.27))))
  1183. )
  1184. (pin input line (at -10.16 10.16 0) (length 2.54)
  1185. (name "OE" (effects (font (size 1.27 1.27))))
  1186. (number "10" (effects (font (size 1.27 1.27))))
  1187. )
  1188. (pin power_in line (at 0 -17.78 90) (length 2.54)
  1189. (name "GND" (effects (font (size 1.27 1.27))))
  1190. (number "11" (effects (font (size 1.27 1.27))))
  1191. )
  1192. (pin bidirectional line (at 10.16 -10.16 180) (length 2.54)
  1193. (name "B8" (effects (font (size 1.27 1.27))))
  1194. (number "12" (effects (font (size 1.27 1.27))))
  1195. )
  1196. (pin bidirectional line (at 10.16 -7.62 180) (length 2.54)
  1197. (name "B7" (effects (font (size 1.27 1.27))))
  1198. (number "13" (effects (font (size 1.27 1.27))))
  1199. )
  1200. (pin bidirectional line (at 10.16 -5.08 180) (length 2.54)
  1201. (name "B6" (effects (font (size 1.27 1.27))))
  1202. (number "14" (effects (font (size 1.27 1.27))))
  1203. )
  1204. (pin bidirectional line (at 10.16 -2.54 180) (length 2.54)
  1205. (name "B5" (effects (font (size 1.27 1.27))))
  1206. (number "15" (effects (font (size 1.27 1.27))))
  1207. )
  1208. (pin bidirectional line (at 10.16 0 180) (length 2.54)
  1209. (name "B4" (effects (font (size 1.27 1.27))))
  1210. (number "16" (effects (font (size 1.27 1.27))))
  1211. )
  1212. (pin bidirectional line (at 10.16 2.54 180) (length 2.54)
  1213. (name "B3" (effects (font (size 1.27 1.27))))
  1214. (number "17" (effects (font (size 1.27 1.27))))
  1215. )
  1216. (pin bidirectional line (at 10.16 5.08 180) (length 2.54)
  1217. (name "B2" (effects (font (size 1.27 1.27))))
  1218. (number "18" (effects (font (size 1.27 1.27))))
  1219. )
  1220. (pin power_in line (at 2.54 17.78 270) (length 2.54)
  1221. (name "VCCB" (effects (font (size 1.27 1.27))))
  1222. (number "19" (effects (font (size 1.27 1.27))))
  1223. )
  1224. (pin power_in line (at -2.54 17.78 270) (length 2.54)
  1225. (name "VCCA" (effects (font (size 1.27 1.27))))
  1226. (number "2" (effects (font (size 1.27 1.27))))
  1227. )
  1228. (pin bidirectional line (at 10.16 7.62 180) (length 2.54)
  1229. (name "B1" (effects (font (size 1.27 1.27))))
  1230. (number "20" (effects (font (size 1.27 1.27))))
  1231. )
  1232. (pin bidirectional line (at -10.16 5.08 0) (length 2.54)
  1233. (name "A2" (effects (font (size 1.27 1.27))))
  1234. (number "3" (effects (font (size 1.27 1.27))))
  1235. )
  1236. (pin bidirectional line (at -10.16 2.54 0) (length 2.54)
  1237. (name "A3" (effects (font (size 1.27 1.27))))
  1238. (number "4" (effects (font (size 1.27 1.27))))
  1239. )
  1240. (pin bidirectional line (at -10.16 0 0) (length 2.54)
  1241. (name "A4" (effects (font (size 1.27 1.27))))
  1242. (number "5" (effects (font (size 1.27 1.27))))
  1243. )
  1244. (pin bidirectional line (at -10.16 -2.54 0) (length 2.54)
  1245. (name "A5" (effects (font (size 1.27 1.27))))
  1246. (number "6" (effects (font (size 1.27 1.27))))
  1247. )
  1248. (pin bidirectional line (at -10.16 -5.08 0) (length 2.54)
  1249. (name "A6" (effects (font (size 1.27 1.27))))
  1250. (number "7" (effects (font (size 1.27 1.27))))
  1251. )
  1252. (pin bidirectional line (at -10.16 -7.62 0) (length 2.54)
  1253. (name "A7" (effects (font (size 1.27 1.27))))
  1254. (number "8" (effects (font (size 1.27 1.27))))
  1255. )
  1256. (pin bidirectional line (at -10.16 -10.16 0) (length 2.54)
  1257. (name "A8" (effects (font (size 1.27 1.27))))
  1258. (number "9" (effects (font (size 1.27 1.27))))
  1259. )
  1260. )
  1261. )
  1262. (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1263. (property "Reference" "H" (id 0) (at 0 6.35 0)
  1264. (effects (font (size 1.27 1.27)))
  1265. )
  1266. (property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 0)
  1267. (effects (font (size 1.27 1.27)))
  1268. )
  1269. (property "Footprint" "" (id 2) (at 0 0 0)
  1270. (effects (font (size 1.27 1.27)) hide)
  1271. )
  1272. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1273. (effects (font (size 1.27 1.27)) hide)
  1274. )
  1275. (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
  1276. (effects (font (size 1.27 1.27)) hide)
  1277. )
  1278. (property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0)
  1279. (effects (font (size 1.27 1.27)) hide)
  1280. )
  1281. (property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0)
  1282. (effects (font (size 1.27 1.27)) hide)
  1283. )
  1284. (symbol "MountingHole_Pad_0_1"
  1285. (circle (center 0 1.27) (radius 1.27)
  1286. (stroke (width 1.27) (type default) (color 0 0 0 0))
  1287. (fill (type none))
  1288. )
  1289. )
  1290. (symbol "MountingHole_Pad_1_1"
  1291. (pin input line (at 0 -2.54 90) (length 2.54)
  1292. (name "1" (effects (font (size 1.27 1.27))))
  1293. (number "1" (effects (font (size 1.27 1.27))))
  1294. )
  1295. )
  1296. )
  1297. (symbol "Oscillator:ASCO" (in_bom yes) (on_board yes)
  1298. (property "Reference" "X" (id 0) (at -7.62 6.35 0)
  1299. (effects (font (size 1.27 1.27)) (justify left))
  1300. )
  1301. (property "Value" "ASCO" (id 1) (at 1.27 -6.35 0)
  1302. (effects (font (size 1.27 1.27)) (justify left))
  1303. )
  1304. (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASCO-4Pin_1.6x1.2mm" (id 2) (at 2.54 -8.89 0)
  1305. (effects (font (size 1.27 1.27)) hide)
  1306. )
  1307. (property "Datasheet" "https://abracon.com/Oscillators/ASCO.pdf" (id 3) (at -5.715 3.175 0)
  1308. (effects (font (size 1.27 1.27)) hide)
  1309. )
  1310. (property "ki_keywords" "Crystal Clock Oscillator" (id 4) (at 0 0 0)
  1311. (effects (font (size 1.27 1.27)) hide)
  1312. )
  1313. (property "ki_description" "Crystal Clock Oscillator, Abracon ASCO" (id 5) (at 0 0 0)
  1314. (effects (font (size 1.27 1.27)) hide)
  1315. )
  1316. (property "ki_fp_filters" "Oscillator*Abracon*ASCO*1.6x1.2mm*" (id 6) (at 0 0 0)
  1317. (effects (font (size 1.27 1.27)) hide)
  1318. )
  1319. (symbol "ASCO_0_1"
  1320. (rectangle (start -7.62 5.08) (end 7.62 -5.08)
  1321. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1322. (fill (type background))
  1323. )
  1324. (polyline
  1325. (pts
  1326. (xy -5.715 2.54)
  1327. (xy -5.08 2.54)
  1328. (xy -5.08 3.81)
  1329. (xy -4.445 3.81)
  1330. (xy -4.445 2.54)
  1331. (xy -3.81 2.54)
  1332. (xy -3.81 3.81)
  1333. (xy -3.175 3.81)
  1334. (xy -3.175 2.54)
  1335. )
  1336. (stroke (width 0) (type default) (color 0 0 0 0))
  1337. (fill (type none))
  1338. )
  1339. )
  1340. (symbol "ASCO_1_1"
  1341. (pin input line (at -10.16 0 0) (length 2.54)
  1342. (name "Tri-State" (effects (font (size 1.27 1.27))))
  1343. (number "1" (effects (font (size 1.27 1.27))))
  1344. )
  1345. (pin power_in line (at 0 -7.62 90) (length 2.54)
  1346. (name "GND" (effects (font (size 1.27 1.27))))
  1347. (number "2" (effects (font (size 1.27 1.27))))
  1348. )
  1349. (pin output line (at 10.16 0 180) (length 2.54)
  1350. (name "OUT" (effects (font (size 1.27 1.27))))
  1351. (number "3" (effects (font (size 1.27 1.27))))
  1352. )
  1353. (pin power_in line (at 0 7.62 270) (length 2.54)
  1354. (name "VDD" (effects (font (size 1.27 1.27))))
  1355. (number "4" (effects (font (size 1.27 1.27))))
  1356. )
  1357. )
  1358. )
  1359. (symbol "Power_Protection:USBLC6-2SC6" (pin_names hide) (in_bom yes) (on_board yes)
  1360. (property "Reference" "U" (id 0) (at 2.54 8.89 0)
  1361. (effects (font (size 1.27 1.27)) (justify left))
  1362. )
  1363. (property "Value" "USBLC6-2SC6" (id 1) (at 2.54 -8.89 0)
  1364. (effects (font (size 1.27 1.27)) (justify left))
  1365. )
  1366. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 0 -12.7 0)
  1367. (effects (font (size 1.27 1.27)) hide)
  1368. )
  1369. (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" (id 3) (at 5.08 8.89 0)
  1370. (effects (font (size 1.27 1.27)) hide)
  1371. )
  1372. (property "ki_keywords" "usb ethernet video" (id 4) (at 0 0 0)
  1373. (effects (font (size 1.27 1.27)) hide)
  1374. )
  1375. (property "ki_description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6" (id 5) (at 0 0 0)
  1376. (effects (font (size 1.27 1.27)) hide)
  1377. )
  1378. (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
  1379. (effects (font (size 1.27 1.27)) hide)
  1380. )
  1381. (symbol "USBLC6-2SC6_0_1"
  1382. (rectangle (start -7.62 -7.62) (end 7.62 7.62)
  1383. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1384. (fill (type background))
  1385. )
  1386. (circle (center -5.08 0) (radius 0.254)
  1387. (stroke (width 0) (type default) (color 0 0 0 0))
  1388. (fill (type outline))
  1389. )
  1390. (circle (center -2.54 0) (radius 0.254)
  1391. (stroke (width 0) (type default) (color 0 0 0 0))
  1392. (fill (type outline))
  1393. )
  1394. (rectangle (start -2.54 6.35) (end 2.54 -6.35)
  1395. (stroke (width 0) (type default) (color 0 0 0 0))
  1396. (fill (type none))
  1397. )
  1398. (circle (center 0 -6.35) (radius 0.254)
  1399. (stroke (width 0) (type default) (color 0 0 0 0))
  1400. (fill (type outline))
  1401. )
  1402. (polyline
  1403. (pts
  1404. (xy -5.08 -2.54)
  1405. (xy -7.62 -2.54)
  1406. )
  1407. (stroke (width 0) (type default) (color 0 0 0 0))
  1408. (fill (type none))
  1409. )
  1410. (polyline
  1411. (pts
  1412. (xy -5.08 0)
  1413. (xy -5.08 -2.54)
  1414. )
  1415. (stroke (width 0) (type default) (color 0 0 0 0))
  1416. (fill (type none))
  1417. )
  1418. (polyline
  1419. (pts
  1420. (xy -5.08 2.54)
  1421. (xy -7.62 2.54)
  1422. )
  1423. (stroke (width 0) (type default) (color 0 0 0 0))
  1424. (fill (type none))
  1425. )
  1426. (polyline
  1427. (pts
  1428. (xy -1.524 -2.794)
  1429. (xy -3.556 -2.794)
  1430. )
  1431. (stroke (width 0) (type default) (color 0 0 0 0))
  1432. (fill (type none))
  1433. )
  1434. (polyline
  1435. (pts
  1436. (xy -1.524 4.826)
  1437. (xy -3.556 4.826)
  1438. )
  1439. (stroke (width 0) (type default) (color 0 0 0 0))
  1440. (fill (type none))
  1441. )
  1442. (polyline
  1443. (pts
  1444. (xy 0 -7.62)
  1445. (xy 0 -6.35)
  1446. )
  1447. (stroke (width 0) (type default) (color 0 0 0 0))
  1448. (fill (type none))
  1449. )
  1450. (polyline
  1451. (pts
  1452. (xy 0 -6.35)
  1453. (xy 0 1.27)
  1454. )
  1455. (stroke (width 0) (type default) (color 0 0 0 0))
  1456. (fill (type none))
  1457. )
  1458. (polyline
  1459. (pts
  1460. (xy 0 1.27)
  1461. (xy 0 6.35)
  1462. )
  1463. (stroke (width 0) (type default) (color 0 0 0 0))
  1464. (fill (type none))
  1465. )
  1466. (polyline
  1467. (pts
  1468. (xy 0 6.35)
  1469. (xy 0 7.62)
  1470. )
  1471. (stroke (width 0) (type default) (color 0 0 0 0))
  1472. (fill (type none))
  1473. )
  1474. (polyline
  1475. (pts
  1476. (xy 1.524 -2.794)
  1477. (xy 3.556 -2.794)
  1478. )
  1479. (stroke (width 0) (type default) (color 0 0 0 0))
  1480. (fill (type none))
  1481. )
  1482. (polyline
  1483. (pts
  1484. (xy 1.524 4.826)
  1485. (xy 3.556 4.826)
  1486. )
  1487. (stroke (width 0) (type default) (color 0 0 0 0))
  1488. (fill (type none))
  1489. )
  1490. (polyline
  1491. (pts
  1492. (xy 5.08 -2.54)
  1493. (xy 7.62 -2.54)
  1494. )
  1495. (stroke (width 0) (type default) (color 0 0 0 0))
  1496. (fill (type none))
  1497. )
  1498. (polyline
  1499. (pts
  1500. (xy 5.08 0)
  1501. (xy 5.08 -2.54)
  1502. )
  1503. (stroke (width 0) (type default) (color 0 0 0 0))
  1504. (fill (type none))
  1505. )
  1506. (polyline
  1507. (pts
  1508. (xy 5.08 2.54)
  1509. (xy 7.62 2.54)
  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 0)
  1517. (xy -5.08 0)
  1518. (xy -5.08 2.54)
  1519. )
  1520. (stroke (width 0) (type default) (color 0 0 0 0))
  1521. (fill (type none))
  1522. )
  1523. (polyline
  1524. (pts
  1525. (xy 2.54 0)
  1526. (xy 5.08 0)
  1527. (xy 5.08 2.54)
  1528. )
  1529. (stroke (width 0) (type default) (color 0 0 0 0))
  1530. (fill (type none))
  1531. )
  1532. (polyline
  1533. (pts
  1534. (xy -3.556 -4.826)
  1535. (xy -1.524 -4.826)
  1536. (xy -2.54 -2.794)
  1537. (xy -3.556 -4.826)
  1538. )
  1539. (stroke (width 0) (type default) (color 0 0 0 0))
  1540. (fill (type none))
  1541. )
  1542. (polyline
  1543. (pts
  1544. (xy -3.556 2.794)
  1545. (xy -1.524 2.794)
  1546. (xy -2.54 4.826)
  1547. (xy -3.556 2.794)
  1548. )
  1549. (stroke (width 0) (type default) (color 0 0 0 0))
  1550. (fill (type none))
  1551. )
  1552. (polyline
  1553. (pts
  1554. (xy -1.016 -1.016)
  1555. (xy 1.016 -1.016)
  1556. (xy 0 1.016)
  1557. (xy -1.016 -1.016)
  1558. )
  1559. (stroke (width 0) (type default) (color 0 0 0 0))
  1560. (fill (type none))
  1561. )
  1562. (polyline
  1563. (pts
  1564. (xy 1.016 1.016)
  1565. (xy 0.762 1.016)
  1566. (xy -1.016 1.016)
  1567. (xy -1.016 0.508)
  1568. )
  1569. (stroke (width 0) (type default) (color 0 0 0 0))
  1570. (fill (type none))
  1571. )
  1572. (polyline
  1573. (pts
  1574. (xy 3.556 -4.826)
  1575. (xy 1.524 -4.826)
  1576. (xy 2.54 -2.794)
  1577. (xy 3.556 -4.826)
  1578. )
  1579. (stroke (width 0) (type default) (color 0 0 0 0))
  1580. (fill (type none))
  1581. )
  1582. (polyline
  1583. (pts
  1584. (xy 3.556 2.794)
  1585. (xy 1.524 2.794)
  1586. (xy 2.54 4.826)
  1587. (xy 3.556 2.794)
  1588. )
  1589. (stroke (width 0) (type default) (color 0 0 0 0))
  1590. (fill (type none))
  1591. )
  1592. (circle (center 0 6.35) (radius 0.254)
  1593. (stroke (width 0) (type default) (color 0 0 0 0))
  1594. (fill (type outline))
  1595. )
  1596. (circle (center 2.54 0) (radius 0.254)
  1597. (stroke (width 0) (type default) (color 0 0 0 0))
  1598. (fill (type outline))
  1599. )
  1600. (circle (center 5.08 0) (radius 0.254)
  1601. (stroke (width 0) (type default) (color 0 0 0 0))
  1602. (fill (type outline))
  1603. )
  1604. )
  1605. (symbol "USBLC6-2SC6_1_1"
  1606. (pin passive line (at -10.16 -2.54 0) (length 2.54)
  1607. (name "I/O1" (effects (font (size 1.27 1.27))))
  1608. (number "1" (effects (font (size 1.27 1.27))))
  1609. )
  1610. (pin passive line (at 0 -10.16 90) (length 2.54)
  1611. (name "GND" (effects (font (size 1.27 1.27))))
  1612. (number "2" (effects (font (size 1.27 1.27))))
  1613. )
  1614. (pin passive line (at 10.16 -2.54 180) (length 2.54)
  1615. (name "I/O2" (effects (font (size 1.27 1.27))))
  1616. (number "3" (effects (font (size 1.27 1.27))))
  1617. )
  1618. (pin passive line (at 10.16 2.54 180) (length 2.54)
  1619. (name "I/O2" (effects (font (size 1.27 1.27))))
  1620. (number "4" (effects (font (size 1.27 1.27))))
  1621. )
  1622. (pin passive line (at 0 10.16 270) (length 2.54)
  1623. (name "VBUS" (effects (font (size 1.27 1.27))))
  1624. (number "5" (effects (font (size 1.27 1.27))))
  1625. )
  1626. (pin passive line (at -10.16 2.54 0) (length 2.54)
  1627. (name "I/O1" (effects (font (size 1.27 1.27))))
  1628. (number "6" (effects (font (size 1.27 1.27))))
  1629. )
  1630. )
  1631. )
  1632. (symbol "Regulator_Linear:AMS1117-3.3" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1633. (property "Reference" "U" (id 0) (at -3.81 3.175 0)
  1634. (effects (font (size 1.27 1.27)))
  1635. )
  1636. (property "Value" "AMS1117-3.3" (id 1) (at 0 3.175 0)
  1637. (effects (font (size 1.27 1.27)) (justify left))
  1638. )
  1639. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.08 0)
  1640. (effects (font (size 1.27 1.27)) hide)
  1641. )
  1642. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 2.54 -6.35 0)
  1643. (effects (font (size 1.27 1.27)) hide)
  1644. )
  1645. (property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
  1646. (effects (font (size 1.27 1.27)) hide)
  1647. )
  1648. (property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" (id 5) (at 0 0 0)
  1649. (effects (font (size 1.27 1.27)) hide)
  1650. )
  1651. (property "ki_fp_filters" "SOT?223*TabPin2*" (id 6) (at 0 0 0)
  1652. (effects (font (size 1.27 1.27)) hide)
  1653. )
  1654. (symbol "AMS1117-3.3_0_1"
  1655. (rectangle (start -5.08 -5.08) (end 5.08 1.905)
  1656. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1657. (fill (type background))
  1658. )
  1659. )
  1660. (symbol "AMS1117-3.3_1_1"
  1661. (pin power_in line (at 0 -7.62 90) (length 2.54)
  1662. (name "GND" (effects (font (size 1.27 1.27))))
  1663. (number "1" (effects (font (size 1.27 1.27))))
  1664. )
  1665. (pin power_out line (at 7.62 0 180) (length 2.54)
  1666. (name "VO" (effects (font (size 1.27 1.27))))
  1667. (number "2" (effects (font (size 1.27 1.27))))
  1668. )
  1669. (pin power_in line (at -7.62 0 0) (length 2.54)
  1670. (name "VI" (effects (font (size 1.27 1.27))))
  1671. (number "3" (effects (font (size 1.27 1.27))))
  1672. )
  1673. )
  1674. )
  1675. (symbol "ideatausb:HRO-TYPE-C-31-M-12" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1676. (property "Reference" "USB" (id 0) (at -5.08 16.51 0)
  1677. (effects (font (size 1.524 1.524)))
  1678. )
  1679. (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at -10.16 -1.27 90)
  1680. (effects (font (size 1.524 1.524)))
  1681. )
  1682. (property "Footprint" "" (id 2) (at 0 0 0)
  1683. (effects (font (size 1.524 1.524)) hide)
  1684. )
  1685. (property "Datasheet" "" (id 3) (at 0 0 0)
  1686. (effects (font (size 1.524 1.524)) hide)
  1687. )
  1688. (symbol "HRO-TYPE-C-31-M-12_0_1"
  1689. (rectangle (start -11.43 15.24) (end -8.89 -17.78)
  1690. (stroke (width 0) (type default) (color 0 0 0 0))
  1691. (fill (type background))
  1692. )
  1693. (rectangle (start 0 -17.78) (end -8.89 15.24)
  1694. (stroke (width 0) (type default) (color 0 0 0 0))
  1695. (fill (type background))
  1696. )
  1697. )
  1698. (symbol "HRO-TYPE-C-31-M-12_1_1"
  1699. (pin input line (at 2.54 13.97 180) (length 2.54)
  1700. (name "GND" (effects (font (size 1.27 1.27))))
  1701. (number "1" (effects (font (size 1.27 1.27))))
  1702. )
  1703. (pin input line (at 2.54 -8.89 180) (length 2.54)
  1704. (name "CC2" (effects (font (size 1.27 1.27))))
  1705. (number "10" (effects (font (size 1.27 1.27))))
  1706. )
  1707. (pin input line (at 2.54 -11.43 180) (length 2.54)
  1708. (name "VBUS" (effects (font (size 1.27 1.27))))
  1709. (number "11" (effects (font (size 1.27 1.27))))
  1710. )
  1711. (pin input line (at 2.54 -13.97 180) (length 2.54)
  1712. (name "GND" (effects (font (size 1.27 1.27))))
  1713. (number "12" (effects (font (size 1.27 1.27))))
  1714. )
  1715. (pin input line (at 2.54 -16.51 180) (length 2.54)
  1716. (name "SHIELD" (effects (font (size 1.27 1.27))))
  1717. (number "13" (effects (font (size 1.27 1.27))))
  1718. )
  1719. (pin input line (at 2.54 11.43 180) (length 2.54)
  1720. (name "VBUS" (effects (font (size 1.27 1.27))))
  1721. (number "2" (effects (font (size 1.27 1.27))))
  1722. )
  1723. (pin input line (at 2.54 8.89 180) (length 2.54)
  1724. (name "SBU2" (effects (font (size 1.27 1.27))))
  1725. (number "3" (effects (font (size 1.27 1.27))))
  1726. )
  1727. (pin input line (at 2.54 6.35 180) (length 2.54)
  1728. (name "CC1" (effects (font (size 1.27 1.27))))
  1729. (number "4" (effects (font (size 1.27 1.27))))
  1730. )
  1731. (pin input line (at 2.54 3.81 180) (length 2.54)
  1732. (name "DN2" (effects (font (size 1.27 1.27))))
  1733. (number "5" (effects (font (size 1.27 1.27))))
  1734. )
  1735. (pin input line (at 2.54 1.27 180) (length 2.54)
  1736. (name "DP1" (effects (font (size 1.27 1.27))))
  1737. (number "6" (effects (font (size 1.27 1.27))))
  1738. )
  1739. (pin input line (at 2.54 -1.27 180) (length 2.54)
  1740. (name "DN1" (effects (font (size 1.27 1.27))))
  1741. (number "7" (effects (font (size 1.27 1.27))))
  1742. )
  1743. (pin input line (at 2.54 -3.81 180) (length 2.54)
  1744. (name "DP2" (effects (font (size 1.27 1.27))))
  1745. (number "8" (effects (font (size 1.27 1.27))))
  1746. )
  1747. (pin input line (at 2.54 -6.35 180) (length 2.54)
  1748. (name "SBU1" (effects (font (size 1.27 1.27))))
  1749. (number "9" (effects (font (size 1.27 1.27))))
  1750. )
  1751. )
  1752. )
  1753. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1754. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1755. (effects (font (size 1.27 1.27)) hide)
  1756. )
  1757. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  1758. (effects (font (size 1.27 1.27)))
  1759. )
  1760. (property "Footprint" "" (id 2) (at 0 0 0)
  1761. (effects (font (size 1.27 1.27)) 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" "power-flag" (id 4) (at 0 0 0)
  1767. (effects (font (size 1.27 1.27)) hide)
  1768. )
  1769. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  1770. (effects (font (size 1.27 1.27)) hide)
  1771. )
  1772. (symbol "+3V3_0_1"
  1773. (polyline
  1774. (pts
  1775. (xy -0.762 1.27)
  1776. (xy 0 2.54)
  1777. )
  1778. (stroke (width 0) (type default) (color 0 0 0 0))
  1779. (fill (type none))
  1780. )
  1781. (polyline
  1782. (pts
  1783. (xy 0 0)
  1784. (xy 0 2.54)
  1785. )
  1786. (stroke (width 0) (type default) (color 0 0 0 0))
  1787. (fill (type none))
  1788. )
  1789. (polyline
  1790. (pts
  1791. (xy 0 2.54)
  1792. (xy 0.762 1.27)
  1793. )
  1794. (stroke (width 0) (type default) (color 0 0 0 0))
  1795. (fill (type none))
  1796. )
  1797. )
  1798. (symbol "+3V3_1_1"
  1799. (pin power_in line (at 0 0 90) (length 0) hide
  1800. (name "+3V3" (effects (font (size 1.27 1.27))))
  1801. (number "1" (effects (font (size 1.27 1.27))))
  1802. )
  1803. )
  1804. )
  1805. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1806. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1807. (effects (font (size 1.27 1.27)) hide)
  1808. )
  1809. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  1810. (effects (font (size 1.27 1.27)))
  1811. )
  1812. (property "Footprint" "" (id 2) (at 0 0 0)
  1813. (effects (font (size 1.27 1.27)) hide)
  1814. )
  1815. (property "Datasheet" "" (id 3) (at 0 0 0)
  1816. (effects (font (size 1.27 1.27)) hide)
  1817. )
  1818. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1819. (effects (font (size 1.27 1.27)) hide)
  1820. )
  1821. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  1822. (effects (font (size 1.27 1.27)) hide)
  1823. )
  1824. (symbol "+5V_0_1"
  1825. (polyline
  1826. (pts
  1827. (xy -0.762 1.27)
  1828. (xy 0 2.54)
  1829. )
  1830. (stroke (width 0) (type default) (color 0 0 0 0))
  1831. (fill (type none))
  1832. )
  1833. (polyline
  1834. (pts
  1835. (xy 0 0)
  1836. (xy 0 2.54)
  1837. )
  1838. (stroke (width 0) (type default) (color 0 0 0 0))
  1839. (fill (type none))
  1840. )
  1841. (polyline
  1842. (pts
  1843. (xy 0 2.54)
  1844. (xy 0.762 1.27)
  1845. )
  1846. (stroke (width 0) (type default) (color 0 0 0 0))
  1847. (fill (type none))
  1848. )
  1849. )
  1850. (symbol "+5V_1_1"
  1851. (pin power_in line (at 0 0 90) (length 0) hide
  1852. (name "+5V" (effects (font (size 1.27 1.27))))
  1853. (number "1" (effects (font (size 1.27 1.27))))
  1854. )
  1855. )
  1856. )
  1857. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1858. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1859. (effects (font (size 1.27 1.27)) hide)
  1860. )
  1861. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1862. (effects (font (size 1.27 1.27)))
  1863. )
  1864. (property "Footprint" "" (id 2) (at 0 0 0)
  1865. (effects (font (size 1.27 1.27)) hide)
  1866. )
  1867. (property "Datasheet" "" (id 3) (at 0 0 0)
  1868. (effects (font (size 1.27 1.27)) hide)
  1869. )
  1870. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1871. (effects (font (size 1.27 1.27)) hide)
  1872. )
  1873. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1874. (effects (font (size 1.27 1.27)) hide)
  1875. )
  1876. (symbol "GND_0_1"
  1877. (polyline
  1878. (pts
  1879. (xy 0 0)
  1880. (xy 0 -1.27)
  1881. (xy 1.27 -1.27)
  1882. (xy 0 -2.54)
  1883. (xy -1.27 -1.27)
  1884. (xy 0 -1.27)
  1885. )
  1886. (stroke (width 0) (type default) (color 0 0 0 0))
  1887. (fill (type none))
  1888. )
  1889. )
  1890. (symbol "GND_1_1"
  1891. (pin power_in line (at 0 0 270) (length 0) hide
  1892. (name "GND" (effects (font (size 1.27 1.27))))
  1893. (number "1" (effects (font (size 1.27 1.27))))
  1894. )
  1895. )
  1896. )
  1897. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1898. (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
  1899. (effects (font (size 1.27 1.27)) hide)
  1900. )
  1901. (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
  1902. (effects (font (size 1.27 1.27)))
  1903. )
  1904. (property "Footprint" "" (id 2) (at 0 0 0)
  1905. (effects (font (size 1.27 1.27)) hide)
  1906. )
  1907. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1908. (effects (font (size 1.27 1.27)) hide)
  1909. )
  1910. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1911. (effects (font (size 1.27 1.27)) hide)
  1912. )
  1913. (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
  1914. (effects (font (size 1.27 1.27)) hide)
  1915. )
  1916. (symbol "PWR_FLAG_0_0"
  1917. (pin power_out line (at 0 0 90) (length 0)
  1918. (name "pwr" (effects (font (size 1.27 1.27))))
  1919. (number "1" (effects (font (size 1.27 1.27))))
  1920. )
  1921. )
  1922. (symbol "PWR_FLAG_0_1"
  1923. (polyline
  1924. (pts
  1925. (xy 0 0)
  1926. (xy 0 1.27)
  1927. (xy -1.016 1.905)
  1928. (xy 0 2.54)
  1929. (xy 1.016 1.905)
  1930. (xy 0 1.27)
  1931. )
  1932. (stroke (width 0) (type default) (color 0 0 0 0))
  1933. (fill (type none))
  1934. )
  1935. )
  1936. )
  1937. (symbol "sm6uax:STM32F730VETx" (in_bom yes) (on_board yes)
  1938. (property "Reference" "U" (id 0) (at -17.78 64.77 0)
  1939. (effects (font (size 1.27 1.27)) (justify left))
  1940. )
  1941. (property "Value" "STM32F730VETx" (id 1) (at 12.7 64.77 0)
  1942. (effects (font (size 1.27 1.27)) (justify left))
  1943. )
  1944. (property "Footprint" "Package_QFP:LQFP-100_14x14mm_P0.5mm" (id 2) (at -17.78 -66.04 0)
  1945. (effects (font (size 1.27 1.27)) (justify right) hide)
  1946. )
  1947. (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00037051.pdf" (id 3) (at 0 0 0)
  1948. (effects (font (size 1.27 1.27)) hide)
  1949. )
  1950. (property "ki_keywords" "ARM Cortex-M4 STM32F4 STM32F407/417" (id 4) (at 0 0 0)
  1951. (effects (font (size 1.27 1.27)) hide)
  1952. )
  1953. (property "ki_description" "ARM Cortex-M4 MCU, 512KB flash, 128KB RAM, 168MHz, 1.8-3.6V, 82 GPIO, LQFP-100" (id 5) (at 0 0 0)
  1954. (effects (font (size 1.27 1.27)) hide)
  1955. )
  1956. (property "ki_fp_filters" "LQFP*14x14mm*P0.5mm*" (id 6) (at 0 0 0)
  1957. (effects (font (size 1.27 1.27)) hide)
  1958. )
  1959. (symbol "STM32F730VETx_0_1"
  1960. (rectangle (start -17.78 -66.04) (end 17.78 63.5)
  1961. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1962. (fill (type background))
  1963. )
  1964. )
  1965. (symbol "STM32F730VETx_1_1"
  1966. (pin bidirectional line (at -22.86 12.7 0) (length 5.08)
  1967. (name "PE2" (effects (font (size 1.27 1.27))))
  1968. (number "1" (effects (font (size 1.27 1.27))))
  1969. )
  1970. (pin power_in line (at -5.08 -71.12 90) (length 5.08)
  1971. (name "VSS" (effects (font (size 1.27 1.27))))
  1972. (number "10" (effects (font (size 1.27 1.27))))
  1973. )
  1974. (pin power_in line (at 7.62 68.58 270) (length 5.08)
  1975. (name "VDD" (effects (font (size 1.27 1.27))))
  1976. (number "100" (effects (font (size 1.27 1.27))))
  1977. )
  1978. (pin power_in line (at -5.08 68.58 270) (length 5.08)
  1979. (name "VDD" (effects (font (size 1.27 1.27))))
  1980. (number "11" (effects (font (size 1.27 1.27))))
  1981. )
  1982. (pin input line (at -22.86 25.4 0) (length 5.08)
  1983. (name "PH0" (effects (font (size 1.27 1.27))))
  1984. (number "12" (effects (font (size 1.27 1.27))))
  1985. )
  1986. (pin input line (at -22.86 22.86 0) (length 5.08)
  1987. (name "PH1" (effects (font (size 1.27 1.27))))
  1988. (number "13" (effects (font (size 1.27 1.27))))
  1989. )
  1990. (pin input line (at -22.86 60.96 0) (length 5.08)
  1991. (name "NRST" (effects (font (size 1.27 1.27))))
  1992. (number "14" (effects (font (size 1.27 1.27))))
  1993. )
  1994. (pin bidirectional line (at 22.86 -25.4 180) (length 5.08)
  1995. (name "PC0" (effects (font (size 1.27 1.27))))
  1996. (number "15" (effects (font (size 1.27 1.27))))
  1997. )
  1998. (pin bidirectional line (at 22.86 -27.94 180) (length 5.08)
  1999. (name "PC1" (effects (font (size 1.27 1.27))))
  2000. (number "16" (effects (font (size 1.27 1.27))))
  2001. )
  2002. (pin bidirectional line (at 22.86 -30.48 180) (length 5.08)
  2003. (name "PC2" (effects (font (size 1.27 1.27))))
  2004. (number "17" (effects (font (size 1.27 1.27))))
  2005. )
  2006. (pin bidirectional line (at 22.86 -33.02 180) (length 5.08)
  2007. (name "PC3" (effects (font (size 1.27 1.27))))
  2008. (number "18" (effects (font (size 1.27 1.27))))
  2009. )
  2010. (pin power_in line (at 5.08 -71.12 90) (length 5.08)
  2011. (name "VSSA" (effects (font (size 1.27 1.27))))
  2012. (number "19" (effects (font (size 1.27 1.27))))
  2013. )
  2014. (pin bidirectional line (at -22.86 10.16 0) (length 5.08)
  2015. (name "PE3" (effects (font (size 1.27 1.27))))
  2016. (number "2" (effects (font (size 1.27 1.27))))
  2017. )
  2018. (pin power_in line (at -22.86 45.72 0) (length 5.08)
  2019. (name "VREF+" (effects (font (size 1.27 1.27))))
  2020. (number "20" (effects (font (size 1.27 1.27))))
  2021. )
  2022. (pin power_in line (at 10.16 68.58 270) (length 5.08)
  2023. (name "VDDA" (effects (font (size 1.27 1.27))))
  2024. (number "21" (effects (font (size 1.27 1.27))))
  2025. )
  2026. (pin bidirectional line (at 22.86 60.96 180) (length 5.08)
  2027. (name "PA0" (effects (font (size 1.27 1.27))))
  2028. (number "22" (effects (font (size 1.27 1.27))))
  2029. )
  2030. (pin bidirectional line (at 22.86 58.42 180) (length 5.08)
  2031. (name "PA1" (effects (font (size 1.27 1.27))))
  2032. (number "23" (effects (font (size 1.27 1.27))))
  2033. )
  2034. (pin bidirectional line (at 22.86 55.88 180) (length 5.08)
  2035. (name "PA2" (effects (font (size 1.27 1.27))))
  2036. (number "24" (effects (font (size 1.27 1.27))))
  2037. )
  2038. (pin bidirectional line (at 22.86 53.34 180) (length 5.08)
  2039. (name "PA3" (effects (font (size 1.27 1.27))))
  2040. (number "25" (effects (font (size 1.27 1.27))))
  2041. )
  2042. (pin power_in line (at -2.54 -71.12 90) (length 5.08)
  2043. (name "VSS" (effects (font (size 1.27 1.27))))
  2044. (number "26" (effects (font (size 1.27 1.27))))
  2045. )
  2046. (pin power_in line (at 0 68.58 270) (length 5.08)
  2047. (name "VDD" (effects (font (size 1.27 1.27))))
  2048. (number "27" (effects (font (size 1.27 1.27))))
  2049. )
  2050. (pin bidirectional line (at 22.86 50.8 180) (length 5.08)
  2051. (name "PA4" (effects (font (size 1.27 1.27))))
  2052. (number "28" (effects (font (size 1.27 1.27))))
  2053. )
  2054. (pin bidirectional line (at 22.86 48.26 180) (length 5.08)
  2055. (name "PA5" (effects (font (size 1.27 1.27))))
  2056. (number "29" (effects (font (size 1.27 1.27))))
  2057. )
  2058. (pin bidirectional line (at -22.86 7.62 0) (length 5.08)
  2059. (name "PE4" (effects (font (size 1.27 1.27))))
  2060. (number "3" (effects (font (size 1.27 1.27))))
  2061. )
  2062. (pin bidirectional line (at 22.86 45.72 180) (length 5.08)
  2063. (name "PA6" (effects (font (size 1.27 1.27))))
  2064. (number "30" (effects (font (size 1.27 1.27))))
  2065. )
  2066. (pin bidirectional line (at 22.86 43.18 180) (length 5.08)
  2067. (name "PA7" (effects (font (size 1.27 1.27))))
  2068. (number "31" (effects (font (size 1.27 1.27))))
  2069. )
  2070. (pin bidirectional line (at 22.86 -35.56 180) (length 5.08)
  2071. (name "PC4" (effects (font (size 1.27 1.27))))
  2072. (number "32" (effects (font (size 1.27 1.27))))
  2073. )
  2074. (pin bidirectional line (at 22.86 -38.1 180) (length 5.08)
  2075. (name "PC5" (effects (font (size 1.27 1.27))))
  2076. (number "33" (effects (font (size 1.27 1.27))))
  2077. )
  2078. (pin bidirectional line (at 22.86 17.78 180) (length 5.08)
  2079. (name "PB0" (effects (font (size 1.27 1.27))))
  2080. (number "34" (effects (font (size 1.27 1.27))))
  2081. )
  2082. (pin bidirectional line (at 22.86 15.24 180) (length 5.08)
  2083. (name "PB1" (effects (font (size 1.27 1.27))))
  2084. (number "35" (effects (font (size 1.27 1.27))))
  2085. )
  2086. (pin bidirectional line (at 22.86 12.7 180) (length 5.08)
  2087. (name "PB2" (effects (font (size 1.27 1.27))))
  2088. (number "36" (effects (font (size 1.27 1.27))))
  2089. )
  2090. (pin bidirectional line (at -22.86 0 0) (length 5.08)
  2091. (name "PE7" (effects (font (size 1.27 1.27))))
  2092. (number "37" (effects (font (size 1.27 1.27))))
  2093. )
  2094. (pin bidirectional line (at -22.86 -2.54 0) (length 5.08)
  2095. (name "PE8" (effects (font (size 1.27 1.27))))
  2096. (number "38" (effects (font (size 1.27 1.27))))
  2097. )
  2098. (pin bidirectional line (at -22.86 -5.08 0) (length 5.08)
  2099. (name "PE9" (effects (font (size 1.27 1.27))))
  2100. (number "39" (effects (font (size 1.27 1.27))))
  2101. )
  2102. (pin bidirectional line (at -22.86 5.08 0) (length 5.08)
  2103. (name "PE5" (effects (font (size 1.27 1.27))))
  2104. (number "4" (effects (font (size 1.27 1.27))))
  2105. )
  2106. (pin bidirectional line (at -22.86 -7.62 0) (length 5.08)
  2107. (name "PE10" (effects (font (size 1.27 1.27))))
  2108. (number "40" (effects (font (size 1.27 1.27))))
  2109. )
  2110. (pin bidirectional line (at -22.86 -10.16 0) (length 5.08)
  2111. (name "PE11" (effects (font (size 1.27 1.27))))
  2112. (number "41" (effects (font (size 1.27 1.27))))
  2113. )
  2114. (pin bidirectional line (at -22.86 -12.7 0) (length 5.08)
  2115. (name "PE12" (effects (font (size 1.27 1.27))))
  2116. (number "42" (effects (font (size 1.27 1.27))))
  2117. )
  2118. (pin bidirectional line (at -22.86 -15.24 0) (length 5.08)
  2119. (name "PE13" (effects (font (size 1.27 1.27))))
  2120. (number "43" (effects (font (size 1.27 1.27))))
  2121. )
  2122. (pin bidirectional line (at -22.86 -17.78 0) (length 5.08)
  2123. (name "PE14" (effects (font (size 1.27 1.27))))
  2124. (number "44" (effects (font (size 1.27 1.27))))
  2125. )
  2126. (pin bidirectional line (at -22.86 -20.32 0) (length 5.08)
  2127. (name "PE15" (effects (font (size 1.27 1.27))))
  2128. (number "45" (effects (font (size 1.27 1.27))))
  2129. )
  2130. (pin bidirectional line (at 22.86 -7.62 180) (length 5.08)
  2131. (name "PB10" (effects (font (size 1.27 1.27))))
  2132. (number "46" (effects (font (size 1.27 1.27))))
  2133. )
  2134. (pin bidirectional line (at 22.86 -10.16 180) (length 5.08)
  2135. (name "PB11" (effects (font (size 1.27 1.27))))
  2136. (number "47" (effects (font (size 1.27 1.27))))
  2137. )
  2138. (pin power_in line (at -22.86 50.8 0) (length 5.08)
  2139. (name "VCAP_1" (effects (font (size 1.27 1.27))))
  2140. (number "48" (effects (font (size 1.27 1.27))))
  2141. )
  2142. (pin power_in line (at -7.62 -71.12 90) (length 5.08)
  2143. (name "VSS" (effects (font (size 1.27 1.27))))
  2144. (number "49" (effects (font (size 1.27 1.27))))
  2145. )
  2146. (pin bidirectional line (at -22.86 2.54 0) (length 5.08)
  2147. (name "PE6" (effects (font (size 1.27 1.27))))
  2148. (number "5" (effects (font (size 1.27 1.27))))
  2149. )
  2150. (pin power_in line (at 2.54 68.58 270) (length 5.08)
  2151. (name "VDD" (effects (font (size 1.27 1.27))))
  2152. (number "50" (effects (font (size 1.27 1.27))))
  2153. )
  2154. (pin bidirectional line (at 22.86 -12.7 180) (length 5.08)
  2155. (name "PB12" (effects (font (size 1.27 1.27))))
  2156. (number "51" (effects (font (size 1.27 1.27))))
  2157. )
  2158. (pin bidirectional line (at 22.86 -15.24 180) (length 5.08)
  2159. (name "PB13" (effects (font (size 1.27 1.27))))
  2160. (number "52" (effects (font (size 1.27 1.27))))
  2161. )
  2162. (pin bidirectional line (at 22.86 -17.78 180) (length 5.08)
  2163. (name "PB14" (effects (font (size 1.27 1.27))))
  2164. (number "53" (effects (font (size 1.27 1.27))))
  2165. )
  2166. (pin bidirectional line (at 22.86 -20.32 180) (length 5.08)
  2167. (name "PB15" (effects (font (size 1.27 1.27))))
  2168. (number "54" (effects (font (size 1.27 1.27))))
  2169. )
  2170. (pin bidirectional line (at -22.86 -45.72 0) (length 5.08)
  2171. (name "PD8" (effects (font (size 1.27 1.27))))
  2172. (number "55" (effects (font (size 1.27 1.27))))
  2173. )
  2174. (pin bidirectional line (at -22.86 -48.26 0) (length 5.08)
  2175. (name "PD9" (effects (font (size 1.27 1.27))))
  2176. (number "56" (effects (font (size 1.27 1.27))))
  2177. )
  2178. (pin bidirectional line (at -22.86 -50.8 0) (length 5.08)
  2179. (name "PD10" (effects (font (size 1.27 1.27))))
  2180. (number "57" (effects (font (size 1.27 1.27))))
  2181. )
  2182. (pin bidirectional line (at -22.86 -53.34 0) (length 5.08)
  2183. (name "PD11" (effects (font (size 1.27 1.27))))
  2184. (number "58" (effects (font (size 1.27 1.27))))
  2185. )
  2186. (pin bidirectional line (at -22.86 -55.88 0) (length 5.08)
  2187. (name "PD12" (effects (font (size 1.27 1.27))))
  2188. (number "59" (effects (font (size 1.27 1.27))))
  2189. )
  2190. (pin power_in line (at -7.62 68.58 270) (length 5.08)
  2191. (name "VBAT" (effects (font (size 1.27 1.27))))
  2192. (number "6" (effects (font (size 1.27 1.27))))
  2193. )
  2194. (pin bidirectional line (at -22.86 -58.42 0) (length 5.08)
  2195. (name "PD13" (effects (font (size 1.27 1.27))))
  2196. (number "60" (effects (font (size 1.27 1.27))))
  2197. )
  2198. (pin bidirectional line (at -22.86 -60.96 0) (length 5.08)
  2199. (name "PD14" (effects (font (size 1.27 1.27))))
  2200. (number "61" (effects (font (size 1.27 1.27))))
  2201. )
  2202. (pin bidirectional line (at -22.86 -63.5 0) (length 5.08)
  2203. (name "PD15" (effects (font (size 1.27 1.27))))
  2204. (number "62" (effects (font (size 1.27 1.27))))
  2205. )
  2206. (pin bidirectional line (at 22.86 -40.64 180) (length 5.08)
  2207. (name "PC6" (effects (font (size 1.27 1.27))))
  2208. (number "63" (effects (font (size 1.27 1.27))))
  2209. )
  2210. (pin bidirectional line (at 22.86 -43.18 180) (length 5.08)
  2211. (name "PC7" (effects (font (size 1.27 1.27))))
  2212. (number "64" (effects (font (size 1.27 1.27))))
  2213. )
  2214. (pin bidirectional line (at 22.86 -45.72 180) (length 5.08)
  2215. (name "PC8" (effects (font (size 1.27 1.27))))
  2216. (number "65" (effects (font (size 1.27 1.27))))
  2217. )
  2218. (pin bidirectional line (at 22.86 -48.26 180) (length 5.08)
  2219. (name "PC9" (effects (font (size 1.27 1.27))))
  2220. (number "66" (effects (font (size 1.27 1.27))))
  2221. )
  2222. (pin bidirectional line (at 22.86 40.64 180) (length 5.08)
  2223. (name "PA8" (effects (font (size 1.27 1.27))))
  2224. (number "67" (effects (font (size 1.27 1.27))))
  2225. )
  2226. (pin bidirectional line (at 22.86 38.1 180) (length 5.08)
  2227. (name "PA9" (effects (font (size 1.27 1.27))))
  2228. (number "68" (effects (font (size 1.27 1.27))))
  2229. )
  2230. (pin bidirectional line (at 22.86 35.56 180) (length 5.08)
  2231. (name "PA10" (effects (font (size 1.27 1.27))))
  2232. (number "69" (effects (font (size 1.27 1.27))))
  2233. )
  2234. (pin bidirectional line (at 22.86 -58.42 180) (length 5.08)
  2235. (name "PC13" (effects (font (size 1.27 1.27))))
  2236. (number "7" (effects (font (size 1.27 1.27))))
  2237. )
  2238. (pin bidirectional line (at 22.86 33.02 180) (length 5.08)
  2239. (name "PA11" (effects (font (size 1.27 1.27))))
  2240. (number "70" (effects (font (size 1.27 1.27))))
  2241. )
  2242. (pin bidirectional line (at 22.86 30.48 180) (length 5.08)
  2243. (name "PA12" (effects (font (size 1.27 1.27))))
  2244. (number "71" (effects (font (size 1.27 1.27))))
  2245. )
  2246. (pin bidirectional line (at 22.86 27.94 180) (length 5.08)
  2247. (name "PA13" (effects (font (size 1.27 1.27))))
  2248. (number "72" (effects (font (size 1.27 1.27))))
  2249. )
  2250. (pin power_in line (at -22.86 48.26 0) (length 5.08)
  2251. (name "VCAP_2" (effects (font (size 1.27 1.27))))
  2252. (number "73" (effects (font (size 1.27 1.27))))
  2253. )
  2254. (pin power_in line (at 0 -71.12 90) (length 5.08)
  2255. (name "VSS" (effects (font (size 1.27 1.27))))
  2256. (number "74" (effects (font (size 1.27 1.27))))
  2257. )
  2258. (pin power_in line (at 5.08 68.58 270) (length 5.08)
  2259. (name "VDD" (effects (font (size 1.27 1.27))))
  2260. (number "75" (effects (font (size 1.27 1.27))))
  2261. )
  2262. (pin bidirectional line (at 22.86 25.4 180) (length 5.08)
  2263. (name "PA14" (effects (font (size 1.27 1.27))))
  2264. (number "76" (effects (font (size 1.27 1.27))))
  2265. )
  2266. (pin bidirectional line (at 22.86 22.86 180) (length 5.08)
  2267. (name "PA15" (effects (font (size 1.27 1.27))))
  2268. (number "77" (effects (font (size 1.27 1.27))))
  2269. )
  2270. (pin bidirectional line (at 22.86 -50.8 180) (length 5.08)
  2271. (name "PC10" (effects (font (size 1.27 1.27))))
  2272. (number "78" (effects (font (size 1.27 1.27))))
  2273. )
  2274. (pin bidirectional line (at 22.86 -53.34 180) (length 5.08)
  2275. (name "PC11" (effects (font (size 1.27 1.27))))
  2276. (number "79" (effects (font (size 1.27 1.27))))
  2277. )
  2278. (pin bidirectional line (at 22.86 -60.96 180) (length 5.08)
  2279. (name "PC14" (effects (font (size 1.27 1.27))))
  2280. (number "8" (effects (font (size 1.27 1.27))))
  2281. )
  2282. (pin bidirectional line (at 22.86 -55.88 180) (length 5.08)
  2283. (name "PC12" (effects (font (size 1.27 1.27))))
  2284. (number "80" (effects (font (size 1.27 1.27))))
  2285. )
  2286. (pin bidirectional line (at -22.86 -25.4 0) (length 5.08)
  2287. (name "PD0" (effects (font (size 1.27 1.27))))
  2288. (number "81" (effects (font (size 1.27 1.27))))
  2289. )
  2290. (pin bidirectional line (at -22.86 -27.94 0) (length 5.08)
  2291. (name "PD1" (effects (font (size 1.27 1.27))))
  2292. (number "82" (effects (font (size 1.27 1.27))))
  2293. )
  2294. (pin bidirectional line (at -22.86 -30.48 0) (length 5.08)
  2295. (name "PD2" (effects (font (size 1.27 1.27))))
  2296. (number "83" (effects (font (size 1.27 1.27))))
  2297. )
  2298. (pin bidirectional line (at -22.86 -33.02 0) (length 5.08)
  2299. (name "PD3" (effects (font (size 1.27 1.27))))
  2300. (number "84" (effects (font (size 1.27 1.27))))
  2301. )
  2302. (pin bidirectional line (at -22.86 -35.56 0) (length 5.08)
  2303. (name "PD4" (effects (font (size 1.27 1.27))))
  2304. (number "85" (effects (font (size 1.27 1.27))))
  2305. )
  2306. (pin bidirectional line (at -22.86 -38.1 0) (length 5.08)
  2307. (name "PD5" (effects (font (size 1.27 1.27))))
  2308. (number "86" (effects (font (size 1.27 1.27))))
  2309. )
  2310. (pin bidirectional line (at -22.86 -40.64 0) (length 5.08)
  2311. (name "PD6" (effects (font (size 1.27 1.27))))
  2312. (number "87" (effects (font (size 1.27 1.27))))
  2313. )
  2314. (pin bidirectional line (at -22.86 -43.18 0) (length 5.08)
  2315. (name "PD7" (effects (font (size 1.27 1.27))))
  2316. (number "88" (effects (font (size 1.27 1.27))))
  2317. )
  2318. (pin bidirectional line (at 22.86 10.16 180) (length 5.08)
  2319. (name "PB3" (effects (font (size 1.27 1.27))))
  2320. (number "89" (effects (font (size 1.27 1.27))))
  2321. )
  2322. (pin bidirectional line (at 22.86 -63.5 180) (length 5.08)
  2323. (name "PC15" (effects (font (size 1.27 1.27))))
  2324. (number "9" (effects (font (size 1.27 1.27))))
  2325. )
  2326. (pin bidirectional line (at 22.86 7.62 180) (length 5.08)
  2327. (name "PB4" (effects (font (size 1.27 1.27))))
  2328. (number "90" (effects (font (size 1.27 1.27))))
  2329. )
  2330. (pin bidirectional line (at 22.86 5.08 180) (length 5.08)
  2331. (name "PB5" (effects (font (size 1.27 1.27))))
  2332. (number "91" (effects (font (size 1.27 1.27))))
  2333. )
  2334. (pin bidirectional line (at 22.86 2.54 180) (length 5.08)
  2335. (name "PB6" (effects (font (size 1.27 1.27))))
  2336. (number "92" (effects (font (size 1.27 1.27))))
  2337. )
  2338. (pin bidirectional line (at 22.86 0 180) (length 5.08)
  2339. (name "PB7" (effects (font (size 1.27 1.27))))
  2340. (number "93" (effects (font (size 1.27 1.27))))
  2341. )
  2342. (pin input line (at -22.86 55.88 0) (length 5.08)
  2343. (name "BOOT0" (effects (font (size 1.27 1.27))))
  2344. (number "94" (effects (font (size 1.27 1.27))))
  2345. )
  2346. (pin bidirectional line (at 22.86 -2.54 180) (length 5.08)
  2347. (name "PB8" (effects (font (size 1.27 1.27))))
  2348. (number "95" (effects (font (size 1.27 1.27))))
  2349. )
  2350. (pin bidirectional line (at 22.86 -5.08 180) (length 5.08)
  2351. (name "PB9" (effects (font (size 1.27 1.27))))
  2352. (number "96" (effects (font (size 1.27 1.27))))
  2353. )
  2354. (pin bidirectional line (at -22.86 17.78 0) (length 5.08)
  2355. (name "PE0" (effects (font (size 1.27 1.27))))
  2356. (number "97" (effects (font (size 1.27 1.27))))
  2357. )
  2358. (pin bidirectional line (at -22.86 15.24 0) (length 5.08)
  2359. (name "PE1" (effects (font (size 1.27 1.27))))
  2360. (number "98" (effects (font (size 1.27 1.27))))
  2361. )
  2362. (pin power_in line (at 2.54 -71.12 90) (length 5.08)
  2363. (name "VSS" (effects (font (size 1.27 1.27))))
  2364. (number "99" (effects (font (size 1.27 1.27))))
  2365. )
  2366. )
  2367. )
  2368. )
  2369. (junction (at 104.14 113.665) (diameter 0) (color 0 0 0 0)
  2370. (uuid 06c1f72c-5033-431a-ab85-56663c061dbe)
  2371. )
  2372. (junction (at 285.75 199.39) (diameter 0) (color 0 0 0 0)
  2373. (uuid 0744fd3c-8d11-4cf7-b56f-6701994e5cf0)
  2374. )
  2375. (junction (at 288.29 224.79) (diameter 0) (color 0 0 0 0)
  2376. (uuid 0771162f-c7b8-4e84-ad3c-1e7af77d7ff5)
  2377. )
  2378. (junction (at 180.34 267.97) (diameter 0) (color 0 0 0 0)
  2379. (uuid 0ecbd14a-fa84-4d01-a328-8271e87cf23e)
  2380. )
  2381. (junction (at 269.24 180.34) (diameter 0) (color 0 0 0 0)
  2382. (uuid 1b690023-0493-4e29-8c3c-2b9416cd88cc)
  2383. )
  2384. (junction (at 393.7 207.645) (diameter 0) (color 0 0 0 0)
  2385. (uuid 210e4c77-5f96-4dbd-a4a2-c39c8b350ac9)
  2386. )
  2387. (junction (at 267.97 257.81) (diameter 0) (color 0 0 0 0)
  2388. (uuid 21f67384-c4e8-4a93-8ffb-57a75d0b7f6a)
  2389. )
  2390. (junction (at 257.81 257.81) (diameter 0) (color 0 0 0 0)
  2391. (uuid 29e9432b-2a06-4c9c-895f-b1c8ce6fe169)
  2392. )
  2393. (junction (at 283.21 212.09) (diameter 0) (color 0 0 0 0)
  2394. (uuid 2acd03a9-0418-4708-90dc-28313839e38e)
  2395. )
  2396. (junction (at 267.97 267.97) (diameter 0) (color 0 0 0 0)
  2397. (uuid 2fe866b5-9108-4bf0-ad1a-ecc2d62949a2)
  2398. )
  2399. (junction (at 238.76 34.29) (diameter 0) (color 0 0 0 0)
  2400. (uuid 3cdc0692-f8a9-41f6-ac1f-2bfe3b95ee0c)
  2401. )
  2402. (junction (at 104.14 121.285) (diameter 0) (color 0 0 0 0)
  2403. (uuid 413d0a59-2fc7-4725-9fa9-1d9ef3708c53)
  2404. )
  2405. (junction (at 234.95 257.81) (diameter 0) (color 0 0 0 0)
  2406. (uuid 4475aea5-fc21-4078-9947-40191a24271b)
  2407. )
  2408. (junction (at 397.51 158.115) (diameter 0) (color 0 0 0 0)
  2409. (uuid 44db4252-3ee8-499c-bb3b-c6c37526fd44)
  2410. )
  2411. (junction (at 246.38 267.97) (diameter 0) (color 0 0 0 0)
  2412. (uuid 464fa438-031c-4343-b01f-d815852b943e)
  2413. )
  2414. (junction (at 26.67 233.68) (diameter 0) (color 0 0 0 0)
  2415. (uuid 4d5e3894-29b7-4a8b-aa80-2e3ff95baf68)
  2416. )
  2417. (junction (at 288.29 219.71) (diameter 0) (color 0 0 0 0)
  2418. (uuid 4e6ec0d6-8c17-41d7-92ea-95f48a578734)
  2419. )
  2420. (junction (at 104.14 133.985) (diameter 0) (color 0 0 0 0)
  2421. (uuid 55d86635-ad7c-452e-bf34-62c6c54345c2)
  2422. )
  2423. (junction (at 188.595 43.18) (diameter 0) (color 0 0 0 0)
  2424. (uuid 5877441a-aae1-438d-bc11-bcc31d335fa9)
  2425. )
  2426. (junction (at 196.85 53.975) (diameter 0) (color 0 0 0 0)
  2427. (uuid 66ba0933-75bb-4648-8318-4bccfd23da7b)
  2428. )
  2429. (junction (at 201.93 257.81) (diameter 0) (color 0 0 0 0)
  2430. (uuid 69322fea-0402-491e-934b-8781b2e23b8d)
  2431. )
  2432. (junction (at 278.13 209.55) (diameter 0) (color 0 0 0 0)
  2433. (uuid 6ca017ac-39a8-4df4-8947-8ea3ee2abc7e)
  2434. )
  2435. (junction (at 199.39 64.135) (diameter 0) (color 0 0 0 0)
  2436. (uuid 6edf160f-702c-463a-b3f7-7c9f1809614f)
  2437. )
  2438. (junction (at 233.68 177.165) (diameter 0) (color 0 0 0 0)
  2439. (uuid 6f335b0c-6c95-4ed8-bc2b-f96d09834189)
  2440. )
  2441. (junction (at 279.4 257.81) (diameter 0) (color 0 0 0 0)
  2442. (uuid 70046263-4439-4d46-91c2-d83e638946ec)
  2443. )
  2444. (junction (at 294.64 199.39) (diameter 0) (color 0 0 0 0)
  2445. (uuid 75da4fe3-f9b7-4a94-8e34-8702b383a380)
  2446. )
  2447. (junction (at 231.14 34.29) (diameter 0) (color 0 0 0 0)
  2448. (uuid 77db25aa-bd33-41b9-a746-6963ae1a414b)
  2449. )
  2450. (junction (at 262.89 170.815) (diameter 0) (color 0 0 0 0)
  2451. (uuid 78fd61e0-8316-4e0e-93fb-f0532a07733f)
  2452. )
  2453. (junction (at 213.36 257.81) (diameter 0) (color 0 0 0 0)
  2454. (uuid 7a498344-8427-468e-9908-4776638319fc)
  2455. )
  2456. (junction (at 358.14 207.645) (diameter 0) (color 0 0 0 0)
  2457. (uuid 7a5d5e50-fce4-4af3-b4a8-d55bdf4dd320)
  2458. )
  2459. (junction (at 246.38 34.29) (diameter 0) (color 0 0 0 0)
  2460. (uuid 7ba2a298-2f8f-45d7-8c43-3c76297572dc)
  2461. )
  2462. (junction (at 202.565 55.88) (diameter 0) (color 0 0 0 0)
  2463. (uuid 7ddf9ff1-4936-4fbb-b26c-b2df87d771b0)
  2464. )
  2465. (junction (at 236.22 34.29) (diameter 0) (color 0 0 0 0)
  2466. (uuid 86f43e23-5d9f-425c-a387-52b9fa9d9293)
  2467. )
  2468. (junction (at 224.79 267.97) (diameter 0) (color 0 0 0 0)
  2469. (uuid 874eac06-2c0f-46af-9dd1-44a00265a15c)
  2470. )
  2471. (junction (at 288.29 204.47) (diameter 0) (color 0 0 0 0)
  2472. (uuid 8763d9ca-2ce6-4226-b385-ee3294188916)
  2473. )
  2474. (junction (at 201.93 267.97) (diameter 0) (color 0 0 0 0)
  2475. (uuid 8bf2230d-42f7-4f6d-a972-05866e86e5fc)
  2476. )
  2477. (junction (at 36.195 233.68) (diameter 0) (color 0 0 0 0)
  2478. (uuid 8e1e6a7e-3d61-47be-a0b6-bff97388bdd8)
  2479. )
  2480. (junction (at 246.38 257.81) (diameter 0) (color 0 0 0 0)
  2481. (uuid 941b5b3c-3089-49ca-a107-e732130d0e06)
  2482. )
  2483. (junction (at 279.4 267.97) (diameter 0) (color 0 0 0 0)
  2484. (uuid 94279055-0ed3-477d-8021-43043f7c31e7)
  2485. )
  2486. (junction (at 180.34 257.81) (diameter 0) (color 0 0 0 0)
  2487. (uuid a312e279-3a84-4262-b018-115898fb3118)
  2488. )
  2489. (junction (at 213.36 267.97) (diameter 0) (color 0 0 0 0)
  2490. (uuid a5adc965-a85c-4660-a04c-4fa00ff84e44)
  2491. )
  2492. (junction (at 257.81 267.97) (diameter 0) (color 0 0 0 0)
  2493. (uuid a7d65ec2-bade-483a-9ce8-52fc2f5125ce)
  2494. )
  2495. (junction (at 233.68 34.29) (diameter 0) (color 0 0 0 0)
  2496. (uuid a7e3c52c-0ec1-4265-aff0-095151930a81)
  2497. )
  2498. (junction (at 234.95 267.97) (diameter 0) (color 0 0 0 0)
  2499. (uuid a9894205-dca0-4b06-abff-52a44444f21f)
  2500. )
  2501. (junction (at 238.76 177.165) (diameter 0) (color 0 0 0 0)
  2502. (uuid ac1ed62f-71e9-499d-b95f-6eff4b38bec2)
  2503. )
  2504. (junction (at 312.42 199.39) (diameter 0) (color 0 0 0 0)
  2505. (uuid bcf3b4ec-d1ee-4f6d-9287-f90408f583e9)
  2506. )
  2507. (junction (at 241.3 34.29) (diameter 0) (color 0 0 0 0)
  2508. (uuid c41526c8-13c1-4d31-b79c-cdc8bfe25ef2)
  2509. )
  2510. (junction (at 231.14 177.165) (diameter 0) (color 0 0 0 0)
  2511. (uuid c8474b37-98e9-41fa-a87c-804dc4173392)
  2512. )
  2513. (junction (at 104.14 111.125) (diameter 0) (color 0 0 0 0)
  2514. (uuid c897c464-2a29-46dd-8782-a52a54035280)
  2515. )
  2516. (junction (at 104.14 139.065) (diameter 0) (color 0 0 0 0)
  2517. (uuid c8dda3cf-1ac2-4484-a1c9-12bae966b5e9)
  2518. )
  2519. (junction (at 104.14 116.205) (diameter 0) (color 0 0 0 0)
  2520. (uuid d8cf0c73-b49e-4a20-9d75-5b76ec9422a9)
  2521. )
  2522. (junction (at 224.79 257.81) (diameter 0) (color 0 0 0 0)
  2523. (uuid dbf2bfab-832f-4174-82d2-7f727964785d)
  2524. )
  2525. (junction (at 386.08 207.645) (diameter 0) (color 0 0 0 0)
  2526. (uuid e01767ae-ca30-4f4c-8cba-b37e9bd6c75d)
  2527. )
  2528. (junction (at 364.49 207.645) (diameter 0) (color 0 0 0 0)
  2529. (uuid e38a792c-0fcf-419e-95df-8557b4a5d2e4)
  2530. )
  2531. (junction (at 276.225 170.815) (diameter 0) (color 0 0 0 0)
  2532. (uuid ea9a292f-b205-4180-86a1-442bc1ba4cab)
  2533. )
  2534. (junction (at 236.22 177.165) (diameter 0) (color 0 0 0 0)
  2535. (uuid f635bfa2-7c42-44d4-ad2f-c0d1b86a6e8f)
  2536. )
  2537. (no_connect (at 213.36 88.9) (uuid 0228eecb-4a95-43d0-8c8a-cc0bcd0af552))
  2538. (no_connect (at 259.08 58.42) (uuid 0314bfef-5193-4570-891f-3271dfa59461))
  2539. (no_connect (at 213.36 58.42) (uuid 035d07e5-6b07-4de9-8f50-bb741a54b31f))
  2540. (no_connect (at 363.22 26.67) (uuid 0fb4c35b-5700-47ad-924b-1ec42fba396d))
  2541. (no_connect (at 213.36 160.02) (uuid 13573655-e161-4b9a-ad49-c4d4c2c3cf1f))
  2542. (no_connect (at 372.745 26.67) (uuid 15b4123f-c1ad-473f-8f27-6ddfe1371711))
  2543. (no_connect (at 259.08 66.04) (uuid 16c79785-783e-428a-803f-6de229b6d066))
  2544. (no_connect (at 259.08 137.16) (uuid 21950a58-89e6-499c-b011-f442fcb4803f))
  2545. (no_connect (at 171.45 78.74) (uuid 23964d45-3a33-4638-9532-c02fcee7795d))
  2546. (no_connect (at 213.36 162.56) (uuid 256ed967-cf6e-491a-b490-1ed01b4f1c15))
  2547. (no_connect (at 383.54 26.035) (uuid 3374e243-69a5-4039-b972-e0b0f83b4864))
  2548. (no_connect (at 259.08 81.28) (uuid 3754644d-1d46-4d27-9307-0fbc18c79f92))
  2549. (no_connect (at 259.08 91.44) (uuid 4359f50e-15c1-44fe-831f-64280f38b905))
  2550. (no_connect (at 259.08 154.94) (uuid 46145aa4-524f-454a-81bd-2b68e8f44ba1))
  2551. (no_connect (at 259.08 55.88) (uuid 46c1d7ec-ad54-4357-9c3a-6ac94e5c81e6))
  2552. (no_connect (at 259.08 68.58) (uuid 4c06a710-e4db-424b-8201-539495786eb1))
  2553. (no_connect (at 131.445 272.415) (uuid 4cf65508-f841-4110-ad93-f9fa0c32e9be))
  2554. (no_connect (at 259.08 109.22) (uuid 62376c5a-2b8d-4e76-b259-67880e710825))
  2555. (no_connect (at 259.08 147.32) (uuid 6463f807-19be-4146-b27f-7dbd3ec6f259))
  2556. (no_connect (at 259.08 43.18) (uuid 7086c539-c0ba-4b8c-b4a5-334481cc0f67))
  2557. (no_connect (at 213.36 91.44) (uuid 75cb3faa-55dd-4f1b-94b1-b701d1b2afa5))
  2558. (no_connect (at 259.08 132.08) (uuid 76e3761f-3777-4d61-8ac7-2814b3f4f4e1))
  2559. (no_connect (at 275.59 217.17) (uuid 7f1bcc07-391e-4734-8825-4dbe78fe58e1))
  2560. (no_connect (at 259.08 45.72) (uuid 80d31e92-6b79-4ba8-8101-049be98fa365))
  2561. (no_connect (at 213.36 167.64) (uuid 85100690-7ced-43bc-8e98-137f7994e84f))
  2562. (no_connect (at 259.08 134.62) (uuid 9b23630f-5fe2-4748-8b62-52df2ad3f457))
  2563. (no_connect (at 259.08 71.12) (uuid 9c8681c1-42c5-41da-b9a0-70af82869e14))
  2564. (no_connect (at 90.17 108.585) (uuid 9e2c97c5-1ce0-4a8b-b6c9-7be13f57208f))
  2565. (no_connect (at 213.36 165.1) (uuid 9fb853c1-a422-4827-91ec-b116e9ec4773))
  2566. (no_connect (at 259.08 160.02) (uuid a1c71eb1-723a-4d21-9d91-2fd360a55cfd))
  2567. (no_connect (at 259.08 142.24) (uuid a4670338-9d69-4776-ae0b-0b999bdbdcbf))
  2568. (no_connect (at 213.36 157.48) (uuid a7a7a1b1-2102-4201-8645-bf8d1d9831e8))
  2569. (no_connect (at 259.08 53.34) (uuid af091b4c-526d-4804-ba7e-55c5cde88c84))
  2570. (no_connect (at 259.08 162.56) (uuid c03806d0-3c65-4e72-8eeb-0e59b6e3da5d))
  2571. (no_connect (at 259.08 73.66) (uuid c30b262e-e467-4976-9764-1e7a20a03386))
  2572. (no_connect (at 259.08 60.96) (uuid cc7b40e7-91f5-4d53-9232-7fefd67910ae))
  2573. (no_connect (at 275.59 201.93) (uuid d2eb5fe7-afb3-4f9a-8cec-8dad54d638f5))
  2574. (no_connect (at 259.08 144.78) (uuid d5eda30b-f938-4f35-a151-018de4da8be2))
  2575. (no_connect (at 259.08 63.5) (uuid d97804a4-2df4-4aeb-8e37-0137b56f9d95))
  2576. (no_connect (at 259.08 88.9) (uuid d9e9baa6-ad76-46ff-8fd6-2d7563bc21f3))
  2577. (no_connect (at 259.08 129.54) (uuid e0690683-5dfb-47fa-9956-c80ce2c2008c))
  2578. (no_connect (at 393.065 26.035) (uuid e585fd70-13c2-4a36-8618-47784e6bf19c))
  2579. (no_connect (at 259.08 86.36) (uuid e81d794f-2895-4991-8f65-5ce01ccde1f2))
  2580. (no_connect (at 213.36 93.98) (uuid eb37baab-aa9a-48f9-bffb-add36c265914))
  2581. (no_connect (at 275.59 227.33) (uuid f04b9f23-ddeb-4de2-befe-d27072497a37))
  2582. (no_connect (at 213.36 86.36) (uuid f7024b5a-72b6-4a28-98a7-3c94a22e9e31))
  2583. (no_connect (at 213.36 81.28) (uuid f7ef5957-ff4e-4f0e-ae44-ee2dc0140305))
  2584. (wire (pts (xy 358.14 213.995) (xy 358.14 215.265))
  2585. (stroke (width 0) (type default) (color 0 0 0 0))
  2586. (uuid 00f9745a-4936-40a1-b7d5-cbbade4827b8)
  2587. )
  2588. (wire (pts (xy 393.7 213.995) (xy 393.7 215.265))
  2589. (stroke (width 0) (type default) (color 0 0 0 0))
  2590. (uuid 0104b81d-650b-44f3-9520-4592963c1d4d)
  2591. )
  2592. (wire (pts (xy 199.39 64.135) (xy 201.295 64.135))
  2593. (stroke (width 0) (type default) (color 0 0 0 0))
  2594. (uuid 0309c2d1-a0db-43d7-a366-4f2f19eeab21)
  2595. )
  2596. (wire (pts (xy 231.14 34.29) (xy 233.68 34.29))
  2597. (stroke (width 0) (type default) (color 0 0 0 0))
  2598. (uuid 034d31bd-a6e6-498b-87b6-66073f76891b)
  2599. )
  2600. (wire (pts (xy 155.575 209.55) (xy 175.895 209.55))
  2601. (stroke (width 0) (type default) (color 0 0 0 0))
  2602. (uuid 04973f52-fa4f-49bb-a595-4f4bbad924e1)
  2603. )
  2604. (polyline (pts (xy 86.36 247.65) (xy 86.36 200.66))
  2605. (stroke (width 0) (type default) (color 0 0 0 0))
  2606. (uuid 05e2d68b-5a22-429b-8e1f-c7ce12ad5afc)
  2607. )
  2608. (wire (pts (xy 191.77 257.81) (xy 191.77 259.715))
  2609. (stroke (width 0) (type default) (color 0 0 0 0))
  2610. (uuid 061103d9-ff8a-4a3a-9be6-a66af9870472)
  2611. )
  2612. (wire (pts (xy 243.84 34.29) (xy 243.84 35.56))
  2613. (stroke (width 0) (type default) (color 0 0 0 0))
  2614. (uuid 07079431-4375-4583-a393-27d3416574e1)
  2615. )
  2616. (wire (pts (xy 224.79 257.81) (xy 224.79 259.715))
  2617. (stroke (width 0) (type default) (color 0 0 0 0))
  2618. (uuid 08bbba76-e8a3-4b72-bda5-2f3e4aae9da2)
  2619. )
  2620. (wire (pts (xy 180.34 259.715) (xy 180.34 257.81))
  2621. (stroke (width 0) (type default) (color 0 0 0 0))
  2622. (uuid 09496cbb-d5af-46e1-b17e-81509a379bb8)
  2623. )
  2624. (wire (pts (xy 188.595 43.18) (xy 188.595 44.45))
  2625. (stroke (width 0) (type default) (color 0 0 0 0))
  2626. (uuid 09601cec-83b5-418a-8ffb-a133872963f7)
  2627. )
  2628. (wire (pts (xy 246.38 257.81) (xy 257.81 257.81))
  2629. (stroke (width 0) (type default) (color 0 0 0 0))
  2630. (uuid 09a4f33e-669f-4b21-b0d1-49e347e1ae20)
  2631. )
  2632. (wire (pts (xy 191.77 264.795) (xy 191.77 267.97))
  2633. (stroke (width 0) (type default) (color 0 0 0 0))
  2634. (uuid 0ca72592-6f96-4389-974b-dedc815bbd98)
  2635. )
  2636. (wire (pts (xy 275.59 204.47) (xy 276.86 204.47))
  2637. (stroke (width 0) (type default) (color 0 0 0 0))
  2638. (uuid 0d2875f6-e934-4f30-be06-f8ded88229ee)
  2639. )
  2640. (wire (pts (xy 201.93 257.81) (xy 201.93 259.715))
  2641. (stroke (width 0) (type default) (color 0 0 0 0))
  2642. (uuid 0f2caa97-a442-407d-ba41-e793c1504286)
  2643. )
  2644. (wire (pts (xy 131.445 267.335) (xy 132.715 267.335))
  2645. (stroke (width 0) (type default) (color 0 0 0 0))
  2646. (uuid 121c3de7-bb19-4d6b-a0dc-77ffcc518aa9)
  2647. )
  2648. (wire (pts (xy 104.14 133.985) (xy 104.14 139.065))
  2649. (stroke (width 0) (type default) (color 0 0 0 0))
  2650. (uuid 1285ff37-795a-49ce-a644-58af5a813b5c)
  2651. )
  2652. (wire (pts (xy 196.85 63.5) (xy 196.85 64.135))
  2653. (stroke (width 0) (type default) (color 0 0 0 0))
  2654. (uuid 12904004-10e4-40dc-90e5-116e1f9581e9)
  2655. )
  2656. (wire (pts (xy 233.68 34.29) (xy 236.22 34.29))
  2657. (stroke (width 0) (type default) (color 0 0 0 0))
  2658. (uuid 13cd0508-198b-4996-80f5-e16e881b6de2)
  2659. )
  2660. (wire (pts (xy 212.09 121.92) (xy 213.36 121.92))
  2661. (stroke (width 0) (type default) (color 0 0 0 0))
  2662. (uuid 13e193bf-324f-4f67-9d25-0c147bae9050)
  2663. )
  2664. (wire (pts (xy 71.12 224.79) (xy 73.66 224.79))
  2665. (stroke (width 0) (type default) (color 0 0 0 0))
  2666. (uuid 141ebe84-3d5c-43cc-9ba9-38d2093510ab)
  2667. )
  2668. (wire (pts (xy 212.09 119.38) (xy 213.36 119.38))
  2669. (stroke (width 0) (type default) (color 0 0 0 0))
  2670. (uuid 14b3875b-7a1d-44bb-ad12-07c5c6e2b093)
  2671. )
  2672. (wire (pts (xy 259.08 121.92) (xy 261.62 121.92))
  2673. (stroke (width 0) (type default) (color 0 0 0 0))
  2674. (uuid 167494a5-10fb-482e-8eba-a3414424ae6e)
  2675. )
  2676. (wire (pts (xy 288.29 224.79) (xy 288.29 229.87))
  2677. (stroke (width 0) (type default) (color 0 0 0 0))
  2678. (uuid 18a85c71-f0a8-4f5e-92fc-a318e8d03eaa)
  2679. )
  2680. (wire (pts (xy 259.08 119.38) (xy 261.62 119.38))
  2681. (stroke (width 0) (type default) (color 0 0 0 0))
  2682. (uuid 19543689-610e-40ef-be33-fb2d0513bc01)
  2683. )
  2684. (wire (pts (xy 234.95 257.81) (xy 234.95 259.715))
  2685. (stroke (width 0) (type default) (color 0 0 0 0))
  2686. (uuid 195c78b1-ad63-4727-a6eb-dc24234aca7b)
  2687. )
  2688. (wire (pts (xy 375.92 182.245) (xy 383.54 182.245))
  2689. (stroke (width 0) (type default) (color 0 0 0 0))
  2690. (uuid 19a93d6c-bcde-45db-8006-83bc97aa0806)
  2691. )
  2692. (wire (pts (xy 90.17 85.725) (xy 104.14 85.725))
  2693. (stroke (width 0) (type default) (color 0 0 0 0))
  2694. (uuid 1a73e168-3f1c-4628-b602-161f10192054)
  2695. )
  2696. (wire (pts (xy 358.14 208.915) (xy 358.14 207.645))
  2697. (stroke (width 0) (type default) (color 0 0 0 0))
  2698. (uuid 1a8b271d-73b5-4938-947f-566d9abcfad8)
  2699. )
  2700. (polyline (pts (xy 71.12 249.555) (xy 71.12 283.845))
  2701. (stroke (width 0) (type default) (color 0 0 0 0))
  2702. (uuid 1af52a26-db4c-4f55-ac10-9c9ff13a157a)
  2703. )
  2704. (wire (pts (xy 231.14 177.165) (xy 233.68 177.165))
  2705. (stroke (width 0) (type default) (color 0 0 0 0))
  2706. (uuid 1bf853cf-4930-41d4-a6d2-430f4e761ca1)
  2707. )
  2708. (polyline (pts (xy 402.59 187.96) (xy 400.685 187.96))
  2709. (stroke (width 0) (type default) (color 0 0 0 0))
  2710. (uuid 1c7d6348-e8b8-4e6b-8c05-9868efdccfc8)
  2711. )
  2712. (wire (pts (xy 278.13 209.55) (xy 304.8 209.55))
  2713. (stroke (width 0) (type default) (color 0 0 0 0))
  2714. (uuid 1c848699-37f3-4b98-be91-6d62503046d2)
  2715. )
  2716. (wire (pts (xy 201.93 257.81) (xy 213.36 257.81))
  2717. (stroke (width 0) (type default) (color 0 0 0 0))
  2718. (uuid 1dbbef45-00da-4845-9bf6-431a0202438b)
  2719. )
  2720. (wire (pts (xy 26.67 215.9) (xy 26.67 217.805))
  2721. (stroke (width 0) (type default) (color 0 0 0 0))
  2722. (uuid 200cb5d0-33b7-463e-b19f-a65c9de1afa1)
  2723. )
  2724. (wire (pts (xy 201.295 64.135) (xy 201.295 63.5))
  2725. (stroke (width 0) (type default) (color 0 0 0 0))
  2726. (uuid 228db50b-5d23-4c8e-9223-749ec76fbea7)
  2727. )
  2728. (wire (pts (xy 36.195 233.68) (xy 36.195 231.775))
  2729. (stroke (width 0) (type default) (color 0 0 0 0))
  2730. (uuid 23ac7723-e5f5-4810-9dbb-0773f7fd1f3f)
  2731. )
  2732. (wire (pts (xy 259.08 167.64) (xy 262.89 167.64))
  2733. (stroke (width 0) (type default) (color 0 0 0 0))
  2734. (uuid 264b3bc7-52bf-4e5a-b9e7-cf5866191dda)
  2735. )
  2736. (polyline (pts (xy 53.975 208.28) (xy 53.975 242.57))
  2737. (stroke (width 0) (type default) (color 0 0 0 0))
  2738. (uuid 264bd1e8-fbc0-43d9-95ab-e6e6d69d39e0)
  2739. )
  2740. (wire (pts (xy 212.09 101.6) (xy 213.36 101.6))
  2741. (stroke (width 0) (type default) (color 0 0 0 0))
  2742. (uuid 28866ef7-8460-4d33-9116-f603fb74389e)
  2743. )
  2744. (wire (pts (xy 259.08 116.84) (xy 261.62 116.84))
  2745. (stroke (width 0) (type default) (color 0 0 0 0))
  2746. (uuid 28db76e1-b35f-43d5-962d-57a8df5db663)
  2747. )
  2748. (wire (pts (xy 211.455 137.16) (xy 213.36 137.16))
  2749. (stroke (width 0) (type default) (color 0 0 0 0))
  2750. (uuid 2a3622fd-fcb4-4a37-84b8-826a48626a78)
  2751. )
  2752. (wire (pts (xy 234.95 257.81) (xy 246.38 257.81))
  2753. (stroke (width 0) (type default) (color 0 0 0 0))
  2754. (uuid 2a5fe151-6d26-4788-adc5-ad732bfe70ed)
  2755. )
  2756. (wire (pts (xy 233.68 177.165) (xy 233.68 175.26))
  2757. (stroke (width 0) (type default) (color 0 0 0 0))
  2758. (uuid 2b2a2ea4-331e-415d-8cc5-7226f8169988)
  2759. )
  2760. (wire (pts (xy 224.79 267.97) (xy 234.95 267.97))
  2761. (stroke (width 0) (type default) (color 0 0 0 0))
  2762. (uuid 2bb66d32-05e1-4301-90d4-f0a3249b925b)
  2763. )
  2764. (wire (pts (xy 26.67 233.68) (xy 36.195 233.68))
  2765. (stroke (width 0) (type default) (color 0 0 0 0))
  2766. (uuid 2bee96bb-d6aa-41c6-bc7a-480d6a3b6c6e)
  2767. )
  2768. (wire (pts (xy 279.4 257.81) (xy 289.56 257.81))
  2769. (stroke (width 0) (type default) (color 0 0 0 0))
  2770. (uuid 2c013b69-165a-4bfd-bad0-f9c577d63f55)
  2771. )
  2772. (wire (pts (xy 201.295 55.88) (xy 202.565 55.88))
  2773. (stroke (width 0) (type default) (color 0 0 0 0))
  2774. (uuid 2ef5ecae-c2b5-45ad-b8ce-aa7426dff493)
  2775. )
  2776. (polyline (pts (xy 141.605 249.555) (xy 141.605 283.845))
  2777. (stroke (width 0) (type default) (color 0 0 0 0))
  2778. (uuid 2f0fbee1-f278-40fc-96d6-23f5dfa6bbd4)
  2779. )
  2780. (wire (pts (xy 158.115 245.11) (xy 175.895 245.11))
  2781. (stroke (width 0) (type default) (color 0 0 0 0))
  2782. (uuid 2f2a45e0-b7c7-4cd3-9279-e3de3c15afb0)
  2783. )
  2784. (wire (pts (xy 374.65 215.265) (xy 374.65 216.535))
  2785. (stroke (width 0) (type default) (color 0 0 0 0))
  2786. (uuid 31ff90ca-461a-46d6-923d-55edb1ce52bf)
  2787. )
  2788. (wire (pts (xy 180.34 257.81) (xy 191.77 257.81))
  2789. (stroke (width 0) (type default) (color 0 0 0 0))
  2790. (uuid 32d9a46f-a2da-4897-a74b-8414a2b5dd34)
  2791. )
  2792. (polyline (pts (xy 141.605 283.845) (xy 71.12 283.845))
  2793. (stroke (width 0) (type default) (color 0 0 0 0))
  2794. (uuid 344ba8c6-003b-4a74-a10f-a67d0c4c8dc1)
  2795. )
  2796. (polyline (pts (xy 253.365 240.03) (xy 344.17 240.03))
  2797. (stroke (width 0) (type default) (color 0 0 0 0))
  2798. (uuid 354f0a00-794d-45c2-9f36-55702b6cee2b)
  2799. )
  2800. (wire (pts (xy 234.95 267.97) (xy 246.38 267.97))
  2801. (stroke (width 0) (type default) (color 0 0 0 0))
  2802. (uuid 354f72a6-b245-4ca7-83e5-c96bb30e3e38)
  2803. )
  2804. (wire (pts (xy 104.14 116.205) (xy 104.14 121.285))
  2805. (stroke (width 0) (type default) (color 0 0 0 0))
  2806. (uuid 3557faa0-a95e-45ac-aa33-9187ed4d495b)
  2807. )
  2808. (wire (pts (xy 181.61 69.85) (xy 181.61 71.12))
  2809. (stroke (width 0) (type default) (color 0 0 0 0))
  2810. (uuid 37dda214-c319-4569-be74-b468107ac112)
  2811. )
  2812. (polyline (pts (xy 55.245 242.57) (xy 83.82 242.57))
  2813. (stroke (width 0) (type default) (color 0 0 0 0))
  2814. (uuid 38294b37-eaae-4bac-9871-c6cee8609440)
  2815. )
  2816. (wire (pts (xy 193.675 53.975) (xy 196.85 53.975))
  2817. (stroke (width 0) (type default) (color 0 0 0 0))
  2818. (uuid 393c3943-7b41-4263-9e99-291f7d5d5cdd)
  2819. )
  2820. (wire (pts (xy 90.17 116.205) (xy 104.14 116.205))
  2821. (stroke (width 0) (type default) (color 0 0 0 0))
  2822. (uuid 3a0f78d6-22a0-4780-9451-e6de5909db2f)
  2823. )
  2824. (wire (pts (xy 106.68 245.11) (xy 96.52 245.11))
  2825. (stroke (width 0) (type default) (color 0 0 0 0))
  2826. (uuid 3a3a7dda-8009-4876-b1fc-16762611e6f5)
  2827. )
  2828. (wire (pts (xy 246.38 267.97) (xy 257.81 267.97))
  2829. (stroke (width 0) (type default) (color 0 0 0 0))
  2830. (uuid 3a583a5e-c998-405b-b43a-4e322ca24efc)
  2831. )
  2832. (wire (pts (xy 211.455 139.7) (xy 213.36 139.7))
  2833. (stroke (width 0) (type default) (color 0 0 0 0))
  2834. (uuid 3afbf8a7-e706-45ac-947b-b661a1368d1c)
  2835. )
  2836. (wire (pts (xy 90.17 113.665) (xy 104.14 113.665))
  2837. (stroke (width 0) (type default) (color 0 0 0 0))
  2838. (uuid 3d6ef5e7-f3fc-4694-9150-65489df69522)
  2839. )
  2840. (wire (pts (xy 213.36 264.795) (xy 213.36 267.97))
  2841. (stroke (width 0) (type default) (color 0 0 0 0))
  2842. (uuid 3de346fc-b7dc-4c53-a876-ab5786078e15)
  2843. )
  2844. (wire (pts (xy 168.91 267.97) (xy 168.91 266.065))
  2845. (stroke (width 0) (type default) (color 0 0 0 0))
  2846. (uuid 3e01c9a6-290b-4b6e-b5a5-5e86df517488)
  2847. )
  2848. (polyline (pts (xy 142.875 249.555) (xy 298.45 249.555))
  2849. (stroke (width 0) (type default) (color 0 0 0 0))
  2850. (uuid 3e027189-3589-43e7-be89-0b6e7d1b7871)
  2851. )
  2852. (wire (pts (xy 364.49 213.995) (xy 364.49 215.265))
  2853. (stroke (width 0) (type default) (color 0 0 0 0))
  2854. (uuid 3ed92f35-0cfd-4a03-9bf3-63cf60211b1b)
  2855. )
  2856. (wire (pts (xy 241.3 34.29) (xy 241.3 35.56))
  2857. (stroke (width 0) (type default) (color 0 0 0 0))
  2858. (uuid 3f358830-dc16-44f6-b319-3d79fb6e7862)
  2859. )
  2860. (wire (pts (xy 196.85 64.135) (xy 199.39 64.135))
  2861. (stroke (width 0) (type default) (color 0 0 0 0))
  2862. (uuid 3fccf69b-79a2-4888-9588-d54a9588ec20)
  2863. )
  2864. (wire (pts (xy 202.565 55.88) (xy 213.36 55.88))
  2865. (stroke (width 0) (type default) (color 0 0 0 0))
  2866. (uuid 3fe559b4-e248-4553-b40d-3a606157ede8)
  2867. )
  2868. (wire (pts (xy 276.225 170.815) (xy 276.225 172.72))
  2869. (stroke (width 0) (type default) (color 0 0 0 0))
  2870. (uuid 40d5e796-35df-48b9-96db-6ebb4302c979)
  2871. )
  2872. (wire (pts (xy 259.08 139.7) (xy 260.35 139.7))
  2873. (stroke (width 0) (type default) (color 0 0 0 0))
  2874. (uuid 40ee6174-f3f1-4daf-beef-42cc348fee0d)
  2875. )
  2876. (wire (pts (xy 257.81 257.81) (xy 267.97 257.81))
  2877. (stroke (width 0) (type default) (color 0 0 0 0))
  2878. (uuid 42d22bc1-a3c4-4f5c-9059-cba2cf9d9566)
  2879. )
  2880. (wire (pts (xy 398.78 203.2) (xy 398.78 207.645))
  2881. (stroke (width 0) (type default) (color 0 0 0 0))
  2882. (uuid 439d85e0-7be4-402a-905a-327291586bef)
  2883. )
  2884. (wire (pts (xy 129.54 245.11) (xy 111.76 245.11))
  2885. (stroke (width 0) (type default) (color 0 0 0 0))
  2886. (uuid 44a5aeab-34df-4569-ad99-d79b0576cd67)
  2887. )
  2888. (wire (pts (xy 259.08 99.06) (xy 261.62 99.06))
  2889. (stroke (width 0) (type default) (color 0 0 0 0))
  2890. (uuid 4675b069-6855-463f-b0d1-9633ba913929)
  2891. )
  2892. (wire (pts (xy 111.76 267.335) (xy 118.745 267.335))
  2893. (stroke (width 0) (type default) (color 0 0 0 0))
  2894. (uuid 47d4ffb1-f25d-4489-bc30-c9ed386fb856)
  2895. )
  2896. (wire (pts (xy 236.22 177.165) (xy 238.76 177.165))
  2897. (stroke (width 0) (type default) (color 0 0 0 0))
  2898. (uuid 4a9b3bcb-f850-4edb-a60a-434161985b1b)
  2899. )
  2900. (wire (pts (xy 180.34 267.97) (xy 180.34 269.875))
  2901. (stroke (width 0) (type default) (color 0 0 0 0))
  2902. (uuid 4b4d744d-4beb-44ad-967b-f3e599f821cc)
  2903. )
  2904. (wire (pts (xy 238.76 177.165) (xy 241.3 177.165))
  2905. (stroke (width 0) (type default) (color 0 0 0 0))
  2906. (uuid 4c922c74-f7db-47d2-bf1d-f0de3a61e965)
  2907. )
  2908. (wire (pts (xy 246.38 264.795) (xy 246.38 267.97))
  2909. (stroke (width 0) (type default) (color 0 0 0 0))
  2910. (uuid 4df6cff0-cdeb-4bb5-a2b2-d8fd9f4d9460)
  2911. )
  2912. (wire (pts (xy 23.495 264.795) (xy 23.495 267.97))
  2913. (stroke (width 0) (type default) (color 0 0 0 0))
  2914. (uuid 4eab3d21-afb6-4f13-a85d-638c84d01452)
  2915. )
  2916. (polyline (pts (xy 14.605 283.845) (xy 69.85 283.845))
  2917. (stroke (width 0) (type default) (color 0 0 0 0))
  2918. (uuid 4ed302ea-99d0-4536-bc28-50b67d2ec7dc)
  2919. )
  2920. (wire (pts (xy 168.91 260.985) (xy 168.91 257.81))
  2921. (stroke (width 0) (type default) (color 0 0 0 0))
  2922. (uuid 4f7ca5f3-0359-4665-8019-89f79617b56a)
  2923. )
  2924. (wire (pts (xy 71.12 227.33) (xy 73.66 227.33))
  2925. (stroke (width 0) (type default) (color 0 0 0 0))
  2926. (uuid 4ffed0e0-6cf7-40d1-815d-c36517faa150)
  2927. )
  2928. (wire (pts (xy 393.7 207.645) (xy 398.78 207.645))
  2929. (stroke (width 0) (type default) (color 0 0 0 0))
  2930. (uuid 5144cbbc-9f50-4651-89cc-44b8d3f974c1)
  2931. )
  2932. (wire (pts (xy 259.08 124.46) (xy 261.62 124.46))
  2933. (stroke (width 0) (type default) (color 0 0 0 0))
  2934. (uuid 53829a5a-cd61-4bce-b16b-12b400f9ba8a)
  2935. )
  2936. (wire (pts (xy 267.97 267.97) (xy 279.4 267.97))
  2937. (stroke (width 0) (type default) (color 0 0 0 0))
  2938. (uuid 53c82ef2-c3dc-4a29-aebc-843fbb5b248e)
  2939. )
  2940. (wire (pts (xy 289.56 267.97) (xy 289.56 264.795))
  2941. (stroke (width 0) (type default) (color 0 0 0 0))
  2942. (uuid 572f1cc9-fa20-43bd-80b0-f2f80a977848)
  2943. )
  2944. (wire (pts (xy 36.195 233.68) (xy 45.085 233.68))
  2945. (stroke (width 0) (type default) (color 0 0 0 0))
  2946. (uuid 5738197f-9c84-4ac8-8384-d1f6e8b86b9c)
  2947. )
  2948. (wire (pts (xy 236.22 34.29) (xy 236.22 35.56))
  2949. (stroke (width 0) (type default) (color 0 0 0 0))
  2950. (uuid 59ae0972-24c4-42c7-acad-2fc8ca6a63d7)
  2951. )
  2952. (wire (pts (xy 26.67 222.885) (xy 26.67 224.155))
  2953. (stroke (width 0) (type default) (color 0 0 0 0))
  2954. (uuid 59c832d1-abfb-4d1f-97b6-2508e41164e5)
  2955. )
  2956. (wire (pts (xy 180.34 257.81) (xy 168.91 257.81))
  2957. (stroke (width 0) (type default) (color 0 0 0 0))
  2958. (uuid 5a1ca7fd-2ec4-4a65-a741-6f7a2cc4d78d)
  2959. )
  2960. (wire (pts (xy 211.455 149.86) (xy 213.36 149.86))
  2961. (stroke (width 0) (type default) (color 0 0 0 0))
  2962. (uuid 5bc2cabe-188f-492d-a61b-ed2fe683ad3b)
  2963. )
  2964. (wire (pts (xy 275.59 207.01) (xy 283.21 207.01))
  2965. (stroke (width 0) (type default) (color 0 0 0 0))
  2966. (uuid 5bf8536c-c515-40b8-99b2-c280dbeb2ba9)
  2967. )
  2968. (wire (pts (xy 26.67 231.775) (xy 26.67 233.68))
  2969. (stroke (width 0) (type default) (color 0 0 0 0))
  2970. (uuid 5c0eadf6-a600-4b2f-8d53-6e41cd589382)
  2971. )
  2972. (wire (pts (xy 212.09 116.84) (xy 213.36 116.84))
  2973. (stroke (width 0) (type default) (color 0 0 0 0))
  2974. (uuid 5d065267-5031-441f-8925-c5565585fbbd)
  2975. )
  2976. (polyline (pts (xy 349.25 191.135) (xy 403.225 191.135))
  2977. (stroke (width 0) (type default) (color 0 0 0 0))
  2978. (uuid 5d921de7-5122-4126-804a-6470f172777e)
  2979. )
  2980. (polyline (pts (xy 142.875 283.845) (xy 298.45 283.845))
  2981. (stroke (width 0) (type default) (color 0 0 0 0))
  2982. (uuid 5eba8eb1-5d7a-4b0d-9b8f-78a89da843c8)
  2983. )
  2984. (wire (pts (xy 275.59 196.85) (xy 288.29 196.85))
  2985. (stroke (width 0) (type default) (color 0 0 0 0))
  2986. (uuid 5f618c72-3641-4594-98a1-27c94bf3b4fe)
  2987. )
  2988. (wire (pts (xy 201.93 255.905) (xy 201.93 257.81))
  2989. (stroke (width 0) (type default) (color 0 0 0 0))
  2990. (uuid 60195a8e-b0fa-4688-a8dd-cb6babd05c7c)
  2991. )
  2992. (wire (pts (xy 45.085 215.9) (xy 45.085 217.805))
  2993. (stroke (width 0) (type default) (color 0 0 0 0))
  2994. (uuid 605a35e6-380e-4dc7-89ca-64438b36406b)
  2995. )
  2996. (wire (pts (xy 201.295 58.42) (xy 201.295 55.88))
  2997. (stroke (width 0) (type default) (color 0 0 0 0))
  2998. (uuid 60b7efd8-5657-45e5-a817-6925d8ddfa1e)
  2999. )
  3000. (wire (pts (xy 188.595 49.53) (xy 188.595 50.8))
  3001. (stroke (width 0) (type default) (color 0 0 0 0))
  3002. (uuid 610335b5-5fa4-468b-b360-5ac6aaaabaa9)
  3003. )
  3004. (wire (pts (xy 200.025 244.475) (xy 189.865 244.475))
  3005. (stroke (width 0) (type default) (color 0 0 0 0))
  3006. (uuid 62c04150-79d0-4ae0-8a2b-f20c67427ae7)
  3007. )
  3008. (wire (pts (xy 292.1 237.49) (xy 304.8 237.49))
  3009. (stroke (width 0) (type default) (color 0 0 0 0))
  3010. (uuid 63c422a1-c4eb-41ff-a157-467389e11cc6)
  3011. )
  3012. (wire (pts (xy 180.34 267.97) (xy 168.91 267.97))
  3013. (stroke (width 0) (type default) (color 0 0 0 0))
  3014. (uuid 651c9f54-641d-4c51-8040-e1082d29243e)
  3015. )
  3016. (wire (pts (xy 236.22 34.29) (xy 238.76 34.29))
  3017. (stroke (width 0) (type default) (color 0 0 0 0))
  3018. (uuid 65854571-c579-4f16-9f36-ce85f00ee9a0)
  3019. )
  3020. (wire (pts (xy 304.8 237.49) (xy 304.8 234.95))
  3021. (stroke (width 0) (type default) (color 0 0 0 0))
  3022. (uuid 65dafd6c-6a69-401e-b25b-292a3e98224d)
  3023. )
  3024. (wire (pts (xy 262.89 177.8) (xy 262.89 180.34))
  3025. (stroke (width 0) (type default) (color 0 0 0 0))
  3026. (uuid 6613505b-91fb-46a7-a5dc-a3504f06330d)
  3027. )
  3028. (wire (pts (xy 386.08 213.995) (xy 386.08 215.265))
  3029. (stroke (width 0) (type default) (color 0 0 0 0))
  3030. (uuid 66e51c2d-001f-4fba-bd92-919010d7553f)
  3031. )
  3032. (wire (pts (xy 117.475 269.875) (xy 118.745 269.875))
  3033. (stroke (width 0) (type default) (color 0 0 0 0))
  3034. (uuid 6813f0cf-a55b-4331-8011-6fd0ef205fee)
  3035. )
  3036. (wire (pts (xy 228.6 177.165) (xy 231.14 177.165))
  3037. (stroke (width 0) (type default) (color 0 0 0 0))
  3038. (uuid 6820f075-26b0-4e80-a0da-5e28950495ef)
  3039. )
  3040. (wire (pts (xy 104.14 139.065) (xy 104.14 142.875))
  3041. (stroke (width 0) (type default) (color 0 0 0 0))
  3042. (uuid 683683a7-853d-433a-b804-0b68d3399513)
  3043. )
  3044. (wire (pts (xy 275.59 224.79) (xy 288.29 224.79))
  3045. (stroke (width 0) (type default) (color 0 0 0 0))
  3046. (uuid 686e5367-bfaf-47b1-ab57-f0a07d21225c)
  3047. )
  3048. (polyline (pts (xy 227.965 200.66) (xy 227.965 247.65))
  3049. (stroke (width 0) (type default) (color 0 0 0 0))
  3050. (uuid 68e6db59-130b-418a-ac56-d240a85373c3)
  3051. )
  3052. (wire (pts (xy 262.89 167.64) (xy 262.89 170.815))
  3053. (stroke (width 0) (type default) (color 0 0 0 0))
  3054. (uuid 69223820-abc2-469f-8d35-e0549980364c)
  3055. )
  3056. (wire (pts (xy 285.75 199.39) (xy 285.75 222.25))
  3057. (stroke (width 0) (type default) (color 0 0 0 0))
  3058. (uuid 6a880e26-ea02-4bd1-9457-6af47b28a0f2)
  3059. )
  3060. (polyline (pts (xy 347.345 191.135) (xy 349.25 191.135))
  3061. (stroke (width 0) (type default) (color 0 0 0 0))
  3062. (uuid 6bdc4867-d99f-465b-a62d-e08bef7bb199)
  3063. )
  3064. (wire (pts (xy 259.08 149.86) (xy 260.985 149.86))
  3065. (stroke (width 0) (type default) (color 0 0 0 0))
  3066. (uuid 6c54f8dc-59fb-4285-b56c-36aef09813a6)
  3067. )
  3068. (wire (pts (xy 201.93 264.795) (xy 201.93 267.97))
  3069. (stroke (width 0) (type default) (color 0 0 0 0))
  3070. (uuid 6c7ae56a-ac91-45ab-b9b9-1b080edb8f04)
  3071. )
  3072. (wire (pts (xy 83.185 268.605) (xy 85.09 268.605))
  3073. (stroke (width 0) (type default) (color 0 0 0 0))
  3074. (uuid 6f08566a-49a8-46bd-83eb-00de06a6e4a6)
  3075. )
  3076. (wire (pts (xy 213.36 257.81) (xy 224.79 257.81))
  3077. (stroke (width 0) (type default) (color 0 0 0 0))
  3078. (uuid 70354aad-2610-4188-853f-cda54cc04156)
  3079. )
  3080. (wire (pts (xy 201.93 267.97) (xy 213.36 267.97))
  3081. (stroke (width 0) (type default) (color 0 0 0 0))
  3082. (uuid 70e56911-7783-422b-92a6-eb2c404806ff)
  3083. )
  3084. (wire (pts (xy 275.59 219.71) (xy 276.86 219.71))
  3085. (stroke (width 0) (type default) (color 0 0 0 0))
  3086. (uuid 71be9078-a9e6-4c21-a561-38c03da9f2f2)
  3087. )
  3088. (wire (pts (xy 211.455 134.62) (xy 213.36 134.62))
  3089. (stroke (width 0) (type default) (color 0 0 0 0))
  3090. (uuid 71ca7d65-23d6-45ad-a47b-9e8bb589bccb)
  3091. )
  3092. (polyline (pts (xy 53.975 242.57) (xy 14.605 242.57))
  3093. (stroke (width 0) (type default) (color 0 0 0 0))
  3094. (uuid 72372c09-3fc4-4105-8aff-aff28134cff7)
  3095. )
  3096. (polyline (pts (xy 253.365 191.135) (xy 344.17 191.135))
  3097. (stroke (width 0) (type default) (color 0 0 0 0))
  3098. (uuid 72f49e47-f781-4193-bdb5-5741bd124ac1)
  3099. )
  3100. (wire (pts (xy 259.08 157.48) (xy 260.985 157.48))
  3101. (stroke (width 0) (type default) (color 0 0 0 0))
  3102. (uuid 72faa115-97eb-4d7b-85f3-c2d9db0d8d41)
  3103. )
  3104. (polyline (pts (xy 347.345 191.135) (xy 347.345 240.03))
  3105. (stroke (width 0) (type default) (color 0 0 0 0))
  3106. (uuid 73a6f74d-8a47-457d-8ff7-15c8833b64c7)
  3107. )
  3108. (polyline (pts (xy 298.45 283.845) (xy 298.45 249.555))
  3109. (stroke (width 0) (type default) (color 0 0 0 0))
  3110. (uuid 73ebe2cd-ac02-4079-8791-5d126fcab2b9)
  3111. )
  3112. (wire (pts (xy 233.68 34.29) (xy 233.68 32.385))
  3113. (stroke (width 0) (type default) (color 0 0 0 0))
  3114. (uuid 7403bbb0-5bd0-4706-b71a-a17ca41eec50)
  3115. )
  3116. (wire (pts (xy 246.38 34.29) (xy 257.175 34.29))
  3117. (stroke (width 0) (type default) (color 0 0 0 0))
  3118. (uuid 74cead42-44c3-45c2-913c-0c42aec23b02)
  3119. )
  3120. (wire (pts (xy 262.89 172.72) (xy 262.89 170.815))
  3121. (stroke (width 0) (type default) (color 0 0 0 0))
  3122. (uuid 74edf7c0-1303-4640-92c0-abe9dbc2e525)
  3123. )
  3124. (polyline (pts (xy 347.345 240.03) (xy 403.225 240.03))
  3125. (stroke (width 0) (type default) (color 0 0 0 0))
  3126. (uuid 756f4d83-94bf-4863-9268-fc20d0fea853)
  3127. )
  3128. (polyline (pts (xy 55.245 208.28) (xy 55.245 242.57))
  3129. (stroke (width 0) (type default) (color 0 0 0 0))
  3130. (uuid 75cdad85-b6f4-4791-9c56-27ab225161fb)
  3131. )
  3132. (wire (pts (xy 259.08 104.14) (xy 261.62 104.14))
  3133. (stroke (width 0) (type default) (color 0 0 0 0))
  3134. (uuid 7620efe9-8b1d-4e2c-b278-ddf60e858bb1)
  3135. )
  3136. (wire (pts (xy 275.59 222.25) (xy 285.75 222.25))
  3137. (stroke (width 0) (type default) (color 0 0 0 0))
  3138. (uuid 775372e0-258e-4676-9704-7e387ec94a6d)
  3139. )
  3140. (wire (pts (xy 279.4 257.81) (xy 279.4 259.715))
  3141. (stroke (width 0) (type default) (color 0 0 0 0))
  3142. (uuid 778810d9-d0c3-436d-a0a7-d054df6a8613)
  3143. )
  3144. (wire (pts (xy 90.17 111.125) (xy 104.14 111.125))
  3145. (stroke (width 0) (type default) (color 0 0 0 0))
  3146. (uuid 7a874b34-dce5-4c39-b2ed-d3101ffc1be7)
  3147. )
  3148. (wire (pts (xy 211.455 147.32) (xy 213.36 147.32))
  3149. (stroke (width 0) (type default) (color 0 0 0 0))
  3150. (uuid 7ab49503-9e7f-4360-a9dd-0b0b37da503e)
  3151. )
  3152. (wire (pts (xy 397.51 154.94) (xy 397.51 158.115))
  3153. (stroke (width 0) (type default) (color 0 0 0 0))
  3154. (uuid 7b3013c9-6737-4a19-9880-9a5b757e3b88)
  3155. )
  3156. (wire (pts (xy 393.7 208.915) (xy 393.7 207.645))
  3157. (stroke (width 0) (type default) (color 0 0 0 0))
  3158. (uuid 7b754137-127d-4e63-9aff-3bb1b0ef22cb)
  3159. )
  3160. (wire (pts (xy 351.79 203.835) (xy 351.79 207.645))
  3161. (stroke (width 0) (type default) (color 0 0 0 0))
  3162. (uuid 7d5aa525-6058-47de-bf0b-35ce8b7b209d)
  3163. )
  3164. (wire (pts (xy 382.27 207.645) (xy 386.08 207.645))
  3165. (stroke (width 0) (type default) (color 0 0 0 0))
  3166. (uuid 7d729929-f43f-4b41-a687-e6a3c2346e86)
  3167. )
  3168. (wire (pts (xy 288.29 204.47) (xy 288.29 219.71))
  3169. (stroke (width 0) (type default) (color 0 0 0 0))
  3170. (uuid 7d89516d-59d8-439f-8470-53664f550233)
  3171. )
  3172. (wire (pts (xy 259.08 48.26) (xy 262.255 48.26))
  3173. (stroke (width 0) (type default) (color 0 0 0 0))
  3174. (uuid 7df98f36-6972-4fe5-ab9b-e53f116b237e)
  3175. )
  3176. (wire (pts (xy 259.08 101.6) (xy 261.62 101.6))
  3177. (stroke (width 0) (type default) (color 0 0 0 0))
  3178. (uuid 7f1983fe-f5b6-4d7f-95fb-dc6078d31b44)
  3179. )
  3180. (wire (pts (xy 211.455 132.08) (xy 213.36 132.08))
  3181. (stroke (width 0) (type default) (color 0 0 0 0))
  3182. (uuid 7fa9b236-131b-4513-959e-d1d9756c3e60)
  3183. )
  3184. (wire (pts (xy 104.14 113.665) (xy 104.14 116.205))
  3185. (stroke (width 0) (type default) (color 0 0 0 0))
  3186. (uuid 8037e0f6-b8af-44aa-a2a7-13e7c1ae1071)
  3187. )
  3188. (polyline (pts (xy 357.505 187.96) (xy 357.505 147.955))
  3189. (stroke (width 0) (type default) (color 0 0 0 0))
  3190. (uuid 80d573e6-863b-4f3e-88e6-8ab6f5980994)
  3191. )
  3192. (wire (pts (xy 397.51 158.115) (xy 397.51 182.245))
  3193. (stroke (width 0) (type default) (color 0 0 0 0))
  3194. (uuid 81536e26-5af0-4c4f-aed4-057a840dd4a8)
  3195. )
  3196. (wire (pts (xy 71.12 229.87) (xy 73.66 229.87))
  3197. (stroke (width 0) (type default) (color 0 0 0 0))
  3198. (uuid 842bf267-c06e-43a8-89b0-cafa2bb90db4)
  3199. )
  3200. (wire (pts (xy 246.38 27.94) (xy 246.38 28.575))
  3201. (stroke (width 0) (type default) (color 0 0 0 0))
  3202. (uuid 84c3257e-e9b1-4da3-84ea-fa9e1cb8db9d)
  3203. )
  3204. (wire (pts (xy 224.79 257.81) (xy 234.95 257.81))
  3205. (stroke (width 0) (type default) (color 0 0 0 0))
  3206. (uuid 84ece2d0-a8b1-401a-bd76-08f60576587e)
  3207. )
  3208. (polyline (pts (xy 83.82 242.57) (xy 83.82 208.28))
  3209. (stroke (width 0) (type default) (color 0 0 0 0))
  3210. (uuid 856bc593-f875-4214-a5ca-beaf0abf10ae)
  3211. )
  3212. (wire (pts (xy 312.42 199.39) (xy 328.93 199.39))
  3213. (stroke (width 0) (type default) (color 0 0 0 0))
  3214. (uuid 87323a0c-9390-42e4-944d-a0202c6c2add)
  3215. )
  3216. (wire (pts (xy 241.3 34.29) (xy 243.84 34.29))
  3217. (stroke (width 0) (type default) (color 0 0 0 0))
  3218. (uuid 873b9fd0-5942-4c81-b11e-b6108c857717)
  3219. )
  3220. (wire (pts (xy 364.49 207.645) (xy 367.03 207.645))
  3221. (stroke (width 0) (type default) (color 0 0 0 0))
  3222. (uuid 875338b4-cf7f-496c-80f1-527dbec67094)
  3223. )
  3224. (wire (pts (xy 211.455 152.4) (xy 213.36 152.4))
  3225. (stroke (width 0) (type default) (color 0 0 0 0))
  3226. (uuid 8835a297-38f0-4f02-a29b-bc43e5b45164)
  3227. )
  3228. (wire (pts (xy 231.14 175.26) (xy 231.14 177.165))
  3229. (stroke (width 0) (type default) (color 0 0 0 0))
  3230. (uuid 8a231b30-8101-41b7-b256-7f15728cbe0a)
  3231. )
  3232. (wire (pts (xy 259.08 50.8) (xy 262.255 50.8))
  3233. (stroke (width 0) (type default) (color 0 0 0 0))
  3234. (uuid 8a351398-7b58-4166-b93b-17e7e2394db2)
  3235. )
  3236. (polyline (pts (xy 344.17 240.03) (xy 344.17 191.135))
  3237. (stroke (width 0) (type default) (color 0 0 0 0))
  3238. (uuid 8afc9494-6cbd-4616-a829-4464a020a955)
  3239. )
  3240. (polyline (pts (xy 142.875 249.555) (xy 142.875 283.845))
  3241. (stroke (width 0) (type default) (color 0 0 0 0))
  3242. (uuid 8d0fd299-43c5-43ff-b5cc-47d2f85fee0d)
  3243. )
  3244. (wire (pts (xy 238.76 34.29) (xy 238.76 35.56))
  3245. (stroke (width 0) (type default) (color 0 0 0 0))
  3246. (uuid 8da1d6e4-7012-4b01-aec2-d5313103e5d9)
  3247. )
  3248. (wire (pts (xy 276.225 180.34) (xy 276.225 177.8))
  3249. (stroke (width 0) (type default) (color 0 0 0 0))
  3250. (uuid 8dc01238-29ba-49ec-a875-53dc5334ec5a)
  3251. )
  3252. (wire (pts (xy 211.455 129.54) (xy 213.36 129.54))
  3253. (stroke (width 0) (type default) (color 0 0 0 0))
  3254. (uuid 8f7c02bb-7137-4745-bca0-122305a39353)
  3255. )
  3256. (wire (pts (xy 246.38 257.81) (xy 246.38 259.715))
  3257. (stroke (width 0) (type default) (color 0 0 0 0))
  3258. (uuid 8f8943bb-8376-42fa-a447-d97b28046d21)
  3259. )
  3260. (wire (pts (xy 32.385 269.24) (xy 32.385 266.7))
  3261. (stroke (width 0) (type default) (color 0 0 0 0))
  3262. (uuid 90480873-088c-4c34-b637-dcc48ecb77b7)
  3263. )
  3264. (wire (pts (xy 201.93 267.97) (xy 201.93 269.875))
  3265. (stroke (width 0) (type default) (color 0 0 0 0))
  3266. (uuid 91920d98-5b20-4bb8-a7eb-0f643689a880)
  3267. )
  3268. (wire (pts (xy 45.085 231.775) (xy 45.085 233.68))
  3269. (stroke (width 0) (type default) (color 0 0 0 0))
  3270. (uuid 91d519b2-304a-453f-aae2-87a8e930f049)
  3271. )
  3272. (wire (pts (xy 257.81 257.81) (xy 257.81 259.715))
  3273. (stroke (width 0) (type default) (color 0 0 0 0))
  3274. (uuid 924c3d75-1eb4-48d2-b669-d71e04523d3b)
  3275. )
  3276. (wire (pts (xy 104.14 111.125) (xy 104.14 113.665))
  3277. (stroke (width 0) (type default) (color 0 0 0 0))
  3278. (uuid 92f2dc7b-d805-481e-9835-00a368874c07)
  3279. )
  3280. (wire (pts (xy 285.75 199.39) (xy 294.64 199.39))
  3281. (stroke (width 0) (type default) (color 0 0 0 0))
  3282. (uuid 938415c0-8c92-4799-bbd7-2ac72ef9e0fe)
  3283. )
  3284. (wire (pts (xy 392.43 158.115) (xy 397.51 158.115))
  3285. (stroke (width 0) (type default) (color 0 0 0 0))
  3286. (uuid 93f38e07-c7af-4ec4-b955-f04bf0744970)
  3287. )
  3288. (wire (pts (xy 233.68 177.165) (xy 236.22 177.165))
  3289. (stroke (width 0) (type default) (color 0 0 0 0))
  3290. (uuid 94aad439-2d2b-4492-a3e8-4b54c63180c2)
  3291. )
  3292. (wire (pts (xy 275.59 212.09) (xy 283.21 212.09))
  3293. (stroke (width 0) (type default) (color 0 0 0 0))
  3294. (uuid 9528cbc3-7ff6-4834-92f2-64e71b70817f)
  3295. )
  3296. (wire (pts (xy 238.76 177.165) (xy 238.76 175.26))
  3297. (stroke (width 0) (type default) (color 0 0 0 0))
  3298. (uuid 95d5705f-75d5-412f-8380-e496c829737d)
  3299. )
  3300. (wire (pts (xy 259.08 96.52) (xy 261.62 96.52))
  3301. (stroke (width 0) (type default) (color 0 0 0 0))
  3302. (uuid 97903d47-d06a-40eb-8ba9-29fc0b70cb65)
  3303. )
  3304. (wire (pts (xy 231.14 35.56) (xy 231.14 34.29))
  3305. (stroke (width 0) (type default) (color 0 0 0 0))
  3306. (uuid 9804005e-a5c4-46a7-966a-e5de59d6e90d)
  3307. )
  3308. (wire (pts (xy 212.09 114.3) (xy 213.36 114.3))
  3309. (stroke (width 0) (type default) (color 0 0 0 0))
  3310. (uuid 98a77b20-ade2-41f2-ac5f-5c5b91e9abb0)
  3311. )
  3312. (wire (pts (xy 289.56 257.81) (xy 289.56 259.715))
  3313. (stroke (width 0) (type default) (color 0 0 0 0))
  3314. (uuid 9909e1e5-171c-478c-b3fc-26b3d99a3482)
  3315. )
  3316. (polyline (pts (xy 227.965 247.65) (xy 86.36 247.65))
  3317. (stroke (width 0) (type default) (color 0 0 0 0))
  3318. (uuid 9986d28b-8a30-433f-bf40-86298e3ba983)
  3319. )
  3320. (polyline (pts (xy 403.225 240.03) (xy 403.225 191.135))
  3321. (stroke (width 0) (type default) (color 0 0 0 0))
  3322. (uuid 9a11a1ec-e932-45a5-9bde-2c311ebc52d3)
  3323. )
  3324. (wire (pts (xy 259.08 165.1) (xy 276.225 165.1))
  3325. (stroke (width 0) (type default) (color 0 0 0 0))
  3326. (uuid 9ce90f9b-e4a5-42c8-89a4-a4b288367da2)
  3327. )
  3328. (wire (pts (xy 196.85 53.975) (xy 196.85 58.42))
  3329. (stroke (width 0) (type default) (color 0 0 0 0))
  3330. (uuid 9ea0af65-7505-409f-b3ce-fe5f5e545694)
  3331. )
  3332. (polyline (pts (xy 400.685 147.955) (xy 402.59 147.955))
  3333. (stroke (width 0) (type default) (color 0 0 0 0))
  3334. (uuid a0286901-c75b-4865-8b91-1c2d01728426)
  3335. )
  3336. (wire (pts (xy 62.23 108.585) (xy 62.23 139.065))
  3337. (stroke (width 0) (type default) (color 0 0 0 0))
  3338. (uuid a0b84f54-67d7-417e-89fc-3ae10e616f5a)
  3339. )
  3340. (wire (pts (xy 211.455 142.24) (xy 213.36 142.24))
  3341. (stroke (width 0) (type default) (color 0 0 0 0))
  3342. (uuid a166ed42-0c81-465d-95c0-c65a48b4392c)
  3343. )
  3344. (wire (pts (xy 267.97 257.81) (xy 279.4 257.81))
  3345. (stroke (width 0) (type default) (color 0 0 0 0))
  3346. (uuid a2d0211a-ad03-479a-9c74-adf9fe90e8c2)
  3347. )
  3348. (wire (pts (xy 259.08 78.74) (xy 262.89 78.74))
  3349. (stroke (width 0) (type default) (color 0 0 0 0))
  3350. (uuid a40b1fac-b739-43b5-863d-181e933f5a79)
  3351. )
  3352. (wire (pts (xy 81.28 263.525) (xy 85.09 263.525))
  3353. (stroke (width 0) (type default) (color 0 0 0 0))
  3354. (uuid a45ced48-f488-4211-af63-116057ad9f9b)
  3355. )
  3356. (wire (pts (xy 196.85 53.34) (xy 213.36 53.34))
  3357. (stroke (width 0) (type default) (color 0 0 0 0))
  3358. (uuid a5927b41-b644-465c-be06-ea6acfa42032)
  3359. )
  3360. (wire (pts (xy 358.14 207.645) (xy 364.49 207.645))
  3361. (stroke (width 0) (type default) (color 0 0 0 0))
  3362. (uuid a82769e3-3af1-47d0-b4e2-f078639e9c9e)
  3363. )
  3364. (wire (pts (xy 275.59 199.39) (xy 285.75 199.39))
  3365. (stroke (width 0) (type default) (color 0 0 0 0))
  3366. (uuid a91611bf-0354-4cca-abca-61f0c5bded9f)
  3367. )
  3368. (wire (pts (xy 391.16 182.245) (xy 397.51 182.245))
  3369. (stroke (width 0) (type default) (color 0 0 0 0))
  3370. (uuid a917d192-8747-4909-9599-f14a2596932b)
  3371. )
  3372. (wire (pts (xy 77.47 108.585) (xy 62.23 108.585))
  3373. (stroke (width 0) (type default) (color 0 0 0 0))
  3374. (uuid aada4f09-3ad1-4b55-82e7-372ab580ae83)
  3375. )
  3376. (wire (pts (xy 175.895 209.55) (xy 175.895 214.63))
  3377. (stroke (width 0) (type default) (color 0 0 0 0))
  3378. (uuid ac670036-949d-408b-a702-4e17301689a1)
  3379. )
  3380. (wire (pts (xy 32.385 266.7) (xy 40.64 266.7))
  3381. (stroke (width 0) (type default) (color 0 0 0 0))
  3382. (uuid ad76bf4f-4e91-4d5c-a35a-18231d400d44)
  3383. )
  3384. (wire (pts (xy 259.08 93.98) (xy 261.62 93.98))
  3385. (stroke (width 0) (type default) (color 0 0 0 0))
  3386. (uuid ad87b87b-a8c9-4ed6-9073-c94d335dd5ac)
  3387. )
  3388. (wire (pts (xy 211.455 154.94) (xy 213.36 154.94))
  3389. (stroke (width 0) (type default) (color 0 0 0 0))
  3390. (uuid ad8a5d3d-a89d-4c6b-a729-3f1d05befb20)
  3391. )
  3392. (wire (pts (xy 284.48 204.47) (xy 288.29 204.47))
  3393. (stroke (width 0) (type default) (color 0 0 0 0))
  3394. (uuid add9ef83-8b30-43c1-b770-a559543ee158)
  3395. )
  3396. (wire (pts (xy 180.34 264.795) (xy 180.34 267.97))
  3397. (stroke (width 0) (type default) (color 0 0 0 0))
  3398. (uuid ae251a00-343f-4815-b95d-3b0e13da7b05)
  3399. )
  3400. (wire (pts (xy 246.38 22.225) (xy 246.38 22.86))
  3401. (stroke (width 0) (type default) (color 0 0 0 0))
  3402. (uuid ae331e78-5aff-4ab6-b5c1-9bc559eb65bb)
  3403. )
  3404. (wire (pts (xy 90.17 133.985) (xy 104.14 133.985))
  3405. (stroke (width 0) (type default) (color 0 0 0 0))
  3406. (uuid b150fc28-2d27-43e3-afe2-fd74aba639ad)
  3407. )
  3408. (wire (pts (xy 212.09 104.14) (xy 213.36 104.14))
  3409. (stroke (width 0) (type default) (color 0 0 0 0))
  3410. (uuid b2726653-bc0a-4276-a948-3bf3c421f86c)
  3411. )
  3412. (wire (pts (xy 228.6 35.56) (xy 228.6 34.29))
  3413. (stroke (width 0) (type default) (color 0 0 0 0))
  3414. (uuid b2bfa97a-2c38-4d3f-99db-2200a93a9323)
  3415. )
  3416. (wire (pts (xy 81.28 271.145) (xy 85.09 271.145))
  3417. (stroke (width 0) (type default) (color 0 0 0 0))
  3418. (uuid b2c0ef95-2110-406b-9a03-24495a5f2bdf)
  3419. )
  3420. (wire (pts (xy 36.195 215.9) (xy 36.195 217.805))
  3421. (stroke (width 0) (type default) (color 0 0 0 0))
  3422. (uuid b30a6bd5-62a5-4e22-9540-8197372a1cd1)
  3423. )
  3424. (wire (pts (xy 222.885 244.475) (xy 205.105 244.475))
  3425. (stroke (width 0) (type default) (color 0 0 0 0))
  3426. (uuid b33589c2-2938-4641-86f0-ef6cee2fecd2)
  3427. )
  3428. (wire (pts (xy 129.54 243.205) (xy 129.54 245.11))
  3429. (stroke (width 0) (type default) (color 0 0 0 0))
  3430. (uuid b34ac5fb-ffd6-4fe5-93f2-40e394a2ac66)
  3431. )
  3432. (wire (pts (xy 276.225 165.1) (xy 276.225 170.815))
  3433. (stroke (width 0) (type default) (color 0 0 0 0))
  3434. (uuid b456a1eb-af1e-4f0f-8c00-1733eea68e59)
  3435. )
  3436. (wire (pts (xy 271.78 106.68) (xy 271.78 107.95))
  3437. (stroke (width 0) (type default) (color 0 0 0 0))
  3438. (uuid b5dd63f8-8917-426f-8634-61d3c67d20ba)
  3439. )
  3440. (wire (pts (xy 104.14 121.285) (xy 104.14 133.985))
  3441. (stroke (width 0) (type default) (color 0 0 0 0))
  3442. (uuid b5ecc59f-bd08-49c9-a52e-2c3f041a763c)
  3443. )
  3444. (wire (pts (xy 236.22 177.165) (xy 236.22 179.07))
  3445. (stroke (width 0) (type default) (color 0 0 0 0))
  3446. (uuid b626530c-738d-450d-92d2-a58ef768a627)
  3447. )
  3448. (wire (pts (xy 241.3 177.165) (xy 241.3 175.26))
  3449. (stroke (width 0) (type default) (color 0 0 0 0))
  3450. (uuid b68b5b92-6c83-49a1-a35d-d88f86079f95)
  3451. )
  3452. (wire (pts (xy 279.4 267.97) (xy 289.56 267.97))
  3453. (stroke (width 0) (type default) (color 0 0 0 0))
  3454. (uuid b7417caf-4609-40c7-8d5a-9cace4aebdb8)
  3455. )
  3456. (wire (pts (xy 111.76 264.16) (xy 111.76 267.335))
  3457. (stroke (width 0) (type default) (color 0 0 0 0))
  3458. (uuid b9bf0826-3f55-414a-8d58-6ab7aec857cd)
  3459. )
  3460. (wire (pts (xy 236.22 177.165) (xy 236.22 175.26))
  3461. (stroke (width 0) (type default) (color 0 0 0 0))
  3462. (uuid b9c98bb7-10b1-4ba7-8bad-42665e01422b)
  3463. )
  3464. (wire (pts (xy 294.64 224.79) (xy 297.18 224.79))
  3465. (stroke (width 0) (type default) (color 0 0 0 0))
  3466. (uuid bb1a6b70-7832-4cb2-ae2a-dfaed624add4)
  3467. )
  3468. (wire (pts (xy 284.48 219.71) (xy 288.29 219.71))
  3469. (stroke (width 0) (type default) (color 0 0 0 0))
  3470. (uuid bb9d35dd-a3f9-4f15-bcd4-35dc532ebd8f)
  3471. )
  3472. (wire (pts (xy 180.34 267.97) (xy 191.77 267.97))
  3473. (stroke (width 0) (type default) (color 0 0 0 0))
  3474. (uuid bbbc229c-3b4c-4e93-bdec-1b625991f7e7)
  3475. )
  3476. (wire (pts (xy 259.08 111.76) (xy 261.62 111.76))
  3477. (stroke (width 0) (type default) (color 0 0 0 0))
  3478. (uuid bbcf7edb-e803-4b55-bae1-7ed849b268f8)
  3479. )
  3480. (wire (pts (xy 202.565 208.915) (xy 222.885 208.915))
  3481. (stroke (width 0) (type default) (color 0 0 0 0))
  3482. (uuid bc066901-c117-4e82-8c74-076a3e606617)
  3483. )
  3484. (wire (pts (xy 45.085 222.885) (xy 45.085 224.155))
  3485. (stroke (width 0) (type default) (color 0 0 0 0))
  3486. (uuid bc6640e9-1722-4c80-8864-6fb5a03656d8)
  3487. )
  3488. (wire (pts (xy 257.81 267.97) (xy 267.97 267.97))
  3489. (stroke (width 0) (type default) (color 0 0 0 0))
  3490. (uuid be90531f-3d69-45b1-b974-2cd13cfefc8c)
  3491. )
  3492. (wire (pts (xy 188.595 43.18) (xy 213.36 43.18))
  3493. (stroke (width 0) (type default) (color 0 0 0 0))
  3494. (uuid bf1604da-e90d-41a4-986b-bce9442ff16d)
  3495. )
  3496. (wire (pts (xy 222.885 243.205) (xy 222.885 244.475))
  3497. (stroke (width 0) (type default) (color 0 0 0 0))
  3498. (uuid bfa76f25-d8dd-4853-b82f-8b4da336826e)
  3499. )
  3500. (polyline (pts (xy 14.605 243.84) (xy 69.85 243.84))
  3501. (stroke (width 0) (type default) (color 0 0 0 0))
  3502. (uuid c082375f-ccb6-4c44-b8b7-7bd3b84e86fa)
  3503. )
  3504. (polyline (pts (xy 86.995 200.66) (xy 227.965 200.66))
  3505. (stroke (width 0) (type default) (color 0 0 0 0))
  3506. (uuid c1321ef9-8e19-49df-9306-5dee9482d78a)
  3507. )
  3508. (wire (pts (xy 288.29 196.85) (xy 288.29 204.47))
  3509. (stroke (width 0) (type default) (color 0 0 0 0))
  3510. (uuid c1a03ce3-fcf7-4b94-87cc-23a11646c5c6)
  3511. )
  3512. (polyline (pts (xy 55.245 208.28) (xy 83.82 208.28))
  3513. (stroke (width 0) (type default) (color 0 0 0 0))
  3514. (uuid c2927e23-e5cc-4228-afa9-aae84a17f656)
  3515. )
  3516. (polyline (pts (xy 253.365 191.135) (xy 253.365 240.03))
  3517. (stroke (width 0) (type default) (color 0 0 0 0))
  3518. (uuid c366c69a-832a-4e0c-9c67-4c65a925c53a)
  3519. )
  3520. (wire (pts (xy 83.185 266.065) (xy 85.09 266.065))
  3521. (stroke (width 0) (type default) (color 0 0 0 0))
  3522. (uuid c4fd1124-5af4-4ae3-878d-887b3ca9ef07)
  3523. )
  3524. (wire (pts (xy 257.175 33.655) (xy 257.175 34.29))
  3525. (stroke (width 0) (type default) (color 0 0 0 0))
  3526. (uuid c4ffce29-7aa7-4845-b19a-9414698c01cc)
  3527. )
  3528. (wire (pts (xy 267.97 267.97) (xy 267.97 264.795))
  3529. (stroke (width 0) (type default) (color 0 0 0 0))
  3530. (uuid c506ef77-47c1-44b7-838b-c5ff2b79257c)
  3531. )
  3532. (wire (pts (xy 351.79 207.645) (xy 358.14 207.645))
  3533. (stroke (width 0) (type default) (color 0 0 0 0))
  3534. (uuid c551a129-1af2-4f01-b53d-ab1d844433d4)
  3535. )
  3536. (wire (pts (xy 36.195 222.885) (xy 36.195 224.155))
  3537. (stroke (width 0) (type default) (color 0 0 0 0))
  3538. (uuid c71550ac-b8a6-4da1-9200-67d2e9f27422)
  3539. )
  3540. (wire (pts (xy 26.67 233.68) (xy 26.67 236.22))
  3541. (stroke (width 0) (type default) (color 0 0 0 0))
  3542. (uuid c7845fd9-aac5-4c16-9eda-c98616e63e47)
  3543. )
  3544. (wire (pts (xy 364.49 207.645) (xy 364.49 208.915))
  3545. (stroke (width 0) (type default) (color 0 0 0 0))
  3546. (uuid c7e92784-9945-4878-8dbf-640e7a9b0955)
  3547. )
  3548. (wire (pts (xy 40.64 266.7) (xy 40.64 269.24))
  3549. (stroke (width 0) (type default) (color 0 0 0 0))
  3550. (uuid c7f920d6-d3d2-420e-b774-79af1b1e4c52)
  3551. )
  3552. (wire (pts (xy 116.205 272.415) (xy 116.205 273.05))
  3553. (stroke (width 0) (type default) (color 0 0 0 0))
  3554. (uuid c9d24f83-55e0-4514-bb8a-2ba79e0cf89e)
  3555. )
  3556. (wire (pts (xy 259.08 106.68) (xy 271.78 106.68))
  3557. (stroke (width 0) (type default) (color 0 0 0 0))
  3558. (uuid ca06dbf4-b2a9-4ce7-8194-a1985d7c105c)
  3559. )
  3560. (wire (pts (xy 81.28 273.685) (xy 81.28 271.145))
  3561. (stroke (width 0) (type default) (color 0 0 0 0))
  3562. (uuid ca1b58a3-a610-4631-8bda-00e3d3b4660c)
  3563. )
  3564. (wire (pts (xy 131.445 269.875) (xy 132.715 269.875))
  3565. (stroke (width 0) (type default) (color 0 0 0 0))
  3566. (uuid ca587fe2-696b-4b01-98a6-31c71273bb0f)
  3567. )
  3568. (wire (pts (xy 213.36 257.81) (xy 213.36 259.715))
  3569. (stroke (width 0) (type default) (color 0 0 0 0))
  3570. (uuid cb7ab8b9-ab02-4603-b3e5-f48def27fde9)
  3571. )
  3572. (wire (pts (xy 180.34 255.905) (xy 180.34 257.81))
  3573. (stroke (width 0) (type default) (color 0 0 0 0))
  3574. (uuid ce126dc4-a860-4a77-b27f-18a94f585fbb)
  3575. )
  3576. (wire (pts (xy 259.08 114.3) (xy 261.62 114.3))
  3577. (stroke (width 0) (type default) (color 0 0 0 0))
  3578. (uuid ce3de4ab-3680-4c59-8de0-5b2eed8694c3)
  3579. )
  3580. (wire (pts (xy 73.66 229.87) (xy 73.66 231.775))
  3581. (stroke (width 0) (type default) (color 0 0 0 0))
  3582. (uuid cf3932ec-bde2-4f9c-80bd-0ae0bff4a1e0)
  3583. )
  3584. (wire (pts (xy 228.6 175.26) (xy 228.6 177.165))
  3585. (stroke (width 0) (type default) (color 0 0 0 0))
  3586. (uuid cfd7e8ff-f255-4e01-b78b-cb91cb79075c)
  3587. )
  3588. (wire (pts (xy 262.89 180.34) (xy 269.24 180.34))
  3589. (stroke (width 0) (type default) (color 0 0 0 0))
  3590. (uuid cff97eab-b0bf-42ab-b938-23128547ddf5)
  3591. )
  3592. (wire (pts (xy 259.08 76.2) (xy 262.89 76.2))
  3593. (stroke (width 0) (type default) (color 0 0 0 0))
  3594. (uuid d05ce2f1-f891-4aaf-945c-93056c88a0fd)
  3595. )
  3596. (wire (pts (xy 191.77 78.74) (xy 213.36 78.74))
  3597. (stroke (width 0) (type default) (color 0 0 0 0))
  3598. (uuid d19cae8c-265f-49e3-9aae-6d1abee5a927)
  3599. )
  3600. (wire (pts (xy 228.6 34.29) (xy 231.14 34.29))
  3601. (stroke (width 0) (type default) (color 0 0 0 0))
  3602. (uuid d28038a9-3f26-42c2-a05f-f002e64c179a)
  3603. )
  3604. (wire (pts (xy 257.81 264.795) (xy 257.81 267.97))
  3605. (stroke (width 0) (type default) (color 0 0 0 0))
  3606. (uuid d3874011-5142-415b-b542-baa1cdf2d430)
  3607. )
  3608. (wire (pts (xy 175.895 243.205) (xy 175.895 245.11))
  3609. (stroke (width 0) (type default) (color 0 0 0 0))
  3610. (uuid d3b126c9-2c27-4ac0-b38f-cae6856721d1)
  3611. )
  3612. (wire (pts (xy 199.39 64.135) (xy 199.39 64.77))
  3613. (stroke (width 0) (type default) (color 0 0 0 0))
  3614. (uuid d5668c5d-bfe4-44d7-8092-55a5e6cc6c2c)
  3615. )
  3616. (wire (pts (xy 212.09 96.52) (xy 213.36 96.52))
  3617. (stroke (width 0) (type default) (color 0 0 0 0))
  3618. (uuid d59c9752-c86c-410c-abf9-b5e2c2320c26)
  3619. )
  3620. (wire (pts (xy 213.36 267.97) (xy 224.79 267.97))
  3621. (stroke (width 0) (type default) (color 0 0 0 0))
  3622. (uuid d5ebddfd-8d7b-490e-b9f0-9c44f64800c8)
  3623. )
  3624. (wire (pts (xy 201.295 49.53) (xy 201.295 48.26))
  3625. (stroke (width 0) (type default) (color 0 0 0 0))
  3626. (uuid d647d937-0e2a-4bac-937d-2af1fef5f03e)
  3627. )
  3628. (wire (pts (xy 283.21 212.09) (xy 292.1 212.09))
  3629. (stroke (width 0) (type default) (color 0 0 0 0))
  3630. (uuid d670272a-c1c2-4268-8fbd-1b8ec37fe451)
  3631. )
  3632. (wire (pts (xy 294.64 199.39) (xy 298.45 199.39))
  3633. (stroke (width 0) (type default) (color 0 0 0 0))
  3634. (uuid d6c1a734-e198-4662-8c5d-f5d0033a404e)
  3635. )
  3636. (wire (pts (xy 269.24 180.34) (xy 276.225 180.34))
  3637. (stroke (width 0) (type default) (color 0 0 0 0))
  3638. (uuid d6f4062f-b8d3-49f6-b147-7d06d5eedf8e)
  3639. )
  3640. (wire (pts (xy 259.08 152.4) (xy 260.985 152.4))
  3641. (stroke (width 0) (type default) (color 0 0 0 0))
  3642. (uuid d76ae0ad-beb0-45ae-9791-e662d11be0c9)
  3643. )
  3644. (wire (pts (xy 288.29 219.71) (xy 288.29 224.79))
  3645. (stroke (width 0) (type default) (color 0 0 0 0))
  3646. (uuid d8df81c0-c633-4ca8-9448-ce80554bd3f3)
  3647. )
  3648. (wire (pts (xy 309.88 237.49) (xy 309.88 234.95))
  3649. (stroke (width 0) (type default) (color 0 0 0 0))
  3650. (uuid d9007f0f-2104-45ee-85d9-f444ef8a7f45)
  3651. )
  3652. (wire (pts (xy 304.8 209.55) (xy 304.8 214.63))
  3653. (stroke (width 0) (type default) (color 0 0 0 0))
  3654. (uuid da828954-28b1-44e3-85f3-7162a9b80203)
  3655. )
  3656. (wire (pts (xy 129.54 209.55) (xy 129.54 213.36))
  3657. (stroke (width 0) (type default) (color 0 0 0 0))
  3658. (uuid daaa7696-88b2-4949-bb33-cb1e74b65922)
  3659. )
  3660. (wire (pts (xy 317.5 224.79) (xy 320.04 224.79))
  3661. (stroke (width 0) (type default) (color 0 0 0 0))
  3662. (uuid dbae6e50-4438-4ea5-a119-b630599c3a9f)
  3663. )
  3664. (wire (pts (xy 116.205 272.415) (xy 118.745 272.415))
  3665. (stroke (width 0) (type default) (color 0 0 0 0))
  3666. (uuid dbba3785-0d3b-40f8-a075-4997e0d1d8db)
  3667. )
  3668. (wire (pts (xy 273.685 170.815) (xy 276.225 170.815))
  3669. (stroke (width 0) (type default) (color 0 0 0 0))
  3670. (uuid dd46953e-f37d-48ac-bc1e-1112889550c7)
  3671. )
  3672. (polyline (pts (xy 14.605 242.57) (xy 14.605 208.28))
  3673. (stroke (width 0) (type default) (color 0 0 0 0))
  3674. (uuid dd76f608-e297-4c39-846a-3c5458464a0c)
  3675. )
  3676. (wire (pts (xy 262.89 170.815) (xy 266.065 170.815))
  3677. (stroke (width 0) (type default) (color 0 0 0 0))
  3678. (uuid dd9aa212-b9d1-4e6a-820f-7bc183c9410d)
  3679. )
  3680. (polyline (pts (xy 14.605 243.84) (xy 14.605 283.845))
  3681. (stroke (width 0) (type default) (color 0 0 0 0))
  3682. (uuid de94e35f-600d-47cf-bbab-7b94e08c4563)
  3683. )
  3684. (wire (pts (xy 234.95 264.795) (xy 234.95 267.97))
  3685. (stroke (width 0) (type default) (color 0 0 0 0))
  3686. (uuid df23e44a-e293-40a1-945e-f06657848975)
  3687. )
  3688. (wire (pts (xy 181.61 43.18) (xy 188.595 43.18))
  3689. (stroke (width 0) (type default) (color 0 0 0 0))
  3690. (uuid e07264be-a332-4528-9d6e-a557544f4de2)
  3691. )
  3692. (wire (pts (xy 283.21 207.01) (xy 283.21 212.09))
  3693. (stroke (width 0) (type default) (color 0 0 0 0))
  3694. (uuid e0cbfd25-bec4-4f60-9840-4144a135cc5f)
  3695. )
  3696. (wire (pts (xy 294.64 224.79) (xy 294.64 199.39))
  3697. (stroke (width 0) (type default) (color 0 0 0 0))
  3698. (uuid e1f158b8-e278-429f-ab83-78006e36285b)
  3699. )
  3700. (wire (pts (xy 196.85 53.34) (xy 196.85 53.975))
  3701. (stroke (width 0) (type default) (color 0 0 0 0))
  3702. (uuid e1ff0352-f748-4d95-80b7-c66eb735a3f1)
  3703. )
  3704. (wire (pts (xy 306.07 199.39) (xy 312.42 199.39))
  3705. (stroke (width 0) (type default) (color 0 0 0 0))
  3706. (uuid e2868875-c78e-4cc7-bfcd-ce1ea789247c)
  3707. )
  3708. (wire (pts (xy 246.38 33.655) (xy 246.38 34.29))
  3709. (stroke (width 0) (type default) (color 0 0 0 0))
  3710. (uuid e2cf5461-1b30-46c7-b16f-37d89258c760)
  3711. )
  3712. (wire (pts (xy 104.14 85.725) (xy 104.14 111.125))
  3713. (stroke (width 0) (type default) (color 0 0 0 0))
  3714. (uuid e2d98f76-1c48-4944-897f-1482fda67582)
  3715. )
  3716. (wire (pts (xy 153.035 245.11) (xy 142.875 245.11))
  3717. (stroke (width 0) (type default) (color 0 0 0 0))
  3718. (uuid e3053660-fe5a-4930-af48-cc0b2bf6cfb9)
  3719. )
  3720. (wire (pts (xy 224.79 264.795) (xy 224.79 267.97))
  3721. (stroke (width 0) (type default) (color 0 0 0 0))
  3722. (uuid e3b777e0-7fd8-4e93-a591-4bad1fdb5aaf)
  3723. )
  3724. (wire (pts (xy 292.1 212.09) (xy 292.1 237.49))
  3725. (stroke (width 0) (type default) (color 0 0 0 0))
  3726. (uuid e3caf13b-bf23-4e7d-908a-f57ae72e16f0)
  3727. )
  3728. (wire (pts (xy 212.09 109.22) (xy 213.36 109.22))
  3729. (stroke (width 0) (type default) (color 0 0 0 0))
  3730. (uuid e4125dd6-1c9f-4b4e-832d-7c20470ed372)
  3731. )
  3732. (polyline (pts (xy 69.85 283.845) (xy 69.85 243.84))
  3733. (stroke (width 0) (type default) (color 0 0 0 0))
  3734. (uuid e4b0e0df-a29a-4b50-9897-3108a212223f)
  3735. )
  3736. (polyline (pts (xy 14.605 208.28) (xy 53.975 208.28))
  3737. (stroke (width 0) (type default) (color 0 0 0 0))
  3738. (uuid e4dcf9b3-d9c3-4739-b62c-f511056f0d0c)
  3739. )
  3740. (polyline (pts (xy 400.685 187.96) (xy 357.505 187.96))
  3741. (stroke (width 0) (type default) (color 0 0 0 0))
  3742. (uuid e65fb395-475d-496b-9a1b-4a1d7f381a2a)
  3743. )
  3744. (wire (pts (xy 269.24 180.34) (xy 269.24 180.975))
  3745. (stroke (width 0) (type default) (color 0 0 0 0))
  3746. (uuid e70cbfec-acca-4659-ba2a-d5c08a6eb2e5)
  3747. )
  3748. (wire (pts (xy 201.295 48.26) (xy 205.105 48.26))
  3749. (stroke (width 0) (type default) (color 0 0 0 0))
  3750. (uuid e9711d55-a3b1-4e01-a8af-9dee3a62ad41)
  3751. )
  3752. (wire (pts (xy 222.885 208.915) (xy 222.885 212.725))
  3753. (stroke (width 0) (type default) (color 0 0 0 0))
  3754. (uuid e9ad96d4-7d90-4853-b69b-6ae88eceabef)
  3755. )
  3756. (wire (pts (xy 212.09 106.68) (xy 213.36 106.68))
  3757. (stroke (width 0) (type default) (color 0 0 0 0))
  3758. (uuid ea2df053-1cec-4d05-a59e-441d1406af18)
  3759. )
  3760. (wire (pts (xy 275.59 214.63) (xy 278.13 214.63))
  3761. (stroke (width 0) (type default) (color 0 0 0 0))
  3762. (uuid ec1baab2-5521-4476-bd71-93987f3b68b5)
  3763. )
  3764. (wire (pts (xy 279.4 264.795) (xy 279.4 267.97))
  3765. (stroke (width 0) (type default) (color 0 0 0 0))
  3766. (uuid ec6ca4f6-f104-4591-bbf6-849e2cb002b0)
  3767. )
  3768. (wire (pts (xy 211.455 144.78) (xy 213.36 144.78))
  3769. (stroke (width 0) (type default) (color 0 0 0 0))
  3770. (uuid ee5b4e5c-ca8f-4008-85fe-f8ccb6406eec)
  3771. )
  3772. (wire (pts (xy 267.97 257.81) (xy 267.97 259.715))
  3773. (stroke (width 0) (type default) (color 0 0 0 0))
  3774. (uuid ee688b64-47ec-4f2e-8d3f-91586f4f4d17)
  3775. )
  3776. (wire (pts (xy 210.185 48.26) (xy 213.36 48.26))
  3777. (stroke (width 0) (type default) (color 0 0 0 0))
  3778. (uuid ef3f2fb2-374e-434b-b6f6-979fb833cfd4)
  3779. )
  3780. (wire (pts (xy 212.09 99.06) (xy 213.36 99.06))
  3781. (stroke (width 0) (type default) (color 0 0 0 0))
  3782. (uuid f03d25e9-f9f7-4762-a170-f377c2909ab4)
  3783. )
  3784. (wire (pts (xy 62.23 139.065) (xy 104.14 139.065))
  3785. (stroke (width 0) (type default) (color 0 0 0 0))
  3786. (uuid f2a08edb-bfd6-4bcf-8a93-ba15b2f2f6d5)
  3787. )
  3788. (wire (pts (xy 212.09 111.76) (xy 213.36 111.76))
  3789. (stroke (width 0) (type default) (color 0 0 0 0))
  3790. (uuid f2ac8045-19ca-4a5f-b10e-d71f9955ecb0)
  3791. )
  3792. (wire (pts (xy 386.08 208.915) (xy 386.08 207.645))
  3793. (stroke (width 0) (type default) (color 0 0 0 0))
  3794. (uuid f2e2a55c-61da-43db-897d-34363db12bdd)
  3795. )
  3796. (wire (pts (xy 278.13 214.63) (xy 278.13 209.55))
  3797. (stroke (width 0) (type default) (color 0 0 0 0))
  3798. (uuid f546cea8-a122-4739-bbb9-98022981c315)
  3799. )
  3800. (polyline (pts (xy 86.36 200.66) (xy 86.995 200.66))
  3801. (stroke (width 0) (type default) (color 0 0 0 0))
  3802. (uuid f642887a-de06-4062-b80c-e5893601937e)
  3803. )
  3804. (wire (pts (xy 275.59 209.55) (xy 278.13 209.55))
  3805. (stroke (width 0) (type default) (color 0 0 0 0))
  3806. (uuid f816c7f8-1d3d-40b0-8ea9-d3d1999aa552)
  3807. )
  3808. (wire (pts (xy 320.04 224.79) (xy 320.04 227.33))
  3809. (stroke (width 0) (type default) (color 0 0 0 0))
  3810. (uuid f81cbecd-4997-404f-886e-ea323ec74d5e)
  3811. )
  3812. (wire (pts (xy 246.38 34.29) (xy 246.38 35.56))
  3813. (stroke (width 0) (type default) (color 0 0 0 0))
  3814. (uuid f8bdac19-6203-40e1-9c09-f18af8f843f1)
  3815. )
  3816. (wire (pts (xy 109.22 209.55) (xy 129.54 209.55))
  3817. (stroke (width 0) (type default) (color 0 0 0 0))
  3818. (uuid f8fba1ef-15bb-4e89-a8f7-d4a22625a120)
  3819. )
  3820. (wire (pts (xy 312.42 199.39) (xy 312.42 200.66))
  3821. (stroke (width 0) (type default) (color 0 0 0 0))
  3822. (uuid fa190681-5329-4048-9a46-efb4919542bb)
  3823. )
  3824. (wire (pts (xy 309.88 213.36) (xy 309.88 214.63))
  3825. (stroke (width 0) (type default) (color 0 0 0 0))
  3826. (uuid fa630e78-550e-4f97-9698-b8ce4603474d)
  3827. )
  3828. (polyline (pts (xy 71.12 249.555) (xy 141.605 249.555))
  3829. (stroke (width 0) (type default) (color 0 0 0 0))
  3830. (uuid fa6c5927-c51a-4ed7-b633-d8b0ad584022)
  3831. )
  3832. (wire (pts (xy 238.76 34.29) (xy 241.3 34.29))
  3833. (stroke (width 0) (type default) (color 0 0 0 0))
  3834. (uuid fa85d2de-fe0b-49b5-b2c7-bb1a36d0a4fb)
  3835. )
  3836. (polyline (pts (xy 357.505 147.955) (xy 400.685 147.955))
  3837. (stroke (width 0) (type default) (color 0 0 0 0))
  3838. (uuid fa8c0608-2011-42d0-b618-33755a573bf1)
  3839. )
  3840. (polyline (pts (xy 402.59 147.955) (xy 402.59 187.96))
  3841. (stroke (width 0) (type default) (color 0 0 0 0))
  3842. (uuid fbb18ae0-e9bd-4045-8022-0afba578c1e7)
  3843. )
  3844. (wire (pts (xy 90.17 121.285) (xy 104.14 121.285))
  3845. (stroke (width 0) (type default) (color 0 0 0 0))
  3846. (uuid fc31d3c5-b6b8-4cc0-a318-0ccbea984cb6)
  3847. )
  3848. (wire (pts (xy 386.08 207.645) (xy 393.7 207.645))
  3849. (stroke (width 0) (type default) (color 0 0 0 0))
  3850. (uuid fc51e9b3-17db-4e14-b023-e97e04e37cbc)
  3851. )
  3852. (wire (pts (xy 81.28 260.35) (xy 81.28 263.525))
  3853. (stroke (width 0) (type default) (color 0 0 0 0))
  3854. (uuid fcfa418d-211c-4c2d-b318-3e6d4d284c92)
  3855. )
  3856. (wire (pts (xy 181.61 86.36) (xy 181.61 87.63))
  3857. (stroke (width 0) (type default) (color 0 0 0 0))
  3858. (uuid fd5e31b0-2141-43e3-a03b-25596601f7d4)
  3859. )
  3860. (wire (pts (xy 212.09 124.46) (xy 213.36 124.46))
  3861. (stroke (width 0) (type default) (color 0 0 0 0))
  3862. (uuid ff22c400-d798-4990-9703-f322f830555f)
  3863. )
  3864. (text "PWR FLAGS" (at 15.875 247.015 0)
  3865. (effects (font (size 1.27 1.27)) (justify left bottom))
  3866. (uuid 04903b9f-a91d-4795-b9ba-2f3cb5a1fb3b)
  3867. )
  3868. (text "Programming headers" (at 72.39 252.095 0)
  3869. (effects (font (size 1.27 1.27)) (justify left bottom))
  3870. (uuid 226e4aa6-251d-4ea0-a1a1-d4d4857ac3cc)
  3871. )
  3872. (text "3.3v Regulator" (at 348.615 194.945 0)
  3873. (effects (font (size 1.27 1.27)) (justify left bottom))
  3874. (uuid 47b4b763-9997-46a9-96ca-f5919e5d2e81)
  3875. )
  3876. (text "Level shifter" (at 86.995 203.2 0)
  3877. (effects (font (size 1.27 1.27)) (justify left bottom))
  3878. (uuid 6130d60b-6f94-4d9d-8265-f51329bd055e)
  3879. )
  3880. (text "Indicators" (at 15.24 210.82 0)
  3881. (effects (font (size 1.27 1.27)) (justify left bottom))
  3882. (uuid 642f2e8b-d3d1-4044-a187-acdf2b56cb03)
  3883. )
  3884. (text "Debug" (at 56.515 211.455 0)
  3885. (effects (font (size 1.27 1.27)) (justify left bottom))
  3886. (uuid b8236aaf-0f59-4a18-a774-59254b80f76a)
  3887. )
  3888. (text "Input power \"selector\"" (at 358.775 151.13 0)
  3889. (effects (font (size 1.27 1.27)) (justify left bottom))
  3890. (uuid e6db26c9-611a-4599-9b46-ac98b49f756a)
  3891. )
  3892. (label "SWCLK" (at 262.89 78.74 0)
  3893. (effects (font (size 1.27 1.27)) (justify left bottom))
  3894. (uuid 00634ba9-028d-4fc0-be26-a5a7c851cbba)
  3895. )
  3896. (label "DD9A" (at 165.735 232.41 0)
  3897. (effects (font (size 1.27 1.27)) (justify left bottom))
  3898. (uuid 02f1176d-5247-4fa9-be5a-9d8deeb00cb7)
  3899. )
  3900. (label "DD2A" (at 119.38 229.87 0)
  3901. (effects (font (size 1.27 1.27)) (justify left bottom))
  3902. (uuid 031875fd-bec8-44e0-8ddb-5c999ca8997a)
  3903. )
  3904. (label "DIOR" (at 69.85 116.205 180)
  3905. (effects (font (size 1.27 1.27)) (justify right bottom))
  3906. (uuid 03772fb6-959a-4700-aa86-1a88f6723f29)
  3907. )
  3908. (label "DD10B" (at 97.79 93.345 0)
  3909. (effects (font (size 1.27 1.27)) (justify left bottom))
  3910. (uuid 03fd94f3-f78a-4d89-aa2a-8df908286625)
  3911. )
  3912. (label "SWDIO" (at 262.89 76.2 0)
  3913. (effects (font (size 1.27 1.27)) (justify left bottom))
  3914. (uuid 041fc6da-e9d7-4058-bb4d-7a82529e8073)
  3915. )
  3916. (label "DD0B" (at 99.06 234.95 180)
  3917. (effects (font (size 1.27 1.27)) (justify right bottom))
  3918. (uuid 04e5a906-8bbc-4425-badb-384ce6ba44d7)
  3919. )
  3920. (label "DD7A" (at 212.09 104.14 180)
  3921. (effects (font (size 1.27 1.27)) (justify right bottom))
  3922. (uuid 05d801a4-e806-4247-aafb-1007c6d7ba9c)
  3923. )
  3924. (label "CSELA" (at 212.725 219.075 0)
  3925. (effects (font (size 1.27 1.27)) (justify left bottom))
  3926. (uuid 0b30210b-680a-4f79-9031-501ddc59f1ae)
  3927. )
  3928. (label "DD13B" (at 145.415 222.25 180)
  3929. (effects (font (size 1.27 1.27)) (justify right bottom))
  3930. (uuid 0cb4c44c-e602-4817-81ec-361485516448)
  3931. )
  3932. (label "DD11B" (at 97.79 95.885 0)
  3933. (effects (font (size 1.27 1.27)) (justify left bottom))
  3934. (uuid 0d3240ce-2a09-45f8-8c49-3d870845c862)
  3935. )
  3936. (label "CS1" (at 97.79 131.445 0)
  3937. (effects (font (size 1.27 1.27)) (justify left bottom))
  3938. (uuid 0eb636b0-0cde-47a5-ad30-33869e440d92)
  3939. )
  3940. (label "DD2B" (at 99.06 229.87 180)
  3941. (effects (font (size 1.27 1.27)) (justify right bottom))
  3942. (uuid 118b1e2f-2f07-4cd5-a5b3-bbf478907e8d)
  3943. )
  3944. (label "DA0" (at 211.455 149.86 180)
  3945. (effects (font (size 1.27 1.27)) (justify right bottom))
  3946. (uuid 1318d26a-d35d-490f-86de-16a466475336)
  3947. )
  3948. (label "DD3A" (at 119.38 227.33 0)
  3949. (effects (font (size 1.27 1.27)) (justify left bottom))
  3950. (uuid 13196ddf-6c01-49c3-8bbf-fed45a1a1b76)
  3951. )
  3952. (label "IORDYA" (at 211.455 139.7 180)
  3953. (effects (font (size 1.27 1.27)) (justify right bottom))
  3954. (uuid 13dc6a8f-30af-471b-82ed-1e8d71288d63)
  3955. )
  3956. (label "USB+" (at 261.62 124.46 0)
  3957. (effects (font (size 1.27 1.27)) (justify left bottom))
  3958. (uuid 16992447-5624-4b6f-a6b9-04da1af80787)
  3959. )
  3960. (label "DD15B" (at 97.79 106.045 0)
  3961. (effects (font (size 1.27 1.27)) (justify left bottom))
  3962. (uuid 16e1d33e-d00e-465e-becd-3a79327896bd)
  3963. )
  3964. (label "DMARQB" (at 381 99.695 0)
  3965. (effects (font (size 1.27 1.27)) (justify left bottom))
  3966. (uuid 1808387e-b864-4a83-b885-53cf12afe126)
  3967. )
  3968. (label "DMARQA" (at 261.62 101.6 0)
  3969. (effects (font (size 1.27 1.27)) (justify left bottom))
  3970. (uuid 194ab675-b75f-4cc0-9562-55ffed8b0413)
  3971. )
  3972. (label "DD10A" (at 212.09 111.76 180)
  3973. (effects (font (size 1.27 1.27)) (justify right bottom))
  3974. (uuid 1ac3583d-664f-43b2-9e20-a0cb0b6e2039)
  3975. )
  3976. (label "DMARQA" (at 212.725 216.535 0)
  3977. (effects (font (size 1.27 1.27)) (justify left bottom))
  3978. (uuid 1dd5a665-0a3f-42a5-81de-bbb1a6a6eb63)
  3979. )
  3980. (label "DMARQB" (at 69.85 111.125 180)
  3981. (effects (font (size 1.27 1.27)) (justify right bottom))
  3982. (uuid 1ec9940a-4dfe-479e-891d-77fdfdcf9e55)
  3983. )
  3984. (label "IORDYA" (at 212.725 234.315 0)
  3985. (effects (font (size 1.27 1.27)) (justify left bottom))
  3986. (uuid 1ee42fab-04d5-420b-99f5-d452f1331edf)
  3987. )
  3988. (label "ACTB" (at 192.405 221.615 180)
  3989. (effects (font (size 1.27 1.27)) (justify right bottom))
  3990. (uuid 1fd48b4e-40e3-4975-9dc9-c6559acf5a4f)
  3991. )
  3992. (label "USB-" (at 309.88 237.49 0)
  3993. (effects (font (size 1.27 1.27)) (justify left bottom))
  3994. (uuid 21724650-933f-4f96-903f-ae9e94b9cc24)
  3995. )
  3996. (label "CS1" (at 260.985 152.4 0)
  3997. (effects (font (size 1.27 1.27)) (justify left bottom))
  3998. (uuid 27f22ffd-437b-4e6c-8115-2eb2a046407f)
  3999. )
  4000. (label "DD0A" (at 211.455 129.54 180)
  4001. (effects (font (size 1.27 1.27)) (justify right bottom))
  4002. (uuid 2aee001d-e198-48b1-96ec-4305442768ef)
  4003. )
  4004. (label "DD1A" (at 119.38 232.41 0)
  4005. (effects (font (size 1.27 1.27)) (justify left bottom))
  4006. (uuid 2c242656-021c-4b8c-a727-2f527829f3ac)
  4007. )
  4008. (label "DD12A" (at 212.09 116.84 180)
  4009. (effects (font (size 1.27 1.27)) (justify right bottom))
  4010. (uuid 2c69c5e7-6f54-4783-a9f0-adf375bd4122)
  4011. )
  4012. (label "DD9B" (at 145.415 232.41 180)
  4013. (effects (font (size 1.27 1.27)) (justify right bottom))
  4014. (uuid 2ca96a85-d13a-454c-af71-243694c34152)
  4015. )
  4016. (label "DD4A" (at 119.38 224.79 0)
  4017. (effects (font (size 1.27 1.27)) (justify left bottom))
  4018. (uuid 2fcde066-05d8-491f-b3d2-262caad38e4b)
  4019. )
  4020. (label "USB-" (at 261.62 121.92 0)
  4021. (effects (font (size 1.27 1.27)) (justify left bottom))
  4022. (uuid 31ec6495-0c5c-4253-877e-98dcd683c3f7)
  4023. )
  4024. (label "DD0A" (at 119.38 234.95 0)
  4025. (effects (font (size 1.27 1.27)) (justify left bottom))
  4026. (uuid 339d8b14-7e04-435c-bac4-12aaef40a886)
  4027. )
  4028. (label "OE2" (at 212.725 236.855 0)
  4029. (effects (font (size 1.27 1.27)) (justify left bottom))
  4030. (uuid 3650fccc-25ba-4817-93cb-3455fd9940b3)
  4031. )
  4032. (label "DD10B" (at 145.415 229.87 180)
  4033. (effects (font (size 1.27 1.27)) (justify right bottom))
  4034. (uuid 380aafab-351e-4940-90f5-119784174281)
  4035. )
  4036. (label "OE" (at 261.62 106.68 0)
  4037. (effects (font (size 1.27 1.27)) (justify left bottom))
  4038. (uuid 3957408c-23f0-4d4c-bf4f-d780258f7dca)
  4039. )
  4040. (label "DIOR" (at 260.35 139.7 0)
  4041. (effects (font (size 1.27 1.27)) (justify left bottom))
  4042. (uuid 3b73c477-01d8-4e55-abe4-59e8dd2a7518)
  4043. )
  4044. (label "DD1A" (at 211.455 132.08 180)
  4045. (effects (font (size 1.27 1.27)) (justify right bottom))
  4046. (uuid 3bfbd375-3da3-4b18-9b83-e3f5c9d24626)
  4047. )
  4048. (label "RESET" (at 69.85 85.725 180)
  4049. (effects (font (size 1.27 1.27)) (justify right bottom))
  4050. (uuid 3c27f080-4ed6-4324-a60b-31fd4f5a9123)
  4051. )
  4052. (label "CSELA" (at 261.62 99.06 0)
  4053. (effects (font (size 1.27 1.27)) (justify left bottom))
  4054. (uuid 3c9cd31d-33ad-4cbe-9cc3-0cf785c06c00)
  4055. )
  4056. (label "DD11A" (at 165.735 227.33 0)
  4057. (effects (font (size 1.27 1.27)) (justify left bottom))
  4058. (uuid 3ea77cd6-ac9d-40d0-a589-19f0237501fc)
  4059. )
  4060. (label "DA0" (at 69.85 128.905 180)
  4061. (effects (font (size 1.27 1.27)) (justify right bottom))
  4062. (uuid 40f9bdfc-9d8d-49fb-b670-bf889fe0be9c)
  4063. )
  4064. (label "DD12A" (at 165.735 224.79 0)
  4065. (effects (font (size 1.27 1.27)) (justify left bottom))
  4066. (uuid 4116ecb3-c13a-49bb-8eef-f97d2fd2176f)
  4067. )
  4068. (label "RESET" (at 261.62 111.76 0)
  4069. (effects (font (size 1.27 1.27)) (justify left bottom))
  4070. (uuid 413a9bd4-ac34-4ec1-8aae-3029da55759c)
  4071. )
  4072. (label "DMACKB" (at 381 108.585 0)
  4073. (effects (font (size 1.27 1.27)) (justify left bottom))
  4074. (uuid 44617bcf-bebd-41fe-a25c-fb8ef123429c)
  4075. )
  4076. (label "INTRQA" (at 212.725 229.235 0)
  4077. (effects (font (size 1.27 1.27)) (justify left bottom))
  4078. (uuid 45b2e954-5702-4565-aa45-80b6c25cd6ad)
  4079. )
  4080. (label "INTRQB" (at 69.85 123.825 180)
  4081. (effects (font (size 1.27 1.27)) (justify right bottom))
  4082. (uuid 46c41971-252a-48bb-b5ea-2c5af67a78e4)
  4083. )
  4084. (label "DD3B" (at 99.06 227.33 180)
  4085. (effects (font (size 1.27 1.27)) (justify right bottom))
  4086. (uuid 4ad75103-70b8-4bae-adf4-ad1d9d836579)
  4087. )
  4088. (label "CSELB" (at 97.79 118.745 0)
  4089. (effects (font (size 1.27 1.27)) (justify left bottom))
  4090. (uuid 4c712866-96fc-4737-8c36-38d2812435d5)
  4091. )
  4092. (label "DA2" (at 211.455 154.94 180)
  4093. (effects (font (size 1.27 1.27)) (justify right bottom))
  4094. (uuid 4cc107a5-41e4-48e8-8710-c425e773ad1f)
  4095. )
  4096. (label "DD9A" (at 212.09 109.22 180)
  4097. (effects (font (size 1.27 1.27)) (justify right bottom))
  4098. (uuid 520dcb10-29ec-492a-8012-daa6bd24a18e)
  4099. )
  4100. (label "nRST" (at 181.61 43.18 180)
  4101. (effects (font (size 1.27 1.27)) (justify right bottom))
  4102. (uuid 54c8acd5-f506-413d-ba52-e56ac4149212)
  4103. )
  4104. (label "IOCS16A" (at 261.62 93.98 0)
  4105. (effects (font (size 1.27 1.27)) (justify left bottom))
  4106. (uuid 5512a683-f6f0-442f-b55f-7faf87301d79)
  4107. )
  4108. (label "DD13A" (at 212.09 119.38 180)
  4109. (effects (font (size 1.27 1.27)) (justify right bottom))
  4110. (uuid 5626aa67-136f-4d96-8fde-1b4d04610936)
  4111. )
  4112. (label "CSELB" (at 381 130.175 0)
  4113. (effects (font (size 1.27 1.27)) (justify left bottom))
  4114. (uuid 58840509-bb1f-4471-aecd-0ab682983b61)
  4115. )
  4116. (label "LED3" (at 261.62 119.38 0)
  4117. (effects (font (size 1.27 1.27)) (justify left bottom))
  4118. (uuid 59c36c63-acb6-4c03-b965-9e200410efed)
  4119. )
  4120. (label "CS0" (at 260.985 149.86 0)
  4121. (effects (font (size 1.27 1.27)) (justify left bottom))
  4122. (uuid 5af12729-dfb8-4f8f-9b7c-491dc90bd374)
  4123. )
  4124. (label "DD14B" (at 145.415 219.71 180)
  4125. (effects (font (size 1.27 1.27)) (justify right bottom))
  4126. (uuid 5be8febb-f762-4851-8120-134d9ce63b6e)
  4127. )
  4128. (label "IOCS16B" (at 381 136.525 0)
  4129. (effects (font (size 1.27 1.27)) (justify left bottom))
  4130. (uuid 5d17e710-d5a4-4ab2-9f4f-ed75a04b457a)
  4131. )
  4132. (label "INTRQA" (at 211.455 144.78 180)
  4133. (effects (font (size 1.27 1.27)) (justify right bottom))
  4134. (uuid 5ee11e30-3515-40be-b37c-39d5f4f2eb41)
  4135. )
  4136. (label "DD15A" (at 165.735 217.17 0)
  4137. (effects (font (size 1.27 1.27)) (justify left bottom))
  4138. (uuid 5fbe879f-873f-4319-a3a0-eac7bd26e0a5)
  4139. )
  4140. (label "DD10A" (at 165.735 229.87 0)
  4141. (effects (font (size 1.27 1.27)) (justify left bottom))
  4142. (uuid 603e2b52-a97b-4e3e-b6c4-4d9be92b318d)
  4143. )
  4144. (label "INTRQB" (at 381 111.125 0)
  4145. (effects (font (size 1.27 1.27)) (justify left bottom))
  4146. (uuid 609ab258-a92a-4688-8e18-c17993b47c4a)
  4147. )
  4148. (label "DMARQB" (at 192.405 216.535 180)
  4149. (effects (font (size 1.27 1.27)) (justify right bottom))
  4150. (uuid 620141cc-2699-469a-801a-dbd7de920d04)
  4151. )
  4152. (label "DD6A" (at 212.09 101.6 180)
  4153. (effects (font (size 1.27 1.27)) (justify right bottom))
  4154. (uuid 6250d380-d38f-4469-bb8c-6fd1e7048711)
  4155. )
  4156. (label "UART_TX" (at 262.255 48.26 0)
  4157. (effects (font (size 1.27 1.27)) (justify left bottom))
  4158. (uuid 64080d61-01dc-427c-88c7-e94fd4a2d6d5)
  4159. )
  4160. (label "DD5A" (at 212.09 99.06 180)
  4161. (effects (font (size 1.27 1.27)) (justify right bottom))
  4162. (uuid 64cc5747-f416-4ad7-a67c-aafadf420ce9)
  4163. )
  4164. (label "DD12B" (at 145.415 224.79 180)
  4165. (effects (font (size 1.27 1.27)) (justify right bottom))
  4166. (uuid 6a1b4999-0b5e-45fa-b306-82c4e26f4a02)
  4167. )
  4168. (label "DD4A" (at 212.09 96.52 180)
  4169. (effects (font (size 1.27 1.27)) (justify right bottom))
  4170. (uuid 6cd44948-0a7a-415a-9e81-9e52a0a42f25)
  4171. )
  4172. (label "SWCLK" (at 132.715 269.875 0)
  4173. (effects (font (size 1.27 1.27)) (justify left bottom))
  4174. (uuid 6ee92727-4e92-41a7-8a93-46a20a3d68f7)
  4175. )
  4176. (label "DD13A" (at 165.735 222.25 0)
  4177. (effects (font (size 1.27 1.27)) (justify left bottom))
  4178. (uuid 72aa4a54-1ab4-4cd9-88bf-c9fc29d36205)
  4179. )
  4180. (label "DD11A" (at 212.09 114.3 180)
  4181. (effects (font (size 1.27 1.27)) (justify right bottom))
  4182. (uuid 736a6706-1abf-46b5-a1b8-a1c4a4d8cdc7)
  4183. )
  4184. (label "DD14A" (at 165.735 219.71 0)
  4185. (effects (font (size 1.27 1.27)) (justify left bottom))
  4186. (uuid 73b7af53-1278-4ed4-97b1-d32db8bce389)
  4187. )
  4188. (label "DD13B" (at 97.79 100.965 0)
  4189. (effects (font (size 1.27 1.27)) (justify left bottom))
  4190. (uuid 742a0c7b-75da-4c9b-a571-3b78e7715c36)
  4191. )
  4192. (label "IOCS16A" (at 212.725 224.155 0)
  4193. (effects (font (size 1.27 1.27)) (justify left bottom))
  4194. (uuid 747f4365-6608-4ddb-b189-de1145520ec3)
  4195. )
  4196. (label "DD4B" (at 99.06 224.79 180)
  4197. (effects (font (size 1.27 1.27)) (justify right bottom))
  4198. (uuid 7696f97f-7407-4d2a-84ea-ed53085a1a95)
  4199. )
  4200. (label "DMACKA" (at 211.455 142.24 180)
  4201. (effects (font (size 1.27 1.27)) (justify right bottom))
  4202. (uuid 76b4f343-72ee-4d89-ad87-fd4bf3d6e32e)
  4203. )
  4204. (label "DD3A" (at 211.455 137.16 180)
  4205. (effects (font (size 1.27 1.27)) (justify right bottom))
  4206. (uuid 7a396e2c-5316-4d13-8b00-4fa28dfbec57)
  4207. )
  4208. (label "DD12B" (at 97.79 98.425 0)
  4209. (effects (font (size 1.27 1.27)) (justify left bottom))
  4210. (uuid 7ac15471-8948-4730-99fc-072a7afbd89b)
  4211. )
  4212. (label "DD14A" (at 212.09 121.92 180)
  4213. (effects (font (size 1.27 1.27)) (justify right bottom))
  4214. (uuid 7bd095f6-5c8c-440b-9ff2-eb121336dab4)
  4215. )
  4216. (label "DD2B" (at 69.85 100.965 180)
  4217. (effects (font (size 1.27 1.27)) (justify right bottom))
  4218. (uuid 7f16fb35-60e4-475c-a18e-6f2e9ea73f60)
  4219. )
  4220. (label "DD7B" (at 99.06 217.17 180)
  4221. (effects (font (size 1.27 1.27)) (justify right bottom))
  4222. (uuid 7f82a180-ff77-46d1-a62b-99c24c69f155)
  4223. )
  4224. (label "DIOW" (at 260.985 157.48 0)
  4225. (effects (font (size 1.27 1.27)) (justify left bottom))
  4226. (uuid 80b0d52a-290c-4dac-a2fd-20a661ec8025)
  4227. )
  4228. (label "DD0B" (at 69.85 106.045 180)
  4229. (effects (font (size 1.27 1.27)) (justify right bottom))
  4230. (uuid 8406e51d-a9bf-48ed-b65e-315fa0da36e7)
  4231. )
  4232. (label "OE" (at 165.735 237.49 0)
  4233. (effects (font (size 1.27 1.27)) (justify left bottom))
  4234. (uuid 851e7fc6-82f3-4b59-89ad-43a65d95ed0c)
  4235. )
  4236. (label "OE2" (at 261.62 104.14 0)
  4237. (effects (font (size 1.27 1.27)) (justify left bottom))
  4238. (uuid 85275b01-13e0-484f-92fc-b84d2b2d18d6)
  4239. )
  4240. (label "DD11B" (at 145.415 227.33 180)
  4241. (effects (font (size 1.27 1.27)) (justify right bottom))
  4242. (uuid 896a5c73-df0f-4f85-adf2-ed00ffd5de14)
  4243. )
  4244. (label "DD8A" (at 165.735 234.95 0)
  4245. (effects (font (size 1.27 1.27)) (justify left bottom))
  4246. (uuid 89c94e85-109e-4ba7-8754-9b674709eeb2)
  4247. )
  4248. (label "PDIAGB" (at 192.405 226.695 180)
  4249. (effects (font (size 1.27 1.27)) (justify right bottom))
  4250. (uuid 8c1ff289-3578-4eaf-9657-22d4c0b2bde0)
  4251. )
  4252. (label "IORDYB" (at 381 106.045 0)
  4253. (effects (font (size 1.27 1.27)) (justify left bottom))
  4254. (uuid 8c2852e1-60cc-4017-9d61-3f26b0c044c9)
  4255. )
  4256. (label "UART_RX" (at 262.255 50.8 0)
  4257. (effects (font (size 1.27 1.27)) (justify left bottom))
  4258. (uuid 8d4a6cf4-100a-4166-809e-fc725dc84c2f)
  4259. )
  4260. (label "DMACKB" (at 192.405 231.775 180)
  4261. (effects (font (size 1.27 1.27)) (justify right bottom))
  4262. (uuid 8fc0ccc6-b2ee-46b0-af63-6de9967e827e)
  4263. )
  4264. (label "DD1B" (at 69.85 103.505 180)
  4265. (effects (font (size 1.27 1.27)) (justify right bottom))
  4266. (uuid 907d0b28-68b4-44f1-af4f-cd2aadbcffa1)
  4267. )
  4268. (label "ACTB" (at 381 125.095 0)
  4269. (effects (font (size 1.27 1.27)) (justify left bottom))
  4270. (uuid 90e2633b-93b4-4a72-85cf-6045f3f05628)
  4271. )
  4272. (label "DD8B" (at 145.415 234.95 180)
  4273. (effects (font (size 1.27 1.27)) (justify right bottom))
  4274. (uuid 940cdc57-9eb0-46be-93a9-be2ca338e8b4)
  4275. )
  4276. (label "IOCS16B" (at 192.405 224.155 180)
  4277. (effects (font (size 1.27 1.27)) (justify right bottom))
  4278. (uuid 9848c931-1ffb-484b-8bf5-12e3616d4d9b)
  4279. )
  4280. (label "DIOW" (at 69.85 113.665 180)
  4281. (effects (font (size 1.27 1.27)) (justify right bottom))
  4282. (uuid 9c39f68a-8df7-466a-a6e8-76f8a1b5018b)
  4283. )
  4284. (label "DD6B" (at 69.85 90.805 180)
  4285. (effects (font (size 1.27 1.27)) (justify right bottom))
  4286. (uuid a00748ee-8d6b-444a-aca7-bed09b8a2120)
  4287. )
  4288. (label "UART_RX" (at 73.66 227.33 0)
  4289. (effects (font (size 1.27 1.27)) (justify left bottom))
  4290. (uuid a04286ca-3017-491a-a638-10f4ec23447b)
  4291. )
  4292. (label "IOCS16B" (at 97.79 123.825 0)
  4293. (effects (font (size 1.27 1.27)) (justify left bottom))
  4294. (uuid a0a7f9bb-3918-43ee-8e4e-ba34a2ea9599)
  4295. )
  4296. (label "SWDIO" (at 83.185 266.065 180)
  4297. (effects (font (size 1.27 1.27)) (justify right bottom))
  4298. (uuid a2aab2a9-bd03-4942-8893-37e18ebc5766)
  4299. )
  4300. (label "SWDIO" (at 132.715 267.335 0)
  4301. (effects (font (size 1.27 1.27)) (justify left bottom))
  4302. (uuid a6c28762-c797-464a-a2a1-5e1bd267d963)
  4303. )
  4304. (label "DD7B" (at 69.85 88.265 180)
  4305. (effects (font (size 1.27 1.27)) (justify right bottom))
  4306. (uuid a8a3d0e1-b43a-47e5-83a6-3a5da81516e6)
  4307. )
  4308. (label "ACTA" (at 261.62 96.52 0)
  4309. (effects (font (size 1.27 1.27)) (justify left bottom))
  4310. (uuid a8f3f0a8-536a-4a45-bead-f2ea5e4023c0)
  4311. )
  4312. (label "PDIAGA" (at 212.725 226.695 0)
  4313. (effects (font (size 1.27 1.27)) (justify left bottom))
  4314. (uuid afce347d-10eb-4408-a4de-84ad31daf319)
  4315. )
  4316. (label "LED2" (at 36.195 215.9 90)
  4317. (effects (font (size 1.27 1.27)) (justify left bottom))
  4318. (uuid b0ebbfbe-8786-4ec6-b189-496ad00480a9)
  4319. )
  4320. (label "SWCLK" (at 83.185 268.605 180)
  4321. (effects (font (size 1.27 1.27)) (justify right bottom))
  4322. (uuid b36ec38f-166c-4e38-8283-7138bb2ef744)
  4323. )
  4324. (label "OE" (at 119.38 237.49 0)
  4325. (effects (font (size 1.27 1.27)) (justify left bottom))
  4326. (uuid b3c18962-da45-49c9-bcb8-295213fdb814)
  4327. )
  4328. (label "DD9B" (at 97.79 90.805 0)
  4329. (effects (font (size 1.27 1.27)) (justify left bottom))
  4330. (uuid b4e83d5f-1c7d-40b4-80f5-c5dfd5754f6e)
  4331. )
  4332. (label "IORDYB" (at 192.405 234.315 180)
  4333. (effects (font (size 1.27 1.27)) (justify right bottom))
  4334. (uuid b61fbe9f-3506-4461-baec-271a4bbe3f70)
  4335. )
  4336. (label "LED1" (at 26.67 215.9 90)
  4337. (effects (font (size 1.27 1.27)) (justify left bottom))
  4338. (uuid b93944a7-8fa4-4a1f-a506-35092b270494)
  4339. )
  4340. (label "DD6A" (at 119.38 219.71 0)
  4341. (effects (font (size 1.27 1.27)) (justify left bottom))
  4342. (uuid b9d09e26-b1ba-4a15-83f8-168bf63959a3)
  4343. )
  4344. (label "DD1B" (at 99.06 232.41 180)
  4345. (effects (font (size 1.27 1.27)) (justify right bottom))
  4346. (uuid bd4e55a4-ede9-4a95-9b4e-f0b10a68d99e)
  4347. )
  4348. (label "DD8B" (at 97.79 88.265 0)
  4349. (effects (font (size 1.27 1.27)) (justify left bottom))
  4350. (uuid c595d232-25d1-4b75-b2d5-28797917abe7)
  4351. )
  4352. (label "DD5B" (at 69.85 93.345 180)
  4353. (effects (font (size 1.27 1.27)) (justify right bottom))
  4354. (uuid c64562bd-c0a3-497c-ae8e-03bddea3a988)
  4355. )
  4356. (label "DD5B" (at 99.06 222.25 180)
  4357. (effects (font (size 1.27 1.27)) (justify right bottom))
  4358. (uuid c9d99f21-40e4-4b3c-89d0-eeeaf1ee2afc)
  4359. )
  4360. (label "CSELB" (at 192.405 219.075 180)
  4361. (effects (font (size 1.27 1.27)) (justify right bottom))
  4362. (uuid caa43cc1-274a-4bde-8db8-64f4a0dfcc04)
  4363. )
  4364. (label "DD15A" (at 212.09 124.46 180)
  4365. (effects (font (size 1.27 1.27)) (justify right bottom))
  4366. (uuid cc02c4ff-037b-40aa-b0ce-6996791eea1d)
  4367. )
  4368. (label "DD8A" (at 212.09 106.68 180)
  4369. (effects (font (size 1.27 1.27)) (justify right bottom))
  4370. (uuid d0f47e97-c532-4b50-b289-2736095c1a53)
  4371. )
  4372. (label "DD6B" (at 99.06 219.71 180)
  4373. (effects (font (size 1.27 1.27)) (justify right bottom))
  4374. (uuid d2fe0008-e805-47c4-93df-d1515c0eb23e)
  4375. )
  4376. (label "CS0" (at 69.85 131.445 180)
  4377. (effects (font (size 1.27 1.27)) (justify right bottom))
  4378. (uuid d3ba200e-930e-409f-a5a5-b89fb26805d4)
  4379. )
  4380. (label "DD3B" (at 69.85 98.425 180)
  4381. (effects (font (size 1.27 1.27)) (justify right bottom))
  4382. (uuid d48e5f23-9d9e-45f1-8e7b-5f4a849534ef)
  4383. )
  4384. (label "DD2A" (at 211.455 134.62 180)
  4385. (effects (font (size 1.27 1.27)) (justify right bottom))
  4386. (uuid d5f169df-f64b-4ede-a9e0-29952a1e2fed)
  4387. )
  4388. (label "DMACKB" (at 69.85 121.285 180)
  4389. (effects (font (size 1.27 1.27)) (justify right bottom))
  4390. (uuid d897127e-76a2-4ac3-95a3-145d95cddd04)
  4391. )
  4392. (label "DA1" (at 211.455 152.4 180)
  4393. (effects (font (size 1.27 1.27)) (justify right bottom))
  4394. (uuid d90c8d2a-532c-4649-a51e-f4294c3228de)
  4395. )
  4396. (label "USB+" (at 309.88 213.36 0)
  4397. (effects (font (size 1.27 1.27)) (justify left bottom))
  4398. (uuid db5e76ec-52d7-4d60-99a8-7a7f8ecf1eec)
  4399. )
  4400. (label "LED2" (at 261.62 116.84 0)
  4401. (effects (font (size 1.27 1.27)) (justify left bottom))
  4402. (uuid dd244446-1c7e-4af8-b607-bfc699cb5a95)
  4403. )
  4404. (label "DD7A" (at 119.38 217.17 0)
  4405. (effects (font (size 1.27 1.27)) (justify left bottom))
  4406. (uuid dd3a345e-5ccd-4ac4-ae81-6a38523ae6ac)
  4407. )
  4408. (label "DD5A" (at 119.38 222.25 0)
  4409. (effects (font (size 1.27 1.27)) (justify left bottom))
  4410. (uuid de521784-8f13-4974-8070-6da546cb9568)
  4411. )
  4412. (label "DA1" (at 69.85 126.365 180)
  4413. (effects (font (size 1.27 1.27)) (justify right bottom))
  4414. (uuid de7dcf02-27c0-4c14-8d52-243d1762f623)
  4415. )
  4416. (label "DD14B" (at 97.79 103.505 0)
  4417. (effects (font (size 1.27 1.27)) (justify left bottom))
  4418. (uuid dfb4a4bf-232c-4240-802a-48f17451ebdf)
  4419. )
  4420. (label "LED3" (at 45.085 215.9 90)
  4421. (effects (font (size 1.27 1.27)) (justify left bottom))
  4422. (uuid dfcfbfca-b306-47b2-b7e9-04cfb9ede3b3)
  4423. )
  4424. (label "ACTA" (at 212.725 221.615 0)
  4425. (effects (font (size 1.27 1.27)) (justify left bottom))
  4426. (uuid e29af796-5bcb-481f-9969-965e732fe26f)
  4427. )
  4428. (label "nRST" (at 117.475 269.875 180)
  4429. (effects (font (size 1.27 1.27)) (justify right bottom))
  4430. (uuid e3cea32c-7b04-4bb9-83c2-2abd4d1e3702)
  4431. )
  4432. (label "PDIAGB" (at 381 139.065 0)
  4433. (effects (font (size 1.27 1.27)) (justify left bottom))
  4434. (uuid e3ed1d82-30d4-482d-9f08-3d2607764be6)
  4435. )
  4436. (label "PDIAGB" (at 97.79 126.365 0)
  4437. (effects (font (size 1.27 1.27)) (justify left bottom))
  4438. (uuid e526cb09-7404-4514-845c-6200979fb3e6)
  4439. )
  4440. (label "LED1" (at 261.62 114.3 0)
  4441. (effects (font (size 1.27 1.27)) (justify left bottom))
  4442. (uuid e574ea76-aed1-4fe4-acaf-d752628d361c)
  4443. )
  4444. (label "DA2" (at 97.79 128.905 0)
  4445. (effects (font (size 1.27 1.27)) (justify left bottom))
  4446. (uuid ec24463e-ec77-48af-a6b3-e8bc3324f5ae)
  4447. )
  4448. (label "IORDYB" (at 69.85 118.745 180)
  4449. (effects (font (size 1.27 1.27)) (justify right bottom))
  4450. (uuid ed220418-396f-4a03-8d3c-1df1bb8884c8)
  4451. )
  4452. (label "PDIAGA" (at 211.455 147.32 180)
  4453. (effects (font (size 1.27 1.27)) (justify right bottom))
  4454. (uuid edda7e88-82af-416d-b7be-3c2a02df43f0)
  4455. )
  4456. (label "DD4B" (at 69.85 95.885 180)
  4457. (effects (font (size 1.27 1.27)) (justify right bottom))
  4458. (uuid efe6c879-79a3-4f1c-befb-9116b1268f3d)
  4459. )
  4460. (label "DD15B" (at 145.415 217.17 180)
  4461. (effects (font (size 1.27 1.27)) (justify right bottom))
  4462. (uuid f0c4df41-7748-4d31-8bcd-a3ca65d31997)
  4463. )
  4464. (label "UART_TX" (at 73.66 224.79 0)
  4465. (effects (font (size 1.27 1.27)) (justify left bottom))
  4466. (uuid f3a98634-e09c-4c78-ab06-6e6e6b1ad913)
  4467. )
  4468. (label "DMACKA" (at 212.725 231.775 0)
  4469. (effects (font (size 1.27 1.27)) (justify left bottom))
  4470. (uuid f4e23b14-ad97-4f67-9efb-ad10d637f5e0)
  4471. )
  4472. (label "INTRQB" (at 192.405 229.235 180)
  4473. (effects (font (size 1.27 1.27)) (justify right bottom))
  4474. (uuid ff534ed0-078c-4a83-a880-f4a0320bb4a2)
  4475. )
  4476. (label "ACTB" (at 69.85 133.985 180)
  4477. (effects (font (size 1.27 1.27)) (justify right bottom))
  4478. (uuid ffba4ef2-7c25-4105-a0e1-af77e5728129)
  4479. )
  4480. (global_label "USB_POWER" (shape input) (at 328.93 199.39 0) (fields_autoplaced)
  4481. (effects (font (size 1.27 1.27)) (justify left))
  4482. (uuid 35f557c0-a145-413d-934b-6522e04217e0)
  4483. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 342.5028 199.3106 0)
  4484. (effects (font (size 1.27 1.27)) (justify left) hide)
  4485. )
  4486. )
  4487. (global_label "USB_POWER" (shape input) (at 375.92 182.245 180) (fields_autoplaced)
  4488. (effects (font (size 1.27 1.27)) (justify right))
  4489. (uuid e8c30a0d-b738-4a3a-8512-6e37f8d6298c)
  4490. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 362.3472 182.3244 0)
  4491. (effects (font (size 1.27 1.27)) (justify right) hide)
  4492. )
  4493. )
  4494. (global_label "USB_POWER" (shape input) (at 23.495 264.795 90) (fields_autoplaced)
  4495. (effects (font (size 1.27 1.27)) (justify left))
  4496. (uuid e9168549-c096-429a-bb52-7f324b148bec)
  4497. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 23.4156 251.2222 90)
  4498. (effects (font (size 1.27 1.27)) (justify left) hide)
  4499. )
  4500. )
  4501. (symbol (lib_id "Logic_LevelTranslator:TXS0108EPW") (at 109.22 227.33 180) (unit 1)
  4502. (in_bom yes) (on_board yes)
  4503. (uuid 00000000-0000-0000-0000-000060e36170)
  4504. (property "Reference" "U1" (id 0) (at 109.22 204.9526 0))
  4505. (property "Value" "TXS0108EPW" (id 1) (at 109.22 207.264 0))
  4506. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (id 2) (at 109.22 208.28 0)
  4507. (effects (font (size 1.27 1.27)) hide)
  4508. )
  4509. (property "Datasheet" "www.ti.com/lit/ds/symlink/txs0108e.pdf" (id 3) (at 109.22 224.79 0)
  4510. (effects (font (size 1.27 1.27)) hide)
  4511. )
  4512. (pin "1" (uuid 9687e5df-eb7b-4bae-a6d3-a2fa57dbe2f0))
  4513. (pin "10" (uuid cffecde1-ee27-49fe-9139-5e16d05cde71))
  4514. (pin "11" (uuid 1ef6678a-5081-48ed-aa21-0d5ee5179e98))
  4515. (pin "12" (uuid 2c0dab9e-1c3e-44dc-b9e1-1582d776f3c4))
  4516. (pin "13" (uuid 1fad221f-dbae-4d32-b8fd-934f8b940ea4))
  4517. (pin "14" (uuid 3cbb03ee-ca6e-4559-8432-25c44637c8cf))
  4518. (pin "15" (uuid 99a96fc3-38ec-4341-b1ae-3792e8a8919f))
  4519. (pin "16" (uuid 8ef2bf6c-cd72-4252-ad54-a843d8b94332))
  4520. (pin "17" (uuid 1dd21c52-119d-4998-ba15-f5acbabdc375))
  4521. (pin "18" (uuid ba0c8c90-6289-4303-88e7-2eca9afd6b61))
  4522. (pin "19" (uuid 2349cd1b-2063-43b2-b700-64b0a8ec12b2))
  4523. (pin "2" (uuid b2cb2091-010a-4ba5-809d-8ad53ad74ce0))
  4524. (pin "20" (uuid 02ee24e4-c7b0-4bec-9572-ddf893c6b050))
  4525. (pin "3" (uuid 63d9ebbc-f2e6-447a-a4c7-c0da9b3acfb2))
  4526. (pin "4" (uuid 983c7f50-2e76-4b0e-af35-2523b2434904))
  4527. (pin "5" (uuid a3fc9517-aaf9-4d57-bd2a-5a5462dbb692))
  4528. (pin "6" (uuid 93e361d1-93f5-42fb-a661-80f9fca082dc))
  4529. (pin "7" (uuid f7172b5b-29cc-4b0a-a071-30bcf50d24f2))
  4530. (pin "8" (uuid 552ceec7-1131-4a47-b63f-c62055477775))
  4531. (pin "9" (uuid 9055f26b-ff19-46c9-a577-61bfacf7ef14))
  4532. )
  4533. (symbol (lib_id "Logic_LevelTranslator:TXS0108EPW") (at 155.575 227.33 180) (unit 1)
  4534. (in_bom yes) (on_board yes)
  4535. (uuid 00000000-0000-0000-0000-000060e3a754)
  4536. (property "Reference" "U2" (id 0) (at 155.575 204.9526 0))
  4537. (property "Value" "TXS0108EPW" (id 1) (at 155.575 207.264 0))
  4538. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (id 2) (at 155.575 208.28 0)
  4539. (effects (font (size 1.27 1.27)) hide)
  4540. )
  4541. (property "Datasheet" "www.ti.com/lit/ds/symlink/txs0108e.pdf" (id 3) (at 155.575 224.79 0)
  4542. (effects (font (size 1.27 1.27)) hide)
  4543. )
  4544. (pin "1" (uuid dc33c55a-ea55-4227-b616-44e2bf56ec36))
  4545. (pin "10" (uuid 1d4aec6e-6c64-499e-85c0-21a47504b0e0))
  4546. (pin "11" (uuid af000428-ec46-4a4e-addf-dee8c9451b81))
  4547. (pin "12" (uuid edd0e332-2c83-409e-9e82-66ea38e51259))
  4548. (pin "13" (uuid 593d0910-3387-4dc1-bafa-d1fbd8850594))
  4549. (pin "14" (uuid e8d95247-d0f3-414e-95b7-9bff2255f5b0))
  4550. (pin "15" (uuid 9d31f9ce-2b4a-478f-9f32-67b3524f1486))
  4551. (pin "16" (uuid 599cbfb8-1eb9-4ba1-be14-384ff43d1999))
  4552. (pin "17" (uuid 7657c361-5942-4e26-bc16-9e53151964ce))
  4553. (pin "18" (uuid 65d9e2b3-664b-483a-b82b-3bab7aa62a9b))
  4554. (pin "19" (uuid 4238a1a1-ad26-4e9e-b8e9-07cb5cba7972))
  4555. (pin "2" (uuid b0c8616f-838c-4437-8d5a-8c05e49f728d))
  4556. (pin "20" (uuid 03dceacd-6b41-4cc1-9e48-7a9a39625d14))
  4557. (pin "3" (uuid 724fec6f-bd9e-4d80-94c3-4891fece1a0e))
  4558. (pin "4" (uuid 4b94853c-9325-4d9e-baf4-35425ec86f22))
  4559. (pin "5" (uuid 950a4ec3-f6d5-4552-8253-6005bd16496a))
  4560. (pin "6" (uuid aad57421-915c-445d-b6c2-6fb3c895e9fc))
  4561. (pin "7" (uuid bb95b054-494e-4ff4-a24e-900e74642f47))
  4562. (pin "8" (uuid a43388e9-4e0b-4d56-ae32-3828fc68f94f))
  4563. (pin "9" (uuid f4a1b82f-4742-4437-99ae-b08a3ec9ceb4))
  4564. )
  4565. (symbol (lib_id "Connector_Generic:Conn_02x20_Odd_Even") (at 82.55 108.585 0) (unit 1)
  4566. (in_bom yes) (on_board yes)
  4567. (uuid 00000000-0000-0000-0000-000060e3d664)
  4568. (property "Reference" "J1" (id 0) (at 83.82 80.2132 0))
  4569. (property "Value" "Conn_02x20_Odd_Even" (id 1) (at 83.82 82.5246 0))
  4570. (property "Footprint" "Connector_IDC:IDC-Header_2x20_P2.54mm_Vertical" (id 2) (at 82.55 108.585 0)
  4571. (effects (font (size 1.27 1.27)) hide)
  4572. )
  4573. (property "Datasheet" "~" (id 3) (at 82.55 108.585 0)
  4574. (effects (font (size 1.27 1.27)) hide)
  4575. )
  4576. (pin "1" (uuid caea6b3d-f8c9-4a69-8b30-f34689911de8))
  4577. (pin "10" (uuid f362fd8b-bcd5-4f60-b294-ad5f26123c00))
  4578. (pin "11" (uuid d0cfc551-d0c2-4cd0-bd0d-175970b50083))
  4579. (pin "12" (uuid b9090799-7d75-45e1-8bc3-9d6bb38d4558))
  4580. (pin "13" (uuid b5e99bf6-83b8-4f26-a225-80e7b5966275))
  4581. (pin "14" (uuid b223d24e-6a9f-4513-99d3-de3d3a4a20a9))
  4582. (pin "15" (uuid 234c4b67-1198-4117-a898-317aef0966e4))
  4583. (pin "16" (uuid 000bcf52-ec48-40b5-84e5-b68b60dc2428))
  4584. (pin "17" (uuid 688ef4ba-eaff-4432-802a-2b4c5c9e34ee))
  4585. (pin "18" (uuid 08e96656-ca30-4b8d-8b64-8b9d9a27e9cd))
  4586. (pin "19" (uuid 6fe5c805-d9a4-4ed9-89ba-00c1a1c62b4a))
  4587. (pin "2" (uuid b17a5dd4-2291-4fae-917c-75f17092aaaa))
  4588. (pin "20" (uuid f212bdf3-436e-488d-83fe-0245b82b1859))
  4589. (pin "21" (uuid 6332d100-396e-4e58-9c27-339defc1ad47))
  4590. (pin "22" (uuid a577520d-0df0-49cb-a0f7-749a5ffc270c))
  4591. (pin "23" (uuid 74b0ee2a-1060-41f1-97bd-e93a9154fdca))
  4592. (pin "24" (uuid 7aa18fed-1d9b-4379-9522-72c4d0d58d2c))
  4593. (pin "25" (uuid cb3102b1-5335-49ed-9fc0-f9f3f8094da7))
  4594. (pin "26" (uuid a2dcb5b2-1182-4a45-802f-b7f2be437b68))
  4595. (pin "27" (uuid d49512b5-88d2-42a1-b0bd-8382115a73b2))
  4596. (pin "28" (uuid 143093bd-fc63-4366-8daf-3541306138e6))
  4597. (pin "29" (uuid a2c0a276-ec3a-498a-9cb5-7b750480d98c))
  4598. (pin "3" (uuid f5d9324c-fdb7-48ba-9846-3512eb70105b))
  4599. (pin "30" (uuid 5db7281c-aa31-495c-b485-b9ce17a1db20))
  4600. (pin "31" (uuid 9933d1c0-4631-4dbf-ba4d-272afedcb547))
  4601. (pin "32" (uuid b75ef4d7-4d1b-47db-8c3f-c5cc940ceb27))
  4602. (pin "33" (uuid 7007806a-4339-4046-9732-f29a282d9547))
  4603. (pin "34" (uuid 22bee6de-71b0-4e1d-b288-b3a2879d273b))
  4604. (pin "35" (uuid 01baba8d-9995-4089-aeea-8879d3cbf562))
  4605. (pin "36" (uuid 7c773b47-7c32-4aaa-bd01-bad4898dbe4d))
  4606. (pin "37" (uuid 49ba6f2f-3388-4959-8364-7719c883f7f6))
  4607. (pin "38" (uuid 49cd39f4-5581-44f2-a83d-46234f03a60e))
  4608. (pin "39" (uuid 8992de87-4e61-4710-972d-f5b2dcac7e99))
  4609. (pin "4" (uuid 315cc74b-4d27-4b92-a965-f3c1fb73d3bf))
  4610. (pin "40" (uuid 6657fc7b-048b-4236-b993-f21fa58ebea7))
  4611. (pin "5" (uuid 6f0c028a-1fbd-45c7-9bf1-d120191389c1))
  4612. (pin "6" (uuid 1289af10-20d1-4db1-babe-e93775817652))
  4613. (pin "7" (uuid 543b8bc4-dce6-4883-9341-98e48fe668fa))
  4614. (pin "8" (uuid 4e2ddfcb-84ed-4d61-b92c-ecf27b6114cf))
  4615. (pin "9" (uuid 039b04c3-b136-4fe2-9e42-53d523c7b777))
  4616. )
  4617. (symbol (lib_id "power:GND") (at 129.54 213.36 0) (unit 1)
  4618. (in_bom yes) (on_board yes)
  4619. (uuid 00000000-0000-0000-0000-000060e7bc45)
  4620. (property "Reference" "#PWR04" (id 0) (at 129.54 219.71 0)
  4621. (effects (font (size 1.27 1.27)) hide)
  4622. )
  4623. (property "Value" "GND" (id 1) (at 129.667 217.7542 0))
  4624. (property "Footprint" "" (id 2) (at 129.54 213.36 0)
  4625. (effects (font (size 1.27 1.27)) hide)
  4626. )
  4627. (property "Datasheet" "" (id 3) (at 129.54 213.36 0)
  4628. (effects (font (size 1.27 1.27)) hide)
  4629. )
  4630. (pin "1" (uuid 24539a93-dad5-40be-a323-1bd2f20980b7))
  4631. )
  4632. (symbol (lib_id "power:GND") (at 175.895 214.63 0) (unit 1)
  4633. (in_bom yes) (on_board yes)
  4634. (uuid 00000000-0000-0000-0000-000060e7f711)
  4635. (property "Reference" "#PWR06" (id 0) (at 175.895 220.98 0)
  4636. (effects (font (size 1.27 1.27)) hide)
  4637. )
  4638. (property "Value" "GND" (id 1) (at 176.022 219.0242 0))
  4639. (property "Footprint" "" (id 2) (at 175.895 214.63 0)
  4640. (effects (font (size 1.27 1.27)) hide)
  4641. )
  4642. (property "Datasheet" "" (id 3) (at 175.895 214.63 0)
  4643. (effects (font (size 1.27 1.27)) hide)
  4644. )
  4645. (pin "1" (uuid 6a1be2be-2734-411e-a34b-eea77737d7c4))
  4646. )
  4647. (symbol (lib_id "power:+5V") (at 96.52 245.11 0) (unit 1)
  4648. (in_bom yes) (on_board yes)
  4649. (uuid 00000000-0000-0000-0000-000060e80dde)
  4650. (property "Reference" "#PWR02" (id 0) (at 96.52 248.92 0)
  4651. (effects (font (size 1.27 1.27)) hide)
  4652. )
  4653. (property "Value" "+5V" (id 1) (at 96.901 240.7158 0))
  4654. (property "Footprint" "" (id 2) (at 96.52 245.11 0)
  4655. (effects (font (size 1.27 1.27)) hide)
  4656. )
  4657. (property "Datasheet" "" (id 3) (at 96.52 245.11 0)
  4658. (effects (font (size 1.27 1.27)) hide)
  4659. )
  4660. (pin "1" (uuid 72411784-7904-4a55-906b-df87b0753700))
  4661. )
  4662. (symbol (lib_id "power:+5V") (at 142.875 245.11 0) (unit 1)
  4663. (in_bom yes) (on_board yes)
  4664. (uuid 00000000-0000-0000-0000-000060e82df1)
  4665. (property "Reference" "#PWR03" (id 0) (at 142.875 248.92 0)
  4666. (effects (font (size 1.27 1.27)) hide)
  4667. )
  4668. (property "Value" "+5V" (id 1) (at 143.256 240.7158 0))
  4669. (property "Footprint" "" (id 2) (at 142.875 245.11 0)
  4670. (effects (font (size 1.27 1.27)) hide)
  4671. )
  4672. (property "Datasheet" "" (id 3) (at 142.875 245.11 0)
  4673. (effects (font (size 1.27 1.27)) hide)
  4674. )
  4675. (pin "1" (uuid b5b64754-b116-465a-b4b2-6941a2c90bf5))
  4676. )
  4677. (symbol (lib_id "power:GND") (at 104.14 142.875 0) (unit 1)
  4678. (in_bom yes) (on_board yes)
  4679. (uuid 00000000-0000-0000-0000-000060e8f739)
  4680. (property "Reference" "#PWR01" (id 0) (at 104.14 149.225 0)
  4681. (effects (font (size 1.27 1.27)) hide)
  4682. )
  4683. (property "Value" "GND" (id 1) (at 104.267 147.2692 0))
  4684. (property "Footprint" "" (id 2) (at 104.14 142.875 0)
  4685. (effects (font (size 1.27 1.27)) hide)
  4686. )
  4687. (property "Datasheet" "" (id 3) (at 104.14 142.875 0)
  4688. (effects (font (size 1.27 1.27)) hide)
  4689. )
  4690. (pin "1" (uuid a17efc99-34e5-427a-846f-caa31aa34d67))
  4691. )
  4692. (symbol (lib_id "Connector:Conn_01x03_Male") (at 375.92 108.585 0) (unit 1)
  4693. (in_bom yes) (on_board yes)
  4694. (uuid 00000000-0000-0000-0000-000060ebbb9d)
  4695. (property "Reference" "J6" (id 0) (at 378.6632 101.4476 0))
  4696. (property "Value" "Conn_01x03_Male" (id 1) (at 378.6632 103.759 0))
  4697. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 375.92 108.585 0)
  4698. (effects (font (size 1.27 1.27)) hide)
  4699. )
  4700. (property "Datasheet" "~" (id 3) (at 375.92 108.585 0)
  4701. (effects (font (size 1.27 1.27)) hide)
  4702. )
  4703. (pin "1" (uuid b0704f76-1da7-42f5-91d1-ac4a576234d9))
  4704. (pin "2" (uuid 3311ade7-aa9a-4524-8027-4bb849be73c6))
  4705. (pin "3" (uuid 08a713f2-3f55-454a-b2a8-f978b2448837))
  4706. )
  4707. (symbol (lib_id "Connector:Conn_01x02_Male") (at 375.92 136.525 0) (unit 1)
  4708. (in_bom yes) (on_board yes)
  4709. (uuid 00000000-0000-0000-0000-000060ec64d1)
  4710. (property "Reference" "J7" (id 0) (at 378.6632 131.9276 0))
  4711. (property "Value" "Conn_01x02_Male" (id 1) (at 378.6632 134.239 0))
  4712. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 375.92 136.525 0)
  4713. (effects (font (size 1.27 1.27)) hide)
  4714. )
  4715. (property "Datasheet" "~" (id 3) (at 375.92 136.525 0)
  4716. (effects (font (size 1.27 1.27)) hide)
  4717. )
  4718. (pin "1" (uuid 00a9bae8-5b0c-4383-a66d-b43a2cb266e2))
  4719. (pin "2" (uuid b3f69333-4779-4022-b424-459a09897b03))
  4720. )
  4721. (symbol (lib_id "Device:R") (at 73.66 88.265 270) (unit 1)
  4722. (in_bom yes) (on_board yes)
  4723. (uuid 00000000-0000-0000-0000-000060ee152f)
  4724. (property "Reference" "R1" (id 0) (at 72.39 88.265 90)
  4725. (effects (font (size 0.7874 0.7874)))
  4726. )
  4727. (property "Value" "33" (id 1) (at 74.93 88.265 90)
  4728. (effects (font (size 0.7874 0.7874)))
  4729. )
  4730. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 86.487 90)
  4731. (effects (font (size 1.27 1.27)) hide)
  4732. )
  4733. (property "Datasheet" "~" (id 3) (at 73.66 88.265 0)
  4734. (effects (font (size 1.27 1.27)) hide)
  4735. )
  4736. (pin "1" (uuid 5c67c009-7e75-479c-aa59-9d6847424ae0))
  4737. (pin "2" (uuid 28662c81-31f9-4376-bfde-e14e7d014b8e))
  4738. )
  4739. (symbol (lib_id "Connector:Conn_01x01_Male") (at 375.92 99.695 0) (unit 1)
  4740. (in_bom yes) (on_board yes)
  4741. (uuid 00000000-0000-0000-0000-000060eebdad)
  4742. (property "Reference" "J5" (id 0) (at 378.6632 95.0976 0))
  4743. (property "Value" "Conn_01x01_Male" (id 1) (at 378.6632 97.409 0))
  4744. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (id 2) (at 375.92 99.695 0)
  4745. (effects (font (size 1.27 1.27)) hide)
  4746. )
  4747. (property "Datasheet" "~" (id 3) (at 375.92 99.695 0)
  4748. (effects (font (size 1.27 1.27)) hide)
  4749. )
  4750. (pin "1" (uuid 76f567aa-ceac-457a-bc79-346d1f098ded))
  4751. )
  4752. (symbol (lib_id "Device:R") (at 73.66 90.805 270) (unit 1)
  4753. (in_bom yes) (on_board yes)
  4754. (uuid 00000000-0000-0000-0000-000060eedf32)
  4755. (property "Reference" "R2" (id 0) (at 72.39 90.805 90)
  4756. (effects (font (size 0.7874 0.7874)))
  4757. )
  4758. (property "Value" "33" (id 1) (at 74.93 90.805 90)
  4759. (effects (font (size 0.7874 0.7874)))
  4760. )
  4761. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 89.027 90)
  4762. (effects (font (size 1.27 1.27)) hide)
  4763. )
  4764. (property "Datasheet" "~" (id 3) (at 73.66 90.805 0)
  4765. (effects (font (size 1.27 1.27)) hide)
  4766. )
  4767. (pin "1" (uuid 74505477-e318-427a-8ae7-25028fafa765))
  4768. (pin "2" (uuid b524a11d-ee58-433c-9b0b-521dde52d582))
  4769. )
  4770. (symbol (lib_id "Device:R") (at 73.66 93.345 270) (unit 1)
  4771. (in_bom yes) (on_board yes)
  4772. (uuid 00000000-0000-0000-0000-000060eee2fb)
  4773. (property "Reference" "R3" (id 0) (at 72.39 93.345 90)
  4774. (effects (font (size 0.7874 0.7874)))
  4775. )
  4776. (property "Value" "33" (id 1) (at 74.93 93.345 90)
  4777. (effects (font (size 0.7874 0.7874)))
  4778. )
  4779. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 91.567 90)
  4780. (effects (font (size 1.27 1.27)) hide)
  4781. )
  4782. (property "Datasheet" "~" (id 3) (at 73.66 93.345 0)
  4783. (effects (font (size 1.27 1.27)) hide)
  4784. )
  4785. (pin "1" (uuid 11663ca1-d8d6-4ff8-bb9b-bd93de122cd6))
  4786. (pin "2" (uuid 0530d417-e16a-4ea6-9bea-20533091e08a))
  4787. )
  4788. (symbol (lib_id "Device:R") (at 73.66 95.885 270) (unit 1)
  4789. (in_bom yes) (on_board yes)
  4790. (uuid 00000000-0000-0000-0000-000060eee4d6)
  4791. (property "Reference" "R4" (id 0) (at 72.39 95.885 90)
  4792. (effects (font (size 0.7874 0.7874)))
  4793. )
  4794. (property "Value" "33" (id 1) (at 74.93 95.885 90)
  4795. (effects (font (size 0.7874 0.7874)))
  4796. )
  4797. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 94.107 90)
  4798. (effects (font (size 1.27 1.27)) hide)
  4799. )
  4800. (property "Datasheet" "~" (id 3) (at 73.66 95.885 0)
  4801. (effects (font (size 1.27 1.27)) hide)
  4802. )
  4803. (pin "1" (uuid 0365bc7e-6037-4f3b-bb59-d68ec66737b0))
  4804. (pin "2" (uuid 2007da8d-4364-44b2-a918-054b5e26275f))
  4805. )
  4806. (symbol (lib_id "Device:R") (at 73.66 98.425 270) (unit 1)
  4807. (in_bom yes) (on_board yes)
  4808. (uuid 00000000-0000-0000-0000-000060eee700)
  4809. (property "Reference" "R5" (id 0) (at 72.39 98.425 90)
  4810. (effects (font (size 0.7874 0.7874)))
  4811. )
  4812. (property "Value" "33" (id 1) (at 74.93 98.425 90)
  4813. (effects (font (size 0.7874 0.7874)))
  4814. )
  4815. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 96.647 90)
  4816. (effects (font (size 1.27 1.27)) hide)
  4817. )
  4818. (property "Datasheet" "~" (id 3) (at 73.66 98.425 0)
  4819. (effects (font (size 1.27 1.27)) hide)
  4820. )
  4821. (pin "1" (uuid 5944247c-3370-44bd-9d77-eaf34b181b7d))
  4822. (pin "2" (uuid 6dab2d10-c83b-4f05-9f8d-8ae9071e38cb))
  4823. )
  4824. (symbol (lib_id "Device:R") (at 73.66 100.965 270) (unit 1)
  4825. (in_bom yes) (on_board yes)
  4826. (uuid 00000000-0000-0000-0000-000060eee90d)
  4827. (property "Reference" "R6" (id 0) (at 72.39 100.965 90)
  4828. (effects (font (size 0.7874 0.7874)))
  4829. )
  4830. (property "Value" "33" (id 1) (at 74.93 100.965 90)
  4831. (effects (font (size 0.7874 0.7874)))
  4832. )
  4833. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 99.187 90)
  4834. (effects (font (size 1.27 1.27)) hide)
  4835. )
  4836. (property "Datasheet" "~" (id 3) (at 73.66 100.965 0)
  4837. (effects (font (size 1.27 1.27)) hide)
  4838. )
  4839. (pin "1" (uuid b53915dd-61c8-4df0-9ce7-848dd1e42c8a))
  4840. (pin "2" (uuid 3a2459fd-ae4a-4923-8b06-9db48e577f92))
  4841. )
  4842. (symbol (lib_id "Device:R") (at 73.66 103.505 270) (unit 1)
  4843. (in_bom yes) (on_board yes)
  4844. (uuid 00000000-0000-0000-0000-000060eeebad)
  4845. (property "Reference" "R7" (id 0) (at 72.39 103.505 90)
  4846. (effects (font (size 0.7874 0.7874)))
  4847. )
  4848. (property "Value" "33" (id 1) (at 74.93 103.505 90)
  4849. (effects (font (size 0.7874 0.7874)))
  4850. )
  4851. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 101.727 90)
  4852. (effects (font (size 1.27 1.27)) hide)
  4853. )
  4854. (property "Datasheet" "~" (id 3) (at 73.66 103.505 0)
  4855. (effects (font (size 1.27 1.27)) hide)
  4856. )
  4857. (pin "1" (uuid 20589502-fe75-40fc-8a15-9ddda6917037))
  4858. (pin "2" (uuid fb0add30-d688-4d2b-b293-701f493f547c))
  4859. )
  4860. (symbol (lib_id "Device:R") (at 73.66 106.045 270) (unit 1)
  4861. (in_bom yes) (on_board yes)
  4862. (uuid 00000000-0000-0000-0000-000060eeee25)
  4863. (property "Reference" "R8" (id 0) (at 72.39 106.045 90)
  4864. (effects (font (size 0.7874 0.7874)))
  4865. )
  4866. (property "Value" "33" (id 1) (at 74.93 106.045 90)
  4867. (effects (font (size 0.7874 0.7874)))
  4868. )
  4869. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 104.267 90)
  4870. (effects (font (size 1.27 1.27)) hide)
  4871. )
  4872. (property "Datasheet" "~" (id 3) (at 73.66 106.045 0)
  4873. (effects (font (size 1.27 1.27)) hide)
  4874. )
  4875. (pin "1" (uuid 868db9b0-c40d-4577-bf0d-d2d1681ab294))
  4876. (pin "2" (uuid 93c6437e-4b97-4137-b1a9-e9c45ee8a854))
  4877. )
  4878. (symbol (lib_id "Device:R") (at 93.98 88.265 270) (unit 1)
  4879. (in_bom yes) (on_board yes)
  4880. (uuid 00000000-0000-0000-0000-000060ef0310)
  4881. (property "Reference" "R14" (id 0) (at 92.71 88.265 90)
  4882. (effects (font (size 0.7874 0.7874)))
  4883. )
  4884. (property "Value" "33" (id 1) (at 95.25 88.265 90)
  4885. (effects (font (size 0.7874 0.7874)))
  4886. )
  4887. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 86.487 90)
  4888. (effects (font (size 1.27 1.27)) hide)
  4889. )
  4890. (property "Datasheet" "~" (id 3) (at 93.98 88.265 0)
  4891. (effects (font (size 1.27 1.27)) hide)
  4892. )
  4893. (pin "1" (uuid fa33aa48-5098-4f1d-95f9-265c6df15643))
  4894. (pin "2" (uuid 08a6be59-0244-4570-bde0-dd14e4e3285e))
  4895. )
  4896. (symbol (lib_id "Connector:Conn_01x01_Male") (at 375.92 125.095 0) (unit 1)
  4897. (in_bom yes) (on_board yes)
  4898. (uuid 00000000-0000-0000-0000-000060f07695)
  4899. (property "Reference" "J8" (id 0) (at 378.6632 120.4976 0))
  4900. (property "Value" "Conn_01x01_Male" (id 1) (at 378.6632 122.809 0))
  4901. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (id 2) (at 375.92 125.095 0)
  4902. (effects (font (size 1.27 1.27)) hide)
  4903. )
  4904. (property "Datasheet" "~" (id 3) (at 375.92 125.095 0)
  4905. (effects (font (size 1.27 1.27)) hide)
  4906. )
  4907. (pin "1" (uuid a8f533f0-6027-401d-b7ef-e79e45ba2ebb))
  4908. )
  4909. (symbol (lib_id "Device:R") (at 93.98 90.805 270) (unit 1)
  4910. (in_bom yes) (on_board yes)
  4911. (uuid 00000000-0000-0000-0000-000060f08823)
  4912. (property "Reference" "R15" (id 0) (at 92.71 90.805 90)
  4913. (effects (font (size 0.7874 0.7874)))
  4914. )
  4915. (property "Value" "33" (id 1) (at 95.25 90.805 90)
  4916. (effects (font (size 0.7874 0.7874)))
  4917. )
  4918. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 89.027 90)
  4919. (effects (font (size 1.27 1.27)) hide)
  4920. )
  4921. (property "Datasheet" "~" (id 3) (at 93.98 90.805 0)
  4922. (effects (font (size 1.27 1.27)) hide)
  4923. )
  4924. (pin "1" (uuid 4e624485-ee1c-4f19-afd8-be753a953d3c))
  4925. (pin "2" (uuid 206a0602-b89a-4b02-a276-4d4ff6ffc3f2))
  4926. )
  4927. (symbol (lib_id "Device:R") (at 93.98 93.345 270) (unit 1)
  4928. (in_bom yes) (on_board yes)
  4929. (uuid 00000000-0000-0000-0000-000060f08b84)
  4930. (property "Reference" "R16" (id 0) (at 92.71 93.345 90)
  4931. (effects (font (size 0.7874 0.7874)))
  4932. )
  4933. (property "Value" "33" (id 1) (at 95.25 93.345 90)
  4934. (effects (font (size 0.7874 0.7874)))
  4935. )
  4936. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 91.567 90)
  4937. (effects (font (size 1.27 1.27)) hide)
  4938. )
  4939. (property "Datasheet" "~" (id 3) (at 93.98 93.345 0)
  4940. (effects (font (size 1.27 1.27)) hide)
  4941. )
  4942. (pin "1" (uuid 6989f41b-87ab-4849-a23e-0925ddd7b1bd))
  4943. (pin "2" (uuid b1ad849d-a6fc-4121-b632-49aa42e2390d))
  4944. )
  4945. (symbol (lib_id "Device:R") (at 93.98 95.885 270) (unit 1)
  4946. (in_bom yes) (on_board yes)
  4947. (uuid 00000000-0000-0000-0000-000060f0922f)
  4948. (property "Reference" "R17" (id 0) (at 92.71 95.885 90)
  4949. (effects (font (size 0.7874 0.7874)))
  4950. )
  4951. (property "Value" "33" (id 1) (at 95.25 95.885 90)
  4952. (effects (font (size 0.7874 0.7874)))
  4953. )
  4954. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 94.107 90)
  4955. (effects (font (size 1.27 1.27)) hide)
  4956. )
  4957. (property "Datasheet" "~" (id 3) (at 93.98 95.885 0)
  4958. (effects (font (size 1.27 1.27)) hide)
  4959. )
  4960. (pin "1" (uuid a25b7b9d-480f-4eee-b1cd-036f11c7d48b))
  4961. (pin "2" (uuid eae1ad59-ac56-4812-b5ec-cd3dd1670507))
  4962. )
  4963. (symbol (lib_id "Device:R") (at 93.98 98.425 270) (unit 1)
  4964. (in_bom yes) (on_board yes)
  4965. (uuid 00000000-0000-0000-0000-000060f09606)
  4966. (property "Reference" "R18" (id 0) (at 92.71 98.425 90)
  4967. (effects (font (size 0.7874 0.7874)))
  4968. )
  4969. (property "Value" "33" (id 1) (at 95.25 98.425 90)
  4970. (effects (font (size 0.7874 0.7874)))
  4971. )
  4972. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 96.647 90)
  4973. (effects (font (size 1.27 1.27)) hide)
  4974. )
  4975. (property "Datasheet" "~" (id 3) (at 93.98 98.425 0)
  4976. (effects (font (size 1.27 1.27)) hide)
  4977. )
  4978. (pin "1" (uuid 42071361-d6be-4b4e-915b-717cb65be8a0))
  4979. (pin "2" (uuid 8901630b-5248-425b-b6fa-35584969582e))
  4980. )
  4981. (symbol (lib_id "Device:R") (at 93.98 100.965 270) (unit 1)
  4982. (in_bom yes) (on_board yes)
  4983. (uuid 00000000-0000-0000-0000-000060f099c4)
  4984. (property "Reference" "R19" (id 0) (at 92.71 100.965 90)
  4985. (effects (font (size 0.7874 0.7874)))
  4986. )
  4987. (property "Value" "33" (id 1) (at 95.25 100.965 90)
  4988. (effects (font (size 0.7874 0.7874)))
  4989. )
  4990. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 99.187 90)
  4991. (effects (font (size 1.27 1.27)) hide)
  4992. )
  4993. (property "Datasheet" "~" (id 3) (at 93.98 100.965 0)
  4994. (effects (font (size 1.27 1.27)) hide)
  4995. )
  4996. (pin "1" (uuid efd0e069-f94b-4090-9712-4f78c68e5733))
  4997. (pin "2" (uuid 5ef496c9-1f69-4fa1-a538-9bc124765b1e))
  4998. )
  4999. (symbol (lib_id "Device:R") (at 93.98 103.505 270) (unit 1)
  5000. (in_bom yes) (on_board yes)
  5001. (uuid 00000000-0000-0000-0000-000060f09d89)
  5002. (property "Reference" "R20" (id 0) (at 92.71 103.505 90)
  5003. (effects (font (size 0.7874 0.7874)))
  5004. )
  5005. (property "Value" "33" (id 1) (at 95.25 103.505 90)
  5006. (effects (font (size 0.7874 0.7874)))
  5007. )
  5008. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 101.727 90)
  5009. (effects (font (size 1.27 1.27)) hide)
  5010. )
  5011. (property "Datasheet" "~" (id 3) (at 93.98 103.505 0)
  5012. (effects (font (size 1.27 1.27)) hide)
  5013. )
  5014. (pin "1" (uuid 95f9895a-0bac-409f-b650-0bf413a7116d))
  5015. (pin "2" (uuid ab2103e9-6840-4653-9453-4055e782e7cf))
  5016. )
  5017. (symbol (lib_id "Device:R") (at 93.98 106.045 270) (unit 1)
  5018. (in_bom yes) (on_board yes)
  5019. (uuid 00000000-0000-0000-0000-000060f0a130)
  5020. (property "Reference" "R21" (id 0) (at 92.71 106.045 90)
  5021. (effects (font (size 0.7874 0.7874)))
  5022. )
  5023. (property "Value" "33" (id 1) (at 95.25 106.045 90)
  5024. (effects (font (size 0.7874 0.7874)))
  5025. )
  5026. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 104.267 90)
  5027. (effects (font (size 1.27 1.27)) hide)
  5028. )
  5029. (property "Datasheet" "~" (id 3) (at 93.98 106.045 0)
  5030. (effects (font (size 1.27 1.27)) hide)
  5031. )
  5032. (pin "1" (uuid b44c8bc8-d09a-452f-9708-65295fbbb4fd))
  5033. (pin "2" (uuid 61faa066-b336-47fa-8cfd-0f0f209c4c07))
  5034. )
  5035. (symbol (lib_id "Connector:Conn_01x01_Male") (at 375.92 130.175 0) (unit 1)
  5036. (in_bom yes) (on_board yes)
  5037. (uuid 00000000-0000-0000-0000-000060f15e73)
  5038. (property "Reference" "J9" (id 0) (at 378.6632 125.5776 0))
  5039. (property "Value" "Conn_01x01_Male" (id 1) (at 378.6632 127.889 0))
  5040. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (id 2) (at 375.92 130.175 0)
  5041. (effects (font (size 1.27 1.27)) hide)
  5042. )
  5043. (property "Datasheet" "~" (id 3) (at 375.92 130.175 0)
  5044. (effects (font (size 1.27 1.27)) hide)
  5045. )
  5046. (pin "1" (uuid 2c8beae0-e88d-4cc0-b00b-f172b5bc376d))
  5047. )
  5048. (symbol (lib_id "Device:R") (at 73.66 128.905 270) (unit 1)
  5049. (in_bom yes) (on_board yes)
  5050. (uuid 00000000-0000-0000-0000-000060f1f972)
  5051. (property "Reference" "R12" (id 0) (at 72.39 128.905 90)
  5052. (effects (font (size 0.7874 0.7874)))
  5053. )
  5054. (property "Value" "33" (id 1) (at 74.93 128.905 90)
  5055. (effects (font (size 0.7874 0.7874)))
  5056. )
  5057. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 127.127 90)
  5058. (effects (font (size 1.27 1.27)) hide)
  5059. )
  5060. (property "Datasheet" "~" (id 3) (at 73.66 128.905 0)
  5061. (effects (font (size 1.27 1.27)) hide)
  5062. )
  5063. (pin "1" (uuid bd5c4859-b2e3-48a7-a7f2-d4f708a13df1))
  5064. (pin "2" (uuid 25aa61e5-a356-44bd-80e3-065512c07198))
  5065. )
  5066. (symbol (lib_id "Device:R") (at 73.66 126.365 270) (unit 1)
  5067. (in_bom yes) (on_board yes)
  5068. (uuid 00000000-0000-0000-0000-000060f200f6)
  5069. (property "Reference" "R11" (id 0) (at 72.39 126.365 90)
  5070. (effects (font (size 0.7874 0.7874)))
  5071. )
  5072. (property "Value" "33" (id 1) (at 74.93 126.365 90)
  5073. (effects (font (size 0.7874 0.7874)))
  5074. )
  5075. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 124.587 90)
  5076. (effects (font (size 1.27 1.27)) hide)
  5077. )
  5078. (property "Datasheet" "~" (id 3) (at 73.66 126.365 0)
  5079. (effects (font (size 1.27 1.27)) hide)
  5080. )
  5081. (pin "1" (uuid cc9fdf2c-56c4-4455-abd5-ca43110f90ea))
  5082. (pin "2" (uuid c4dd4d0b-b9d7-461e-950b-de91b9df01e2))
  5083. )
  5084. (symbol (lib_id "Device:R") (at 73.66 131.445 270) (unit 1)
  5085. (in_bom yes) (on_board yes)
  5086. (uuid 00000000-0000-0000-0000-000060f2087d)
  5087. (property "Reference" "R13" (id 0) (at 72.39 131.445 90)
  5088. (effects (font (size 0.7874 0.7874)))
  5089. )
  5090. (property "Value" "33" (id 1) (at 74.93 131.445 90)
  5091. (effects (font (size 0.7874 0.7874)))
  5092. )
  5093. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 129.667 90)
  5094. (effects (font (size 1.27 1.27)) hide)
  5095. )
  5096. (property "Datasheet" "~" (id 3) (at 73.66 131.445 0)
  5097. (effects (font (size 1.27 1.27)) hide)
  5098. )
  5099. (pin "1" (uuid 1f859fc0-3321-4551-8110-9aa069e77708))
  5100. (pin "2" (uuid 805081e7-931a-4045-93f3-995c8d230f6b))
  5101. )
  5102. (symbol (lib_id "Device:R") (at 93.98 131.445 270) (unit 1)
  5103. (in_bom yes) (on_board yes)
  5104. (uuid 00000000-0000-0000-0000-000060f20f89)
  5105. (property "Reference" "R23" (id 0) (at 92.71 131.445 90)
  5106. (effects (font (size 0.7874 0.7874)))
  5107. )
  5108. (property "Value" "33" (id 1) (at 95.25 131.445 90)
  5109. (effects (font (size 0.7874 0.7874)))
  5110. )
  5111. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 129.667 90)
  5112. (effects (font (size 1.27 1.27)) hide)
  5113. )
  5114. (property "Datasheet" "~" (id 3) (at 93.98 131.445 0)
  5115. (effects (font (size 1.27 1.27)) hide)
  5116. )
  5117. (pin "1" (uuid e2f13372-3f3a-403f-ae8e-f7f1825e0d7f))
  5118. (pin "2" (uuid e8cfd677-24b4-4417-9b2e-2b825dcceb6a))
  5119. )
  5120. (symbol (lib_id "Device:R") (at 93.98 128.905 270) (unit 1)
  5121. (in_bom yes) (on_board yes)
  5122. (uuid 00000000-0000-0000-0000-000060f2469e)
  5123. (property "Reference" "R22" (id 0) (at 92.71 128.905 90)
  5124. (effects (font (size 0.7874 0.7874)))
  5125. )
  5126. (property "Value" "33" (id 1) (at 95.25 128.905 90)
  5127. (effects (font (size 0.7874 0.7874)))
  5128. )
  5129. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 127.127 90)
  5130. (effects (font (size 1.27 1.27)) hide)
  5131. )
  5132. (property "Datasheet" "~" (id 3) (at 93.98 128.905 0)
  5133. (effects (font (size 1.27 1.27)) hide)
  5134. )
  5135. (pin "1" (uuid 187d2ddb-5d51-4090-8b62-c1e84117d330))
  5136. (pin "2" (uuid 76a743bb-d6aa-4070-8e1d-4f6c4a304f7a))
  5137. )
  5138. (symbol (lib_id "Device:R") (at 73.66 113.665 270) (unit 1)
  5139. (in_bom yes) (on_board yes)
  5140. (uuid 00000000-0000-0000-0000-000060f24dc4)
  5141. (property "Reference" "R9" (id 0) (at 72.39 113.665 90)
  5142. (effects (font (size 0.7874 0.7874)))
  5143. )
  5144. (property "Value" "22" (id 1) (at 74.93 113.665 90)
  5145. (effects (font (size 0.7874 0.7874)))
  5146. )
  5147. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 111.887 90)
  5148. (effects (font (size 1.27 1.27)) hide)
  5149. )
  5150. (property "Datasheet" "~" (id 3) (at 73.66 113.665 0)
  5151. (effects (font (size 1.27 1.27)) hide)
  5152. )
  5153. (pin "1" (uuid 28cf77fd-01bc-4533-b03c-252abaf59b9f))
  5154. (pin "2" (uuid ab127d49-fc7c-4599-96c9-b4e49837e45a))
  5155. )
  5156. (symbol (lib_id "Device:R") (at 73.66 116.205 270) (unit 1)
  5157. (in_bom yes) (on_board yes)
  5158. (uuid 00000000-0000-0000-0000-000060f2612d)
  5159. (property "Reference" "R10" (id 0) (at 72.39 116.205 90)
  5160. (effects (font (size 0.7874 0.7874)))
  5161. )
  5162. (property "Value" "22" (id 1) (at 74.93 116.205 90)
  5163. (effects (font (size 0.7874 0.7874)))
  5164. )
  5165. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 114.427 90)
  5166. (effects (font (size 1.27 1.27)) hide)
  5167. )
  5168. (property "Datasheet" "~" (id 3) (at 73.66 116.205 0)
  5169. (effects (font (size 1.27 1.27)) hide)
  5170. )
  5171. (pin "1" (uuid ddcc1aef-b3d8-4b9b-ad0b-88a8830a1cbf))
  5172. (pin "2" (uuid b1b4d48d-1776-4f41-b0a1-5c828b8fb15b))
  5173. )
  5174. (symbol (lib_id "Device:R") (at 73.66 85.725 270) (unit 1)
  5175. (in_bom yes) (on_board yes)
  5176. (uuid 00000000-0000-0000-0000-000060f671bc)
  5177. (property "Reference" "R24" (id 0) (at 72.39 85.725 90)
  5178. (effects (font (size 0.7874 0.7874)))
  5179. )
  5180. (property "Value" "33" (id 1) (at 74.93 85.725 90)
  5181. (effects (font (size 0.7874 0.7874)))
  5182. )
  5183. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 83.947 90)
  5184. (effects (font (size 1.27 1.27)) hide)
  5185. )
  5186. (property "Datasheet" "~" (id 3) (at 73.66 85.725 0)
  5187. (effects (font (size 1.27 1.27)) hide)
  5188. )
  5189. (pin "1" (uuid 6eecb264-d867-4a86-8942-6b006397155d))
  5190. (pin "2" (uuid 56568979-d4b8-40ac-a604-397cbd87c265))
  5191. )
  5192. (symbol (lib_id "power:PWR_FLAG") (at 257.175 33.655 0) (unit 1)
  5193. (in_bom yes) (on_board yes)
  5194. (uuid 020d5672-bc8f-47a2-9a27-6e35bccde6bd)
  5195. (property "Reference" "#FLG0101" (id 0) (at 257.175 31.75 0)
  5196. (effects (font (size 1.27 1.27)) hide)
  5197. )
  5198. (property "Value" "PWR_FLAG" (id 1) (at 259.715 29.845 0))
  5199. (property "Footprint" "" (id 2) (at 257.175 33.655 0)
  5200. (effects (font (size 1.27 1.27)) hide)
  5201. )
  5202. (property "Datasheet" "~" (id 3) (at 257.175 33.655 0)
  5203. (effects (font (size 1.27 1.27)) hide)
  5204. )
  5205. (pin "1" (uuid dc38dad0-9e21-492e-b4d2-f16e6c6de89b))
  5206. )
  5207. (symbol (lib_id "power:+5V") (at 351.79 203.835 0) (unit 1)
  5208. (in_bom yes) (on_board yes)
  5209. (uuid 085064c1-71a2-481d-b031-b5c037c67cd6)
  5210. (property "Reference" "#PWR0125" (id 0) (at 351.79 207.645 0)
  5211. (effects (font (size 1.27 1.27)) hide)
  5212. )
  5213. (property "Value" "+5V" (id 1) (at 352.171 199.4408 0))
  5214. (property "Footprint" "" (id 2) (at 351.79 203.835 0)
  5215. (effects (font (size 1.27 1.27)) hide)
  5216. )
  5217. (property "Datasheet" "" (id 3) (at 351.79 203.835 0)
  5218. (effects (font (size 1.27 1.27)) hide)
  5219. )
  5220. (pin "1" (uuid e43a0199-cab9-46d8-9930-1444ca64210e))
  5221. )
  5222. (symbol (lib_id "power:+3V3") (at 181.61 69.85 0) (unit 1)
  5223. (in_bom yes) (on_board yes)
  5224. (uuid 0a110990-cbeb-44f8-a264-27f3bd0cfce6)
  5225. (property "Reference" "#PWR0111" (id 0) (at 181.61 73.66 0)
  5226. (effects (font (size 1.27 1.27)) hide)
  5227. )
  5228. (property "Value" "+3V3" (id 1) (at 177.8 66.675 0))
  5229. (property "Footprint" "" (id 2) (at 181.61 69.85 0)
  5230. (effects (font (size 1.27 1.27)) hide)
  5231. )
  5232. (property "Datasheet" "" (id 3) (at 181.61 69.85 0)
  5233. (effects (font (size 1.27 1.27)) hide)
  5234. )
  5235. (pin "1" (uuid 09f72a0b-68f6-4c4a-86b4-9a9250170c5b))
  5236. )
  5237. (symbol (lib_id "Device:L_Small") (at 246.38 25.4 0) (unit 1)
  5238. (in_bom yes) (on_board yes) (fields_autoplaced)
  5239. (uuid 12c5debe-cf4e-4a43-9e32-6958b66dbe87)
  5240. (property "Reference" "L1" (id 0) (at 247.65 24.1299 0)
  5241. (effects (font (size 1.27 1.27)) (justify left))
  5242. )
  5243. (property "Value" "4.7uH" (id 1) (at 247.65 26.6699 0)
  5244. (effects (font (size 1.27 1.27)) (justify left))
  5245. )
  5246. (property "Footprint" "Inductor_SMD:L_0603_1608Metric" (id 2) (at 246.38 25.4 0)
  5247. (effects (font (size 1.27 1.27)) hide)
  5248. )
  5249. (property "Datasheet" "~" (id 3) (at 246.38 25.4 0)
  5250. (effects (font (size 1.27 1.27)) hide)
  5251. )
  5252. (property "LCSC" "C1034" (id 4) (at 246.38 25.4 0)
  5253. (effects (font (size 1.27 1.27)) hide)
  5254. )
  5255. (pin "1" (uuid 2d219eaf-4753-492a-9c9e-33544e79c79b))
  5256. (pin "2" (uuid 6c9968da-4881-4bc5-a943-0e7c317a66dc))
  5257. )
  5258. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 372.745 24.13 0) (unit 1)
  5259. (in_bom yes) (on_board yes) (fields_autoplaced)
  5260. (uuid 182354f9-6d1d-416a-9267-137fa7ddcc78)
  5261. (property "Reference" "H2" (id 0) (at 375.92 21.5899 0)
  5262. (effects (font (size 1.27 1.27)) (justify left))
  5263. )
  5264. (property "Value" "Hole" (id 1) (at 375.92 24.1299 0)
  5265. (effects (font (size 1.27 1.27)) (justify left))
  5266. )
  5267. (property "Footprint" "MountingHole:MountingHole_2.5mm_Pad_TopBottom" (id 2) (at 372.745 24.13 0)
  5268. (effects (font (size 1.27 1.27)) hide)
  5269. )
  5270. (property "Datasheet" "~" (id 3) (at 372.745 24.13 0)
  5271. (effects (font (size 1.27 1.27)) hide)
  5272. )
  5273. (property "LCSC" "NM" (id 4) (at 372.745 24.13 0)
  5274. (effects (font (size 1.27 1.27)) hide)
  5275. )
  5276. (pin "1" (uuid e75fd07c-57ef-4087-8e8e-f581b2c6f939))
  5277. )
  5278. (symbol (lib_id "power:+3V3") (at 233.68 32.385 0) (unit 1)
  5279. (in_bom yes) (on_board yes) (fields_autoplaced)
  5280. (uuid 187635d5-d4b3-4198-9b60-b9401feb6129)
  5281. (property "Reference" "#PWR0105" (id 0) (at 233.68 36.195 0)
  5282. (effects (font (size 1.27 1.27)) hide)
  5283. )
  5284. (property "Value" "+3V3" (id 1) (at 233.68 26.67 0))
  5285. (property "Footprint" "" (id 2) (at 233.68 32.385 0)
  5286. (effects (font (size 1.27 1.27)) hide)
  5287. )
  5288. (property "Datasheet" "" (id 3) (at 233.68 32.385 0)
  5289. (effects (font (size 1.27 1.27)) hide)
  5290. )
  5291. (pin "1" (uuid d44a939a-ca0b-4f17-8f86-f442d3546a04))
  5292. )
  5293. (symbol (lib_id "Device:R_Small") (at 246.38 31.115 0) (unit 1)
  5294. (in_bom yes) (on_board yes) (fields_autoplaced)
  5295. (uuid 1dcaebc2-a84c-4e89-aaeb-dd95e7b64ddb)
  5296. (property "Reference" "R28" (id 0) (at 248.92 29.8449 0)
  5297. (effects (font (size 1.27 1.27)) (justify left))
  5298. )
  5299. (property "Value" "0" (id 1) (at 248.92 32.3849 0)
  5300. (effects (font (size 1.27 1.27)) (justify left))
  5301. )
  5302. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 246.38 31.115 0)
  5303. (effects (font (size 1.27 1.27)) hide)
  5304. )
  5305. (property "Datasheet" "~" (id 3) (at 246.38 31.115 0)
  5306. (effects (font (size 1.27 1.27)) hide)
  5307. )
  5308. (property "LCSC" "C21189" (id 4) (at 246.38 31.115 0)
  5309. (effects (font (size 1.27 1.27)) hide)
  5310. )
  5311. (pin "1" (uuid 12857d17-3254-4b37-8ac4-fbfd05af590a))
  5312. (pin "2" (uuid 64d5fe04-f866-4f2e-a5f2-d8af9c2a59b6))
  5313. )
  5314. (symbol (lib_id "Device:C_Small") (at 224.79 262.255 0) (unit 1)
  5315. (in_bom yes) (on_board yes) (fields_autoplaced)
  5316. (uuid 1dfc446d-e7c6-40c8-8a75-1960c75efead)
  5317. (property "Reference" "C14" (id 0) (at 227.965 260.9912 0)
  5318. (effects (font (size 1.27 1.27)) (justify left))
  5319. )
  5320. (property "Value" "100nF" (id 1) (at 227.965 263.5312 0)
  5321. (effects (font (size 1.27 1.27)) (justify left))
  5322. )
  5323. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 224.79 262.255 0)
  5324. (effects (font (size 1.27 1.27)) hide)
  5325. )
  5326. (property "Datasheet" "~" (id 3) (at 224.79 262.255 0)
  5327. (effects (font (size 1.27 1.27)) hide)
  5328. )
  5329. (property "LCSC" "C1525" (id 4) (at 224.79 262.255 0)
  5330. (effects (font (size 1.27 1.27)) hide)
  5331. )
  5332. (pin "1" (uuid 9dc6b04d-2c7e-4d04-984f-62181a91e77c))
  5333. (pin "2" (uuid f18d2a99-a43c-4a0c-958a-475fb3991787))
  5334. )
  5335. (symbol (lib_id "power:+3V3") (at 201.93 255.905 0) (unit 1)
  5336. (in_bom yes) (on_board yes) (fields_autoplaced)
  5337. (uuid 1e5a7d8f-1578-4681-ac81-7dea53d10d53)
  5338. (property "Reference" "#PWR0108" (id 0) (at 201.93 259.715 0)
  5339. (effects (font (size 1.27 1.27)) hide)
  5340. )
  5341. (property "Value" "+3V3" (id 1) (at 201.93 251.46 0))
  5342. (property "Footprint" "" (id 2) (at 201.93 255.905 0)
  5343. (effects (font (size 1.27 1.27)) hide)
  5344. )
  5345. (property "Datasheet" "" (id 3) (at 201.93 255.905 0)
  5346. (effects (font (size 1.27 1.27)) hide)
  5347. )
  5348. (pin "1" (uuid 794dd640-af27-4da7-a640-8e43432cc5df))
  5349. )
  5350. (symbol (lib_id "Device:C_Small") (at 393.7 211.455 0) (unit 1)
  5351. (in_bom yes) (on_board yes)
  5352. (uuid 1fccb4e8-b918-48bc-869b-c13b6de6645a)
  5353. (property "Reference" "C24" (id 0) (at 394.335 209.55 0)
  5354. (effects (font (size 1.27 1.27)) (justify left))
  5355. )
  5356. (property "Value" "100nF" (id 1) (at 394.335 213.995 0)
  5357. (effects (font (size 1.27 1.27)) (justify left))
  5358. )
  5359. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 393.7 211.455 0)
  5360. (effects (font (size 1.27 1.27)) hide)
  5361. )
  5362. (property "Datasheet" "~" (id 3) (at 393.7 211.455 0)
  5363. (effects (font (size 1.27 1.27)) hide)
  5364. )
  5365. (property "LCSC" "C1525" (id 4) (at 393.7 211.455 0)
  5366. (effects (font (size 1.27 1.27)) hide)
  5367. )
  5368. (pin "1" (uuid 413f8229-df0c-4b99-a69f-7d9801557a89))
  5369. (pin "2" (uuid 0cdd3b69-8c31-4216-aefc-566f70a41651))
  5370. )
  5371. (symbol (lib_id "Logic_LevelTranslator:TXS0108EPW") (at 202.565 226.695 180) (unit 1)
  5372. (in_bom yes) (on_board yes)
  5373. (uuid 271d102e-4d4b-4ef3-9c4e-97819e24d70a)
  5374. (property "Reference" "U6" (id 0) (at 202.565 204.3176 0))
  5375. (property "Value" "TXS0108EPW" (id 1) (at 202.565 206.629 0))
  5376. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (id 2) (at 202.565 207.645 0)
  5377. (effects (font (size 1.27 1.27)) hide)
  5378. )
  5379. (property "Datasheet" "www.ti.com/lit/ds/symlink/txs0108e.pdf" (id 3) (at 202.565 224.155 0)
  5380. (effects (font (size 1.27 1.27)) hide)
  5381. )
  5382. (pin "1" (uuid 18e0bead-ba53-4ecc-b77c-4c9529af91c8))
  5383. (pin "10" (uuid 75c08655-539b-4c58-a34c-1b4a0b2408db))
  5384. (pin "11" (uuid 49c8299b-d9eb-4edb-9b50-846f9901021b))
  5385. (pin "12" (uuid c146b335-aa3a-4454-b44d-e06be85e7e0a))
  5386. (pin "13" (uuid d1a60023-cb0c-4037-94bc-e204379d3092))
  5387. (pin "14" (uuid 13d5d6ae-8f82-4be9-beae-cc1ff46b80d2))
  5388. (pin "15" (uuid 1643307d-4e3b-4153-9a2f-4911eba813cf))
  5389. (pin "16" (uuid c75192f2-8dd0-4e18-9294-75ace0ebe85b))
  5390. (pin "17" (uuid 3283b0d5-de17-4486-affe-2c72069878c2))
  5391. (pin "18" (uuid cfd15ea1-c5fc-4353-b0de-aacfbb8d73ec))
  5392. (pin "19" (uuid 19200a68-6cb2-4405-95c5-d219b1d8624b))
  5393. (pin "2" (uuid 06333f63-afaa-4d71-9bc3-7a168656e14a))
  5394. (pin "20" (uuid fcb9e794-e5b3-41df-ac4e-5dd1e8266337))
  5395. (pin "3" (uuid 1cd2718c-fadc-48ea-8b69-69b53ea136d2))
  5396. (pin "4" (uuid af27d7f5-fcdb-4d2d-8da7-104c79cc02fe))
  5397. (pin "5" (uuid d20b8ffb-b411-4051-916b-ebe59dcf0af0))
  5398. (pin "6" (uuid fa1b43c2-3f55-42c1-bab6-194bc1ddf3b6))
  5399. (pin "7" (uuid 5babf962-2455-4d06-84db-064ea12fad0d))
  5400. (pin "8" (uuid 788983f3-c045-4d1e-8062-37579d374697))
  5401. (pin "9" (uuid 08070a3a-1842-4228-9819-727f72857808))
  5402. )
  5403. (symbol (lib_id "Device:Crystal") (at 269.875 170.815 0) (unit 1)
  5404. (in_bom yes) (on_board yes)
  5405. (uuid 2a8b0fa2-08fb-477e-9830-51e5f15f284b)
  5406. (property "Reference" "Y2" (id 0) (at 269.875 162.56 0))
  5407. (property "Value" "32kHz" (id 1) (at 279.4 168.275 0))
  5408. (property "Footprint" "ide-usb-pcb:Crystal_SMD_3215-2Pin_3.2x1.5mm" (id 2) (at 269.875 170.815 0)
  5409. (effects (font (size 1.27 1.27)) hide)
  5410. )
  5411. (property "Datasheet" "~" (id 3) (at 269.875 170.815 0)
  5412. (effects (font (size 1.27 1.27)) hide)
  5413. )
  5414. (property "LCSC" "C32346" (id 4) (at 269.875 170.815 0)
  5415. (effects (font (size 1.27 1.27)) hide)
  5416. )
  5417. (pin "1" (uuid 4c67ee23-9968-40e8-9843-d39c4336f515))
  5418. (pin "2" (uuid f686a679-0ca0-4fb7-9263-415f74979703))
  5419. )
  5420. (symbol (lib_id "Device:C_Small") (at 201.93 262.255 0) (unit 1)
  5421. (in_bom yes) (on_board yes) (fields_autoplaced)
  5422. (uuid 317e459a-7132-405d-a3c8-e343f432e431)
  5423. (property "Reference" "C12" (id 0) (at 205.105 260.9912 0)
  5424. (effects (font (size 1.27 1.27)) (justify left))
  5425. )
  5426. (property "Value" "100nF" (id 1) (at 205.105 263.5312 0)
  5427. (effects (font (size 1.27 1.27)) (justify left))
  5428. )
  5429. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 201.93 262.255 0)
  5430. (effects (font (size 1.27 1.27)) hide)
  5431. )
  5432. (property "Datasheet" "~" (id 3) (at 201.93 262.255 0)
  5433. (effects (font (size 1.27 1.27)) hide)
  5434. )
  5435. (property "LCSC" "C1525" (id 4) (at 201.93 262.255 0)
  5436. (effects (font (size 1.27 1.27)) hide)
  5437. )
  5438. (pin "1" (uuid 24c7bfff-5cf5-4ad9-8963-1c49977321b2))
  5439. (pin "2" (uuid 9926c660-2466-4bb8-9a40-dce7c2004256))
  5440. )
  5441. (symbol (lib_id "power:GND") (at 81.28 273.685 0) (unit 1)
  5442. (in_bom yes) (on_board yes) (fields_autoplaced)
  5443. (uuid 32382a27-b86d-44b4-aa9b-71df85d9f0f8)
  5444. (property "Reference" "#PWR0114" (id 0) (at 81.28 280.035 0)
  5445. (effects (font (size 1.27 1.27)) hide)
  5446. )
  5447. (property "Value" "GND" (id 1) (at 81.28 278.765 0))
  5448. (property "Footprint" "" (id 2) (at 81.28 273.685 0)
  5449. (effects (font (size 1.27 1.27)) hide)
  5450. )
  5451. (property "Datasheet" "" (id 3) (at 81.28 273.685 0)
  5452. (effects (font (size 1.27 1.27)) hide)
  5453. )
  5454. (pin "1" (uuid ee5810e6-87d9-46ee-93d4-2b2561549853))
  5455. )
  5456. (symbol (lib_id "power:+3V3") (at 398.78 203.2 0) (unit 1)
  5457. (in_bom yes) (on_board yes)
  5458. (uuid 33925438-6016-4dbb-8f66-526d9ce0fe62)
  5459. (property "Reference" "#PWR0124" (id 0) (at 398.78 207.01 0)
  5460. (effects (font (size 1.27 1.27)) hide)
  5461. )
  5462. (property "Value" "+3V3" (id 1) (at 399.161 198.8058 0))
  5463. (property "Footprint" "" (id 2) (at 398.78 203.2 0)
  5464. (effects (font (size 1.27 1.27)) hide)
  5465. )
  5466. (property "Datasheet" "" (id 3) (at 398.78 203.2 0)
  5467. (effects (font (size 1.27 1.27)) hide)
  5468. )
  5469. (pin "1" (uuid b252cd51-ddb4-44c5-86a3-7fe0100436d6))
  5470. )
  5471. (symbol (lib_id "Device:R") (at 73.66 121.285 270) (unit 1)
  5472. (in_bom yes) (on_board yes)
  5473. (uuid 355f6643-041e-485a-bbca-f3cfa821bcf6)
  5474. (property "Reference" "R33" (id 0) (at 72.39 121.285 90)
  5475. (effects (font (size 0.7874 0.7874)))
  5476. )
  5477. (property "Value" "33" (id 1) (at 74.93 121.285 90)
  5478. (effects (font (size 0.7874 0.7874)))
  5479. )
  5480. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 119.507 90)
  5481. (effects (font (size 1.27 1.27)) hide)
  5482. )
  5483. (property "Datasheet" "~" (id 3) (at 73.66 121.285 0)
  5484. (effects (font (size 1.27 1.27)) hide)
  5485. )
  5486. (pin "1" (uuid 7b06f65c-9c57-430b-8385-cb892a13b7ea))
  5487. (pin "2" (uuid 960b06a5-322d-4598-ad12-4a629e8a22cb))
  5488. )
  5489. (symbol (lib_id "Device:R") (at 280.67 219.71 270) (unit 1)
  5490. (in_bom yes) (on_board yes)
  5491. (uuid 3724ac7a-ca6a-478c-979d-a20242b0cdbf)
  5492. (property "Reference" "R31" (id 0) (at 280.67 214.4522 90))
  5493. (property "Value" "5.1k" (id 1) (at 280.67 216.7636 90))
  5494. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 280.67 217.932 90)
  5495. (effects (font (size 1.27 1.27)) hide)
  5496. )
  5497. (property "Datasheet" "~" (id 3) (at 280.67 219.71 0)
  5498. (effects (font (size 1.27 1.27)) hide)
  5499. )
  5500. (property "LCSC" "C25905" (id 4) (at 280.67 219.71 0)
  5501. (effects (font (size 1.27 1.27)) hide)
  5502. )
  5503. (property "Supplier" "" (id 5) (at 280.67 219.71 0)
  5504. (effects (font (size 1.27 1.27)) hide)
  5505. )
  5506. (pin "1" (uuid 60b5e5e8-6418-4d85-bfc1-11d0effe85ba))
  5507. (pin "2" (uuid 2fd1f19e-bdf0-41c0-8b35-9b56768722f7))
  5508. )
  5509. (symbol (lib_id "Device:C_Small") (at 196.85 60.96 0) (unit 1)
  5510. (in_bom yes) (on_board yes)
  5511. (uuid 396ee12c-2683-458e-b687-4514c6aea57e)
  5512. (property "Reference" "C4" (id 0) (at 193.675 59.055 0)
  5513. (effects (font (size 1.27 1.27)) (justify left))
  5514. )
  5515. (property "Value" "2.2uF" (id 1) (at 191.135 62.865 0)
  5516. (effects (font (size 1.27 1.27)) (justify left))
  5517. )
  5518. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 196.85 60.96 0)
  5519. (effects (font (size 1.27 1.27)) hide)
  5520. )
  5521. (property "Datasheet" "~" (id 3) (at 196.85 60.96 0)
  5522. (effects (font (size 1.27 1.27)) hide)
  5523. )
  5524. (property "LCSC" "C23630" (id 4) (at 196.85 60.96 0)
  5525. (effects (font (size 1.27 1.27)) hide)
  5526. )
  5527. (pin "1" (uuid 24979bfd-0730-4587-9e1a-aea6bac816c1))
  5528. (pin "2" (uuid 98036e71-e4fd-4d79-923f-bbdc115c3eea))
  5529. )
  5530. (symbol (lib_id "Device:R_Small") (at 207.645 48.26 270) (unit 1)
  5531. (in_bom yes) (on_board yes)
  5532. (uuid 3f265bbd-a52d-4281-8af1-e1f5fbcd9a2b)
  5533. (property "Reference" "R27" (id 0) (at 205.105 45.72 90))
  5534. (property "Value" "10k" (id 1) (at 210.82 46.355 90))
  5535. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 207.645 48.26 0)
  5536. (effects (font (size 1.27 1.27)) hide)
  5537. )
  5538. (property "Datasheet" "~" (id 3) (at 207.645 48.26 0)
  5539. (effects (font (size 1.27 1.27)) hide)
  5540. )
  5541. (property "LCSC" "C25744" (id 4) (at 207.645 48.26 0)
  5542. (effects (font (size 1.27 1.27)) hide)
  5543. )
  5544. (pin "1" (uuid 01b37e44-02b1-4b78-8a67-206753096ed7))
  5545. (pin "2" (uuid 4e86dcf9-9339-4fb3-bdec-48d2accbf2b1))
  5546. )
  5547. (symbol (lib_id "power:GND") (at 73.66 231.775 0) (unit 1)
  5548. (in_bom yes) (on_board yes) (fields_autoplaced)
  5549. (uuid 3f548575-99f3-4d07-88a3-17a728d139c4)
  5550. (property "Reference" "#PWR0135" (id 0) (at 73.66 238.125 0)
  5551. (effects (font (size 1.27 1.27)) hide)
  5552. )
  5553. (property "Value" "GND" (id 1) (at 73.66 236.855 0))
  5554. (property "Footprint" "" (id 2) (at 73.66 231.775 0)
  5555. (effects (font (size 1.27 1.27)) hide)
  5556. )
  5557. (property "Datasheet" "" (id 3) (at 73.66 231.775 0)
  5558. (effects (font (size 1.27 1.27)) hide)
  5559. )
  5560. (pin "1" (uuid 1dc189dc-4de6-480b-904d-54bf99e7161a))
  5561. )
  5562. (symbol (lib_id "power:GND") (at 386.08 215.265 0) (unit 1)
  5563. (in_bom yes) (on_board yes)
  5564. (uuid 407fefad-4f1d-4a79-877d-d2fcc67aa8fb)
  5565. (property "Reference" "#PWR0112" (id 0) (at 386.08 221.615 0)
  5566. (effects (font (size 1.27 1.27)) hide)
  5567. )
  5568. (property "Value" "GND" (id 1) (at 386.207 219.6592 0))
  5569. (property "Footprint" "" (id 2) (at 386.08 215.265 0)
  5570. (effects (font (size 1.27 1.27)) hide)
  5571. )
  5572. (property "Datasheet" "" (id 3) (at 386.08 215.265 0)
  5573. (effects (font (size 1.27 1.27)) hide)
  5574. )
  5575. (pin "1" (uuid f30f0d1c-f162-4612-9a07-22665a7fc512))
  5576. )
  5577. (symbol (lib_id "power:GND") (at 358.14 215.265 0) (unit 1)
  5578. (in_bom yes) (on_board yes)
  5579. (uuid 4397fb32-90f2-4cc0-b1b1-3b667cac8c05)
  5580. (property "Reference" "#PWR0127" (id 0) (at 358.14 221.615 0)
  5581. (effects (font (size 1.27 1.27)) hide)
  5582. )
  5583. (property "Value" "GND" (id 1) (at 358.267 219.6592 0))
  5584. (property "Footprint" "" (id 2) (at 358.14 215.265 0)
  5585. (effects (font (size 1.27 1.27)) hide)
  5586. )
  5587. (property "Datasheet" "" (id 3) (at 358.14 215.265 0)
  5588. (effects (font (size 1.27 1.27)) hide)
  5589. )
  5590. (pin "1" (uuid a8962dd0-b4b2-4809-95b0-963ff96b6016))
  5591. )
  5592. (symbol (lib_id "power:PWR_FLAG") (at 193.675 53.975 180) (unit 1)
  5593. (in_bom yes) (on_board yes)
  5594. (uuid 4766588c-7d57-44f0-80f4-488c751860c2)
  5595. (property "Reference" "#FLG0104" (id 0) (at 193.675 55.88 0)
  5596. (effects (font (size 1.27 1.27)) hide)
  5597. )
  5598. (property "Value" "PWR_FLAG" (id 1) (at 184.15 57.785 0)
  5599. (effects (font (size 1.27 1.27)) (justify right))
  5600. )
  5601. (property "Footprint" "" (id 2) (at 193.675 53.975 0)
  5602. (effects (font (size 1.27 1.27)) hide)
  5603. )
  5604. (property "Datasheet" "~" (id 3) (at 193.675 53.975 0)
  5605. (effects (font (size 1.27 1.27)) hide)
  5606. )
  5607. (pin "1" (uuid 0ad2c7db-8bfb-4685-9882-ce719541b878))
  5608. )
  5609. (symbol (lib_id "power:PWR_FLAG") (at 202.565 55.88 180) (unit 1)
  5610. (in_bom yes) (on_board yes)
  5611. (uuid 483f611e-b17e-4a93-ab2a-2b4d480577cb)
  5612. (property "Reference" "#FLG0106" (id 0) (at 202.565 57.785 0)
  5613. (effects (font (size 1.27 1.27)) hide)
  5614. )
  5615. (property "Value" "PWR_FLAG" (id 1) (at 203.2 59.055 0)
  5616. (effects (font (size 1.27 1.27)) (justify right))
  5617. )
  5618. (property "Footprint" "" (id 2) (at 202.565 55.88 0)
  5619. (effects (font (size 1.27 1.27)) hide)
  5620. )
  5621. (property "Datasheet" "~" (id 3) (at 202.565 55.88 0)
  5622. (effects (font (size 1.27 1.27)) hide)
  5623. )
  5624. (pin "1" (uuid 5360928c-cce1-4259-af9d-e50f99d94dd3))
  5625. )
  5626. (symbol (lib_id "Device:R_Small") (at 36.195 220.345 180) (unit 1)
  5627. (in_bom yes) (on_board yes) (fields_autoplaced)
  5628. (uuid 48a67d2e-ab82-4fe3-a37f-7f24fac9f7af)
  5629. (property "Reference" "R40" (id 0) (at 38.735 219.0749 0)
  5630. (effects (font (size 1.27 1.27)) (justify right))
  5631. )
  5632. (property "Value" "820" (id 1) (at 38.735 221.6149 0)
  5633. (effects (font (size 1.27 1.27)) (justify right))
  5634. )
  5635. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 36.195 220.345 0)
  5636. (effects (font (size 1.27 1.27)) hide)
  5637. )
  5638. (property "Datasheet" "~" (id 3) (at 36.195 220.345 0)
  5639. (effects (font (size 1.27 1.27)) hide)
  5640. )
  5641. (property "LCSC" "C23253" (id 4) (at 36.195 220.345 0)
  5642. (effects (font (size 1.27 1.27)) hide)
  5643. )
  5644. (pin "1" (uuid 393eb59f-504c-414a-88b3-b77008cdf690))
  5645. (pin "2" (uuid 85fd0767-270d-4ab9-9196-32ac8dcd8673))
  5646. )
  5647. (symbol (lib_id "power:+5V") (at 180.34 255.905 0) (unit 1)
  5648. (in_bom yes) (on_board yes)
  5649. (uuid 4a634174-a8f8-4d49-a1e0-4742090203a8)
  5650. (property "Reference" "#PWR0107" (id 0) (at 180.34 259.715 0)
  5651. (effects (font (size 1.27 1.27)) hide)
  5652. )
  5653. (property "Value" "+5V" (id 1) (at 180.721 251.5108 0))
  5654. (property "Footprint" "" (id 2) (at 180.34 255.905 0)
  5655. (effects (font (size 1.27 1.27)) hide)
  5656. )
  5657. (property "Datasheet" "" (id 3) (at 180.34 255.905 0)
  5658. (effects (font (size 1.27 1.27)) hide)
  5659. )
  5660. (pin "1" (uuid e931057d-2b37-4841-b1d6-0e9908e156f1))
  5661. )
  5662. (symbol (lib_id "Device:C_Small") (at 267.97 262.255 0) (unit 1)
  5663. (in_bom yes) (on_board yes) (fields_autoplaced)
  5664. (uuid 4d17f8dd-bd82-45e1-8189-ea3c42159a2f)
  5665. (property "Reference" "C18" (id 0) (at 271.145 260.9912 0)
  5666. (effects (font (size 1.27 1.27)) (justify left))
  5667. )
  5668. (property "Value" "100nF" (id 1) (at 271.145 263.5312 0)
  5669. (effects (font (size 1.27 1.27)) (justify left))
  5670. )
  5671. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 267.97 262.255 0)
  5672. (effects (font (size 1.27 1.27)) hide)
  5673. )
  5674. (property "Datasheet" "~" (id 3) (at 267.97 262.255 0)
  5675. (effects (font (size 1.27 1.27)) hide)
  5676. )
  5677. (property "LCSC" "C1525" (id 4) (at 267.97 262.255 0)
  5678. (effects (font (size 1.27 1.27)) hide)
  5679. )
  5680. (pin "1" (uuid b2a65a2e-6d39-409a-91ee-60d897fa3692))
  5681. (pin "2" (uuid 8e5e7357-c4f4-45d9-8d05-98b734b99938))
  5682. )
  5683. (symbol (lib_id "power:GND") (at 222.885 212.725 0) (unit 1)
  5684. (in_bom yes) (on_board yes)
  5685. (uuid 523201ae-5d1c-45c9-b4f0-9c17c2a0717e)
  5686. (property "Reference" "#PWR0130" (id 0) (at 222.885 219.075 0)
  5687. (effects (font (size 1.27 1.27)) hide)
  5688. )
  5689. (property "Value" "GND" (id 1) (at 223.012 217.1192 0))
  5690. (property "Footprint" "" (id 2) (at 222.885 212.725 0)
  5691. (effects (font (size 1.27 1.27)) hide)
  5692. )
  5693. (property "Datasheet" "" (id 3) (at 222.885 212.725 0)
  5694. (effects (font (size 1.27 1.27)) hide)
  5695. )
  5696. (pin "1" (uuid cf656798-8951-451b-92b0-c2b07b889368))
  5697. )
  5698. (symbol (lib_id "sm6uax:STM32F730VETx") (at 236.22 104.14 0) (unit 1)
  5699. (in_bom yes) (on_board yes) (fields_autoplaced)
  5700. (uuid 54d018a9-858a-42d7-b187-c4e98a6b735e)
  5701. (property "Reference" "U3" (id 0) (at 243.3194 172.72 0)
  5702. (effects (font (size 1.27 1.27)) (justify left))
  5703. )
  5704. (property "Value" "STM32F730VETx" (id 1) (at 243.3194 175.26 0)
  5705. (effects (font (size 1.27 1.27)) (justify left))
  5706. )
  5707. (property "Footprint" "Package_QFP:LQFP-100_14x14mm_P0.5mm" (id 2) (at 218.44 170.18 0)
  5708. (effects (font (size 1.27 1.27)) (justify right) hide)
  5709. )
  5710. (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00037051.pdf" (id 3) (at 236.22 104.14 0)
  5711. (effects (font (size 1.27 1.27)) hide)
  5712. )
  5713. (pin "1" (uuid 2bce0f53-00c1-46a9-8762-b4c66186e701))
  5714. (pin "10" (uuid 425c64a0-7d6c-4d58-bdeb-8ed1e51c4d17))
  5715. (pin "100" (uuid 81d65e0a-5176-4343-8a41-32c48ecf82b6))
  5716. (pin "11" (uuid b04ecac5-36c5-449e-af46-2228ae6ea392))
  5717. (pin "12" (uuid e0661c94-a48b-478e-8500-a2797b1dddf7))
  5718. (pin "13" (uuid 550ff48b-d6fb-4c69-b8c7-ef6f1907808b))
  5719. (pin "14" (uuid 9dd0b84f-0e36-49d1-aeb3-5854074291a5))
  5720. (pin "15" (uuid 1d7744e7-7750-424f-b9c4-ec05618dbd7e))
  5721. (pin "16" (uuid ef71e597-f3d9-4157-8c17-ad9aab3ab821))
  5722. (pin "17" (uuid 89028873-2596-4fed-bc5e-2b2f081ce2f1))
  5723. (pin "18" (uuid 3ddc336d-25a2-4af5-a5fb-3464740c03b9))
  5724. (pin "19" (uuid 4313f433-15ae-41da-a57f-17f22ad07a0c))
  5725. (pin "2" (uuid 4da1c2f4-a34c-4d1b-a49d-6134b9dc8728))
  5726. (pin "20" (uuid 31701b4b-1213-4bea-8582-7cee111c5570))
  5727. (pin "21" (uuid 47dd6157-8164-452a-a3f3-4e6ee582707b))
  5728. (pin "22" (uuid 821c4864-52ad-4643-bd5e-3e9b7b20f08a))
  5729. (pin "23" (uuid 72478f59-cb04-413d-83f2-7313bb09ee8a))
  5730. (pin "24" (uuid e8029313-51b4-4627-8228-86b93e3c7fbc))
  5731. (pin "25" (uuid c5788db2-cced-48d5-abb8-45fffae95d64))
  5732. (pin "26" (uuid 848e5a71-add3-45d1-a0f2-2cc334b53e1a))
  5733. (pin "27" (uuid 0829f0fe-991c-41b0-9b31-736ec41fb9a9))
  5734. (pin "28" (uuid 1fc59475-dff1-4f5c-900e-98d761bcf47b))
  5735. (pin "29" (uuid fd237eb7-5193-4f08-be86-92914211d7f9))
  5736. (pin "3" (uuid 93e9f0d1-c9bb-45b8-96e0-e397e7122d83))
  5737. (pin "30" (uuid d61e52e3-c24f-4f10-8ee8-bc5c1e2d2808))
  5738. (pin "31" (uuid b8a289c6-16df-4ef8-8af3-ba1151c92238))
  5739. (pin "32" (uuid f07c5666-cff6-4a6b-8b15-06ba633ca646))
  5740. (pin "33" (uuid efa93ced-c7c7-4f11-9c39-df7e02b6db08))
  5741. (pin "34" (uuid 1f7196ba-f595-4707-9e3a-249040ad0754))
  5742. (pin "35" (uuid 908ba2a3-f6a5-4116-be31-dd3d089c9667))
  5743. (pin "36" (uuid 10ff6f0e-25c5-4c6a-ad25-bb3da697a6ac))
  5744. (pin "37" (uuid c67dcb92-094b-4ed8-9785-8b9179c69441))
  5745. (pin "38" (uuid 6de852e5-d6e6-4952-a559-883453b5922f))
  5746. (pin "39" (uuid 404db50c-6bd1-443e-9d0a-f8c5c5d4342c))
  5747. (pin "4" (uuid 57d647de-71dc-495f-8dc4-4dd93960adcd))
  5748. (pin "40" (uuid 0cd55d63-31a2-4092-8d57-3184b384205d))
  5749. (pin "41" (uuid 15428239-d3c8-4ad7-98d9-cbae5a257c6b))
  5750. (pin "42" (uuid a97c26dd-d6bf-4266-a6ef-9d6ec9221d5e))
  5751. (pin "43" (uuid 0524058d-af94-4732-8fb1-212c7b7a8f66))
  5752. (pin "44" (uuid 05eb4300-2469-42f3-ab59-5cf74b5e358f))
  5753. (pin "45" (uuid e0c00938-c777-4262-8482-b6070bd58aed))
  5754. (pin "46" (uuid 4865fca2-7de3-4cd7-a1ab-24383d06cafc))
  5755. (pin "47" (uuid b86154c7-ae9f-4403-a126-00c27d1cfc57))
  5756. (pin "48" (uuid d958ccd9-7b9e-423e-90b5-c24529905645))
  5757. (pin "49" (uuid 292fb765-613b-4224-b5f6-4ef67a630d85))
  5758. (pin "5" (uuid ace5cbb4-bedc-47cb-a4c5-cf5876cd063e))
  5759. (pin "50" (uuid b5d5de88-c5a0-4ca6-af7e-b0a84911fa95))
  5760. (pin "51" (uuid 9b71baab-1ed4-4991-8746-f26bcf3457d6))
  5761. (pin "52" (uuid 03a48912-14db-433c-a032-755c91339e31))
  5762. (pin "53" (uuid 4e41242c-673e-42ba-8060-730e0b2297cf))
  5763. (pin "54" (uuid 5e51c2a3-fafc-4cd7-87d7-3b539da149fa))
  5764. (pin "55" (uuid 9c338553-ce90-44dd-82dc-fbafc016cd85))
  5765. (pin "56" (uuid 31c482e6-01d4-4d7d-aeff-f6869bae786e))
  5766. (pin "57" (uuid bad33990-b4a7-4bd8-8786-dbe0c749aa14))
  5767. (pin "58" (uuid 81895ccf-e5cf-4bdd-a178-f9df84ea5e0d))
  5768. (pin "59" (uuid f772621d-3ea3-4e29-935b-d2091911862d))
  5769. (pin "6" (uuid 8232fc0a-7710-4abf-9729-521bcb114dea))
  5770. (pin "60" (uuid 67fb3fe5-7a60-4896-9575-ffc74c98551f))
  5771. (pin "61" (uuid 2c4bf4dc-ff23-4275-85d9-20f53a220b43))
  5772. (pin "62" (uuid ec6acec6-86b3-48f8-8e88-0692df64ac6d))
  5773. (pin "63" (uuid 211d227a-2e1b-4021-81b3-64ab967b3eab))
  5774. (pin "64" (uuid c5b70df2-d587-423d-9bc1-1341cf8cc0ca))
  5775. (pin "65" (uuid 49ca9783-1a18-40bc-b8f7-60d7f22c917b))
  5776. (pin "66" (uuid f908dd4c-b942-4645-be76-b8e2bc12aa75))
  5777. (pin "67" (uuid f1da00fc-d482-4afb-8692-3f127f1f2eff))
  5778. (pin "68" (uuid ab295f40-ed02-4032-83e0-d43bf4ed5afe))
  5779. (pin "69" (uuid 27f1e45b-2d59-4521-9476-fc9de6172fb8))
  5780. (pin "7" (uuid dc1df921-dd7f-485b-9d86-41626a541e8d))
  5781. (pin "70" (uuid ce69cb9f-5027-4f4b-91bb-2deee98a0ac2))
  5782. (pin "71" (uuid e25f8e14-76c8-4c1c-9c75-dd7ec09ee114))
  5783. (pin "72" (uuid a57bc891-c716-4508-884c-69a3f17faaba))
  5784. (pin "73" (uuid b7b31a0d-ac6e-46ac-a7b7-5b577572330b))
  5785. (pin "74" (uuid 4031f125-1475-4e5c-9043-279bab4edad5))
  5786. (pin "75" (uuid 53f00f60-697f-40a9-b24d-6ba8a7bed796))
  5787. (pin "76" (uuid 0afcdb9d-65c0-429f-9cbf-d47807e558f6))
  5788. (pin "77" (uuid 31c8943c-d945-493b-ac1f-90a27c587057))
  5789. (pin "78" (uuid e9add816-0561-42b0-842a-496a43fb0800))
  5790. (pin "79" (uuid 113ce8b8-2532-4ba2-b3a6-d816e2dc23aa))
  5791. (pin "8" (uuid 3ac4b31c-73d3-4636-ac27-6fdd9cfe81c5))
  5792. (pin "80" (uuid dac073fb-4a4a-4d3f-8cde-d3b89c091f4e))
  5793. (pin "81" (uuid c756238e-379f-4b98-b15d-7d25bef31814))
  5794. (pin "82" (uuid 5f6eeaec-a334-4489-88a1-bd281d8968d7))
  5795. (pin "83" (uuid 331af563-7219-4b87-9a78-8b0a0de4aef4))
  5796. (pin "84" (uuid 03793d34-46db-4c6b-b6b4-e3204692a7c3))
  5797. (pin "85" (uuid fd7ae484-0708-4306-88a2-bf7537c843e3))
  5798. (pin "86" (uuid fc725b92-2980-4b5a-b292-c728a17eebd8))
  5799. (pin "87" (uuid 9a16b0cb-6d7d-4e71-93a6-bc8918e74acc))
  5800. (pin "88" (uuid 54f5f1c4-15d5-4616-a997-9e7cd95dd2f4))
  5801. (pin "89" (uuid e333e43d-03a0-48e0-b011-5df1f7671774))
  5802. (pin "9" (uuid c3fa53b4-6bc4-4a66-9c95-e458b49be177))
  5803. (pin "90" (uuid 14617442-3c69-4015-a483-1c9b5cc71048))
  5804. (pin "91" (uuid 4210cd4c-1122-44f6-9208-1feedd66b876))
  5805. (pin "92" (uuid b3201ccc-70ce-4c5f-bf21-f78d3185ae6d))
  5806. (pin "93" (uuid 82360c18-df50-4f23-ae26-0fdbdd9c1a2b))
  5807. (pin "94" (uuid f75cadd9-23d6-4a38-8522-9fa22dc0a929))
  5808. (pin "95" (uuid 9aa03e2c-871a-407e-9357-ca9f5b03bc1e))
  5809. (pin "96" (uuid 16b93198-b898-48df-86fc-1d2f2dac8a2f))
  5810. (pin "97" (uuid 58d865d6-a666-40da-80e1-0ffa23a2dea6))
  5811. (pin "98" (uuid a8f1e5d6-ab34-41f6-99fc-44dd3e9eba76))
  5812. (pin "99" (uuid 85fc3d4b-f14e-4b05-b35f-445c465f7157))
  5813. )
  5814. (symbol (lib_id "Device:C_Small") (at 191.77 262.255 0) (unit 1)
  5815. (in_bom yes) (on_board yes)
  5816. (uuid 56cd3a0f-8da1-439b-bdf9-0a204c4aabf4)
  5817. (property "Reference" "C11" (id 0) (at 193.04 260.35 0)
  5818. (effects (font (size 1.27 1.27)) (justify left))
  5819. )
  5820. (property "Value" "100nF" (id 1) (at 193.04 264.16 0)
  5821. (effects (font (size 1.27 1.27)) (justify left))
  5822. )
  5823. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 191.77 262.255 0)
  5824. (effects (font (size 1.27 1.27)) hide)
  5825. )
  5826. (property "Datasheet" "~" (id 3) (at 191.77 262.255 0)
  5827. (effects (font (size 1.27 1.27)) hide)
  5828. )
  5829. (property "LCSC" "C1525" (id 4) (at 191.77 262.255 0)
  5830. (effects (font (size 1.27 1.27)) hide)
  5831. )
  5832. (pin "1" (uuid d4951d73-860d-47f5-aae1-667bf42b2bb2))
  5833. (pin "2" (uuid a8429896-d215-4a77-a098-174e594e25da))
  5834. )
  5835. (symbol (lib_id "Device:LED") (at 26.67 227.965 90) (unit 1)
  5836. (in_bom yes) (on_board yes) (fields_autoplaced)
  5837. (uuid 5d7b9ba8-8cd8-4861-a21a-5bbf19361f12)
  5838. (property "Reference" "D2" (id 0) (at 29.845 228.2824 90)
  5839. (effects (font (size 1.27 1.27)) (justify right))
  5840. )
  5841. (property "Value" "LED" (id 1) (at 29.845 230.8224 90)
  5842. (effects (font (size 1.27 1.27)) (justify right))
  5843. )
  5844. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 26.67 227.965 0)
  5845. (effects (font (size 1.27 1.27)) hide)
  5846. )
  5847. (property "Datasheet" "~" (id 3) (at 26.67 227.965 0)
  5848. (effects (font (size 1.27 1.27)) hide)
  5849. )
  5850. (property "LCSC" "C72043" (id 4) (at 26.67 227.965 90)
  5851. (effects (font (size 1.27 1.27)) hide)
  5852. )
  5853. (pin "1" (uuid b558de6b-08f6-428b-830e-abbed00d9bdf))
  5854. (pin "2" (uuid 2bd421ba-7eca-4630-93e5-f4ecfa1fcda5))
  5855. )
  5856. (symbol (lib_id "power:GND") (at 269.24 180.975 0) (unit 1)
  5857. (in_bom yes) (on_board yes) (fields_autoplaced)
  5858. (uuid 5fa6cf9c-cfcd-49f5-85ce-edcf2630b654)
  5859. (property "Reference" "#PWR0121" (id 0) (at 269.24 187.325 0)
  5860. (effects (font (size 1.27 1.27)) hide)
  5861. )
  5862. (property "Value" "GND" (id 1) (at 269.24 185.42 0))
  5863. (property "Footprint" "" (id 2) (at 269.24 180.975 0)
  5864. (effects (font (size 1.27 1.27)) hide)
  5865. )
  5866. (property "Datasheet" "" (id 3) (at 269.24 180.975 0)
  5867. (effects (font (size 1.27 1.27)) hide)
  5868. )
  5869. (pin "1" (uuid be6e6041-44fd-4a79-a9da-055868ae353f))
  5870. )
  5871. (symbol (lib_id "Power_Protection:USBLC6-2SC6") (at 307.34 224.79 90) (unit 1)
  5872. (in_bom yes) (on_board yes)
  5873. (uuid 612d0d35-8b50-41d8-ac0f-fbdeb048a787)
  5874. (property "Reference" "U5" (id 0) (at 298.45 215.9 90)
  5875. (effects (font (size 1.27 1.27)) (justify right))
  5876. )
  5877. (property "Value" "USBLC6-2SC6" (id 1) (at 312.42 215.9 90)
  5878. (effects (font (size 1.27 1.27)) (justify right))
  5879. )
  5880. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 297.18 243.84 0)
  5881. (effects (font (size 1.27 1.27)) hide)
  5882. )
  5883. (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" (id 3) (at 298.45 219.71 0)
  5884. (effects (font (size 1.27 1.27)) hide)
  5885. )
  5886. (property "LCSC" "C2827654" (id 4) (at 307.34 224.79 0)
  5887. (effects (font (size 1.27 1.27)) hide)
  5888. )
  5889. (pin "1" (uuid bc0867d8-53bd-402f-828c-31a00c131e78))
  5890. (pin "2" (uuid d0b7d8cb-6b73-4ee2-b3eb-e46f2e9399f6))
  5891. (pin "3" (uuid 7e1c3ab8-ed2c-40e4-8f8c-ea3dac8bfe45))
  5892. (pin "4" (uuid 618c2a28-0842-4888-bf99-64d659c622e0))
  5893. (pin "5" (uuid 3ebd1b37-d521-4fc8-ba50-c1dda0f43c7c))
  5894. (pin "6" (uuid e2776626-8470-43d8-b140-f8cb3e13ffb1))
  5895. )
  5896. (symbol (lib_id "power:GND") (at 312.42 205.74 0) (unit 1)
  5897. (in_bom yes) (on_board yes)
  5898. (uuid 61fdada0-66ff-431a-bf6c-27a18c708d34)
  5899. (property "Reference" "#PWR0103" (id 0) (at 312.42 212.09 0)
  5900. (effects (font (size 1.27 1.27)) hide)
  5901. )
  5902. (property "Value" "GND" (id 1) (at 312.547 210.1342 0))
  5903. (property "Footprint" "" (id 2) (at 312.42 205.74 0)
  5904. (effects (font (size 1.27 1.27)) hide)
  5905. )
  5906. (property "Datasheet" "" (id 3) (at 312.42 205.74 0)
  5907. (effects (font (size 1.27 1.27)) hide)
  5908. )
  5909. (pin "1" (uuid d69ca59d-ffe0-4ad3-a5d6-0f1b5ebab63e))
  5910. )
  5911. (symbol (lib_id "power:GND") (at 320.04 227.33 0) (unit 1)
  5912. (in_bom yes) (on_board yes)
  5913. (uuid 630cf9d5-9e00-4716-969b-8fb61e056ad7)
  5914. (property "Reference" "#PWR0102" (id 0) (at 320.04 233.68 0)
  5915. (effects (font (size 1.27 1.27)) hide)
  5916. )
  5917. (property "Value" "GND" (id 1) (at 320.167 231.7242 0))
  5918. (property "Footprint" "" (id 2) (at 320.04 227.33 0)
  5919. (effects (font (size 1.27 1.27)) hide)
  5920. )
  5921. (property "Datasheet" "" (id 3) (at 320.04 227.33 0)
  5922. (effects (font (size 1.27 1.27)) hide)
  5923. )
  5924. (pin "1" (uuid d1cb10b7-4b71-443d-b1d4-d3f3200539ec))
  5925. )
  5926. (symbol (lib_id "Device:C_Small") (at 246.38 262.255 0) (unit 1)
  5927. (in_bom yes) (on_board yes) (fields_autoplaced)
  5928. (uuid 64cd87a3-cf03-44e1-8172-13e877a5f532)
  5929. (property "Reference" "C16" (id 0) (at 249.555 260.9912 0)
  5930. (effects (font (size 1.27 1.27)) (justify left))
  5931. )
  5932. (property "Value" "100nF" (id 1) (at 249.555 263.5312 0)
  5933. (effects (font (size 1.27 1.27)) (justify left))
  5934. )
  5935. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 246.38 262.255 0)
  5936. (effects (font (size 1.27 1.27)) hide)
  5937. )
  5938. (property "Datasheet" "~" (id 3) (at 246.38 262.255 0)
  5939. (effects (font (size 1.27 1.27)) hide)
  5940. )
  5941. (property "LCSC" "C1525" (id 4) (at 246.38 262.255 0)
  5942. (effects (font (size 1.27 1.27)) hide)
  5943. )
  5944. (pin "1" (uuid 171521b3-a020-4c26-bf1c-79f9b2b49263))
  5945. (pin "2" (uuid 99f87416-27f7-4903-afc9-7097fbb09af7))
  5946. )
  5947. (symbol (lib_id "Device:R") (at 93.98 126.365 270) (unit 1)
  5948. (in_bom yes) (on_board yes)
  5949. (uuid 6667d621-b9f9-4c4f-b1e1-13fcb3950dee)
  5950. (property "Reference" "R38" (id 0) (at 92.71 126.365 90)
  5951. (effects (font (size 0.7874 0.7874)))
  5952. )
  5953. (property "Value" "33" (id 1) (at 95.25 126.365 90)
  5954. (effects (font (size 0.7874 0.7874)))
  5955. )
  5956. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 124.587 90)
  5957. (effects (font (size 1.27 1.27)) hide)
  5958. )
  5959. (property "Datasheet" "~" (id 3) (at 93.98 126.365 0)
  5960. (effects (font (size 1.27 1.27)) hide)
  5961. )
  5962. (pin "1" (uuid c1689972-a376-4792-a5d6-213be4f86244))
  5963. (pin "2" (uuid 664e413c-ffa4-48a5-b5bf-18012c1ca305))
  5964. )
  5965. (symbol (lib_id "power:GND") (at 201.295 49.53 0) (unit 1)
  5966. (in_bom yes) (on_board yes)
  5967. (uuid 682f076a-6198-4dc2-9114-98174e37470c)
  5968. (property "Reference" "#PWR0119" (id 0) (at 201.295 55.88 0)
  5969. (effects (font (size 1.27 1.27)) hide)
  5970. )
  5971. (property "Value" "GND" (id 1) (at 198.12 51.435 0))
  5972. (property "Footprint" "" (id 2) (at 201.295 49.53 0)
  5973. (effects (font (size 1.27 1.27)) hide)
  5974. )
  5975. (property "Datasheet" "" (id 3) (at 201.295 49.53 0)
  5976. (effects (font (size 1.27 1.27)) hide)
  5977. )
  5978. (pin "1" (uuid e26a2037-d592-4434-839b-ea5b7500b96f))
  5979. )
  5980. (symbol (lib_id "power:+5V") (at 189.865 244.475 0) (unit 1)
  5981. (in_bom yes) (on_board yes)
  5982. (uuid 6daba38a-181e-4863-9e44-c17ef09503c4)
  5983. (property "Reference" "#PWR0129" (id 0) (at 189.865 248.285 0)
  5984. (effects (font (size 1.27 1.27)) hide)
  5985. )
  5986. (property "Value" "+5V" (id 1) (at 190.246 240.0808 0))
  5987. (property "Footprint" "" (id 2) (at 189.865 244.475 0)
  5988. (effects (font (size 1.27 1.27)) hide)
  5989. )
  5990. (property "Datasheet" "" (id 3) (at 189.865 244.475 0)
  5991. (effects (font (size 1.27 1.27)) hide)
  5992. )
  5993. (pin "1" (uuid 3c111dee-2b2c-48b4-843e-1bc1f5db8f1a))
  5994. )
  5995. (symbol (lib_id "Connector:Conn_01x04_Male") (at 90.17 266.065 0) (mirror y) (unit 1)
  5996. (in_bom yes) (on_board yes) (fields_autoplaced)
  5997. (uuid 70125c4c-f09c-46a1-affb-24b14c1e8083)
  5998. (property "Reference" "J3" (id 0) (at 92.075 266.0649 0)
  5999. (effects (font (size 1.27 1.27)) (justify right))
  6000. )
  6001. (property "Value" "Conn_01x04_Male" (id 1) (at 92.075 268.6049 0)
  6002. (effects (font (size 1.27 1.27)) (justify right))
  6003. )
  6004. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (id 2) (at 90.17 266.065 0)
  6005. (effects (font (size 1.27 1.27)) hide)
  6006. )
  6007. (property "Datasheet" "~" (id 3) (at 90.17 266.065 0)
  6008. (effects (font (size 1.27 1.27)) hide)
  6009. )
  6010. (pin "1" (uuid 9d807b1b-add1-40a6-8931-2b3e1a1ad14c))
  6011. (pin "2" (uuid f102a336-a7ed-45b5-874f-d100f0ab086a))
  6012. (pin "3" (uuid 9de8f248-8da9-42ef-8d09-0584fa823e7c))
  6013. (pin "4" (uuid 991179f2-6af6-475f-98de-09606d3854ab))
  6014. )
  6015. (symbol (lib_id "power:+3V3") (at 222.885 243.205 0) (unit 1)
  6016. (in_bom yes) (on_board yes)
  6017. (uuid 71087e77-0442-4c9b-a379-dbfbf6149d19)
  6018. (property "Reference" "#PWR0131" (id 0) (at 222.885 247.015 0)
  6019. (effects (font (size 1.27 1.27)) hide)
  6020. )
  6021. (property "Value" "+3V3" (id 1) (at 222.885 239.395 0))
  6022. (property "Footprint" "" (id 2) (at 222.885 243.205 0)
  6023. (effects (font (size 1.27 1.27)) hide)
  6024. )
  6025. (property "Datasheet" "" (id 3) (at 222.885 243.205 0)
  6026. (effects (font (size 1.27 1.27)) hide)
  6027. )
  6028. (pin "1" (uuid cbda112f-404b-4c6e-8fc5-ad638a6d0bd2))
  6029. )
  6030. (symbol (lib_id "power:GND") (at 199.39 64.77 0) (unit 1)
  6031. (in_bom yes) (on_board yes) (fields_autoplaced)
  6032. (uuid 74236dbc-1a47-47cb-be92-fa94311eb2b0)
  6033. (property "Reference" "#PWR0117" (id 0) (at 199.39 71.12 0)
  6034. (effects (font (size 1.27 1.27)) hide)
  6035. )
  6036. (property "Value" "GND" (id 1) (at 199.39 69.215 0))
  6037. (property "Footprint" "" (id 2) (at 199.39 64.77 0)
  6038. (effects (font (size 1.27 1.27)) hide)
  6039. )
  6040. (property "Datasheet" "" (id 3) (at 199.39 64.77 0)
  6041. (effects (font (size 1.27 1.27)) hide)
  6042. )
  6043. (pin "1" (uuid 64316bf0-9e0e-4158-8961-54c621043813))
  6044. )
  6045. (symbol (lib_id "Device:C_Small") (at 386.08 211.455 0) (unit 1)
  6046. (in_bom yes) (on_board yes)
  6047. (uuid 781b9a50-40b2-4708-8bcf-a848bd912438)
  6048. (property "Reference" "C23" (id 0) (at 381.635 209.55 0)
  6049. (effects (font (size 1.27 1.27)) (justify left))
  6050. )
  6051. (property "Value" "47uF" (id 1) (at 381 213.995 0)
  6052. (effects (font (size 1.27 1.27)) (justify left))
  6053. )
  6054. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 386.08 211.455 0)
  6055. (effects (font (size 1.27 1.27)) hide)
  6056. )
  6057. (property "Datasheet" "~" (id 3) (at 386.08 211.455 0)
  6058. (effects (font (size 1.27 1.27)) hide)
  6059. )
  6060. (property "LCSC" "C16780" (id 4) (at 386.08 211.455 0)
  6061. (effects (font (size 1.27 1.27)) hide)
  6062. )
  6063. (pin "1" (uuid d6e36e8f-7ca6-4c7e-866d-1ed4bdf0e080))
  6064. (pin "2" (uuid 7c385e05-a8c7-4c39-97b8-5564730ed404))
  6065. )
  6066. (symbol (lib_id "Device:C_Small") (at 279.4 262.255 0) (unit 1)
  6067. (in_bom yes) (on_board yes)
  6068. (uuid 782f676c-96cd-4743-b15d-fd696eba8709)
  6069. (property "Reference" "C19" (id 0) (at 281.305 260.985 0)
  6070. (effects (font (size 1.27 1.27)) (justify left))
  6071. )
  6072. (property "Value" "100nF" (id 1) (at 281.305 264.16 0)
  6073. (effects (font (size 1.27 1.27)) (justify left))
  6074. )
  6075. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 279.4 262.255 0)
  6076. (effects (font (size 1.27 1.27)) hide)
  6077. )
  6078. (property "Datasheet" "~" (id 3) (at 279.4 262.255 0)
  6079. (effects (font (size 1.27 1.27)) hide)
  6080. )
  6081. (property "LCSC" "C1525" (id 4) (at 279.4 262.255 0)
  6082. (effects (font (size 1.27 1.27)) hide)
  6083. )
  6084. (pin "1" (uuid 5d9ccfba-15f4-44d5-8902-7e21933238b0))
  6085. (pin "2" (uuid 90a4963a-3be7-4f8e-85e1-e5cee976df50))
  6086. )
  6087. (symbol (lib_id "Device:C_Small") (at 257.81 262.255 0) (unit 1)
  6088. (in_bom yes) (on_board yes) (fields_autoplaced)
  6089. (uuid 7a7d20e9-8e97-4193-9d99-39c261138de8)
  6090. (property "Reference" "C17" (id 0) (at 260.985 260.9912 0)
  6091. (effects (font (size 1.27 1.27)) (justify left))
  6092. )
  6093. (property "Value" "100nF" (id 1) (at 260.985 263.5312 0)
  6094. (effects (font (size 1.27 1.27)) (justify left))
  6095. )
  6096. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 257.81 262.255 0)
  6097. (effects (font (size 1.27 1.27)) hide)
  6098. )
  6099. (property "Datasheet" "~" (id 3) (at 257.81 262.255 0)
  6100. (effects (font (size 1.27 1.27)) hide)
  6101. )
  6102. (property "LCSC" "C1525" (id 4) (at 257.81 262.255 0)
  6103. (effects (font (size 1.27 1.27)) hide)
  6104. )
  6105. (pin "1" (uuid a7f751c1-803b-4c87-af8e-48df5c038b05))
  6106. (pin "2" (uuid 94cbf031-f722-415b-9e7d-fb38640da835))
  6107. )
  6108. (symbol (lib_id "Device:C_Small") (at 312.42 203.2 0) (mirror y) (unit 1)
  6109. (in_bom yes) (on_board yes)
  6110. (uuid 85c529b3-8cd9-4199-b731-9b4ebca58f89)
  6111. (property "Reference" "C9" (id 0) (at 316.23 201.93 0))
  6112. (property "Value" "1uF" (id 1) (at 316.23 205.74 0))
  6113. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 311.4548 207.01 0)
  6114. (effects (font (size 1.27 1.27)) hide)
  6115. )
  6116. (property "Datasheet" "~" (id 3) (at 312.42 203.2 0)
  6117. (effects (font (size 1.27 1.27)) hide)
  6118. )
  6119. (property "LCSC" "C52923" (id 4) (at 347.98 227.33 0)
  6120. (effects (font (size 1.27 1.27)) hide)
  6121. )
  6122. (property "MOUSER" "" (id 5) (at 347.98 227.33 0)
  6123. (effects (font (size 1.27 1.27)) hide)
  6124. )
  6125. (property "MPN" "" (id 6) (at 347.98 227.33 0)
  6126. (effects (font (size 1.27 1.27)) hide)
  6127. )
  6128. (property "Supplier" "" (id 7) (at 312.42 203.2 0)
  6129. (effects (font (size 1.27 1.27)) hide)
  6130. )
  6131. (pin "1" (uuid d0975d1e-0b7e-43fd-8bb4-820e2bb96d70))
  6132. (pin "2" (uuid 81e99abb-789c-4107-94ae-bb7d94a0c3af))
  6133. )
  6134. (symbol (lib_id "power:+3V3") (at 81.28 260.35 0) (unit 1)
  6135. (in_bom yes) (on_board yes) (fields_autoplaced)
  6136. (uuid 867b1bbd-e4f2-4c37-a6bb-000fabf5c707)
  6137. (property "Reference" "#PWR0115" (id 0) (at 81.28 264.16 0)
  6138. (effects (font (size 1.27 1.27)) hide)
  6139. )
  6140. (property "Value" "+3V3" (id 1) (at 81.28 254.635 0))
  6141. (property "Footprint" "" (id 2) (at 81.28 260.35 0)
  6142. (effects (font (size 1.27 1.27)) hide)
  6143. )
  6144. (property "Datasheet" "" (id 3) (at 81.28 260.35 0)
  6145. (effects (font (size 1.27 1.27)) hide)
  6146. )
  6147. (pin "1" (uuid 69f32481-26ce-422b-af63-8d2129b42443))
  6148. )
  6149. (symbol (lib_id "power:+3V3") (at 111.76 264.16 0) (unit 1)
  6150. (in_bom yes) (on_board yes) (fields_autoplaced)
  6151. (uuid 87904378-c2a9-4373-899e-7165676725d9)
  6152. (property "Reference" "#PWR0116" (id 0) (at 111.76 267.97 0)
  6153. (effects (font (size 1.27 1.27)) hide)
  6154. )
  6155. (property "Value" "+3V3" (id 1) (at 111.76 258.445 0))
  6156. (property "Footprint" "" (id 2) (at 111.76 264.16 0)
  6157. (effects (font (size 1.27 1.27)) hide)
  6158. )
  6159. (property "Datasheet" "" (id 3) (at 111.76 264.16 0)
  6160. (effects (font (size 1.27 1.27)) hide)
  6161. )
  6162. (pin "1" (uuid 4f8dd04f-eacd-4818-bba0-41d7245b373a))
  6163. )
  6164. (symbol (lib_id "Device:R") (at 73.66 111.125 270) (unit 1)
  6165. (in_bom yes) (on_board yes)
  6166. (uuid 87d0169f-2aff-44e4-ace6-b66b5b6e0eb6)
  6167. (property "Reference" "R25" (id 0) (at 72.39 111.125 90)
  6168. (effects (font (size 0.7874 0.7874)))
  6169. )
  6170. (property "Value" "33" (id 1) (at 74.93 111.125 90)
  6171. (effects (font (size 0.7874 0.7874)))
  6172. )
  6173. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 109.347 90)
  6174. (effects (font (size 1.27 1.27)) hide)
  6175. )
  6176. (property "Datasheet" "~" (id 3) (at 73.66 111.125 0)
  6177. (effects (font (size 1.27 1.27)) hide)
  6178. )
  6179. (pin "1" (uuid 99dcbe97-db03-4694-b0fb-80de3959aeaa))
  6180. (pin "2" (uuid 6ac35dc4-9d63-4041-8a0c-f70e81fe321d))
  6181. )
  6182. (symbol (lib_id "Device:R") (at 280.67 204.47 270) (unit 1)
  6183. (in_bom yes) (on_board yes)
  6184. (uuid 87dc5ffe-250f-4aef-a6cb-425317a8a82c)
  6185. (property "Reference" "R30" (id 0) (at 280.67 199.2122 90))
  6186. (property "Value" "5.1k" (id 1) (at 280.67 201.5236 90))
  6187. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 280.67 202.692 90)
  6188. (effects (font (size 1.27 1.27)) hide)
  6189. )
  6190. (property "Datasheet" "~" (id 3) (at 280.67 204.47 0)
  6191. (effects (font (size 1.27 1.27)) hide)
  6192. )
  6193. (property "LCSC" "C25905" (id 4) (at 280.67 204.47 0)
  6194. (effects (font (size 1.27 1.27)) hide)
  6195. )
  6196. (property "Supplier" "" (id 5) (at 280.67 204.47 0)
  6197. (effects (font (size 1.27 1.27)) hide)
  6198. )
  6199. (pin "1" (uuid 60a55aeb-29e0-43a4-b2f6-88498496f62e))
  6200. (pin "2" (uuid 684ea3da-e48b-4358-bf32-16b7dae69aaa))
  6201. )
  6202. (symbol (lib_id "Connector_Generic:Conn_02x03_Odd_Even") (at 123.825 269.875 0) (unit 1)
  6203. (in_bom yes) (on_board yes) (fields_autoplaced)
  6204. (uuid 8c7cae08-f348-4593-9400-8dc411de201f)
  6205. (property "Reference" "J4" (id 0) (at 125.095 260.985 0))
  6206. (property "Value" "Conn_02x03_Odd_Even" (id 1) (at 125.095 263.525 0))
  6207. (property "Footprint" "Connector:Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical" (id 2) (at 123.825 269.875 0)
  6208. (effects (font (size 1.27 1.27)) hide)
  6209. )
  6210. (property "Datasheet" "~" (id 3) (at 123.825 269.875 0)
  6211. (effects (font (size 1.27 1.27)) hide)
  6212. )
  6213. (property "LCSC" "NM" (id 4) (at 123.825 269.875 0)
  6214. (effects (font (size 1.27 1.27)) hide)
  6215. )
  6216. (pin "1" (uuid 8a26a2d8-cb96-4079-855f-751ca40dd651))
  6217. (pin "2" (uuid 7d0e208d-9417-497c-b1f8-0821f703bcbe))
  6218. (pin "3" (uuid 027587ce-0093-48c7-accd-58d66ed6424c))
  6219. (pin "4" (uuid a1166dd3-3cb8-48a1-9d95-c30a53bf21e5))
  6220. (pin "5" (uuid 8030a73e-8caf-4066-888e-59b14f1afbd2))
  6221. (pin "6" (uuid 47363186-999a-4c14-8bd4-60734f46f5fb))
  6222. )
  6223. (symbol (lib_id "power:+3V3") (at 246.38 22.225 0) (unit 1)
  6224. (in_bom yes) (on_board yes)
  6225. (uuid 8dc50161-3d49-4977-82f4-90ce192f4365)
  6226. (property "Reference" "#PWR0104" (id 0) (at 246.38 26.035 0)
  6227. (effects (font (size 1.27 1.27)) hide)
  6228. )
  6229. (property "Value" "+3V3" (id 1) (at 242.57 19.05 0))
  6230. (property "Footprint" "" (id 2) (at 246.38 22.225 0)
  6231. (effects (font (size 1.27 1.27)) hide)
  6232. )
  6233. (property "Datasheet" "" (id 3) (at 246.38 22.225 0)
  6234. (effects (font (size 1.27 1.27)) hide)
  6235. )
  6236. (pin "1" (uuid c1d65389-b452-43c9-957e-2793c307d772))
  6237. )
  6238. (symbol (lib_id "power:GND") (at 188.595 50.8 0) (unit 1)
  6239. (in_bom yes) (on_board yes) (fields_autoplaced)
  6240. (uuid 8e083179-df9b-43d3-a6f7-669a7e3b9c1c)
  6241. (property "Reference" "#PWR0118" (id 0) (at 188.595 57.15 0)
  6242. (effects (font (size 1.27 1.27)) hide)
  6243. )
  6244. (property "Value" "GND" (id 1) (at 188.595 55.245 0))
  6245. (property "Footprint" "" (id 2) (at 188.595 50.8 0)
  6246. (effects (font (size 1.27 1.27)) hide)
  6247. )
  6248. (property "Datasheet" "" (id 3) (at 188.595 50.8 0)
  6249. (effects (font (size 1.27 1.27)) hide)
  6250. )
  6251. (pin "1" (uuid f4a3a05d-e653-448a-abff-19e772b9e0ec))
  6252. )
  6253. (symbol (lib_id "Device:C_Small") (at 262.89 175.26 0) (unit 1)
  6254. (in_bom yes) (on_board yes)
  6255. (uuid 92d2dc88-6aa0-476b-ac70-de241756ecda)
  6256. (property "Reference" "C6" (id 0) (at 265.43 173.99 0)
  6257. (effects (font (size 1.27 1.27)) (justify left))
  6258. )
  6259. (property "Value" "12pF" (id 1) (at 265.43 176.53 0)
  6260. (effects (font (size 1.27 1.27)) (justify left))
  6261. )
  6262. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 262.89 175.26 0)
  6263. (effects (font (size 1.27 1.27)) hide)
  6264. )
  6265. (property "Datasheet" "~" (id 3) (at 262.89 175.26 0)
  6266. (effects (font (size 1.27 1.27)) hide)
  6267. )
  6268. (property "LCSC" "C1547" (id 4) (at 262.89 175.26 0)
  6269. (effects (font (size 1.27 1.27)) hide)
  6270. )
  6271. (pin "1" (uuid 32a223d7-19a1-4b5d-ad04-1e5ed473ee24))
  6272. (pin "2" (uuid 5010020d-60c3-476f-9cc9-51acd483cc9e))
  6273. )
  6274. (symbol (lib_id "power:+3V3") (at 175.895 243.205 0) (unit 1)
  6275. (in_bom yes) (on_board yes)
  6276. (uuid 9366e1ee-d01f-4e32-9e8a-4015c3f4e62a)
  6277. (property "Reference" "#PWR0137" (id 0) (at 175.895 247.015 0)
  6278. (effects (font (size 1.27 1.27)) hide)
  6279. )
  6280. (property "Value" "+3V3" (id 1) (at 175.895 239.395 0))
  6281. (property "Footprint" "" (id 2) (at 175.895 243.205 0)
  6282. (effects (font (size 1.27 1.27)) hide)
  6283. )
  6284. (property "Datasheet" "" (id 3) (at 175.895 243.205 0)
  6285. (effects (font (size 1.27 1.27)) hide)
  6286. )
  6287. (pin "1" (uuid 3048a955-ea51-4977-ae0e-7240621a0e9a))
  6288. )
  6289. (symbol (lib_id "power:+3V3") (at 129.54 243.205 0) (unit 1)
  6290. (in_bom yes) (on_board yes)
  6291. (uuid 97bc5da1-0c5f-40e8-88fd-0be83a786030)
  6292. (property "Reference" "#PWR0136" (id 0) (at 129.54 247.015 0)
  6293. (effects (font (size 1.27 1.27)) hide)
  6294. )
  6295. (property "Value" "+3V3" (id 1) (at 129.54 239.395 0))
  6296. (property "Footprint" "" (id 2) (at 129.54 243.205 0)
  6297. (effects (font (size 1.27 1.27)) hide)
  6298. )
  6299. (property "Datasheet" "" (id 3) (at 129.54 243.205 0)
  6300. (effects (font (size 1.27 1.27)) hide)
  6301. )
  6302. (pin "1" (uuid 220be0bb-0b56-456e-b545-9fff158e4c7b))
  6303. )
  6304. (symbol (lib_id "Device:R") (at 93.98 118.745 270) (unit 1)
  6305. (in_bom yes) (on_board yes)
  6306. (uuid 9cc43362-5a83-495c-8712-de83f144bc77)
  6307. (property "Reference" "R36" (id 0) (at 92.71 118.745 90)
  6308. (effects (font (size 0.7874 0.7874)))
  6309. )
  6310. (property "Value" "33" (id 1) (at 95.25 118.745 90)
  6311. (effects (font (size 0.7874 0.7874)))
  6312. )
  6313. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 116.967 90)
  6314. (effects (font (size 1.27 1.27)) hide)
  6315. )
  6316. (property "Datasheet" "~" (id 3) (at 93.98 118.745 0)
  6317. (effects (font (size 1.27 1.27)) hide)
  6318. )
  6319. (pin "1" (uuid 7626585e-ca9e-4df3-a7a9-9f70def9e962))
  6320. (pin "2" (uuid ddc3a031-79d5-461c-92e4-1c12c51bc945))
  6321. )
  6322. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 383.54 23.495 0) (unit 1)
  6323. (in_bom yes) (on_board yes) (fields_autoplaced)
  6324. (uuid 9cff1008-130f-4385-b3e7-48f89b907cad)
  6325. (property "Reference" "H3" (id 0) (at 386.715 20.9549 0)
  6326. (effects (font (size 1.27 1.27)) (justify left))
  6327. )
  6328. (property "Value" "Hole" (id 1) (at 386.715 23.4949 0)
  6329. (effects (font (size 1.27 1.27)) (justify left))
  6330. )
  6331. (property "Footprint" "MountingHole:MountingHole_2.5mm_Pad_TopBottom" (id 2) (at 383.54 23.495 0)
  6332. (effects (font (size 1.27 1.27)) hide)
  6333. )
  6334. (property "Datasheet" "~" (id 3) (at 383.54 23.495 0)
  6335. (effects (font (size 1.27 1.27)) hide)
  6336. )
  6337. (property "LCSC" "NM" (id 4) (at 383.54 23.495 0)
  6338. (effects (font (size 1.27 1.27)) hide)
  6339. )
  6340. (pin "1" (uuid ee260b7d-714a-476c-945a-cdb9c00fcfe1))
  6341. )
  6342. (symbol (lib_id "Device:C_Small") (at 234.95 262.255 0) (unit 1)
  6343. (in_bom yes) (on_board yes) (fields_autoplaced)
  6344. (uuid 9de39763-37c9-4941-bc2b-e00664fbd497)
  6345. (property "Reference" "C15" (id 0) (at 238.125 260.9912 0)
  6346. (effects (font (size 1.27 1.27)) (justify left))
  6347. )
  6348. (property "Value" "100nF" (id 1) (at 238.125 263.5312 0)
  6349. (effects (font (size 1.27 1.27)) (justify left))
  6350. )
  6351. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 234.95 262.255 0)
  6352. (effects (font (size 1.27 1.27)) hide)
  6353. )
  6354. (property "Datasheet" "~" (id 3) (at 234.95 262.255 0)
  6355. (effects (font (size 1.27 1.27)) hide)
  6356. )
  6357. (property "LCSC" "C1525" (id 4) (at 234.95 262.255 0)
  6358. (effects (font (size 1.27 1.27)) hide)
  6359. )
  6360. (pin "1" (uuid 545f0f19-b8d5-4328-a0e2-506253581ceb))
  6361. (pin "2" (uuid 1f1b9c74-9ebd-4a05-8ac8-796282ba7f0c))
  6362. )
  6363. (symbol (lib_id "Device:C_Small") (at 364.49 211.455 0) (unit 1)
  6364. (in_bom yes) (on_board yes)
  6365. (uuid 9e04d1df-74b8-41fb-a2f0-c81204557af3)
  6366. (property "Reference" "C22" (id 0) (at 360.68 209.55 0)
  6367. (effects (font (size 1.27 1.27)) (justify left))
  6368. )
  6369. (property "Value" "47uF" (id 1) (at 359.41 213.995 0)
  6370. (effects (font (size 1.27 1.27)) (justify left))
  6371. )
  6372. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 364.49 211.455 0)
  6373. (effects (font (size 1.27 1.27)) hide)
  6374. )
  6375. (property "Datasheet" "~" (id 3) (at 364.49 211.455 0)
  6376. (effects (font (size 1.27 1.27)) hide)
  6377. )
  6378. (property "LCSC" "C16780" (id 4) (at 364.49 211.455 0)
  6379. (effects (font (size 1.27 1.27)) hide)
  6380. )
  6381. (pin "1" (uuid 5210328f-01a5-4873-9ec0-5191bee14762))
  6382. (pin "2" (uuid 08a66547-4c51-475b-9489-fac0508390bb))
  6383. )
  6384. (symbol (lib_id "Device:R_Small") (at 26.67 220.345 180) (unit 1)
  6385. (in_bom yes) (on_board yes) (fields_autoplaced)
  6386. (uuid 9fbf711d-f8bb-4ee0-b429-7e0b8552e92b)
  6387. (property "Reference" "R39" (id 0) (at 28.575 219.0749 0)
  6388. (effects (font (size 1.27 1.27)) (justify right))
  6389. )
  6390. (property "Value" "820" (id 1) (at 28.575 221.6149 0)
  6391. (effects (font (size 1.27 1.27)) (justify right))
  6392. )
  6393. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 26.67 220.345 0)
  6394. (effects (font (size 1.27 1.27)) hide)
  6395. )
  6396. (property "Datasheet" "~" (id 3) (at 26.67 220.345 0)
  6397. (effects (font (size 1.27 1.27)) hide)
  6398. )
  6399. (property "LCSC" "C23253" (id 4) (at 26.67 220.345 0)
  6400. (effects (font (size 1.27 1.27)) hide)
  6401. )
  6402. (pin "1" (uuid 096f95db-10dc-4111-b16f-bb48f9d6fabe))
  6403. (pin "2" (uuid d1fa6315-3a42-479a-9fb1-dcf248afb8a4))
  6404. )
  6405. (symbol (lib_id "Device:C_Small") (at 276.225 175.26 0) (unit 1)
  6406. (in_bom yes) (on_board yes) (fields_autoplaced)
  6407. (uuid a1bb4343-eeb9-4427-a69e-deccb1c1fbe5)
  6408. (property "Reference" "C7" (id 0) (at 279.4 173.9962 0)
  6409. (effects (font (size 1.27 1.27)) (justify left))
  6410. )
  6411. (property "Value" "12pF" (id 1) (at 279.4 176.5362 0)
  6412. (effects (font (size 1.27 1.27)) (justify left))
  6413. )
  6414. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 276.225 175.26 0)
  6415. (effects (font (size 1.27 1.27)) hide)
  6416. )
  6417. (property "Datasheet" "~" (id 3) (at 276.225 175.26 0)
  6418. (effects (font (size 1.27 1.27)) hide)
  6419. )
  6420. (property "LCSC" "C1547" (id 4) (at 276.225 175.26 0)
  6421. (effects (font (size 1.27 1.27)) hide)
  6422. )
  6423. (pin "1" (uuid c59cb522-6eee-4ba2-83fb-0822835580d5))
  6424. (pin "2" (uuid 9f2742fd-9d73-48ab-8ffd-defaf5664d1d))
  6425. )
  6426. (symbol (lib_id "Device:C_Small") (at 358.14 211.455 0) (unit 1)
  6427. (in_bom yes) (on_board yes)
  6428. (uuid a9b94f29-e28c-424e-994a-512d37b1d6c8)
  6429. (property "Reference" "C21" (id 0) (at 353.695 209.55 0)
  6430. (effects (font (size 1.27 1.27)) (justify left))
  6431. )
  6432. (property "Value" "100nF" (id 1) (at 351.79 213.995 0)
  6433. (effects (font (size 1.27 1.27)) (justify left))
  6434. )
  6435. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 358.14 211.455 0)
  6436. (effects (font (size 1.27 1.27)) hide)
  6437. )
  6438. (property "Datasheet" "~" (id 3) (at 358.14 211.455 0)
  6439. (effects (font (size 1.27 1.27)) hide)
  6440. )
  6441. (property "LCSC" "C1525" (id 4) (at 358.14 211.455 0)
  6442. (effects (font (size 1.27 1.27)) hide)
  6443. )
  6444. (pin "1" (uuid 68fc846e-972d-48c6-9f65-a0f4dfb0666c))
  6445. (pin "2" (uuid 96d7112b-d7bc-40d6-a35a-ebd72dc7e436))
  6446. )
  6447. (symbol (lib_id "Device:LED") (at 36.195 227.965 90) (unit 1)
  6448. (in_bom yes) (on_board yes) (fields_autoplaced)
  6449. (uuid acc0af6d-7dc9-4fd6-8ac0-4dee22dfdf72)
  6450. (property "Reference" "D3" (id 0) (at 39.37 228.2824 90)
  6451. (effects (font (size 1.27 1.27)) (justify right))
  6452. )
  6453. (property "Value" "LED" (id 1) (at 39.37 230.8224 90)
  6454. (effects (font (size 1.27 1.27)) (justify right))
  6455. )
  6456. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 36.195 227.965 0)
  6457. (effects (font (size 1.27 1.27)) hide)
  6458. )
  6459. (property "Datasheet" "~" (id 3) (at 36.195 227.965 0)
  6460. (effects (font (size 1.27 1.27)) hide)
  6461. )
  6462. (property "LCSC" "C72043" (id 4) (at 36.195 227.965 90)
  6463. (effects (font (size 1.27 1.27)) hide)
  6464. )
  6465. (pin "1" (uuid 518a9b60-2937-42dc-bc78-aa9b0cbc39a1))
  6466. (pin "2" (uuid a9215b46-7eed-47cc-b1e0-e2c41a67070f))
  6467. )
  6468. (symbol (lib_id "power:PWR_FLAG") (at 40.64 269.24 180) (unit 1)
  6469. (in_bom yes) (on_board yes)
  6470. (uuid ad457aea-d666-4e6f-a9d2-e753a8da1e4a)
  6471. (property "Reference" "#FLG0102" (id 0) (at 40.64 271.145 0)
  6472. (effects (font (size 1.27 1.27)) hide)
  6473. )
  6474. (property "Value" "PWR_FLAG" (id 1) (at 40.64 273.685 0))
  6475. (property "Footprint" "" (id 2) (at 40.64 269.24 0)
  6476. (effects (font (size 1.27 1.27)) hide)
  6477. )
  6478. (property "Datasheet" "~" (id 3) (at 40.64 269.24 0)
  6479. (effects (font (size 1.27 1.27)) hide)
  6480. )
  6481. (pin "1" (uuid d1a0d032-74a1-42fe-b820-2e37aec7d01f))
  6482. )
  6483. (symbol (lib_id "Device:R_Small") (at 45.085 220.345 180) (unit 1)
  6484. (in_bom yes) (on_board yes) (fields_autoplaced)
  6485. (uuid ae199770-c6d3-41f3-86db-5c7e90d42c2f)
  6486. (property "Reference" "R41" (id 0) (at 47.625 219.0749 0)
  6487. (effects (font (size 1.27 1.27)) (justify right))
  6488. )
  6489. (property "Value" "820" (id 1) (at 47.625 221.6149 0)
  6490. (effects (font (size 1.27 1.27)) (justify right))
  6491. )
  6492. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 45.085 220.345 0)
  6493. (effects (font (size 1.27 1.27)) hide)
  6494. )
  6495. (property "Datasheet" "~" (id 3) (at 45.085 220.345 0)
  6496. (effects (font (size 1.27 1.27)) hide)
  6497. )
  6498. (property "LCSC" "C23253" (id 4) (at 45.085 220.345 0)
  6499. (effects (font (size 1.27 1.27)) hide)
  6500. )
  6501. (pin "1" (uuid 04c90b53-bea7-4adf-8fbb-9cd1dc5bed77))
  6502. (pin "2" (uuid f07ec4d9-1e0f-4a6b-a92a-b27cd32b9938))
  6503. )
  6504. (symbol (lib_id "power:GND") (at 288.29 229.87 0) (unit 1)
  6505. (in_bom yes) (on_board yes)
  6506. (uuid af90e13a-53a7-4112-9309-6228a228b09f)
  6507. (property "Reference" "#PWR0101" (id 0) (at 288.29 236.22 0)
  6508. (effects (font (size 1.27 1.27)) hide)
  6509. )
  6510. (property "Value" "GND" (id 1) (at 288.417 234.2642 0))
  6511. (property "Footprint" "" (id 2) (at 288.29 229.87 0)
  6512. (effects (font (size 1.27 1.27)) hide)
  6513. )
  6514. (property "Datasheet" "" (id 3) (at 288.29 229.87 0)
  6515. (effects (font (size 1.27 1.27)) hide)
  6516. )
  6517. (pin "1" (uuid 90f8a971-a703-434a-aaff-ad01c60db4e2))
  6518. )
  6519. (symbol (lib_id "power:GND") (at 364.49 215.265 0) (unit 1)
  6520. (in_bom yes) (on_board yes)
  6521. (uuid b65b71b2-d24e-4285-af4a-87f668c75f43)
  6522. (property "Reference" "#PWR0126" (id 0) (at 364.49 221.615 0)
  6523. (effects (font (size 1.27 1.27)) hide)
  6524. )
  6525. (property "Value" "GND" (id 1) (at 364.617 219.6592 0))
  6526. (property "Footprint" "" (id 2) (at 364.49 215.265 0)
  6527. (effects (font (size 1.27 1.27)) hide)
  6528. )
  6529. (property "Datasheet" "" (id 3) (at 364.49 215.265 0)
  6530. (effects (font (size 1.27 1.27)) hide)
  6531. )
  6532. (pin "1" (uuid da997cbb-cdf0-4c13-a41f-e095f63603ad))
  6533. )
  6534. (symbol (lib_id "Regulator_Linear:AMS1117-3.3") (at 374.65 207.645 0) (unit 1)
  6535. (in_bom yes) (on_board yes)
  6536. (uuid b8a09ecb-7403-4e5c-934c-5086ab07d9cc)
  6537. (property "Reference" "U4" (id 0) (at 374.65 201.4982 0))
  6538. (property "Value" "AMS1117-3.3" (id 1) (at 374.65 203.8096 0))
  6539. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 374.65 202.565 0)
  6540. (effects (font (size 1.27 1.27)) hide)
  6541. )
  6542. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 377.19 213.995 0)
  6543. (effects (font (size 1.27 1.27)) hide)
  6544. )
  6545. (property "LCSC" "C351784" (id 4) (at 374.65 207.645 0)
  6546. (effects (font (size 1.27 1.27)) hide)
  6547. )
  6548. (pin "1" (uuid 84b0ea93-9fa4-4f62-9c47-785f814a8870))
  6549. (pin "2" (uuid 5f7c940c-8bf8-4101-97d9-f5c3a710f08b))
  6550. (pin "3" (uuid 6ee703fb-f478-4ce3-9414-3d57ddfb7817))
  6551. )
  6552. (symbol (lib_id "power:GND") (at 374.65 216.535 0) (unit 1)
  6553. (in_bom yes) (on_board yes)
  6554. (uuid b92a9f38-b83a-4c45-a0a0-65d11499ea0c)
  6555. (property "Reference" "#PWR0106" (id 0) (at 374.65 222.885 0)
  6556. (effects (font (size 1.27 1.27)) hide)
  6557. )
  6558. (property "Value" "GND" (id 1) (at 374.777 220.9292 0))
  6559. (property "Footprint" "" (id 2) (at 374.65 216.535 0)
  6560. (effects (font (size 1.27 1.27)) hide)
  6561. )
  6562. (property "Datasheet" "" (id 3) (at 374.65 216.535 0)
  6563. (effects (font (size 1.27 1.27)) hide)
  6564. )
  6565. (pin "1" (uuid 8e53d049-0a96-44f0-bfca-ee8a93349b3b))
  6566. )
  6567. (symbol (lib_id "power:GND") (at 26.67 236.22 0) (unit 1)
  6568. (in_bom yes) (on_board yes) (fields_autoplaced)
  6569. (uuid ba0d1c4c-9cea-4ffd-acc7-598d0413baec)
  6570. (property "Reference" "#PWR0134" (id 0) (at 26.67 242.57 0)
  6571. (effects (font (size 1.27 1.27)) hide)
  6572. )
  6573. (property "Value" "GND" (id 1) (at 26.67 240.665 0))
  6574. (property "Footprint" "" (id 2) (at 26.67 236.22 0)
  6575. (effects (font (size 1.27 1.27)) hide)
  6576. )
  6577. (property "Datasheet" "" (id 3) (at 26.67 236.22 0)
  6578. (effects (font (size 1.27 1.27)) hide)
  6579. )
  6580. (pin "1" (uuid c8c7f12a-b82c-44d5-abef-f0798133665f))
  6581. )
  6582. (symbol (lib_id "power:+5V") (at 397.51 154.94 0) (unit 1)
  6583. (in_bom yes) (on_board yes)
  6584. (uuid be4eb6e5-37c0-4f61-92c1-7774478d928a)
  6585. (property "Reference" "#PWR0128" (id 0) (at 397.51 158.75 0)
  6586. (effects (font (size 1.27 1.27)) hide)
  6587. )
  6588. (property "Value" "+5V" (id 1) (at 397.891 150.5458 0))
  6589. (property "Footprint" "" (id 2) (at 397.51 154.94 0)
  6590. (effects (font (size 1.27 1.27)) hide)
  6591. )
  6592. (property "Datasheet" "" (id 3) (at 397.51 154.94 0)
  6593. (effects (font (size 1.27 1.27)) hide)
  6594. )
  6595. (pin "1" (uuid 478679c4-acf0-4cd7-8d0f-db61730fac38))
  6596. )
  6597. (symbol (lib_id "Device:R") (at 271.78 111.76 0) (unit 1)
  6598. (in_bom yes) (on_board yes)
  6599. (uuid c091e5e4-72fb-4a6a-90d0-7fce2f19aa00)
  6600. (property "Reference" "R29" (id 0) (at 273.558 110.5916 0)
  6601. (effects (font (size 1.27 1.27)) (justify left))
  6602. )
  6603. (property "Value" "10K" (id 1) (at 273.558 112.903 0)
  6604. (effects (font (size 1.27 1.27)) (justify left))
  6605. )
  6606. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 270.002 111.76 90)
  6607. (effects (font (size 1.27 1.27)) hide)
  6608. )
  6609. (property "Datasheet" "~" (id 3) (at 271.78 111.76 0)
  6610. (effects (font (size 1.27 1.27)) hide)
  6611. )
  6612. (pin "1" (uuid 8870319e-567c-472b-bc36-b4ec86dedf26))
  6613. (pin "2" (uuid 5be27ed2-f55c-44a3-9b11-d91a00ae8904))
  6614. )
  6615. (symbol (lib_id "power:GND") (at 201.93 269.875 0) (unit 1)
  6616. (in_bom yes) (on_board yes) (fields_autoplaced)
  6617. (uuid c1e63709-cba3-4fb4-826e-68664bc6117a)
  6618. (property "Reference" "#PWR0109" (id 0) (at 201.93 276.225 0)
  6619. (effects (font (size 1.27 1.27)) hide)
  6620. )
  6621. (property "Value" "GND" (id 1) (at 201.93 275.59 0))
  6622. (property "Footprint" "" (id 2) (at 201.93 269.875 0)
  6623. (effects (font (size 1.27 1.27)) hide)
  6624. )
  6625. (property "Datasheet" "" (id 3) (at 201.93 269.875 0)
  6626. (effects (font (size 1.27 1.27)) hide)
  6627. )
  6628. (pin "1" (uuid ba050f8d-57d2-454d-a90e-c1f01b59fc53))
  6629. )
  6630. (symbol (lib_id "Device:C_Small") (at 168.91 263.525 0) (unit 1)
  6631. (in_bom yes) (on_board yes)
  6632. (uuid c5d6404f-b8ee-4df3-bd49-f565d6f8cf5d)
  6633. (property "Reference" "C8" (id 0) (at 170.18 261.62 0)
  6634. (effects (font (size 1.27 1.27)) (justify left))
  6635. )
  6636. (property "Value" "100nF" (id 1) (at 170.18 265.43 0)
  6637. (effects (font (size 1.27 1.27)) (justify left))
  6638. )
  6639. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 168.91 263.525 0)
  6640. (effects (font (size 1.27 1.27)) hide)
  6641. )
  6642. (property "Datasheet" "~" (id 3) (at 168.91 263.525 0)
  6643. (effects (font (size 1.27 1.27)) hide)
  6644. )
  6645. (property "LCSC" "C1525" (id 4) (at 168.91 263.525 0)
  6646. (effects (font (size 1.27 1.27)) hide)
  6647. )
  6648. (pin "1" (uuid aaf4e39c-bfb8-4a5e-8768-0414f0dd27ac))
  6649. (pin "2" (uuid 910b36f1-d8aa-42d9-9316-811a74319d8f))
  6650. )
  6651. (symbol (lib_id "power:GND") (at 393.7 215.265 0) (unit 1)
  6652. (in_bom yes) (on_board yes)
  6653. (uuid c6541983-53ea-4eea-8655-004909a1e46b)
  6654. (property "Reference" "#PWR0123" (id 0) (at 393.7 221.615 0)
  6655. (effects (font (size 1.27 1.27)) hide)
  6656. )
  6657. (property "Value" "GND" (id 1) (at 393.827 219.6592 0))
  6658. (property "Footprint" "" (id 2) (at 393.7 215.265 0)
  6659. (effects (font (size 1.27 1.27)) hide)
  6660. )
  6661. (property "Datasheet" "" (id 3) (at 393.7 215.265 0)
  6662. (effects (font (size 1.27 1.27)) hide)
  6663. )
  6664. (pin "1" (uuid 68b6c8c2-8a80-4806-a062-4d3f4074cbbc))
  6665. )
  6666. (symbol (lib_id "power:GND") (at 271.78 115.57 0) (unit 1)
  6667. (in_bom yes) (on_board yes)
  6668. (uuid c723cacb-3e9b-425d-9bd4-94f0128dd7fa)
  6669. (property "Reference" "#PWR0120" (id 0) (at 271.78 121.92 0)
  6670. (effects (font (size 1.27 1.27)) hide)
  6671. )
  6672. (property "Value" "GND" (id 1) (at 271.907 119.9642 0))
  6673. (property "Footprint" "" (id 2) (at 271.78 115.57 0)
  6674. (effects (font (size 1.27 1.27)) hide)
  6675. )
  6676. (property "Datasheet" "" (id 3) (at 271.78 115.57 0)
  6677. (effects (font (size 1.27 1.27)) hide)
  6678. )
  6679. (pin "1" (uuid 11ac0dae-ac5d-42e3-992a-8a8fe6c887ba))
  6680. )
  6681. (symbol (lib_id "Connector:Conn_01x03_Male") (at 66.04 227.33 0) (unit 1)
  6682. (in_bom yes) (on_board yes)
  6683. (uuid c971cdb6-6de2-4b99-ba88-1f484965dff5)
  6684. (property "Reference" "J2" (id 0) (at 68.7832 220.1926 0))
  6685. (property "Value" "Conn_01x03_Male" (id 1) (at 68.7832 222.504 0))
  6686. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 66.04 227.33 0)
  6687. (effects (font (size 1.27 1.27)) hide)
  6688. )
  6689. (property "Datasheet" "~" (id 3) (at 66.04 227.33 0)
  6690. (effects (font (size 1.27 1.27)) hide)
  6691. )
  6692. (pin "1" (uuid dfbaff46-4ca7-424c-bf30-9128d646960b))
  6693. (pin "2" (uuid 43f86c00-7dd7-4bd3-b24e-78d7c01dba1f))
  6694. (pin "3" (uuid 54245170-cc51-43e1-abea-326270d16107))
  6695. )
  6696. (symbol (lib_id "power:PWR_FLAG") (at 392.43 158.115 0) (unit 1)
  6697. (in_bom yes) (on_board yes) (fields_autoplaced)
  6698. (uuid ca0c45fe-9631-49d3-ab67-050c2a3ee13d)
  6699. (property "Reference" "#FLG0105" (id 0) (at 392.43 156.21 0)
  6700. (effects (font (size 1.27 1.27)) hide)
  6701. )
  6702. (property "Value" "PWR_FLAG" (id 1) (at 392.43 153.035 0))
  6703. (property "Footprint" "" (id 2) (at 392.43 158.115 0)
  6704. (effects (font (size 1.27 1.27)) hide)
  6705. )
  6706. (property "Datasheet" "~" (id 3) (at 392.43 158.115 0)
  6707. (effects (font (size 1.27 1.27)) hide)
  6708. )
  6709. (pin "1" (uuid 8ccdc04f-2b74-4d6c-8c6b-eaf464cd7c89))
  6710. )
  6711. (symbol (lib_id "ideatausb:HRO-TYPE-C-31-M-12") (at 273.05 210.82 0) (unit 1)
  6712. (in_bom yes) (on_board yes)
  6713. (uuid cda3a80d-425b-4489-819e-1104aa8ac815)
  6714. (property "Reference" "USB1" (id 0) (at 257.175 196.215 0)
  6715. (effects (font (size 1.524 1.524)))
  6716. )
  6717. (property "Value" "USB-C" (id 1) (at 266.7 193.675 0)
  6718. (effects (font (size 1.524 1.524)))
  6719. )
  6720. (property "Footprint" "ide-usb-pcb:HRO-TYPE-C-31-M-12" (id 2) (at 273.05 210.82 0)
  6721. (effects (font (size 1.524 1.524)) hide)
  6722. )
  6723. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf" (id 3) (at 273.05 210.82 0)
  6724. (effects (font (size 1.524 1.524)) hide)
  6725. )
  6726. (property "LCSC" "C165948" (id 4) (at 273.05 210.82 0)
  6727. (effects (font (size 1.27 1.27)) hide)
  6728. )
  6729. (pin "1" (uuid 976f4671-ded1-467a-b5fe-6d18fc74fab0))
  6730. (pin "10" (uuid a7022958-c959-4900-9ea6-f83fbeec2e92))
  6731. (pin "11" (uuid 58201ed4-34d0-4390-8156-79052f011b76))
  6732. (pin "12" (uuid 88af8581-bb29-4351-933e-320fc83cadc3))
  6733. (pin "13" (uuid 7e388874-5210-41b3-a689-08f7bd264eff))
  6734. (pin "2" (uuid 083eaae3-0aeb-4519-b099-52d21376e908))
  6735. (pin "3" (uuid 6d913f8b-fd9a-4c7e-8a38-3134638596c5))
  6736. (pin "4" (uuid 919ace81-e302-405b-8e8b-6e33b5440390))
  6737. (pin "5" (uuid 5fbf5ef4-d84b-4701-b2fd-8a16946421ca))
  6738. (pin "6" (uuid c5d1e7d5-dbb4-4cb4-a737-e651b5ed80fa))
  6739. (pin "7" (uuid f241b911-fd16-424b-80df-6430afadf678))
  6740. (pin "8" (uuid f0bae6ec-dccd-45cf-aea9-5d6fc6e3905a))
  6741. (pin "9" (uuid a910f383-fea4-438a-ba06-c69c73374277))
  6742. )
  6743. (symbol (lib_id "power:GND") (at 181.61 87.63 0) (unit 1)
  6744. (in_bom yes) (on_board yes) (fields_autoplaced)
  6745. (uuid cde50ded-7c38-4e50-83e6-b503c0d9488e)
  6746. (property "Reference" "#PWR0122" (id 0) (at 181.61 93.98 0)
  6747. (effects (font (size 1.27 1.27)) hide)
  6748. )
  6749. (property "Value" "GND" (id 1) (at 181.61 92.075 0))
  6750. (property "Footprint" "" (id 2) (at 181.61 87.63 0)
  6751. (effects (font (size 1.27 1.27)) hide)
  6752. )
  6753. (property "Datasheet" "" (id 3) (at 181.61 87.63 0)
  6754. (effects (font (size 1.27 1.27)) hide)
  6755. )
  6756. (pin "1" (uuid 3ded2bda-fc70-40a5-9082-cea724cd2c86))
  6757. )
  6758. (symbol (lib_id "Device:C_Small") (at 201.295 60.96 0) (unit 1)
  6759. (in_bom yes) (on_board yes)
  6760. (uuid cdf56e30-1f48-4345-b27e-b182f3c072e5)
  6761. (property "Reference" "C5" (id 0) (at 203.2 60.96 0)
  6762. (effects (font (size 1.27 1.27)) (justify left))
  6763. )
  6764. (property "Value" "2.2uF" (id 1) (at 201.93 62.865 0)
  6765. (effects (font (size 1.27 1.27)) (justify left))
  6766. )
  6767. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 201.295 60.96 0)
  6768. (effects (font (size 1.27 1.27)) hide)
  6769. )
  6770. (property "Datasheet" "~" (id 3) (at 201.295 60.96 0)
  6771. (effects (font (size 1.27 1.27)) hide)
  6772. )
  6773. (property "LCSC" "C23630" (id 4) (at 201.295 60.96 0)
  6774. (effects (font (size 1.27 1.27)) hide)
  6775. )
  6776. (pin "1" (uuid c11629b5-e055-4353-916d-ad4190e74538))
  6777. (pin "2" (uuid d386430a-b8ce-40ab-abde-fa82ef8f40f9))
  6778. )
  6779. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 363.22 24.13 0) (unit 1)
  6780. (in_bom yes) (on_board yes) (fields_autoplaced)
  6781. (uuid ced189f6-79a9-4896-b54a-aa444f96ce90)
  6782. (property "Reference" "H1" (id 0) (at 366.395 21.5899 0)
  6783. (effects (font (size 1.27 1.27)) (justify left))
  6784. )
  6785. (property "Value" "Hole" (id 1) (at 366.395 24.1299 0)
  6786. (effects (font (size 1.27 1.27)) (justify left))
  6787. )
  6788. (property "Footprint" "MountingHole:MountingHole_2.5mm_Pad_TopBottom" (id 2) (at 363.22 24.13 0)
  6789. (effects (font (size 1.27 1.27)) hide)
  6790. )
  6791. (property "Datasheet" "~" (id 3) (at 363.22 24.13 0)
  6792. (effects (font (size 1.27 1.27)) hide)
  6793. )
  6794. (property "LCSC" "NM" (id 4) (at 363.22 24.13 0)
  6795. (effects (font (size 1.27 1.27)) hide)
  6796. )
  6797. (pin "1" (uuid 278a6545-70e8-4d76-8016-3803a17084ec))
  6798. )
  6799. (symbol (lib_id "power:GND") (at 116.205 273.05 0) (unit 1)
  6800. (in_bom yes) (on_board yes) (fields_autoplaced)
  6801. (uuid d02ff1b6-a67d-40b8-8e46-50d8cbe9bcfa)
  6802. (property "Reference" "#PWR0113" (id 0) (at 116.205 279.4 0)
  6803. (effects (font (size 1.27 1.27)) hide)
  6804. )
  6805. (property "Value" "GND" (id 1) (at 116.205 278.13 0))
  6806. (property "Footprint" "" (id 2) (at 116.205 273.05 0)
  6807. (effects (font (size 1.27 1.27)) hide)
  6808. )
  6809. (property "Datasheet" "" (id 3) (at 116.205 273.05 0)
  6810. (effects (font (size 1.27 1.27)) hide)
  6811. )
  6812. (pin "1" (uuid e0842b6b-3766-43e8-ae6f-5a4d8db546b2))
  6813. )
  6814. (symbol (lib_id "Device:C_Small") (at 180.34 262.255 0) (unit 1)
  6815. (in_bom yes) (on_board yes)
  6816. (uuid d064ccd6-e377-47ce-85cf-15374facfa16)
  6817. (property "Reference" "C10" (id 0) (at 182.245 260.35 0)
  6818. (effects (font (size 1.27 1.27)) (justify left))
  6819. )
  6820. (property "Value" "100nF" (id 1) (at 182.245 264.16 0)
  6821. (effects (font (size 1.27 1.27)) (justify left))
  6822. )
  6823. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 180.34 262.255 0)
  6824. (effects (font (size 1.27 1.27)) hide)
  6825. )
  6826. (property "Datasheet" "~" (id 3) (at 180.34 262.255 0)
  6827. (effects (font (size 1.27 1.27)) hide)
  6828. )
  6829. (property "LCSC" "C1525" (id 4) (at 180.34 262.255 0)
  6830. (effects (font (size 1.27 1.27)) hide)
  6831. )
  6832. (pin "1" (uuid cbe2c7d5-a54a-460f-bb57-e230ea4ae2a0))
  6833. (pin "2" (uuid 31018002-c089-473b-94c1-d311f6759c40))
  6834. )
  6835. (symbol (lib_id "Device:LED") (at 45.085 227.965 90) (unit 1)
  6836. (in_bom yes) (on_board yes) (fields_autoplaced)
  6837. (uuid d27b5eb4-5e8f-4c68-bf62-e8af5317e07a)
  6838. (property "Reference" "D4" (id 0) (at 48.26 228.2824 90)
  6839. (effects (font (size 1.27 1.27)) (justify right))
  6840. )
  6841. (property "Value" "LED" (id 1) (at 48.26 230.8224 90)
  6842. (effects (font (size 1.27 1.27)) (justify right))
  6843. )
  6844. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 45.085 227.965 0)
  6845. (effects (font (size 1.27 1.27)) hide)
  6846. )
  6847. (property "Datasheet" "~" (id 3) (at 45.085 227.965 0)
  6848. (effects (font (size 1.27 1.27)) hide)
  6849. )
  6850. (property "LCSC" "C72043" (id 4) (at 45.085 227.965 90)
  6851. (effects (font (size 1.27 1.27)) hide)
  6852. )
  6853. (pin "1" (uuid 65797b4e-b9ed-46c9-ae24-18c1801d4ffb))
  6854. (pin "2" (uuid a831077b-bb9a-4142-ad4b-8c5168cdcc60))
  6855. )
  6856. (symbol (lib_id "Oscillator:ASCO") (at 181.61 78.74 0) (unit 1)
  6857. (in_bom yes) (on_board yes)
  6858. (uuid d51dcd9b-36aa-4a5f-abd8-baa83202f0b0)
  6859. (property "Reference" "X1" (id 0) (at 170.3324 77.5716 0)
  6860. (effects (font (size 1.27 1.27)) (justify right))
  6861. )
  6862. (property "Value" "16MHz" (id 1) (at 170.3324 79.883 0)
  6863. (effects (font (size 1.27 1.27)) (justify right))
  6864. )
  6865. (property "Footprint" "ide-usb-pcb:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" (id 2) (at 184.15 87.63 0)
  6866. (effects (font (size 1.27 1.27)) hide)
  6867. )
  6868. (property "Datasheet" "https://abracon.com/Oscillators/ASCO.pdf" (id 3) (at 175.895 75.565 0)
  6869. (effects (font (size 1.27 1.27)) hide)
  6870. )
  6871. (property "MOUSER" "520-3225MV-160-BNT" (id 4) (at 181.61 78.74 0)
  6872. (effects (font (size 1.27 1.27)) hide)
  6873. )
  6874. (property "LCSC" "C252336" (id 5) (at 181.61 78.74 0)
  6875. (effects (font (size 1.27 1.27)) hide)
  6876. )
  6877. (pin "1" (uuid a88b9bf4-f110-4bdf-be00-3946d988f996))
  6878. (pin "2" (uuid f76a4ddd-82bf-4b67-9c72-9db7ef8ff091))
  6879. (pin "3" (uuid b596710f-9a3a-4aed-b134-5a304aec5b08))
  6880. (pin "4" (uuid 0f15d3b7-c39f-4551-976e-b1a91979b397))
  6881. )
  6882. (symbol (lib_id "Device:C_Small") (at 289.56 262.255 0) (unit 1)
  6883. (in_bom yes) (on_board yes)
  6884. (uuid d8d2eee3-33da-473d-893d-5aefe2478fb6)
  6885. (property "Reference" "C20" (id 0) (at 291.465 260.985 0)
  6886. (effects (font (size 1.27 1.27)) (justify left))
  6887. )
  6888. (property "Value" "100nF" (id 1) (at 291.465 264.16 0)
  6889. (effects (font (size 1.27 1.27)) (justify left))
  6890. )
  6891. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 289.56 262.255 0)
  6892. (effects (font (size 1.27 1.27)) hide)
  6893. )
  6894. (property "Datasheet" "~" (id 3) (at 289.56 262.255 0)
  6895. (effects (font (size 1.27 1.27)) hide)
  6896. )
  6897. (property "LCSC" "C1525" (id 4) (at 289.56 262.255 0)
  6898. (effects (font (size 1.27 1.27)) hide)
  6899. )
  6900. (pin "1" (uuid 02833687-4f59-4f11-b399-82a8e0b03248))
  6901. (pin "2" (uuid a1b8091b-b411-4e44-9464-0b8b6f8ac3a2))
  6902. )
  6903. (symbol (lib_id "power:GND") (at 236.22 179.07 0) (unit 1)
  6904. (in_bom yes) (on_board yes) (fields_autoplaced)
  6905. (uuid ddd30f3a-6267-4f9b-813e-c5920527758e)
  6906. (property "Reference" "#PWR0133" (id 0) (at 236.22 185.42 0)
  6907. (effects (font (size 1.27 1.27)) hide)
  6908. )
  6909. (property "Value" "GND" (id 1) (at 236.22 183.515 0))
  6910. (property "Footprint" "" (id 2) (at 236.22 179.07 0)
  6911. (effects (font (size 1.27 1.27)) hide)
  6912. )
  6913. (property "Datasheet" "" (id 3) (at 236.22 179.07 0)
  6914. (effects (font (size 1.27 1.27)) hide)
  6915. )
  6916. (pin "1" (uuid bd086f88-8f15-4eff-b955-3302ed934457))
  6917. )
  6918. (symbol (lib_id "Device:R") (at 73.66 118.745 270) (unit 1)
  6919. (in_bom yes) (on_board yes)
  6920. (uuid deca9bab-7e1d-4902-9773-c84aba213457)
  6921. (property "Reference" "R32" (id 0) (at 72.39 118.745 90)
  6922. (effects (font (size 0.7874 0.7874)))
  6923. )
  6924. (property "Value" "33" (id 1) (at 74.93 118.745 90)
  6925. (effects (font (size 0.7874 0.7874)))
  6926. )
  6927. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 116.967 90)
  6928. (effects (font (size 1.27 1.27)) hide)
  6929. )
  6930. (property "Datasheet" "~" (id 3) (at 73.66 118.745 0)
  6931. (effects (font (size 1.27 1.27)) hide)
  6932. )
  6933. (pin "1" (uuid 60bd116f-f0ee-4ac1-b580-96c1097cdabf))
  6934. (pin "2" (uuid 3ee8456c-17a7-4310-9b95-f95054672415))
  6935. )
  6936. (symbol (lib_id "Device:C_Small") (at 213.36 262.255 0) (unit 1)
  6937. (in_bom yes) (on_board yes) (fields_autoplaced)
  6938. (uuid e082d176-a4f2-4aeb-9ec7-461a7dfab22d)
  6939. (property "Reference" "C13" (id 0) (at 216.535 260.9912 0)
  6940. (effects (font (size 1.27 1.27)) (justify left))
  6941. )
  6942. (property "Value" "100nF" (id 1) (at 216.535 263.5312 0)
  6943. (effects (font (size 1.27 1.27)) (justify left))
  6944. )
  6945. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 213.36 262.255 0)
  6946. (effects (font (size 1.27 1.27)) hide)
  6947. )
  6948. (property "Datasheet" "~" (id 3) (at 213.36 262.255 0)
  6949. (effects (font (size 1.27 1.27)) hide)
  6950. )
  6951. (property "LCSC" "C1525" (id 4) (at 213.36 262.255 0)
  6952. (effects (font (size 1.27 1.27)) hide)
  6953. )
  6954. (pin "1" (uuid e43454c7-e981-4bde-b232-2ee6e8ea145d))
  6955. (pin "2" (uuid bea21da7-ff6e-45c8-a007-ebd29816d35e))
  6956. )
  6957. (symbol (lib_id "Device:D_Schottky") (at 387.35 182.245 180) (unit 1)
  6958. (in_bom yes) (on_board yes)
  6959. (uuid e0923425-1426-4ea8-92cf-ed03a9b50d35)
  6960. (property "Reference" "D1" (id 0) (at 386.1816 180.213 0)
  6961. (effects (font (size 1.27 1.27)) (justify right))
  6962. )
  6963. (property "Value" "1N5819W" (id 1) (at 384.81 184.785 0)
  6964. (effects (font (size 1.27 1.27)) (justify right))
  6965. )
  6966. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 387.35 182.245 0)
  6967. (effects (font (size 1.27 1.27)) hide)
  6968. )
  6969. (property "Datasheet" "~" (id 3) (at 387.35 182.245 0)
  6970. (effects (font (size 1.27 1.27)) hide)
  6971. )
  6972. (property "LCSC" "C963381" (id 4) (at 387.35 182.245 90)
  6973. (effects (font (size 1.27 1.27)) hide)
  6974. )
  6975. (pin "1" (uuid 6b12e7af-958f-4a56-a9d7-1244004a77f2))
  6976. (pin "2" (uuid d5762777-e99a-43eb-9d18-999dedfb7e16))
  6977. )
  6978. (symbol (lib_id "Device:R") (at 73.66 133.985 270) (unit 1)
  6979. (in_bom yes) (on_board yes)
  6980. (uuid e0cf5bf1-a43d-4afa-ba06-e78f28829f38)
  6981. (property "Reference" "R35" (id 0) (at 72.39 133.985 90)
  6982. (effects (font (size 0.7874 0.7874)))
  6983. )
  6984. (property "Value" "33" (id 1) (at 74.93 133.985 90)
  6985. (effects (font (size 0.7874 0.7874)))
  6986. )
  6987. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 132.207 90)
  6988. (effects (font (size 1.27 1.27)) hide)
  6989. )
  6990. (property "Datasheet" "~" (id 3) (at 73.66 133.985 0)
  6991. (effects (font (size 1.27 1.27)) hide)
  6992. )
  6993. (pin "1" (uuid 5327b7c6-82ac-4f91-9057-b68d6adfc0eb))
  6994. (pin "2" (uuid 3de17d07-7131-4849-a37d-150911bd7b86))
  6995. )
  6996. (symbol (lib_id "power:GND") (at 32.385 269.24 0) (unit 1)
  6997. (in_bom yes) (on_board yes) (fields_autoplaced)
  6998. (uuid e15619d1-ef44-4730-b39c-2157ef5979b6)
  6999. (property "Reference" "#PWR0132" (id 0) (at 32.385 275.59 0)
  7000. (effects (font (size 1.27 1.27)) hide)
  7001. )
  7002. (property "Value" "GND" (id 1) (at 32.385 273.685 0))
  7003. (property "Footprint" "" (id 2) (at 32.385 269.24 0)
  7004. (effects (font (size 1.27 1.27)) hide)
  7005. )
  7006. (property "Datasheet" "" (id 3) (at 32.385 269.24 0)
  7007. (effects (font (size 1.27 1.27)) hide)
  7008. )
  7009. (pin "1" (uuid 35e00503-509e-47bb-8f3d-813b29fd7b28))
  7010. )
  7011. (symbol (lib_id "Device:Polyfuse") (at 302.26 199.39 270) (unit 1)
  7012. (in_bom yes) (on_board yes)
  7013. (uuid e371f472-b1c0-4731-b54c-c9eb05804553)
  7014. (property "Reference" "F1" (id 0) (at 302.26 196.85 90))
  7015. (property "Value" "Polyfuse 1.8A" (id 1) (at 302.26 201.93 90))
  7016. (property "Footprint" "ide-usb-pcb:Fuse_1206_3216Metric" (id 2) (at 297.18 200.66 0)
  7017. (effects (font (size 1.27 1.27)) (justify left) hide)
  7018. )
  7019. (property "Datasheet" "~" (id 3) (at 302.26 199.39 0)
  7020. (effects (font (size 1.27 1.27)) hide)
  7021. )
  7022. (property "LCSC" "C70082" (id 4) (at 264.16 165.1 0)
  7023. (effects (font (size 1.27 1.27)) hide)
  7024. )
  7025. (property "MOUSER" "" (id 5) (at 264.16 165.1 0)
  7026. (effects (font (size 1.27 1.27)) hide)
  7027. )
  7028. (property "MPN" "" (id 6) (at 264.16 165.1 0)
  7029. (effects (font (size 1.27 1.27)) hide)
  7030. )
  7031. (pin "1" (uuid a156955f-59ec-4a5f-a792-b7e1b73251cb))
  7032. (pin "2" (uuid a9e82973-7c14-46b9-865f-1427166ef234))
  7033. )
  7034. (symbol (lib_id "Device:R") (at 73.66 123.825 270) (unit 1)
  7035. (in_bom yes) (on_board yes)
  7036. (uuid e568b643-2293-4d28-9d60-183ed1793f3f)
  7037. (property "Reference" "R34" (id 0) (at 72.39 123.825 90)
  7038. (effects (font (size 0.7874 0.7874)))
  7039. )
  7040. (property "Value" "33" (id 1) (at 74.93 123.825 90)
  7041. (effects (font (size 0.7874 0.7874)))
  7042. )
  7043. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 73.66 122.047 90)
  7044. (effects (font (size 1.27 1.27)) hide)
  7045. )
  7046. (property "Datasheet" "~" (id 3) (at 73.66 123.825 0)
  7047. (effects (font (size 1.27 1.27)) hide)
  7048. )
  7049. (pin "1" (uuid d32c2bc7-55f8-4c1c-9622-36ea522cff38))
  7050. (pin "2" (uuid cfc5cb3f-2ff7-4cc2-b908-450ccaaf8cba))
  7051. )
  7052. (symbol (lib_id "power:PWR_FLAG") (at 23.495 267.97 180) (unit 1)
  7053. (in_bom yes) (on_board yes) (fields_autoplaced)
  7054. (uuid e88cd9e7-729e-447c-a375-dd2913d6cbac)
  7055. (property "Reference" "#FLG0103" (id 0) (at 23.495 269.875 0)
  7056. (effects (font (size 1.27 1.27)) hide)
  7057. )
  7058. (property "Value" "PWR_FLAG" (id 1) (at 23.495 273.05 0))
  7059. (property "Footprint" "" (id 2) (at 23.495 267.97 0)
  7060. (effects (font (size 1.27 1.27)) hide)
  7061. )
  7062. (property "Datasheet" "~" (id 3) (at 23.495 267.97 0)
  7063. (effects (font (size 1.27 1.27)) hide)
  7064. )
  7065. (pin "1" (uuid 4518741f-d1b3-47ae-89a6-f71b563acc2f))
  7066. )
  7067. (symbol (lib_id "Device:C_Small") (at 188.595 46.99 0) (unit 1)
  7068. (in_bom yes) (on_board yes) (fields_autoplaced)
  7069. (uuid ed765897-9ec8-455f-a6d9-132f679454a2)
  7070. (property "Reference" "C2" (id 0) (at 191.77 45.7262 0)
  7071. (effects (font (size 1.27 1.27)) (justify left))
  7072. )
  7073. (property "Value" "100nF" (id 1) (at 191.77 48.2662 0)
  7074. (effects (font (size 1.27 1.27)) (justify left))
  7075. )
  7076. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 188.595 46.99 0)
  7077. (effects (font (size 1.27 1.27)) hide)
  7078. )
  7079. (property "Datasheet" "~" (id 3) (at 188.595 46.99 0)
  7080. (effects (font (size 1.27 1.27)) hide)
  7081. )
  7082. (property "LCSC" "C1525" (id 4) (at 188.595 46.99 0)
  7083. (effects (font (size 1.27 1.27)) hide)
  7084. )
  7085. (pin "1" (uuid c749f7b0-dd44-43aa-85a4-bd1f0013b32a))
  7086. (pin "2" (uuid d7448e23-ee56-4f88-b951-2c55646eef2a))
  7087. )
  7088. (symbol (lib_id "Device:R") (at 93.98 123.825 270) (unit 1)
  7089. (in_bom yes) (on_board yes)
  7090. (uuid f7dbde3b-c8ff-4243-a2a2-162a4cb79579)
  7091. (property "Reference" "R37" (id 0) (at 92.71 123.825 90)
  7092. (effects (font (size 0.7874 0.7874)))
  7093. )
  7094. (property "Value" "33" (id 1) (at 95.25 123.825 90)
  7095. (effects (font (size 0.7874 0.7874)))
  7096. )
  7097. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 122.047 90)
  7098. (effects (font (size 1.27 1.27)) hide)
  7099. )
  7100. (property "Datasheet" "~" (id 3) (at 93.98 123.825 0)
  7101. (effects (font (size 1.27 1.27)) hide)
  7102. )
  7103. (pin "1" (uuid 7081fa96-b67b-4721-b24f-0d2ae0872b40))
  7104. (pin "2" (uuid b9dbf16c-f6b1-4e1d-8457-55cccb42d8b3))
  7105. )
  7106. (symbol (lib_id "power:GND") (at 180.34 269.875 0) (unit 1)
  7107. (in_bom yes) (on_board yes) (fields_autoplaced)
  7108. (uuid faf67e16-7946-4309-a620-40d5168d3ad1)
  7109. (property "Reference" "#PWR0110" (id 0) (at 180.34 276.225 0)
  7110. (effects (font (size 1.27 1.27)) hide)
  7111. )
  7112. (property "Value" "GND" (id 1) (at 180.34 275.59 0))
  7113. (property "Footprint" "" (id 2) (at 180.34 269.875 0)
  7114. (effects (font (size 1.27 1.27)) hide)
  7115. )
  7116. (property "Datasheet" "" (id 3) (at 180.34 269.875 0)
  7117. (effects (font (size 1.27 1.27)) hide)
  7118. )
  7119. (pin "1" (uuid ef51ff6f-6ab5-4694-96fa-be65959c56c8))
  7120. )
  7121. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 393.065 23.495 0) (unit 1)
  7122. (in_bom yes) (on_board yes) (fields_autoplaced)
  7123. (uuid fb934871-c002-45c9-8abe-0b280e17fa85)
  7124. (property "Reference" "H4" (id 0) (at 396.24 20.9549 0)
  7125. (effects (font (size 1.27 1.27)) (justify left))
  7126. )
  7127. (property "Value" "Hole" (id 1) (at 396.24 23.4949 0)
  7128. (effects (font (size 1.27 1.27)) (justify left))
  7129. )
  7130. (property "Footprint" "MountingHole:MountingHole_2.5mm_Pad_TopBottom" (id 2) (at 393.065 23.495 0)
  7131. (effects (font (size 1.27 1.27)) hide)
  7132. )
  7133. (property "Datasheet" "~" (id 3) (at 393.065 23.495 0)
  7134. (effects (font (size 1.27 1.27)) hide)
  7135. )
  7136. (property "LCSC" "NM" (id 4) (at 393.065 23.495 0)
  7137. (effects (font (size 1.27 1.27)) hide)
  7138. )
  7139. (pin "1" (uuid 37c33cf4-a9dd-487c-b3d9-045e503dc7b2))
  7140. )
  7141. (sheet_instances
  7142. (path "/" (page "1"))
  7143. )
  7144. (symbol_instances
  7145. (path "/020d5672-bc8f-47a2-9a27-6e35bccde6bd"
  7146. (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
  7147. )
  7148. (path "/ad457aea-d666-4e6f-a9d2-e753a8da1e4a"
  7149. (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
  7150. )
  7151. (path "/e88cd9e7-729e-447c-a375-dd2913d6cbac"
  7152. (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
  7153. )
  7154. (path "/4766588c-7d57-44f0-80f4-488c751860c2"
  7155. (reference "#FLG0104") (unit 1) (value "PWR_FLAG") (footprint "")
  7156. )
  7157. (path "/ca0c45fe-9631-49d3-ab67-050c2a3ee13d"
  7158. (reference "#FLG0105") (unit 1) (value "PWR_FLAG") (footprint "")
  7159. )
  7160. (path "/483f611e-b17e-4a93-ab2a-2b4d480577cb"
  7161. (reference "#FLG0106") (unit 1) (value "PWR_FLAG") (footprint "")
  7162. )
  7163. (path "/00000000-0000-0000-0000-000060e8f739"
  7164. (reference "#PWR01") (unit 1) (value "GND") (footprint "")
  7165. )
  7166. (path "/00000000-0000-0000-0000-000060e80dde"
  7167. (reference "#PWR02") (unit 1) (value "+5V") (footprint "")
  7168. )
  7169. (path "/00000000-0000-0000-0000-000060e82df1"
  7170. (reference "#PWR03") (unit 1) (value "+5V") (footprint "")
  7171. )
  7172. (path "/00000000-0000-0000-0000-000060e7bc45"
  7173. (reference "#PWR04") (unit 1) (value "GND") (footprint "")
  7174. )
  7175. (path "/00000000-0000-0000-0000-000060e7f711"
  7176. (reference "#PWR06") (unit 1) (value "GND") (footprint "")
  7177. )
  7178. (path "/af90e13a-53a7-4112-9309-6228a228b09f"
  7179. (reference "#PWR0101") (unit 1) (value "GND") (footprint "")
  7180. )
  7181. (path "/630cf9d5-9e00-4716-969b-8fb61e056ad7"
  7182. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  7183. )
  7184. (path "/61fdada0-66ff-431a-bf6c-27a18c708d34"
  7185. (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
  7186. )
  7187. (path "/8dc50161-3d49-4977-82f4-90ce192f4365"
  7188. (reference "#PWR0104") (unit 1) (value "+3V3") (footprint "")
  7189. )
  7190. (path "/187635d5-d4b3-4198-9b60-b9401feb6129"
  7191. (reference "#PWR0105") (unit 1) (value "+3V3") (footprint "")
  7192. )
  7193. (path "/b92a9f38-b83a-4c45-a0a0-65d11499ea0c"
  7194. (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
  7195. )
  7196. (path "/4a634174-a8f8-4d49-a1e0-4742090203a8"
  7197. (reference "#PWR0107") (unit 1) (value "+5V") (footprint "")
  7198. )
  7199. (path "/1e5a7d8f-1578-4681-ac81-7dea53d10d53"
  7200. (reference "#PWR0108") (unit 1) (value "+3V3") (footprint "")
  7201. )
  7202. (path "/c1e63709-cba3-4fb4-826e-68664bc6117a"
  7203. (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
  7204. )
  7205. (path "/faf67e16-7946-4309-a620-40d5168d3ad1"
  7206. (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
  7207. )
  7208. (path "/0a110990-cbeb-44f8-a264-27f3bd0cfce6"
  7209. (reference "#PWR0111") (unit 1) (value "+3V3") (footprint "")
  7210. )
  7211. (path "/407fefad-4f1d-4a79-877d-d2fcc67aa8fb"
  7212. (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
  7213. )
  7214. (path "/d02ff1b6-a67d-40b8-8e46-50d8cbe9bcfa"
  7215. (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
  7216. )
  7217. (path "/32382a27-b86d-44b4-aa9b-71df85d9f0f8"
  7218. (reference "#PWR0114") (unit 1) (value "GND") (footprint "")
  7219. )
  7220. (path "/867b1bbd-e4f2-4c37-a6bb-000fabf5c707"
  7221. (reference "#PWR0115") (unit 1) (value "+3V3") (footprint "")
  7222. )
  7223. (path "/87904378-c2a9-4373-899e-7165676725d9"
  7224. (reference "#PWR0116") (unit 1) (value "+3V3") (footprint "")
  7225. )
  7226. (path "/74236dbc-1a47-47cb-be92-fa94311eb2b0"
  7227. (reference "#PWR0117") (unit 1) (value "GND") (footprint "")
  7228. )
  7229. (path "/8e083179-df9b-43d3-a6f7-669a7e3b9c1c"
  7230. (reference "#PWR0118") (unit 1) (value "GND") (footprint "")
  7231. )
  7232. (path "/682f076a-6198-4dc2-9114-98174e37470c"
  7233. (reference "#PWR0119") (unit 1) (value "GND") (footprint "")
  7234. )
  7235. (path "/c723cacb-3e9b-425d-9bd4-94f0128dd7fa"
  7236. (reference "#PWR0120") (unit 1) (value "GND") (footprint "")
  7237. )
  7238. (path "/5fa6cf9c-cfcd-49f5-85ce-edcf2630b654"
  7239. (reference "#PWR0121") (unit 1) (value "GND") (footprint "")
  7240. )
  7241. (path "/cde50ded-7c38-4e50-83e6-b503c0d9488e"
  7242. (reference "#PWR0122") (unit 1) (value "GND") (footprint "")
  7243. )
  7244. (path "/c6541983-53ea-4eea-8655-004909a1e46b"
  7245. (reference "#PWR0123") (unit 1) (value "GND") (footprint "")
  7246. )
  7247. (path "/33925438-6016-4dbb-8f66-526d9ce0fe62"
  7248. (reference "#PWR0124") (unit 1) (value "+3V3") (footprint "")
  7249. )
  7250. (path "/085064c1-71a2-481d-b031-b5c037c67cd6"
  7251. (reference "#PWR0125") (unit 1) (value "+5V") (footprint "")
  7252. )
  7253. (path "/b65b71b2-d24e-4285-af4a-87f668c75f43"
  7254. (reference "#PWR0126") (unit 1) (value "GND") (footprint "")
  7255. )
  7256. (path "/4397fb32-90f2-4cc0-b1b1-3b667cac8c05"
  7257. (reference "#PWR0127") (unit 1) (value "GND") (footprint "")
  7258. )
  7259. (path "/be4eb6e5-37c0-4f61-92c1-7774478d928a"
  7260. (reference "#PWR0128") (unit 1) (value "+5V") (footprint "")
  7261. )
  7262. (path "/6daba38a-181e-4863-9e44-c17ef09503c4"
  7263. (reference "#PWR0129") (unit 1) (value "+5V") (footprint "")
  7264. )
  7265. (path "/523201ae-5d1c-45c9-b4f0-9c17c2a0717e"
  7266. (reference "#PWR0130") (unit 1) (value "GND") (footprint "")
  7267. )
  7268. (path "/71087e77-0442-4c9b-a379-dbfbf6149d19"
  7269. (reference "#PWR0131") (unit 1) (value "+3V3") (footprint "")
  7270. )
  7271. (path "/e15619d1-ef44-4730-b39c-2157ef5979b6"
  7272. (reference "#PWR0132") (unit 1) (value "GND") (footprint "")
  7273. )
  7274. (path "/ddd30f3a-6267-4f9b-813e-c5920527758e"
  7275. (reference "#PWR0133") (unit 1) (value "GND") (footprint "")
  7276. )
  7277. (path "/ba0d1c4c-9cea-4ffd-acc7-598d0413baec"
  7278. (reference "#PWR0134") (unit 1) (value "GND") (footprint "")
  7279. )
  7280. (path "/3f548575-99f3-4d07-88a3-17a728d139c4"
  7281. (reference "#PWR0135") (unit 1) (value "GND") (footprint "")
  7282. )
  7283. (path "/97bc5da1-0c5f-40e8-88fd-0be83a786030"
  7284. (reference "#PWR0136") (unit 1) (value "+3V3") (footprint "")
  7285. )
  7286. (path "/9366e1ee-d01f-4e32-9e8a-4015c3f4e62a"
  7287. (reference "#PWR0137") (unit 1) (value "+3V3") (footprint "")
  7288. )
  7289. (path "/ed765897-9ec8-455f-a6d9-132f679454a2"
  7290. (reference "C2") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7291. )
  7292. (path "/396ee12c-2683-458e-b687-4514c6aea57e"
  7293. (reference "C4") (unit 1) (value "2.2uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7294. )
  7295. (path "/cdf56e30-1f48-4345-b27e-b182f3c072e5"
  7296. (reference "C5") (unit 1) (value "2.2uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7297. )
  7298. (path "/92d2dc88-6aa0-476b-ac70-de241756ecda"
  7299. (reference "C6") (unit 1) (value "12pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7300. )
  7301. (path "/a1bb4343-eeb9-4427-a69e-deccb1c1fbe5"
  7302. (reference "C7") (unit 1) (value "12pF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7303. )
  7304. (path "/c5d6404f-b8ee-4df3-bd49-f565d6f8cf5d"
  7305. (reference "C8") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7306. )
  7307. (path "/85c529b3-8cd9-4199-b731-9b4ebca58f89"
  7308. (reference "C9") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7309. )
  7310. (path "/d064ccd6-e377-47ce-85cf-15374facfa16"
  7311. (reference "C10") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7312. )
  7313. (path "/56cd3a0f-8da1-439b-bdf9-0a204c4aabf4"
  7314. (reference "C11") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7315. )
  7316. (path "/317e459a-7132-405d-a3c8-e343f432e431"
  7317. (reference "C12") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7318. )
  7319. (path "/e082d176-a4f2-4aeb-9ec7-461a7dfab22d"
  7320. (reference "C13") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7321. )
  7322. (path "/1dfc446d-e7c6-40c8-8a75-1960c75efead"
  7323. (reference "C14") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7324. )
  7325. (path "/9de39763-37c9-4941-bc2b-e00664fbd497"
  7326. (reference "C15") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7327. )
  7328. (path "/64cd87a3-cf03-44e1-8172-13e877a5f532"
  7329. (reference "C16") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7330. )
  7331. (path "/7a7d20e9-8e97-4193-9d99-39c261138de8"
  7332. (reference "C17") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7333. )
  7334. (path "/4d17f8dd-bd82-45e1-8189-ea3c42159a2f"
  7335. (reference "C18") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7336. )
  7337. (path "/782f676c-96cd-4743-b15d-fd696eba8709"
  7338. (reference "C19") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7339. )
  7340. (path "/d8d2eee3-33da-473d-893d-5aefe2478fb6"
  7341. (reference "C20") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7342. )
  7343. (path "/a9b94f29-e28c-424e-994a-512d37b1d6c8"
  7344. (reference "C21") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7345. )
  7346. (path "/9e04d1df-74b8-41fb-a2f0-c81204557af3"
  7347. (reference "C22") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7348. )
  7349. (path "/781b9a50-40b2-4708-8bcf-a848bd912438"
  7350. (reference "C23") (unit 1) (value "47uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7351. )
  7352. (path "/1fccb4e8-b918-48bc-869b-c13b6de6645a"
  7353. (reference "C24") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7354. )
  7355. (path "/e0923425-1426-4ea8-92cf-ed03a9b50d35"
  7356. (reference "D1") (unit 1) (value "1N5819W") (footprint "Diode_SMD:D_SOD-123")
  7357. )
  7358. (path "/5d7b9ba8-8cd8-4861-a21a-5bbf19361f12"
  7359. (reference "D2") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
  7360. )
  7361. (path "/acc0af6d-7dc9-4fd6-8ac0-4dee22dfdf72"
  7362. (reference "D3") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
  7363. )
  7364. (path "/d27b5eb4-5e8f-4c68-bf62-e8af5317e07a"
  7365. (reference "D4") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
  7366. )
  7367. (path "/e371f472-b1c0-4731-b54c-c9eb05804553"
  7368. (reference "F1") (unit 1) (value "Polyfuse 1.8A") (footprint "ide-usb-pcb:Fuse_1206_3216Metric")
  7369. )
  7370. (path "/ced189f6-79a9-4896-b54a-aa444f96ce90"
  7371. (reference "H1") (unit 1) (value "Hole") (footprint "MountingHole:MountingHole_2.5mm_Pad_TopBottom")
  7372. )
  7373. (path "/182354f9-6d1d-416a-9267-137fa7ddcc78"
  7374. (reference "H2") (unit 1) (value "Hole") (footprint "MountingHole:MountingHole_2.5mm_Pad_TopBottom")
  7375. )
  7376. (path "/9cff1008-130f-4385-b3e7-48f89b907cad"
  7377. (reference "H3") (unit 1) (value "Hole") (footprint "MountingHole:MountingHole_2.5mm_Pad_TopBottom")
  7378. )
  7379. (path "/fb934871-c002-45c9-8abe-0b280e17fa85"
  7380. (reference "H4") (unit 1) (value "Hole") (footprint "MountingHole:MountingHole_2.5mm_Pad_TopBottom")
  7381. )
  7382. (path "/00000000-0000-0000-0000-000060e3d664"
  7383. (reference "J1") (unit 1) (value "Conn_02x20_Odd_Even") (footprint "Connector_IDC:IDC-Header_2x20_P2.54mm_Vertical")
  7384. )
  7385. (path "/c971cdb6-6de2-4b99-ba88-1f484965dff5"
  7386. (reference "J2") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical")
  7387. )
  7388. (path "/70125c4c-f09c-46a1-affb-24b14c1e8083"
  7389. (reference "J3") (unit 1) (value "Conn_01x04_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical")
  7390. )
  7391. (path "/8c7cae08-f348-4593-9400-8dc411de201f"
  7392. (reference "J4") (unit 1) (value "Conn_02x03_Odd_Even") (footprint "Connector:Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical")
  7393. )
  7394. (path "/00000000-0000-0000-0000-000060eebdad"
  7395. (reference "J5") (unit 1) (value "Conn_01x01_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
  7396. )
  7397. (path "/00000000-0000-0000-0000-000060ebbb9d"
  7398. (reference "J6") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical")
  7399. )
  7400. (path "/00000000-0000-0000-0000-000060ec64d1"
  7401. (reference "J7") (unit 1) (value "Conn_01x02_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical")
  7402. )
  7403. (path "/00000000-0000-0000-0000-000060f07695"
  7404. (reference "J8") (unit 1) (value "Conn_01x01_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
  7405. )
  7406. (path "/00000000-0000-0000-0000-000060f15e73"
  7407. (reference "J9") (unit 1) (value "Conn_01x01_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
  7408. )
  7409. (path "/12c5debe-cf4e-4a43-9e32-6958b66dbe87"
  7410. (reference "L1") (unit 1) (value "4.7uH") (footprint "Inductor_SMD:L_0603_1608Metric")
  7411. )
  7412. (path "/00000000-0000-0000-0000-000060ee152f"
  7413. (reference "R1") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7414. )
  7415. (path "/00000000-0000-0000-0000-000060eedf32"
  7416. (reference "R2") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7417. )
  7418. (path "/00000000-0000-0000-0000-000060eee2fb"
  7419. (reference "R3") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7420. )
  7421. (path "/00000000-0000-0000-0000-000060eee4d6"
  7422. (reference "R4") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7423. )
  7424. (path "/00000000-0000-0000-0000-000060eee700"
  7425. (reference "R5") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7426. )
  7427. (path "/00000000-0000-0000-0000-000060eee90d"
  7428. (reference "R6") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7429. )
  7430. (path "/00000000-0000-0000-0000-000060eeebad"
  7431. (reference "R7") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7432. )
  7433. (path "/00000000-0000-0000-0000-000060eeee25"
  7434. (reference "R8") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7435. )
  7436. (path "/00000000-0000-0000-0000-000060f24dc4"
  7437. (reference "R9") (unit 1) (value "22") (footprint "Resistor_SMD:R_0402_1005Metric")
  7438. )
  7439. (path "/00000000-0000-0000-0000-000060f2612d"
  7440. (reference "R10") (unit 1) (value "22") (footprint "Resistor_SMD:R_0402_1005Metric")
  7441. )
  7442. (path "/00000000-0000-0000-0000-000060f200f6"
  7443. (reference "R11") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7444. )
  7445. (path "/00000000-0000-0000-0000-000060f1f972"
  7446. (reference "R12") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7447. )
  7448. (path "/00000000-0000-0000-0000-000060f2087d"
  7449. (reference "R13") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7450. )
  7451. (path "/00000000-0000-0000-0000-000060ef0310"
  7452. (reference "R14") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7453. )
  7454. (path "/00000000-0000-0000-0000-000060f08823"
  7455. (reference "R15") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7456. )
  7457. (path "/00000000-0000-0000-0000-000060f08b84"
  7458. (reference "R16") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7459. )
  7460. (path "/00000000-0000-0000-0000-000060f0922f"
  7461. (reference "R17") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7462. )
  7463. (path "/00000000-0000-0000-0000-000060f09606"
  7464. (reference "R18") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7465. )
  7466. (path "/00000000-0000-0000-0000-000060f099c4"
  7467. (reference "R19") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7468. )
  7469. (path "/00000000-0000-0000-0000-000060f09d89"
  7470. (reference "R20") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7471. )
  7472. (path "/00000000-0000-0000-0000-000060f0a130"
  7473. (reference "R21") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7474. )
  7475. (path "/00000000-0000-0000-0000-000060f2469e"
  7476. (reference "R22") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7477. )
  7478. (path "/00000000-0000-0000-0000-000060f20f89"
  7479. (reference "R23") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7480. )
  7481. (path "/00000000-0000-0000-0000-000060f671bc"
  7482. (reference "R24") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7483. )
  7484. (path "/87d0169f-2aff-44e4-ace6-b66b5b6e0eb6"
  7485. (reference "R25") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7486. )
  7487. (path "/3f265bbd-a52d-4281-8af1-e1f5fbcd9a2b"
  7488. (reference "R27") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
  7489. )
  7490. (path "/1dcaebc2-a84c-4e89-aaeb-dd95e7b64ddb"
  7491. (reference "R28") (unit 1) (value "0") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7492. )
  7493. (path "/c091e5e4-72fb-4a6a-90d0-7fce2f19aa00"
  7494. (reference "R29") (unit 1) (value "10K") (footprint "Resistor_SMD:R_0402_1005Metric")
  7495. )
  7496. (path "/87dc5ffe-250f-4aef-a6cb-425317a8a82c"
  7497. (reference "R30") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  7498. )
  7499. (path "/3724ac7a-ca6a-478c-979d-a20242b0cdbf"
  7500. (reference "R31") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  7501. )
  7502. (path "/deca9bab-7e1d-4902-9773-c84aba213457"
  7503. (reference "R32") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7504. )
  7505. (path "/355f6643-041e-485a-bbca-f3cfa821bcf6"
  7506. (reference "R33") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7507. )
  7508. (path "/e568b643-2293-4d28-9d60-183ed1793f3f"
  7509. (reference "R34") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7510. )
  7511. (path "/e0cf5bf1-a43d-4afa-ba06-e78f28829f38"
  7512. (reference "R35") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7513. )
  7514. (path "/9cc43362-5a83-495c-8712-de83f144bc77"
  7515. (reference "R36") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7516. )
  7517. (path "/f7dbde3b-c8ff-4243-a2a2-162a4cb79579"
  7518. (reference "R37") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7519. )
  7520. (path "/6667d621-b9f9-4c4f-b1e1-13fcb3950dee"
  7521. (reference "R38") (unit 1) (value "33") (footprint "Resistor_SMD:R_0402_1005Metric")
  7522. )
  7523. (path "/9fbf711d-f8bb-4ee0-b429-7e0b8552e92b"
  7524. (reference "R39") (unit 1) (value "820") (footprint "Resistor_SMD:R_0603_1608Metric")
  7525. )
  7526. (path "/48a67d2e-ab82-4fe3-a37f-7f24fac9f7af"
  7527. (reference "R40") (unit 1) (value "820") (footprint "Resistor_SMD:R_0603_1608Metric")
  7528. )
  7529. (path "/ae199770-c6d3-41f3-86db-5c7e90d42c2f"
  7530. (reference "R41") (unit 1) (value "820") (footprint "Resistor_SMD:R_0603_1608Metric")
  7531. )
  7532. (path "/00000000-0000-0000-0000-000060e36170"
  7533. (reference "U1") (unit 1) (value "TXS0108EPW") (footprint "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm")
  7534. )
  7535. (path "/00000000-0000-0000-0000-000060e3a754"
  7536. (reference "U2") (unit 1) (value "TXS0108EPW") (footprint "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm")
  7537. )
  7538. (path "/54d018a9-858a-42d7-b187-c4e98a6b735e"
  7539. (reference "U3") (unit 1) (value "STM32F730VETx") (footprint "Package_QFP:LQFP-100_14x14mm_P0.5mm")
  7540. )
  7541. (path "/b8a09ecb-7403-4e5c-934c-5086ab07d9cc"
  7542. (reference "U4") (unit 1) (value "AMS1117-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
  7543. )
  7544. (path "/612d0d35-8b50-41d8-ac0f-fbdeb048a787"
  7545. (reference "U5") (unit 1) (value "USBLC6-2SC6") (footprint "Package_TO_SOT_SMD:SOT-23-6")
  7546. )
  7547. (path "/271d102e-4d4b-4ef3-9c4e-97819e24d70a"
  7548. (reference "U6") (unit 1) (value "TXS0108EPW") (footprint "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm")
  7549. )
  7550. (path "/cda3a80d-425b-4489-819e-1104aa8ac815"
  7551. (reference "USB1") (unit 1) (value "USB-C") (footprint "ide-usb-pcb:HRO-TYPE-C-31-M-12")
  7552. )
  7553. (path "/d51dcd9b-36aa-4a5f-abd8-baa83202f0b0"
  7554. (reference "X1") (unit 1) (value "16MHz") (footprint "ide-usb-pcb:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm")
  7555. )
  7556. (path "/2a8b0fa2-08fb-477e-9830-51e5f15f284b"
  7557. (reference "Y2") (unit 1) (value "32kHz") (footprint "ide-usb-pcb:Crystal_SMD_3215-2Pin_3.2x1.5mm")
  7558. )
  7559. )
  7560. )