123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553 |
- (kicad_sch (version 20211123) (generator eeschema)
- (uuid 4780a290-d25c-4459-9579-eba3f7678762)
- (paper "A3")
- (lib_symbols
- (symbol "74xx:74HC245" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at -7.62 16.51 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "74HC245" (id 1) (at -7.62 -16.51 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC245" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_locked" "" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_keywords" "HCMOS BUS 3State" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Octal BUS Transceivers, 3-State outputs" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "DIP?20*" (id 7) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "74HC245_1_0"
- (polyline
- (pts
- (xy -0.635 -1.27)
- (xy -0.635 1.27)
- (xy 0.635 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 -1.27)
- (xy 0.635 -1.27)
- (xy 0.635 1.27)
- (xy 1.27 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (pin input line (at -12.7 -10.16 0) (length 5.08)
- (name "A->B" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 -20.32 90) (length 5.08)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 -5.08 180) (length 5.08)
- (name "B7" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 -2.54 180) (length 5.08)
- (name "B6" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 0 180) (length 5.08)
- (name "B5" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 2.54 180) (length 5.08)
- (name "B4" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 5.08 180) (length 5.08)
- (name "B3" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 7.62 180) (length 5.08)
- (name "B2" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 10.16 180) (length 5.08)
- (name "B1" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 12.7 180) (length 5.08)
- (name "B0" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin input inverted (at -12.7 -12.7 0) (length 5.08)
- (name "CE" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at -12.7 12.7 0) (length 5.08)
- (name "A0" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 20.32 270) (length 5.08)
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at -12.7 10.16 0) (length 5.08)
- (name "A1" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at -12.7 7.62 0) (length 5.08)
- (name "A2" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at -12.7 5.08 0) (length 5.08)
- (name "A3" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at -12.7 2.54 0) (length 5.08)
- (name "A4" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at -12.7 0 0) (length 5.08)
- (name "A5" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at -12.7 -2.54 0) (length 5.08)
- (name "A6" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at -12.7 -5.08 0) (length 5.08)
- (name "A7" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "74HC245_1_1"
- (rectangle (start -7.62 15.24) (end 7.62 -15.24)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- )
- (symbol "74xx:74LS04" (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "74LS04" (id 1) (at 0 -1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS04" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_locked" "" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_keywords" "TTL not inv" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Hex Inverter" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "DIP*W7.62mm* SSOP?14* TSSOP?14*" (id 7) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "74LS04_1_0"
- (polyline
- (pts
- (xy -3.81 3.81)
- (xy -3.81 -3.81)
- (xy 3.81 0)
- (xy -3.81 3.81)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- (pin input line (at -7.62 0 0) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin output inverted (at 7.62 0 180) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "74LS04_2_0"
- (polyline
- (pts
- (xy -3.81 3.81)
- (xy -3.81 -3.81)
- (xy 3.81 0)
- (xy -3.81 3.81)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- (pin input line (at -7.62 0 0) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin output inverted (at 7.62 0 180) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "74LS04_3_0"
- (polyline
- (pts
- (xy -3.81 3.81)
- (xy -3.81 -3.81)
- (xy 3.81 0)
- (xy -3.81 3.81)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- (pin input line (at -7.62 0 0) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin output inverted (at 7.62 0 180) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "74LS04_4_0"
- (polyline
- (pts
- (xy -3.81 3.81)
- (xy -3.81 -3.81)
- (xy 3.81 0)
- (xy -3.81 3.81)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- (pin output inverted (at 7.62 0 180) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -7.62 0 0) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "74LS04_5_0"
- (polyline
- (pts
- (xy -3.81 3.81)
- (xy -3.81 -3.81)
- (xy 3.81 0)
- (xy -3.81 3.81)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- (pin output inverted (at 7.62 0 180) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -7.62 0 0) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "74LS04_6_0"
- (polyline
- (pts
- (xy -3.81 3.81)
- (xy -3.81 -3.81)
- (xy 3.81 0)
- (xy -3.81 3.81)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- (pin output inverted (at 7.62 0 180) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -7.62 0 0) (length 3.81)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "74LS04_7_0"
- (pin power_in line (at 0 12.7 270) (length 5.08)
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 -12.7 90) (length 5.08)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "74LS04_7_1"
- (rectangle (start -5.08 7.62) (end 5.08 -7.62)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- )
- (symbol "74xx:74LS573" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at -7.62 16.51 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "74LS573" (id 1) (at -7.62 -16.51 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "74xx/74hc573.pdf" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_locked" "" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_keywords" "TTL DFF DFF8 LATCH 3State" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "8-bit Latch 3-state outputs" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "DIP?20*" (id 7) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "74LS573_1_0"
- (pin input inverted (at -12.7 -12.7 0) (length 5.08)
- (name "OE" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 -20.32 90) (length 5.08)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 -10.16 0) (length 5.08)
- (name "Load" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 -5.08 180) (length 5.08)
- (name "Q7" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 -2.54 180) (length 5.08)
- (name "Q6" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 0 180) (length 5.08)
- (name "Q5" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 2.54 180) (length 5.08)
- (name "Q4" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 5.08 180) (length 5.08)
- (name "Q3" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 7.62 180) (length 5.08)
- (name "Q2" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 10.16 180) (length 5.08)
- (name "Q1" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 12.7 180) (length 5.08)
- (name "Q0" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 12.7 0) (length 5.08)
- (name "D0" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 20.32 270) (length 5.08)
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 10.16 0) (length 5.08)
- (name "D1" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 7.62 0) (length 5.08)
- (name "D2" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 5.08 0) (length 5.08)
- (name "D3" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 2.54 0) (length 5.08)
- (name "D4" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 0 0) (length 5.08)
- (name "D5" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 -2.54 0) (length 5.08)
- (name "D6" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 -5.08 0) (length 5.08)
- (name "D7" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "74LS573_1_1"
- (rectangle (start -7.62 15.24) (end 7.62 -15.24)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- )
- (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (id 0) (at 0.762 0.508 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "R_Small_0_1"
- (rectangle (start -0.762 1.778) (end 0.762 -1.778)
- (stroke (width 0.2032) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "R_Small_1_1"
- (pin passive line (at 0 2.54 270) (length 0.762)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -2.54 90) (length 0.762)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 0 3.556 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "+5V_0_1"
- (polyline
- (pts
- (xy -0.762 1.27)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy 0.762 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "+5V_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+5V" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (xy 0 0)
- (xy 0 -1.27)
- (xy 1.27 -1.27)
- (xy 0 -2.54)
- (xy -1.27 -1.27)
- (xy 0 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "GND_1_1"
- (pin power_in line (at 0 0 270) (length 0) hide
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- )
- (junction (at 229.87 179.07) (diameter 0) (color 0 0 0 0)
- (uuid 00eb91f4-a33c-48d8-9bb2-da7675f46533)
- )
- (junction (at 118.11 87.63) (diameter 0) (color 0 0 0 0)
- (uuid 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)
- )
- (junction (at 130.81 220.98) (diameter 0) (color 0 0 0 0)
- (uuid 076046ab-4b56-4060-b8d9-0d80806d0277)
- )
- (junction (at 165.1 43.18) (diameter 0) (color 0 0 0 0)
- (uuid 088f77ba-fca9-42b3-876e-a6937267f957)
- )
- (junction (at 229.87 194.31) (diameter 0) (color 0 0 0 0)
- (uuid 0aff8a90-7cfc-41d2-bc92-2be70bfeef89)
- )
- (junction (at 203.2 142.24) (diameter 0) (color 0 0 0 0)
- (uuid 0bcafe80-ffba-4f1e-ae51-95a595b006db)
- )
- (junction (at 229.87 181.61) (diameter 0) (color 0 0 0 0)
- (uuid 0d4db4a5-bd6a-4115-8f11-161b174e392d)
- )
- (junction (at 175.26 33.02) (diameter 0) (color 0 0 0 0)
- (uuid 0f324b67-75ef-407f-8dbc-3c1fc5c2abba)
- )
- (junction (at 110.49 95.25) (diameter 0) (color 0 0 0 0)
- (uuid 1199146e-a60b-416a-b503-e77d6d2892f9)
- )
- (junction (at 123.19 82.55) (diameter 0) (color 0 0 0 0)
- (uuid 143ed874-a01f-4ced-ba4e-bbb66ddd1f70)
- )
- (junction (at 128.27 226.06) (diameter 0) (color 0 0 0 0)
- (uuid 1fbb0219-551e-409b-a61b-76e8cebdfb9d)
- )
- (junction (at 172.72 35.56) (diameter 0) (color 0 0 0 0)
- (uuid 224768bc-6009-43ba-aa4a-70cbaa15b5a3)
- )
- (junction (at 167.64 40.64) (diameter 0) (color 0 0 0 0)
- (uuid 26801cfb-b53b-4a6a-a2f4-5f4986565765)
- )
- (junction (at 162.56 265.43) (diameter 0) (color 0 0 0 0)
- (uuid 28981883-42e9-4254-bc1a-ff3d66275ca1)
- )
- (junction (at 199.39 149.86) (diameter 0) (color 0 0 0 0)
- (uuid 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)
- )
- (junction (at 142.24 157.48) (diameter 0) (color 0 0 0 0)
- (uuid 3e915099-a18e-49f4-89bb-abe64c2dade5)
- )
- (junction (at 162.56 262.89) (diameter 0) (color 0 0 0 0)
- (uuid 3ff83ea8-f293-45de-a6b9-ee0e17ba7834)
- )
- (junction (at 120.65 85.09) (diameter 0) (color 0 0 0 0)
- (uuid 411d4270-c66c-4318-b7fb-1470d34862b8)
- )
- (junction (at 162.56 267.97) (diameter 0) (color 0 0 0 0)
- (uuid 42c4f915-14eb-47f1-bb08-9ab24613b3ec)
- )
- (junction (at 132.08 218.44) (diameter 0) (color 0 0 0 0)
- (uuid 45884597-7014-4461-83ee-9975c42b9a53)
- )
- (junction (at 115.57 90.17) (diameter 0) (color 0 0 0 0)
- (uuid 4ba06b66-7669-4c70-b585-f5d4c9c33527)
- )
- (junction (at 54.61 157.48) (diameter 0) (color 0 0 0 0)
- (uuid 4d4fecdd-be4a-47e9-9085-2268d5852d8f)
- )
- (junction (at 139.7 233.68) (diameter 0) (color 0 0 0 0)
- (uuid 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7)
- )
- (junction (at 205.74 53.34) (diameter 0) (color 0 0 0 0)
- (uuid 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)
- )
- (junction (at 204.47 55.88) (diameter 0) (color 0 0 0 0)
- (uuid 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75)
- )
- (junction (at 200.66 147.32) (diameter 0) (color 0 0 0 0)
- (uuid 6e435cd4-da2b-4602-a0aa-5dd988834dff)
- )
- (junction (at 229.87 196.85) (diameter 0) (color 0 0 0 0)
- (uuid 80db69a7-7b68-4cda-9b89-423c3b654174)
- )
- (junction (at 229.87 191.77) (diameter 0) (color 0 0 0 0)
- (uuid 87670559-63b6-40e3-80f6-b6f503e7129c)
- )
- (junction (at 170.18 38.1) (diameter 0) (color 0 0 0 0)
- (uuid 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe)
- )
- (junction (at 113.03 92.71) (diameter 0) (color 0 0 0 0)
- (uuid 9186fd02-f30d-4e17-aa38-378ab73e3908)
- )
- (junction (at 107.95 97.79) (diameter 0) (color 0 0 0 0)
- (uuid 98b00c9d-9188-4bce-aa70-92d12dd9cf82)
- )
- (junction (at 135.89 210.82) (diameter 0) (color 0 0 0 0)
- (uuid 9aedbb9e-8340-4899-b813-05b23382a36b)
- )
- (junction (at 125.73 80.01) (diameter 0) (color 0 0 0 0)
- (uuid 9bac9ad3-a7b9-47f0-87c7-d8630653df68)
- )
- (junction (at 229.87 186.69) (diameter 0) (color 0 0 0 0)
- (uuid 9d22b822-8717-4f58-baaf-b4d0466ac12b)
- )
- (junction (at 201.93 144.78) (diameter 0) (color 0 0 0 0)
- (uuid aa79024d-ca7e-4c24-b127-7df08bbd0c75)
- )
- (junction (at 229.87 189.23) (diameter 0) (color 0 0 0 0)
- (uuid b1f6cd55-c3c3-4cc6-9f40-46ce7c653860)
- )
- (junction (at 162.56 255.27) (diameter 0) (color 0 0 0 0)
- (uuid b24b862d-e410-4bc0-94f6-7cd7588479af)
- )
- (junction (at 177.8 30.48) (diameter 0) (color 0 0 0 0)
- (uuid b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)
- )
- (junction (at 204.47 139.7) (diameter 0) (color 0 0 0 0)
- (uuid bb4b1afc-c46e-451d-8dad-36b7dec82f26)
- )
- (junction (at 162.56 260.35) (diameter 0) (color 0 0 0 0)
- (uuid c5374da3-612c-41d0-bf8a-e81bf402f0ae)
- )
- (junction (at 205.74 137.16) (diameter 0) (color 0 0 0 0)
- (uuid cada57e2-1fa7-4b9d-a2a0-2218773d5c50)
- )
- (junction (at 162.56 257.81) (diameter 0) (color 0 0 0 0)
- (uuid d09607ee-56cc-4a7d-a86c-3e842722bcb7)
- )
- (junction (at 134.62 213.36) (diameter 0) (color 0 0 0 0)
- (uuid d0a0deb1-4f0f-4ede-b730-2c6d67cb9618)
- )
- (junction (at 160.02 48.26) (diameter 0) (color 0 0 0 0)
- (uuid d88958ac-68cd-4955-a63f-0eaa329dec86)
- )
- (junction (at 162.56 252.73) (diameter 0) (color 0 0 0 0)
- (uuid e0b84752-d599-428c-a4b1-1a4b6337cfda)
- )
- (junction (at 207.01 134.62) (diameter 0) (color 0 0 0 0)
- (uuid e0f06b5c-de63-4833-a591-ca9e19217a35)
- )
- (junction (at 129.54 223.52) (diameter 0) (color 0 0 0 0)
- (uuid e17e6c0e-7e5b-43f0-ad48-0a2760b45b04)
- )
- (junction (at 229.87 184.15) (diameter 0) (color 0 0 0 0)
- (uuid e204b5b0-3c27-4b4b-bc3e-2bec7e87c04a)
- )
- (junction (at 137.16 208.28) (diameter 0) (color 0 0 0 0)
- (uuid f1a9fb80-4cc4-410f-9616-e19c969dcab5)
- )
- (junction (at 198.12 152.4) (diameter 0) (color 0 0 0 0)
- (uuid f9c81c26-f253-4227-a69f-53e64841cfbe)
- )
- (junction (at 133.35 215.9) (diameter 0) (color 0 0 0 0)
- (uuid fb30f9bb-6a0b-4d8a-82b0-266eab794bc6)
- )
- (junction (at 162.56 45.72) (diameter 0) (color 0 0 0 0)
- (uuid fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)
- )
- (wire (pts (xy 118.11 87.63) (xy 40.64 87.63))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 009b5465-0a65-4237-93e7-eb65321eeb18)
- )
- (wire (pts (xy 162.56 45.72) (xy 40.64 45.72))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 00e38d63-5436-49db-81f5-697421f168fc)
- )
- (wire (pts (xy 224.79 196.85) (xy 229.87 196.85))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0115fa65-be2b-4a6c-95b6-66e93cffa536)
- )
- (wire (pts (xy 203.2 142.24) (xy 212.09 142.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 026ac84e-b8b2-4dd2-b675-8323c24fd778)
- )
- (wire (pts (xy 157.48 267.97) (xy 162.56 267.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0330a726-ba05-487f-9b7d-67f228d0f878)
- )
- (wire (pts (xy 177.8 30.48) (xy 177.8 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
- )
- (wire (pts (xy 120.65 85.09) (xy 212.09 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0520f61d-4522-4301-a3fa-8ed0bf060f69)
- )
- (wire (pts (xy 40.64 43.18) (xy 165.1 43.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 065b9982-55f2-4822-977e-07e8a06e7b35)
- )
- (wire (pts (xy 224.79 63.5) (xy 224.79 64.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 097edb1b-8998-4e70-b670-bba125982348)
- )
- (wire (pts (xy 237.49 40.64) (xy 384.81 40.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 099096e4-8c2a-4d84-a16f-06b4b6330e7a)
- )
- (wire (pts (xy 207.01 179.07) (xy 219.71 179.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0ae82096-0994-4fb0-9a2a-d4ac4804abac)
- )
- (wire (pts (xy 237.49 152.4) (xy 384.81 152.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0ce8d3ab-2662-4158-8a2a-18b782908fc5)
- )
- (wire (pts (xy 157.48 265.43) (xy 162.56 265.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0dfd3943-b97a-4cfc-92d6-50b1bd446cd5)
- )
- (wire (pts (xy 237.49 147.32) (xy 384.81 147.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)
- )
- (wire (pts (xy 212.09 80.01) (xy 125.73 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0f31f11f-c374-4640-b9a4-07bbdba8d354)
- )
- (wire (pts (xy 54.61 143.51) (xy 54.61 146.05))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0fd35a3e-b394-4aae-875a-fac843f9cbb7)
- )
- (wire (pts (xy 207.01 134.62) (xy 207.01 179.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)
- )
- (wire (pts (xy 130.81 220.98) (xy 144.78 220.98))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1171ce37-6ad7-4662-bb68-5592c945ebf3)
- )
- (wire (pts (xy 162.56 149.86) (xy 162.56 45.72))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 155b0b7c-70b4-4a26-a550-bac13cab0aa4)
- )
- (wire (pts (xy 134.62 257.81) (xy 152.4 257.81))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 16121028-bdf5-49c0-aae7-e28fe5bfa771)
- )
- (wire (pts (xy 205.74 53.34) (xy 40.64 53.34))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
- )
- (wire (pts (xy 130.81 220.98) (xy 130.81 265.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b)
- )
- (wire (pts (xy 175.26 33.02) (xy 212.09 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c68b844-c861-46b7-b734-0242168a4220)
- )
- (wire (pts (xy 237.49 82.55) (xy 384.81 82.55))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3)
- )
- (wire (pts (xy 199.39 149.86) (xy 162.56 149.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1fa508ef-df83-4c99-846b-9acf535b3ad9)
- )
- (wire (pts (xy 170.18 226.06) (xy 384.81 226.06))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 20cca02e-4c4d-4961-b6b4-b40a1731b220)
- )
- (wire (pts (xy 120.65 213.36) (xy 134.62 213.36))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 221bef83-3ea7-4d3f-adeb-53a8a07c6273)
- )
- (wire (pts (xy 170.18 215.9) (xy 384.81 215.9))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 240c10af-51b5-420e-a6f4-a2c8f5db1db5)
- )
- (wire (pts (xy 132.08 262.89) (xy 152.4 262.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2454fd1b-3484-4838-8b7e-d26357238fe1)
- )
- (wire (pts (xy 224.79 191.77) (xy 229.87 191.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 24f3eb99-8d72-4522-a290-2f73b81ef885)
- )
- (wire (pts (xy 212.09 35.56) (xy 172.72 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)
- )
- (wire (pts (xy 170.18 208.28) (xy 384.81 208.28))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 262f1ea9-0133-4b43-be36-456207ea857c)
- )
- (wire (pts (xy 125.73 80.01) (xy 40.64 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2891767f-251c-48c4-91c0-deb1b368f45c)
- )
- (wire (pts (xy 237.49 137.16) (xy 384.81 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 29e058a7-50a3-43e5-81c3-bfee53da08be)
- )
- (wire (pts (xy 229.87 196.85) (xy 229.87 199.39))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2b58571f-8932-4d7b-9c29-9eb1b3efe023)
- )
- (wire (pts (xy 384.81 213.36) (xy 170.18 213.36))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2d697cf0-e02e-4ed1-a048-a704dab0ee43)
- )
- (wire (pts (xy 162.56 252.73) (xy 162.56 255.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2f24573b-cfda-4189-98a3-3aecedd80bc2)
- )
- (wire (pts (xy 142.24 157.48) (xy 212.09 157.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 30317bf0-88bb-49e7-bf8b-9f3883982225)
- )
- (wire (pts (xy 157.48 270.51) (xy 162.56 270.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 30ea1829-e92e-47a1-a92c-b1494ab44936)
- )
- (wire (pts (xy 54.61 157.48) (xy 40.64 157.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3326423d-8df7-4a7e-a354-349430b8fbd7)
- )
- (wire (pts (xy 237.49 45.72) (xy 384.81 45.72))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 34a74736-156e-4bf3-9200-cd137cfa59da)
- )
- (wire (pts (xy 201.93 144.78) (xy 212.09 144.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d)
- )
- (wire (pts (xy 204.47 184.15) (xy 204.47 139.7))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 34d03349-6d78-4165-a683-2d8b76f2bae8)
- )
- (wire (pts (xy 224.79 179.07) (xy 229.87 179.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 37a66b57-6655-42ad-9906-28254663a195)
- )
- (wire (pts (xy 204.47 139.7) (xy 212.09 139.7))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 37b6c6d6-3e12-4736-912a-ea6e2bf06721)
- )
- (wire (pts (xy 162.56 255.27) (xy 162.56 257.81))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 37f7753e-35a2-4fdd-8bab-a9306eb82f09)
- )
- (wire (pts (xy 384.81 144.78) (xy 237.49 144.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 382ca670-6ae8-4de6-90f9-f241d1337171)
- )
- (wire (pts (xy 198.12 152.4) (xy 198.12 196.85))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 38a501e2-0ee8-439d-bd02-e9e90e7503e9)
- )
- (wire (pts (xy 229.87 194.31) (xy 229.87 196.85))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 39c4afb0-ddc0-47d7-a554-567af157fca5)
- )
- (wire (pts (xy 237.49 90.17) (xy 384.81 90.17))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3a52f112-cb97-43db-aaeb-20afe27664d7)
- )
- (wire (pts (xy 157.48 260.35) (xy 162.56 260.35))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3a5ffdbb-3922-46ed-9e3e-5c7df3a32691)
- )
- (wire (pts (xy 229.87 189.23) (xy 229.87 186.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3de3f6e6-c4a8-4f79-8f6a-715a526527b0)
- )
- (wire (pts (xy 137.16 208.28) (xy 137.16 252.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3f43d730-2a73-49fe-9672-32428e7f5b49)
- )
- (wire (pts (xy 237.49 134.62) (xy 384.81 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3fd54105-4b7e-4004-9801-76ec66108a22)
- )
- (wire (pts (xy 177.8 30.48) (xy 40.64 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4107d40a-e5df-4255-aacc-13f9928e090c)
- )
- (wire (pts (xy 237.49 87.63) (xy 384.81 87.63))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 41acfe41-fac7-432a-a7a3-946566e2d504)
- )
- (wire (pts (xy 129.54 267.97) (xy 152.4 267.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 43707e99-bdd7-4b02-9974-540ed6c2b0aa)
- )
- (wire (pts (xy 115.57 218.44) (xy 132.08 218.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 477892a1-722e-4cda-bb6c-fcdb8ba5f93e)
- )
- (wire (pts (xy 110.49 95.25) (xy 110.49 223.52))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 479331ff-c540-41f4-84e6-b48d65171e59)
- )
- (wire (pts (xy 224.79 194.31) (xy 229.87 194.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4a2f615e-e578-4d0b-a1e2-68756b4edcbf)
- )
- (wire (pts (xy 205.74 137.16) (xy 205.74 181.61))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4b03e854-02fe-44cc-bece-f8268b7cae54)
- )
- (wire (pts (xy 113.03 92.71) (xy 40.64 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4d586a18-26c5-441e-a9ff-8125ee516126)
- )
- (wire (pts (xy 135.89 210.82) (xy 144.78 210.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4db55cb8-197b-4402-871f-ce582b65664b)
- )
- (wire (pts (xy 212.09 55.88) (xy 204.47 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4e315e69-0417-463a-8b7f-469a08d1496e)
- )
- (wire (pts (xy 54.61 151.13) (xy 54.61 157.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4ec618ae-096f-4256-9328-005ee04f13d6)
- )
- (wire (pts (xy 199.39 149.86) (xy 212.09 149.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4f411f68-04bd-4175-a406-bcaa4cf6601e)
- )
- (wire (pts (xy 384.81 218.44) (xy 170.18 218.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)
- )
- (wire (pts (xy 229.87 191.77) (xy 229.87 189.23))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 50ccc7a2-47e9-49b1-8506-cda92e80e3d2)
- )
- (wire (pts (xy 170.18 220.98) (xy 384.81 220.98))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 592f25e6-a01b-47fd-8172-3da01117d00a)
- )
- (wire (pts (xy 167.64 252.73) (xy 167.64 250.19))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 59ec3156-036e-4049-89db-91a9dd07095f)
- )
- (wire (pts (xy 384.81 139.7) (xy 237.49 139.7))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5cf2db29-f7ab-499a-9907-cdeba64bf0f3)
- )
- (wire (pts (xy 115.57 90.17) (xy 212.09 90.17))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf)
- )
- (wire (pts (xy 40.64 48.26) (xy 160.02 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 61fe4c73-be59-4519-98f1-a634322a841d)
- )
- (wire (pts (xy 237.49 33.02) (xy 384.81 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6284122b-79c3-4e04-925e-3d32cc3ec077)
- )
- (wire (pts (xy 128.27 270.51) (xy 152.4 270.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6389315b-c273-44ff-966b-fc24ba190fb1)
- )
- (wire (pts (xy 237.49 85.09) (xy 384.81 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 644ae9fc-3c8e-4089-866e-a12bf371c3e9)
- )
- (wire (pts (xy 224.79 21.59) (xy 224.79 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 676efd2f-1c48-4786-9e4b-2444f1e8f6ff)
- )
- (wire (pts (xy 237.49 30.48) (xy 384.81 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 67763d19-f622-4e1e-81e5-5b24da7c3f99)
- )
- (wire (pts (xy 160.02 152.4) (xy 198.12 152.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 699feae1-8cdd-4d2b-947f-f24849c73cdb)
- )
- (wire (pts (xy 212.09 53.34) (xy 205.74 53.34))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6a2b20ae-096c-4d9f-92f8-2087c865914f)
- )
- (wire (pts (xy 134.62 213.36) (xy 144.78 213.36))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6bd115d6-07e0-45db-8f2e-3cbb0429104f)
- )
- (wire (pts (xy 40.64 33.02) (xy 175.26 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2)
- )
- (wire (pts (xy 200.66 147.32) (xy 212.09 147.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6f675e5f-8fe6-4148-baf1-da97afc770f8)
- )
- (wire (pts (xy 165.1 43.18) (xy 165.1 147.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6f80f798-dc24-438f-a1eb-4ee2936267c8)
- )
- (wire (pts (xy 234.315 179.07) (xy 234.315 176.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6fd4442e-30b3-428b-9306-61418a63d311)
- )
- (wire (pts (xy 212.09 82.55) (xy 123.19 82.55))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 700e8b73-5976-423f-a3f3-ab3d9f3e9760)
- )
- (wire (pts (xy 212.09 152.4) (xy 198.12 152.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 70e4263f-d95a-4431-b3f3-cfc800c82056)
- )
- (wire (pts (xy 165.1 43.18) (xy 212.09 43.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 71989e06-8659-4605-b2da-4f729cc41263)
- )
- (wire (pts (xy 123.19 210.82) (xy 135.89 210.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 71f92193-19b0-44ed-bc7f-77535083d769)
- )
- (wire (pts (xy 205.74 137.16) (xy 212.09 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 752417ee-7d0b-4ac8-a22c-26669881a2ab)
- )
- (wire (pts (xy 123.19 82.55) (xy 40.64 82.55))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)
- )
- (wire (pts (xy 212.09 87.63) (xy 118.11 87.63))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 79e31048-072a-4a40-a625-26bb0b5f046b)
- )
- (wire (pts (xy 128.27 226.06) (xy 107.95 226.06))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7bfba61b-6752-4a45-9ee6-5984dcb15041)
- )
- (wire (pts (xy 162.56 270.51) (xy 162.56 267.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7c4cbf7c-5c57-4242-ad35-fc72eef28053)
- )
- (wire (pts (xy 237.49 95.25) (xy 384.81 95.25))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8087f566-a94d-4bbc-985b-e49ee7762296)
- )
- (wire (pts (xy 207.01 134.62) (xy 212.09 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)
- )
- (wire (pts (xy 162.56 267.97) (xy 162.56 265.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 82b95e34-307c-43ff-943a-9521821b3777)
- )
- (wire (pts (xy 224.79 167.64) (xy 224.79 168.91))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 82be7aae-5d06-4178-8c3e-98760c41b054)
- )
- (wire (pts (xy 229.87 184.15) (xy 224.79 184.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8648b2e9-699c-40a6-9002-1a4d743aa031)
- )
- (wire (pts (xy 203.2 142.24) (xy 203.2 186.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
- )
- (wire (pts (xy 237.49 43.18) (xy 384.81 43.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 87d7448e-e139-4209-ae0b-372f805267da)
- )
- (wire (pts (xy 172.72 139.7) (xy 204.47 139.7))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8)
- )
- (wire (pts (xy 157.48 252.73) (xy 162.56 252.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8f7ce7bd-169b-4943-a677-1c34302b1b8f)
- )
- (wire (pts (xy 199.39 194.31) (xy 199.39 149.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8fc062a7-114d-48eb-a8f8-71128838f380)
- )
- (wire (pts (xy 120.65 213.36) (xy 120.65 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8fcec304-c6b1-4655-8326-beacd0476953)
- )
- (wire (pts (xy 162.56 262.89) (xy 162.56 260.35))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 902b0079-65f6-416c-9fb9-0f55bd729a31)
- )
- (wire (pts (xy 135.89 210.82) (xy 135.89 255.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)
- )
- (wire (pts (xy 219.71 194.31) (xy 199.39 194.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 917920ab-0c6e-4927-974d-ef342cdd4f63)
- )
- (wire (pts (xy 137.16 252.73) (xy 152.4 252.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9186dae5-6dc3-4744-9f90-e697559c6ac8)
- )
- (wire (pts (xy 54.61 157.48) (xy 59.69 157.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)
- )
- (wire (pts (xy 157.48 196.85) (xy 157.48 200.66))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 935057d5-6882-4c15-9a35-54677912ba12)
- )
- (wire (pts (xy 157.48 241.3) (xy 157.48 242.57))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 935f462d-8b1e-4005-9f1e-17f537ab1756)
- )
- (wire (pts (xy 157.48 262.89) (xy 162.56 262.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 95fa7f6b-1896-4492-96c7-6a6507aa3edb)
- )
- (wire (pts (xy 204.47 55.88) (xy 204.47 105.41))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 970e0f64-111f-41e3-9f5a-fb0d0f6fa101)
- )
- (wire (pts (xy 133.35 215.9) (xy 133.35 260.35))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 97fe2a5c-4eee-4c7a-9c43-47749b396494)
- )
- (wire (pts (xy 237.49 97.79) (xy 384.81 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 98c78427-acd5-4f90-9ad6-9f61c4809aec)
- )
- (wire (pts (xy 128.27 270.51) (xy 128.27 226.06))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 99332785-d9f1-4363-9377-26ddc18e6d2c)
- )
- (wire (pts (xy 224.79 71.12) (xy 224.79 72.39))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 994b6220-4755-4d84-91b3-6122ac1c2c5e)
- )
- (wire (pts (xy 110.49 95.25) (xy 212.09 95.25))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 997c2f12-73ba-4c01-9ee0-42e37cbab790)
- )
- (wire (pts (xy 144.78 233.68) (xy 139.7 233.68))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 99dfa524-0366-4808-b4e8-328fc38e8656)
- )
- (wire (pts (xy 200.66 147.32) (xy 200.66 191.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9a0b74a5-4879-4b51-8e8e-6d85a0107422)
- )
- (wire (pts (xy 224.79 186.69) (xy 229.87 186.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9ae8a1c4-2ba8-4c26-abd5-166e821d6fd0)
- )
- (wire (pts (xy 139.7 233.68) (xy 139.7 160.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9dcdc92b-2219-4a4a-8954-45f02cc3ab25)
- )
- (wire (pts (xy 172.72 139.7) (xy 172.72 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9f80220c-1612-4589-b9ca-a5579617bdb8)
- )
- (wire (pts (xy 237.49 38.1) (xy 384.81 38.1))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a13ab237-8f8d-4e16-8c47-4440653b8534)
- )
- (wire (pts (xy 107.95 97.79) (xy 40.64 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)
- )
- (wire (pts (xy 40.64 38.1) (xy 170.18 38.1))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a24ddb4f-c217-42ca-b6cb-d12da84fb2b9)
- )
- (wire (pts (xy 205.74 102.87) (xy 205.74 53.34))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a53767ed-bb28-4f90-abe0-e0ea734812a4)
- )
- (wire (pts (xy 212.09 40.64) (xy 167.64 40.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a6ccc556-da88-4006-ae1a-cc35733efef3)
- )
- (wire (pts (xy 170.18 142.24) (xy 203.2 142.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a7531a95-7ca1-4f34-955e-18120cec99e6)
- )
- (wire (pts (xy 113.03 220.98) (xy 130.81 220.98))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid aa130053-a451-4f12-97f7-3d4d891a5f83)
- )
- (wire (pts (xy 162.56 260.35) (xy 162.56 257.81))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid aaa8bc26-b956-4191-9ca2-768d317cca41)
- )
- (wire (pts (xy 162.56 257.81) (xy 157.48 257.81))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid aaeeaea2-680a-4ae2-bb95-84513fc1cd92)
- )
- (wire (pts (xy 229.87 186.69) (xy 229.87 184.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ae5a8c9b-8dbf-496c-aa08-2c48383e1005)
- )
- (wire (pts (xy 132.08 218.44) (xy 132.08 262.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ae77c3c8-1144-468e-ad5b-a0b4090735bd)
- )
- (wire (pts (xy 144.78 208.28) (xy 137.16 208.28))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid af347946-e3da-4427-87ab-77b747929f50)
- )
- (wire (pts (xy 229.87 181.61) (xy 224.79 181.61))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid afd32714-e1f4-49e1-a889-73ecb7962d1e)
- )
- (wire (pts (xy 144.78 226.06) (xy 128.27 226.06))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid afd38b10-2eca-4abe-aed1-a96fb07ffdbe)
- )
- (wire (pts (xy 130.81 265.43) (xy 152.4 265.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b0271cdd-de22-4bf4-8f55-fc137cfbd4ec)
- )
- (wire (pts (xy 384.81 149.86) (xy 237.49 149.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b0906e10-2fbc-4309-a8b4-6fc4cd1a5490)
- )
- (wire (pts (xy 40.64 95.25) (xy 110.49 95.25))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b09666f9-12f1-4ee9-8877-2292c94258ca)
- )
- (wire (pts (xy 212.09 30.48) (xy 177.8 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b1ddb058-f7b2-429c-9489-f4e2242ad7e5)
- )
- (wire (pts (xy 40.64 85.09) (xy 120.65 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b4300db7-1220-431a-b7c3-2edbdf8fa6fc)
- )
- (wire (pts (xy 205.74 181.61) (xy 219.71 181.61))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b5071759-a4d7-4769-be02-251f23cd4454)
- )
- (wire (pts (xy 115.57 218.44) (xy 115.57 90.17))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)
- )
- (wire (pts (xy 204.47 105.41) (xy 212.09 105.41))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b6135480-ace6-42b2-9c47-856ef57cded1)
- )
- (wire (pts (xy 160.02 48.26) (xy 212.09 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b6cd701f-4223-4e72-a305-466869ccb250)
- )
- (wire (pts (xy 212.09 97.79) (xy 107.95 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b873bc5d-a9af-4bd9-afcb-87ce4d417120)
- )
- (wire (pts (xy 118.11 215.9) (xy 133.35 215.9))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bc0dbc57-3ae8-4ce5-a05c-2d6003bba475)
- )
- (wire (pts (xy 177.8 134.62) (xy 207.01 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c04386e0-b49e-4fff-b380-675af13a62cb)
- )
- (wire (pts (xy 170.18 210.82) (xy 384.81 210.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c09938fd-06b9-4771-9f63-2311626243b3)
- )
- (wire (pts (xy 198.12 196.85) (xy 219.71 196.85))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f)
- )
- (wire (pts (xy 229.87 179.07) (xy 234.315 179.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c2cf32ca-1613-4de3-9d10-7b09ea3fb068)
- )
- (wire (pts (xy 133.35 215.9) (xy 144.78 215.9))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c3c499b1-9227-4e4b-9982-f9f1aa6203b9)
- )
- (wire (pts (xy 201.93 144.78) (xy 167.64 144.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c49d23ab-146d-4089-864f-2d22b5b414b9)
- )
- (wire (pts (xy 132.08 218.44) (xy 144.78 218.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c514e30c-e48e-4ca5-ab44-8b3afedef1f2)
- )
- (wire (pts (xy 40.64 90.17) (xy 115.57 90.17))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c76d4423-ef1b-4a6f-8176-33d65f2877bb)
- )
- (wire (pts (xy 167.64 144.78) (xy 167.64 40.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c7af8405-da2e-4a34-b9b8-518f342f8995)
- )
- (wire (pts (xy 139.7 233.68) (xy 40.64 233.68))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c8b6b273-3d20-4a46-8069-f6d608563604)
- )
- (wire (pts (xy 118.11 87.63) (xy 118.11 215.9))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c8b92953-cd23-44e6-85ce-083fb8c3f20f)
- )
- (wire (pts (xy 107.95 226.06) (xy 107.95 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c8fd9dd3-06ad-4146-9239-0065013959ef)
- )
- (wire (pts (xy 237.49 35.56) (xy 384.81 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ca5a4651-0d1d-441b-b17d-01518ef3b656)
- )
- (wire (pts (xy 384.81 223.52) (xy 170.18 223.52))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cb614b23-9af3-4aec-bed8-c1374e001510)
- )
- (wire (pts (xy 110.49 223.52) (xy 129.54 223.52))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cc15f583-a41b-43af-ba94-a75455506a96)
- )
- (wire (pts (xy 133.35 260.35) (xy 152.4 260.35))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ce72ea62-9343-4a4f-81bf-8ac601f5d005)
- )
- (wire (pts (xy 237.49 48.26) (xy 384.81 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc)
- )
- (wire (pts (xy 170.18 38.1) (xy 170.18 142.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e)
- )
- (wire (pts (xy 175.26 137.16) (xy 205.74 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d2d7bea6-0c22-495f-8666-323b30e03150)
- )
- (wire (pts (xy 162.56 252.73) (xy 167.64 252.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d39d813e-3e64-490c-ba5c-a64bb5ad6bd0)
- )
- (wire (pts (xy 142.24 231.14) (xy 142.24 157.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d3d57924-54a6-421d-a3a0-a044fc909e88)
- )
- (wire (pts (xy 129.54 223.52) (xy 129.54 267.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d4c9471f-7503-4339-928c-d1abae1eede6)
- )
- (wire (pts (xy 201.93 189.23) (xy 219.71 189.23))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa)
- )
- (wire (pts (xy 162.56 265.43) (xy 162.56 262.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d715f2e1-adcc-49f1-b032-b5e987206966)
- )
- (wire (pts (xy 162.56 255.27) (xy 157.48 255.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d7982637-b1f3-4c96-9a46-62a8afd80a5d)
- )
- (wire (pts (xy 229.87 181.61) (xy 229.87 184.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid da05f600-e259-443c-bd06-dfbd299734f2)
- )
- (wire (pts (xy 201.93 189.23) (xy 201.93 144.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid da25bf79-0abb-4fac-a221-ca5c574dfc29)
- )
- (wire (pts (xy 139.7 160.02) (xy 212.09 160.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dae72997-44fc-4275-b36f-cd70bf46cfba)
- )
- (wire (pts (xy 212.09 45.72) (xy 162.56 45.72))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dc2801a1-d539-4721-b31f-fe196b9f13df)
- )
- (wire (pts (xy 229.87 179.07) (xy 229.87 181.61))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dd898049-a404-481e-8edb-8a5776f034e6)
- )
- (wire (pts (xy 224.79 199.39) (xy 229.87 199.39))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid de89bd5c-5406-4c7d-96a8-efa6f11366cf)
- )
- (wire (pts (xy 229.87 194.31) (xy 229.87 191.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid df556937-1ec6-413a-9466-0c3728362481)
- )
- (wire (pts (xy 224.79 189.23) (xy 229.87 189.23))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dfd80f33-65bc-4168-ac25-1844be7a576b)
- )
- (wire (pts (xy 40.64 199.39) (xy 219.71 199.39))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e091e263-c616-48ef-a460-465c70218987)
- )
- (wire (pts (xy 170.18 38.1) (xy 212.09 38.1))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e1c30a32-820e-4b17-aec9-5cb8b76f0ccc)
- )
- (wire (pts (xy 203.2 186.69) (xy 219.71 186.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e32ee344-1030-4498-9cac-bfbf7540faf4)
- )
- (wire (pts (xy 204.47 55.88) (xy 40.64 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e4aa537c-eb9d-4dbb-ac87-fae46af42391)
- )
- (wire (pts (xy 129.54 223.52) (xy 144.78 223.52))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e4e20505-1208-4100-a4aa-676f50844c06)
- )
- (wire (pts (xy 160.02 48.26) (xy 160.02 152.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e5864fe6-2a71-47f0-90ce-38c3f8901580)
- )
- (wire (pts (xy 224.79 125.73) (xy 224.79 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e65b62be-e01b-4688-a999-1d1be370c4ae)
- )
- (wire (pts (xy 113.03 92.71) (xy 113.03 220.98))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e7369115-d491-4ef3-be3d-f5298992c3e8)
- )
- (wire (pts (xy 175.26 33.02) (xy 175.26 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e7bb7815-0d52-4bb8-b29a-8cf960bd2905)
- )
- (wire (pts (xy 125.73 208.28) (xy 125.73 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e7e08b48-3d04-49da-8349-6de530a20c67)
- )
- (wire (pts (xy 134.62 213.36) (xy 134.62 257.81))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e97b5984-9f0f-43a4-9b8a-838eef4cceb2)
- )
- (wire (pts (xy 74.93 157.48) (xy 142.24 157.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4)
- )
- (wire (pts (xy 200.66 191.77) (xy 219.71 191.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eae14f5f-515c-4a6f-ad0e-e8ef233d14bf)
- )
- (wire (pts (xy 237.49 80.01) (xy 384.81 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ee41cb8e-512d-41d2-81e1-3c50fff32aeb)
- )
- (wire (pts (xy 224.79 113.03) (xy 224.79 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f40d350f-0d3e-4f8a-b004-d950f2f8f1ba)
- )
- (wire (pts (xy 237.49 92.71) (xy 384.81 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f4eb0267-179f-46c9-b516-9bfb06bac1ba)
- )
- (wire (pts (xy 165.1 147.32) (xy 200.66 147.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f66398f1-1ae7-4d4d-939f-958c174c6bce)
- )
- (wire (pts (xy 144.78 231.14) (xy 142.24 231.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f73b5500-6337-4860-a114-6e307f65ec9f)
- )
- (wire (pts (xy 212.09 92.71) (xy 113.03 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f7667b23-296e-4362-a7e3-949632c8954b)
- )
- (wire (pts (xy 167.64 40.64) (xy 40.64 40.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f78e02cd-9600-4173-be8d-67e530b5d19f)
- )
- (wire (pts (xy 219.71 184.15) (xy 204.47 184.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f8fc38ec-0b98-40bc-ae2f-e5cc29973bca)
- )
- (wire (pts (xy 212.09 102.87) (xy 205.74 102.87))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f9403623-c00c-4b71-bc5c-d763ff009386)
- )
- (wire (pts (xy 135.89 255.27) (xy 152.4 255.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e)
- )
- (wire (pts (xy 123.19 82.55) (xy 123.19 210.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fd3499d5-6fd2-49a4-bdb0-109cee899fde)
- )
- (wire (pts (xy 137.16 208.28) (xy 125.73 208.28))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)
- )
- (wire (pts (xy 237.49 142.24) (xy 384.81 142.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid feb26ecb-9193-46ea-a41b-d09305bf0a3e)
- )
- (wire (pts (xy 172.72 35.56) (xy 40.64 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fef37e8b-0ff0-4da2-8a57-acaf19551d1a)
- )
- (text "DMA ADR/DATA\n" (at 41.91 29.21 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 3c5e5ea9-793d-46e3-86bc-5884c4490dc7)
- )
- (text "FROM DMA" (at 41.91 52.07 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079)
- )
- (text "PULLUP XXXX" (at 41.91 198.12 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 98914cc3-56fe-40bb-820a-3d157225c145)
- )
- (text "FROM DMA" (at 41.91 156.21 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid c088f712-1abe-4cac-9a8b-d564931395aa)
- )
- (text "CPU DATA" (at 373.38 29.21 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid c7e7067c-5f5e-48d8-ab59-df26f9b35863)
- )
- (text "DMA ADR/DATA\n" (at 41.91 78.74 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid ea6fde00-59dc-4a79-a647-7e38199fae0e)
- )
- (text "FROM DMA" (at 41.91 232.41 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid f8f3a9fc-1e34-4573-a767-508104e8d242)
- )
- (global_label "D9" (shape input) (at 384.81 82.55 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "DMADIR" (shape input) (at 40.64 53.34 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 071522c0-d0ed-49b9-906e-6295f67fb0dc)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D12" (shape input) (at 384.81 90.17 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 0c3dceba-7c95-4b3d-b590-0eb581444beb)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A11D3" (shape input) (at 40.64 38.1 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 109caac1-5036-4f23-9a66-f569d871501b)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A21" (shape input) (at 384.81 220.98 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 13c0ff76-ed71-4cd9-abb0-92c376825d5d)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A13" (shape input) (at 384.81 147.32 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 1e8701fc-ad24-40ea-846a-e3db538d6077)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A19" (shape input) (at 384.81 215.9 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 1f3003e6-dce5-420f-906b-3f1e92b67249)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "S+" (shape input) (at 40.64 199.39 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 28e37b45-f843-47c2-85c9-ca19f5430ece)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A20" (shape input) (at 384.81 218.44 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 378af8b4-af3d-46e7-89ae-deff12ca9067)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A15" (shape input) (at 384.81 152.4 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 40976bf0-19de-460f-ad64-224d4f51e16b)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D5" (shape input) (at 384.81 43.18 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{DMADBE}" (shape input) (at 40.64 55.88 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 4fa10683-33cd-4dcd-8acc-2415cd63c62a)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D4" (shape input) (at 384.81 40.64 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 4fb21471-41be-4be8-9687-66030f97befc)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{OWN}" (shape input) (at 40.64 233.68 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 54212c01-b363-47b8-a145-45c40df316f4)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D6" (shape input) (at 384.81 45.72 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 60dcd1fe-7079-4cb8-b509-04558ccf5097)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D14" (shape input) (at 384.81 95.25 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 6595b9c7-02ee-4647-bde5-6b566e35163e)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A14D6" (shape input) (at 40.64 45.72 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 6b7c1048-12b6-46b2-b762-fa3ad30472dd)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D11" (shape input) (at 384.81 87.63 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D15" (shape input) (at 384.81 97.79 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 770ad51a-7219-4633-b24a-bd20feb0a6c5)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A22D14" (shape input) (at 40.64 95.25 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 7afa54c4-2181-41d3-81f7-39efc497ecae)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D10" (shape input) (at 384.81 85.09 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 7d928d56-093a-4ca8-aed1-414b7e703b45)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A22" (shape input) (at 384.81 223.52 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 8412992d-8754-44de-9e08-115cec1a3eff)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{UAS}" (shape input) (at 40.64 157.48 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 8458d41c-5d62-455d-b6e1-9f718c0faac9)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D7" (shape input) (at 384.81 48.26 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 85b7594c-358f-454b-b2ad-dd0b1d67ed76)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A18D10" (shape input) (at 40.64 85.09 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 88668202-3f0b-4d07-84d4-dcd790f57272)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A12D4" (shape input) (at 40.64 40.64 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 8c1605f9-6c91-4701-96bf-e753661d5e23)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A18" (shape input) (at 384.81 213.36 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D1" (shape input) (at 384.81 33.02 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 911bdcbe-493f-4e21-a506-7cbc636e2c17)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A19D11" (shape input) (at 40.64 87.63 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A8D0" (shape input) (at 40.64 30.48 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 998b7fa5-31a5-472e-9572-49d5226d6098)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D8" (shape input) (at 384.81 80.01 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid a5cd8da1-8f7f-4f80-bb23-0317de562222)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A11" (shape input) (at 384.81 142.24 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid aca4de92-9c41-4c2b-9afa-540d02dafa1c)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D13" (shape input) (at 384.81 92.71 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid b1c649b1-f44d-46c7-9dea-818e75a1b87e)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D0" (shape input) (at 384.81 30.48 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid b96fe6ac-3535-4455-ab88-ed77f5e46d6e)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A17D9" (shape input) (at 40.64 82.55 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid c106154f-d948-43e5-abfa-e1b96055d91b)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A14" (shape input) (at 384.81 149.86 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid c25a772d-af9c-4ebc-96f6-0966738c13a8)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A23" (shape input) (at 384.81 226.06 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid c332fa55-4168-4f55-88a5-f82c7c21040b)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A12" (shape input) (at 384.81 144.78 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid c830e3bc-dc64-4f65-8f47-3b106bae2807)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A16" (shape input) (at 384.81 208.28 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid c8c79177-94d4-43e2-a654-f0a5554fbb68)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A20D12" (shape input) (at 40.64 90.17 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid cf386a39-fc62-49dd-8ec5-e044f6bd67ce)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A17" (shape input) (at 384.81 210.82 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid d3c11c8f-a73d-4211-934b-a6da255728ad)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D2" (shape input) (at 384.81 35.56 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A8" (shape input) (at 384.81 134.62 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid db36f6e3-e72a-487f-bda9-88cc84536f62)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "D3" (shape input) (at 384.81 38.1 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid dde51ae5-b215-445e-92bb-4a12ec410531)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A9" (shape input) (at 384.81 137.16 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid df68c26a-03b5-4466-aecf-ba34b7dce6b7)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A9D1" (shape input) (at 40.64 33.02 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A15D7" (shape input) (at 40.64 48.26 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid e5203297-b913-4288-a576-12a92185cb52)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A23D15" (shape input) (at 40.64 97.79 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid e54e5e19-1deb-49a9-8629-617db8e434c0)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A10D2" (shape input) (at 40.64 35.56 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid e67b9f8c-019b-4145-98a4-96545f6bb128)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A10" (shape input) (at 384.81 139.7 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid e8c50f1b-c316-4110-9cce-5c24c65a1eaa)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A21D13" (shape input) (at 40.64 92.71 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid eae0ab9f-65b2-44d3-aba7-873c3227fba7)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A16D8" (shape input) (at 40.64 80.01 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid eee16674-2d21-45b6-ab5e-d669125df26c)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "A13D5" (shape input) (at 40.64 43.18 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid f6c644f4-3036-41a6-9e14-2c08c079c6cd)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (symbol (lib_id "74xx:74HC245") (at 224.79 43.18 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061ea38ed)
- (property "Reference" "U5" (id 0) (at 218.44 25.4 0))
- (property "Value" "74ALS245" (id 1) (at 231.14 25.4 0))
- (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 224.79 43.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC245" (id 3) (at 224.79 43.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 98966de3-2364-43d8-a2e0-b03bb9487b03))
- (pin "10" (uuid 278a91dc-d57d-4a5c-a045-34b6bd84131f))
- (pin "11" (uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a))
- (pin "12" (uuid 24adc223-60f0-4497-98a3-d664c5a13280))
- (pin "13" (uuid 6d2a06fb-0b1e-452a-ab38-11a5f45e1b32))
- (pin "14" (uuid 631c7be5-8dc2-4df4-ab73-737bb928e763))
- (pin "15" (uuid 929a9b03-e99e-4b88-8e16-759f8c6b59a5))
- (pin "16" (uuid c210293b-1d7a-4e96-92e9-058784106727))
- (pin "17" (uuid b21299b9-3c4d-43df-b399-7f9b08eb5470))
- (pin "18" (uuid fc2e9f96-3bed-4896-b995-f56e799f1c77))
- (pin "19" (uuid 751d823e-1d7b-4501-9658-d06d459b0e16))
- (pin "2" (uuid 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5))
- (pin "20" (uuid aadc3df5-0e2d-4f3d-b72e-6f184da74c89))
- (pin "3" (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d))
- (pin "4" (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698))
- (pin "5" (uuid 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28))
- (pin "6" (uuid 54ed3ee1-891b-418e-ab9c-6a18747d7388))
- (pin "7" (uuid fd60415a-f01a-46c5-9369-ea970e435e5b))
- (pin "8" (uuid af76ce95-feca-41fb-bf31-edaa26d6766a))
- (pin "9" (uuid e11ae5a5-aa10-4f10-b346-f16e33c7899a))
- )
- (symbol (lib_id "74xx:74HC245") (at 224.79 92.71 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061ea6712)
- (property "Reference" "U4" (id 0) (at 217.17 74.93 0))
- (property "Value" "74ALS245" (id 1) (at 229.87 74.93 0))
- (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 224.79 92.71 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC245" (id 3) (at 224.79 92.71 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 15699041-ed40-45ee-87d8-f5e206a88536))
- (pin "10" (uuid 968a6172-7a4e-40ab-a78a-e4d03671e136))
- (pin "11" (uuid 26a22c19-4cc5-4237-9651-0edc4f854154))
- (pin "12" (uuid c1b11207-7c0a-49b3-a41d-2fe677d5f3b8))
- (pin "13" (uuid 402c62e6-8d8e-473a-a0cf-2b86e4908cd7))
- (pin "14" (uuid 3b65c51e-c243-447e-bee9-832d94c1630e))
- (pin "15" (uuid a177c3b4-b04c-490e-b3fe-d3d4d7aa24a7))
- (pin "16" (uuid 88deea08-baa5-4041-beb7-01c299cf00e6))
- (pin "17" (uuid ad4d05f5-6957-42f8-b65c-c657b9a26485))
- (pin "18" (uuid 92f063a3-7cce-4a96-8a3a-cf5767f700c6))
- (pin "19" (uuid 5bab6a37-1fdf-4cf8-b571-44c962ed86e9))
- (pin "2" (uuid 706c1cb9-5d96-4282-9efc-6147f0125147))
- (pin "20" (uuid eb391a95-1c1d-4613-b508-c76b8bc13a73))
- (pin "3" (uuid 9ed09117-33cf-45a3-85a7-2606522feaf8))
- (pin "4" (uuid 3bbbbb7d-391c-4fee-ac81-3c47878edc38))
- (pin "5" (uuid 4a53fa56-d65b-42a4-a4be-8f49c4c015bb))
- (pin "6" (uuid 6150c02b-beb5-4af1-951e-3666a285a6ea))
- (pin "7" (uuid 9c2999b2-1cf1-4204-9d23-243401b77aa3))
- (pin "8" (uuid 755f94aa-38f0-4a64-a7c7-6c71cb18cddf))
- (pin "9" (uuid 4970ec6e-3725-4619-b57d-dc2c2cb86ed0))
- )
- (symbol (lib_id "power:+5V") (at 224.79 21.59 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006202cdba)
- (property "Reference" "#PWR0111" (id 0) (at 224.79 25.4 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 225.171 17.1958 0))
- (property "Footprint" "" (id 2) (at 224.79 21.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 224.79 21.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 199124ca-dd64-45cf-a063-97cc545cbea7))
- )
- (symbol (lib_id "74xx:74LS573") (at 224.79 147.32 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000621d8451)
- (property "Reference" "U7" (id 0) (at 218.44 129.54 0))
- (property "Value" "74ALS573" (id 1) (at 231.14 129.54 0))
- (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 224.79 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "74xx/74hc573.pdf" (id 3) (at 224.79 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8e697b96-cf4c-43ef-b321-8c2422b088bf))
- (pin "10" (uuid 74855e0d-40e4-4940-a544-edae9207b2ea))
- (pin "11" (uuid d68dca9b-48b3-498b-9b5f-3b3838250f82))
- (pin "12" (uuid 59f60168-cced-43c9-aaa5-41a1a8a2f631))
- (pin "13" (uuid f6a3288e-9575-42bb-af05-a920d59aded8))
- (pin "14" (uuid ef94502b-f22d-4da7-a17f-4100090b03a1))
- (pin "15" (uuid 10b20c6b-8045-46d1-a965-0d7dd9a1b5fa))
- (pin "16" (uuid 082aed28-f9e8-49e7-96ee-b5aa9f0319c7))
- (pin "17" (uuid fe6d9604-2924-4f38-950b-a31e8a281973))
- (pin "18" (uuid f67bbef3-6f59-49ba-8890-d1f9dc9f9ad6))
- (pin "19" (uuid f503ea07-bcf1-4924-930a-6f7e9cd312f8))
- (pin "2" (uuid 645bdbdc-8f65-42ef-a021-2d3e7d74a739))
- (pin "20" (uuid b1ba92d5-0d41-4be9-b483-47d08dc1785d))
- (pin "3" (uuid bf6104a1-a529-4c00-b4ae-92001543f7ec))
- (pin "4" (uuid 8b963561-586b-4575-b721-87e7914602c6))
- (pin "5" (uuid da862bae-4511-4bb9-b18d-fa60a2737feb))
- (pin "6" (uuid b8c8c7a1-d546-4878-9de9-463ec76dff98))
- (pin "7" (uuid 82204892-ec79-4d38-a593-52fb9a9b4b87))
- (pin "8" (uuid dec284d9-246c-4619-8dcc-8f4886f9349e))
- (pin "9" (uuid ae8bb5ae-95ee-4e2d-8a0c-ae5b6149b4e3))
- )
- (symbol (lib_id "power:GND") (at 224.79 168.91 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000621e49f6)
- (property "Reference" "#PWR0116" (id 0) (at 224.79 175.26 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 224.917 173.3042 0))
- (property "Footprint" "" (id 2) (at 224.79 168.91 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 224.79 168.91 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid db6412d3-e6c3-4bdd-abf4-a8f55d56df31))
- )
- (symbol (lib_id "power:+5V") (at 234.315 176.53 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000621ed84d)
- (property "Reference" "#PWR0117" (id 0) (at 234.315 180.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 234.696 172.1358 0))
- (property "Footprint" "" (id 2) (at 234.315 176.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 234.315 176.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4ce9470f-5633-41bf-89ac-74a810939893))
- )
- (symbol (lib_id "74xx:74LS573") (at 157.48 220.98 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000062204c5c)
- (property "Reference" "U6" (id 0) (at 151.13 203.2 0))
- (property "Value" "74ALS573" (id 1) (at 163.83 203.2 0))
- (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 157.48 220.98 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "74xx/74hc573.pdf" (id 3) (at 157.48 220.98 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5e6153e6-2c19-46de-9a8e-b310a2a07861))
- (pin "10" (uuid 4346fe55-f906-453a-b81a-1c013104a598))
- (pin "11" (uuid c512fed3-9770-476b-b048-e781b4f3cd72))
- (pin "12" (uuid 56d2bc5d-fd72-4542-ab0f-053a5fd60efa))
- (pin "13" (uuid 09bbea88-8bd7-48ec-baae-1b4a9a11a40e))
- (pin "14" (uuid 41c18011-40db-4384-9ba4-c0158d0d9d6a))
- (pin "15" (uuid 0fb27e11-fde6-4a25-adbb-e9684771b369))
- (pin "16" (uuid 08ec951f-e7eb-41cf-9589-697107a98e88))
- (pin "17" (uuid 2eea20e6-112c-411a-b615-885ae773135a))
- (pin "18" (uuid 49fec31e-3712-4229-8142-b191d90a97d0))
- (pin "19" (uuid 022502e0-e724-4b75-bc35-3c5984dbeb76))
- (pin "2" (uuid d655bb0a-cbf9-4908-ad60-7024ff468fbd))
- (pin "20" (uuid 9f969b13-1795-4747-8326-93bdc304ed56))
- (pin "3" (uuid b9d4de74-d246-495d-8b63-12ab2133d6d6))
- (pin "4" (uuid 66ca01b3-51ff-4294-9b77-4492e98f6aec))
- (pin "5" (uuid fb0bf2a0-d317-42f7-b022-b5e05481f6be))
- (pin "6" (uuid 2ee28fa9-d785-45a1-9a1b-1be02ad8cd0b))
- (pin "7" (uuid 0e32af77-726b-4e11-9f99-2e2484ba9e9b))
- (pin "8" (uuid 8a427111-6480-4b0c-b097-d8b6a0ee1819))
- (pin "9" (uuid 152cd84e-bbed-4df5-a866-d1ab977b0966))
- )
- (symbol (lib_id "74xx:74LS04") (at 67.31 157.48 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000062222bb8)
- (property "Reference" "U9" (id 0) (at 67.31 149.4282 0))
- (property "Value" "74F04" (id 1) (at 67.31 151.7396 0))
- (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 67.31 157.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS04" (id 3) (at 67.31 157.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 17cf1c88-8d51-4538-aa76-e35ac22d0ed0))
- (pin "2" (uuid c3a69550-c4fa-45d1-9aba-0bba47699cca))
- (pin "3" (uuid 0df4d86c-488c-44f0-a8f7-4038e39d63b0))
- (pin "4" (uuid 900d33e6-e977-477c-9bb6-de2663d2d872))
- (pin "5" (uuid 5ed509c8-0f15-466d-a460-57d25455d010))
- (pin "6" (uuid e1ecc303-9af8-443a-a7e8-72badda258a9))
- (pin "8" (uuid 56190403-124b-4d24-b4fb-56f0b1400a98))
- (pin "9" (uuid 44a480d4-07a3-43e7-829c-9b2cd1f97067))
- (pin "10" (uuid 05a0a052-e08e-4d75-ad04-81626a30dfe8))
- (pin "11" (uuid b2533ff3-5073-4482-929c-d7cc6e97afc0))
- (pin "12" (uuid 06504b64-6b2d-481d-8371-953c79009aff))
- (pin "13" (uuid 37bec092-6a44-4074-a523-cfcbc70bd3b9))
- (pin "14" (uuid b206acaa-acfd-47c1-ae09-c13e57632799))
- (pin "7" (uuid 28f97568-2951-4114-be13-c36e4fbb868f))
- )
- (symbol (lib_id "Device:R_Small") (at 54.61 148.59 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006222d0b3)
- (property "Reference" "R35" (id 0) (at 56.1086 147.4216 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "4.7k" (id 1) (at 56.1086 149.733 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 54.61 148.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 54.61 148.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 112371bd-7aa2-4b47-b184-50d12afc2534))
- (pin "2" (uuid 5c32b099-dba7-4228-8a5e-c2156f635ce2))
- )
- (symbol (lib_id "power:+5V") (at 157.48 196.85 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 04e7f2f0-e029-40d4-8d0e-ae4faab3346d)
- (property "Reference" "#PWR0110" (id 0) (at 157.48 200.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 157.48 191.77 0))
- (property "Footprint" "" (id 2) (at 157.48 196.85 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 157.48 196.85 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c6af2963-5520-4de8-82ce-ee5d50499a2e))
- )
- (symbol (lib_id "power:+5V") (at 167.64 250.19 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 158550ca-0c3b-4e5f-b596-d1c9e13ff202)
- (property "Reference" "#PWR0109" (id 0) (at 167.64 254 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 167.64 245.11 0))
- (property "Footprint" "" (id 2) (at 167.64 250.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 167.64 250.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 795171bf-2a7d-4ea5-8a2e-7349477fc535))
- )
- (symbol (lib_id "Device:R_Small") (at 222.25 191.77 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 1c5035ec-288d-4511-99de-0f3081baef67)
- (property "Reference" "RN32-6" (id 0) (at 217.805 189.865 90))
- (property "Value" "4.7k" (id 1) (at 226.06 189.865 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 191.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 222.25 191.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dd009c27-4ce9-4f84-91f1-96d9f05ea73f))
- (pin "2" (uuid 3a98b264-bf93-454a-bddb-5a41ba5cf79b))
- )
- (symbol (lib_id "Device:R_Small") (at 222.25 184.15 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 24996b31-b9de-42a2-8267-48839913f7c5)
- (property "Reference" "RN32-3" (id 0) (at 217.805 182.245 90))
- (property "Value" "4.7k" (id 1) (at 226.06 182.245 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 184.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 222.25 184.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f551f71f-cb25-4817-b918-7c1ff10e26ef))
- (pin "2" (uuid 485de4e4-3d03-4918-8a32-29223a0015df))
- )
- (symbol (lib_id "Device:R_Small") (at 154.94 260.35 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 260a01f9-6b46-492c-a50c-1de9464642eb)
- (property "Reference" "RN33-4" (id 0) (at 150.495 258.445 90))
- (property "Value" "4.7k" (id 1) (at 158.75 258.445 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 260.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 154.94 260.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e3be43c2-d315-43a1-8a07-927d51b4925f))
- (pin "2" (uuid 57a950d8-6af1-4386-bfc9-45c63abfb680))
- )
- (symbol (lib_id "Device:R_Small") (at 154.94 270.51 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 2844b9cc-4618-4b44-8179-c4f5daa02415)
- (property "Reference" "RN33-8" (id 0) (at 150.495 268.605 90))
- (property "Value" "4.7k" (id 1) (at 158.75 268.605 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 270.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 154.94 270.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4b48c676-d9e6-4421-8a84-22eb04cafa5a))
- (pin "2" (uuid 38af01cb-98d3-4c88-a859-3e95e0162e7e))
- )
- (symbol (lib_id "power:+5V") (at 224.79 71.12 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 331e3e8d-675a-432e-a7b9-0aae9e6a2000)
- (property "Reference" "#PWR0118" (id 0) (at 224.79 74.93 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 221.615 69.215 0))
- (property "Footprint" "" (id 2) (at 224.79 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 224.79 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 213f6aad-8ac3-45e2-acc6-8a0f94cc3386))
- )
- (symbol (lib_id "Device:R_Small") (at 154.94 252.73 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 468a2c3d-b429-4a72-a509-b9471990ed45)
- (property "Reference" "RN33-1" (id 0) (at 150.495 250.825 90))
- (property "Value" "4.7k" (id 1) (at 158.75 250.825 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 252.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 154.94 252.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c3e542bf-5767-4c32-abb6-16ec52ac6ab9))
- (pin "2" (uuid a12f67c8-3c67-4647-98f3-fe178e888fc5))
- )
- (symbol (lib_id "Device:R_Small") (at 222.25 194.31 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 49456949-9c99-4cdf-9b38-050a18128029)
- (property "Reference" "RN32-7" (id 0) (at 217.805 192.405 90))
- (property "Value" "4.7k" (id 1) (at 226.06 192.405 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 194.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 222.25 194.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a4e42c01-5a9b-4091-bf5c-abdcfef5690e))
- (pin "2" (uuid d51811ea-a409-4323-bf6e-518d77d7fdac))
- )
- (symbol (lib_id "Device:R_Small") (at 222.25 196.85 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 496a424b-da5c-4406-974b-c1907d3b419c)
- (property "Reference" "RN32-8" (id 0) (at 217.805 194.945 90))
- (property "Value" "4.7k" (id 1) (at 226.06 194.945 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 196.85 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 222.25 196.85 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 9d8f86d1-492d-441c-9775-772069ea8212))
- (pin "2" (uuid df960b49-366a-4e4f-9b0a-e1d6917c7f15))
- )
- (symbol (lib_id "power:GND") (at 224.79 114.3 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 4cf73e82-1ef5-45f0-b054-8456be0dc9ea)
- (property "Reference" "#PWR0115" (id 0) (at 224.79 120.65 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 224.79 119.38 0))
- (property "Footprint" "" (id 2) (at 224.79 114.3 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 224.79 114.3 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c99cd79e-a64f-4b5a-8d92-645494748712))
- )
- (symbol (lib_id "Device:R_Small") (at 222.25 179.07 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 5326864b-33dc-48df-8cd7-e39318419795)
- (property "Reference" "RN32-1" (id 0) (at 217.805 177.165 90))
- (property "Value" "4.7k" (id 1) (at 226.06 177.165 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 179.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 222.25 179.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 7b00a577-de8f-4e22-83a8-8c52d949ab50))
- (pin "2" (uuid 5ba9576c-3216-4aa6-8519-acfddc0ebdec))
- )
- (symbol (lib_id "Device:R_Small") (at 222.25 199.39 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 60929790-30bb-4ce0-b4ba-18293d933dc8)
- (property "Reference" "RN32-9" (id 0) (at 217.805 197.485 90))
- (property "Value" "4.7k" (id 1) (at 226.06 197.485 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 199.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 222.25 199.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 185360b3-e686-4411-b81a-0ce8e3b77be0))
- (pin "2" (uuid fe7ace01-282e-4b84-a9c7-00b8f63344a2))
- )
- (symbol (lib_id "power:GND") (at 157.48 242.57 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 67810cda-f29c-4649-83e0-502c18aa6ba2)
- (property "Reference" "#PWR0113" (id 0) (at 157.48 248.92 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 157.48 247.65 0))
- (property "Footprint" "" (id 2) (at 157.48 242.57 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 157.48 242.57 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5f69449b-3619-4353-8596-f10b312c6b05))
- )
- (symbol (lib_id "Device:R_Small") (at 222.25 186.69 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 735f2f55-fb44-4d1c-8d7c-412fc4741e7c)
- (property "Reference" "RN32-4" (id 0) (at 217.805 184.785 90))
- (property "Value" "4.7k" (id 1) (at 226.06 184.785 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 186.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 222.25 186.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 480bd856-7f38-459d-94c9-a5ca5c637fc2))
- (pin "2" (uuid f14fbb6a-dbf8-4207-b3b8-81ebb8ea0d28))
- )
- (symbol (lib_id "Device:R_Small") (at 154.94 265.43 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 88307f6f-873e-4e5c-9189-dc600dc33e3a)
- (property "Reference" "RN33-6" (id 0) (at 150.495 263.525 90))
- (property "Value" "4.7k" (id 1) (at 158.75 263.525 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 265.43 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 154.94 265.43 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid df29c1be-2acc-422a-ac79-8b44b14bef81))
- (pin "2" (uuid c3a52c0f-cd7e-427a-9ce6-9c611f3256dc))
- )
- (symbol (lib_id "Device:R_Small") (at 222.25 189.23 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 8f1e88ab-d475-4e44-9341-66f388742aaf)
- (property "Reference" "RN32-5" (id 0) (at 217.805 187.325 90))
- (property "Value" "4.7k" (id 1) (at 226.06 187.325 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 189.23 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 222.25 189.23 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c63e5023-cd83-48cd-a70a-f0dd854be552))
- (pin "2" (uuid 27f1a3c6-0fd2-4c67-8486-9f86042939ab))
- )
- (symbol (lib_id "Device:R_Small") (at 154.94 262.89 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 8f900d6f-c263-449e-8d4c-cb8dac7d3d99)
- (property "Reference" "RN33-5" (id 0) (at 150.495 260.985 90))
- (property "Value" "4.7k" (id 1) (at 158.75 260.985 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 262.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 154.94 262.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3e472bf4-b390-4a92-8e18-4266153ad1cf))
- (pin "2" (uuid 804f2abe-2ca8-4262-a088-34ae3aeae49b))
- )
- (symbol (lib_id "Device:R_Small") (at 154.94 255.27 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 96f44869-f266-41c3-ae5b-b1aef4d6223b)
- (property "Reference" "RN33-2" (id 0) (at 150.495 253.365 90))
- (property "Value" "4.7k" (id 1) (at 158.75 253.365 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 255.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 154.94 255.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fa31a7c5-47de-4fad-9b5e-ac0eba427175))
- (pin "2" (uuid 51996bf6-36e3-452e-be21-4d81519f600b))
- )
- (symbol (lib_id "Device:R_Small") (at 154.94 267.97 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 97031960-9f52-43be-ac4c-678e00bb74e8)
- (property "Reference" "RN33-7" (id 0) (at 150.495 266.065 90))
- (property "Value" "4.7k" (id 1) (at 158.75 266.065 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 267.97 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 154.94 267.97 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1e9e68a0-b6a2-4c86-82c3-150415635163))
- (pin "2" (uuid b7b16b37-93f4-41d5-b863-f43e55e04d84))
- )
- (symbol (lib_id "Device:R_Small") (at 154.94 257.81 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 9e76d9a2-c621-4e71-bb04-39e0746d6252)
- (property "Reference" "RN33-3" (id 0) (at 150.495 255.905 90))
- (property "Value" "4.7k" (id 1) (at 158.75 255.905 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 257.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 154.94 257.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 632a618f-6a40-4bf8-9a84-47ebf23d4f71))
- (pin "2" (uuid a83cf8b5-b1dc-4e74-a79a-888279863495))
- )
- (symbol (lib_id "power:+5V") (at 54.61 143.51 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid a37215f7-4687-4eab-bf75-a163bcbf229c)
- (property "Reference" "#PWR0112" (id 0) (at 54.61 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 54.61 138.43 0))
- (property "Footprint" "" (id 2) (at 54.61 143.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 54.61 143.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d5737f21-b3e1-4912-8d2f-bbd1eb89d40b))
- )
- (symbol (lib_id "power:+5V") (at 224.79 125.73 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid afcd31c0-e580-45af-b800-46e7a868eadb)
- (property "Reference" "#PWR0114" (id 0) (at 224.79 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 224.79 120.65 0))
- (property "Footprint" "" (id 2) (at 224.79 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 224.79 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6a91b284-d51f-4ce7-8896-2ace98671043))
- )
- (symbol (lib_id "power:GND") (at 224.79 64.77 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid b247f677-c1e3-423d-8130-e708fe68dfc1)
- (property "Reference" "#PWR0119" (id 0) (at 224.79 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 228.6 67.31 0))
- (property "Footprint" "" (id 2) (at 224.79 64.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 224.79 64.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid bbfa041d-dc5d-484a-8cf9-743aa675e144))
- )
- (symbol (lib_id "Device:R_Small") (at 222.25 181.61 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid c187384b-bb18-40c6-ac2d-03a9010bd2ec)
- (property "Reference" "RN32-2" (id 0) (at 217.805 179.705 90))
- (property "Value" "4.7k" (id 1) (at 226.06 179.705 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 181.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 222.25 181.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6a5dfadd-a26d-43bd-abd1-fd9ce3e51169))
- (pin "2" (uuid deef88ba-88e8-46aa-abbb-010c615839a9))
- )
- )
|