x37_floppy_interface_2.kicad_sch 153 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid bea8315b-2ce6-441a-ac7f-0b67cf9c79a3)
  3. (paper "A3")
  4. (title_block
  5. (date "2022-09-22")
  6. )
  7. (lib_symbols
  8. (symbol "74xx:74LS06" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  9. (property "Reference" "U" (id 0) (at 0 1.27 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Value" "74LS06" (id 1) (at 0 -1.27 0)
  13. (effects (font (size 1.27 1.27)))
  14. )
  15. (property "Footprint" "" (id 2) (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS06" (id 3) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (property "ki_locked" "" (id 4) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)))
  23. )
  24. (property "ki_keywords" "TTL not inv OpenCol" (id 5) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (property "ki_description" "Inverter Open Collect" (id 6) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (property "ki_fp_filters" "DIP*W7.62mm*" (id 7) (at 0 0 0)
  31. (effects (font (size 1.27 1.27)) hide)
  32. )
  33. (symbol "74LS06_1_0"
  34. (polyline
  35. (pts
  36. (xy -3.81 3.81)
  37. (xy -3.81 -3.81)
  38. (xy 3.81 0)
  39. (xy -3.81 3.81)
  40. )
  41. (stroke (width 0.254) (type default) (color 0 0 0 0))
  42. (fill (type background))
  43. )
  44. (pin input line (at -7.62 0 0) (length 3.81)
  45. (name "~" (effects (font (size 1.27 1.27))))
  46. (number "1" (effects (font (size 1.27 1.27))))
  47. )
  48. (pin open_collector inverted (at 7.62 0 180) (length 3.81)
  49. (name "~" (effects (font (size 1.27 1.27))))
  50. (number "2" (effects (font (size 1.27 1.27))))
  51. )
  52. )
  53. (symbol "74LS06_2_0"
  54. (polyline
  55. (pts
  56. (xy -3.81 3.81)
  57. (xy -3.81 -3.81)
  58. (xy 3.81 0)
  59. (xy -3.81 3.81)
  60. )
  61. (stroke (width 0.254) (type default) (color 0 0 0 0))
  62. (fill (type background))
  63. )
  64. (pin input line (at -7.62 0 0) (length 3.81)
  65. (name "~" (effects (font (size 1.27 1.27))))
  66. (number "3" (effects (font (size 1.27 1.27))))
  67. )
  68. (pin open_collector inverted (at 7.62 0 180) (length 3.81)
  69. (name "~" (effects (font (size 1.27 1.27))))
  70. (number "4" (effects (font (size 1.27 1.27))))
  71. )
  72. )
  73. (symbol "74LS06_3_0"
  74. (polyline
  75. (pts
  76. (xy -3.81 3.81)
  77. (xy -3.81 -3.81)
  78. (xy 3.81 0)
  79. (xy -3.81 3.81)
  80. )
  81. (stroke (width 0.254) (type default) (color 0 0 0 0))
  82. (fill (type background))
  83. )
  84. (pin input line (at -7.62 0 0) (length 3.81)
  85. (name "~" (effects (font (size 1.27 1.27))))
  86. (number "5" (effects (font (size 1.27 1.27))))
  87. )
  88. (pin open_collector inverted (at 7.62 0 180) (length 3.81)
  89. (name "~" (effects (font (size 1.27 1.27))))
  90. (number "6" (effects (font (size 1.27 1.27))))
  91. )
  92. )
  93. (symbol "74LS06_4_0"
  94. (polyline
  95. (pts
  96. (xy -3.81 3.81)
  97. (xy -3.81 -3.81)
  98. (xy 3.81 0)
  99. (xy -3.81 3.81)
  100. )
  101. (stroke (width 0.254) (type default) (color 0 0 0 0))
  102. (fill (type background))
  103. )
  104. (pin open_collector inverted (at 7.62 0 180) (length 3.81)
  105. (name "~" (effects (font (size 1.27 1.27))))
  106. (number "8" (effects (font (size 1.27 1.27))))
  107. )
  108. (pin input line (at -7.62 0 0) (length 3.81)
  109. (name "~" (effects (font (size 1.27 1.27))))
  110. (number "9" (effects (font (size 1.27 1.27))))
  111. )
  112. )
  113. (symbol "74LS06_5_0"
  114. (polyline
  115. (pts
  116. (xy -3.81 3.81)
  117. (xy -3.81 -3.81)
  118. (xy 3.81 0)
  119. (xy -3.81 3.81)
  120. )
  121. (stroke (width 0.254) (type default) (color 0 0 0 0))
  122. (fill (type background))
  123. )
  124. (pin open_collector inverted (at 7.62 0 180) (length 3.81)
  125. (name "~" (effects (font (size 1.27 1.27))))
  126. (number "10" (effects (font (size 1.27 1.27))))
  127. )
  128. (pin input line (at -7.62 0 0) (length 3.81)
  129. (name "~" (effects (font (size 1.27 1.27))))
  130. (number "11" (effects (font (size 1.27 1.27))))
  131. )
  132. )
  133. (symbol "74LS06_6_0"
  134. (polyline
  135. (pts
  136. (xy -3.81 3.81)
  137. (xy -3.81 -3.81)
  138. (xy 3.81 0)
  139. (xy -3.81 3.81)
  140. )
  141. (stroke (width 0.254) (type default) (color 0 0 0 0))
  142. (fill (type background))
  143. )
  144. (pin open_collector inverted (at 7.62 0 180) (length 3.81)
  145. (name "~" (effects (font (size 1.27 1.27))))
  146. (number "12" (effects (font (size 1.27 1.27))))
  147. )
  148. (pin input line (at -7.62 0 0) (length 3.81)
  149. (name "~" (effects (font (size 1.27 1.27))))
  150. (number "13" (effects (font (size 1.27 1.27))))
  151. )
  152. )
  153. (symbol "74LS06_7_0"
  154. (pin power_in line (at 0 12.7 270) (length 5.08)
  155. (name "VCC" (effects (font (size 1.27 1.27))))
  156. (number "14" (effects (font (size 1.27 1.27))))
  157. )
  158. (pin power_in line (at 0 -12.7 90) (length 5.08)
  159. (name "GND" (effects (font (size 1.27 1.27))))
  160. (number "7" (effects (font (size 1.27 1.27))))
  161. )
  162. )
  163. (symbol "74LS06_7_1"
  164. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  165. (stroke (width 0.254) (type default) (color 0 0 0 0))
  166. (fill (type background))
  167. )
  168. )
  169. )
  170. (symbol "74xx:74LS175" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  171. (property "Reference" "U" (id 0) (at -7.62 13.97 0)
  172. (effects (font (size 1.27 1.27)))
  173. )
  174. (property "Value" "74LS175" (id 1) (at -7.62 -16.51 0)
  175. (effects (font (size 1.27 1.27)))
  176. )
  177. (property "Footprint" "" (id 2) (at 0 0 0)
  178. (effects (font (size 1.27 1.27)) hide)
  179. )
  180. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS175" (id 3) (at 0 0 0)
  181. (effects (font (size 1.27 1.27)) hide)
  182. )
  183. (property "ki_locked" "" (id 4) (at 0 0 0)
  184. (effects (font (size 1.27 1.27)))
  185. )
  186. (property "ki_keywords" "TTL REG REG4 DFF" (id 5) (at 0 0 0)
  187. (effects (font (size 1.27 1.27)) hide)
  188. )
  189. (property "ki_description" "4-bit D Flip-Flop, reset" (id 6) (at 0 0 0)
  190. (effects (font (size 1.27 1.27)) hide)
  191. )
  192. (property "ki_fp_filters" "DIP?16*" (id 7) (at 0 0 0)
  193. (effects (font (size 1.27 1.27)) hide)
  194. )
  195. (symbol "74LS175_1_0"
  196. (pin input line (at -12.7 -12.7 0) (length 5.08)
  197. (name "~{Mr}" (effects (font (size 1.27 1.27))))
  198. (number "1" (effects (font (size 1.27 1.27))))
  199. )
  200. (pin output line (at 12.7 0 180) (length 5.08)
  201. (name "Q2" (effects (font (size 1.27 1.27))))
  202. (number "10" (effects (font (size 1.27 1.27))))
  203. )
  204. (pin output line (at 12.7 -2.54 180) (length 5.08)
  205. (name "~{Q2}" (effects (font (size 1.27 1.27))))
  206. (number "11" (effects (font (size 1.27 1.27))))
  207. )
  208. (pin input line (at -12.7 0 0) (length 5.08)
  209. (name "D2" (effects (font (size 1.27 1.27))))
  210. (number "12" (effects (font (size 1.27 1.27))))
  211. )
  212. (pin input line (at -12.7 -5.08 0) (length 5.08)
  213. (name "D3" (effects (font (size 1.27 1.27))))
  214. (number "13" (effects (font (size 1.27 1.27))))
  215. )
  216. (pin output line (at 12.7 -7.62 180) (length 5.08)
  217. (name "~{Q3}" (effects (font (size 1.27 1.27))))
  218. (number "14" (effects (font (size 1.27 1.27))))
  219. )
  220. (pin output line (at 12.7 -5.08 180) (length 5.08)
  221. (name "Q3" (effects (font (size 1.27 1.27))))
  222. (number "15" (effects (font (size 1.27 1.27))))
  223. )
  224. (pin power_in line (at 0 17.78 270) (length 5.08)
  225. (name "VCC" (effects (font (size 1.27 1.27))))
  226. (number "16" (effects (font (size 1.27 1.27))))
  227. )
  228. (pin output line (at 12.7 10.16 180) (length 5.08)
  229. (name "Q0" (effects (font (size 1.27 1.27))))
  230. (number "2" (effects (font (size 1.27 1.27))))
  231. )
  232. (pin output line (at 12.7 7.62 180) (length 5.08)
  233. (name "~{Q0}" (effects (font (size 1.27 1.27))))
  234. (number "3" (effects (font (size 1.27 1.27))))
  235. )
  236. (pin input line (at -12.7 10.16 0) (length 5.08)
  237. (name "D0" (effects (font (size 1.27 1.27))))
  238. (number "4" (effects (font (size 1.27 1.27))))
  239. )
  240. (pin input line (at -12.7 5.08 0) (length 5.08)
  241. (name "D1" (effects (font (size 1.27 1.27))))
  242. (number "5" (effects (font (size 1.27 1.27))))
  243. )
  244. (pin output line (at 12.7 2.54 180) (length 5.08)
  245. (name "~{Q1}" (effects (font (size 1.27 1.27))))
  246. (number "6" (effects (font (size 1.27 1.27))))
  247. )
  248. (pin output line (at 12.7 5.08 180) (length 5.08)
  249. (name "Q1" (effects (font (size 1.27 1.27))))
  250. (number "7" (effects (font (size 1.27 1.27))))
  251. )
  252. (pin power_in line (at 0 -20.32 90) (length 5.08)
  253. (name "GND" (effects (font (size 1.27 1.27))))
  254. (number "8" (effects (font (size 1.27 1.27))))
  255. )
  256. (pin input clock (at -12.7 -10.16 0) (length 5.08)
  257. (name "Cp" (effects (font (size 1.27 1.27))))
  258. (number "9" (effects (font (size 1.27 1.27))))
  259. )
  260. )
  261. (symbol "74LS175_1_1"
  262. (rectangle (start -7.62 12.7) (end 7.62 -15.24)
  263. (stroke (width 0.254) (type default) (color 0 0 0 0))
  264. (fill (type background))
  265. )
  266. )
  267. )
  268. (symbol "74xx:74LS245" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  269. (property "Reference" "U" (id 0) (at -7.62 16.51 0)
  270. (effects (font (size 1.27 1.27)))
  271. )
  272. (property "Value" "74LS245" (id 1) (at -7.62 -16.51 0)
  273. (effects (font (size 1.27 1.27)))
  274. )
  275. (property "Footprint" "" (id 2) (at 0 0 0)
  276. (effects (font (size 1.27 1.27)) hide)
  277. )
  278. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS245" (id 3) (at 0 0 0)
  279. (effects (font (size 1.27 1.27)) hide)
  280. )
  281. (property "ki_locked" "" (id 4) (at 0 0 0)
  282. (effects (font (size 1.27 1.27)))
  283. )
  284. (property "ki_keywords" "TTL BUS 3State" (id 5) (at 0 0 0)
  285. (effects (font (size 1.27 1.27)) hide)
  286. )
  287. (property "ki_description" "Octal BUS Transceivers, 3-State outputs" (id 6) (at 0 0 0)
  288. (effects (font (size 1.27 1.27)) hide)
  289. )
  290. (property "ki_fp_filters" "DIP?20*" (id 7) (at 0 0 0)
  291. (effects (font (size 1.27 1.27)) hide)
  292. )
  293. (symbol "74LS245_1_0"
  294. (polyline
  295. (pts
  296. (xy -0.635 -1.27)
  297. (xy -0.635 1.27)
  298. (xy 0.635 1.27)
  299. )
  300. (stroke (width 0) (type default) (color 0 0 0 0))
  301. (fill (type none))
  302. )
  303. (polyline
  304. (pts
  305. (xy -1.27 -1.27)
  306. (xy 0.635 -1.27)
  307. (xy 0.635 1.27)
  308. (xy 1.27 1.27)
  309. )
  310. (stroke (width 0) (type default) (color 0 0 0 0))
  311. (fill (type none))
  312. )
  313. (pin input line (at -12.7 -10.16 0) (length 5.08)
  314. (name "A->B" (effects (font (size 1.27 1.27))))
  315. (number "1" (effects (font (size 1.27 1.27))))
  316. )
  317. (pin power_in line (at 0 -20.32 90) (length 5.08)
  318. (name "GND" (effects (font (size 1.27 1.27))))
  319. (number "10" (effects (font (size 1.27 1.27))))
  320. )
  321. (pin tri_state line (at 12.7 -5.08 180) (length 5.08)
  322. (name "B7" (effects (font (size 1.27 1.27))))
  323. (number "11" (effects (font (size 1.27 1.27))))
  324. )
  325. (pin tri_state line (at 12.7 -2.54 180) (length 5.08)
  326. (name "B6" (effects (font (size 1.27 1.27))))
  327. (number "12" (effects (font (size 1.27 1.27))))
  328. )
  329. (pin tri_state line (at 12.7 0 180) (length 5.08)
  330. (name "B5" (effects (font (size 1.27 1.27))))
  331. (number "13" (effects (font (size 1.27 1.27))))
  332. )
  333. (pin tri_state line (at 12.7 2.54 180) (length 5.08)
  334. (name "B4" (effects (font (size 1.27 1.27))))
  335. (number "14" (effects (font (size 1.27 1.27))))
  336. )
  337. (pin tri_state line (at 12.7 5.08 180) (length 5.08)
  338. (name "B3" (effects (font (size 1.27 1.27))))
  339. (number "15" (effects (font (size 1.27 1.27))))
  340. )
  341. (pin tri_state line (at 12.7 7.62 180) (length 5.08)
  342. (name "B2" (effects (font (size 1.27 1.27))))
  343. (number "16" (effects (font (size 1.27 1.27))))
  344. )
  345. (pin tri_state line (at 12.7 10.16 180) (length 5.08)
  346. (name "B1" (effects (font (size 1.27 1.27))))
  347. (number "17" (effects (font (size 1.27 1.27))))
  348. )
  349. (pin tri_state line (at 12.7 12.7 180) (length 5.08)
  350. (name "B0" (effects (font (size 1.27 1.27))))
  351. (number "18" (effects (font (size 1.27 1.27))))
  352. )
  353. (pin input inverted (at -12.7 -12.7 0) (length 5.08)
  354. (name "CE" (effects (font (size 1.27 1.27))))
  355. (number "19" (effects (font (size 1.27 1.27))))
  356. )
  357. (pin tri_state line (at -12.7 12.7 0) (length 5.08)
  358. (name "A0" (effects (font (size 1.27 1.27))))
  359. (number "2" (effects (font (size 1.27 1.27))))
  360. )
  361. (pin power_in line (at 0 20.32 270) (length 5.08)
  362. (name "VCC" (effects (font (size 1.27 1.27))))
  363. (number "20" (effects (font (size 1.27 1.27))))
  364. )
  365. (pin tri_state line (at -12.7 10.16 0) (length 5.08)
  366. (name "A1" (effects (font (size 1.27 1.27))))
  367. (number "3" (effects (font (size 1.27 1.27))))
  368. )
  369. (pin tri_state line (at -12.7 7.62 0) (length 5.08)
  370. (name "A2" (effects (font (size 1.27 1.27))))
  371. (number "4" (effects (font (size 1.27 1.27))))
  372. )
  373. (pin tri_state line (at -12.7 5.08 0) (length 5.08)
  374. (name "A3" (effects (font (size 1.27 1.27))))
  375. (number "5" (effects (font (size 1.27 1.27))))
  376. )
  377. (pin tri_state line (at -12.7 2.54 0) (length 5.08)
  378. (name "A4" (effects (font (size 1.27 1.27))))
  379. (number "6" (effects (font (size 1.27 1.27))))
  380. )
  381. (pin tri_state line (at -12.7 0 0) (length 5.08)
  382. (name "A5" (effects (font (size 1.27 1.27))))
  383. (number "7" (effects (font (size 1.27 1.27))))
  384. )
  385. (pin tri_state line (at -12.7 -2.54 0) (length 5.08)
  386. (name "A6" (effects (font (size 1.27 1.27))))
  387. (number "8" (effects (font (size 1.27 1.27))))
  388. )
  389. (pin tri_state line (at -12.7 -5.08 0) (length 5.08)
  390. (name "A7" (effects (font (size 1.27 1.27))))
  391. (number "9" (effects (font (size 1.27 1.27))))
  392. )
  393. )
  394. (symbol "74LS245_1_1"
  395. (rectangle (start -7.62 15.24) (end 7.62 -15.24)
  396. (stroke (width 0.254) (type default) (color 0 0 0 0))
  397. (fill (type background))
  398. )
  399. )
  400. )
  401. (symbol "74xx:74LS273" (in_bom yes) (on_board yes)
  402. (property "Reference" "U" (id 0) (at -7.62 16.51 0)
  403. (effects (font (size 1.27 1.27)))
  404. )
  405. (property "Value" "74LS273" (id 1) (at -7.62 -16.51 0)
  406. (effects (font (size 1.27 1.27)))
  407. )
  408. (property "Footprint" "" (id 2) (at 0 0 0)
  409. (effects (font (size 1.27 1.27)) hide)
  410. )
  411. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS273" (id 3) (at 0 0 0)
  412. (effects (font (size 1.27 1.27)) hide)
  413. )
  414. (property "ki_keywords" "TTL DFF DFF8" (id 4) (at 0 0 0)
  415. (effects (font (size 1.27 1.27)) hide)
  416. )
  417. (property "ki_description" "8-bit D Flip-Flop, reset" (id 5) (at 0 0 0)
  418. (effects (font (size 1.27 1.27)) hide)
  419. )
  420. (property "ki_fp_filters" "DIP?20* SO?20* SOIC?20*" (id 6) (at 0 0 0)
  421. (effects (font (size 1.27 1.27)) hide)
  422. )
  423. (symbol "74LS273_1_0"
  424. (pin input line (at -12.7 -12.7 0) (length 5.08)
  425. (name "~{Mr}" (effects (font (size 1.27 1.27))))
  426. (number "1" (effects (font (size 1.27 1.27))))
  427. )
  428. (pin power_in line (at 0 -20.32 90) (length 5.08)
  429. (name "GND" (effects (font (size 1.27 1.27))))
  430. (number "10" (effects (font (size 1.27 1.27))))
  431. )
  432. (pin input clock (at -12.7 -10.16 0) (length 5.08)
  433. (name "Cp" (effects (font (size 1.27 1.27))))
  434. (number "11" (effects (font (size 1.27 1.27))))
  435. )
  436. (pin output line (at 12.7 2.54 180) (length 5.08)
  437. (name "Q4" (effects (font (size 1.27 1.27))))
  438. (number "12" (effects (font (size 1.27 1.27))))
  439. )
  440. (pin input line (at -12.7 2.54 0) (length 5.08)
  441. (name "D4" (effects (font (size 1.27 1.27))))
  442. (number "13" (effects (font (size 1.27 1.27))))
  443. )
  444. (pin input line (at -12.7 0 0) (length 5.08)
  445. (name "D5" (effects (font (size 1.27 1.27))))
  446. (number "14" (effects (font (size 1.27 1.27))))
  447. )
  448. (pin output line (at 12.7 0 180) (length 5.08)
  449. (name "Q5" (effects (font (size 1.27 1.27))))
  450. (number "15" (effects (font (size 1.27 1.27))))
  451. )
  452. (pin output line (at 12.7 -2.54 180) (length 5.08)
  453. (name "Q6" (effects (font (size 1.27 1.27))))
  454. (number "16" (effects (font (size 1.27 1.27))))
  455. )
  456. (pin input line (at -12.7 -2.54 0) (length 5.08)
  457. (name "D6" (effects (font (size 1.27 1.27))))
  458. (number "17" (effects (font (size 1.27 1.27))))
  459. )
  460. (pin input line (at -12.7 -5.08 0) (length 5.08)
  461. (name "D7" (effects (font (size 1.27 1.27))))
  462. (number "18" (effects (font (size 1.27 1.27))))
  463. )
  464. (pin output line (at 12.7 -5.08 180) (length 5.08)
  465. (name "Q7" (effects (font (size 1.27 1.27))))
  466. (number "19" (effects (font (size 1.27 1.27))))
  467. )
  468. (pin output line (at 12.7 12.7 180) (length 5.08)
  469. (name "Q0" (effects (font (size 1.27 1.27))))
  470. (number "2" (effects (font (size 1.27 1.27))))
  471. )
  472. (pin power_in line (at 0 20.32 270) (length 5.08)
  473. (name "VCC" (effects (font (size 1.27 1.27))))
  474. (number "20" (effects (font (size 1.27 1.27))))
  475. )
  476. (pin input line (at -12.7 12.7 0) (length 5.08)
  477. (name "D0" (effects (font (size 1.27 1.27))))
  478. (number "3" (effects (font (size 1.27 1.27))))
  479. )
  480. (pin input line (at -12.7 10.16 0) (length 5.08)
  481. (name "D1" (effects (font (size 1.27 1.27))))
  482. (number "4" (effects (font (size 1.27 1.27))))
  483. )
  484. (pin output line (at 12.7 10.16 180) (length 5.08)
  485. (name "Q1" (effects (font (size 1.27 1.27))))
  486. (number "5" (effects (font (size 1.27 1.27))))
  487. )
  488. (pin output line (at 12.7 7.62 180) (length 5.08)
  489. (name "Q2" (effects (font (size 1.27 1.27))))
  490. (number "6" (effects (font (size 1.27 1.27))))
  491. )
  492. (pin input line (at -12.7 7.62 0) (length 5.08)
  493. (name "D2" (effects (font (size 1.27 1.27))))
  494. (number "7" (effects (font (size 1.27 1.27))))
  495. )
  496. (pin input line (at -12.7 5.08 0) (length 5.08)
  497. (name "D3" (effects (font (size 1.27 1.27))))
  498. (number "8" (effects (font (size 1.27 1.27))))
  499. )
  500. (pin output line (at 12.7 5.08 180) (length 5.08)
  501. (name "Q3" (effects (font (size 1.27 1.27))))
  502. (number "9" (effects (font (size 1.27 1.27))))
  503. )
  504. )
  505. (symbol "74LS273_1_1"
  506. (rectangle (start -7.62 15.24) (end 7.62 -15.24)
  507. (stroke (width 0.254) (type default) (color 0 0 0 0))
  508. (fill (type background))
  509. )
  510. )
  511. )
  512. (symbol "74xx:74LS38" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  513. (property "Reference" "U" (id 0) (at 0 1.27 0)
  514. (effects (font (size 1.27 1.27)))
  515. )
  516. (property "Value" "74LS38" (id 1) (at 0 -1.27 0)
  517. (effects (font (size 1.27 1.27)))
  518. )
  519. (property "Footprint" "" (id 2) (at 0 0 0)
  520. (effects (font (size 1.27 1.27)) hide)
  521. )
  522. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS38" (id 3) (at 0 0 0)
  523. (effects (font (size 1.27 1.27)) hide)
  524. )
  525. (property "ki_locked" "" (id 4) (at 0 0 0)
  526. (effects (font (size 1.27 1.27)))
  527. )
  528. (property "ki_keywords" "TTL Nand2 OpenCol Buffer" (id 5) (at 0 0 0)
  529. (effects (font (size 1.27 1.27)) hide)
  530. )
  531. (property "ki_description" "Quad Buffer 2-input NAND Open collector" (id 6) (at 0 0 0)
  532. (effects (font (size 1.27 1.27)) hide)
  533. )
  534. (property "ki_fp_filters" "DIP*W7.62mm*" (id 7) (at 0 0 0)
  535. (effects (font (size 1.27 1.27)) hide)
  536. )
  537. (symbol "74LS38_1_1"
  538. (arc (start 0 -3.81) (mid 3.81 0) (end 0 3.81)
  539. (stroke (width 0.254) (type default) (color 0 0 0 0))
  540. (fill (type background))
  541. )
  542. (polyline
  543. (pts
  544. (xy 0 3.81)
  545. (xy -3.81 3.81)
  546. (xy -3.81 -3.81)
  547. (xy 0 -3.81)
  548. )
  549. (stroke (width 0.254) (type default) (color 0 0 0 0))
  550. (fill (type background))
  551. )
  552. (pin input line (at -7.62 2.54 0) (length 3.81)
  553. (name "~" (effects (font (size 1.27 1.27))))
  554. (number "1" (effects (font (size 1.27 1.27))))
  555. )
  556. (pin input line (at -7.62 -2.54 0) (length 3.81)
  557. (name "~" (effects (font (size 1.27 1.27))))
  558. (number "2" (effects (font (size 1.27 1.27))))
  559. )
  560. (pin open_collector inverted (at 7.62 0 180) (length 3.81)
  561. (name "~" (effects (font (size 1.27 1.27))))
  562. (number "3" (effects (font (size 1.27 1.27))))
  563. )
  564. )
  565. (symbol "74LS38_1_2"
  566. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  567. (stroke (width 0.254) (type default) (color 0 0 0 0))
  568. (fill (type none))
  569. )
  570. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  571. (stroke (width 0.254) (type default) (color 0 0 0 0))
  572. (fill (type background))
  573. )
  574. (polyline
  575. (pts
  576. (xy -3.81 -3.81)
  577. (xy -0.635 -3.81)
  578. )
  579. (stroke (width 0.254) (type default) (color 0 0 0 0))
  580. (fill (type background))
  581. )
  582. (polyline
  583. (pts
  584. (xy -3.81 3.81)
  585. (xy -0.635 3.81)
  586. )
  587. (stroke (width 0.254) (type default) (color 0 0 0 0))
  588. (fill (type background))
  589. )
  590. (polyline
  591. (pts
  592. (xy -0.635 3.81)
  593. (xy -3.81 3.81)
  594. (xy -3.81 3.81)
  595. (xy -3.556 3.4036)
  596. (xy -3.0226 2.2606)
  597. (xy -2.6924 1.0414)
  598. (xy -2.6162 -0.254)
  599. (xy -2.7686 -1.4986)
  600. (xy -3.175 -2.7178)
  601. (xy -3.81 -3.81)
  602. (xy -3.81 -3.81)
  603. (xy -0.635 -3.81)
  604. )
  605. (stroke (width -25.4) (type default) (color 0 0 0 0))
  606. (fill (type background))
  607. )
  608. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  609. (stroke (width 0.254) (type default) (color 0 0 0 0))
  610. (fill (type background))
  611. )
  612. (pin input inverted (at -7.62 2.54 0) (length 4.318)
  613. (name "~" (effects (font (size 1.27 1.27))))
  614. (number "1" (effects (font (size 1.27 1.27))))
  615. )
  616. (pin input inverted (at -7.62 -2.54 0) (length 4.318)
  617. (name "~" (effects (font (size 1.27 1.27))))
  618. (number "2" (effects (font (size 1.27 1.27))))
  619. )
  620. (pin open_collector line (at 7.62 0 180) (length 3.81)
  621. (name "~" (effects (font (size 1.27 1.27))))
  622. (number "3" (effects (font (size 1.27 1.27))))
  623. )
  624. )
  625. (symbol "74LS38_2_1"
  626. (arc (start 0 -3.81) (mid 3.81 0) (end 0 3.81)
  627. (stroke (width 0.254) (type default) (color 0 0 0 0))
  628. (fill (type background))
  629. )
  630. (polyline
  631. (pts
  632. (xy 0 3.81)
  633. (xy -3.81 3.81)
  634. (xy -3.81 -3.81)
  635. (xy 0 -3.81)
  636. )
  637. (stroke (width 0.254) (type default) (color 0 0 0 0))
  638. (fill (type background))
  639. )
  640. (pin input line (at -7.62 2.54 0) (length 3.81)
  641. (name "~" (effects (font (size 1.27 1.27))))
  642. (number "4" (effects (font (size 1.27 1.27))))
  643. )
  644. (pin input line (at -7.62 -2.54 0) (length 3.81)
  645. (name "~" (effects (font (size 1.27 1.27))))
  646. (number "5" (effects (font (size 1.27 1.27))))
  647. )
  648. (pin open_collector inverted (at 7.62 0 180) (length 3.81)
  649. (name "~" (effects (font (size 1.27 1.27))))
  650. (number "6" (effects (font (size 1.27 1.27))))
  651. )
  652. )
  653. (symbol "74LS38_2_2"
  654. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  655. (stroke (width 0.254) (type default) (color 0 0 0 0))
  656. (fill (type none))
  657. )
  658. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  659. (stroke (width 0.254) (type default) (color 0 0 0 0))
  660. (fill (type background))
  661. )
  662. (polyline
  663. (pts
  664. (xy -3.81 -3.81)
  665. (xy -0.635 -3.81)
  666. )
  667. (stroke (width 0.254) (type default) (color 0 0 0 0))
  668. (fill (type background))
  669. )
  670. (polyline
  671. (pts
  672. (xy -3.81 3.81)
  673. (xy -0.635 3.81)
  674. )
  675. (stroke (width 0.254) (type default) (color 0 0 0 0))
  676. (fill (type background))
  677. )
  678. (polyline
  679. (pts
  680. (xy -0.635 3.81)
  681. (xy -3.81 3.81)
  682. (xy -3.81 3.81)
  683. (xy -3.556 3.4036)
  684. (xy -3.0226 2.2606)
  685. (xy -2.6924 1.0414)
  686. (xy -2.6162 -0.254)
  687. (xy -2.7686 -1.4986)
  688. (xy -3.175 -2.7178)
  689. (xy -3.81 -3.81)
  690. (xy -3.81 -3.81)
  691. (xy -0.635 -3.81)
  692. )
  693. (stroke (width -25.4) (type default) (color 0 0 0 0))
  694. (fill (type background))
  695. )
  696. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  697. (stroke (width 0.254) (type default) (color 0 0 0 0))
  698. (fill (type background))
  699. )
  700. (pin input inverted (at -7.62 2.54 0) (length 4.318)
  701. (name "~" (effects (font (size 1.27 1.27))))
  702. (number "4" (effects (font (size 1.27 1.27))))
  703. )
  704. (pin input inverted (at -7.62 -2.54 0) (length 4.318)
  705. (name "~" (effects (font (size 1.27 1.27))))
  706. (number "5" (effects (font (size 1.27 1.27))))
  707. )
  708. (pin open_collector line (at 7.62 0 180) (length 3.81)
  709. (name "~" (effects (font (size 1.27 1.27))))
  710. (number "6" (effects (font (size 1.27 1.27))))
  711. )
  712. )
  713. (symbol "74LS38_3_1"
  714. (arc (start 0 -3.81) (mid 3.81 0) (end 0 3.81)
  715. (stroke (width 0.254) (type default) (color 0 0 0 0))
  716. (fill (type background))
  717. )
  718. (polyline
  719. (pts
  720. (xy 0 3.81)
  721. (xy -3.81 3.81)
  722. (xy -3.81 -3.81)
  723. (xy 0 -3.81)
  724. )
  725. (stroke (width 0.254) (type default) (color 0 0 0 0))
  726. (fill (type background))
  727. )
  728. (pin input line (at -7.62 -2.54 0) (length 3.81)
  729. (name "~" (effects (font (size 1.27 1.27))))
  730. (number "10" (effects (font (size 1.27 1.27))))
  731. )
  732. (pin open_collector inverted (at 7.62 0 180) (length 3.81)
  733. (name "~" (effects (font (size 1.27 1.27))))
  734. (number "8" (effects (font (size 1.27 1.27))))
  735. )
  736. (pin input line (at -7.62 2.54 0) (length 3.81)
  737. (name "~" (effects (font (size 1.27 1.27))))
  738. (number "9" (effects (font (size 1.27 1.27))))
  739. )
  740. )
  741. (symbol "74LS38_3_2"
  742. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  743. (stroke (width 0.254) (type default) (color 0 0 0 0))
  744. (fill (type none))
  745. )
  746. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  747. (stroke (width 0.254) (type default) (color 0 0 0 0))
  748. (fill (type background))
  749. )
  750. (polyline
  751. (pts
  752. (xy -3.81 -3.81)
  753. (xy -0.635 -3.81)
  754. )
  755. (stroke (width 0.254) (type default) (color 0 0 0 0))
  756. (fill (type background))
  757. )
  758. (polyline
  759. (pts
  760. (xy -3.81 3.81)
  761. (xy -0.635 3.81)
  762. )
  763. (stroke (width 0.254) (type default) (color 0 0 0 0))
  764. (fill (type background))
  765. )
  766. (polyline
  767. (pts
  768. (xy -0.635 3.81)
  769. (xy -3.81 3.81)
  770. (xy -3.81 3.81)
  771. (xy -3.556 3.4036)
  772. (xy -3.0226 2.2606)
  773. (xy -2.6924 1.0414)
  774. (xy -2.6162 -0.254)
  775. (xy -2.7686 -1.4986)
  776. (xy -3.175 -2.7178)
  777. (xy -3.81 -3.81)
  778. (xy -3.81 -3.81)
  779. (xy -0.635 -3.81)
  780. )
  781. (stroke (width -25.4) (type default) (color 0 0 0 0))
  782. (fill (type background))
  783. )
  784. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  785. (stroke (width 0.254) (type default) (color 0 0 0 0))
  786. (fill (type background))
  787. )
  788. (pin input inverted (at -7.62 -2.54 0) (length 4.318)
  789. (name "~" (effects (font (size 1.27 1.27))))
  790. (number "10" (effects (font (size 1.27 1.27))))
  791. )
  792. (pin open_collector line (at 7.62 0 180) (length 3.81)
  793. (name "~" (effects (font (size 1.27 1.27))))
  794. (number "8" (effects (font (size 1.27 1.27))))
  795. )
  796. (pin input inverted (at -7.62 2.54 0) (length 4.318)
  797. (name "~" (effects (font (size 1.27 1.27))))
  798. (number "9" (effects (font (size 1.27 1.27))))
  799. )
  800. )
  801. (symbol "74LS38_4_1"
  802. (arc (start 0 -3.81) (mid 3.81 0) (end 0 3.81)
  803. (stroke (width 0.254) (type default) (color 0 0 0 0))
  804. (fill (type background))
  805. )
  806. (polyline
  807. (pts
  808. (xy 0 3.81)
  809. (xy -3.81 3.81)
  810. (xy -3.81 -3.81)
  811. (xy 0 -3.81)
  812. )
  813. (stroke (width 0.254) (type default) (color 0 0 0 0))
  814. (fill (type background))
  815. )
  816. (pin open_collector inverted (at 7.62 0 180) (length 3.81)
  817. (name "~" (effects (font (size 1.27 1.27))))
  818. (number "11" (effects (font (size 1.27 1.27))))
  819. )
  820. (pin input line (at -7.62 2.54 0) (length 3.81)
  821. (name "~" (effects (font (size 1.27 1.27))))
  822. (number "12" (effects (font (size 1.27 1.27))))
  823. )
  824. (pin input line (at -7.62 -2.54 0) (length 3.81)
  825. (name "~" (effects (font (size 1.27 1.27))))
  826. (number "13" (effects (font (size 1.27 1.27))))
  827. )
  828. )
  829. (symbol "74LS38_4_2"
  830. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  831. (stroke (width 0.254) (type default) (color 0 0 0 0))
  832. (fill (type none))
  833. )
  834. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  835. (stroke (width 0.254) (type default) (color 0 0 0 0))
  836. (fill (type background))
  837. )
  838. (polyline
  839. (pts
  840. (xy -3.81 -3.81)
  841. (xy -0.635 -3.81)
  842. )
  843. (stroke (width 0.254) (type default) (color 0 0 0 0))
  844. (fill (type background))
  845. )
  846. (polyline
  847. (pts
  848. (xy -3.81 3.81)
  849. (xy -0.635 3.81)
  850. )
  851. (stroke (width 0.254) (type default) (color 0 0 0 0))
  852. (fill (type background))
  853. )
  854. (polyline
  855. (pts
  856. (xy -0.635 3.81)
  857. (xy -3.81 3.81)
  858. (xy -3.81 3.81)
  859. (xy -3.556 3.4036)
  860. (xy -3.0226 2.2606)
  861. (xy -2.6924 1.0414)
  862. (xy -2.6162 -0.254)
  863. (xy -2.7686 -1.4986)
  864. (xy -3.175 -2.7178)
  865. (xy -3.81 -3.81)
  866. (xy -3.81 -3.81)
  867. (xy -0.635 -3.81)
  868. )
  869. (stroke (width -25.4) (type default) (color 0 0 0 0))
  870. (fill (type background))
  871. )
  872. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  873. (stroke (width 0.254) (type default) (color 0 0 0 0))
  874. (fill (type background))
  875. )
  876. (pin open_collector line (at 7.62 0 180) (length 3.81)
  877. (name "~" (effects (font (size 1.27 1.27))))
  878. (number "11" (effects (font (size 1.27 1.27))))
  879. )
  880. (pin input inverted (at -7.62 2.54 0) (length 4.318)
  881. (name "~" (effects (font (size 1.27 1.27))))
  882. (number "12" (effects (font (size 1.27 1.27))))
  883. )
  884. (pin input inverted (at -7.62 -2.54 0) (length 4.318)
  885. (name "~" (effects (font (size 1.27 1.27))))
  886. (number "13" (effects (font (size 1.27 1.27))))
  887. )
  888. )
  889. (symbol "74LS38_5_0"
  890. (pin power_in line (at 0 12.7 270) (length 5.08)
  891. (name "VCC" (effects (font (size 1.27 1.27))))
  892. (number "14" (effects (font (size 1.27 1.27))))
  893. )
  894. (pin power_in line (at 0 -12.7 90) (length 5.08)
  895. (name "GND" (effects (font (size 1.27 1.27))))
  896. (number "7" (effects (font (size 1.27 1.27))))
  897. )
  898. )
  899. (symbol "74LS38_5_1"
  900. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  901. (stroke (width 0.254) (type default) (color 0 0 0 0))
  902. (fill (type background))
  903. )
  904. )
  905. )
  906. (symbol "74xx:74LS86" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  907. (property "Reference" "U" (id 0) (at 0 1.27 0)
  908. (effects (font (size 1.27 1.27)))
  909. )
  910. (property "Value" "74LS86" (id 1) (at 0 -1.27 0)
  911. (effects (font (size 1.27 1.27)))
  912. )
  913. (property "Footprint" "" (id 2) (at 0 0 0)
  914. (effects (font (size 1.27 1.27)) hide)
  915. )
  916. (property "Datasheet" "74xx/74ls86.pdf" (id 3) (at 0 0 0)
  917. (effects (font (size 1.27 1.27)) hide)
  918. )
  919. (property "ki_locked" "" (id 4) (at 0 0 0)
  920. (effects (font (size 1.27 1.27)))
  921. )
  922. (property "ki_keywords" "TTL XOR2" (id 5) (at 0 0 0)
  923. (effects (font (size 1.27 1.27)) hide)
  924. )
  925. (property "ki_description" "Quad 2-input XOR" (id 6) (at 0 0 0)
  926. (effects (font (size 1.27 1.27)) hide)
  927. )
  928. (property "ki_fp_filters" "DIP*W7.62mm*" (id 7) (at 0 0 0)
  929. (effects (font (size 1.27 1.27)) hide)
  930. )
  931. (symbol "74LS86_1_0"
  932. (arc (start -4.4196 -3.81) (mid -3.2033 0) (end -4.4196 3.81)
  933. (stroke (width 0.254) (type default) (color 0 0 0 0))
  934. (fill (type none))
  935. )
  936. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  937. (stroke (width 0.254) (type default) (color 0 0 0 0))
  938. (fill (type none))
  939. )
  940. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  941. (stroke (width 0.254) (type default) (color 0 0 0 0))
  942. (fill (type background))
  943. )
  944. (polyline
  945. (pts
  946. (xy -3.81 -3.81)
  947. (xy -0.635 -3.81)
  948. )
  949. (stroke (width 0.254) (type default) (color 0 0 0 0))
  950. (fill (type background))
  951. )
  952. (polyline
  953. (pts
  954. (xy -3.81 3.81)
  955. (xy -0.635 3.81)
  956. )
  957. (stroke (width 0.254) (type default) (color 0 0 0 0))
  958. (fill (type background))
  959. )
  960. (polyline
  961. (pts
  962. (xy -0.635 3.81)
  963. (xy -3.81 3.81)
  964. (xy -3.81 3.81)
  965. (xy -3.556 3.4036)
  966. (xy -3.0226 2.2606)
  967. (xy -2.6924 1.0414)
  968. (xy -2.6162 -0.254)
  969. (xy -2.7686 -1.4986)
  970. (xy -3.175 -2.7178)
  971. (xy -3.81 -3.81)
  972. (xy -3.81 -3.81)
  973. (xy -0.635 -3.81)
  974. )
  975. (stroke (width -25.4) (type default) (color 0 0 0 0))
  976. (fill (type background))
  977. )
  978. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  979. (stroke (width 0.254) (type default) (color 0 0 0 0))
  980. (fill (type background))
  981. )
  982. (pin input line (at -7.62 2.54 0) (length 4.445)
  983. (name "~" (effects (font (size 1.27 1.27))))
  984. (number "1" (effects (font (size 1.27 1.27))))
  985. )
  986. (pin input line (at -7.62 -2.54 0) (length 4.445)
  987. (name "~" (effects (font (size 1.27 1.27))))
  988. (number "2" (effects (font (size 1.27 1.27))))
  989. )
  990. (pin output line (at 7.62 0 180) (length 3.81)
  991. (name "~" (effects (font (size 1.27 1.27))))
  992. (number "3" (effects (font (size 1.27 1.27))))
  993. )
  994. )
  995. (symbol "74LS86_1_1"
  996. (polyline
  997. (pts
  998. (xy -3.81 -2.54)
  999. (xy -3.175 -2.54)
  1000. )
  1001. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1002. (fill (type none))
  1003. )
  1004. (polyline
  1005. (pts
  1006. (xy -3.81 2.54)
  1007. (xy -3.175 2.54)
  1008. )
  1009. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1010. (fill (type none))
  1011. )
  1012. )
  1013. (symbol "74LS86_2_0"
  1014. (arc (start -4.4196 -3.81) (mid -3.2033 0) (end -4.4196 3.81)
  1015. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1016. (fill (type none))
  1017. )
  1018. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  1019. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1020. (fill (type none))
  1021. )
  1022. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  1023. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1024. (fill (type background))
  1025. )
  1026. (polyline
  1027. (pts
  1028. (xy -3.81 -3.81)
  1029. (xy -0.635 -3.81)
  1030. )
  1031. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1032. (fill (type background))
  1033. )
  1034. (polyline
  1035. (pts
  1036. (xy -3.81 3.81)
  1037. (xy -0.635 3.81)
  1038. )
  1039. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1040. (fill (type background))
  1041. )
  1042. (polyline
  1043. (pts
  1044. (xy -0.635 3.81)
  1045. (xy -3.81 3.81)
  1046. (xy -3.81 3.81)
  1047. (xy -3.556 3.4036)
  1048. (xy -3.0226 2.2606)
  1049. (xy -2.6924 1.0414)
  1050. (xy -2.6162 -0.254)
  1051. (xy -2.7686 -1.4986)
  1052. (xy -3.175 -2.7178)
  1053. (xy -3.81 -3.81)
  1054. (xy -3.81 -3.81)
  1055. (xy -0.635 -3.81)
  1056. )
  1057. (stroke (width -25.4) (type default) (color 0 0 0 0))
  1058. (fill (type background))
  1059. )
  1060. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  1061. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1062. (fill (type background))
  1063. )
  1064. (pin input line (at -7.62 2.54 0) (length 4.445)
  1065. (name "~" (effects (font (size 1.27 1.27))))
  1066. (number "4" (effects (font (size 1.27 1.27))))
  1067. )
  1068. (pin input line (at -7.62 -2.54 0) (length 4.445)
  1069. (name "~" (effects (font (size 1.27 1.27))))
  1070. (number "5" (effects (font (size 1.27 1.27))))
  1071. )
  1072. (pin output line (at 7.62 0 180) (length 3.81)
  1073. (name "~" (effects (font (size 1.27 1.27))))
  1074. (number "6" (effects (font (size 1.27 1.27))))
  1075. )
  1076. )
  1077. (symbol "74LS86_2_1"
  1078. (polyline
  1079. (pts
  1080. (xy -3.81 -2.54)
  1081. (xy -3.175 -2.54)
  1082. )
  1083. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1084. (fill (type none))
  1085. )
  1086. (polyline
  1087. (pts
  1088. (xy -3.81 2.54)
  1089. (xy -3.175 2.54)
  1090. )
  1091. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1092. (fill (type none))
  1093. )
  1094. )
  1095. (symbol "74LS86_3_0"
  1096. (arc (start -4.4196 -3.81) (mid -3.2033 0) (end -4.4196 3.81)
  1097. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1098. (fill (type none))
  1099. )
  1100. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  1101. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1102. (fill (type none))
  1103. )
  1104. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  1105. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1106. (fill (type background))
  1107. )
  1108. (polyline
  1109. (pts
  1110. (xy -3.81 -3.81)
  1111. (xy -0.635 -3.81)
  1112. )
  1113. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1114. (fill (type background))
  1115. )
  1116. (polyline
  1117. (pts
  1118. (xy -3.81 3.81)
  1119. (xy -0.635 3.81)
  1120. )
  1121. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1122. (fill (type background))
  1123. )
  1124. (polyline
  1125. (pts
  1126. (xy -0.635 3.81)
  1127. (xy -3.81 3.81)
  1128. (xy -3.81 3.81)
  1129. (xy -3.556 3.4036)
  1130. (xy -3.0226 2.2606)
  1131. (xy -2.6924 1.0414)
  1132. (xy -2.6162 -0.254)
  1133. (xy -2.7686 -1.4986)
  1134. (xy -3.175 -2.7178)
  1135. (xy -3.81 -3.81)
  1136. (xy -3.81 -3.81)
  1137. (xy -0.635 -3.81)
  1138. )
  1139. (stroke (width -25.4) (type default) (color 0 0 0 0))
  1140. (fill (type background))
  1141. )
  1142. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  1143. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1144. (fill (type background))
  1145. )
  1146. (pin input line (at -7.62 -2.54 0) (length 4.445)
  1147. (name "~" (effects (font (size 1.27 1.27))))
  1148. (number "10" (effects (font (size 1.27 1.27))))
  1149. )
  1150. (pin output line (at 7.62 0 180) (length 3.81)
  1151. (name "~" (effects (font (size 1.27 1.27))))
  1152. (number "8" (effects (font (size 1.27 1.27))))
  1153. )
  1154. (pin input line (at -7.62 2.54 0) (length 4.445)
  1155. (name "~" (effects (font (size 1.27 1.27))))
  1156. (number "9" (effects (font (size 1.27 1.27))))
  1157. )
  1158. )
  1159. (symbol "74LS86_3_1"
  1160. (polyline
  1161. (pts
  1162. (xy -3.81 -2.54)
  1163. (xy -3.175 -2.54)
  1164. )
  1165. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1166. (fill (type none))
  1167. )
  1168. (polyline
  1169. (pts
  1170. (xy -3.81 2.54)
  1171. (xy -3.175 2.54)
  1172. )
  1173. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1174. (fill (type none))
  1175. )
  1176. )
  1177. (symbol "74LS86_4_0"
  1178. (arc (start -4.4196 -3.81) (mid -3.2033 0) (end -4.4196 3.81)
  1179. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1180. (fill (type none))
  1181. )
  1182. (arc (start -3.81 -3.81) (mid -2.589 0) (end -3.81 3.81)
  1183. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1184. (fill (type none))
  1185. )
  1186. (arc (start -0.6096 -3.81) (mid 2.1842 -2.5851) (end 3.81 0)
  1187. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1188. (fill (type background))
  1189. )
  1190. (polyline
  1191. (pts
  1192. (xy -3.81 -3.81)
  1193. (xy -0.635 -3.81)
  1194. )
  1195. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1196. (fill (type background))
  1197. )
  1198. (polyline
  1199. (pts
  1200. (xy -3.81 3.81)
  1201. (xy -0.635 3.81)
  1202. )
  1203. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1204. (fill (type background))
  1205. )
  1206. (polyline
  1207. (pts
  1208. (xy -0.635 3.81)
  1209. (xy -3.81 3.81)
  1210. (xy -3.81 3.81)
  1211. (xy -3.556 3.4036)
  1212. (xy -3.0226 2.2606)
  1213. (xy -2.6924 1.0414)
  1214. (xy -2.6162 -0.254)
  1215. (xy -2.7686 -1.4986)
  1216. (xy -3.175 -2.7178)
  1217. (xy -3.81 -3.81)
  1218. (xy -3.81 -3.81)
  1219. (xy -0.635 -3.81)
  1220. )
  1221. (stroke (width -25.4) (type default) (color 0 0 0 0))
  1222. (fill (type background))
  1223. )
  1224. (arc (start 3.81 0) (mid 2.1915 2.5936) (end -0.6096 3.81)
  1225. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1226. (fill (type background))
  1227. )
  1228. (pin output line (at 7.62 0 180) (length 3.81)
  1229. (name "~" (effects (font (size 1.27 1.27))))
  1230. (number "11" (effects (font (size 1.27 1.27))))
  1231. )
  1232. (pin input line (at -7.62 2.54 0) (length 4.445)
  1233. (name "~" (effects (font (size 1.27 1.27))))
  1234. (number "12" (effects (font (size 1.27 1.27))))
  1235. )
  1236. (pin input line (at -7.62 -2.54 0) (length 4.445)
  1237. (name "~" (effects (font (size 1.27 1.27))))
  1238. (number "13" (effects (font (size 1.27 1.27))))
  1239. )
  1240. )
  1241. (symbol "74LS86_4_1"
  1242. (polyline
  1243. (pts
  1244. (xy -3.81 -2.54)
  1245. (xy -3.175 -2.54)
  1246. )
  1247. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1248. (fill (type none))
  1249. )
  1250. (polyline
  1251. (pts
  1252. (xy -3.81 2.54)
  1253. (xy -3.175 2.54)
  1254. )
  1255. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1256. (fill (type none))
  1257. )
  1258. )
  1259. (symbol "74LS86_5_0"
  1260. (pin power_in line (at 0 12.7 270) (length 5.08)
  1261. (name "VCC" (effects (font (size 1.27 1.27))))
  1262. (number "14" (effects (font (size 1.27 1.27))))
  1263. )
  1264. (pin power_in line (at 0 -12.7 90) (length 5.08)
  1265. (name "GND" (effects (font (size 1.27 1.27))))
  1266. (number "7" (effects (font (size 1.27 1.27))))
  1267. )
  1268. )
  1269. (symbol "74LS86_5_1"
  1270. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  1271. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1272. (fill (type background))
  1273. )
  1274. )
  1275. )
  1276. (symbol "Connector:Conn_01x02_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1277. (property "Reference" "J" (id 0) (at 0 2.54 0)
  1278. (effects (font (size 1.27 1.27)))
  1279. )
  1280. (property "Value" "Conn_01x02_Male" (id 1) (at 0 -5.08 0)
  1281. (effects (font (size 1.27 1.27)))
  1282. )
  1283. (property "Footprint" "" (id 2) (at 0 0 0)
  1284. (effects (font (size 1.27 1.27)) hide)
  1285. )
  1286. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1287. (effects (font (size 1.27 1.27)) hide)
  1288. )
  1289. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  1290. (effects (font (size 1.27 1.27)) hide)
  1291. )
  1292. (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  1293. (effects (font (size 1.27 1.27)) hide)
  1294. )
  1295. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  1296. (effects (font (size 1.27 1.27)) hide)
  1297. )
  1298. (symbol "Conn_01x02_Male_1_1"
  1299. (polyline
  1300. (pts
  1301. (xy 1.27 -2.54)
  1302. (xy 0.8636 -2.54)
  1303. )
  1304. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1305. (fill (type none))
  1306. )
  1307. (polyline
  1308. (pts
  1309. (xy 1.27 0)
  1310. (xy 0.8636 0)
  1311. )
  1312. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1313. (fill (type none))
  1314. )
  1315. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  1316. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1317. (fill (type outline))
  1318. )
  1319. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  1320. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1321. (fill (type outline))
  1322. )
  1323. (pin passive line (at 5.08 0 180) (length 3.81)
  1324. (name "Pin_1" (effects (font (size 1.27 1.27))))
  1325. (number "1" (effects (font (size 1.27 1.27))))
  1326. )
  1327. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  1328. (name "Pin_2" (effects (font (size 1.27 1.27))))
  1329. (number "2" (effects (font (size 1.27 1.27))))
  1330. )
  1331. )
  1332. )
  1333. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1334. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  1335. (effects (font (size 1.27 1.27)) (justify left))
  1336. )
  1337. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  1338. (effects (font (size 1.27 1.27)) (justify left))
  1339. )
  1340. (property "Footprint" "" (id 2) (at 0 0 0)
  1341. (effects (font (size 1.27 1.27)) hide)
  1342. )
  1343. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1344. (effects (font (size 1.27 1.27)) hide)
  1345. )
  1346. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  1347. (effects (font (size 1.27 1.27)) hide)
  1348. )
  1349. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  1350. (effects (font (size 1.27 1.27)) hide)
  1351. )
  1352. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  1353. (effects (font (size 1.27 1.27)) hide)
  1354. )
  1355. (symbol "R_Small_0_1"
  1356. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  1357. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  1358. (fill (type none))
  1359. )
  1360. )
  1361. (symbol "R_Small_1_1"
  1362. (pin passive line (at 0 2.54 270) (length 0.762)
  1363. (name "~" (effects (font (size 1.27 1.27))))
  1364. (number "1" (effects (font (size 1.27 1.27))))
  1365. )
  1366. (pin passive line (at 0 -2.54 90) (length 0.762)
  1367. (name "~" (effects (font (size 1.27 1.27))))
  1368. (number "2" (effects (font (size 1.27 1.27))))
  1369. )
  1370. )
  1371. )
  1372. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1373. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1374. (effects (font (size 1.27 1.27)) hide)
  1375. )
  1376. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  1377. (effects (font (size 1.27 1.27)))
  1378. )
  1379. (property "Footprint" "" (id 2) (at 0 0 0)
  1380. (effects (font (size 1.27 1.27)) hide)
  1381. )
  1382. (property "Datasheet" "" (id 3) (at 0 0 0)
  1383. (effects (font (size 1.27 1.27)) hide)
  1384. )
  1385. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1386. (effects (font (size 1.27 1.27)) hide)
  1387. )
  1388. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  1389. (effects (font (size 1.27 1.27)) hide)
  1390. )
  1391. (symbol "+5V_0_1"
  1392. (polyline
  1393. (pts
  1394. (xy -0.762 1.27)
  1395. (xy 0 2.54)
  1396. )
  1397. (stroke (width 0) (type default) (color 0 0 0 0))
  1398. (fill (type none))
  1399. )
  1400. (polyline
  1401. (pts
  1402. (xy 0 0)
  1403. (xy 0 2.54)
  1404. )
  1405. (stroke (width 0) (type default) (color 0 0 0 0))
  1406. (fill (type none))
  1407. )
  1408. (polyline
  1409. (pts
  1410. (xy 0 2.54)
  1411. (xy 0.762 1.27)
  1412. )
  1413. (stroke (width 0) (type default) (color 0 0 0 0))
  1414. (fill (type none))
  1415. )
  1416. )
  1417. (symbol "+5V_1_1"
  1418. (pin power_in line (at 0 0 90) (length 0) hide
  1419. (name "+5V" (effects (font (size 1.27 1.27))))
  1420. (number "1" (effects (font (size 1.27 1.27))))
  1421. )
  1422. )
  1423. )
  1424. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1425. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1426. (effects (font (size 1.27 1.27)) hide)
  1427. )
  1428. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1429. (effects (font (size 1.27 1.27)))
  1430. )
  1431. (property "Footprint" "" (id 2) (at 0 0 0)
  1432. (effects (font (size 1.27 1.27)) hide)
  1433. )
  1434. (property "Datasheet" "" (id 3) (at 0 0 0)
  1435. (effects (font (size 1.27 1.27)) hide)
  1436. )
  1437. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1438. (effects (font (size 1.27 1.27)) hide)
  1439. )
  1440. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1441. (effects (font (size 1.27 1.27)) hide)
  1442. )
  1443. (symbol "GND_0_1"
  1444. (polyline
  1445. (pts
  1446. (xy 0 0)
  1447. (xy 0 -1.27)
  1448. (xy 1.27 -1.27)
  1449. (xy 0 -2.54)
  1450. (xy -1.27 -1.27)
  1451. (xy 0 -1.27)
  1452. )
  1453. (stroke (width 0) (type default) (color 0 0 0 0))
  1454. (fill (type none))
  1455. )
  1456. )
  1457. (symbol "GND_1_1"
  1458. (pin power_in line (at 0 0 270) (length 0) hide
  1459. (name "GND" (effects (font (size 1.27 1.27))))
  1460. (number "1" (effects (font (size 1.27 1.27))))
  1461. )
  1462. )
  1463. )
  1464. )
  1465. (junction (at 125.73 29.845) (diameter 0) (color 0 0 0 0)
  1466. (uuid 0cd1ac36-7e6e-46f5-aa3c-90de889a9057)
  1467. )
  1468. (junction (at 142.24 97.155) (diameter 0) (color 0 0 0 0)
  1469. (uuid 0fd6fcb8-0438-4490-9259-4f6352aaa911)
  1470. )
  1471. (junction (at 102.87 230.505) (diameter 0) (color 0 0 0 0)
  1472. (uuid 10ccfe2f-f1cd-4b4c-be9d-e30d153c2977)
  1473. )
  1474. (junction (at 210.185 134.62) (diameter 0) (color 0 0 0 0)
  1475. (uuid 11ab4c0f-af41-464a-ae50-d86eb5034af4)
  1476. )
  1477. (junction (at 149.86 173.99) (diameter 0) (color 0 0 0 0)
  1478. (uuid 11d60e09-2208-448c-b34e-176734a8d049)
  1479. )
  1480. (junction (at 128.27 165.1) (diameter 0) (color 0 0 0 0)
  1481. (uuid 1db20ce5-3f8e-4c0f-a43b-c255ee88ce08)
  1482. )
  1483. (junction (at 66.675 64.135) (diameter 0) (color 0 0 0 0)
  1484. (uuid 25853d21-f9df-4f72-aa8e-90df22d16f39)
  1485. )
  1486. (junction (at 97.155 99.695) (diameter 0) (color 0 0 0 0)
  1487. (uuid 3310872e-5d2f-49b7-8b49-4844b088a472)
  1488. )
  1489. (junction (at 136.525 86.995) (diameter 0) (color 0 0 0 0)
  1490. (uuid 3e874b3d-8086-438c-aaf8-ed64cbe9fe70)
  1491. )
  1492. (junction (at 237.49 137.16) (diameter 0) (color 0 0 0 0)
  1493. (uuid 4a7774ce-75bd-402b-8c92-8a82ba376726)
  1494. )
  1495. (junction (at 149.86 178.435) (diameter 0) (color 0 0 0 0)
  1496. (uuid 4b04eb82-1feb-4a0a-85fe-634119a6f174)
  1497. )
  1498. (junction (at 123.19 173.99) (diameter 0) (color 0 0 0 0)
  1499. (uuid 519e19d0-ab0d-4af1-bf6e-318b781bdfe0)
  1500. )
  1501. (junction (at 110.49 215.265) (diameter 0) (color 0 0 0 0)
  1502. (uuid 53a4482d-31f6-447e-b832-a1bb151c2a48)
  1503. )
  1504. (junction (at 279.4 162.56) (diameter 0) (color 0 0 0 0)
  1505. (uuid 565de765-1374-49c0-88f9-b9558b443112)
  1506. )
  1507. (junction (at 75.565 64.135) (diameter 0) (color 0 0 0 0)
  1508. (uuid 5935897a-dabb-4013-91a8-2b47d7b6a590)
  1509. )
  1510. (junction (at 149.86 165.1) (diameter 0) (color 0 0 0 0)
  1511. (uuid 5c82a8ef-3676-4442-9d85-c18c40729271)
  1512. )
  1513. (junction (at 358.775 124.46) (diameter 0) (color 0 0 0 0)
  1514. (uuid 61daf6f9-1d0f-42bb-9e7b-55fca2908c47)
  1515. )
  1516. (junction (at 130.81 160.655) (diameter 0) (color 0 0 0 0)
  1517. (uuid 63ce0589-53fe-4401-8b2d-74720477b1c0)
  1518. )
  1519. (junction (at 75.565 92.075) (diameter 0) (color 0 0 0 0)
  1520. (uuid 6a83b134-07ac-4921-8714-d38fde05cf3b)
  1521. )
  1522. (junction (at 53.34 79.375) (diameter 0) (color 0 0 0 0)
  1523. (uuid 76cf0bf6-8f07-407e-8909-e3cc6183378c)
  1524. )
  1525. (junction (at 57.785 64.135) (diameter 0) (color 0 0 0 0)
  1526. (uuid 76e3837d-4e57-4e0f-acdf-43c73f43dbce)
  1527. )
  1528. (junction (at 113.03 42.545) (diameter 0) (color 0 0 0 0)
  1529. (uuid 794052a9-e037-4594-8c4b-a7ff45e7f4b1)
  1530. )
  1531. (junction (at 134.62 84.455) (diameter 0) (color 0 0 0 0)
  1532. (uuid 798a2c0f-cd24-4f42-bbbf-9e4397588f65)
  1533. )
  1534. (junction (at 104.775 233.045) (diameter 0) (color 0 0 0 0)
  1535. (uuid 7ea96a76-23d0-4abb-a5f7-8364caacfaa8)
  1536. )
  1537. (junction (at 71.12 64.135) (diameter 0) (color 0 0 0 0)
  1538. (uuid 7f7984ad-59e5-472b-bf48-759dc92bb05a)
  1539. )
  1540. (junction (at 53.34 64.135) (diameter 0) (color 0 0 0 0)
  1541. (uuid 804934fd-3f9f-4756-976c-706b0915e5c9)
  1542. )
  1543. (junction (at 149.86 191.77) (diameter 0) (color 0 0 0 0)
  1544. (uuid 819c2f0c-368f-4caa-99ac-4bf2acb484e4)
  1545. )
  1546. (junction (at 149.86 187.325) (diameter 0) (color 0 0 0 0)
  1547. (uuid 898c4bf6-55e2-42d3-8314-132b61e136d9)
  1548. )
  1549. (junction (at 107.95 217.805) (diameter 0) (color 0 0 0 0)
  1550. (uuid 89c0c5df-c5a7-4c17-b8ea-38d8392d5911)
  1551. )
  1552. (junction (at 123.19 32.385) (diameter 0) (color 0 0 0 0)
  1553. (uuid 8ac953f3-514a-49b2-912d-d9d6a4c64e09)
  1554. )
  1555. (junction (at 283.21 178.435) (diameter 0) (color 0 0 0 0)
  1556. (uuid 916f3029-03bb-4caf-a331-00b653a0b351)
  1557. )
  1558. (junction (at 149.86 182.88) (diameter 0) (color 0 0 0 0)
  1559. (uuid 92316967-c6cf-43d4-b90d-ae67fbd4d872)
  1560. )
  1561. (junction (at 130.81 24.765) (diameter 0) (color 0 0 0 0)
  1562. (uuid 924961e8-7570-48ec-a2c1-7c8514b5e5c4)
  1563. )
  1564. (junction (at 196.85 120.65) (diameter 0) (color 0 0 0 0)
  1565. (uuid 95e15020-34fa-440c-a6a4-29929483a753)
  1566. )
  1567. (junction (at 125.73 169.545) (diameter 0) (color 0 0 0 0)
  1568. (uuid 9fbebd99-bbcd-4496-be08-cf25a8a89038)
  1569. )
  1570. (junction (at 99.695 97.155) (diameter 0) (color 0 0 0 0)
  1571. (uuid a051fba6-31bf-4223-819d-e4027474a54f)
  1572. )
  1573. (junction (at 115.57 187.325) (diameter 0) (color 0 0 0 0)
  1574. (uuid ab1e6c1b-83dd-4f1c-b4e2-7a8b5c139333)
  1575. )
  1576. (junction (at 118.11 37.465) (diameter 0) (color 0 0 0 0)
  1577. (uuid ad426057-e5ac-4f4d-bbb1-20acd2b649c5)
  1578. )
  1579. (junction (at 212.725 124.46) (diameter 0) (color 0 0 0 0)
  1580. (uuid b1eb0db8-b3c3-43e5-be5f-a6571c8b5059)
  1581. )
  1582. (junction (at 110.49 76.835) (diameter 0) (color 0 0 0 0)
  1583. (uuid b31ff05b-183c-4408-96a0-29371ce25d16)
  1584. )
  1585. (junction (at 62.23 64.135) (diameter 0) (color 0 0 0 0)
  1586. (uuid b615477f-7b7c-4c91-9772-37439abb158f)
  1587. )
  1588. (junction (at 140.335 79.375) (diameter 0) (color 0 0 0 0)
  1589. (uuid c661d287-1391-4430-b337-1a7ef7b2a4d1)
  1590. )
  1591. (junction (at 80.01 64.135) (diameter 0) (color 0 0 0 0)
  1592. (uuid c95f3f48-0fc0-4433-bff8-ec1bc7379769)
  1593. )
  1594. (junction (at 196.85 115.57) (diameter 0) (color 0 0 0 0)
  1595. (uuid cb375da7-1fd2-45eb-9135-ce20e3f5ee5c)
  1596. )
  1597. (junction (at 66.675 86.995) (diameter 0) (color 0 0 0 0)
  1598. (uuid ce2040a6-f5bd-46ff-9341-2c58cf9b7da7)
  1599. )
  1600. (junction (at 149.86 169.545) (diameter 0) (color 0 0 0 0)
  1601. (uuid d0ff48ca-8ac6-4570-912f-0c6e28b7913c)
  1602. )
  1603. (junction (at 128.27 27.305) (diameter 0) (color 0 0 0 0)
  1604. (uuid d5065dee-6c8e-4888-9bd0-d5efbea84ba4)
  1605. )
  1606. (junction (at 195.58 142.875) (diameter 0) (color 0 0 0 0)
  1607. (uuid d8a92187-0dfe-4e56-9004-b0addbe6de53)
  1608. )
  1609. (junction (at 107.95 74.295) (diameter 0) (color 0 0 0 0)
  1610. (uuid d8b83f3f-f1c9-47ce-a922-821f41efa46c)
  1611. )
  1612. (junction (at 57.785 81.915) (diameter 0) (color 0 0 0 0)
  1613. (uuid daab10c6-e906-4916-86f5-d01e85ec8460)
  1614. )
  1615. (junction (at 75.565 120.65) (diameter 0) (color 0 0 0 0)
  1616. (uuid dbd49655-e08a-4778-a403-3200ea1901c7)
  1617. )
  1618. (junction (at 75.565 126.365) (diameter 0) (color 0 0 0 0)
  1619. (uuid dcc2c4f6-35a1-4829-9244-be62a0b93b1f)
  1620. )
  1621. (junction (at 62.23 84.455) (diameter 0) (color 0 0 0 0)
  1622. (uuid e0a3d2b2-f092-4532-b3dc-5cdaee7550bc)
  1623. )
  1624. (junction (at 113.03 191.77) (diameter 0) (color 0 0 0 0)
  1625. (uuid e26e6b50-f023-4554-859b-f655b515db4f)
  1626. )
  1627. (junction (at 71.12 89.535) (diameter 0) (color 0 0 0 0)
  1628. (uuid e76a82d2-a868-4130-a600-f60ec6f8f373)
  1629. )
  1630. (junction (at 138.43 81.915) (diameter 0) (color 0 0 0 0)
  1631. (uuid ea7a1f62-82a6-46a1-8e4f-a95d8bddc478)
  1632. )
  1633. (junction (at 115.57 40.005) (diameter 0) (color 0 0 0 0)
  1634. (uuid f1de686a-f1bb-4e85-8ade-5d95fc693840)
  1635. )
  1636. (junction (at 120.65 34.925) (diameter 0) (color 0 0 0 0)
  1637. (uuid f67b17a0-d3b6-4de4-9fb0-b0b9d6d2f8bb)
  1638. )
  1639. (junction (at 149.86 160.655) (diameter 0) (color 0 0 0 0)
  1640. (uuid f8eb23a9-8b30-4686-ba79-d9955ca4d6c4)
  1641. )
  1642. (no_connect (at 189.23 142.24) (uuid 02b161f2-0141-4601-8401-9ae60089f412))
  1643. (no_connect (at 189.23 132.08) (uuid 1af0aa63-695b-47ef-8790-5655d2384ec5))
  1644. (no_connect (at 189.23 137.16) (uuid 3eba3264-dc80-4f8d-bdc4-3faf6293ce46))
  1645. (no_connect (at 189.23 127) (uuid b1093b43-a2c6-4d75-90de-7d339282856b))
  1646. (wire (pts (xy 149.86 182.88) (xy 149.86 187.325))
  1647. (stroke (width 0) (type default) (color 0 0 0 0))
  1648. (uuid 02650581-ab28-4c3f-a62f-073f4f1de7cb)
  1649. )
  1650. (wire (pts (xy 140.97 207.645) (xy 113.03 207.645))
  1651. (stroke (width 0) (type default) (color 0 0 0 0))
  1652. (uuid 0277179d-43f5-473d-85f0-fa853cefa030)
  1653. )
  1654. (wire (pts (xy 97.155 99.695) (xy 97.155 50.165))
  1655. (stroke (width 0) (type default) (color 0 0 0 0))
  1656. (uuid 03b08504-8829-42f2-bb17-98ef11bd25ad)
  1657. )
  1658. (wire (pts (xy 115.57 210.185) (xy 140.97 210.185))
  1659. (stroke (width 0) (type default) (color 0 0 0 0))
  1660. (uuid 0721739a-5507-4ee5-b512-932c3ce2405e)
  1661. )
  1662. (wire (pts (xy 198.755 110.49) (xy 198.755 139.7))
  1663. (stroke (width 0) (type default) (color 0 0 0 0))
  1664. (uuid 08211730-062e-41c7-9004-c2d43526801c)
  1665. )
  1666. (wire (pts (xy 149.86 196.215) (xy 144.78 196.215))
  1667. (stroke (width 0) (type default) (color 0 0 0 0))
  1668. (uuid 08f0c823-b43a-401c-8366-51d424ccb8f0)
  1669. )
  1670. (wire (pts (xy 163.83 124.46) (xy 140.335 124.46))
  1671. (stroke (width 0) (type default) (color 0 0 0 0))
  1672. (uuid 0b1aa743-0363-42fc-9ba1-13f43dbfa2ae)
  1673. )
  1674. (wire (pts (xy 70.485 120.65) (xy 75.565 120.65))
  1675. (stroke (width 0) (type default) (color 0 0 0 0))
  1676. (uuid 0b6c4f32-d868-4307-9e60-45502567037d)
  1677. )
  1678. (wire (pts (xy 166.37 222.885) (xy 377.825 222.885))
  1679. (stroke (width 0) (type default) (color 0 0 0 0))
  1680. (uuid 0bd6b475-50da-4584-a804-cadf99da0e77)
  1681. )
  1682. (wire (pts (xy 71.12 64.135) (xy 75.565 64.135))
  1683. (stroke (width 0) (type default) (color 0 0 0 0))
  1684. (uuid 0c1591ce-93f7-4bdd-837d-3c9eed1e25b6)
  1685. )
  1686. (wire (pts (xy 152.4 160.655) (xy 149.86 160.655))
  1687. (stroke (width 0) (type default) (color 0 0 0 0))
  1688. (uuid 0c402a26-3058-4ca3-be75-72ba79bb8f31)
  1689. )
  1690. (wire (pts (xy 144.78 160.655) (xy 149.86 160.655))
  1691. (stroke (width 0) (type default) (color 0 0 0 0))
  1692. (uuid 0d1edef8-c869-4745-a692-6e9e3cfa6ea3)
  1693. )
  1694. (wire (pts (xy 36.195 42.545) (xy 113.03 42.545))
  1695. (stroke (width 0) (type default) (color 0 0 0 0))
  1696. (uuid 0d95e93b-f361-4bb5-b39a-a440399f60b2)
  1697. )
  1698. (wire (pts (xy 97.155 50.165) (xy 155.575 50.165))
  1699. (stroke (width 0) (type default) (color 0 0 0 0))
  1700. (uuid 0dc13c85-a4a9-4b81-b66a-b8c78d1edbf4)
  1701. )
  1702. (wire (pts (xy 237.49 137.16) (xy 377.825 137.16))
  1703. (stroke (width 0) (type default) (color 0 0 0 0))
  1704. (uuid 0e28be3c-34a9-4423-8269-034566a0b546)
  1705. )
  1706. (wire (pts (xy 180.975 29.845) (xy 377.825 29.845))
  1707. (stroke (width 0) (type default) (color 0 0 0 0))
  1708. (uuid 0ecf94ce-250e-4cab-8777-0f4abefcd187)
  1709. )
  1710. (wire (pts (xy 140.97 220.345) (xy 125.73 220.345))
  1711. (stroke (width 0) (type default) (color 0 0 0 0))
  1712. (uuid 0f230e2b-d1b5-4d36-afea-64986fe5e453)
  1713. )
  1714. (wire (pts (xy 36.195 32.385) (xy 123.19 32.385))
  1715. (stroke (width 0) (type default) (color 0 0 0 0))
  1716. (uuid 108f41de-9624-4837-a927-4ff51832a2fa)
  1717. )
  1718. (wire (pts (xy 36.195 230.505) (xy 102.87 230.505))
  1719. (stroke (width 0) (type default) (color 0 0 0 0))
  1720. (uuid 15327957-a9aa-4f40-986a-c714e4a50a4e)
  1721. )
  1722. (wire (pts (xy 71.12 89.535) (xy 144.78 89.535))
  1723. (stroke (width 0) (type default) (color 0 0 0 0))
  1724. (uuid 154d6c39-2783-4e3e-8006-8b50d450f28c)
  1725. )
  1726. (wire (pts (xy 57.785 74.295) (xy 57.785 81.915))
  1727. (stroke (width 0) (type default) (color 0 0 0 0))
  1728. (uuid 162bd2c4-7fbf-4453-a56d-fe4507e4b765)
  1729. )
  1730. (wire (pts (xy 115.57 40.005) (xy 155.575 40.005))
  1731. (stroke (width 0) (type default) (color 0 0 0 0))
  1732. (uuid 1b38736b-2738-4640-a17d-69e321dc25e6)
  1733. )
  1734. (wire (pts (xy 36.195 110.49) (xy 198.755 110.49))
  1735. (stroke (width 0) (type default) (color 0 0 0 0))
  1736. (uuid 1b484862-8fab-4e23-99f6-1b45db7a3798)
  1737. )
  1738. (wire (pts (xy 62.23 64.135) (xy 66.675 64.135))
  1739. (stroke (width 0) (type default) (color 0 0 0 0))
  1740. (uuid 1b6d140e-3055-4aa2-bb3d-7d58ce2a4826)
  1741. )
  1742. (wire (pts (xy 110.49 76.835) (xy 110.49 215.265))
  1743. (stroke (width 0) (type default) (color 0 0 0 0))
  1744. (uuid 1cc986a4-9bce-4b0c-bf3c-8f1ff50d700f)
  1745. )
  1746. (wire (pts (xy 149.86 191.77) (xy 144.78 191.77))
  1747. (stroke (width 0) (type default) (color 0 0 0 0))
  1748. (uuid 1d189c1e-1eb7-4ba8-8e7f-067274046f03)
  1749. )
  1750. (wire (pts (xy 53.34 79.375) (xy 140.335 79.375))
  1751. (stroke (width 0) (type default) (color 0 0 0 0))
  1752. (uuid 1f6dcf1d-8791-4e28-8442-7849ad46b4e8)
  1753. )
  1754. (wire (pts (xy 53.34 69.215) (xy 53.34 64.135))
  1755. (stroke (width 0) (type default) (color 0 0 0 0))
  1756. (uuid 1fb50c08-db4e-4933-9f05-70eb815b3be4)
  1757. )
  1758. (wire (pts (xy 316.23 178.435) (xy 377.825 178.435))
  1759. (stroke (width 0) (type default) (color 0 0 0 0))
  1760. (uuid 1fd9b08f-b940-4bdd-83d9-40279c27a14f)
  1761. )
  1762. (wire (pts (xy 136.525 86.995) (xy 144.78 86.995))
  1763. (stroke (width 0) (type default) (color 0 0 0 0))
  1764. (uuid 22293369-fcb1-41f9-8fd4-640f6bec9bce)
  1765. )
  1766. (wire (pts (xy 285.75 175.26) (xy 283.21 175.26))
  1767. (stroke (width 0) (type default) (color 0 0 0 0))
  1768. (uuid 222e7be8-3d8b-428c-bede-e688d3f956e9)
  1769. )
  1770. (wire (pts (xy 75.565 128.27) (xy 77.47 128.27))
  1771. (stroke (width 0) (type default) (color 0 0 0 0))
  1772. (uuid 2285e86c-af04-4bf3-ac27-f2457a402a7c)
  1773. )
  1774. (wire (pts (xy 195.58 142.875) (xy 197.485 142.875))
  1775. (stroke (width 0) (type default) (color 0 0 0 0))
  1776. (uuid 22fb4d1a-07af-4539-ba4d-18ce34b8cf73)
  1777. )
  1778. (wire (pts (xy 149.86 165.1) (xy 144.78 165.1))
  1779. (stroke (width 0) (type default) (color 0 0 0 0))
  1780. (uuid 23ea8c8a-86c6-4f96-b146-6a1b7b565ce1)
  1781. )
  1782. (wire (pts (xy 36.195 92.075) (xy 75.565 92.075))
  1783. (stroke (width 0) (type default) (color 0 0 0 0))
  1784. (uuid 24142740-403d-4361-bc3d-dca540e2c35f)
  1785. )
  1786. (wire (pts (xy 102.87 230.505) (xy 140.97 230.505))
  1787. (stroke (width 0) (type default) (color 0 0 0 0))
  1788. (uuid 24684e0f-83a7-4363-8963-be221e95860b)
  1789. )
  1790. (wire (pts (xy 113.03 42.545) (xy 113.03 191.77))
  1791. (stroke (width 0) (type default) (color 0 0 0 0))
  1792. (uuid 25df3b43-f0d4-4d66-bd18-0b3dfe042658)
  1793. )
  1794. (wire (pts (xy 195.58 142.875) (xy 195.58 147.32))
  1795. (stroke (width 0) (type default) (color 0 0 0 0))
  1796. (uuid 26c62977-ac1b-43af-8ed1-17d420a4e3e5)
  1797. )
  1798. (wire (pts (xy 36.195 79.375) (xy 53.34 79.375))
  1799. (stroke (width 0) (type default) (color 0 0 0 0))
  1800. (uuid 2950d336-4785-4ae1-a6aa-0646bdb69856)
  1801. )
  1802. (wire (pts (xy 113.03 207.645) (xy 113.03 191.77))
  1803. (stroke (width 0) (type default) (color 0 0 0 0))
  1804. (uuid 29a1113f-7283-4da2-ba77-2b6ff0f12f3e)
  1805. )
  1806. (wire (pts (xy 107.95 217.805) (xy 140.97 217.805))
  1807. (stroke (width 0) (type default) (color 0 0 0 0))
  1808. (uuid 2d97f042-f905-4991-9f82-8ac71e27de26)
  1809. )
  1810. (wire (pts (xy 62.23 84.455) (xy 134.62 84.455))
  1811. (stroke (width 0) (type default) (color 0 0 0 0))
  1812. (uuid 2f7afd0e-dc9a-46b7-aa1d-2efc9e94f578)
  1813. )
  1814. (wire (pts (xy 36.195 133.35) (xy 77.47 133.35))
  1815. (stroke (width 0) (type default) (color 0 0 0 0))
  1816. (uuid 2f992e45-8616-453e-a822-6a5f1f60bd85)
  1817. )
  1818. (wire (pts (xy 189.23 139.7) (xy 195.58 139.7))
  1819. (stroke (width 0) (type default) (color 0 0 0 0))
  1820. (uuid 3151523f-0e4f-4b99-992c-a20af5b5908f)
  1821. )
  1822. (wire (pts (xy 102.87 230.505) (xy 102.87 144.78))
  1823. (stroke (width 0) (type default) (color 0 0 0 0))
  1824. (uuid 3329ac3c-b066-43e6-8d23-fc53cbc4af8f)
  1825. )
  1826. (wire (pts (xy 210.185 134.62) (xy 215.265 134.62))
  1827. (stroke (width 0) (type default) (color 0 0 0 0))
  1828. (uuid 35e5e0b1-2389-4b9d-8ef7-8e3bc080c051)
  1829. )
  1830. (wire (pts (xy 279.4 162.56) (xy 300.99 162.56))
  1831. (stroke (width 0) (type default) (color 0 0 0 0))
  1832. (uuid 35e75c80-b050-494a-8a44-65dcc7810acf)
  1833. )
  1834. (wire (pts (xy 130.81 160.655) (xy 130.81 225.425))
  1835. (stroke (width 0) (type default) (color 0 0 0 0))
  1836. (uuid 36051661-efc8-4d9a-9541-97c669c7e038)
  1837. )
  1838. (wire (pts (xy 153.67 199.39) (xy 153.67 200.025))
  1839. (stroke (width 0) (type default) (color 0 0 0 0))
  1840. (uuid 36740845-3123-45fa-973a-226c65f5d2b7)
  1841. )
  1842. (wire (pts (xy 36.195 215.265) (xy 110.49 215.265))
  1843. (stroke (width 0) (type default) (color 0 0 0 0))
  1844. (uuid 37301f38-2060-48ac-b139-0e72e3a45b99)
  1845. )
  1846. (wire (pts (xy 66.675 64.135) (xy 66.675 69.215))
  1847. (stroke (width 0) (type default) (color 0 0 0 0))
  1848. (uuid 3801be97-67d5-4f4a-b548-cda37c7494e9)
  1849. )
  1850. (wire (pts (xy 125.73 220.345) (xy 125.73 169.545))
  1851. (stroke (width 0) (type default) (color 0 0 0 0))
  1852. (uuid 38bd3b9a-a744-466d-9934-a8274d7f6b20)
  1853. )
  1854. (wire (pts (xy 166.37 217.805) (xy 283.21 217.805))
  1855. (stroke (width 0) (type default) (color 0 0 0 0))
  1856. (uuid 390a16e6-d5f6-475f-ba51-b3ec8daf8b6c)
  1857. )
  1858. (wire (pts (xy 128.27 27.305) (xy 155.575 27.305))
  1859. (stroke (width 0) (type default) (color 0 0 0 0))
  1860. (uuid 3bab7a02-a01b-47a8-8f25-8b78dcd7d0a6)
  1861. )
  1862. (wire (pts (xy 36.195 81.915) (xy 57.785 81.915))
  1863. (stroke (width 0) (type default) (color 0 0 0 0))
  1864. (uuid 3df3b5cf-d933-4a77-ab28-bed86ed3f349)
  1865. )
  1866. (wire (pts (xy 36.195 123.825) (xy 73.025 123.825))
  1867. (stroke (width 0) (type default) (color 0 0 0 0))
  1868. (uuid 3ed60dc2-ac09-41cd-9614-797a9f13e431)
  1869. )
  1870. (wire (pts (xy 149.86 191.77) (xy 149.86 196.215))
  1871. (stroke (width 0) (type default) (color 0 0 0 0))
  1872. (uuid 40d77c7a-dacb-4c58-83ba-2e47d6ae2431)
  1873. )
  1874. (wire (pts (xy 97.155 118.11) (xy 97.155 99.695))
  1875. (stroke (width 0) (type default) (color 0 0 0 0))
  1876. (uuid 41009e6d-bfba-440a-98e7-35af6bcdf72f)
  1877. )
  1878. (wire (pts (xy 118.11 37.465) (xy 118.11 182.88))
  1879. (stroke (width 0) (type default) (color 0 0 0 0))
  1880. (uuid 4252bc7f-19b4-4889-86ff-82bd76e37345)
  1881. )
  1882. (wire (pts (xy 180.975 24.765) (xy 377.825 24.765))
  1883. (stroke (width 0) (type default) (color 0 0 0 0))
  1884. (uuid 42804716-2fe7-4a13-b751-f680323f8947)
  1885. )
  1886. (wire (pts (xy 152.4 160.02) (xy 152.4 160.655))
  1887. (stroke (width 0) (type default) (color 0 0 0 0))
  1888. (uuid 428d1825-d530-4cf6-b730-0c0615d91dc5)
  1889. )
  1890. (wire (pts (xy 110.49 76.835) (xy 144.78 76.835))
  1891. (stroke (width 0) (type default) (color 0 0 0 0))
  1892. (uuid 4300d774-f3a2-4b0c-980a-0bfd007ba5f8)
  1893. )
  1894. (wire (pts (xy 128.27 222.885) (xy 140.97 222.885))
  1895. (stroke (width 0) (type default) (color 0 0 0 0))
  1896. (uuid 435fe2ec-009d-49a0-a157-31c8fd208768)
  1897. )
  1898. (wire (pts (xy 180.975 42.545) (xy 377.825 42.545))
  1899. (stroke (width 0) (type default) (color 0 0 0 0))
  1900. (uuid 450902cb-68ca-42d3-8fcd-c4a23be9b97e)
  1901. )
  1902. (wire (pts (xy 130.81 24.765) (xy 130.81 160.655))
  1903. (stroke (width 0) (type default) (color 0 0 0 0))
  1904. (uuid 460a20cb-982c-48f4-828a-18a6f1b88018)
  1905. )
  1906. (wire (pts (xy 53.34 64.135) (xy 57.785 64.135))
  1907. (stroke (width 0) (type default) (color 0 0 0 0))
  1908. (uuid 471d8f60-63f8-4294-9f23-bd2208490712)
  1909. )
  1910. (wire (pts (xy 36.195 27.305) (xy 128.27 27.305))
  1911. (stroke (width 0) (type default) (color 0 0 0 0))
  1912. (uuid 48a6fdce-2535-4625-bba1-ce9919246a01)
  1913. )
  1914. (wire (pts (xy 62.23 64.135) (xy 62.23 69.215))
  1915. (stroke (width 0) (type default) (color 0 0 0 0))
  1916. (uuid 48c14f71-b31a-4d7d-9775-91122599724e)
  1917. )
  1918. (wire (pts (xy 149.86 178.435) (xy 149.86 182.88))
  1919. (stroke (width 0) (type default) (color 0 0 0 0))
  1920. (uuid 4991c66e-da87-4189-9a95-c1edd8e6fa30)
  1921. )
  1922. (wire (pts (xy 71.12 74.295) (xy 71.12 89.535))
  1923. (stroke (width 0) (type default) (color 0 0 0 0))
  1924. (uuid 52d7b85a-a2f1-438b-8c7a-7382597381bd)
  1925. )
  1926. (wire (pts (xy 166.37 207.645) (xy 377.825 207.645))
  1927. (stroke (width 0) (type default) (color 0 0 0 0))
  1928. (uuid 559a71cb-8dec-4b4e-a5c1-220bf7a5323f)
  1929. )
  1930. (wire (pts (xy 170.18 89.535) (xy 377.825 89.535))
  1931. (stroke (width 0) (type default) (color 0 0 0 0))
  1932. (uuid 56ed1d4b-6e6a-4a06-9d71-6524021ba6b2)
  1933. )
  1934. (wire (pts (xy 196.85 120.65) (xy 196.85 115.57))
  1935. (stroke (width 0) (type default) (color 0 0 0 0))
  1936. (uuid 58951d7f-6774-457d-9cce-2a97ecf00f5b)
  1937. )
  1938. (wire (pts (xy 134.62 84.455) (xy 144.78 84.455))
  1939. (stroke (width 0) (type default) (color 0 0 0 0))
  1940. (uuid 597ef2c6-82a1-483c-a988-6521e6d1cd81)
  1941. )
  1942. (wire (pts (xy 163.83 129.54) (xy 138.43 129.54))
  1943. (stroke (width 0) (type default) (color 0 0 0 0))
  1944. (uuid 5ad65013-b7e9-4f26-a511-62a162bc7ab5)
  1945. )
  1946. (wire (pts (xy 196.85 124.46) (xy 196.85 120.65))
  1947. (stroke (width 0) (type default) (color 0 0 0 0))
  1948. (uuid 5b5209ef-bb79-431f-8ca4-989892dbdae9)
  1949. )
  1950. (wire (pts (xy 357.505 126.365) (xy 358.775 126.365))
  1951. (stroke (width 0) (type default) (color 0 0 0 0))
  1952. (uuid 5cea5791-fd22-49ef-8a26-566cbd25e8f4)
  1953. )
  1954. (wire (pts (xy 57.785 81.915) (xy 138.43 81.915))
  1955. (stroke (width 0) (type default) (color 0 0 0 0))
  1956. (uuid 5dc9d8b3-3705-4d8f-a9c6-c50612235bef)
  1957. )
  1958. (wire (pts (xy 170.18 86.995) (xy 377.825 86.995))
  1959. (stroke (width 0) (type default) (color 0 0 0 0))
  1960. (uuid 5e4f1e4d-51ee-4991-867b-d368d706bbe1)
  1961. )
  1962. (wire (pts (xy 75.565 92.075) (xy 144.78 92.075))
  1963. (stroke (width 0) (type default) (color 0 0 0 0))
  1964. (uuid 5e9db362-6a5b-49de-b2d9-c3bdb133c6aa)
  1965. )
  1966. (wire (pts (xy 163.83 139.7) (xy 134.62 139.7))
  1967. (stroke (width 0) (type default) (color 0 0 0 0))
  1968. (uuid 5f097e2c-f223-42dc-acf7-4625ba13d968)
  1969. )
  1970. (wire (pts (xy 166.37 210.185) (xy 377.825 210.185))
  1971. (stroke (width 0) (type default) (color 0 0 0 0))
  1972. (uuid 61498329-46d8-4a18-82ab-c50883999f0a)
  1973. )
  1974. (wire (pts (xy 120.65 34.925) (xy 155.575 34.925))
  1975. (stroke (width 0) (type default) (color 0 0 0 0))
  1976. (uuid 616a919b-1568-49af-ae7e-96d3f03ee0c8)
  1977. )
  1978. (wire (pts (xy 230.505 137.16) (xy 237.49 137.16))
  1979. (stroke (width 0) (type default) (color 0 0 0 0))
  1980. (uuid 64a15eaa-f76a-4120-9200-f619e62db907)
  1981. )
  1982. (wire (pts (xy 198.755 139.7) (xy 215.265 139.7))
  1983. (stroke (width 0) (type default) (color 0 0 0 0))
  1984. (uuid 64a32ee5-2330-4607-a324-6e46c2bd08a6)
  1985. )
  1986. (wire (pts (xy 71.12 64.135) (xy 71.12 69.215))
  1987. (stroke (width 0) (type default) (color 0 0 0 0))
  1988. (uuid 64ecc818-58e4-4eb1-bb28-a365a359eb6d)
  1989. )
  1990. (wire (pts (xy 120.65 178.435) (xy 120.65 34.925))
  1991. (stroke (width 0) (type default) (color 0 0 0 0))
  1992. (uuid 66a4390e-501c-467f-b83f-16ad86b2841e)
  1993. )
  1994. (wire (pts (xy 123.19 173.99) (xy 139.7 173.99))
  1995. (stroke (width 0) (type default) (color 0 0 0 0))
  1996. (uuid 67c1d9ba-889e-40a6-a7a6-a761433f5cae)
  1997. )
  1998. (wire (pts (xy 140.335 79.375) (xy 144.78 79.375))
  1999. (stroke (width 0) (type default) (color 0 0 0 0))
  2000. (uuid 68844baf-7b84-44f4-8ea0-18381afa0dbb)
  2001. )
  2002. (wire (pts (xy 163.83 134.62) (xy 136.525 134.62))
  2003. (stroke (width 0) (type default) (color 0 0 0 0))
  2004. (uuid 68b10160-6d80-4f5d-be32-0e58fd62c41e)
  2005. )
  2006. (wire (pts (xy 279.4 215.265) (xy 279.4 162.56))
  2007. (stroke (width 0) (type default) (color 0 0 0 0))
  2008. (uuid 690cb163-33e0-4698-ab7c-33caaa325f57)
  2009. )
  2010. (wire (pts (xy 36.195 29.845) (xy 125.73 29.845))
  2011. (stroke (width 0) (type default) (color 0 0 0 0))
  2012. (uuid 6e47c48b-ed40-4b86-bdd3-e1d1d037108f)
  2013. )
  2014. (wire (pts (xy 66.675 74.295) (xy 66.675 86.995))
  2015. (stroke (width 0) (type default) (color 0 0 0 0))
  2016. (uuid 6ebaff5b-e5ce-4061-89f6-9389533dee73)
  2017. )
  2018. (wire (pts (xy 84.455 64.135) (xy 84.455 69.215))
  2019. (stroke (width 0) (type default) (color 0 0 0 0))
  2020. (uuid 6f053654-4bd4-486c-b295-72121385624b)
  2021. )
  2022. (wire (pts (xy 77.47 115.57) (xy 73.025 115.57))
  2023. (stroke (width 0) (type default) (color 0 0 0 0))
  2024. (uuid 6f91746b-6526-422f-8990-620c1fe3720c)
  2025. )
  2026. (wire (pts (xy 75.565 74.295) (xy 75.565 92.075))
  2027. (stroke (width 0) (type default) (color 0 0 0 0))
  2028. (uuid 6fd2d971-503f-4c74-887f-36d879d32153)
  2029. )
  2030. (wire (pts (xy 149.86 165.1) (xy 149.86 169.545))
  2031. (stroke (width 0) (type default) (color 0 0 0 0))
  2032. (uuid 6fdf8cb1-43b4-41ec-a597-26eda1b1bfea)
  2033. )
  2034. (wire (pts (xy 73.66 126.365) (xy 75.565 126.365))
  2035. (stroke (width 0) (type default) (color 0 0 0 0))
  2036. (uuid 717179ed-2e68-461a-82fa-cef04eec478e)
  2037. )
  2038. (wire (pts (xy 176.53 116.205) (xy 176.53 116.84))
  2039. (stroke (width 0) (type default) (color 0 0 0 0))
  2040. (uuid 7498bd78-3bc0-4fbf-9d66-d700fa40cc62)
  2041. )
  2042. (wire (pts (xy 195.58 147.32) (xy 215.265 147.32))
  2043. (stroke (width 0) (type default) (color 0 0 0 0))
  2044. (uuid 76b765a3-1444-4d09-9f0b-b0a2a9529d93)
  2045. )
  2046. (wire (pts (xy 142.24 112.395) (xy 377.825 112.395))
  2047. (stroke (width 0) (type default) (color 0 0 0 0))
  2048. (uuid 76ff85ea-e270-40e9-bb80-4f825b382176)
  2049. )
  2050. (wire (pts (xy 123.19 32.385) (xy 123.19 173.99))
  2051. (stroke (width 0) (type default) (color 0 0 0 0))
  2052. (uuid 791e6197-2135-498f-a5b4-fba09edeab29)
  2053. )
  2054. (wire (pts (xy 53.34 74.295) (xy 53.34 79.375))
  2055. (stroke (width 0) (type default) (color 0 0 0 0))
  2056. (uuid 796bace3-e885-4822-b0bb-08c8d52f8663)
  2057. )
  2058. (wire (pts (xy 170.18 76.835) (xy 377.825 76.835))
  2059. (stroke (width 0) (type default) (color 0 0 0 0))
  2060. (uuid 79cdae03-b3d6-46d9-a41d-828b148b3378)
  2061. )
  2062. (wire (pts (xy 57.785 64.135) (xy 57.785 69.215))
  2063. (stroke (width 0) (type default) (color 0 0 0 0))
  2064. (uuid 7a2c5bbf-30be-4765-a575-e193b94d0adf)
  2065. )
  2066. (wire (pts (xy 189.23 134.62) (xy 210.185 134.62))
  2067. (stroke (width 0) (type default) (color 0 0 0 0))
  2068. (uuid 7ab93d6e-95be-4dcd-b25c-a0707a818cfe)
  2069. )
  2070. (wire (pts (xy 139.7 178.435) (xy 120.65 178.435))
  2071. (stroke (width 0) (type default) (color 0 0 0 0))
  2072. (uuid 7b1b83e3-ff6f-406c-9c24-617b55869c31)
  2073. )
  2074. (wire (pts (xy 107.95 74.295) (xy 144.78 74.295))
  2075. (stroke (width 0) (type default) (color 0 0 0 0))
  2076. (uuid 7b6fa2a7-ce96-4e76-b486-48181fb85cac)
  2077. )
  2078. (wire (pts (xy 168.275 57.785) (xy 168.275 58.42))
  2079. (stroke (width 0) (type default) (color 0 0 0 0))
  2080. (uuid 7ba13ce0-df82-4e3f-bbb0-4656d9b0546b)
  2081. )
  2082. (wire (pts (xy 316.23 162.56) (xy 377.825 162.56))
  2083. (stroke (width 0) (type default) (color 0 0 0 0))
  2084. (uuid 7dcdfc4a-ac11-4e02-99eb-7a03ac391ffc)
  2085. )
  2086. (wire (pts (xy 104.775 147.32) (xy 104.775 233.045))
  2087. (stroke (width 0) (type default) (color 0 0 0 0))
  2088. (uuid 7e2a0961-b0a6-4bcb-a7fd-27e7daed22fb)
  2089. )
  2090. (wire (pts (xy 115.57 187.325) (xy 115.57 210.185))
  2091. (stroke (width 0) (type default) (color 0 0 0 0))
  2092. (uuid 816da806-de0a-4e1b-8d24-4a63bbf8ac51)
  2093. )
  2094. (wire (pts (xy 84.455 74.295) (xy 107.95 74.295))
  2095. (stroke (width 0) (type default) (color 0 0 0 0))
  2096. (uuid 85a73991-0ceb-4dd7-a217-dbbeb2d9b68d)
  2097. )
  2098. (wire (pts (xy 123.19 32.385) (xy 155.575 32.385))
  2099. (stroke (width 0) (type default) (color 0 0 0 0))
  2100. (uuid 86130692-85cb-434b-88a8-acd5b9578832)
  2101. )
  2102. (wire (pts (xy 189.23 129.54) (xy 212.725 129.54))
  2103. (stroke (width 0) (type default) (color 0 0 0 0))
  2104. (uuid 86948288-fb66-467c-9ef7-1049e0220c02)
  2105. )
  2106. (wire (pts (xy 142.24 97.155) (xy 144.78 97.155))
  2107. (stroke (width 0) (type default) (color 0 0 0 0))
  2108. (uuid 87527fa9-2b68-41f6-b164-4cb7ece5c660)
  2109. )
  2110. (wire (pts (xy 68.58 118.745) (xy 70.485 118.745))
  2111. (stroke (width 0) (type default) (color 0 0 0 0))
  2112. (uuid 8769ac02-321e-4379-9c25-b77b9b1bae10)
  2113. )
  2114. (wire (pts (xy 36.195 196.215) (xy 139.7 196.215))
  2115. (stroke (width 0) (type default) (color 0 0 0 0))
  2116. (uuid 879443d6-bb8f-43dd-aab3-6dd88723cfc4)
  2117. )
  2118. (wire (pts (xy 138.43 129.54) (xy 138.43 81.915))
  2119. (stroke (width 0) (type default) (color 0 0 0 0))
  2120. (uuid 8b581e5a-baab-469b-a379-4844659c9715)
  2121. )
  2122. (wire (pts (xy 176.53 154.94) (xy 176.53 155.575))
  2123. (stroke (width 0) (type default) (color 0 0 0 0))
  2124. (uuid 8d348a14-83c9-41b6-b94f-3a2468d004ed)
  2125. )
  2126. (wire (pts (xy 113.03 191.77) (xy 139.7 191.77))
  2127. (stroke (width 0) (type default) (color 0 0 0 0))
  2128. (uuid 8ef63290-68fb-476c-8dcf-c28547c67be6)
  2129. )
  2130. (wire (pts (xy 75.565 120.65) (xy 75.565 126.365))
  2131. (stroke (width 0) (type default) (color 0 0 0 0))
  2132. (uuid 8f5ae009-4b23-4623-9ad3-039426421223)
  2133. )
  2134. (wire (pts (xy 210.185 132.08) (xy 210.185 134.62))
  2135. (stroke (width 0) (type default) (color 0 0 0 0))
  2136. (uuid 8f8891ae-88b1-47eb-86d1-8713cb61b948)
  2137. )
  2138. (wire (pts (xy 149.86 160.655) (xy 149.86 165.1))
  2139. (stroke (width 0) (type default) (color 0 0 0 0))
  2140. (uuid 8fe19ccf-e30c-4c21-b802-5b18dbd37bac)
  2141. )
  2142. (wire (pts (xy 123.19 212.725) (xy 123.19 173.99))
  2143. (stroke (width 0) (type default) (color 0 0 0 0))
  2144. (uuid 91475b77-162c-4a84-be80-8a8352eef4b0)
  2145. )
  2146. (wire (pts (xy 230.505 147.32) (xy 237.49 147.32))
  2147. (stroke (width 0) (type default) (color 0 0 0 0))
  2148. (uuid 923be0c9-48c8-4d8e-a4fb-2aa3b3eae517)
  2149. )
  2150. (wire (pts (xy 36.195 34.925) (xy 120.65 34.925))
  2151. (stroke (width 0) (type default) (color 0 0 0 0))
  2152. (uuid 924fda0e-2e32-465f-94c8-7a18e4af76c0)
  2153. )
  2154. (wire (pts (xy 62.23 74.295) (xy 62.23 84.455))
  2155. (stroke (width 0) (type default) (color 0 0 0 0))
  2156. (uuid 926e33ad-5b4a-4af4-8e22-debc30285d86)
  2157. )
  2158. (wire (pts (xy 139.7 160.655) (xy 130.81 160.655))
  2159. (stroke (width 0) (type default) (color 0 0 0 0))
  2160. (uuid 92899cac-103a-46f2-b979-87a7a92e68dc)
  2161. )
  2162. (wire (pts (xy 149.86 173.99) (xy 149.86 178.435))
  2163. (stroke (width 0) (type default) (color 0 0 0 0))
  2164. (uuid 93225051-df2c-49b9-b6b1-dae05f7f9a4e)
  2165. )
  2166. (wire (pts (xy 125.73 29.845) (xy 155.575 29.845))
  2167. (stroke (width 0) (type default) (color 0 0 0 0))
  2168. (uuid 93225b01-5eb9-48eb-90c5-fd71a9bc061d)
  2169. )
  2170. (wire (pts (xy 195.58 139.7) (xy 195.58 142.875))
  2171. (stroke (width 0) (type default) (color 0 0 0 0))
  2172. (uuid 94a90ff0-98d3-4f48-82b1-4126b3c8387b)
  2173. )
  2174. (wire (pts (xy 110.49 215.265) (xy 140.97 215.265))
  2175. (stroke (width 0) (type default) (color 0 0 0 0))
  2176. (uuid 95211b46-d1ce-4df5-803d-8e348217a851)
  2177. )
  2178. (wire (pts (xy 358.775 124.46) (xy 377.825 124.46))
  2179. (stroke (width 0) (type default) (color 0 0 0 0))
  2180. (uuid 9618b0d5-6af4-48f2-9ce7-8ba3641525d8)
  2181. )
  2182. (wire (pts (xy 75.565 64.135) (xy 75.565 69.215))
  2183. (stroke (width 0) (type default) (color 0 0 0 0))
  2184. (uuid 96c4d003-c453-4154-bf2b-5ca2f144b729)
  2185. )
  2186. (wire (pts (xy 157.48 66.04) (xy 157.48 66.675))
  2187. (stroke (width 0) (type default) (color 0 0 0 0))
  2188. (uuid 96f6143c-b43d-43fb-a4d2-2250f1248eca)
  2189. )
  2190. (wire (pts (xy 75.565 120.65) (xy 77.47 120.65))
  2191. (stroke (width 0) (type default) (color 0 0 0 0))
  2192. (uuid 98a08968-6193-453d-b0dc-7ea7cc18134c)
  2193. )
  2194. (wire (pts (xy 180.975 27.305) (xy 377.825 27.305))
  2195. (stroke (width 0) (type default) (color 0 0 0 0))
  2196. (uuid 98d2fda1-650f-471a-8e27-c447f4cfd359)
  2197. )
  2198. (wire (pts (xy 36.195 217.805) (xy 107.95 217.805))
  2199. (stroke (width 0) (type default) (color 0 0 0 0))
  2200. (uuid 9c0cf9be-4653-43cf-8dc9-71c4a2f4dd39)
  2201. )
  2202. (wire (pts (xy 237.49 147.32) (xy 237.49 137.16))
  2203. (stroke (width 0) (type default) (color 0 0 0 0))
  2204. (uuid 9ca4a910-4561-4444-85d2-e016fbdffec8)
  2205. )
  2206. (wire (pts (xy 358.775 126.365) (xy 358.775 124.46))
  2207. (stroke (width 0) (type default) (color 0 0 0 0))
  2208. (uuid 9dd5d47b-0024-4025-a3fe-fa3d0f570a75)
  2209. )
  2210. (wire (pts (xy 166.37 215.265) (xy 279.4 215.265))
  2211. (stroke (width 0) (type default) (color 0 0 0 0))
  2212. (uuid 9e13df69-d83d-4cb6-b396-bd99e28138c8)
  2213. )
  2214. (wire (pts (xy 170.18 84.455) (xy 377.825 84.455))
  2215. (stroke (width 0) (type default) (color 0 0 0 0))
  2216. (uuid 9e446dca-41be-4245-98af-1c71b4c43afe)
  2217. )
  2218. (wire (pts (xy 136.525 134.62) (xy 136.525 86.995))
  2219. (stroke (width 0) (type default) (color 0 0 0 0))
  2220. (uuid 9f3fefb2-2533-421e-afee-151a6efafa74)
  2221. )
  2222. (wire (pts (xy 128.27 165.1) (xy 139.7 165.1))
  2223. (stroke (width 0) (type default) (color 0 0 0 0))
  2224. (uuid a06fd9fd-12dd-4029-a0bf-ed312bbc4570)
  2225. )
  2226. (wire (pts (xy 149.86 187.325) (xy 144.78 187.325))
  2227. (stroke (width 0) (type default) (color 0 0 0 0))
  2228. (uuid a1469cd5-d22b-4c69-a956-f8a472d5f9e6)
  2229. )
  2230. (wire (pts (xy 189.23 124.46) (xy 196.85 124.46))
  2231. (stroke (width 0) (type default) (color 0 0 0 0))
  2232. (uuid a26aca82-9a56-4c71-946a-14379c1fbb27)
  2233. )
  2234. (wire (pts (xy 42.545 116.205) (xy 53.34 116.205))
  2235. (stroke (width 0) (type default) (color 0 0 0 0))
  2236. (uuid a2dfa0b3-0515-4804-ad62-1cdf4261d40e)
  2237. )
  2238. (wire (pts (xy 70.485 118.745) (xy 70.485 120.65))
  2239. (stroke (width 0) (type default) (color 0 0 0 0))
  2240. (uuid a588d282-db5b-4ffd-a12e-5e21a20d7bac)
  2241. )
  2242. (wire (pts (xy 210.82 124.46) (xy 212.725 124.46))
  2243. (stroke (width 0) (type default) (color 0 0 0 0))
  2244. (uuid a6745354-b8e0-4258-bb78-5fb349db1e46)
  2245. )
  2246. (wire (pts (xy 149.86 173.99) (xy 144.78 173.99))
  2247. (stroke (width 0) (type default) (color 0 0 0 0))
  2248. (uuid a6a0d137-2a51-45e7-be0b-245f8f83fd13)
  2249. )
  2250. (wire (pts (xy 138.43 81.915) (xy 144.78 81.915))
  2251. (stroke (width 0) (type default) (color 0 0 0 0))
  2252. (uuid a6e68575-2c67-44df-8fb5-7006e5a9fc29)
  2253. )
  2254. (wire (pts (xy 283.21 217.805) (xy 283.21 178.435))
  2255. (stroke (width 0) (type default) (color 0 0 0 0))
  2256. (uuid a6e8c847-19a4-49e5-b68e-a90e433a219d)
  2257. )
  2258. (wire (pts (xy 163.83 147.32) (xy 104.775 147.32))
  2259. (stroke (width 0) (type default) (color 0 0 0 0))
  2260. (uuid a7459e7e-293f-424d-9656-2203e51b706f)
  2261. )
  2262. (wire (pts (xy 196.85 115.57) (xy 210.185 115.57))
  2263. (stroke (width 0) (type default) (color 0 0 0 0))
  2264. (uuid a91ba7f0-bea9-4edc-b9f2-fa4d263da61f)
  2265. )
  2266. (wire (pts (xy 196.85 120.65) (xy 210.185 120.65))
  2267. (stroke (width 0) (type default) (color 0 0 0 0))
  2268. (uuid ab916089-8e2e-4a99-b637-f7e872607d0a)
  2269. )
  2270. (wire (pts (xy 139.7 187.325) (xy 115.57 187.325))
  2271. (stroke (width 0) (type default) (color 0 0 0 0))
  2272. (uuid ac070d24-3fd1-40ab-a7ca-cf331d182368)
  2273. )
  2274. (wire (pts (xy 75.565 64.135) (xy 80.01 64.135))
  2275. (stroke (width 0) (type default) (color 0 0 0 0))
  2276. (uuid ad65f6c2-ef1f-4a43-8632-82e95a72fbd3)
  2277. )
  2278. (wire (pts (xy 134.62 139.7) (xy 134.62 84.455))
  2279. (stroke (width 0) (type default) (color 0 0 0 0))
  2280. (uuid af9af00d-dfca-4f43-a396-44fa63877b0f)
  2281. )
  2282. (wire (pts (xy 118.11 182.88) (xy 139.7 182.88))
  2283. (stroke (width 0) (type default) (color 0 0 0 0))
  2284. (uuid b0295121-c64f-455d-9892-d278b361bb4d)
  2285. )
  2286. (wire (pts (xy 36.195 40.005) (xy 115.57 40.005))
  2287. (stroke (width 0) (type default) (color 0 0 0 0))
  2288. (uuid b0398b0b-c04e-4b4c-8008-3c0e243e1eef)
  2289. )
  2290. (wire (pts (xy 107.95 74.295) (xy 107.95 217.805))
  2291. (stroke (width 0) (type default) (color 0 0 0 0))
  2292. (uuid b17f4937-6903-4e3f-b8ca-a837dcce583a)
  2293. )
  2294. (wire (pts (xy 80.01 74.295) (xy 80.01 76.835))
  2295. (stroke (width 0) (type default) (color 0 0 0 0))
  2296. (uuid b19422de-f2ee-4c34-a193-d2cd625fc7fc)
  2297. )
  2298. (wire (pts (xy 170.18 79.375) (xy 377.825 79.375))
  2299. (stroke (width 0) (type default) (color 0 0 0 0))
  2300. (uuid b50505b5-939e-4fbc-9d50-cfbf76d12bd9)
  2301. )
  2302. (wire (pts (xy 73.025 115.57) (xy 73.025 123.825))
  2303. (stroke (width 0) (type default) (color 0 0 0 0))
  2304. (uuid b694c27a-e859-4ea9-8c71-cc4be0ff8d79)
  2305. )
  2306. (wire (pts (xy 99.695 97.155) (xy 142.24 97.155))
  2307. (stroke (width 0) (type default) (color 0 0 0 0))
  2308. (uuid b7ef108f-c5d2-4550-9503-3641dc3bc00e)
  2309. )
  2310. (wire (pts (xy 283.21 175.26) (xy 283.21 178.435))
  2311. (stroke (width 0) (type default) (color 0 0 0 0))
  2312. (uuid b8112686-fef3-418a-94c5-e3a13e8baa96)
  2313. )
  2314. (wire (pts (xy 75.565 126.365) (xy 75.565 128.27))
  2315. (stroke (width 0) (type default) (color 0 0 0 0))
  2316. (uuid b9d65ef5-533e-4f24-b86e-59753adf122b)
  2317. )
  2318. (wire (pts (xy 180.975 37.465) (xy 377.825 37.465))
  2319. (stroke (width 0) (type default) (color 0 0 0 0))
  2320. (uuid baa2dfd6-8f91-4cac-99d1-3ec812cbcd37)
  2321. )
  2322. (wire (pts (xy 99.695 97.155) (xy 99.695 47.625))
  2323. (stroke (width 0) (type default) (color 0 0 0 0))
  2324. (uuid bbd7b2cb-a6b8-4141-97f7-5e6ec880e634)
  2325. )
  2326. (wire (pts (xy 36.195 24.765) (xy 130.81 24.765))
  2327. (stroke (width 0) (type default) (color 0 0 0 0))
  2328. (uuid bbf2dfbf-3ad8-4e5d-8a02-bb2983afefec)
  2329. )
  2330. (wire (pts (xy 125.73 169.545) (xy 139.7 169.545))
  2331. (stroke (width 0) (type default) (color 0 0 0 0))
  2332. (uuid bd9287eb-d426-437d-919c-8ad10b624f66)
  2333. )
  2334. (wire (pts (xy 149.86 169.545) (xy 144.78 169.545))
  2335. (stroke (width 0) (type default) (color 0 0 0 0))
  2336. (uuid bdd3c860-4e69-4a17-b494-ae8dead18a0f)
  2337. )
  2338. (wire (pts (xy 166.37 225.425) (xy 377.825 225.425))
  2339. (stroke (width 0) (type default) (color 0 0 0 0))
  2340. (uuid be3f3a1d-d275-4764-97d9-c659325fde53)
  2341. )
  2342. (wire (pts (xy 170.18 74.295) (xy 377.825 74.295))
  2343. (stroke (width 0) (type default) (color 0 0 0 0))
  2344. (uuid c0e59ad9-37c7-4419-aa94-db44b8d58e13)
  2345. )
  2346. (wire (pts (xy 104.775 233.045) (xy 140.97 233.045))
  2347. (stroke (width 0) (type default) (color 0 0 0 0))
  2348. (uuid c27ad158-1421-4f40-becd-4584dec64b5f)
  2349. )
  2350. (wire (pts (xy 276.225 162.56) (xy 279.4 162.56))
  2351. (stroke (width 0) (type default) (color 0 0 0 0))
  2352. (uuid c6aa9342-0424-4884-a696-f066dbbf6f8b)
  2353. )
  2354. (wire (pts (xy 42.545 114.3) (xy 42.545 116.205))
  2355. (stroke (width 0) (type default) (color 0 0 0 0))
  2356. (uuid c8045cfe-a7ef-438a-8ade-fcd5d6195374)
  2357. )
  2358. (wire (pts (xy 113.03 42.545) (xy 155.575 42.545))
  2359. (stroke (width 0) (type default) (color 0 0 0 0))
  2360. (uuid ca5dc1f6-b730-430c-a283-dc5a1b8dbb50)
  2361. )
  2362. (wire (pts (xy 92.71 118.11) (xy 97.155 118.11))
  2363. (stroke (width 0) (type default) (color 0 0 0 0))
  2364. (uuid ca61aee4-8e6a-41f7-a941-29d587a8cb05)
  2365. )
  2366. (wire (pts (xy 36.195 233.045) (xy 104.775 233.045))
  2367. (stroke (width 0) (type default) (color 0 0 0 0))
  2368. (uuid cb3a38a6-0d16-4f1a-a220-165fb19f24df)
  2369. )
  2370. (wire (pts (xy 170.18 81.915) (xy 377.825 81.915))
  2371. (stroke (width 0) (type default) (color 0 0 0 0))
  2372. (uuid cb992b57-dd37-48aa-a9ab-acf3051ead9c)
  2373. )
  2374. (wire (pts (xy 36.195 121.285) (xy 53.34 121.285))
  2375. (stroke (width 0) (type default) (color 0 0 0 0))
  2376. (uuid cd9c3bba-9ed9-4b08-92cd-f247dfaf01c3)
  2377. )
  2378. (wire (pts (xy 166.37 212.725) (xy 377.825 212.725))
  2379. (stroke (width 0) (type default) (color 0 0 0 0))
  2380. (uuid cee9ba59-3ecc-42c3-8593-31172b6d6801)
  2381. )
  2382. (wire (pts (xy 357.505 128.905) (xy 377.825 128.905))
  2383. (stroke (width 0) (type default) (color 0 0 0 0))
  2384. (uuid cf56d75d-0caf-425d-b16c-84c298486fdd)
  2385. )
  2386. (wire (pts (xy 207.01 132.08) (xy 210.185 132.08))
  2387. (stroke (width 0) (type default) (color 0 0 0 0))
  2388. (uuid cfce3c24-6936-4503-b03a-0317d044014a)
  2389. )
  2390. (wire (pts (xy 153.67 240.665) (xy 153.67 241.3))
  2391. (stroke (width 0) (type default) (color 0 0 0 0))
  2392. (uuid d04b0f38-b296-4808-b8f4-748edeb5f571)
  2393. )
  2394. (wire (pts (xy 180.975 32.385) (xy 377.825 32.385))
  2395. (stroke (width 0) (type default) (color 0 0 0 0))
  2396. (uuid d14cc95d-170b-4b67-98b7-2ce49e5df684)
  2397. )
  2398. (wire (pts (xy 140.97 212.725) (xy 123.19 212.725))
  2399. (stroke (width 0) (type default) (color 0 0 0 0))
  2400. (uuid d17e629f-a8e6-41e4-b4c3-de8f39b795b8)
  2401. )
  2402. (wire (pts (xy 149.86 169.545) (xy 149.86 173.99))
  2403. (stroke (width 0) (type default) (color 0 0 0 0))
  2404. (uuid d1d5e60b-a62d-44e4-91a5-e50acc26d4c1)
  2405. )
  2406. (wire (pts (xy 118.11 37.465) (xy 155.575 37.465))
  2407. (stroke (width 0) (type default) (color 0 0 0 0))
  2408. (uuid d1e4c2d1-2305-4204-9dbe-73f028b64187)
  2409. )
  2410. (wire (pts (xy 238.76 124.46) (xy 358.775 124.46))
  2411. (stroke (width 0) (type default) (color 0 0 0 0))
  2412. (uuid d1ed5ab8-ebf1-474b-8bb6-240e3638e284)
  2413. )
  2414. (wire (pts (xy 130.81 225.425) (xy 140.97 225.425))
  2415. (stroke (width 0) (type default) (color 0 0 0 0))
  2416. (uuid d21d72ec-a09e-4242-a667-284ca838135b)
  2417. )
  2418. (wire (pts (xy 66.675 64.135) (xy 71.12 64.135))
  2419. (stroke (width 0) (type default) (color 0 0 0 0))
  2420. (uuid d3d6bf85-3299-4191-89f4-92081b00a725)
  2421. )
  2422. (wire (pts (xy 36.195 86.995) (xy 66.675 86.995))
  2423. (stroke (width 0) (type default) (color 0 0 0 0))
  2424. (uuid d56c1959-548c-410d-84a9-007a3a2ca06e)
  2425. )
  2426. (wire (pts (xy 80.01 76.835) (xy 110.49 76.835))
  2427. (stroke (width 0) (type default) (color 0 0 0 0))
  2428. (uuid d58341b4-4f07-410d-927e-2415181cdcc1)
  2429. )
  2430. (wire (pts (xy 225.425 118.11) (xy 377.825 118.11))
  2431. (stroke (width 0) (type default) (color 0 0 0 0))
  2432. (uuid d68bbd1b-4ea8-40ff-b70d-da8bca9519bd)
  2433. )
  2434. (wire (pts (xy 212.725 129.54) (xy 212.725 124.46))
  2435. (stroke (width 0) (type default) (color 0 0 0 0))
  2436. (uuid db8ad586-39ca-4fe9-80c8-7b8a0701edbb)
  2437. )
  2438. (wire (pts (xy 149.86 182.88) (xy 144.78 182.88))
  2439. (stroke (width 0) (type default) (color 0 0 0 0))
  2440. (uuid db9b64c2-bac4-4441-8ae1-e62c2c7afce0)
  2441. )
  2442. (wire (pts (xy 142.24 97.155) (xy 142.24 112.395))
  2443. (stroke (width 0) (type default) (color 0 0 0 0))
  2444. (uuid dbe7fd16-fb4b-4e90-9c4d-e7ccdf50cff7)
  2445. )
  2446. (wire (pts (xy 128.27 165.1) (xy 128.27 222.885))
  2447. (stroke (width 0) (type default) (color 0 0 0 0))
  2448. (uuid df9a4c0b-23b2-4876-8617-1269ebf0c0d3)
  2449. )
  2450. (wire (pts (xy 168.275 16.51) (xy 168.275 17.145))
  2451. (stroke (width 0) (type default) (color 0 0 0 0))
  2452. (uuid e17d13d3-2bf5-4703-afdf-c0f8adbb8393)
  2453. )
  2454. (wire (pts (xy 80.01 64.135) (xy 84.455 64.135))
  2455. (stroke (width 0) (type default) (color 0 0 0 0))
  2456. (uuid e1d94abb-8b1d-4f6d-a333-df479103bb0a)
  2457. )
  2458. (wire (pts (xy 57.785 64.135) (xy 62.23 64.135))
  2459. (stroke (width 0) (type default) (color 0 0 0 0))
  2460. (uuid e1e35b86-dfdc-45ed-98be-4885777428d4)
  2461. )
  2462. (wire (pts (xy 212.725 124.46) (xy 223.52 124.46))
  2463. (stroke (width 0) (type default) (color 0 0 0 0))
  2464. (uuid e25bc944-9de7-43e5-85d0-e88af0d833b7)
  2465. )
  2466. (wire (pts (xy 36.195 89.535) (xy 71.12 89.535))
  2467. (stroke (width 0) (type default) (color 0 0 0 0))
  2468. (uuid e30f14d1-a91d-4281-822d-866fdf39d68d)
  2469. )
  2470. (wire (pts (xy 97.155 99.695) (xy 144.78 99.695))
  2471. (stroke (width 0) (type default) (color 0 0 0 0))
  2472. (uuid e3470bcd-4171-4122-99fd-71f752787b70)
  2473. )
  2474. (wire (pts (xy 130.81 24.765) (xy 155.575 24.765))
  2475. (stroke (width 0) (type default) (color 0 0 0 0))
  2476. (uuid e691d441-c8fc-4898-b110-1214d45bae65)
  2477. )
  2478. (wire (pts (xy 115.57 40.005) (xy 115.57 187.325))
  2479. (stroke (width 0) (type default) (color 0 0 0 0))
  2480. (uuid e719c708-ea90-4656-93d0-25004e7822a9)
  2481. )
  2482. (wire (pts (xy 140.335 124.46) (xy 140.335 79.375))
  2483. (stroke (width 0) (type default) (color 0 0 0 0))
  2484. (uuid e7eff961-b68b-4b50-8684-65c92b6109dd)
  2485. )
  2486. (wire (pts (xy 180.975 34.925) (xy 377.825 34.925))
  2487. (stroke (width 0) (type default) (color 0 0 0 0))
  2488. (uuid e8bbcef8-d198-4c03-afb8-ca61d4c5d9cc)
  2489. )
  2490. (wire (pts (xy 128.27 27.305) (xy 128.27 165.1))
  2491. (stroke (width 0) (type default) (color 0 0 0 0))
  2492. (uuid e8c91b32-3190-475b-8a89-3552fe1fcd18)
  2493. )
  2494. (wire (pts (xy 99.695 47.625) (xy 155.575 47.625))
  2495. (stroke (width 0) (type default) (color 0 0 0 0))
  2496. (uuid e9d32d7e-f118-4e9a-8b5d-0b5fef30a91d)
  2497. )
  2498. (wire (pts (xy 102.87 144.78) (xy 163.83 144.78))
  2499. (stroke (width 0) (type default) (color 0 0 0 0))
  2500. (uuid eb376c99-47cf-4f2b-b395-0cd3ae6faa98)
  2501. )
  2502. (wire (pts (xy 99.695 130.81) (xy 99.695 97.155))
  2503. (stroke (width 0) (type default) (color 0 0 0 0))
  2504. (uuid ec6dbb02-ae73-4033-bd59-89c394769b7e)
  2505. )
  2506. (wire (pts (xy 125.73 29.845) (xy 125.73 169.545))
  2507. (stroke (width 0) (type default) (color 0 0 0 0))
  2508. (uuid ed81c934-fa91-4733-b051-470b6eb001d6)
  2509. )
  2510. (wire (pts (xy 149.86 178.435) (xy 144.78 178.435))
  2511. (stroke (width 0) (type default) (color 0 0 0 0))
  2512. (uuid ef1b954e-a8a8-4f08-85de-39c9aac0ac81)
  2513. )
  2514. (wire (pts (xy 195.58 115.57) (xy 196.85 115.57))
  2515. (stroke (width 0) (type default) (color 0 0 0 0))
  2516. (uuid ef661cd7-c780-4cb4-8e41-43ee86260fec)
  2517. )
  2518. (wire (pts (xy 53.34 61.595) (xy 53.34 64.135))
  2519. (stroke (width 0) (type default) (color 0 0 0 0))
  2520. (uuid f1a04310-4577-4dea-936a-f63d8b38f70f)
  2521. )
  2522. (wire (pts (xy 36.195 84.455) (xy 62.23 84.455))
  2523. (stroke (width 0) (type default) (color 0 0 0 0))
  2524. (uuid f468f955-7416-4653-a0a7-edbb2cb9d010)
  2525. )
  2526. (wire (pts (xy 170.18 92.075) (xy 377.825 92.075))
  2527. (stroke (width 0) (type default) (color 0 0 0 0))
  2528. (uuid f57cdd18-afd1-46ff-b0c8-62f1c8067e78)
  2529. )
  2530. (wire (pts (xy 92.71 130.81) (xy 99.695 130.81))
  2531. (stroke (width 0) (type default) (color 0 0 0 0))
  2532. (uuid f632bf5e-a834-4705-984a-ab12d8d8a8e1)
  2533. )
  2534. (wire (pts (xy 66.675 86.995) (xy 136.525 86.995))
  2535. (stroke (width 0) (type default) (color 0 0 0 0))
  2536. (uuid f6d68b5e-a4b4-49a8-92e5-73a815e91cd9)
  2537. )
  2538. (wire (pts (xy 36.195 37.465) (xy 118.11 37.465))
  2539. (stroke (width 0) (type default) (color 0 0 0 0))
  2540. (uuid f9cc6bd3-95fd-475d-a7e2-f049afee9624)
  2541. )
  2542. (wire (pts (xy 180.975 40.005) (xy 377.825 40.005))
  2543. (stroke (width 0) (type default) (color 0 0 0 0))
  2544. (uuid fa5a79d3-4b67-410f-b2b2-f72dfd0d8c3e)
  2545. )
  2546. (wire (pts (xy 166.37 220.345) (xy 377.825 220.345))
  2547. (stroke (width 0) (type default) (color 0 0 0 0))
  2548. (uuid fa636d4a-5f7f-4aea-984b-5da65f3b6317)
  2549. )
  2550. (wire (pts (xy 80.01 64.135) (xy 80.01 69.215))
  2551. (stroke (width 0) (type default) (color 0 0 0 0))
  2552. (uuid fc2e350d-91c7-498b-b657-01f07d0630af)
  2553. )
  2554. (wire (pts (xy 283.21 178.435) (xy 300.99 178.435))
  2555. (stroke (width 0) (type default) (color 0 0 0 0))
  2556. (uuid fd5a1ce1-3e43-4be0-8e7a-0a802d619cb5)
  2557. )
  2558. (wire (pts (xy 149.86 187.325) (xy 149.86 191.77))
  2559. (stroke (width 0) (type default) (color 0 0 0 0))
  2560. (uuid fe2136d6-b73e-4043-a2c2-ed0d0abae1b7)
  2561. )
  2562. (text "Floppy & SASI databuss\n" (at 69.215 21.59 0)
  2563. (effects (font (size 1.27 1.27)) (justify left bottom))
  2564. (uuid 20171de3-f3d2-4c74-b929-8bee66f3b9bf)
  2565. )
  2566. (text "U-LINK\n" (at 344.17 128.27 0)
  2567. (effects (font (size 1.27 1.27)) (justify left bottom))
  2568. (uuid ae7d8cac-c56f-4af8-aee2-4e6561d3a64c)
  2569. )
  2570. (global_label "~{HDLD}" (shape input) (at 377.825 128.905 0) (fields_autoplaced)
  2571. (effects (font (size 1.27 1.27)) (justify left))
  2572. (uuid 04a6c3e9-9fd8-419a-99e3-5e4e9fe7a03b)
  2573. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 385.0478 128.8256 0)
  2574. (effects (font (size 1.27 1.27)) (justify left) hide)
  2575. )
  2576. )
  2577. (global_label "D0" (shape input) (at 377.825 24.765 0) (fields_autoplaced)
  2578. (effects (font (size 1.27 1.27)) (justify left))
  2579. (uuid 05c00a09-a4b2-4a97-acb8-471daf82934b)
  2580. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 382.6287 24.6856 0)
  2581. (effects (font (size 1.27 1.27)) (justify left) hide)
  2582. )
  2583. )
  2584. (global_label "XD8" (shape input) (at 36.195 217.805 180) (fields_autoplaced)
  2585. (effects (font (size 1.27 1.27)) (justify right))
  2586. (uuid 07238166-f4a1-4106-823f-c595907228a0)
  2587. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.1818 217.7256 0)
  2588. (effects (font (size 1.27 1.27)) (justify right) hide)
  2589. )
  2590. )
  2591. (global_label "C604" (shape input) (at 207.01 132.08 180) (fields_autoplaced)
  2592. (effects (font (size 1.27 1.27)) (justify right))
  2593. (uuid 0852e867-9fdc-487b-ae3d-a8f5cca06124)
  2594. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 199.7872 132.0006 0)
  2595. (effects (font (size 1.27 1.27)) (justify right) hide)
  2596. )
  2597. )
  2598. (global_label "PRE1" (shape input) (at 377.825 210.185 0) (fields_autoplaced)
  2599. (effects (font (size 1.27 1.27)) (justify left))
  2600. (uuid 0b830cf8-f013-43a4-8d94-36fc0e79848d)
  2601. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 385.0478 210.1056 0)
  2602. (effects (font (size 1.27 1.27)) (justify left) hide)
  2603. )
  2604. )
  2605. (global_label "FPMR" (shape input) (at 377.825 225.425 0) (fields_autoplaced)
  2606. (effects (font (size 1.27 1.27)) (justify left))
  2607. (uuid 0b8deec5-d78d-4e57-a421-543aaebf1a11)
  2608. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 385.2292 225.3456 0)
  2609. (effects (font (size 1.27 1.27)) (justify left) hide)
  2610. )
  2611. )
  2612. (global_label "C605" (shape input) (at 73.66 126.365 180) (fields_autoplaced)
  2613. (effects (font (size 1.27 1.27)) (justify right))
  2614. (uuid 0d191a29-c6e5-4cf4-a57c-6c7fdd2757b2)
  2615. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 66.4372 126.2856 0)
  2616. (effects (font (size 1.27 1.27)) (justify right) hide)
  2617. )
  2618. )
  2619. (global_label "~{MOTOR}" (shape input) (at 377.825 124.46 0) (fields_autoplaced)
  2620. (effects (font (size 1.27 1.27)) (justify left))
  2621. (uuid 0ddd6219-77d9-44a4-a2fb-bc874cd07ab3)
  2622. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 386.4992 124.3806 0)
  2623. (effects (font (size 1.27 1.27)) (justify left) hide)
  2624. )
  2625. )
  2626. (global_label "C608" (shape input) (at 197.485 142.875 0) (fields_autoplaced)
  2627. (effects (font (size 1.27 1.27)) (justify left))
  2628. (uuid 0f44ea4a-cf48-4f95-91ff-831e9644d445)
  2629. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 204.7078 142.7956 0)
  2630. (effects (font (size 1.27 1.27)) (justify left) hide)
  2631. )
  2632. )
  2633. (global_label "~{MMG}" (shape input) (at 36.195 123.825 180) (fields_autoplaced)
  2634. (effects (font (size 1.27 1.27)) (justify right))
  2635. (uuid 0ff16449-1cd7-4093-9680-6a5065704aea)
  2636. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 29.6979 123.7456 0)
  2637. (effects (font (size 1.27 1.27)) (justify right) hide)
  2638. )
  2639. )
  2640. (global_label "D5" (shape input) (at 377.825 37.465 0) (fields_autoplaced)
  2641. (effects (font (size 1.27 1.27)) (justify left))
  2642. (uuid 19912353-b3af-4d86-8b6f-30b9a9a2debb)
  2643. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 382.6287 37.3856 0)
  2644. (effects (font (size 1.27 1.27)) (justify left) hide)
  2645. )
  2646. )
  2647. (global_label "XD6" (shape input) (at 36.195 40.005 180) (fields_autoplaced)
  2648. (effects (font (size 1.27 1.27)) (justify right))
  2649. (uuid 234cdb1b-9d3e-4ca9-8277-8be5120194dd)
  2650. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.1818 39.9256 0)
  2651. (effects (font (size 1.27 1.27)) (justify right) hide)
  2652. )
  2653. )
  2654. (global_label "XD4" (shape input) (at 36.195 34.925 180) (fields_autoplaced)
  2655. (effects (font (size 1.27 1.27)) (justify right))
  2656. (uuid 24ebdbde-f64e-4c5f-8010-626d12aac478)
  2657. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.1818 34.8456 0)
  2658. (effects (font (size 1.27 1.27)) (justify right) hide)
  2659. )
  2660. )
  2661. (global_label "XD12" (shape input) (at 36.195 84.455 180) (fields_autoplaced)
  2662. (effects (font (size 1.27 1.27)) (justify right))
  2663. (uuid 2ab43084-c3d5-4125-a131-fc54ac4672d2)
  2664. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 28.9722 84.3756 0)
  2665. (effects (font (size 1.27 1.27)) (justify right) hide)
  2666. )
  2667. )
  2668. (global_label "D4" (shape input) (at 377.825 34.925 0) (fields_autoplaced)
  2669. (effects (font (size 1.27 1.27)) (justify left))
  2670. (uuid 2d2954ac-91ab-4576-b424-7f71fad0e8dd)
  2671. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 382.6287 34.8456 0)
  2672. (effects (font (size 1.27 1.27)) (justify left) hide)
  2673. )
  2674. )
  2675. (global_label "~{IRST}" (shape input) (at 36.195 233.045 180) (fields_autoplaced)
  2676. (effects (font (size 1.27 1.27)) (justify right))
  2677. (uuid 2e737fb1-bf91-465d-8c49-1f4a81888889)
  2678. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 29.8189 232.9656 0)
  2679. (effects (font (size 1.27 1.27)) (justify right) hide)
  2680. )
  2681. )
  2682. (global_label "SEL1" (shape input) (at 276.225 162.56 180) (fields_autoplaced)
  2683. (effects (font (size 1.27 1.27)) (justify right))
  2684. (uuid 307246d7-55cb-496d-a611-0437f4e237f3)
  2685. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 269.3046 162.4806 0)
  2686. (effects (font (size 1.27 1.27)) (justify right) hide)
  2687. )
  2688. )
  2689. (global_label "D7" (shape input) (at 377.825 42.545 0) (fields_autoplaced)
  2690. (effects (font (size 1.27 1.27)) (justify left))
  2691. (uuid 3efe6ee9-bbbe-433a-a7e6-80047f4cb213)
  2692. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 382.6287 42.4656 0)
  2693. (effects (font (size 1.27 1.27)) (justify left) hide)
  2694. )
  2695. )
  2696. (global_label "D8" (shape input) (at 377.825 74.295 0) (fields_autoplaced)
  2697. (effects (font (size 1.27 1.27)) (justify left))
  2698. (uuid 49856de8-57cd-4d35-ac36-db832faa0039)
  2699. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 382.6287 74.2156 0)
  2700. (effects (font (size 1.27 1.27)) (justify left) hide)
  2701. )
  2702. )
  2703. (global_label "D9" (shape input) (at 377.825 76.835 0) (fields_autoplaced)
  2704. (effects (font (size 1.27 1.27)) (justify left))
  2705. (uuid 620b9086-f072-46df-b44f-4dfb537352ed)
  2706. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 382.6287 76.7556 0)
  2707. (effects (font (size 1.27 1.27)) (justify left) hide)
  2708. )
  2709. )
  2710. (global_label "~{LO1}" (shape input) (at 377.825 137.16 0) (fields_autoplaced)
  2711. (effects (font (size 1.27 1.27)) (justify left))
  2712. (uuid 6a1a0128-0e2e-4f3b-9f70-37f87f6dc370)
  2713. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 383.7173 137.0806 0)
  2714. (effects (font (size 1.27 1.27)) (justify left) hide)
  2715. )
  2716. )
  2717. (global_label "C610" (shape input) (at 195.58 115.57 180) (fields_autoplaced)
  2718. (effects (font (size 1.27 1.27)) (justify right))
  2719. (uuid 6b37a72b-bac7-46ab-b0c3-64965893016b)
  2720. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 188.3572 115.4906 0)
  2721. (effects (font (size 1.27 1.27)) (justify right) hide)
  2722. )
  2723. )
  2724. (global_label "XD0" (shape input) (at 36.195 24.765 180) (fields_autoplaced)
  2725. (effects (font (size 1.27 1.27)) (justify right))
  2726. (uuid 6c031052-95b9-40f3-a2b7-33f80e482200)
  2727. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.1818 24.6856 0)
  2728. (effects (font (size 1.27 1.27)) (justify right) hide)
  2729. )
  2730. )
  2731. (global_label "XD15" (shape input) (at 36.195 92.075 180) (fields_autoplaced)
  2732. (effects (font (size 1.27 1.27)) (justify right))
  2733. (uuid 6f594e73-9831-41d2-8056-599395aab23c)
  2734. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 28.9722 91.9956 0)
  2735. (effects (font (size 1.27 1.27)) (justify right) hide)
  2736. )
  2737. )
  2738. (global_label "D6" (shape input) (at 377.825 40.005 0) (fields_autoplaced)
  2739. (effects (font (size 1.27 1.27)) (justify left))
  2740. (uuid 707b476b-ead0-4941-92ab-6d68e9599c1a)
  2741. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 382.6287 39.9256 0)
  2742. (effects (font (size 1.27 1.27)) (justify left) hide)
  2743. )
  2744. )
  2745. (global_label "XD3" (shape input) (at 36.195 32.385 180) (fields_autoplaced)
  2746. (effects (font (size 1.27 1.27)) (justify right))
  2747. (uuid 80a13d1f-cfa9-4461-8ea4-b0d93118530d)
  2748. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.1818 32.3056 0)
  2749. (effects (font (size 1.27 1.27)) (justify right) hide)
  2750. )
  2751. )
  2752. (global_label "XD2" (shape input) (at 36.195 29.845 180) (fields_autoplaced)
  2753. (effects (font (size 1.27 1.27)) (justify right))
  2754. (uuid 85fc83fa-e4f2-4374-b492-af2e10b22b0e)
  2755. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.1818 29.7656 0)
  2756. (effects (font (size 1.27 1.27)) (justify right) hide)
  2757. )
  2758. )
  2759. (global_label "FPDD" (shape input) (at 377.825 222.885 0) (fields_autoplaced)
  2760. (effects (font (size 1.27 1.27)) (justify left))
  2761. (uuid 8ab3d51b-e6da-44c3-8fa7-89d77b3fdc1a)
  2762. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 385.0478 222.8056 0)
  2763. (effects (font (size 1.27 1.27)) (justify left) hide)
  2764. )
  2765. )
  2766. (global_label "SEL0" (shape input) (at 285.75 175.26 0) (fields_autoplaced)
  2767. (effects (font (size 1.27 1.27)) (justify left))
  2768. (uuid 9030fb33-5ea1-42a9-9e8a-6592b4521b60)
  2769. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 292.6704 175.3394 0)
  2770. (effects (font (size 1.27 1.27)) (justify left) hide)
  2771. )
  2772. )
  2773. (global_label "FPHLT" (shape input) (at 377.825 220.345 0) (fields_autoplaced)
  2774. (effects (font (size 1.27 1.27)) (justify left))
  2775. (uuid 96425bd7-b6e3-4639-a346-5d7647e1e04c)
  2776. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 385.834 220.2656 0)
  2777. (effects (font (size 1.27 1.27)) (justify left) hide)
  2778. )
  2779. )
  2780. (global_label "XD1" (shape input) (at 36.195 27.305 180) (fields_autoplaced)
  2781. (effects (font (size 1.27 1.27)) (justify right))
  2782. (uuid 9724d013-4345-4268-999a-df1fa606a32e)
  2783. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.1818 27.2256 0)
  2784. (effects (font (size 1.27 1.27)) (justify right) hide)
  2785. )
  2786. )
  2787. (global_label "XD7" (shape input) (at 36.195 42.545 180) (fields_autoplaced)
  2788. (effects (font (size 1.27 1.27)) (justify right))
  2789. (uuid 9be73ae6-1e7d-40b1-93e9-b85a402fb3d0)
  2790. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.1818 42.4656 0)
  2791. (effects (font (size 1.27 1.27)) (justify right) hide)
  2792. )
  2793. )
  2794. (global_label "FPWG" (shape input) (at 36.195 110.49 180) (fields_autoplaced)
  2795. (effects (font (size 1.27 1.27)) (justify right))
  2796. (uuid a0cc259b-d0c6-400c-bb8e-d7ea26da1c38)
  2797. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 28.7908 110.4106 0)
  2798. (effects (font (size 1.27 1.27)) (justify right) hide)
  2799. )
  2800. )
  2801. (global_label "D10" (shape input) (at 377.825 79.375 0) (fields_autoplaced)
  2802. (effects (font (size 1.27 1.27)) (justify left))
  2803. (uuid a76f719f-8d3b-4d65-b4f6-2c8949ae1112)
  2804. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 383.8382 79.2956 0)
  2805. (effects (font (size 1.27 1.27)) (justify left) hide)
  2806. )
  2807. )
  2808. (global_label "XD10" (shape input) (at 36.195 79.375 180) (fields_autoplaced)
  2809. (effects (font (size 1.27 1.27)) (justify right))
  2810. (uuid a7f1492d-33ff-478f-8ea1-9d7c883ee1d2)
  2811. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 28.9722 79.2956 0)
  2812. (effects (font (size 1.27 1.27)) (justify right) hide)
  2813. )
  2814. )
  2815. (global_label "D3" (shape input) (at 377.825 32.385 0) (fields_autoplaced)
  2816. (effects (font (size 1.27 1.27)) (justify left))
  2817. (uuid a84acee1-57b5-45d3-87eb-f3def55f34f3)
  2818. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 382.6287 32.3056 0)
  2819. (effects (font (size 1.27 1.27)) (justify left) hide)
  2820. )
  2821. )
  2822. (global_label "D11" (shape input) (at 377.825 81.915 0) (fields_autoplaced)
  2823. (effects (font (size 1.27 1.27)) (justify left))
  2824. (uuid ab9fef3a-e66f-455f-a644-ed88fa77d7b7)
  2825. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 383.8382 81.8356 0)
  2826. (effects (font (size 1.27 1.27)) (justify left) hide)
  2827. )
  2828. )
  2829. (global_label "D12" (shape input) (at 377.825 84.455 0) (fields_autoplaced)
  2830. (effects (font (size 1.27 1.27)) (justify left))
  2831. (uuid ac0eae27-e77d-4fbe-8c3b-d788a254e419)
  2832. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 383.8382 84.3756 0)
  2833. (effects (font (size 1.27 1.27)) (justify left) hide)
  2834. )
  2835. )
  2836. (global_label "XD5" (shape input) (at 36.195 37.465 180) (fields_autoplaced)
  2837. (effects (font (size 1.27 1.27)) (justify right))
  2838. (uuid af57248b-c22d-46ac-a7ac-6025a7eb000b)
  2839. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.1818 37.3856 0)
  2840. (effects (font (size 1.27 1.27)) (justify right) hide)
  2841. )
  2842. )
  2843. (global_label "D14" (shape input) (at 377.825 89.535 0) (fields_autoplaced)
  2844. (effects (font (size 1.27 1.27)) (justify left))
  2845. (uuid b36568b9-1a7c-4148-a41e-e88dee50517c)
  2846. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 383.8382 89.4556 0)
  2847. (effects (font (size 1.27 1.27)) (justify left) hide)
  2848. )
  2849. )
  2850. (global_label "~{ACK0}" (shape input) (at 36.195 121.285 180) (fields_autoplaced)
  2851. (effects (font (size 1.27 1.27)) (justify right))
  2852. (uuid b926a4b2-4765-4764-a562-55dd859253cb)
  2853. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 29.0327 121.2056 0)
  2854. (effects (font (size 1.27 1.27)) (justify right) hide)
  2855. )
  2856. )
  2857. (global_label "XD13" (shape input) (at 36.195 86.995 180) (fields_autoplaced)
  2858. (effects (font (size 1.27 1.27)) (justify right))
  2859. (uuid b94a50d5-4cd3-4ad0-bc15-cb608a54f30b)
  2860. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 28.9722 86.9156 0)
  2861. (effects (font (size 1.27 1.27)) (justify right) hide)
  2862. )
  2863. )
  2864. (global_label "XD9" (shape input) (at 36.195 215.265 180) (fields_autoplaced)
  2865. (effects (font (size 1.27 1.27)) (justify right))
  2866. (uuid bc2b8564-0ac8-474a-8883-dac2b7c2a02b)
  2867. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.1818 215.1856 0)
  2868. (effects (font (size 1.27 1.27)) (justify right) hide)
  2869. )
  2870. )
  2871. (global_label "~{DIR}" (shape input) (at 36.195 133.35 180) (fields_autoplaced)
  2872. (effects (font (size 1.27 1.27)) (justify right))
  2873. (uuid bf9da1a5-f9c2-4c19-b24c-c41bcebef840)
  2874. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 30.726 133.2706 0)
  2875. (effects (font (size 1.27 1.27)) (justify right) hide)
  2876. )
  2877. )
  2878. (global_label "SS+" (shape input) (at 36.195 196.215 180) (fields_autoplaced)
  2879. (effects (font (size 1.27 1.27)) (justify right))
  2880. (uuid c62d015c-efc3-478d-9f2b-0ea650a0e116)
  2881. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 29.8794 196.1356 0)
  2882. (effects (font (size 1.27 1.27)) (justify right) hide)
  2883. )
  2884. )
  2885. (global_label "C609" (shape input) (at 210.82 124.46 180) (fields_autoplaced)
  2886. (effects (font (size 1.27 1.27)) (justify right))
  2887. (uuid c67c2f2d-105d-497c-8981-82a007f3ca8e)
  2888. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.5972 124.3806 0)
  2889. (effects (font (size 1.27 1.27)) (justify right) hide)
  2890. )
  2891. )
  2892. (global_label "~{SEL2}" (shape input) (at 377.825 118.11 0) (fields_autoplaced)
  2893. (effects (font (size 1.27 1.27)) (justify left))
  2894. (uuid c84c15d0-bfd5-496c-9159-624d3b7b70c9)
  2895. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.7454 118.0306 0)
  2896. (effects (font (size 1.27 1.27)) (justify left) hide)
  2897. )
  2898. )
  2899. (global_label "~{SEL0}" (shape input) (at 377.825 178.435 0) (fields_autoplaced)
  2900. (effects (font (size 1.27 1.27)) (justify left))
  2901. (uuid cb078c28-fb75-43e3-9c09-9f24bb122f99)
  2902. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.7454 178.3556 0)
  2903. (effects (font (size 1.27 1.27)) (justify left) hide)
  2904. )
  2905. )
  2906. (global_label "~{SEL1}" (shape input) (at 377.825 162.56 0) (fields_autoplaced)
  2907. (effects (font (size 1.27 1.27)) (justify left))
  2908. (uuid cf7e4332-29b4-496a-be62-8bb964a11b0b)
  2909. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.7454 162.4806 0)
  2910. (effects (font (size 1.27 1.27)) (justify left) hide)
  2911. )
  2912. )
  2913. (global_label "XDCK" (shape input) (at 36.195 230.505 180) (fields_autoplaced)
  2914. (effects (font (size 1.27 1.27)) (justify right))
  2915. (uuid d0d5a3e4-a199-4cde-82ee-5c94c2a54554)
  2916. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 28.8513 230.4256 0)
  2917. (effects (font (size 1.27 1.27)) (justify right) hide)
  2918. )
  2919. )
  2920. (global_label "XD11" (shape input) (at 36.195 81.915 180) (fields_autoplaced)
  2921. (effects (font (size 1.27 1.27)) (justify right))
  2922. (uuid d9f81d7d-01a1-4561-a9ce-b45476d3faec)
  2923. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 28.9722 81.8356 0)
  2924. (effects (font (size 1.27 1.27)) (justify right) hide)
  2925. )
  2926. )
  2927. (global_label "XD14" (shape input) (at 36.195 89.535 180) (fields_autoplaced)
  2928. (effects (font (size 1.27 1.27)) (justify right))
  2929. (uuid de4b8eaf-0e36-4f92-b907-116856e90e8c)
  2930. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 28.9722 89.4556 0)
  2931. (effects (font (size 1.27 1.27)) (justify right) hide)
  2932. )
  2933. )
  2934. (global_label "D13" (shape input) (at 377.825 86.995 0) (fields_autoplaced)
  2935. (effects (font (size 1.27 1.27)) (justify left))
  2936. (uuid df9952d3-5ecf-4a82-83d7-aed2adfaf78d)
  2937. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 383.8382 86.9156 0)
  2938. (effects (font (size 1.27 1.27)) (justify left) hide)
  2939. )
  2940. )
  2941. (global_label "D2" (shape input) (at 377.825 29.845 0) (fields_autoplaced)
  2942. (effects (font (size 1.27 1.27)) (justify left))
  2943. (uuid e08c1d64-5ddf-42f3-af33-17846daed1c9)
  2944. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 382.6287 29.7656 0)
  2945. (effects (font (size 1.27 1.27)) (justify left) hide)
  2946. )
  2947. )
  2948. (global_label "XDIR" (shape input) (at 377.825 112.395 0) (fields_autoplaced)
  2949. (effects (font (size 1.27 1.27)) (justify left))
  2950. (uuid e365deea-8323-4827-b750-567984d719f0)
  2951. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.5035 112.3156 0)
  2952. (effects (font (size 1.27 1.27)) (justify left) hide)
  2953. )
  2954. )
  2955. (global_label "PRE2" (shape input) (at 377.825 207.645 0) (fields_autoplaced)
  2956. (effects (font (size 1.27 1.27)) (justify left))
  2957. (uuid ecbcc508-eb74-447c-abcd-dec5eea7d3cd)
  2958. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 385.0478 207.5656 0)
  2959. (effects (font (size 1.27 1.27)) (justify left) hide)
  2960. )
  2961. )
  2962. (global_label "MINT" (shape input) (at 377.825 212.725 0) (fields_autoplaced)
  2963. (effects (font (size 1.27 1.27)) (justify left))
  2964. (uuid eed517d4-a6f6-4af5-bc4f-ae6bf068f790)
  2965. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.5035 212.6456 0)
  2966. (effects (font (size 1.27 1.27)) (justify left) hide)
  2967. )
  2968. )
  2969. (global_label "D15" (shape input) (at 377.825 92.075 0) (fields_autoplaced)
  2970. (effects (font (size 1.27 1.27)) (justify left))
  2971. (uuid f99dd931-a86c-4aa1-be7a-fb9cbf65939f)
  2972. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 383.8382 91.9956 0)
  2973. (effects (font (size 1.27 1.27)) (justify left) hide)
  2974. )
  2975. )
  2976. (global_label "D1" (shape input) (at 377.825 27.305 0) (fields_autoplaced)
  2977. (effects (font (size 1.27 1.27)) (justify left))
  2978. (uuid fa31022f-b59c-438b-ac83-fb349b68148a)
  2979. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 382.6287 27.2256 0)
  2980. (effects (font (size 1.27 1.27)) (justify left) hide)
  2981. )
  2982. )
  2983. (symbol (lib_id "74xx:74LS273") (at 153.67 220.345 0) (unit 1)
  2984. (in_bom yes) (on_board yes)
  2985. (uuid 0444c561-e3d6-4eed-b9eb-df4198d92a31)
  2986. (property "Reference" "U220" (id 0) (at 146.05 201.93 0)
  2987. (effects (font (size 1.27 1.27)) (justify left))
  2988. )
  2989. (property "Value" "74LS273" (id 1) (at 155.6894 201.93 0)
  2990. (effects (font (size 1.27 1.27)) (justify left))
  2991. )
  2992. (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 153.67 220.345 0)
  2993. (effects (font (size 1.27 1.27)) hide)
  2994. )
  2995. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS273" (id 3) (at 153.67 220.345 0)
  2996. (effects (font (size 1.27 1.27)) hide)
  2997. )
  2998. (pin "1" (uuid e9007464-10a3-4317-9849-7327ca648721))
  2999. (pin "10" (uuid ce150766-2fef-4de4-a008-42a3c99600c1))
  3000. (pin "11" (uuid 4598345a-dab0-4b0c-8b82-011a1c9824ce))
  3001. (pin "12" (uuid 15e4dbc1-0c0f-4668-831c-771534f42b4a))
  3002. (pin "13" (uuid f4abcb5f-62b7-46c6-84cc-aed55b4628ee))
  3003. (pin "14" (uuid 77793558-93ac-40b6-8f62-dcd9d87c0bd2))
  3004. (pin "15" (uuid 41a81194-17c3-4348-8de9-48ab5b69d782))
  3005. (pin "16" (uuid 5f7b86c2-9401-40a1-a344-03524aed45af))
  3006. (pin "17" (uuid 93a2ad9d-027a-4e4c-aaa4-72bac8c4e5f5))
  3007. (pin "18" (uuid 27c69d69-f22d-490a-8320-187ae75c46f9))
  3008. (pin "19" (uuid 92458ebd-1b78-4788-8f00-7a96ec155f34))
  3009. (pin "2" (uuid d80be40a-de0c-40a0-8c77-9817d03342e8))
  3010. (pin "20" (uuid 3079c460-e67b-47c5-858a-3e01ae236513))
  3011. (pin "3" (uuid 98d8073a-45e5-483e-a653-879071929fcb))
  3012. (pin "4" (uuid 57308615-74b1-47d2-b62b-543f477d25b1))
  3013. (pin "5" (uuid b4cb6f35-c16c-4fae-bed7-252554bb4240))
  3014. (pin "6" (uuid 0f5aa3ad-7345-4243-87af-6a337f6b0fa2))
  3015. (pin "7" (uuid 3cf71e05-8f15-4878-9eac-e886d91a5ea4))
  3016. (pin "8" (uuid 88a2fda4-74b1-4e15-abfb-bf2f78321c80))
  3017. (pin "9" (uuid de73207a-2762-4e70-b0a9-b80a0cb548ed))
  3018. )
  3019. (symbol (lib_id "Device:R_Small") (at 84.455 71.755 0) (unit 1)
  3020. (in_bom yes) (on_board yes)
  3021. (uuid 055f5b9a-e2a0-46cc-b22e-de1942127ced)
  3022. (property "Reference" "R54-8" (id 0) (at 81.915 78.105 90)
  3023. (effects (font (size 1.27 1.27)) (justify left))
  3024. )
  3025. (property "Value" "4.7k" (id 1) (at 81.915 69.85 90)
  3026. (effects (font (size 1.27 1.27)) (justify left))
  3027. )
  3028. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 84.455 71.755 0)
  3029. (effects (font (size 1.27 1.27)) hide)
  3030. )
  3031. (property "Datasheet" "~" (id 3) (at 84.455 71.755 0)
  3032. (effects (font (size 1.27 1.27)) hide)
  3033. )
  3034. (pin "1" (uuid 083b6aea-97d0-4718-a6d6-f64f953858f4))
  3035. (pin "2" (uuid 257b6be6-8ab4-42cf-a740-8816fa059201))
  3036. )
  3037. (symbol (lib_id "Device:R_Small") (at 53.34 71.755 0) (unit 1)
  3038. (in_bom yes) (on_board yes)
  3039. (uuid 0963d832-1982-4f13-8f83-f91138346989)
  3040. (property "Reference" "R54-1" (id 0) (at 50.8 78.105 90)
  3041. (effects (font (size 1.27 1.27)) (justify left))
  3042. )
  3043. (property "Value" "4.7k" (id 1) (at 50.8 69.85 90)
  3044. (effects (font (size 1.27 1.27)) (justify left))
  3045. )
  3046. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 53.34 71.755 0)
  3047. (effects (font (size 1.27 1.27)) hide)
  3048. )
  3049. (property "Datasheet" "~" (id 3) (at 53.34 71.755 0)
  3050. (effects (font (size 1.27 1.27)) hide)
  3051. )
  3052. (pin "1" (uuid f2d30de3-1ec7-49fa-8fc9-bfa61c142488))
  3053. (pin "2" (uuid d7d110a4-4a1e-4c64-b9db-d4e7788f5c3a))
  3054. )
  3055. (symbol (lib_id "power:GND") (at 168.275 58.42 0) (unit 1)
  3056. (in_bom yes) (on_board yes)
  3057. (uuid 169e1db5-427f-4445-a305-3905a80de317)
  3058. (property "Reference" "#PWR0511" (id 0) (at 168.275 64.77 0)
  3059. (effects (font (size 1.27 1.27)) hide)
  3060. )
  3061. (property "Value" "GND" (id 1) (at 163.83 60.325 0))
  3062. (property "Footprint" "" (id 2) (at 168.275 58.42 0)
  3063. (effects (font (size 1.27 1.27)) hide)
  3064. )
  3065. (property "Datasheet" "" (id 3) (at 168.275 58.42 0)
  3066. (effects (font (size 1.27 1.27)) hide)
  3067. )
  3068. (pin "1" (uuid 2dd0a9a3-081c-4c4b-ad47-eae0b60a851f))
  3069. )
  3070. (symbol (lib_id "74xx:74LS175") (at 176.53 134.62 0) (unit 1)
  3071. (in_bom yes) (on_board yes) (fields_autoplaced)
  3072. (uuid 1ce04374-f9d7-485a-b245-b8a4789cecd5)
  3073. (property "Reference" "U219" (id 0) (at 178.5494 116.84 0)
  3074. (effects (font (size 1.27 1.27)) (justify left))
  3075. )
  3076. (property "Value" "74LS175" (id 1) (at 178.5494 119.38 0)
  3077. (effects (font (size 1.27 1.27)) (justify left))
  3078. )
  3079. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (id 2) (at 176.53 134.62 0)
  3080. (effects (font (size 1.27 1.27)) hide)
  3081. )
  3082. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS175" (id 3) (at 176.53 134.62 0)
  3083. (effects (font (size 1.27 1.27)) hide)
  3084. )
  3085. (pin "1" (uuid 149306d2-4578-4916-a8d2-8464f99631d1))
  3086. (pin "10" (uuid c2c0eb3d-3dd4-4027-8517-06609e92bd0d))
  3087. (pin "11" (uuid 30c2bf26-9c8d-443f-85fd-24a55880333f))
  3088. (pin "12" (uuid e75a5901-e1fb-47da-87fd-4961aa2c7037))
  3089. (pin "13" (uuid eeadf1a6-2e2b-4779-af48-b773af25f2ad))
  3090. (pin "14" (uuid 727e736c-ae9f-4737-bed6-ee462073d4fa))
  3091. (pin "15" (uuid 351da5d7-6ec6-4c13-a23d-2c905938559b))
  3092. (pin "16" (uuid 4368afa2-a7cf-4b0d-bb46-1682c7a66cbe))
  3093. (pin "2" (uuid b5d98783-15d9-4cf2-b926-62abe8f59e52))
  3094. (pin "3" (uuid f8925c73-ebc2-431d-86a3-936c78d585ea))
  3095. (pin "4" (uuid 38436325-a46c-417d-ae5a-b477f16b80af))
  3096. (pin "5" (uuid a07dc9fe-24c3-4031-ad88-5cc93fb6addd))
  3097. (pin "6" (uuid 3122b050-9adc-4d4a-9b13-56824efcbe63))
  3098. (pin "7" (uuid fae88222-7d72-419c-8391-50d8b85a005b))
  3099. (pin "8" (uuid 9f7ac446-d9ba-458a-b3e2-273b5ea53bd9))
  3100. (pin "9" (uuid 6df0ac77-3ebf-43dd-ac5e-dd20cd3eb53c))
  3101. )
  3102. (symbol (lib_id "power:GND") (at 153.67 241.3 0) (unit 1)
  3103. (in_bom yes) (on_board yes)
  3104. (uuid 1ff23259-f9e5-4d19-bb3f-81fcc260edd9)
  3105. (property "Reference" "#PWR0517" (id 0) (at 153.67 247.65 0)
  3106. (effects (font (size 1.27 1.27)) hide)
  3107. )
  3108. (property "Value" "GND" (id 1) (at 149.225 243.205 0))
  3109. (property "Footprint" "" (id 2) (at 153.67 241.3 0)
  3110. (effects (font (size 1.27 1.27)) hide)
  3111. )
  3112. (property "Datasheet" "" (id 3) (at 153.67 241.3 0)
  3113. (effects (font (size 1.27 1.27)) hide)
  3114. )
  3115. (pin "1" (uuid ca05101a-525e-4b24-9e56-6819a5fd7bc6))
  3116. )
  3117. (symbol (lib_id "power:GND") (at 176.53 155.575 0) (unit 1)
  3118. (in_bom yes) (on_board yes)
  3119. (uuid 2269e31d-b02d-4541-9cd6-c17cd3869b4c)
  3120. (property "Reference" "#PWR0514" (id 0) (at 176.53 161.925 0)
  3121. (effects (font (size 1.27 1.27)) hide)
  3122. )
  3123. (property "Value" "GND" (id 1) (at 172.085 157.48 0))
  3124. (property "Footprint" "" (id 2) (at 176.53 155.575 0)
  3125. (effects (font (size 1.27 1.27)) hide)
  3126. )
  3127. (property "Datasheet" "" (id 3) (at 176.53 155.575 0)
  3128. (effects (font (size 1.27 1.27)) hide)
  3129. )
  3130. (pin "1" (uuid b59577cd-2aed-4365-94e4-3e46cc30c171))
  3131. )
  3132. (symbol (lib_id "Device:R_Small") (at 142.24 178.435 270) (unit 1)
  3133. (in_bom yes) (on_board yes)
  3134. (uuid 2537f511-4788-40c5-9733-c0c69d4ab581)
  3135. (property "Reference" "R53-5" (id 0) (at 135.89 175.895 90)
  3136. (effects (font (size 1.27 1.27)) (justify left))
  3137. )
  3138. (property "Value" "4.7k" (id 1) (at 144.145 175.895 90)
  3139. (effects (font (size 1.27 1.27)) (justify left))
  3140. )
  3141. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 178.435 0)
  3142. (effects (font (size 1.27 1.27)) hide)
  3143. )
  3144. (property "Datasheet" "~" (id 3) (at 142.24 178.435 0)
  3145. (effects (font (size 1.27 1.27)) hide)
  3146. )
  3147. (pin "1" (uuid 920b5b1a-b915-4a74-8d83-cee8effd7c70))
  3148. (pin "2" (uuid d3ffbd4c-b359-4963-b0e9-05b93b97029a))
  3149. )
  3150. (symbol (lib_id "74xx:74LS06") (at 308.61 162.56 0) (unit 6)
  3151. (in_bom yes) (on_board yes) (fields_autoplaced)
  3152. (uuid 2a78d178-628e-45d6-8b91-cf33596d088a)
  3153. (property "Reference" "U214" (id 0) (at 308.61 153.67 0))
  3154. (property "Value" "7406" (id 1) (at 308.61 156.21 0))
  3155. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 308.61 162.56 0)
  3156. (effects (font (size 1.27 1.27)) hide)
  3157. )
  3158. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS06" (id 3) (at 308.61 162.56 0)
  3159. (effects (font (size 1.27 1.27)) hide)
  3160. )
  3161. (pin "1" (uuid 4ff58102-9cc5-4375-980a-ce8551b7a7e7))
  3162. (pin "2" (uuid 59f34ab9-87dc-42f3-b11b-b142f0cbf022))
  3163. (pin "3" (uuid 657a017e-8f65-45d0-9c02-b0498613c56b))
  3164. (pin "4" (uuid 3e0fbd65-2190-49c3-98a8-6acd660dcd39))
  3165. (pin "5" (uuid 251d6cae-3db4-4f52-a909-cc12410e175a))
  3166. (pin "6" (uuid cc65c066-de38-4cef-86b0-72a1d1efcabe))
  3167. (pin "8" (uuid aa445a08-44be-4284-9a94-3e7dfad23f56))
  3168. (pin "9" (uuid 7be12a1d-9383-4ef3-8c97-896082d6b756))
  3169. (pin "10" (uuid 2ada5e7a-d39c-40eb-98d1-4b7327c6663d))
  3170. (pin "11" (uuid 2b5cae0f-3e67-488d-8082-e28028f07882))
  3171. (pin "12" (uuid 25e6901a-5de8-4ced-8af1-0fb03f5f66ed))
  3172. (pin "13" (uuid e90c443f-d3fb-4d20-9fc8-a7dd179d85a7))
  3173. (pin "14" (uuid 9ee7e1b2-e676-4683-955c-5d00a14e3959))
  3174. (pin "7" (uuid 8717035b-16f6-4071-8256-95858e99635c))
  3175. )
  3176. (symbol (lib_id "Device:R_Small") (at 62.23 71.755 0) (unit 1)
  3177. (in_bom yes) (on_board yes)
  3178. (uuid 3175d6da-c6ec-4f1b-985e-af817d66ff38)
  3179. (property "Reference" "R54-3" (id 0) (at 59.69 78.105 90)
  3180. (effects (font (size 1.27 1.27)) (justify left))
  3181. )
  3182. (property "Value" "4.7k" (id 1) (at 59.69 69.85 90)
  3183. (effects (font (size 1.27 1.27)) (justify left))
  3184. )
  3185. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 62.23 71.755 0)
  3186. (effects (font (size 1.27 1.27)) hide)
  3187. )
  3188. (property "Datasheet" "~" (id 3) (at 62.23 71.755 0)
  3189. (effects (font (size 1.27 1.27)) hide)
  3190. )
  3191. (pin "1" (uuid 2469c272-065b-4366-9c01-4219a676301a))
  3192. (pin "2" (uuid 08070597-07b8-4217-a8fd-9f33d1889160))
  3193. )
  3194. (symbol (lib_id "Connector:Conn_01x02_Male") (at 352.425 126.365 0) (unit 1)
  3195. (in_bom yes) (on_board yes) (fields_autoplaced)
  3196. (uuid 32580f2f-bcda-4073-9a8b-99d8aabf3a5b)
  3197. (property "Reference" "J1002" (id 0) (at 353.06 120.65 0))
  3198. (property "Value" "Conn_01x02_Male" (id 1) (at 353.06 123.19 0))
  3199. (property "Footprint" "" (id 2) (at 352.425 126.365 0)
  3200. (effects (font (size 1.27 1.27)) hide)
  3201. )
  3202. (property "Datasheet" "~" (id 3) (at 352.425 126.365 0)
  3203. (effects (font (size 1.27 1.27)) hide)
  3204. )
  3205. (pin "1" (uuid 2a7ed5de-f0db-4ba4-add0-edc363e8f908))
  3206. (pin "2" (uuid e301a949-6872-4668-ad7b-b8927e9a6f33))
  3207. )
  3208. (symbol (lib_id "Device:R_Small") (at 75.565 71.755 0) (unit 1)
  3209. (in_bom yes) (on_board yes)
  3210. (uuid 420c1fca-70e6-441b-afaa-2d052d9af97c)
  3211. (property "Reference" "R54-6" (id 0) (at 73.025 78.105 90)
  3212. (effects (font (size 1.27 1.27)) (justify left))
  3213. )
  3214. (property "Value" "4.7k" (id 1) (at 73.025 69.85 90)
  3215. (effects (font (size 1.27 1.27)) (justify left))
  3216. )
  3217. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 75.565 71.755 0)
  3218. (effects (font (size 1.27 1.27)) hide)
  3219. )
  3220. (property "Datasheet" "~" (id 3) (at 75.565 71.755 0)
  3221. (effects (font (size 1.27 1.27)) hide)
  3222. )
  3223. (pin "1" (uuid 66fb2e70-82e6-485e-94e5-b7f41dbad19b))
  3224. (pin "2" (uuid 6af07836-024e-4649-8e78-5693651480fa))
  3225. )
  3226. (symbol (lib_id "power:+5V") (at 53.34 61.595 0) (unit 1)
  3227. (in_bom yes) (on_board yes) (fields_autoplaced)
  3228. (uuid 54b1f9b9-5341-4fea-b279-fdde0cdc8b60)
  3229. (property "Reference" "#PWR0518" (id 0) (at 53.34 65.405 0)
  3230. (effects (font (size 1.27 1.27)) hide)
  3231. )
  3232. (property "Value" "+5V" (id 1) (at 53.34 55.88 0))
  3233. (property "Footprint" "" (id 2) (at 53.34 61.595 0)
  3234. (effects (font (size 1.27 1.27)) hide)
  3235. )
  3236. (property "Datasheet" "" (id 3) (at 53.34 61.595 0)
  3237. (effects (font (size 1.27 1.27)) hide)
  3238. )
  3239. (pin "1" (uuid e6e5f8c8-3589-4c0b-bdd2-006156f696e8))
  3240. )
  3241. (symbol (lib_id "Device:R_Small") (at 142.24 160.655 270) (unit 1)
  3242. (in_bom yes) (on_board yes)
  3243. (uuid 5c2f2422-726c-4eb0-90ee-92db17217ebb)
  3244. (property "Reference" "R53-1" (id 0) (at 135.89 158.115 90)
  3245. (effects (font (size 1.27 1.27)) (justify left))
  3246. )
  3247. (property "Value" "4.7k" (id 1) (at 144.145 158.115 90)
  3248. (effects (font (size 1.27 1.27)) (justify left))
  3249. )
  3250. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 160.655 0)
  3251. (effects (font (size 1.27 1.27)) hide)
  3252. )
  3253. (property "Datasheet" "~" (id 3) (at 142.24 160.655 0)
  3254. (effects (font (size 1.27 1.27)) hide)
  3255. )
  3256. (pin "1" (uuid 4f9e4160-04d0-42f4-85ea-d15063db93c0))
  3257. (pin "2" (uuid 5674ce23-bc05-48c8-bb13-fcc92bc523d3))
  3258. )
  3259. (symbol (lib_id "power:+5V") (at 42.545 114.3 0) (unit 1)
  3260. (in_bom yes) (on_board yes)
  3261. (uuid 5e9870c6-b023-4513-ac89-b8025c2f2638)
  3262. (property "Reference" "#PWR0519" (id 0) (at 42.545 118.11 0)
  3263. (effects (font (size 1.27 1.27)) hide)
  3264. )
  3265. (property "Value" "+5V" (id 1) (at 38.735 112.395 0))
  3266. (property "Footprint" "" (id 2) (at 42.545 114.3 0)
  3267. (effects (font (size 1.27 1.27)) hide)
  3268. )
  3269. (property "Datasheet" "" (id 3) (at 42.545 114.3 0)
  3270. (effects (font (size 1.27 1.27)) hide)
  3271. )
  3272. (pin "1" (uuid 0d15b24f-47be-4e17-8095-9a7bed6ad4b8))
  3273. )
  3274. (symbol (lib_id "power:+5V") (at 157.48 66.04 0) (unit 1)
  3275. (in_bom yes) (on_board yes)
  3276. (uuid 5f02b808-ddfc-4a97-b09a-7bb2db06129a)
  3277. (property "Reference" "#PWR0509" (id 0) (at 157.48 69.85 0)
  3278. (effects (font (size 1.27 1.27)) hide)
  3279. )
  3280. (property "Value" "+5V" (id 1) (at 153.67 63.5 0))
  3281. (property "Footprint" "" (id 2) (at 157.48 66.04 0)
  3282. (effects (font (size 1.27 1.27)) hide)
  3283. )
  3284. (property "Datasheet" "" (id 3) (at 157.48 66.04 0)
  3285. (effects (font (size 1.27 1.27)) hide)
  3286. )
  3287. (pin "1" (uuid 183ecad7-dbbe-462b-91ba-d660a82e5809))
  3288. )
  3289. (symbol (lib_id "Device:R_Small") (at 142.24 191.77 270) (unit 1)
  3290. (in_bom yes) (on_board yes)
  3291. (uuid 62b81ba2-c0e3-4441-ad41-287823a5c8a4)
  3292. (property "Reference" "R53-8" (id 0) (at 135.89 189.23 90)
  3293. (effects (font (size 1.27 1.27)) (justify left))
  3294. )
  3295. (property "Value" "4.7k" (id 1) (at 144.145 189.23 90)
  3296. (effects (font (size 1.27 1.27)) (justify left))
  3297. )
  3298. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 191.77 0)
  3299. (effects (font (size 1.27 1.27)) hide)
  3300. )
  3301. (property "Datasheet" "~" (id 3) (at 142.24 191.77 0)
  3302. (effects (font (size 1.27 1.27)) hide)
  3303. )
  3304. (pin "1" (uuid e70336e0-9003-4db3-9d19-f9cc597eaede))
  3305. (pin "2" (uuid 4ca4486e-b8a4-4aca-9996-847f490e1aba))
  3306. )
  3307. (symbol (lib_id "Device:R_Small") (at 142.24 196.215 270) (unit 1)
  3308. (in_bom yes) (on_board yes)
  3309. (uuid 64bf83b5-e7f9-4a2e-966f-6d80975dbd4c)
  3310. (property "Reference" "R53-9" (id 0) (at 135.89 193.675 90)
  3311. (effects (font (size 1.27 1.27)) (justify left))
  3312. )
  3313. (property "Value" "4.7k" (id 1) (at 144.145 193.675 90)
  3314. (effects (font (size 1.27 1.27)) (justify left))
  3315. )
  3316. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 196.215 0)
  3317. (effects (font (size 1.27 1.27)) hide)
  3318. )
  3319. (property "Datasheet" "~" (id 3) (at 142.24 196.215 0)
  3320. (effects (font (size 1.27 1.27)) hide)
  3321. )
  3322. (pin "1" (uuid fe66d68b-f45b-439d-925f-25f78af52fb6))
  3323. (pin "2" (uuid 11ee0da6-ce55-47f9-8410-073826b224ba))
  3324. )
  3325. (symbol (lib_id "Device:R_Small") (at 142.24 165.1 270) (unit 1)
  3326. (in_bom yes) (on_board yes)
  3327. (uuid 6dd1202b-5440-41eb-8006-becb88d1581e)
  3328. (property "Reference" "R53-2" (id 0) (at 135.89 162.56 90)
  3329. (effects (font (size 1.27 1.27)) (justify left))
  3330. )
  3331. (property "Value" "4.7k" (id 1) (at 144.145 162.56 90)
  3332. (effects (font (size 1.27 1.27)) (justify left))
  3333. )
  3334. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 165.1 0)
  3335. (effects (font (size 1.27 1.27)) hide)
  3336. )
  3337. (property "Datasheet" "~" (id 3) (at 142.24 165.1 0)
  3338. (effects (font (size 1.27 1.27)) hide)
  3339. )
  3340. (pin "1" (uuid 6c31d646-a47e-4f15-b17f-20c06d514940))
  3341. (pin "2" (uuid 82fc7245-c2fd-4c9a-88c0-9fb96345269e))
  3342. )
  3343. (symbol (lib_id "74xx:74LS38") (at 222.885 137.16 0) (unit 4)
  3344. (in_bom yes) (on_board yes) (fields_autoplaced)
  3345. (uuid 7e8b7e77-ec1f-4762-9d38-e9ad63b14276)
  3346. (property "Reference" "U216" (id 0) (at 222.885 128.27 0))
  3347. (property "Value" "74LS38" (id 1) (at 222.885 130.81 0))
  3348. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 222.885 137.16 0)
  3349. (effects (font (size 1.27 1.27)) hide)
  3350. )
  3351. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS38" (id 3) (at 222.885 137.16 0)
  3352. (effects (font (size 1.27 1.27)) hide)
  3353. )
  3354. (pin "1" (uuid 2a1f9c24-0f50-4412-802e-f170563de366))
  3355. (pin "2" (uuid e2f50aeb-3792-490a-989e-d41de137d9d7))
  3356. (pin "3" (uuid f45197cf-a03e-4591-88d9-6055ff8c2fad))
  3357. (pin "4" (uuid caefbc48-e715-42fb-a4dc-6d87916d7536))
  3358. (pin "5" (uuid aacf3e3e-26ae-4a24-8b23-1b594895f863))
  3359. (pin "6" (uuid efa365b2-8634-4581-81a9-c4707f96ada9))
  3360. (pin "10" (uuid f4dd335f-749e-4138-b0f7-db4b086deae5))
  3361. (pin "8" (uuid 2401e076-5366-4d02-9186-4f1b1757ec83))
  3362. (pin "9" (uuid 7fc85ef7-149c-46cf-8e30-df5bdae6a60d))
  3363. (pin "11" (uuid 8ad5d28a-5249-4ce8-badf-02f42924f236))
  3364. (pin "12" (uuid e1e5a680-b1d8-4a26-ac0f-f6026ef40718))
  3365. (pin "13" (uuid bb10b329-0c33-4d78-9ef3-0416dc8dd0f0))
  3366. (pin "14" (uuid 13b7e5e3-6f0f-4b1c-8c7f-c05109b15276))
  3367. (pin "7" (uuid f58ae13b-ec46-4b24-8c13-83bf96d8e368))
  3368. )
  3369. (symbol (lib_id "74xx:74LS245") (at 157.48 86.995 0) (unit 1)
  3370. (in_bom yes) (on_board yes) (fields_autoplaced)
  3371. (uuid 819bef00-166d-4bb5-9292-992e28ec47d3)
  3372. (property "Reference" "U217" (id 0) (at 159.4994 66.04 0)
  3373. (effects (font (size 1.27 1.27)) (justify left))
  3374. )
  3375. (property "Value" "74ALS245" (id 1) (at 159.4994 68.58 0)
  3376. (effects (font (size 1.27 1.27)) (justify left))
  3377. )
  3378. (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 157.48 86.995 0)
  3379. (effects (font (size 1.27 1.27)) hide)
  3380. )
  3381. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS245" (id 3) (at 157.48 86.995 0)
  3382. (effects (font (size 1.27 1.27)) hide)
  3383. )
  3384. (pin "1" (uuid a0cebffc-e8cf-4bf7-a9e5-c8e91a446dec))
  3385. (pin "10" (uuid 7ab9c3b6-87e3-4bf9-902f-69e886c5c5cd))
  3386. (pin "11" (uuid b7a82314-ff94-47ef-aab1-0f69ab596ce9))
  3387. (pin "12" (uuid 0941301c-430e-4fd0-8d43-1422d52f7d9c))
  3388. (pin "13" (uuid e6735878-8798-475c-a14a-92454549e408))
  3389. (pin "14" (uuid f9050e71-914c-4cd1-b5d7-6df4cd46e842))
  3390. (pin "15" (uuid 388c9ff2-5e1e-48da-9924-b585308d9cca))
  3391. (pin "16" (uuid a25c25fc-fe8d-4f6d-a447-55f4fe829db0))
  3392. (pin "17" (uuid f9a0c9ba-bc16-4a6e-b4b5-eec058f5119d))
  3393. (pin "18" (uuid 4d4d56e8-5d6d-40df-b622-0ab263e861d7))
  3394. (pin "19" (uuid 20ed7ee4-eab8-4d5d-b127-0adc0f07c2e2))
  3395. (pin "2" (uuid 3c954865-5cf9-48c8-a884-4203b56fcff9))
  3396. (pin "20" (uuid 69e498bc-d8a7-4ed1-8232-bdd861a0d755))
  3397. (pin "3" (uuid 78afdbb8-78b2-41d0-ae43-95dbb8816349))
  3398. (pin "4" (uuid a6177227-c02e-4c43-863c-ec8a499c8123))
  3399. (pin "5" (uuid 81621683-ba74-40c1-bf6f-6ef5da49f4b1))
  3400. (pin "6" (uuid d463531e-bd09-401b-8978-d290e9b14dd3))
  3401. (pin "7" (uuid 279f0558-1d40-4837-be6a-f0eda6c6fe7f))
  3402. (pin "8" (uuid 0740a2f6-a47b-4f41-9b32-340169b7eb58))
  3403. (pin "9" (uuid 21df8038-1848-4046-bc72-994113ccacf6))
  3404. )
  3405. (symbol (lib_id "74xx:74LS38") (at 217.805 118.11 0) (unit 1)
  3406. (in_bom yes) (on_board yes)
  3407. (uuid 890fc211-ce1d-4fec-90c9-dfd0890eaf43)
  3408. (property "Reference" "U216" (id 0) (at 208.28 113.665 0))
  3409. (property "Value" "74LS38" (id 1) (at 224.79 114.3 0))
  3410. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 217.805 118.11 0)
  3411. (effects (font (size 1.27 1.27)) hide)
  3412. )
  3413. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS38" (id 3) (at 217.805 118.11 0)
  3414. (effects (font (size 1.27 1.27)) hide)
  3415. )
  3416. (pin "1" (uuid 462cebfb-10ce-4286-ba95-e50dd8977326))
  3417. (pin "2" (uuid a2100d2b-8d30-4d68-acd4-004fcd8ba2b7))
  3418. (pin "3" (uuid aaeca13d-327b-447a-a11c-35b9af9355c9))
  3419. (pin "4" (uuid 842a5a6d-f56a-4488-bc14-8d83a26c3280))
  3420. (pin "5" (uuid 89b4e19d-4078-4841-9d12-602ecdfb1a75))
  3421. (pin "6" (uuid a52437dc-2790-4d90-bf81-198030c7184f))
  3422. (pin "10" (uuid f3c6bccf-0946-40ca-b11a-77f3418f287a))
  3423. (pin "8" (uuid 673ad454-0a9f-42b3-8c93-9d6ae013ebb2))
  3424. (pin "9" (uuid 6ebeaf65-0163-433d-b5d4-4508dadc4bef))
  3425. (pin "11" (uuid 2078ec1f-e2f6-42d4-aa7b-ff89dbe9750a))
  3426. (pin "12" (uuid eee86d76-449a-4ed1-851a-5bfd7956dd6f))
  3427. (pin "13" (uuid a850c79c-bbc5-4ece-b612-4afa8ef32871))
  3428. (pin "14" (uuid fea2b9ed-8143-4838-a83c-ee36f84f6aa0))
  3429. (pin "7" (uuid 76e9ae56-6ae0-4318-a550-40c0de0aed87))
  3430. )
  3431. (symbol (lib_id "74xx:74LS06") (at 222.885 147.32 0) (unit 3)
  3432. (in_bom yes) (on_board yes)
  3433. (uuid 8e9b4e11-ab0c-4d8b-bf2b-85100e3e0b3c)
  3434. (property "Reference" "U214" (id 0) (at 222.885 142.875 0))
  3435. (property "Value" "7406" (id 1) (at 231.775 142.875 0))
  3436. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 222.885 147.32 0)
  3437. (effects (font (size 1.27 1.27)) hide)
  3438. )
  3439. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS06" (id 3) (at 222.885 147.32 0)
  3440. (effects (font (size 1.27 1.27)) hide)
  3441. )
  3442. (pin "1" (uuid 4f52bd75-7f98-4b13-8c4b-5e0920e485af))
  3443. (pin "2" (uuid 9b1bd733-e010-47ab-9dbe-018a30bc6e32))
  3444. (pin "3" (uuid c58fa8a7-a2fb-492e-afad-e11130f2c553))
  3445. (pin "4" (uuid 49cf56c6-04a3-41a8-8fae-a1a6b208a07b))
  3446. (pin "5" (uuid 8d5588cf-debf-4704-89ea-ce94755b49b2))
  3447. (pin "6" (uuid 83f0e0af-acc5-4111-a9b4-ab36c095c7d3))
  3448. (pin "8" (uuid 6cf8c784-63f9-4328-8705-b63eb0b846ea))
  3449. (pin "9" (uuid d262146b-c097-406c-b676-b16954c46890))
  3450. (pin "10" (uuid f69c7047-8fd3-4b1b-b5d0-ea5913dc12e5))
  3451. (pin "11" (uuid c098bd10-f179-4bbe-9b78-20311bc99fba))
  3452. (pin "12" (uuid 16e8ff89-d04d-4d3c-87f5-55e97258424f))
  3453. (pin "13" (uuid 16461068-1c83-4a42-af7a-26df8dc67924))
  3454. (pin "14" (uuid ebe4b89e-0b25-4477-a6ae-637b84dffc63))
  3455. (pin "7" (uuid 4bc828af-1c03-4371-ba73-ff9793b032e8))
  3456. )
  3457. (symbol (lib_id "Device:R_Small") (at 142.24 182.88 270) (unit 1)
  3458. (in_bom yes) (on_board yes)
  3459. (uuid 9a5f5f51-0cd2-4e04-88b3-199f23b856ca)
  3460. (property "Reference" "R53-6" (id 0) (at 135.89 180.34 90)
  3461. (effects (font (size 1.27 1.27)) (justify left))
  3462. )
  3463. (property "Value" "4.7k" (id 1) (at 144.145 180.34 90)
  3464. (effects (font (size 1.27 1.27)) (justify left))
  3465. )
  3466. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 182.88 0)
  3467. (effects (font (size 1.27 1.27)) hide)
  3468. )
  3469. (property "Datasheet" "~" (id 3) (at 142.24 182.88 0)
  3470. (effects (font (size 1.27 1.27)) hide)
  3471. )
  3472. (pin "1" (uuid 73c3df12-ccb5-4a1e-b998-4f5b0329710e))
  3473. (pin "2" (uuid 114ba0c5-1c57-452a-be42-d648fa0b636c))
  3474. )
  3475. (symbol (lib_id "power:+5V") (at 168.275 16.51 0) (unit 1)
  3476. (in_bom yes) (on_board yes)
  3477. (uuid 9c7e5120-75ed-414b-9571-004d56178e32)
  3478. (property "Reference" "#PWR0510" (id 0) (at 168.275 20.32 0)
  3479. (effects (font (size 1.27 1.27)) hide)
  3480. )
  3481. (property "Value" "+5V" (id 1) (at 164.465 13.97 0))
  3482. (property "Footprint" "" (id 2) (at 168.275 16.51 0)
  3483. (effects (font (size 1.27 1.27)) hide)
  3484. )
  3485. (property "Datasheet" "" (id 3) (at 168.275 16.51 0)
  3486. (effects (font (size 1.27 1.27)) hide)
  3487. )
  3488. (pin "1" (uuid 0415f317-4d4a-4e22-9d81-305eb3e24256))
  3489. )
  3490. (symbol (lib_id "Device:R_Small") (at 80.01 71.755 0) (unit 1)
  3491. (in_bom yes) (on_board yes)
  3492. (uuid 9cdb2990-22cc-4fcd-83a4-c262867e778a)
  3493. (property "Reference" "R54-7" (id 0) (at 77.47 78.105 90)
  3494. (effects (font (size 1.27 1.27)) (justify left))
  3495. )
  3496. (property "Value" "4.7k" (id 1) (at 77.47 69.85 90)
  3497. (effects (font (size 1.27 1.27)) (justify left))
  3498. )
  3499. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 80.01 71.755 0)
  3500. (effects (font (size 1.27 1.27)) hide)
  3501. )
  3502. (property "Datasheet" "~" (id 3) (at 80.01 71.755 0)
  3503. (effects (font (size 1.27 1.27)) hide)
  3504. )
  3505. (pin "1" (uuid 672eb9a5-f654-43ea-9d0e-ec734fae2a0b))
  3506. (pin "2" (uuid 7cee173e-326d-481f-8581-43a6a121bfbe))
  3507. )
  3508. (symbol (lib_id "74xx:74LS245") (at 168.275 37.465 0) (unit 1)
  3509. (in_bom yes) (on_board yes) (fields_autoplaced)
  3510. (uuid a6f99524-e073-4889-bbd8-ab45970eeb28)
  3511. (property "Reference" "U218" (id 0) (at 170.2944 16.51 0)
  3512. (effects (font (size 1.27 1.27)) (justify left))
  3513. )
  3514. (property "Value" "74ALS245" (id 1) (at 170.2944 19.05 0)
  3515. (effects (font (size 1.27 1.27)) (justify left))
  3516. )
  3517. (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 168.275 37.465 0)
  3518. (effects (font (size 1.27 1.27)) hide)
  3519. )
  3520. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS245" (id 3) (at 168.275 37.465 0)
  3521. (effects (font (size 1.27 1.27)) hide)
  3522. )
  3523. (pin "1" (uuid 383d6678-9eb5-4778-8d05-810f9de6778c))
  3524. (pin "10" (uuid dff8cbe3-ab55-4392-b80f-9e2061504e32))
  3525. (pin "11" (uuid acec0456-3572-457c-89f4-18f77565089e))
  3526. (pin "12" (uuid 659458d7-3408-4e8a-ae88-099e3e81b3ad))
  3527. (pin "13" (uuid f2ef74b6-49a1-4724-b217-dde3ffdd4b06))
  3528. (pin "14" (uuid 25bb434c-a685-4f06-9222-dc6478bbff28))
  3529. (pin "15" (uuid 90e6d1b8-80e9-4278-9cf4-5d27fff18c5c))
  3530. (pin "16" (uuid e111ebb2-5b65-4de9-90c3-3a8956f8a418))
  3531. (pin "17" (uuid d74bd395-4556-4c8d-ac4c-b50b0f254dfa))
  3532. (pin "18" (uuid 1262b9f7-c1a7-4bdd-bdd0-b8eb6c2e23a3))
  3533. (pin "19" (uuid 55680cb6-9028-4ddb-8664-3537331a61e6))
  3534. (pin "2" (uuid b6e6d55e-8c7a-4829-821b-f2ee6c4213ed))
  3535. (pin "20" (uuid 5568f229-b1a6-46ae-91f4-8ad6c78e8d69))
  3536. (pin "3" (uuid 0358f4a2-a0da-4812-bb2a-0a7c33ba90b3))
  3537. (pin "4" (uuid 8bd9a583-4059-4536-aa7c-2590a1e0f41b))
  3538. (pin "5" (uuid dae540ce-32ef-47c9-882d-6617563b1155))
  3539. (pin "6" (uuid c13161e5-b6fe-4e9b-a5b0-2a40c24e2011))
  3540. (pin "7" (uuid 78a6b31a-94c8-4d42-85f8-1f18ec7885f7))
  3541. (pin "8" (uuid b4bc2e55-a6a7-4ed4-823e-c52c38fb43c4))
  3542. (pin "9" (uuid b6d41b70-0485-4fea-a04f-3cb67b99c307))
  3543. )
  3544. (symbol (lib_id "power:+5V") (at 176.53 116.205 0) (unit 1)
  3545. (in_bom yes) (on_board yes)
  3546. (uuid aa0dea09-a1a4-4a95-b2c9-74a188b8a41b)
  3547. (property "Reference" "#PWR0513" (id 0) (at 176.53 120.015 0)
  3548. (effects (font (size 1.27 1.27)) hide)
  3549. )
  3550. (property "Value" "+5V" (id 1) (at 172.72 114.935 0))
  3551. (property "Footprint" "" (id 2) (at 176.53 116.205 0)
  3552. (effects (font (size 1.27 1.27)) hide)
  3553. )
  3554. (property "Datasheet" "" (id 3) (at 176.53 116.205 0)
  3555. (effects (font (size 1.27 1.27)) hide)
  3556. )
  3557. (pin "1" (uuid 5cf792eb-fb45-493b-8c9e-ec4d90037b60))
  3558. )
  3559. (symbol (lib_id "power:GND") (at 157.48 107.315 0) (unit 1)
  3560. (in_bom yes) (on_board yes)
  3561. (uuid ae5fd77a-b5e7-44ad-88f5-af269688b4c1)
  3562. (property "Reference" "#PWR0512" (id 0) (at 157.48 113.665 0)
  3563. (effects (font (size 1.27 1.27)) hide)
  3564. )
  3565. (property "Value" "GND" (id 1) (at 153.035 109.22 0))
  3566. (property "Footprint" "" (id 2) (at 157.48 107.315 0)
  3567. (effects (font (size 1.27 1.27)) hide)
  3568. )
  3569. (property "Datasheet" "" (id 3) (at 157.48 107.315 0)
  3570. (effects (font (size 1.27 1.27)) hide)
  3571. )
  3572. (pin "1" (uuid f487b916-e467-4188-897a-14a7d1c0619d))
  3573. )
  3574. (symbol (lib_id "74xx:74LS06") (at 308.61 178.435 0) (unit 4)
  3575. (in_bom yes) (on_board yes) (fields_autoplaced)
  3576. (uuid b2c104cf-8c8c-4562-b7e9-4e2844cabc14)
  3577. (property "Reference" "U214" (id 0) (at 308.61 168.91 0))
  3578. (property "Value" "7406" (id 1) (at 308.61 171.45 0))
  3579. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 308.61 178.435 0)
  3580. (effects (font (size 1.27 1.27)) hide)
  3581. )
  3582. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS06" (id 3) (at 308.61 178.435 0)
  3583. (effects (font (size 1.27 1.27)) hide)
  3584. )
  3585. (pin "1" (uuid 9721466c-09a6-4154-be0c-9bf852f5d25e))
  3586. (pin "2" (uuid 204f8f0e-306c-4e96-8e59-7bbf9684289c))
  3587. (pin "3" (uuid 1da2e9f7-a931-4989-940d-76637a22977b))
  3588. (pin "4" (uuid f0d3f9dd-4172-421b-9d95-d0d555feb86e))
  3589. (pin "5" (uuid b64592ae-8adf-4cf5-9d0d-d932cf833b9d))
  3590. (pin "6" (uuid e550b66c-7193-4885-a976-32e6b4797ba1))
  3591. (pin "8" (uuid f9958277-4ca0-4287-acbf-057952fd3ab8))
  3592. (pin "9" (uuid e96ac994-9a3a-43df-9587-32413284f617))
  3593. (pin "10" (uuid 6f0d4a45-eaf3-457b-8b96-714da7ed4cd7))
  3594. (pin "11" (uuid 3ab9210b-55db-461a-98a0-92f85371042a))
  3595. (pin "12" (uuid ed7f1a46-7b25-42fd-b02e-ec62fb562987))
  3596. (pin "13" (uuid 91961274-fa59-41c6-97d5-3cae1ef69a75))
  3597. (pin "14" (uuid 3f1f45c5-4c5d-452d-b8cb-ddcc430ed00c))
  3598. (pin "7" (uuid 7217288f-f7cf-4862-9a2a-5d5982e84a09))
  3599. )
  3600. (symbol (lib_id "74xx:74LS86") (at 85.09 118.11 0) (unit 1)
  3601. (in_bom yes) (on_board yes)
  3602. (uuid b9da2045-a0df-45bc-84d3-61063d342866)
  3603. (property "Reference" "U215" (id 0) (at 74.93 113.03 0))
  3604. (property "Value" "74F86" (id 1) (at 91.44 113.03 0))
  3605. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 85.09 118.11 0)
  3606. (effects (font (size 1.27 1.27)) hide)
  3607. )
  3608. (property "Datasheet" "74xx/74ls86.pdf" (id 3) (at 85.09 118.11 0)
  3609. (effects (font (size 1.27 1.27)) hide)
  3610. )
  3611. (pin "1" (uuid 1e3b27a4-9bca-4f12-b38a-d07a1eccfb4f))
  3612. (pin "2" (uuid b96cfeca-a12d-411f-9a40-67847df9f7d9))
  3613. (pin "3" (uuid 0480b88d-d459-4554-be5e-1d33cbf80193))
  3614. (pin "4" (uuid d5eaa324-7a75-4e9f-be72-221062c717cd))
  3615. (pin "5" (uuid d047c80f-fe27-4be3-bb67-2ee8d92f8c1a))
  3616. (pin "6" (uuid a70eecdc-2829-4617-a010-a1077f887d09))
  3617. (pin "10" (uuid afb2760d-c0b5-4220-85c1-2e8e681903c2))
  3618. (pin "8" (uuid f638bf9a-9d2f-4f7f-bd23-9a37ac2c1bb1))
  3619. (pin "9" (uuid 8615f860-9133-47f5-be8d-367fb2c489e2))
  3620. (pin "11" (uuid 0df25f29-0d09-4a9f-b519-17dbb390a0cf))
  3621. (pin "12" (uuid 6955d16e-f858-4368-81ea-cf820a51b19e))
  3622. (pin "13" (uuid eae382eb-4184-4b5d-ba0d-9d865f41310c))
  3623. (pin "14" (uuid e02fac4b-5486-4117-a44d-320dd0de23df))
  3624. (pin "7" (uuid a1a97003-33f0-441b-804e-87b3b64d0683))
  3625. )
  3626. (symbol (lib_id "Device:R_Small") (at 142.24 173.99 270) (unit 1)
  3627. (in_bom yes) (on_board yes)
  3628. (uuid bcd598b5-f4c5-432e-af49-415753a49d19)
  3629. (property "Reference" "R53-4" (id 0) (at 135.89 171.45 90)
  3630. (effects (font (size 1.27 1.27)) (justify left))
  3631. )
  3632. (property "Value" "4.7k" (id 1) (at 144.145 171.45 90)
  3633. (effects (font (size 1.27 1.27)) (justify left))
  3634. )
  3635. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 173.99 0)
  3636. (effects (font (size 1.27 1.27)) hide)
  3637. )
  3638. (property "Datasheet" "~" (id 3) (at 142.24 173.99 0)
  3639. (effects (font (size 1.27 1.27)) hide)
  3640. )
  3641. (pin "1" (uuid f6e93d90-3ea2-42a1-a4ed-6274677d4783))
  3642. (pin "2" (uuid 5da1bab0-8523-40ca-a929-142a22cc9520))
  3643. )
  3644. (symbol (lib_id "74xx:74LS86") (at 85.09 130.81 0) (unit 4)
  3645. (in_bom yes) (on_board yes)
  3646. (uuid c31e22e3-26cc-4c1d-9003-542ca73e7332)
  3647. (property "Reference" "U215" (id 0) (at 79.375 125.095 0))
  3648. (property "Value" "74F86" (id 1) (at 90.805 125.73 0))
  3649. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 85.09 130.81 0)
  3650. (effects (font (size 1.27 1.27)) hide)
  3651. )
  3652. (property "Datasheet" "74xx/74ls86.pdf" (id 3) (at 85.09 130.81 0)
  3653. (effects (font (size 1.27 1.27)) hide)
  3654. )
  3655. (pin "1" (uuid 7fa4e87e-fd28-44db-a5b8-04fbee83048d))
  3656. (pin "2" (uuid 43051c0f-aa1e-4443-be44-20637b5e385b))
  3657. (pin "3" (uuid 02d8333d-c87a-4ad8-af31-4de75f470bac))
  3658. (pin "4" (uuid 2afcce1e-0219-4f04-90f0-7f1148b5d808))
  3659. (pin "5" (uuid 5f8a9500-3061-4d9a-9f1e-ba8f9d830f4b))
  3660. (pin "6" (uuid 9349a534-87b8-4996-871d-e1e8534e1f73))
  3661. (pin "10" (uuid bb00efcf-bb70-4876-b1e6-eb8d27888a7f))
  3662. (pin "8" (uuid 59f19454-bc14-4723-8a0c-0452cdc9a76d))
  3663. (pin "9" (uuid 35eb0563-6c13-4481-b44c-c7a452279f43))
  3664. (pin "11" (uuid 6f744062-9107-4167-ab20-eb7d847b58cb))
  3665. (pin "12" (uuid ccd80048-2f3f-4974-bb7c-7f2c47f277cd))
  3666. (pin "13" (uuid 1ce81528-70b1-4841-80c1-587b51044f62))
  3667. (pin "14" (uuid 2184514f-6e59-4d64-9262-b2ee3a644e51))
  3668. (pin "7" (uuid 4d504e02-586e-4f96-8166-12bbf7b18bf6))
  3669. )
  3670. (symbol (lib_id "Device:R_Small") (at 66.675 71.755 0) (unit 1)
  3671. (in_bom yes) (on_board yes)
  3672. (uuid c7e33f2a-c9e7-44ce-a00e-0528eb33d1bb)
  3673. (property "Reference" "R54-4" (id 0) (at 64.135 78.105 90)
  3674. (effects (font (size 1.27 1.27)) (justify left))
  3675. )
  3676. (property "Value" "4.7k" (id 1) (at 64.135 69.85 90)
  3677. (effects (font (size 1.27 1.27)) (justify left))
  3678. )
  3679. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 66.675 71.755 0)
  3680. (effects (font (size 1.27 1.27)) hide)
  3681. )
  3682. (property "Datasheet" "~" (id 3) (at 66.675 71.755 0)
  3683. (effects (font (size 1.27 1.27)) hide)
  3684. )
  3685. (pin "1" (uuid 1a5d1685-b819-406e-97c0-49e883cb9d7c))
  3686. (pin "2" (uuid 441e97ba-5549-4d17-8829-34f8c7b451c0))
  3687. )
  3688. (symbol (lib_id "power:+5V") (at 152.4 160.02 0) (unit 1)
  3689. (in_bom yes) (on_board yes) (fields_autoplaced)
  3690. (uuid cc88ca87-fd4e-45fe-8704-265740940be1)
  3691. (property "Reference" "#PWR0515" (id 0) (at 152.4 163.83 0)
  3692. (effects (font (size 1.27 1.27)) hide)
  3693. )
  3694. (property "Value" "+5V" (id 1) (at 154.94 158.7499 0)
  3695. (effects (font (size 1.27 1.27)) (justify left))
  3696. )
  3697. (property "Footprint" "" (id 2) (at 152.4 160.02 0)
  3698. (effects (font (size 1.27 1.27)) hide)
  3699. )
  3700. (property "Datasheet" "" (id 3) (at 152.4 160.02 0)
  3701. (effects (font (size 1.27 1.27)) hide)
  3702. )
  3703. (pin "1" (uuid 6f8b7f1b-753e-44c7-a8e1-71faa5554490))
  3704. )
  3705. (symbol (lib_id "Device:R_Small") (at 142.24 187.325 270) (unit 1)
  3706. (in_bom yes) (on_board yes)
  3707. (uuid cea876a0-d380-4c2b-85d5-58f1fd3b3ab6)
  3708. (property "Reference" "R53-7" (id 0) (at 135.89 184.785 90)
  3709. (effects (font (size 1.27 1.27)) (justify left))
  3710. )
  3711. (property "Value" "4.7k" (id 1) (at 144.145 184.785 90)
  3712. (effects (font (size 1.27 1.27)) (justify left))
  3713. )
  3714. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 187.325 0)
  3715. (effects (font (size 1.27 1.27)) hide)
  3716. )
  3717. (property "Datasheet" "~" (id 3) (at 142.24 187.325 0)
  3718. (effects (font (size 1.27 1.27)) hide)
  3719. )
  3720. (pin "1" (uuid c76324b8-8e3e-450d-8acc-d341bd3da736))
  3721. (pin "2" (uuid 27ebc587-cb98-49e2-987b-9546be9917e0))
  3722. )
  3723. (symbol (lib_id "74xx:74LS86") (at 60.96 118.745 0) (unit 3)
  3724. (in_bom yes) (on_board yes)
  3725. (uuid d22674fc-db0b-4ac2-bbf0-c59bb98e8e79)
  3726. (property "Reference" "U215" (id 0) (at 52.07 113.665 0))
  3727. (property "Value" "74F86" (id 1) (at 65.405 113.665 0))
  3728. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 60.96 118.745 0)
  3729. (effects (font (size 1.27 1.27)) hide)
  3730. )
  3731. (property "Datasheet" "74xx/74ls86.pdf" (id 3) (at 60.96 118.745 0)
  3732. (effects (font (size 1.27 1.27)) hide)
  3733. )
  3734. (pin "1" (uuid 6ad6b9ad-7566-4162-91ab-23ce56410399))
  3735. (pin "2" (uuid c5a67efc-62e6-489e-981c-310c51b18e9f))
  3736. (pin "3" (uuid 1f463c2c-bb6f-4dae-acbb-a7e95857da5d))
  3737. (pin "4" (uuid 78ccc0a3-7cf7-4c15-8423-717e26e61400))
  3738. (pin "5" (uuid 7366bc3d-f955-4bf3-bc13-1a0d9351e7ad))
  3739. (pin "6" (uuid 1f23ba21-3eb9-4e6f-8aea-0702637e0a76))
  3740. (pin "10" (uuid 244cc552-f32c-4015-b30a-a387997caaa1))
  3741. (pin "8" (uuid 81930ae3-3849-4c0a-bd80-cec80bc497c5))
  3742. (pin "9" (uuid a2ed5a71-5f20-457b-ba3c-e782ca785b35))
  3743. (pin "11" (uuid f48bf229-82b6-4477-91a7-9cb762a65ba6))
  3744. (pin "12" (uuid 8d3c48fc-2bc2-40a3-ac7c-35a2d2b148d6))
  3745. (pin "13" (uuid 97105d5f-4e9f-4050-90c4-5bf5ed32abd4))
  3746. (pin "14" (uuid 4979fb97-36b5-4e24-97a6-5cd9ae914172))
  3747. (pin "7" (uuid e731030f-1e47-4623-b5ec-e073da7c3ddd))
  3748. )
  3749. (symbol (lib_id "Device:R_Small") (at 57.785 71.755 0) (unit 1)
  3750. (in_bom yes) (on_board yes)
  3751. (uuid d52e2f60-f434-44fe-b0e6-84f308c27867)
  3752. (property "Reference" "R54-2" (id 0) (at 55.245 78.105 90)
  3753. (effects (font (size 1.27 1.27)) (justify left))
  3754. )
  3755. (property "Value" "4.7k" (id 1) (at 55.245 69.85 90)
  3756. (effects (font (size 1.27 1.27)) (justify left))
  3757. )
  3758. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 57.785 71.755 0)
  3759. (effects (font (size 1.27 1.27)) hide)
  3760. )
  3761. (property "Datasheet" "~" (id 3) (at 57.785 71.755 0)
  3762. (effects (font (size 1.27 1.27)) hide)
  3763. )
  3764. (pin "1" (uuid 7c736f06-04c0-4fb9-baac-307471952954))
  3765. (pin "2" (uuid 30fd8e20-bbeb-4f40-aea3-0ca6ad5a91bc))
  3766. )
  3767. (symbol (lib_id "Device:R_Small") (at 71.12 71.755 0) (unit 1)
  3768. (in_bom yes) (on_board yes)
  3769. (uuid e28860b9-77d6-4b68-b54a-09b60b8c9732)
  3770. (property "Reference" "R54-5" (id 0) (at 68.58 78.105 90)
  3771. (effects (font (size 1.27 1.27)) (justify left))
  3772. )
  3773. (property "Value" "4.7k" (id 1) (at 68.58 69.85 90)
  3774. (effects (font (size 1.27 1.27)) (justify left))
  3775. )
  3776. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 71.12 71.755 0)
  3777. (effects (font (size 1.27 1.27)) hide)
  3778. )
  3779. (property "Datasheet" "~" (id 3) (at 71.12 71.755 0)
  3780. (effects (font (size 1.27 1.27)) hide)
  3781. )
  3782. (pin "1" (uuid 67c63103-176d-4213-b08c-802b958e4b84))
  3783. (pin "2" (uuid 574917cb-03a0-4283-896d-ce55b8108fcc))
  3784. )
  3785. (symbol (lib_id "power:+5V") (at 153.67 199.39 0) (unit 1)
  3786. (in_bom yes) (on_board yes) (fields_autoplaced)
  3787. (uuid e3ddd51b-be24-49c6-96c8-0ea948f91fe5)
  3788. (property "Reference" "#PWR0516" (id 0) (at 153.67 203.2 0)
  3789. (effects (font (size 1.27 1.27)) hide)
  3790. )
  3791. (property "Value" "+5V" (id 1) (at 156.21 198.1199 0)
  3792. (effects (font (size 1.27 1.27)) (justify left))
  3793. )
  3794. (property "Footprint" "" (id 2) (at 153.67 199.39 0)
  3795. (effects (font (size 1.27 1.27)) hide)
  3796. )
  3797. (property "Datasheet" "" (id 3) (at 153.67 199.39 0)
  3798. (effects (font (size 1.27 1.27)) hide)
  3799. )
  3800. (pin "1" (uuid f0fd036e-dde3-4c73-9e7b-d019439a8808))
  3801. )
  3802. (symbol (lib_id "Device:R_Small") (at 142.24 169.545 270) (unit 1)
  3803. (in_bom yes) (on_board yes)
  3804. (uuid e9413933-a29a-493b-bf23-dbcc8dc28899)
  3805. (property "Reference" "R53-3" (id 0) (at 135.89 167.005 90)
  3806. (effects (font (size 1.27 1.27)) (justify left))
  3807. )
  3808. (property "Value" "4.7k" (id 1) (at 144.145 167.005 90)
  3809. (effects (font (size 1.27 1.27)) (justify left))
  3810. )
  3811. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 169.545 0)
  3812. (effects (font (size 1.27 1.27)) hide)
  3813. )
  3814. (property "Datasheet" "~" (id 3) (at 142.24 169.545 0)
  3815. (effects (font (size 1.27 1.27)) hide)
  3816. )
  3817. (pin "1" (uuid 5a2214ae-d261-481e-97fe-0cfaec4b70d1))
  3818. (pin "2" (uuid fe1c532d-e955-4372-9076-4a20a07b176e))
  3819. )
  3820. (symbol (lib_id "74xx:74LS06") (at 231.14 124.46 0) (unit 5)
  3821. (in_bom yes) (on_board yes)
  3822. (uuid ff0052ca-01a9-401f-873d-6c30adeb64f7)
  3823. (property "Reference" "U214" (id 0) (at 231.14 120.015 0))
  3824. (property "Value" "7406" (id 1) (at 240.03 120.015 0))
  3825. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 231.14 124.46 0)
  3826. (effects (font (size 1.27 1.27)) hide)
  3827. )
  3828. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS06" (id 3) (at 231.14 124.46 0)
  3829. (effects (font (size 1.27 1.27)) hide)
  3830. )
  3831. (pin "1" (uuid 4f52bd75-7f98-4b13-8c4b-5e0920e485b0))
  3832. (pin "2" (uuid 9b1bd733-e010-47ab-9dbe-018a30bc6e33))
  3833. (pin "3" (uuid c58fa8a7-a2fb-492e-afad-e11130f2c554))
  3834. (pin "4" (uuid 49cf56c6-04a3-41a8-8fae-a1a6b208a07c))
  3835. (pin "5" (uuid 8d5588cf-debf-4704-89ea-ce94755b49b3))
  3836. (pin "6" (uuid 83f0e0af-acc5-4111-a9b4-ab36c095c7d4))
  3837. (pin "8" (uuid 6cf8c784-63f9-4328-8705-b63eb0b846eb))
  3838. (pin "9" (uuid d262146b-c097-406c-b676-b16954c46891))
  3839. (pin "10" (uuid 2f9689b4-2858-4858-8fb5-4aa71701a861))
  3840. (pin "11" (uuid 62f51db6-37a7-4453-8300-8f133f677508))
  3841. (pin "12" (uuid 16e8ff89-d04d-4d3c-87f5-55e972584250))
  3842. (pin "13" (uuid 16461068-1c83-4a42-af7a-26df8dc67925))
  3843. (pin "14" (uuid ebe4b89e-0b25-4477-a6ae-637b84dffc64))
  3844. (pin "7" (uuid 4bc828af-1c03-4371-ba73-ff9793b032e9))
  3845. )
  3846. )