x37kernel1.kicad_sch 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid cb721686-5255-4788-a3b0-ce4312e32eb7)
  3. (paper "A3")
  4. (lib_symbols
  5. (symbol "74xx:74HC245" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  6. (property "Reference" "U" (id 0) (at -7.62 16.51 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Value" "74HC245" (id 1) (at -7.62 -16.51 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Footprint" "" (id 2) (at 0 0 0)
  13. (effects (font (size 1.27 1.27)) hide)
  14. )
  15. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC245" (id 3) (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "ki_locked" "" (id 4) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)))
  20. )
  21. (property "ki_keywords" "HCMOS BUS 3State" (id 5) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_description" "Octal BUS Transceivers, 3-State outputs" (id 6) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (property "ki_fp_filters" "DIP?20*" (id 7) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (symbol "74HC245_1_0"
  31. (polyline
  32. (pts
  33. (xy -0.635 -1.27)
  34. (xy -0.635 1.27)
  35. (xy 0.635 1.27)
  36. )
  37. (stroke (width 0) (type default) (color 0 0 0 0))
  38. (fill (type none))
  39. )
  40. (polyline
  41. (pts
  42. (xy -1.27 -1.27)
  43. (xy 0.635 -1.27)
  44. (xy 0.635 1.27)
  45. (xy 1.27 1.27)
  46. )
  47. (stroke (width 0) (type default) (color 0 0 0 0))
  48. (fill (type none))
  49. )
  50. (pin input line (at -12.7 -10.16 0) (length 5.08)
  51. (name "A->B" (effects (font (size 1.27 1.27))))
  52. (number "1" (effects (font (size 1.27 1.27))))
  53. )
  54. (pin power_in line (at 0 -20.32 90) (length 5.08)
  55. (name "GND" (effects (font (size 1.27 1.27))))
  56. (number "10" (effects (font (size 1.27 1.27))))
  57. )
  58. (pin tri_state line (at 12.7 -5.08 180) (length 5.08)
  59. (name "B7" (effects (font (size 1.27 1.27))))
  60. (number "11" (effects (font (size 1.27 1.27))))
  61. )
  62. (pin tri_state line (at 12.7 -2.54 180) (length 5.08)
  63. (name "B6" (effects (font (size 1.27 1.27))))
  64. (number "12" (effects (font (size 1.27 1.27))))
  65. )
  66. (pin tri_state line (at 12.7 0 180) (length 5.08)
  67. (name "B5" (effects (font (size 1.27 1.27))))
  68. (number "13" (effects (font (size 1.27 1.27))))
  69. )
  70. (pin tri_state line (at 12.7 2.54 180) (length 5.08)
  71. (name "B4" (effects (font (size 1.27 1.27))))
  72. (number "14" (effects (font (size 1.27 1.27))))
  73. )
  74. (pin tri_state line (at 12.7 5.08 180) (length 5.08)
  75. (name "B3" (effects (font (size 1.27 1.27))))
  76. (number "15" (effects (font (size 1.27 1.27))))
  77. )
  78. (pin tri_state line (at 12.7 7.62 180) (length 5.08)
  79. (name "B2" (effects (font (size 1.27 1.27))))
  80. (number "16" (effects (font (size 1.27 1.27))))
  81. )
  82. (pin tri_state line (at 12.7 10.16 180) (length 5.08)
  83. (name "B1" (effects (font (size 1.27 1.27))))
  84. (number "17" (effects (font (size 1.27 1.27))))
  85. )
  86. (pin tri_state line (at 12.7 12.7 180) (length 5.08)
  87. (name "B0" (effects (font (size 1.27 1.27))))
  88. (number "18" (effects (font (size 1.27 1.27))))
  89. )
  90. (pin input inverted (at -12.7 -12.7 0) (length 5.08)
  91. (name "CE" (effects (font (size 1.27 1.27))))
  92. (number "19" (effects (font (size 1.27 1.27))))
  93. )
  94. (pin tri_state line (at -12.7 12.7 0) (length 5.08)
  95. (name "A0" (effects (font (size 1.27 1.27))))
  96. (number "2" (effects (font (size 1.27 1.27))))
  97. )
  98. (pin power_in line (at 0 20.32 270) (length 5.08)
  99. (name "VCC" (effects (font (size 1.27 1.27))))
  100. (number "20" (effects (font (size 1.27 1.27))))
  101. )
  102. (pin tri_state line (at -12.7 10.16 0) (length 5.08)
  103. (name "A1" (effects (font (size 1.27 1.27))))
  104. (number "3" (effects (font (size 1.27 1.27))))
  105. )
  106. (pin tri_state line (at -12.7 7.62 0) (length 5.08)
  107. (name "A2" (effects (font (size 1.27 1.27))))
  108. (number "4" (effects (font (size 1.27 1.27))))
  109. )
  110. (pin tri_state line (at -12.7 5.08 0) (length 5.08)
  111. (name "A3" (effects (font (size 1.27 1.27))))
  112. (number "5" (effects (font (size 1.27 1.27))))
  113. )
  114. (pin tri_state line (at -12.7 2.54 0) (length 5.08)
  115. (name "A4" (effects (font (size 1.27 1.27))))
  116. (number "6" (effects (font (size 1.27 1.27))))
  117. )
  118. (pin tri_state line (at -12.7 0 0) (length 5.08)
  119. (name "A5" (effects (font (size 1.27 1.27))))
  120. (number "7" (effects (font (size 1.27 1.27))))
  121. )
  122. (pin tri_state line (at -12.7 -2.54 0) (length 5.08)
  123. (name "A6" (effects (font (size 1.27 1.27))))
  124. (number "8" (effects (font (size 1.27 1.27))))
  125. )
  126. (pin tri_state line (at -12.7 -5.08 0) (length 5.08)
  127. (name "A7" (effects (font (size 1.27 1.27))))
  128. (number "9" (effects (font (size 1.27 1.27))))
  129. )
  130. )
  131. (symbol "74HC245_1_1"
  132. (rectangle (start -7.62 15.24) (end 7.62 -15.24)
  133. (stroke (width 0.254) (type default) (color 0 0 0 0))
  134. (fill (type background))
  135. )
  136. )
  137. )
  138. (symbol "CPU_NXP_68000:68010D" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
  139. (property "Reference" "U" (id 0) (at 0 2.54 0)
  140. (effects (font (size 1.27 1.27)))
  141. )
  142. (property "Value" "68010D" (id 1) (at 0 -3.81 0)
  143. (effects (font (size 1.27 1.27)))
  144. )
  145. (property "Footprint" "" (id 2) (at 0 0 0)
  146. (effects (font (size 1.27 1.27)) hide)
  147. )
  148. (property "Datasheet" "https://www.nxp.com/docs/en/reference-manual/MC68000UM.pdf" (id 3) (at 0 0 0)
  149. (effects (font (size 1.27 1.27)) hide)
  150. )
  151. (property "ki_keywords" "68000 Microprocessor CPU" (id 4) (at 0 0 0)
  152. (effects (font (size 1.27 1.27)) hide)
  153. )
  154. (property "ki_description" "16/32-bit Microprocessor" (id 5) (at 0 0 0)
  155. (effects (font (size 1.27 1.27)) hide)
  156. )
  157. (symbol "68010D_0_1"
  158. (rectangle (start -17.78 57.15) (end 17.78 -57.15)
  159. (stroke (width 0.254) (type default) (color 0 0 0 0))
  160. (fill (type background))
  161. )
  162. )
  163. (symbol "68010D_1_1"
  164. (pin bidirectional line (at 25.4 -15.24 180) (length 7.62)
  165. (name "D4" (effects (font (size 1.27 1.27))))
  166. (number "1" (effects (font (size 1.27 1.27))))
  167. )
  168. (pin input inverted (at -25.4 -20.32 0) (length 7.62)
  169. (name "DTACK" (effects (font (size 1.27 1.27))))
  170. (number "10" (effects (font (size 1.27 1.27))))
  171. )
  172. (pin output inverted (at -25.4 35.56 0) (length 7.62)
  173. (name "BG" (effects (font (size 1.27 1.27))))
  174. (number "11" (effects (font (size 1.27 1.27))))
  175. )
  176. (pin input inverted (at -25.4 38.1 0) (length 7.62)
  177. (name "BGACK" (effects (font (size 1.27 1.27))))
  178. (number "12" (effects (font (size 1.27 1.27))))
  179. )
  180. (pin input inverted (at -25.4 33.02 0) (length 7.62)
  181. (name "BR" (effects (font (size 1.27 1.27))))
  182. (number "13" (effects (font (size 1.27 1.27))))
  183. )
  184. (pin power_in line (at 0 60.96 270) (length 3.81)
  185. (name "VCC" (effects (font (size 1.27 1.27))))
  186. (number "14" (effects (font (size 1.27 1.27))))
  187. )
  188. (pin input clock (at -25.4 55.88 0) (length 7.62)
  189. (name "CLK" (effects (font (size 1.27 1.27))))
  190. (number "15" (effects (font (size 1.27 1.27))))
  191. )
  192. (pin power_in line (at 2.54 -60.96 90) (length 3.81)
  193. (name "GND" (effects (font (size 1.27 1.27))))
  194. (number "16" (effects (font (size 1.27 1.27))))
  195. )
  196. (pin bidirectional inverted (at -25.4 -30.48 0) (length 7.62)
  197. (name "HALT" (effects (font (size 1.27 1.27))))
  198. (number "17" (effects (font (size 1.27 1.27))))
  199. )
  200. (pin bidirectional inverted (at -25.4 -33.02 0) (length 7.62)
  201. (name "RESET" (effects (font (size 1.27 1.27))))
  202. (number "18" (effects (font (size 1.27 1.27))))
  203. )
  204. (pin output inverted (at -25.4 12.7 0) (length 7.62)
  205. (name "VMA" (effects (font (size 1.27 1.27))))
  206. (number "19" (effects (font (size 1.27 1.27))))
  207. )
  208. (pin bidirectional line (at 25.4 -12.7 180) (length 7.62)
  209. (name "D3" (effects (font (size 1.27 1.27))))
  210. (number "2" (effects (font (size 1.27 1.27))))
  211. )
  212. (pin output line (at -25.4 10.16 0) (length 7.62)
  213. (name "E" (effects (font (size 1.27 1.27))))
  214. (number "20" (effects (font (size 1.27 1.27))))
  215. )
  216. (pin input inverted (at -25.4 7.62 0) (length 7.62)
  217. (name "VPA" (effects (font (size 1.27 1.27))))
  218. (number "21" (effects (font (size 1.27 1.27))))
  219. )
  220. (pin input inverted (at -25.4 -15.24 0) (length 7.62)
  221. (name "BERR" (effects (font (size 1.27 1.27))))
  222. (number "22" (effects (font (size 1.27 1.27))))
  223. )
  224. (pin input inverted (at -25.4 43.18 0) (length 7.62)
  225. (name "IPL2" (effects (font (size 1.27 1.27))))
  226. (number "23" (effects (font (size 1.27 1.27))))
  227. )
  228. (pin input inverted (at -25.4 45.72 0) (length 7.62)
  229. (name "IPL1" (effects (font (size 1.27 1.27))))
  230. (number "24" (effects (font (size 1.27 1.27))))
  231. )
  232. (pin input inverted (at -25.4 48.26 0) (length 7.62)
  233. (name "IPL0" (effects (font (size 1.27 1.27))))
  234. (number "25" (effects (font (size 1.27 1.27))))
  235. )
  236. (pin output line (at -25.4 20.32 0) (length 7.62)
  237. (name "FC2" (effects (font (size 1.27 1.27))))
  238. (number "26" (effects (font (size 1.27 1.27))))
  239. )
  240. (pin output line (at -25.4 22.86 0) (length 7.62)
  241. (name "FC1" (effects (font (size 1.27 1.27))))
  242. (number "27" (effects (font (size 1.27 1.27))))
  243. )
  244. (pin output line (at -25.4 25.4 0) (length 7.62)
  245. (name "FC0" (effects (font (size 1.27 1.27))))
  246. (number "28" (effects (font (size 1.27 1.27))))
  247. )
  248. (pin output line (at 25.4 55.88 180) (length 7.62)
  249. (name "A1" (effects (font (size 1.27 1.27))))
  250. (number "29" (effects (font (size 1.27 1.27))))
  251. )
  252. (pin bidirectional line (at 25.4 -10.16 180) (length 7.62)
  253. (name "D2" (effects (font (size 1.27 1.27))))
  254. (number "3" (effects (font (size 1.27 1.27))))
  255. )
  256. (pin output line (at 25.4 53.34 180) (length 7.62)
  257. (name "A2" (effects (font (size 1.27 1.27))))
  258. (number "30" (effects (font (size 1.27 1.27))))
  259. )
  260. (pin output line (at 25.4 50.8 180) (length 7.62)
  261. (name "A3" (effects (font (size 1.27 1.27))))
  262. (number "31" (effects (font (size 1.27 1.27))))
  263. )
  264. (pin output line (at 25.4 48.26 180) (length 7.62)
  265. (name "A4" (effects (font (size 1.27 1.27))))
  266. (number "32" (effects (font (size 1.27 1.27))))
  267. )
  268. (pin output line (at 25.4 45.72 180) (length 7.62)
  269. (name "A5" (effects (font (size 1.27 1.27))))
  270. (number "33" (effects (font (size 1.27 1.27))))
  271. )
  272. (pin output line (at 25.4 43.18 180) (length 7.62)
  273. (name "A6" (effects (font (size 1.27 1.27))))
  274. (number "34" (effects (font (size 1.27 1.27))))
  275. )
  276. (pin output line (at 25.4 40.64 180) (length 7.62)
  277. (name "A7" (effects (font (size 1.27 1.27))))
  278. (number "35" (effects (font (size 1.27 1.27))))
  279. )
  280. (pin output line (at 25.4 38.1 180) (length 7.62)
  281. (name "A8" (effects (font (size 1.27 1.27))))
  282. (number "36" (effects (font (size 1.27 1.27))))
  283. )
  284. (pin output line (at 25.4 35.56 180) (length 7.62)
  285. (name "A9" (effects (font (size 1.27 1.27))))
  286. (number "37" (effects (font (size 1.27 1.27))))
  287. )
  288. (pin output line (at 25.4 33.02 180) (length 7.62)
  289. (name "A10" (effects (font (size 1.27 1.27))))
  290. (number "38" (effects (font (size 1.27 1.27))))
  291. )
  292. (pin output line (at 25.4 30.48 180) (length 7.62)
  293. (name "A11" (effects (font (size 1.27 1.27))))
  294. (number "39" (effects (font (size 1.27 1.27))))
  295. )
  296. (pin bidirectional line (at 25.4 -7.62 180) (length 7.62)
  297. (name "D1" (effects (font (size 1.27 1.27))))
  298. (number "4" (effects (font (size 1.27 1.27))))
  299. )
  300. (pin output line (at 25.4 27.94 180) (length 7.62)
  301. (name "A12" (effects (font (size 1.27 1.27))))
  302. (number "40" (effects (font (size 1.27 1.27))))
  303. )
  304. (pin output line (at 25.4 25.4 180) (length 7.62)
  305. (name "A13" (effects (font (size 1.27 1.27))))
  306. (number "41" (effects (font (size 1.27 1.27))))
  307. )
  308. (pin output line (at 25.4 22.86 180) (length 7.62)
  309. (name "A14" (effects (font (size 1.27 1.27))))
  310. (number "42" (effects (font (size 1.27 1.27))))
  311. )
  312. (pin output line (at 25.4 20.32 180) (length 7.62)
  313. (name "A15" (effects (font (size 1.27 1.27))))
  314. (number "43" (effects (font (size 1.27 1.27))))
  315. )
  316. (pin output line (at 25.4 17.78 180) (length 7.62)
  317. (name "A16" (effects (font (size 1.27 1.27))))
  318. (number "44" (effects (font (size 1.27 1.27))))
  319. )
  320. (pin output line (at 25.4 15.24 180) (length 7.62)
  321. (name "A17" (effects (font (size 1.27 1.27))))
  322. (number "45" (effects (font (size 1.27 1.27))))
  323. )
  324. (pin output line (at 25.4 12.7 180) (length 7.62)
  325. (name "A18" (effects (font (size 1.27 1.27))))
  326. (number "46" (effects (font (size 1.27 1.27))))
  327. )
  328. (pin output line (at 25.4 10.16 180) (length 7.62)
  329. (name "A19" (effects (font (size 1.27 1.27))))
  330. (number "47" (effects (font (size 1.27 1.27))))
  331. )
  332. (pin output line (at 25.4 7.62 180) (length 7.62)
  333. (name "A20" (effects (font (size 1.27 1.27))))
  334. (number "48" (effects (font (size 1.27 1.27))))
  335. )
  336. (pin power_in line (at 2.54 60.96 270) (length 3.81)
  337. (name "VCC" (effects (font (size 1.27 1.27))))
  338. (number "49" (effects (font (size 1.27 1.27))))
  339. )
  340. (pin bidirectional line (at 25.4 -5.08 180) (length 7.62)
  341. (name "D0" (effects (font (size 1.27 1.27))))
  342. (number "5" (effects (font (size 1.27 1.27))))
  343. )
  344. (pin output line (at 25.4 5.08 180) (length 7.62)
  345. (name "A21" (effects (font (size 1.27 1.27))))
  346. (number "50" (effects (font (size 1.27 1.27))))
  347. )
  348. (pin output line (at 25.4 2.54 180) (length 7.62)
  349. (name "A22" (effects (font (size 1.27 1.27))))
  350. (number "51" (effects (font (size 1.27 1.27))))
  351. )
  352. (pin output line (at 25.4 0 180) (length 7.62)
  353. (name "A23" (effects (font (size 1.27 1.27))))
  354. (number "52" (effects (font (size 1.27 1.27))))
  355. )
  356. (pin power_in line (at 0 -60.96 90) (length 3.81)
  357. (name "GND" (effects (font (size 1.27 1.27))))
  358. (number "53" (effects (font (size 1.27 1.27))))
  359. )
  360. (pin bidirectional line (at 25.4 -43.18 180) (length 7.62)
  361. (name "D15" (effects (font (size 1.27 1.27))))
  362. (number "54" (effects (font (size 1.27 1.27))))
  363. )
  364. (pin bidirectional line (at 25.4 -40.64 180) (length 7.62)
  365. (name "D14" (effects (font (size 1.27 1.27))))
  366. (number "55" (effects (font (size 1.27 1.27))))
  367. )
  368. (pin bidirectional line (at 25.4 -38.1 180) (length 7.62)
  369. (name "D13" (effects (font (size 1.27 1.27))))
  370. (number "56" (effects (font (size 1.27 1.27))))
  371. )
  372. (pin bidirectional line (at 25.4 -35.56 180) (length 7.62)
  373. (name "D12" (effects (font (size 1.27 1.27))))
  374. (number "57" (effects (font (size 1.27 1.27))))
  375. )
  376. (pin bidirectional line (at 25.4 -33.02 180) (length 7.62)
  377. (name "D11" (effects (font (size 1.27 1.27))))
  378. (number "58" (effects (font (size 1.27 1.27))))
  379. )
  380. (pin bidirectional line (at 25.4 -30.48 180) (length 7.62)
  381. (name "D10" (effects (font (size 1.27 1.27))))
  382. (number "59" (effects (font (size 1.27 1.27))))
  383. )
  384. (pin output inverted (at 25.4 -48.26 180) (length 7.62)
  385. (name "AS" (effects (font (size 1.27 1.27))))
  386. (number "6" (effects (font (size 1.27 1.27))))
  387. )
  388. (pin bidirectional line (at 25.4 -27.94 180) (length 7.62)
  389. (name "D9" (effects (font (size 1.27 1.27))))
  390. (number "60" (effects (font (size 1.27 1.27))))
  391. )
  392. (pin bidirectional line (at 25.4 -25.4 180) (length 7.62)
  393. (name "D8" (effects (font (size 1.27 1.27))))
  394. (number "61" (effects (font (size 1.27 1.27))))
  395. )
  396. (pin bidirectional line (at 25.4 -22.86 180) (length 7.62)
  397. (name "D7" (effects (font (size 1.27 1.27))))
  398. (number "62" (effects (font (size 1.27 1.27))))
  399. )
  400. (pin bidirectional line (at 25.4 -20.32 180) (length 7.62)
  401. (name "D6" (effects (font (size 1.27 1.27))))
  402. (number "63" (effects (font (size 1.27 1.27))))
  403. )
  404. (pin bidirectional line (at 25.4 -17.78 180) (length 7.62)
  405. (name "D5" (effects (font (size 1.27 1.27))))
  406. (number "64" (effects (font (size 1.27 1.27))))
  407. )
  408. (pin output inverted (at 25.4 -50.8 180) (length 7.62)
  409. (name "UDS" (effects (font (size 1.27 1.27))))
  410. (number "7" (effects (font (size 1.27 1.27))))
  411. )
  412. (pin output inverted (at 25.4 -53.34 180) (length 7.62)
  413. (name "LDS" (effects (font (size 1.27 1.27))))
  414. (number "8" (effects (font (size 1.27 1.27))))
  415. )
  416. (pin output line (at 25.4 -55.88 180) (length 7.62)
  417. (name "R/W" (effects (font (size 1.27 1.27))))
  418. (number "9" (effects (font (size 1.27 1.27))))
  419. )
  420. )
  421. )
  422. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  423. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  424. (effects (font (size 1.27 1.27)) hide)
  425. )
  426. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  427. (effects (font (size 1.27 1.27)))
  428. )
  429. (property "Footprint" "" (id 2) (at 0 0 0)
  430. (effects (font (size 1.27 1.27)) hide)
  431. )
  432. (property "Datasheet" "" (id 3) (at 0 0 0)
  433. (effects (font (size 1.27 1.27)) hide)
  434. )
  435. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  436. (effects (font (size 1.27 1.27)) hide)
  437. )
  438. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  439. (effects (font (size 1.27 1.27)) hide)
  440. )
  441. (symbol "+5V_0_1"
  442. (polyline
  443. (pts
  444. (xy -0.762 1.27)
  445. (xy 0 2.54)
  446. )
  447. (stroke (width 0) (type default) (color 0 0 0 0))
  448. (fill (type none))
  449. )
  450. (polyline
  451. (pts
  452. (xy 0 0)
  453. (xy 0 2.54)
  454. )
  455. (stroke (width 0) (type default) (color 0 0 0 0))
  456. (fill (type none))
  457. )
  458. (polyline
  459. (pts
  460. (xy 0 2.54)
  461. (xy 0.762 1.27)
  462. )
  463. (stroke (width 0) (type default) (color 0 0 0 0))
  464. (fill (type none))
  465. )
  466. )
  467. (symbol "+5V_1_1"
  468. (pin power_in line (at 0 0 90) (length 0) hide
  469. (name "+5V" (effects (font (size 1.27 1.27))))
  470. (number "1" (effects (font (size 1.27 1.27))))
  471. )
  472. )
  473. )
  474. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  475. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  476. (effects (font (size 1.27 1.27)) hide)
  477. )
  478. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  479. (effects (font (size 1.27 1.27)))
  480. )
  481. (property "Footprint" "" (id 2) (at 0 0 0)
  482. (effects (font (size 1.27 1.27)) hide)
  483. )
  484. (property "Datasheet" "" (id 3) (at 0 0 0)
  485. (effects (font (size 1.27 1.27)) hide)
  486. )
  487. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  488. (effects (font (size 1.27 1.27)) hide)
  489. )
  490. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  491. (effects (font (size 1.27 1.27)) hide)
  492. )
  493. (symbol "GND_0_1"
  494. (polyline
  495. (pts
  496. (xy 0 0)
  497. (xy 0 -1.27)
  498. (xy 1.27 -1.27)
  499. (xy 0 -2.54)
  500. (xy -1.27 -1.27)
  501. (xy 0 -1.27)
  502. )
  503. (stroke (width 0) (type default) (color 0 0 0 0))
  504. (fill (type none))
  505. )
  506. )
  507. (symbol "GND_1_1"
  508. (pin power_in line (at 0 0 270) (length 0) hide
  509. (name "GND" (effects (font (size 1.27 1.27))))
  510. (number "1" (effects (font (size 1.27 1.27))))
  511. )
  512. )
  513. )
  514. (symbol "x37:NS32081D-10" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  515. (property "Reference" "U" (id 0) (at 3.81 24.13 0)
  516. (effects (font (size 1.27 1.27)))
  517. )
  518. (property "Value" "NS32081D-10" (id 1) (at -11.43 24.13 0)
  519. (effects (font (size 1.27 1.27)))
  520. )
  521. (property "Footprint" "Package_DIP:DIP-24_W15.24mm_Socket_LongPads" (id 2) (at 0 0 0)
  522. (effects (font (size 1.27 1.27)) hide)
  523. )
  524. (property "Datasheet" "" (id 3) (at 0 0 0)
  525. (effects (font (size 1.27 1.27)) hide)
  526. )
  527. (symbol "NS32081D-10_0_0"
  528. (pin bidirectional line (at -10.16 -6.35 0) (length 2.54)
  529. (name "D10" (effects (font (size 1.27 1.27))))
  530. (number "1" (effects (font (size 1.27 1.27))))
  531. )
  532. (pin bidirectional line (at -10.16 16.51 0) (length 2.54)
  533. (name "D1" (effects (font (size 1.27 1.27))))
  534. (number "10" (effects (font (size 1.27 1.27))))
  535. )
  536. (pin power_in line (at -1.27 -24.13 90) (length 2.54)
  537. (name "GNDL" (effects (font (size 1.27 1.27))))
  538. (number "12" (effects (font (size 1.27 1.27))))
  539. )
  540. (pin power_in line (at 1.27 -24.13 90) (length 2.54)
  541. (name "GNDB" (effects (font (size 1.27 1.27))))
  542. (number "13" (effects (font (size 1.27 1.27))))
  543. )
  544. (pin input line (at 10.16 11.43 180) (length 2.54)
  545. (name "CLK" (effects (font (size 1.27 1.27))))
  546. (number "14" (effects (font (size 1.27 1.27))))
  547. )
  548. (pin input line (at 10.16 15.24 180) (length 2.54)
  549. (name "~{RST}" (effects (font (size 1.27 1.27))))
  550. (number "15" (effects (font (size 1.27 1.27))))
  551. )
  552. (pin bidirectional line (at -10.16 -19.05 0) (length 2.54)
  553. (name "D15" (effects (font (size 1.27 1.27))))
  554. (number "16" (effects (font (size 1.27 1.27))))
  555. )
  556. (pin bidirectional line (at -10.16 -16.51 0) (length 2.54)
  557. (name "D14" (effects (font (size 1.27 1.27))))
  558. (number "17" (effects (font (size 1.27 1.27))))
  559. )
  560. (pin bidirectional line (at -10.16 -13.97 0) (length 2.54)
  561. (name "D13" (effects (font (size 1.27 1.27))))
  562. (number "18" (effects (font (size 1.27 1.27))))
  563. )
  564. (pin bidirectional line (at -10.16 -11.43 0) (length 2.54)
  565. (name "D12" (effects (font (size 1.27 1.27))))
  566. (number "19" (effects (font (size 1.27 1.27))))
  567. )
  568. (pin bidirectional line (at -10.16 -3.81 0) (length 2.54)
  569. (name "D9" (effects (font (size 1.27 1.27))))
  570. (number "2" (effects (font (size 1.27 1.27))))
  571. )
  572. (pin bidirectional line (at -10.16 -8.89 0) (length 2.54)
  573. (name "D11" (effects (font (size 1.27 1.27))))
  574. (number "20" (effects (font (size 1.27 1.27))))
  575. )
  576. (pin bidirectional line (at 10.16 3.81 180) (length 2.54)
  577. (name "SPC" (effects (font (size 1.27 1.27))))
  578. (number "21" (effects (font (size 1.27 1.27))))
  579. )
  580. (pin bidirectional line (at 10.16 -5.08 180) (length 2.54)
  581. (name "ST1" (effects (font (size 1.27 1.27))))
  582. (number "22" (effects (font (size 1.27 1.27))))
  583. )
  584. (pin bidirectional line (at 10.16 -2.54 180) (length 2.54)
  585. (name "ST0" (effects (font (size 1.27 1.27))))
  586. (number "23" (effects (font (size 1.27 1.27))))
  587. )
  588. (pin power_in line (at 0 24.13 270) (length 2.54)
  589. (name "VCC" (effects (font (size 1.27 1.27))))
  590. (number "24" (effects (font (size 1.27 1.27))))
  591. )
  592. (pin bidirectional line (at -10.16 -1.27 0) (length 2.54)
  593. (name "D8" (effects (font (size 1.27 1.27))))
  594. (number "3" (effects (font (size 1.27 1.27))))
  595. )
  596. (pin bidirectional line (at -10.16 1.27 0) (length 2.54)
  597. (name "D7" (effects (font (size 1.27 1.27))))
  598. (number "4" (effects (font (size 1.27 1.27))))
  599. )
  600. (pin bidirectional line (at -10.16 3.81 0) (length 2.54)
  601. (name "D6" (effects (font (size 1.27 1.27))))
  602. (number "5" (effects (font (size 1.27 1.27))))
  603. )
  604. (pin bidirectional line (at -10.16 6.35 0) (length 2.54)
  605. (name "D5" (effects (font (size 1.27 1.27))))
  606. (number "6" (effects (font (size 1.27 1.27))))
  607. )
  608. (pin bidirectional line (at -10.16 8.89 0) (length 2.54)
  609. (name "D4" (effects (font (size 1.27 1.27))))
  610. (number "7" (effects (font (size 1.27 1.27))))
  611. )
  612. (pin bidirectional line (at -10.16 11.43 0) (length 2.54)
  613. (name "D3" (effects (font (size 1.27 1.27))))
  614. (number "8" (effects (font (size 1.27 1.27))))
  615. )
  616. (pin bidirectional line (at -10.16 13.97 0) (length 2.54)
  617. (name "D2" (effects (font (size 1.27 1.27))))
  618. (number "9" (effects (font (size 1.27 1.27))))
  619. )
  620. )
  621. (symbol "NS32081D-10_0_1"
  622. (rectangle (start -7.62 21.59) (end 7.62 -21.59)
  623. (stroke (width 0) (type default) (color 0 0 0 0))
  624. (fill (type background))
  625. )
  626. (rectangle (start 6.35 -10.16) (end 6.35 -10.16)
  627. (stroke (width 0) (type default) (color 0 0 0 0))
  628. (fill (type none))
  629. )
  630. )
  631. (symbol "NS32081D-10_1_1"
  632. (pin bidirectional line (at -10.16 19.05 0) (length 2.54)
  633. (name "D0" (effects (font (size 1.27 1.27))))
  634. (number "11" (effects (font (size 1.27 1.27))))
  635. )
  636. )
  637. )
  638. )
  639. (junction (at 299.72 104.14) (diameter 0) (color 0 0 0 0)
  640. (uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51)
  641. )
  642. (junction (at 194.31 31.75) (diameter 0) (color 0 0 0 0)
  643. (uuid 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
  644. )
  645. (junction (at 288.29 127) (diameter 0) (color 0 0 0 0)
  646. (uuid 12fa3c3f-3d14-451a-a6a8-884fd1b32fa7)
  647. )
  648. (junction (at 284.48 134.62) (diameter 0) (color 0 0 0 0)
  649. (uuid 1755646e-fc08-4e43-a301-d9b3ea704cf6)
  650. )
  651. (junction (at 298.45 106.68) (diameter 0) (color 0 0 0 0)
  652. (uuid 18f1018d-5857-4c32-a072-f3de80352f74)
  653. )
  654. (junction (at 240.03 121.92) (diameter 0) (color 0 0 0 0)
  655. (uuid 235067e2-1686-40fe-a9a0-61704311b2b1)
  656. )
  657. (junction (at 361.95 45.72) (diameter 0) (color 0 0 0 0)
  658. (uuid 2f291a4b-4ecb-4692-9ad2-324f9784c0d4)
  659. )
  660. (junction (at 247.65 137.16) (diameter 0) (color 0 0 0 0)
  661. (uuid 34c0bee6-7425-4435-8857-d1fe8dfb6d89)
  662. )
  663. (junction (at 287.02 129.54) (diameter 0) (color 0 0 0 0)
  664. (uuid 3993c707-5291-41b6-83c0-d1c09cb3833a)
  665. )
  666. (junction (at 242.57 127) (diameter 0) (color 0 0 0 0)
  667. (uuid 3c9169cc-3a77-4ae0-8afc-cbfc472a28c5)
  668. )
  669. (junction (at 297.18 109.22) (diameter 0) (color 0 0 0 0)
  670. (uuid 3d552623-2969-4b15-8623-368144f225e9)
  671. )
  672. (junction (at 228.6 99.06) (diameter 0) (color 0 0 0 0)
  673. (uuid 443bc73a-8dc0-4e2f-a292-a5eff00efa5b)
  674. )
  675. (junction (at 234.95 111.76) (diameter 0) (color 0 0 0 0)
  676. (uuid 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4)
  677. )
  678. (junction (at 194.31 156.21) (diameter 0) (color 0 0 0 0)
  679. (uuid 66218487-e316-4467-9eba-79d4626ab24e)
  680. )
  681. (junction (at 195.58 210.82) (diameter 0) (color 0 0 0 0)
  682. (uuid 6a2bcc72-047b-4846-8583-1109e3552669)
  683. )
  684. (junction (at 243.84 129.54) (diameter 0) (color 0 0 0 0)
  685. (uuid 75b944f9-bf25-4dc7-8104-e9f80b4f359b)
  686. )
  687. (junction (at 233.68 109.22) (diameter 0) (color 0 0 0 0)
  688. (uuid 78f9c3d3-3556-46f6-9744-05ad54b330f0)
  689. )
  690. (junction (at 300.99 101.6) (diameter 0) (color 0 0 0 0)
  691. (uuid 799e761c-1426-40e9-a069-1f4cb353bfaa)
  692. )
  693. (junction (at 290.83 121.92) (diameter 0) (color 0 0 0 0)
  694. (uuid 7bea05d4-1dec-4cd6-aa53-302dde803254)
  695. )
  696. (junction (at 246.38 134.62) (diameter 0) (color 0 0 0 0)
  697. (uuid 7f2b3ce3-2f20-426d-b769-e0329b6a8111)
  698. )
  699. (junction (at 229.87 101.6) (diameter 0) (color 0 0 0 0)
  700. (uuid 83021f70-e61e-4ad3-bae7-b9f02b28be4f)
  701. )
  702. (junction (at 289.56 124.46) (diameter 0) (color 0 0 0 0)
  703. (uuid 851f3d61-ba3b-4e6e-abd4-cafa4d9b64cb)
  704. )
  705. (junction (at 285.75 132.08) (diameter 0) (color 0 0 0 0)
  706. (uuid 89a3dae6-dcb5-435b-a383-656b6a19a316)
  707. )
  708. (junction (at 283.21 137.16) (diameter 0) (color 0 0 0 0)
  709. (uuid 8aff0f38-92a8-45ec-b106-b185e93ca3fd)
  710. )
  711. (junction (at 238.76 119.38) (diameter 0) (color 0 0 0 0)
  712. (uuid 8bdea5f6-7a53-427a-92b8-fd15994c2e8c)
  713. )
  714. (junction (at 294.64 114.3) (diameter 0) (color 0 0 0 0)
  715. (uuid 96315415-cfed-47d2-b3dd-d782358bd0df)
  716. )
  717. (junction (at 241.3 124.46) (diameter 0) (color 0 0 0 0)
  718. (uuid 98861672-254d-432b-8e5a-10d885a5ffdc)
  719. )
  720. (junction (at 292.1 119.38) (diameter 0) (color 0 0 0 0)
  721. (uuid bef2abc2-bf3e-4a72-ad03-f8da3cd893cb)
  722. )
  723. (junction (at 293.37 116.84) (diameter 0) (color 0 0 0 0)
  724. (uuid d05faa1f-5f69-41bf-86d3-2cd224432e1b)
  725. )
  726. (junction (at 231.14 104.14) (diameter 0) (color 0 0 0 0)
  727. (uuid dda1e6ca-91ec-4136-b90b-3c54d79454b9)
  728. )
  729. (junction (at 325.12 213.36) (diameter 0) (color 0 0 0 0)
  730. (uuid e300709f-6c72-488d-a598-efcbd6d3af54)
  731. )
  732. (junction (at 302.26 99.06) (diameter 0) (color 0 0 0 0)
  733. (uuid e70b6168-f98e-4322-bc55-500948ef7b77)
  734. )
  735. (junction (at 245.11 132.08) (diameter 0) (color 0 0 0 0)
  736. (uuid e87738fc-e372-4c48-9de9-398fd8b4874c)
  737. )
  738. (junction (at 295.91 111.76) (diameter 0) (color 0 0 0 0)
  739. (uuid eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03)
  740. )
  741. (junction (at 232.41 106.68) (diameter 0) (color 0 0 0 0)
  742. (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
  743. )
  744. (junction (at 363.22 48.26) (diameter 0) (color 0 0 0 0)
  745. (uuid f6983918-fe05-46ea-b355-bc522ec53440)
  746. )
  747. (junction (at 236.22 114.3) (diameter 0) (color 0 0 0 0)
  748. (uuid f7447e92-4293-41c4-be3f-69b30aad1f17)
  749. )
  750. (junction (at 237.49 116.84) (diameter 0) (color 0 0 0 0)
  751. (uuid fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f)
  752. )
  753. (no_connect (at 167.64 81.28) (uuid 593b8647-0095-46cc-ba23-3cf2a86edb5e))
  754. (wire (pts (xy 229.87 101.6) (xy 229.87 190.5))
  755. (stroke (width 0) (type default) (color 0 0 0 0))
  756. (uuid 014d13cd-26ad-4d0e-86ad-a43b541cab14)
  757. )
  758. (wire (pts (xy 314.96 186.69) (xy 293.37 186.69))
  759. (stroke (width 0) (type default) (color 0 0 0 0))
  760. (uuid 015f5586-ba76-4a98-9114-f5cd2c67134d)
  761. )
  762. (wire (pts (xy 326.39 213.36) (xy 326.39 212.09))
  763. (stroke (width 0) (type default) (color 0 0 0 0))
  764. (uuid 01f82238-6335-48fe-8b0a-6853e227345a)
  765. )
  766. (wire (pts (xy 200.66 213.36) (xy 38.1 213.36))
  767. (stroke (width 0) (type default) (color 0 0 0 0))
  768. (uuid 083becc8-e25d-4206-9636-55457650bbe3)
  769. )
  770. (wire (pts (xy 193.04 31.75) (xy 194.31 31.75))
  771. (stroke (width 0) (type default) (color 0 0 0 0))
  772. (uuid 0b4c0f05-c855-4742-bad2-dbf645d5842b)
  773. )
  774. (wire (pts (xy 38.1 203.2) (xy 200.66 203.2))
  775. (stroke (width 0) (type default) (color 0 0 0 0))
  776. (uuid 0cc9bf07-55b9-458f-b8aa-41b2f51fa940)
  777. )
  778. (wire (pts (xy 218.44 58.42) (xy 384.81 58.42))
  779. (stroke (width 0) (type default) (color 0 0 0 0))
  780. (uuid 0ceb97d6-1b0f-4b71-921e-b0955c30c998)
  781. )
  782. (wire (pts (xy 195.58 156.21) (xy 195.58 154.94))
  783. (stroke (width 0) (type default) (color 0 0 0 0))
  784. (uuid 0fafc6b9-fd35-4a55-9270-7a8e7ce3cb13)
  785. )
  786. (wire (pts (xy 218.44 101.6) (xy 229.87 101.6))
  787. (stroke (width 0) (type default) (color 0 0 0 0))
  788. (uuid 0fc5db66-6188-4c1f-bb14-0868bef113eb)
  789. )
  790. (wire (pts (xy 302.26 99.06) (xy 302.26 168.91))
  791. (stroke (width 0) (type default) (color 0 0 0 0))
  792. (uuid 10e52e95-44f3-4059-a86d-dcda603e0623)
  793. )
  794. (wire (pts (xy 218.44 60.96) (xy 384.81 60.96))
  795. (stroke (width 0) (type default) (color 0 0 0 0))
  796. (uuid 1241b7f2-e266-4f5c-8a97-9f0f9d0eef37)
  797. )
  798. (wire (pts (xy 218.44 45.72) (xy 361.95 45.72))
  799. (stroke (width 0) (type default) (color 0 0 0 0))
  800. (uuid 12a24e86-2c38-4685-bba9-fff8dddb4cb0)
  801. )
  802. (wire (pts (xy 325.12 162.56) (xy 325.12 163.83))
  803. (stroke (width 0) (type default) (color 0 0 0 0))
  804. (uuid 12c8f4c9-cb79-4390-b96c-a717c693de17)
  805. )
  806. (wire (pts (xy 284.48 134.62) (xy 384.81 134.62))
  807. (stroke (width 0) (type default) (color 0 0 0 0))
  808. (uuid 1317ff66-8ecf-46c9-9612-8d2eae03c537)
  809. )
  810. (wire (pts (xy 226.06 203.2) (xy 236.22 203.2))
  811. (stroke (width 0) (type default) (color 0 0 0 0))
  812. (uuid 14094ad2-b562-4efa-8c6f-51d7a3134345)
  813. )
  814. (wire (pts (xy 226.06 200.66) (xy 234.95 200.66))
  815. (stroke (width 0) (type default) (color 0 0 0 0))
  816. (uuid 1427bb3f-0689-4b41-a816-cd79a5202fd0)
  817. )
  818. (wire (pts (xy 218.44 106.68) (xy 232.41 106.68))
  819. (stroke (width 0) (type default) (color 0 0 0 0))
  820. (uuid 142dd724-2a9f-4eea-ab21-209b1bc7ec65)
  821. )
  822. (wire (pts (xy 218.44 104.14) (xy 231.14 104.14))
  823. (stroke (width 0) (type default) (color 0 0 0 0))
  824. (uuid 15a82541-58d8-45b5-99c5-fb52e017e3ea)
  825. )
  826. (wire (pts (xy 287.02 129.54) (xy 384.81 129.54))
  827. (stroke (width 0) (type default) (color 0 0 0 0))
  828. (uuid 17ff35b3-d658-499b-9a46-ea36063fed4e)
  829. )
  830. (wire (pts (xy 218.44 124.46) (xy 241.3 124.46))
  831. (stroke (width 0) (type default) (color 0 0 0 0))
  832. (uuid 18d11f32-e1a6-4f29-8e3c-0bfeb07299bd)
  833. )
  834. (wire (pts (xy 245.11 132.08) (xy 285.75 132.08))
  835. (stroke (width 0) (type default) (color 0 0 0 0))
  836. (uuid 1c052668-6749-425a-9a77-35f046c8aa39)
  837. )
  838. (wire (pts (xy 226.06 240.03) (xy 240.03 240.03))
  839. (stroke (width 0) (type default) (color 0 0 0 0))
  840. (uuid 1cb22080-0f59-4c18-a6e6-8685ef44ec53)
  841. )
  842. (wire (pts (xy 289.56 124.46) (xy 289.56 194.31))
  843. (stroke (width 0) (type default) (color 0 0 0 0))
  844. (uuid 1cc5480b-56b7-4379-98e2-ccafc88911a7)
  845. )
  846. (wire (pts (xy 167.64 86.36) (xy 38.1 86.36))
  847. (stroke (width 0) (type default) (color 0 0 0 0))
  848. (uuid 2035ea48-3ef5-4d7f-8c3c-50981b30c89a)
  849. )
  850. (wire (pts (xy 361.95 190.5) (xy 335.28 190.5))
  851. (stroke (width 0) (type default) (color 0 0 0 0))
  852. (uuid 20caf6d2-76a7-497e-ac56-f6d31eb9027b)
  853. )
  854. (wire (pts (xy 195.58 260.35) (xy 195.58 210.82))
  855. (stroke (width 0) (type default) (color 0 0 0 0))
  856. (uuid 212bf70c-2324-47d9-8700-59771063baeb)
  857. )
  858. (wire (pts (xy 294.64 184.15) (xy 314.96 184.15))
  859. (stroke (width 0) (type default) (color 0 0 0 0))
  860. (uuid 21492bcd-343a-4b2b-b55a-b4586c11bdeb)
  861. )
  862. (wire (pts (xy 226.06 250.19) (xy 245.11 250.19))
  863. (stroke (width 0) (type default) (color 0 0 0 0))
  864. (uuid 2165c9a4-eb84-4cb6-a870-2fdc39d2511b)
  865. )
  866. (wire (pts (xy 200.66 205.74) (xy 38.1 205.74))
  867. (stroke (width 0) (type default) (color 0 0 0 0))
  868. (uuid 241e0c85-4796-48eb-a5a0-1c0f2d6e5910)
  869. )
  870. (wire (pts (xy 314.96 171.45) (xy 300.99 171.45))
  871. (stroke (width 0) (type default) (color 0 0 0 0))
  872. (uuid 2518d4ea-25cc-4e57-a0d6-8482034e7318)
  873. )
  874. (wire (pts (xy 284.48 134.62) (xy 284.48 204.47))
  875. (stroke (width 0) (type default) (color 0 0 0 0))
  876. (uuid 26bc8641-9bca-4204-9709-deedbe202a36)
  877. )
  878. (wire (pts (xy 194.31 156.21) (xy 195.58 156.21))
  879. (stroke (width 0) (type default) (color 0 0 0 0))
  880. (uuid 27b2eb82-662b-42d8-90e6-830fec4bb8d2)
  881. )
  882. (wire (pts (xy 167.64 50.8) (xy 38.1 50.8))
  883. (stroke (width 0) (type default) (color 0 0 0 0))
  884. (uuid 29bb7297-26fb-4776-9266-2355d022bab0)
  885. )
  886. (wire (pts (xy 218.44 71.12) (xy 384.81 71.12))
  887. (stroke (width 0) (type default) (color 0 0 0 0))
  888. (uuid 2b5a9ad3-7ec4-447d-916c-47adf5f9674f)
  889. )
  890. (wire (pts (xy 167.64 58.42) (xy 38.1 58.42))
  891. (stroke (width 0) (type default) (color 0 0 0 0))
  892. (uuid 2db910a0-b943-40b4-b81f-068ba5265f56)
  893. )
  894. (wire (pts (xy 226.06 252.73) (xy 246.38 252.73))
  895. (stroke (width 0) (type default) (color 0 0 0 0))
  896. (uuid 2de1ffee-2174-41d2-8969-68b8d21e5a7d)
  897. )
  898. (wire (pts (xy 293.37 116.84) (xy 384.81 116.84))
  899. (stroke (width 0) (type default) (color 0 0 0 0))
  900. (uuid 2f424da3-8fae-4941-bc6d-20044787372f)
  901. )
  902. (wire (pts (xy 335.28 172.72) (xy 384.81 172.72))
  903. (stroke (width 0) (type default) (color 0 0 0 0))
  904. (uuid 319639ae-c2c5-486d-93b1-d03bb1b64252)
  905. )
  906. (wire (pts (xy 241.3 124.46) (xy 241.3 242.57))
  907. (stroke (width 0) (type default) (color 0 0 0 0))
  908. (uuid 31f91ec8-56e4-4e08-9ccd-012652772211)
  909. )
  910. (wire (pts (xy 218.44 48.26) (xy 363.22 48.26))
  911. (stroke (width 0) (type default) (color 0 0 0 0))
  912. (uuid 35ef9c4a-35f6-467b-a704-b1d9354880cf)
  913. )
  914. (wire (pts (xy 200.66 200.66) (xy 38.1 200.66))
  915. (stroke (width 0) (type default) (color 0 0 0 0))
  916. (uuid 363945f6-fbef-42be-99cf-4a8a48434d92)
  917. )
  918. (wire (pts (xy 200.66 237.49) (xy 38.1 237.49))
  919. (stroke (width 0) (type default) (color 0 0 0 0))
  920. (uuid 386ad9e3-71fa-420f-8722-88548b024fc5)
  921. )
  922. (wire (pts (xy 292.1 189.23) (xy 314.96 189.23))
  923. (stroke (width 0) (type default) (color 0 0 0 0))
  924. (uuid 3bca658b-a598-4669-a7cb-3f9b5f47bb5a)
  925. )
  926. (wire (pts (xy 302.26 99.06) (xy 384.81 99.06))
  927. (stroke (width 0) (type default) (color 0 0 0 0))
  928. (uuid 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6)
  929. )
  930. (wire (pts (xy 335.28 193.04) (xy 363.22 193.04))
  931. (stroke (width 0) (type default) (color 0 0 0 0))
  932. (uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653)
  933. )
  934. (wire (pts (xy 218.44 40.64) (xy 384.81 40.64))
  935. (stroke (width 0) (type default) (color 0 0 0 0))
  936. (uuid 3e0392c0-affc-4114-9de5-1f1cfe79418a)
  937. )
  938. (wire (pts (xy 243.84 129.54) (xy 243.84 247.65))
  939. (stroke (width 0) (type default) (color 0 0 0 0))
  940. (uuid 3e57b728-64e6-4470-8f27-a43c0dd85050)
  941. )
  942. (wire (pts (xy 292.1 119.38) (xy 292.1 189.23))
  943. (stroke (width 0) (type default) (color 0 0 0 0))
  944. (uuid 41485de5-6ed3-4c83-b69e-ef83ae18093c)
  945. )
  946. (wire (pts (xy 290.83 191.77) (xy 314.96 191.77))
  947. (stroke (width 0) (type default) (color 0 0 0 0))
  948. (uuid 42d3f9d6-2a47-41a8-b942-295fcb83bcd8)
  949. )
  950. (wire (pts (xy 195.58 210.82) (xy 200.66 210.82))
  951. (stroke (width 0) (type default) (color 0 0 0 0))
  952. (uuid 44035e53-ff94-45ad-801f-55a1ce042a0d)
  953. )
  954. (wire (pts (xy 294.64 114.3) (xy 384.81 114.3))
  955. (stroke (width 0) (type default) (color 0 0 0 0))
  956. (uuid 46cbe85d-ff47-428e-b187-4ebd50a66e0c)
  957. )
  958. (wire (pts (xy 314.96 173.99) (xy 299.72 173.99))
  959. (stroke (width 0) (type default) (color 0 0 0 0))
  960. (uuid 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd)
  961. )
  962. (wire (pts (xy 325.12 213.36) (xy 326.39 213.36))
  963. (stroke (width 0) (type default) (color 0 0 0 0))
  964. (uuid 52a8f1be-73ca-41a8-bc24-2320706b0ec1)
  965. )
  966. (wire (pts (xy 218.44 114.3) (xy 236.22 114.3))
  967. (stroke (width 0) (type default) (color 0 0 0 0))
  968. (uuid 53e34696-241f-47e5-a477-f469335c8a61)
  969. )
  970. (wire (pts (xy 293.37 186.69) (xy 293.37 116.84))
  971. (stroke (width 0) (type default) (color 0 0 0 0))
  972. (uuid 541721d1-074b-496e-a833-813044b3e8ca)
  973. )
  974. (wire (pts (xy 167.64 71.12) (xy 38.1 71.12))
  975. (stroke (width 0) (type default) (color 0 0 0 0))
  976. (uuid 57276367-9ce4-4738-88d7-6e8cb94c966c)
  977. )
  978. (wire (pts (xy 234.95 200.66) (xy 234.95 111.76))
  979. (stroke (width 0) (type default) (color 0 0 0 0))
  980. (uuid 59cb2966-1e9c-4b3b-b3c8-7499378d8dde)
  981. )
  982. (wire (pts (xy 218.44 99.06) (xy 228.6 99.06))
  983. (stroke (width 0) (type default) (color 0 0 0 0))
  984. (uuid 5a222fb6-5159-4931-9015-19df65643140)
  985. )
  986. (wire (pts (xy 167.64 38.1) (xy 38.1 38.1))
  987. (stroke (width 0) (type default) (color 0 0 0 0))
  988. (uuid 5c30b9b4-3014-4f50-9329-27a539b67e01)
  989. )
  990. (wire (pts (xy 200.66 245.11) (xy 38.1 245.11))
  991. (stroke (width 0) (type default) (color 0 0 0 0))
  992. (uuid 5d49e9a6-41dd-4072-adde-ef1036c1979b)
  993. )
  994. (wire (pts (xy 226.06 245.11) (xy 242.57 245.11))
  995. (stroke (width 0) (type default) (color 0 0 0 0))
  996. (uuid 5e7c3a32-8dda-4e6a-9838-c94d1f165575)
  997. )
  998. (wire (pts (xy 242.57 245.11) (xy 242.57 127))
  999. (stroke (width 0) (type default) (color 0 0 0 0))
  1000. (uuid 5f31b97b-d794-46d6-bbd9-7a5638bcf704)
  1001. )
  1002. (wire (pts (xy 213.36 220.98) (xy 213.36 222.25))
  1003. (stroke (width 0) (type default) (color 0 0 0 0))
  1004. (uuid 5f6afe3e-3cb2-473a-819c-dc94ae52a6be)
  1005. )
  1006. (wire (pts (xy 237.49 205.74) (xy 237.49 116.84))
  1007. (stroke (width 0) (type default) (color 0 0 0 0))
  1008. (uuid 5ff19d63-2cb4-438b-93c4-e66d37a05329)
  1009. )
  1010. (wire (pts (xy 167.64 83.82) (xy 38.1 83.82))
  1011. (stroke (width 0) (type default) (color 0 0 0 0))
  1012. (uuid 60aa0ce8-9d0e-48ca-bbf9-866403979e9b)
  1013. )
  1014. (wire (pts (xy 238.76 119.38) (xy 238.76 237.49))
  1015. (stroke (width 0) (type default) (color 0 0 0 0))
  1016. (uuid 616287d9-a51f-498c-8b91-be46a0aa3a7f)
  1017. )
  1018. (wire (pts (xy 218.44 66.04) (xy 384.81 66.04))
  1019. (stroke (width 0) (type default) (color 0 0 0 0))
  1020. (uuid 6241e6d3-a754-45b6-9f7c-e43019b93226)
  1021. )
  1022. (wire (pts (xy 218.44 83.82) (xy 384.81 83.82))
  1023. (stroke (width 0) (type default) (color 0 0 0 0))
  1024. (uuid 626679e8-6101-4722-ac57-5b8d9dab4c8b)
  1025. )
  1026. (wire (pts (xy 218.44 121.92) (xy 240.03 121.92))
  1027. (stroke (width 0) (type default) (color 0 0 0 0))
  1028. (uuid 6325c32f-c82a-4357-b022-f9c7e76f412e)
  1029. )
  1030. (wire (pts (xy 231.14 193.04) (xy 231.14 104.14))
  1031. (stroke (width 0) (type default) (color 0 0 0 0))
  1032. (uuid 633292d3-80c5-4986-be82-ce926e9f09f4)
  1033. )
  1034. (wire (pts (xy 226.06 205.74) (xy 237.49 205.74))
  1035. (stroke (width 0) (type default) (color 0 0 0 0))
  1036. (uuid 637f12be-fa48-4ce4-96b2-04c21a8795c8)
  1037. )
  1038. (wire (pts (xy 283.21 137.16) (xy 384.81 137.16))
  1039. (stroke (width 0) (type default) (color 0 0 0 0))
  1040. (uuid 63caf46e-0228-40de-b819-c6bd29dd1711)
  1041. )
  1042. (wire (pts (xy 384.81 43.18) (xy 218.44 43.18))
  1043. (stroke (width 0) (type default) (color 0 0 0 0))
  1044. (uuid 6513181c-0a6a-4560-9a18-17450c36ae2a)
  1045. )
  1046. (wire (pts (xy 218.44 144.78) (xy 384.81 144.78))
  1047. (stroke (width 0) (type default) (color 0 0 0 0))
  1048. (uuid 66bc2bca-dab7-4947-a0ff-403cdaf9fb89)
  1049. )
  1050. (wire (pts (xy 218.44 91.44) (xy 384.81 91.44))
  1051. (stroke (width 0) (type default) (color 0 0 0 0))
  1052. (uuid 691af561-538d-4e8f-a916-26cad45eb7d6)
  1053. )
  1054. (wire (pts (xy 218.44 132.08) (xy 245.11 132.08))
  1055. (stroke (width 0) (type default) (color 0 0 0 0))
  1056. (uuid 6afc19cf-38b4-47a3-bc2b-445b18724310)
  1057. )
  1058. (wire (pts (xy 247.65 137.16) (xy 283.21 137.16))
  1059. (stroke (width 0) (type default) (color 0 0 0 0))
  1060. (uuid 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
  1061. )
  1062. (wire (pts (xy 200.66 187.96) (xy 38.1 187.96))
  1063. (stroke (width 0) (type default) (color 0 0 0 0))
  1064. (uuid 6cb535a7-247d-4f99-997d-c21b160eadfa)
  1065. )
  1066. (wire (pts (xy 226.06 255.27) (xy 247.65 255.27))
  1067. (stroke (width 0) (type default) (color 0 0 0 0))
  1068. (uuid 6cb93665-0bcd-4104-8633-fffd1811eee0)
  1069. )
  1070. (wire (pts (xy 240.03 240.03) (xy 240.03 121.92))
  1071. (stroke (width 0) (type default) (color 0 0 0 0))
  1072. (uuid 701e1517-e8cf-46f4-b538-98e721c97380)
  1073. )
  1074. (wire (pts (xy 300.99 101.6) (xy 384.81 101.6))
  1075. (stroke (width 0) (type default) (color 0 0 0 0))
  1076. (uuid 71af7b65-0e6b-402e-b1a4-b66be507b4dc)
  1077. )
  1078. (wire (pts (xy 323.85 212.09) (xy 323.85 213.36))
  1079. (stroke (width 0) (type default) (color 0 0 0 0))
  1080. (uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48)
  1081. )
  1082. (wire (pts (xy 302.26 168.91) (xy 314.96 168.91))
  1083. (stroke (width 0) (type default) (color 0 0 0 0))
  1084. (uuid 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a)
  1085. )
  1086. (wire (pts (xy 361.95 45.72) (xy 361.95 190.5))
  1087. (stroke (width 0) (type default) (color 0 0 0 0))
  1088. (uuid 759788bd-3cb9-4d38-b58c-5cb10b7dca6b)
  1089. )
  1090. (wire (pts (xy 226.06 193.04) (xy 231.14 193.04))
  1091. (stroke (width 0) (type default) (color 0 0 0 0))
  1092. (uuid 7744b6ee-910d-401d-b730-65c35d3d8092)
  1093. )
  1094. (wire (pts (xy 287.02 199.39) (xy 314.96 199.39))
  1095. (stroke (width 0) (type default) (color 0 0 0 0))
  1096. (uuid 78b44915-d68e-4488-a873-34767153ef98)
  1097. )
  1098. (wire (pts (xy 193.04 154.94) (xy 193.04 156.21))
  1099. (stroke (width 0) (type default) (color 0 0 0 0))
  1100. (uuid 79476267-290e-445f-995b-0afd0e11a4b5)
  1101. )
  1102. (wire (pts (xy 38.1 262.89) (xy 200.66 262.89))
  1103. (stroke (width 0) (type default) (color 0 0 0 0))
  1104. (uuid 7acd513a-187b-4936-9f93-2e521ce33ad5)
  1105. )
  1106. (wire (pts (xy 323.85 213.36) (xy 325.12 213.36))
  1107. (stroke (width 0) (type default) (color 0 0 0 0))
  1108. (uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e)
  1109. )
  1110. (wire (pts (xy 38.1 193.04) (xy 200.66 193.04))
  1111. (stroke (width 0) (type default) (color 0 0 0 0))
  1112. (uuid 7c5f3091-7791-43b3-8d50-43f6a72274c9)
  1113. )
  1114. (wire (pts (xy 218.44 93.98) (xy 384.81 93.98))
  1115. (stroke (width 0) (type default) (color 0 0 0 0))
  1116. (uuid 7ce7415d-7c22-49f6-8215-488853ccc8c6)
  1117. )
  1118. (wire (pts (xy 218.44 63.5) (xy 384.81 63.5))
  1119. (stroke (width 0) (type default) (color 0 0 0 0))
  1120. (uuid 7d0dab95-9e7a-486e-a1d7-fc48860fd57d)
  1121. )
  1122. (wire (pts (xy 38.1 252.73) (xy 200.66 252.73))
  1123. (stroke (width 0) (type default) (color 0 0 0 0))
  1124. (uuid 7f9683c1-2203-43df-8fa1-719a0dc360df)
  1125. )
  1126. (wire (pts (xy 193.04 33.02) (xy 193.04 31.75))
  1127. (stroke (width 0) (type default) (color 0 0 0 0))
  1128. (uuid 83c5181e-f5ee-453c-ae5c-d7256ba8837d)
  1129. )
  1130. (wire (pts (xy 218.44 129.54) (xy 243.84 129.54))
  1131. (stroke (width 0) (type default) (color 0 0 0 0))
  1132. (uuid 84d296ba-3d39-4264-ad19-947f90c54396)
  1133. )
  1134. (wire (pts (xy 245.11 250.19) (xy 245.11 132.08))
  1135. (stroke (width 0) (type default) (color 0 0 0 0))
  1136. (uuid 84d4e166-b429-409a-ab37-c6a10fd82ff5)
  1137. )
  1138. (wire (pts (xy 213.36 270.51) (xy 213.36 271.78))
  1139. (stroke (width 0) (type default) (color 0 0 0 0))
  1140. (uuid 86ad0555-08b3-4dde-9a3e-c1e5e29b6615)
  1141. )
  1142. (wire (pts (xy 299.72 173.99) (xy 299.72 104.14))
  1143. (stroke (width 0) (type default) (color 0 0 0 0))
  1144. (uuid 86e98417-f5e4-48ba-8147-ef66cc03dde6)
  1145. )
  1146. (wire (pts (xy 38.1 242.57) (xy 200.66 242.57))
  1147. (stroke (width 0) (type default) (color 0 0 0 0))
  1148. (uuid 87a1984f-543d-4f2e-ad8a-7a3a24ee6047)
  1149. )
  1150. (wire (pts (xy 218.44 109.22) (xy 233.68 109.22))
  1151. (stroke (width 0) (type default) (color 0 0 0 0))
  1152. (uuid 88002554-c459-46e5-8b22-6ea6fe07fd4c)
  1153. )
  1154. (wire (pts (xy 226.06 198.12) (xy 233.68 198.12))
  1155. (stroke (width 0) (type default) (color 0 0 0 0))
  1156. (uuid 89c9afdc-c346-4300-a392-5f9dd8c1e5bd)
  1157. )
  1158. (wire (pts (xy 200.66 195.58) (xy 38.1 195.58))
  1159. (stroke (width 0) (type default) (color 0 0 0 0))
  1160. (uuid 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e)
  1161. )
  1162. (wire (pts (xy 295.91 181.61) (xy 314.96 181.61))
  1163. (stroke (width 0) (type default) (color 0 0 0 0))
  1164. (uuid 8aeae536-fd36-430e-be47-1a856eced2fc)
  1165. )
  1166. (wire (pts (xy 193.04 156.21) (xy 194.31 156.21))
  1167. (stroke (width 0) (type default) (color 0 0 0 0))
  1168. (uuid 8b290a17-6328-4178-9131-29524d345539)
  1169. )
  1170. (wire (pts (xy 233.68 198.12) (xy 233.68 109.22))
  1171. (stroke (width 0) (type default) (color 0 0 0 0))
  1172. (uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39)
  1173. )
  1174. (wire (pts (xy 298.45 106.68) (xy 298.45 176.53))
  1175. (stroke (width 0) (type default) (color 0 0 0 0))
  1176. (uuid 8bd46048-cab7-4adf-af9a-bc2710c1894c)
  1177. )
  1178. (wire (pts (xy 200.66 240.03) (xy 38.1 240.03))
  1179. (stroke (width 0) (type default) (color 0 0 0 0))
  1180. (uuid 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6)
  1181. )
  1182. (wire (pts (xy 218.44 111.76) (xy 234.95 111.76))
  1183. (stroke (width 0) (type default) (color 0 0 0 0))
  1184. (uuid 8cdc8ef9-532e-4bf5-9998-7213b9e692a2)
  1185. )
  1186. (wire (pts (xy 325.12 213.36) (xy 325.12 214.63))
  1187. (stroke (width 0) (type default) (color 0 0 0 0))
  1188. (uuid 8efee08b-b92e-4ba6-8722-c058e18114fe)
  1189. )
  1190. (wire (pts (xy 314.96 179.07) (xy 297.18 179.07))
  1191. (stroke (width 0) (type default) (color 0 0 0 0))
  1192. (uuid 92848721-49b5-4e4c-b042-6fd51e1d562f)
  1193. )
  1194. (wire (pts (xy 38.1 114.3) (xy 167.64 114.3))
  1195. (stroke (width 0) (type default) (color 0 0 0 0))
  1196. (uuid 9286cf02-1563-41d2-9931-c192c33bab31)
  1197. )
  1198. (wire (pts (xy 218.44 116.84) (xy 237.49 116.84))
  1199. (stroke (width 0) (type default) (color 0 0 0 0))
  1200. (uuid 9390234f-bf3f-46cd-b6a0-8a438ec76e9f)
  1201. )
  1202. (wire (pts (xy 218.44 149.86) (xy 384.81 149.86))
  1203. (stroke (width 0) (type default) (color 0 0 0 0))
  1204. (uuid 955cc99e-a129-42cf-abc7-aa99813fdb5f)
  1205. )
  1206. (wire (pts (xy 167.64 127) (xy 38.1 127))
  1207. (stroke (width 0) (type default) (color 0 0 0 0))
  1208. (uuid 9565d2ee-a4f1-4d08-b2c9-0264233a0d2b)
  1209. )
  1210. (wire (pts (xy 38.1 55.88) (xy 167.64 55.88))
  1211. (stroke (width 0) (type default) (color 0 0 0 0))
  1212. (uuid 96de0051-7945-413a-9219-1ab367546962)
  1213. )
  1214. (wire (pts (xy 38.1 198.12) (xy 200.66 198.12))
  1215. (stroke (width 0) (type default) (color 0 0 0 0))
  1216. (uuid 97dcf785-3264-40a1-a36e-8842acab24fb)
  1217. )
  1218. (wire (pts (xy 213.36 228.6) (xy 213.36 229.87))
  1219. (stroke (width 0) (type default) (color 0 0 0 0))
  1220. (uuid 98970bf0-1168-4b4e-a1c9-3b0c8d7eaacf)
  1221. )
  1222. (wire (pts (xy 298.45 176.53) (xy 314.96 176.53))
  1223. (stroke (width 0) (type default) (color 0 0 0 0))
  1224. (uuid 992a2b00-5e28-4edd-88b5-994891512d8d)
  1225. )
  1226. (wire (pts (xy 229.87 101.6) (xy 300.99 101.6))
  1227. (stroke (width 0) (type default) (color 0 0 0 0))
  1228. (uuid 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7)
  1229. )
  1230. (wire (pts (xy 167.64 45.72) (xy 38.1 45.72))
  1231. (stroke (width 0) (type default) (color 0 0 0 0))
  1232. (uuid 9a2d648d-863a-4b7b-80f9-d537185c212b)
  1233. )
  1234. (wire (pts (xy 289.56 194.31) (xy 314.96 194.31))
  1235. (stroke (width 0) (type default) (color 0 0 0 0))
  1236. (uuid 9a8ad8bb-d9a9-4b2b-bc88-ea6fd2676d45)
  1237. )
  1238. (wire (pts (xy 218.44 147.32) (xy 384.81 147.32))
  1239. (stroke (width 0) (type default) (color 0 0 0 0))
  1240. (uuid 9b6bb172-1ac4-440a-ac75-c1917d9d59c7)
  1241. )
  1242. (wire (pts (xy 243.84 129.54) (xy 287.02 129.54))
  1243. (stroke (width 0) (type default) (color 0 0 0 0))
  1244. (uuid 9db16341-dac0-4aab-9c62-7d88c111c1ce)
  1245. )
  1246. (wire (pts (xy 218.44 119.38) (xy 238.76 119.38))
  1247. (stroke (width 0) (type default) (color 0 0 0 0))
  1248. (uuid 9e813ec2-d4ce-4e2e-b379-c6fedb4c45db)
  1249. )
  1250. (wire (pts (xy 218.44 78.74) (xy 384.81 78.74))
  1251. (stroke (width 0) (type default) (color 0 0 0 0))
  1252. (uuid 9f782c92-a5e8-49db-bfda-752b35522ce4)
  1253. )
  1254. (wire (pts (xy 226.06 190.5) (xy 229.87 190.5))
  1255. (stroke (width 0) (type default) (color 0 0 0 0))
  1256. (uuid a25b7e01-1754-4cc9-8a14-3d9c461e5af5)
  1257. )
  1258. (wire (pts (xy 290.83 121.92) (xy 384.81 121.92))
  1259. (stroke (width 0) (type default) (color 0 0 0 0))
  1260. (uuid a5362821-c161-4c7a-a00c-40e1d7472d56)
  1261. )
  1262. (wire (pts (xy 238.76 237.49) (xy 226.06 237.49))
  1263. (stroke (width 0) (type default) (color 0 0 0 0))
  1264. (uuid a599509f-fbb9-4db4-9adf-9e96bab1138d)
  1265. )
  1266. (wire (pts (xy 218.44 55.88) (xy 384.81 55.88))
  1267. (stroke (width 0) (type default) (color 0 0 0 0))
  1268. (uuid a7f25f41-0b4c-4430-b6cd-b2160b2db099)
  1269. )
  1270. (wire (pts (xy 246.38 252.73) (xy 246.38 134.62))
  1271. (stroke (width 0) (type default) (color 0 0 0 0))
  1272. (uuid a7f2e97b-29f3-44fd-bf8a-97a3c1528b61)
  1273. )
  1274. (wire (pts (xy 218.44 127) (xy 242.57 127))
  1275. (stroke (width 0) (type default) (color 0 0 0 0))
  1276. (uuid a90361cd-254c-4d27-ae1f-9a6c85bafe28)
  1277. )
  1278. (wire (pts (xy 285.75 201.93) (xy 314.96 201.93))
  1279. (stroke (width 0) (type default) (color 0 0 0 0))
  1280. (uuid a917c6d9-225d-4c90-bf25-fe8eff8abd3f)
  1281. )
  1282. (wire (pts (xy 237.49 116.84) (xy 293.37 116.84))
  1283. (stroke (width 0) (type default) (color 0 0 0 0))
  1284. (uuid aa047297-22f8-4de0-a969-0b3451b8e164)
  1285. )
  1286. (wire (pts (xy 241.3 124.46) (xy 289.56 124.46))
  1287. (stroke (width 0) (type default) (color 0 0 0 0))
  1288. (uuid ab8b0540-9c9f-4195-88f5-7bed0b0a8ed6)
  1289. )
  1290. (wire (pts (xy 200.66 250.19) (xy 38.1 250.19))
  1291. (stroke (width 0) (type default) (color 0 0 0 0))
  1292. (uuid b0054ce1-b60e-41de-a6a2-bf712784dd39)
  1293. )
  1294. (wire (pts (xy 233.68 109.22) (xy 297.18 109.22))
  1295. (stroke (width 0) (type default) (color 0 0 0 0))
  1296. (uuid b0b4c3cb-e7ea-49c0-8162-be3bbab3e4ec)
  1297. )
  1298. (wire (pts (xy 285.75 132.08) (xy 384.81 132.08))
  1299. (stroke (width 0) (type default) (color 0 0 0 0))
  1300. (uuid b54cae5b-c17c-4ed7-b249-2e7d5e83609a)
  1301. )
  1302. (wire (pts (xy 218.44 88.9) (xy 384.81 88.9))
  1303. (stroke (width 0) (type default) (color 0 0 0 0))
  1304. (uuid b59f18ce-2e34-4b6e-b14d-8d73b8268179)
  1305. )
  1306. (wire (pts (xy 232.41 106.68) (xy 298.45 106.68))
  1307. (stroke (width 0) (type default) (color 0 0 0 0))
  1308. (uuid b794d099-f823-4d35-9755-ca1c45247ee9)
  1309. )
  1310. (wire (pts (xy 292.1 119.38) (xy 384.81 119.38))
  1311. (stroke (width 0) (type default) (color 0 0 0 0))
  1312. (uuid b7aa0362-7c9e-4a42-b191-ab15a38bf3c5)
  1313. )
  1314. (wire (pts (xy 218.44 86.36) (xy 384.81 86.36))
  1315. (stroke (width 0) (type default) (color 0 0 0 0))
  1316. (uuid b7bf6e08-7978-4190-aff5-c90d967f0f9c)
  1317. )
  1318. (wire (pts (xy 242.57 127) (xy 288.29 127))
  1319. (stroke (width 0) (type default) (color 0 0 0 0))
  1320. (uuid b7d06af4-a5b1-447f-9b1a-8b44eb1cc204)
  1321. )
  1322. (wire (pts (xy 232.41 195.58) (xy 232.41 106.68))
  1323. (stroke (width 0) (type default) (color 0 0 0 0))
  1324. (uuid b854a395-bfc6-4140-9640-75d4f9296771)
  1325. )
  1326. (wire (pts (xy 218.44 53.34) (xy 384.81 53.34))
  1327. (stroke (width 0) (type default) (color 0 0 0 0))
  1328. (uuid b8b961e9-8a60-45fc-999a-a7a3baff4e0d)
  1329. )
  1330. (wire (pts (xy 38.1 124.46) (xy 167.64 124.46))
  1331. (stroke (width 0) (type default) (color 0 0 0 0))
  1332. (uuid ba6fc20e-7eff-4d5f-81e4-d1fad93be155)
  1333. )
  1334. (wire (pts (xy 243.84 247.65) (xy 226.06 247.65))
  1335. (stroke (width 0) (type default) (color 0 0 0 0))
  1336. (uuid bac7c5b3-99df-445a-ade9-1e608bbbe27e)
  1337. )
  1338. (wire (pts (xy 363.22 193.04) (xy 363.22 48.26))
  1339. (stroke (width 0) (type default) (color 0 0 0 0))
  1340. (uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
  1341. )
  1342. (wire (pts (xy 295.91 111.76) (xy 295.91 181.61))
  1343. (stroke (width 0) (type default) (color 0 0 0 0))
  1344. (uuid bc3b3f93-69e0-44a5-b919-319b81d13095)
  1345. )
  1346. (wire (pts (xy 167.64 109.22) (xy 38.1 109.22))
  1347. (stroke (width 0) (type default) (color 0 0 0 0))
  1348. (uuid bde95c06-433a-4c03-bc48-e3abcdb4e054)
  1349. )
  1350. (wire (pts (xy 167.64 68.58) (xy 38.1 68.58))
  1351. (stroke (width 0) (type default) (color 0 0 0 0))
  1352. (uuid bdf40d30-88ff-4479-bad1-69529464b61b)
  1353. )
  1354. (wire (pts (xy 200.66 260.35) (xy 195.58 260.35))
  1355. (stroke (width 0) (type default) (color 0 0 0 0))
  1356. (uuid be2983fa-f06e-485e-bea1-3dd96b916ec5)
  1357. )
  1358. (wire (pts (xy 241.3 242.57) (xy 226.06 242.57))
  1359. (stroke (width 0) (type default) (color 0 0 0 0))
  1360. (uuid be41ac9e-b8ba-4089-983b-b84269707f1c)
  1361. )
  1362. (wire (pts (xy 246.38 134.62) (xy 284.48 134.62))
  1363. (stroke (width 0) (type default) (color 0 0 0 0))
  1364. (uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
  1365. )
  1366. (wire (pts (xy 297.18 179.07) (xy 297.18 109.22))
  1367. (stroke (width 0) (type default) (color 0 0 0 0))
  1368. (uuid c07eebcc-30d2-439d-8030-faea6ade4486)
  1369. )
  1370. (wire (pts (xy 195.58 182.88) (xy 38.1 182.88))
  1371. (stroke (width 0) (type default) (color 0 0 0 0))
  1372. (uuid c873689a-d206-42f5-aead-9199b4d63f51)
  1373. )
  1374. (wire (pts (xy 218.44 68.58) (xy 384.81 68.58))
  1375. (stroke (width 0) (type default) (color 0 0 0 0))
  1376. (uuid c8a44971-63c1-4a19-879d-b6647b2dc08d)
  1377. )
  1378. (wire (pts (xy 38.1 247.65) (xy 200.66 247.65))
  1379. (stroke (width 0) (type default) (color 0 0 0 0))
  1380. (uuid c8ab8246-b2bb-4b06-b45e-2548482466fd)
  1381. )
  1382. (wire (pts (xy 194.31 31.75) (xy 194.31 30.48))
  1383. (stroke (width 0) (type default) (color 0 0 0 0))
  1384. (uuid ca5b6af8-ca05-4338-b852-b51f2b49b1db)
  1385. )
  1386. (wire (pts (xy 289.56 124.46) (xy 384.81 124.46))
  1387. (stroke (width 0) (type default) (color 0 0 0 0))
  1388. (uuid ca6e2466-a90a-4dab-be16-b070610e5087)
  1389. )
  1390. (wire (pts (xy 236.22 203.2) (xy 236.22 114.3))
  1391. (stroke (width 0) (type default) (color 0 0 0 0))
  1392. (uuid cbebc05a-c4dd-4baf-8c08-196e84e08b27)
  1393. )
  1394. (wire (pts (xy 228.6 99.06) (xy 302.26 99.06))
  1395. (stroke (width 0) (type default) (color 0 0 0 0))
  1396. (uuid cc75e5ae-3348-4e7a-bd16-4df685ee47bd)
  1397. )
  1398. (wire (pts (xy 218.44 81.28) (xy 384.81 81.28))
  1399. (stroke (width 0) (type default) (color 0 0 0 0))
  1400. (uuid ccc4cc25-ac17-45ef-825c-e079951ffb21)
  1401. )
  1402. (wire (pts (xy 195.58 210.82) (xy 195.58 182.88))
  1403. (stroke (width 0) (type default) (color 0 0 0 0))
  1404. (uuid cee2f43a-7d22-4585-a857-73949bd17a9d)
  1405. )
  1406. (wire (pts (xy 213.36 179.07) (xy 213.36 180.34))
  1407. (stroke (width 0) (type default) (color 0 0 0 0))
  1408. (uuid cf21dfe3-ab4f-4ad9-b7cf-dc892d833b13)
  1409. )
  1410. (wire (pts (xy 218.44 38.1) (xy 384.81 38.1))
  1411. (stroke (width 0) (type default) (color 0 0 0 0))
  1412. (uuid cf815d51-c956-4c5a-adde-c373cb025b07)
  1413. )
  1414. (wire (pts (xy 218.44 137.16) (xy 247.65 137.16))
  1415. (stroke (width 0) (type default) (color 0 0 0 0))
  1416. (uuid d01102e9-b170-4eb1-a0a4-9a31feb850b7)
  1417. )
  1418. (wire (pts (xy 226.06 195.58) (xy 232.41 195.58))
  1419. (stroke (width 0) (type default) (color 0 0 0 0))
  1420. (uuid d0cd3439-276c-41ba-b38d-f84f6da38415)
  1421. )
  1422. (wire (pts (xy 285.75 132.08) (xy 285.75 201.93))
  1423. (stroke (width 0) (type default) (color 0 0 0 0))
  1424. (uuid d13b0eae-4711-4325-a6bb-aa8e3646e86e)
  1425. )
  1426. (wire (pts (xy 288.29 127) (xy 288.29 196.85))
  1427. (stroke (width 0) (type default) (color 0 0 0 0))
  1428. (uuid d18f2428-546f-4066-8ffb-7653303685db)
  1429. )
  1430. (wire (pts (xy 288.29 196.85) (xy 314.96 196.85))
  1431. (stroke (width 0) (type default) (color 0 0 0 0))
  1432. (uuid d95c6650-fcd9-4184-97fe-fde43ea5c0cd)
  1433. )
  1434. (wire (pts (xy 218.44 76.2) (xy 384.81 76.2))
  1435. (stroke (width 0) (type default) (color 0 0 0 0))
  1436. (uuid da6f4122-0ecc-496f-b0fd-e4abef534976)
  1437. )
  1438. (wire (pts (xy 298.45 106.68) (xy 384.81 106.68))
  1439. (stroke (width 0) (type default) (color 0 0 0 0))
  1440. (uuid db1ed10a-ef86-43bf-93dc-9be76327f6d2)
  1441. )
  1442. (wire (pts (xy 240.03 121.92) (xy 290.83 121.92))
  1443. (stroke (width 0) (type default) (color 0 0 0 0))
  1444. (uuid db851147-6a1e-4d19-898c-0ba71182359b)
  1445. )
  1446. (wire (pts (xy 335.28 184.15) (xy 384.81 184.15))
  1447. (stroke (width 0) (type default) (color 0 0 0 0))
  1448. (uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018)
  1449. )
  1450. (wire (pts (xy 200.66 255.27) (xy 38.1 255.27))
  1451. (stroke (width 0) (type default) (color 0 0 0 0))
  1452. (uuid dc1d84c8-33da-4489-be8e-2a1de3001779)
  1453. )
  1454. (wire (pts (xy 194.31 156.21) (xy 194.31 157.48))
  1455. (stroke (width 0) (type default) (color 0 0 0 0))
  1456. (uuid dca1d7db-c913-4d73-a2cc-fdc9651eda69)
  1457. )
  1458. (wire (pts (xy 290.83 121.92) (xy 290.83 191.77))
  1459. (stroke (width 0) (type default) (color 0 0 0 0))
  1460. (uuid dd1edfbb-5fb6-42cd-b740-fd54ab3ef1f1)
  1461. )
  1462. (wire (pts (xy 231.14 104.14) (xy 299.72 104.14))
  1463. (stroke (width 0) (type default) (color 0 0 0 0))
  1464. (uuid de370984-7922-4327-a0ba-7cd613995df4)
  1465. )
  1466. (wire (pts (xy 236.22 114.3) (xy 294.64 114.3))
  1467. (stroke (width 0) (type default) (color 0 0 0 0))
  1468. (uuid df3dc9a2-ba40-4c3a-87fe-61cc8e23d71b)
  1469. )
  1470. (wire (pts (xy 247.65 255.27) (xy 247.65 137.16))
  1471. (stroke (width 0) (type default) (color 0 0 0 0))
  1472. (uuid e0830067-5b66-4ce1-b2d1-aaa8af20baf7)
  1473. )
  1474. (wire (pts (xy 167.64 73.66) (xy 38.1 73.66))
  1475. (stroke (width 0) (type default) (color 0 0 0 0))
  1476. (uuid e5217a0c-7f55-4c30-adda-7f8d95709d1b)
  1477. )
  1478. (wire (pts (xy 297.18 109.22) (xy 384.81 109.22))
  1479. (stroke (width 0) (type default) (color 0 0 0 0))
  1480. (uuid e65bab67-68b7-4b22-a939-6f2c05164d2a)
  1481. )
  1482. (wire (pts (xy 300.99 171.45) (xy 300.99 101.6))
  1483. (stroke (width 0) (type default) (color 0 0 0 0))
  1484. (uuid e69c64f9-717d-4a97-b3df-80325ec2fa63)
  1485. )
  1486. (wire (pts (xy 299.72 104.14) (xy 384.81 104.14))
  1487. (stroke (width 0) (type default) (color 0 0 0 0))
  1488. (uuid e70d061b-28f0-4421-ad15-0598604086e8)
  1489. )
  1490. (wire (pts (xy 287.02 129.54) (xy 287.02 199.39))
  1491. (stroke (width 0) (type default) (color 0 0 0 0))
  1492. (uuid e76ec524-408a-4daa-89f6-0edfdbcfb621)
  1493. )
  1494. (wire (pts (xy 238.76 119.38) (xy 292.1 119.38))
  1495. (stroke (width 0) (type default) (color 0 0 0 0))
  1496. (uuid e79c8e11-ed47-4701-ae80-a54cdb6682a5)
  1497. )
  1498. (wire (pts (xy 234.95 111.76) (xy 295.91 111.76))
  1499. (stroke (width 0) (type default) (color 0 0 0 0))
  1500. (uuid e87a6f80-914f-4f62-9c9f-9ba62a88ee3d)
  1501. )
  1502. (wire (pts (xy 194.31 31.75) (xy 195.58 31.75))
  1503. (stroke (width 0) (type default) (color 0 0 0 0))
  1504. (uuid ea2ea877-1ce1-4cd6-ad19-1da87f51601d)
  1505. )
  1506. (wire (pts (xy 228.6 187.96) (xy 228.6 99.06))
  1507. (stroke (width 0) (type default) (color 0 0 0 0))
  1508. (uuid eac8d865-0226-4958-b547-6b5592f39713)
  1509. )
  1510. (wire (pts (xy 167.64 48.26) (xy 38.1 48.26))
  1511. (stroke (width 0) (type default) (color 0 0 0 0))
  1512. (uuid eb8d02e9-145c-465d-b6a8-bae84d47a94b)
  1513. )
  1514. (wire (pts (xy 283.21 137.16) (xy 283.21 207.01))
  1515. (stroke (width 0) (type default) (color 0 0 0 0))
  1516. (uuid ef4533db-6ea4-4b68-b436-8e9575be570d)
  1517. )
  1518. (wire (pts (xy 218.44 73.66) (xy 384.81 73.66))
  1519. (stroke (width 0) (type default) (color 0 0 0 0))
  1520. (uuid f1782535-55f4-4299-bd4f-6f51b0b7259c)
  1521. )
  1522. (wire (pts (xy 218.44 142.24) (xy 384.81 142.24))
  1523. (stroke (width 0) (type default) (color 0 0 0 0))
  1524. (uuid f1e619ac-5067-41df-8384-776ec70a6093)
  1525. )
  1526. (wire (pts (xy 226.06 187.96) (xy 228.6 187.96))
  1527. (stroke (width 0) (type default) (color 0 0 0 0))
  1528. (uuid f2480d0c-9b08-4037-9175-b2369af04d4c)
  1529. )
  1530. (wire (pts (xy 218.44 50.8) (xy 384.81 50.8))
  1531. (stroke (width 0) (type default) (color 0 0 0 0))
  1532. (uuid f357ddb5-3f44-43b0-b00d-d64f5c62ba4a)
  1533. )
  1534. (wire (pts (xy 361.95 45.72) (xy 384.81 45.72))
  1535. (stroke (width 0) (type default) (color 0 0 0 0))
  1536. (uuid f447e585-df78-4239-b8cb-4653b3837bb1)
  1537. )
  1538. (wire (pts (xy 363.22 48.26) (xy 384.81 48.26))
  1539. (stroke (width 0) (type default) (color 0 0 0 0))
  1540. (uuid f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
  1541. )
  1542. (wire (pts (xy 288.29 127) (xy 384.81 127))
  1543. (stroke (width 0) (type default) (color 0 0 0 0))
  1544. (uuid f4a1ab68-998b-43e3-aa33-40b58210bc99)
  1545. )
  1546. (wire (pts (xy 200.66 190.5) (xy 38.1 190.5))
  1547. (stroke (width 0) (type default) (color 0 0 0 0))
  1548. (uuid f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd)
  1549. )
  1550. (wire (pts (xy 283.21 207.01) (xy 314.96 207.01))
  1551. (stroke (width 0) (type default) (color 0 0 0 0))
  1552. (uuid f5dba25f-5f9b-4770-84f9-c038fb119360)
  1553. )
  1554. (wire (pts (xy 195.58 31.75) (xy 195.58 33.02))
  1555. (stroke (width 0) (type default) (color 0 0 0 0))
  1556. (uuid f699494a-77d6-4c73-bd50-29c1c1c5b879)
  1557. )
  1558. (wire (pts (xy 167.64 60.96) (xy 38.1 60.96))
  1559. (stroke (width 0) (type default) (color 0 0 0 0))
  1560. (uuid f8bd6470-fafd-47f2-8ed5-9449988187ce)
  1561. )
  1562. (wire (pts (xy 294.64 114.3) (xy 294.64 184.15))
  1563. (stroke (width 0) (type default) (color 0 0 0 0))
  1564. (uuid fa20e708-ec85-4e0b-8402-f74a2724f920)
  1565. )
  1566. (wire (pts (xy 295.91 111.76) (xy 384.81 111.76))
  1567. (stroke (width 0) (type default) (color 0 0 0 0))
  1568. (uuid fb35e3b1-aff6-41a7-9cf0-52694b95edeb)
  1569. )
  1570. (wire (pts (xy 335.28 176.53) (xy 384.81 176.53))
  1571. (stroke (width 0) (type default) (color 0 0 0 0))
  1572. (uuid fc4ad874-c922-4070-89f9-7262080469d8)
  1573. )
  1574. (wire (pts (xy 284.48 204.47) (xy 314.96 204.47))
  1575. (stroke (width 0) (type default) (color 0 0 0 0))
  1576. (uuid fd5f7d77-0f73-4021-88a8-0641f0fe8d98)
  1577. )
  1578. (wire (pts (xy 218.44 134.62) (xy 246.38 134.62))
  1579. (stroke (width 0) (type default) (color 0 0 0 0))
  1580. (uuid fe14c012-3d58-4e5e-9a37-4b9765a7f764)
  1581. )
  1582. (text "10MHz" (at 377.19 176.53 0)
  1583. (effects (font (size 1.27 1.27)) (justify left bottom))
  1584. (uuid 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa)
  1585. )
  1586. (text "CPU DATA" (at 367.03 35.56 0)
  1587. (effects (font (size 1.27 1.27)) (justify left bottom))
  1588. (uuid 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b)
  1589. )
  1590. (text "DRAM DATA, ECC-CHECK" (at 39.37 179.07 0)
  1591. (effects (font (size 1.27 1.27)) (justify left bottom))
  1592. (uuid a7fc0812-140f-4d96-9cd8-ead8c1c610b1)
  1593. )
  1594. (global_label "~{BR0}" (shape input) (at 38.1 60.96 180) (fields_autoplaced)
  1595. (effects (font (size 0.9906 0.9906)) (justify right))
  1596. (uuid 011ee658-718d-416a-85fd-961729cd1ee5)
  1597. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.3627 60.8981 0)
  1598. (effects (font (size 0.9906 0.9906)) (justify right) hide)
  1599. )
  1600. )
  1601. (global_label "~{IPL2}" (shape input) (at 38.1 50.8 180) (fields_autoplaced)
  1602. (effects (font (size 0.9906 0.9906)) (justify right))
  1603. (uuid 0a1a4d88-972a-46ce-b25e-6cb796bd41f7)
  1604. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1605. (effects (font (size 1.27 1.27)) hide)
  1606. )
  1607. )
  1608. (global_label "MD8" (shape input) (at 38.1 237.49 180) (fields_autoplaced)
  1609. (effects (font (size 0.9906 0.9906)) (justify right))
  1610. (uuid 0b9f21ed-3d41-4f23-ae45-74117a5f3153)
  1611. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1612. (effects (font (size 1.27 1.27)) hide)
  1613. )
  1614. )
  1615. (global_label "MD12" (shape input) (at 38.1 247.65 180) (fields_autoplaced)
  1616. (effects (font (size 0.9906 0.9906)) (justify right))
  1617. (uuid 10d8ad0e-6a08-4053-92aa-23a15910fd21)
  1618. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1619. (effects (font (size 1.27 1.27)) hide)
  1620. )
  1621. )
  1622. (global_label "~{BERR}" (shape input) (at 38.1 109.22 180) (fields_autoplaced)
  1623. (effects (font (size 0.9906 0.9906)) (justify right))
  1624. (uuid 18c61c95-8af1-4986-b67e-c7af9c15ab6b)
  1625. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1626. (effects (font (size 1.27 1.27)) hide)
  1627. )
  1628. )
  1629. (global_label "D7" (shape input) (at 384.81 116.84 0) (fields_autoplaced)
  1630. (effects (font (size 1.27 1.27)) (justify left))
  1631. (uuid 1dfbf353-5b24-4c0f-8322-8fcd514ae75e)
  1632. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1633. (effects (font (size 1.27 1.27)) hide)
  1634. )
  1635. )
  1636. (global_label "A10" (shape input) (at 384.81 60.96 0) (fields_autoplaced)
  1637. (effects (font (size 1.27 1.27)) (justify left))
  1638. (uuid 1e48966e-d29d-4521-8939-ec8ac570431d)
  1639. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1640. (effects (font (size 1.27 1.27)) hide)
  1641. )
  1642. )
  1643. (global_label "~{BGACK}" (shape input) (at 38.1 55.88 180) (fields_autoplaced)
  1644. (effects (font (size 0.9906 0.9906)) (justify right))
  1645. (uuid 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce)
  1646. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1647. (effects (font (size 1.27 1.27)) hide)
  1648. )
  1649. )
  1650. (global_label "A23" (shape input) (at 384.81 93.98 0) (fields_autoplaced)
  1651. (effects (font (size 1.27 1.27)) (justify left))
  1652. (uuid 25bc3602-3fb4-4a04-94e3-21ba22562c24)
  1653. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1654. (effects (font (size 1.27 1.27)) hide)
  1655. )
  1656. )
  1657. (global_label "MD9" (shape input) (at 38.1 240.03 180) (fields_autoplaced)
  1658. (effects (font (size 0.9906 0.9906)) (justify right))
  1659. (uuid 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19)
  1660. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1661. (effects (font (size 1.27 1.27)) hide)
  1662. )
  1663. )
  1664. (global_label "D6" (shape input) (at 384.81 114.3 0) (fields_autoplaced)
  1665. (effects (font (size 1.27 1.27)) (justify left))
  1666. (uuid 2e0a9f64-1b78-4597-8d50-d12d2268a95a)
  1667. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1668. (effects (font (size 1.27 1.27)) hide)
  1669. )
  1670. )
  1671. (global_label "D8" (shape input) (at 384.81 119.38 0) (fields_autoplaced)
  1672. (effects (font (size 1.27 1.27)) (justify left))
  1673. (uuid 337e8520-cbd2-42c0-8d17-743bab17cbbd)
  1674. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1675. (effects (font (size 1.27 1.27)) hide)
  1676. )
  1677. )
  1678. (global_label "MD1" (shape input) (at 38.1 190.5 180) (fields_autoplaced)
  1679. (effects (font (size 0.9906 0.9906)) (justify right))
  1680. (uuid 347562f5-b152-4e7b-8a69-40ca6daaaad4)
  1681. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1682. (effects (font (size 1.27 1.27)) hide)
  1683. )
  1684. )
  1685. (global_label "D3" (shape input) (at 384.81 106.68 0) (fields_autoplaced)
  1686. (effects (font (size 1.27 1.27)) (justify left))
  1687. (uuid 38cfe839-c630-43d3-a9ec-6a89ba9e318a)
  1688. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1689. (effects (font (size 1.27 1.27)) hide)
  1690. )
  1691. )
  1692. (global_label "D15" (shape input) (at 384.81 137.16 0) (fields_autoplaced)
  1693. (effects (font (size 1.27 1.27)) (justify left))
  1694. (uuid 3a41dd27-ec14-44d5-b505-aad1d829f79a)
  1695. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1696. (effects (font (size 1.27 1.27)) hide)
  1697. )
  1698. )
  1699. (global_label "MD15" (shape input) (at 38.1 255.27 180) (fields_autoplaced)
  1700. (effects (font (size 0.9906 0.9906)) (justify right))
  1701. (uuid 3e3d55c8-e0ea-48fb-8421-a84b7cb7055b)
  1702. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1703. (effects (font (size 1.27 1.27)) hide)
  1704. )
  1705. )
  1706. (global_label "FC2" (shape input) (at 38.1 73.66 180) (fields_autoplaced)
  1707. (effects (font (size 0.9906 0.9906)) (justify right))
  1708. (uuid 42ff012d-5eb7-42b9-bb45-415cf26799c6)
  1709. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1710. (effects (font (size 1.27 1.27)) hide)
  1711. )
  1712. )
  1713. (global_label "MD0" (shape input) (at 38.1 187.96 180) (fields_autoplaced)
  1714. (effects (font (size 0.9906 0.9906)) (justify right))
  1715. (uuid 430d6d73-9de6-41ca-b788-178d709f4aae)
  1716. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1717. (effects (font (size 1.27 1.27)) hide)
  1718. )
  1719. )
  1720. (global_label "A7" (shape input) (at 384.81 53.34 0) (fields_autoplaced)
  1721. (effects (font (size 1.27 1.27)) (justify left))
  1722. (uuid 4431c0f6-83ea-4eee-95a8-991da2f03ccd)
  1723. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1724. (effects (font (size 1.27 1.27)) hide)
  1725. )
  1726. )
  1727. (global_label "~{R{slash}W}" (shape input) (at 384.81 149.86 0) (fields_autoplaced)
  1728. (effects (font (size 0.9906 0.9906)) (justify left))
  1729. (uuid 44646447-0a8e-4aec-a74e-22bf765d0f33)
  1730. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 389.7832 149.7981 0)
  1731. (effects (font (size 0.9906 0.9906)) (justify left) hide)
  1732. )
  1733. )
  1734. (global_label "MD11" (shape input) (at 38.1 245.11 180) (fields_autoplaced)
  1735. (effects (font (size 0.9906 0.9906)) (justify right))
  1736. (uuid 475ed8b3-90bf-48cd-bce5-d8f48b689541)
  1737. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1738. (effects (font (size 1.27 1.27)) hide)
  1739. )
  1740. )
  1741. (global_label "D1" (shape input) (at 384.81 101.6 0) (fields_autoplaced)
  1742. (effects (font (size 1.27 1.27)) (justify left))
  1743. (uuid 49575217-40b0-4890-8acf-12982cca52b5)
  1744. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1745. (effects (font (size 1.27 1.27)) hide)
  1746. )
  1747. )
  1748. (global_label "A22" (shape input) (at 384.81 91.44 0) (fields_autoplaced)
  1749. (effects (font (size 1.27 1.27)) (justify left))
  1750. (uuid 4a54c707-7b6f-4a3d-a74d-5e3526114aba)
  1751. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1752. (effects (font (size 1.27 1.27)) hide)
  1753. )
  1754. )
  1755. (global_label "~{MDLE}" (shape input) (at 38.1 213.36 180) (fields_autoplaced)
  1756. (effects (font (size 0.9906 0.9906)) (justify right))
  1757. (uuid 4a7e3849-3bc9-4bb3-b16a-fab2f5cee0e5)
  1758. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1759. (effects (font (size 1.27 1.27)) hide)
  1760. )
  1761. )
  1762. (global_label "~{IPL0}" (shape input) (at 38.1 45.72 180) (fields_autoplaced)
  1763. (effects (font (size 0.9906 0.9906)) (justify right))
  1764. (uuid 4c843bdb-6c9e-40dd-85e2-0567846e18ba)
  1765. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1766. (effects (font (size 1.27 1.27)) hide)
  1767. )
  1768. )
  1769. (global_label "A2" (shape input) (at 384.81 40.64 0) (fields_autoplaced)
  1770. (effects (font (size 1.27 1.27)) (justify left))
  1771. (uuid 501880c3-8633-456f-9add-0e8fa1932ba6)
  1772. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1773. (effects (font (size 1.27 1.27)) hide)
  1774. )
  1775. )
  1776. (global_label "~{UDS}" (shape input) (at 384.81 144.78 0) (fields_autoplaced)
  1777. (effects (font (size 0.9906 0.9906)) (justify left))
  1778. (uuid 5701b80f-f006-4814-81c9-0c7f006088a9)
  1779. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1780. (effects (font (size 1.27 1.27)) hide)
  1781. )
  1782. )
  1783. (global_label "A17" (shape input) (at 384.81 78.74 0) (fields_autoplaced)
  1784. (effects (font (size 1.27 1.27)) (justify left))
  1785. (uuid 576f00e6-a1be-45d3-9b93-e26d9e0fe306)
  1786. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1787. (effects (font (size 1.27 1.27)) hide)
  1788. )
  1789. )
  1790. (global_label "D10" (shape input) (at 384.81 124.46 0) (fields_autoplaced)
  1791. (effects (font (size 1.27 1.27)) (justify left))
  1792. (uuid 59fc765e-1357-4c94-9529-5635418c7d73)
  1793. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1794. (effects (font (size 1.27 1.27)) hide)
  1795. )
  1796. )
  1797. (global_label "FC0" (shape input) (at 38.1 68.58 180) (fields_autoplaced)
  1798. (effects (font (size 0.9906 0.9906)) (justify right))
  1799. (uuid 5b0a5a46-7b51-4262-a80e-d33dd1806615)
  1800. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1801. (effects (font (size 1.27 1.27)) hide)
  1802. )
  1803. )
  1804. (global_label "D13" (shape input) (at 384.81 132.08 0) (fields_autoplaced)
  1805. (effects (font (size 1.27 1.27)) (justify left))
  1806. (uuid 5c7d6eaf-f256-4349-8203-d2e836872231)
  1807. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1808. (effects (font (size 1.27 1.27)) hide)
  1809. )
  1810. )
  1811. (global_label "~{RST}" (shape input) (at 384.81 172.72 0) (fields_autoplaced)
  1812. (effects (font (size 0.9906 0.9906)) (justify left))
  1813. (uuid 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2)
  1814. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1815. (effects (font (size 1.27 1.27)) hide)
  1816. )
  1817. )
  1818. (global_label "D12" (shape input) (at 384.81 129.54 0) (fields_autoplaced)
  1819. (effects (font (size 1.27 1.27)) (justify left))
  1820. (uuid 6f580eb1-88cc-489d-a7ca-9efa5e590715)
  1821. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1822. (effects (font (size 1.27 1.27)) hide)
  1823. )
  1824. )
  1825. (global_label "MD2" (shape input) (at 38.1 193.04 180) (fields_autoplaced)
  1826. (effects (font (size 0.9906 0.9906)) (justify right))
  1827. (uuid 70d34adf-9bd8-469e-8c77-5c0d7adf511e)
  1828. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1829. (effects (font (size 1.27 1.27)) hide)
  1830. )
  1831. )
  1832. (global_label "MD4" (shape input) (at 38.1 198.12 180) (fields_autoplaced)
  1833. (effects (font (size 0.9906 0.9906)) (justify right))
  1834. (uuid 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1)
  1835. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1836. (effects (font (size 1.27 1.27)) hide)
  1837. )
  1838. )
  1839. (global_label "MD7" (shape input) (at 38.1 205.74 180) (fields_autoplaced)
  1840. (effects (font (size 0.9906 0.9906)) (justify right))
  1841. (uuid 76afa8e0-9b3a-439d-843c-ad039d3b6354)
  1842. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1843. (effects (font (size 1.27 1.27)) hide)
  1844. )
  1845. )
  1846. (global_label "~{DIR}" (shape input) (at 38.1 182.88 180) (fields_autoplaced)
  1847. (effects (font (size 0.9906 0.9906)) (justify right))
  1848. (uuid 775e8983-a723-43c5-bf00-61681f0840f3)
  1849. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1850. (effects (font (size 1.27 1.27)) hide)
  1851. )
  1852. )
  1853. (global_label "~{VPA}" (shape input) (at 38.1 86.36 180) (fields_autoplaced)
  1854. (effects (font (size 0.9906 0.9906)) (justify right))
  1855. (uuid 7a2f50f6-0c99-4e8d-9c2a-8f2f961d2e6d)
  1856. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1857. (effects (font (size 1.27 1.27)) hide)
  1858. )
  1859. )
  1860. (global_label "~{AS}" (shape input) (at 384.81 142.24 0) (fields_autoplaced)
  1861. (effects (font (size 0.9906 0.9906)) (justify left))
  1862. (uuid 7a74c4b1-6243-4a12-85a2-bc41d346e7aa)
  1863. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1864. (effects (font (size 1.27 1.27)) hide)
  1865. )
  1866. )
  1867. (global_label "A3" (shape input) (at 384.81 43.18 0) (fields_autoplaced)
  1868. (effects (font (size 1.27 1.27)) (justify left))
  1869. (uuid 7a879184-fad8-4feb-afb5-86fe8d34f1f7)
  1870. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1871. (effects (font (size 1.27 1.27)) hide)
  1872. )
  1873. )
  1874. (global_label "MD10" (shape input) (at 38.1 242.57 180) (fields_autoplaced)
  1875. (effects (font (size 0.9906 0.9906)) (justify right))
  1876. (uuid 7b766787-7689-40b8-9ef5-c0b1af45a9ae)
  1877. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1878. (effects (font (size 1.27 1.27)) hide)
  1879. )
  1880. )
  1881. (global_label "~{HLT}" (shape input) (at 38.1 124.46 180) (fields_autoplaced)
  1882. (effects (font (size 0.9906 0.9906)) (justify right))
  1883. (uuid 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53)
  1884. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1885. (effects (font (size 1.27 1.27)) hide)
  1886. )
  1887. )
  1888. (global_label "A21" (shape input) (at 384.81 88.9 0) (fields_autoplaced)
  1889. (effects (font (size 1.27 1.27)) (justify left))
  1890. (uuid 869d6302-ae22-478f-9723-3feacbb12eef)
  1891. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1892. (effects (font (size 1.27 1.27)) hide)
  1893. )
  1894. )
  1895. (global_label "E" (shape input) (at 38.1 83.82 180) (fields_autoplaced)
  1896. (effects (font (size 0.9906 0.9906)) (justify right))
  1897. (uuid 8cd050d6-228c-4da0-9533-b4f8d14cfb34)
  1898. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1899. (effects (font (size 1.27 1.27)) hide)
  1900. )
  1901. )
  1902. (global_label "~{MDHE}" (shape input) (at 38.1 262.89 180) (fields_autoplaced)
  1903. (effects (font (size 0.9906 0.9906)) (justify right))
  1904. (uuid 8e295ed4-82cb-4d9f-8888-7ad2dd4d5129)
  1905. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1906. (effects (font (size 1.27 1.27)) hide)
  1907. )
  1908. )
  1909. (global_label "A19" (shape input) (at 384.81 83.82 0) (fields_autoplaced)
  1910. (effects (font (size 1.27 1.27)) (justify left))
  1911. (uuid 901440f4-e2a6-4447-83cc-f58a2b26f5c4)
  1912. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1913. (effects (font (size 1.27 1.27)) hide)
  1914. )
  1915. )
  1916. (global_label "MD5" (shape input) (at 38.1 200.66 180) (fields_autoplaced)
  1917. (effects (font (size 0.9906 0.9906)) (justify right))
  1918. (uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c)
  1919. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1920. (effects (font (size 1.27 1.27)) hide)
  1921. )
  1922. )
  1923. (global_label "D11" (shape input) (at 384.81 127 0) (fields_autoplaced)
  1924. (effects (font (size 1.27 1.27)) (justify left))
  1925. (uuid 9529c01f-e1cd-40be-b7f0-83780a544249)
  1926. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1927. (effects (font (size 1.27 1.27)) hide)
  1928. )
  1929. )
  1930. (global_label "~{SP0}" (shape input) (at 384.81 184.15 0) (fields_autoplaced)
  1931. (effects (font (size 0.9906 0.9906)) (justify left))
  1932. (uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6)
  1933. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 389.5002 184.0881 0)
  1934. (effects (font (size 0.9906 0.9906)) (justify left) hide)
  1935. )
  1936. )
  1937. (global_label "MD13" (shape input) (at 38.1 250.19 180) (fields_autoplaced)
  1938. (effects (font (size 0.9906 0.9906)) (justify right))
  1939. (uuid 99186658-0361-40ba-ae93-62f23c5622e6)
  1940. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1941. (effects (font (size 1.27 1.27)) hide)
  1942. )
  1943. )
  1944. (global_label "A18" (shape input) (at 384.81 81.28 0) (fields_autoplaced)
  1945. (effects (font (size 1.27 1.27)) (justify left))
  1946. (uuid a0dee8e6-f88a-4f05-aba0-bab3aafdf2bc)
  1947. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1948. (effects (font (size 1.27 1.27)) hide)
  1949. )
  1950. )
  1951. (global_label "ECK" (shape input) (at 384.81 176.53 0) (fields_autoplaced)
  1952. (effects (font (size 0.9906 0.9906)) (justify left))
  1953. (uuid a5c8e189-1ddc-4a66-984b-e0fd1529d346)
  1954. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1955. (effects (font (size 1.27 1.27)) hide)
  1956. )
  1957. )
  1958. (global_label "A11" (shape input) (at 384.81 63.5 0) (fields_autoplaced)
  1959. (effects (font (size 1.27 1.27)) (justify left))
  1960. (uuid a62609cd-29b7-4918-b97d-7b2404ba61cf)
  1961. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1962. (effects (font (size 1.27 1.27)) hide)
  1963. )
  1964. )
  1965. (global_label "MD6" (shape input) (at 38.1 203.2 180) (fields_autoplaced)
  1966. (effects (font (size 0.9906 0.9906)) (justify right))
  1967. (uuid a64aeb89-c24a-493b-9aab-87a6be930bde)
  1968. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1969. (effects (font (size 1.27 1.27)) hide)
  1970. )
  1971. )
  1972. (global_label "A9" (shape input) (at 384.81 58.42 0) (fields_autoplaced)
  1973. (effects (font (size 1.27 1.27)) (justify left))
  1974. (uuid a6738794-75ae-48a6-8949-ed8717400d71)
  1975. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1976. (effects (font (size 1.27 1.27)) hide)
  1977. )
  1978. )
  1979. (global_label "A14" (shape input) (at 384.81 71.12 0) (fields_autoplaced)
  1980. (effects (font (size 1.27 1.27)) (justify left))
  1981. (uuid a8219a78-6b33-4efa-a789-6a67ce8f7a50)
  1982. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1983. (effects (font (size 1.27 1.27)) hide)
  1984. )
  1985. )
  1986. (global_label "A16" (shape input) (at 384.81 76.2 0) (fields_autoplaced)
  1987. (effects (font (size 1.27 1.27)) (justify left))
  1988. (uuid a8fb8ee0-623f-4870-a716-ecc88f37ef9a)
  1989. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1990. (effects (font (size 1.27 1.27)) hide)
  1991. )
  1992. )
  1993. (global_label "~{RST}" (shape input) (at 38.1 127 180) (fields_autoplaced)
  1994. (effects (font (size 0.9906 0.9906)) (justify right))
  1995. (uuid b287f145-851e-45cc-b200-e62677b551d5)
  1996. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1997. (effects (font (size 1.27 1.27)) hide)
  1998. )
  1999. )
  2000. (global_label "A6" (shape input) (at 384.81 50.8 0) (fields_autoplaced)
  2001. (effects (font (size 1.27 1.27)) (justify left))
  2002. (uuid b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2)
  2003. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2004. (effects (font (size 1.27 1.27)) hide)
  2005. )
  2006. )
  2007. (global_label "D2" (shape input) (at 384.81 104.14 0) (fields_autoplaced)
  2008. (effects (font (size 1.27 1.27)) (justify left))
  2009. (uuid be4b72db-0e02-4d9b-844a-aff689b4e648)
  2010. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2011. (effects (font (size 1.27 1.27)) hide)
  2012. )
  2013. )
  2014. (global_label "D0" (shape input) (at 384.81 99.06 0) (fields_autoplaced)
  2015. (effects (font (size 1.27 1.27)) (justify left))
  2016. (uuid c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09)
  2017. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2018. (effects (font (size 1.27 1.27)) hide)
  2019. )
  2020. )
  2021. (global_label "~{LDS}" (shape input) (at 384.81 147.32 0) (fields_autoplaced)
  2022. (effects (font (size 0.9906 0.9906)) (justify left))
  2023. (uuid c25449d6-d734-4953-b762-98f82a830248)
  2024. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2025. (effects (font (size 1.27 1.27)) hide)
  2026. )
  2027. )
  2028. (global_label "FC1" (shape input) (at 38.1 71.12 180) (fields_autoplaced)
  2029. (effects (font (size 0.9906 0.9906)) (justify right))
  2030. (uuid c3b3d7f4-943f-4cff-b180-87ef3e1bcbff)
  2031. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2032. (effects (font (size 1.27 1.27)) hide)
  2033. )
  2034. )
  2035. (global_label "CPUCLK" (shape input) (at 38.1 38.1 180) (fields_autoplaced)
  2036. (effects (font (size 0.9906 0.9906)) (justify right))
  2037. (uuid c4cab9c5-d6e5-4660-b910-603a51b56783)
  2038. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2039. (effects (font (size 1.27 1.27)) hide)
  2040. )
  2041. )
  2042. (global_label "D14" (shape input) (at 384.81 134.62 0) (fields_autoplaced)
  2043. (effects (font (size 1.27 1.27)) (justify left))
  2044. (uuid c7df8431-dcf5-4ab4-b8f8-21c1cafc5246)
  2045. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2046. (effects (font (size 1.27 1.27)) hide)
  2047. )
  2048. )
  2049. (global_label "A1" (shape input) (at 384.81 38.1 0) (fields_autoplaced)
  2050. (effects (font (size 1.27 1.27)) (justify left))
  2051. (uuid c8a7af6e-c432-4fa3-91ee-c8bf0c5a9ebe)
  2052. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2053. (effects (font (size 1.27 1.27)) hide)
  2054. )
  2055. )
  2056. (global_label "~{IPL1}" (shape input) (at 38.1 48.26 180) (fields_autoplaced)
  2057. (effects (font (size 0.9906 0.9906)) (justify right))
  2058. (uuid cb6062da-8dcd-4826-92fd-4071e9e97213)
  2059. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2060. (effects (font (size 1.27 1.27)) hide)
  2061. )
  2062. )
  2063. (global_label "MD3" (shape input) (at 38.1 195.58 180) (fields_autoplaced)
  2064. (effects (font (size 0.9906 0.9906)) (justify right))
  2065. (uuid cbde200f-1075-469a-89f8-abbdcf30e36a)
  2066. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2067. (effects (font (size 1.27 1.27)) hide)
  2068. )
  2069. )
  2070. (global_label "~{DTACK}" (shape input) (at 38.1 114.3 180) (fields_autoplaced)
  2071. (effects (font (size 0.9906 0.9906)) (justify right))
  2072. (uuid cebb9021-66d3-4116-98d4-5e6f3c1552be)
  2073. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2074. (effects (font (size 1.27 1.27)) hide)
  2075. )
  2076. )
  2077. (global_label "A13" (shape input) (at 384.81 68.58 0) (fields_autoplaced)
  2078. (effects (font (size 1.27 1.27)) (justify left))
  2079. (uuid d1a9be32-38ba-44e6-bc35-f031541ab1fe)
  2080. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2081. (effects (font (size 1.27 1.27)) hide)
  2082. )
  2083. )
  2084. (global_label "D5" (shape input) (at 384.81 111.76 0) (fields_autoplaced)
  2085. (effects (font (size 1.27 1.27)) (justify left))
  2086. (uuid d3e133b7-2c84-4206-a2b1-e693cb57fe56)
  2087. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2088. (effects (font (size 1.27 1.27)) hide)
  2089. )
  2090. )
  2091. (global_label "A20" (shape input) (at 384.81 86.36 0) (fields_autoplaced)
  2092. (effects (font (size 1.27 1.27)) (justify left))
  2093. (uuid d66d3c12-11ce-4566-9a45-962e329503d8)
  2094. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2095. (effects (font (size 1.27 1.27)) hide)
  2096. )
  2097. )
  2098. (global_label "D4" (shape input) (at 384.81 109.22 0) (fields_autoplaced)
  2099. (effects (font (size 1.27 1.27)) (justify left))
  2100. (uuid da481376-0e49-44d3-91b8-aaa39b869dd1)
  2101. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2102. (effects (font (size 1.27 1.27)) hide)
  2103. )
  2104. )
  2105. (global_label "A4" (shape input) (at 384.81 45.72 0) (fields_autoplaced)
  2106. (effects (font (size 1.27 1.27)) (justify left))
  2107. (uuid e413cfad-d7bd-41ab-b8dd-4b67484671a6)
  2108. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2109. (effects (font (size 1.27 1.27)) hide)
  2110. )
  2111. )
  2112. (global_label "A8" (shape input) (at 384.81 55.88 0) (fields_autoplaced)
  2113. (effects (font (size 1.27 1.27)) (justify left))
  2114. (uuid e7d81bce-286e-41e4-9181-3511e9c0455e)
  2115. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2116. (effects (font (size 1.27 1.27)) hide)
  2117. )
  2118. )
  2119. (global_label "A12" (shape input) (at 384.81 66.04 0) (fields_autoplaced)
  2120. (effects (font (size 1.27 1.27)) (justify left))
  2121. (uuid ebca7c5e-ae52-43e5-ac6c-69a96a9a5b24)
  2122. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2123. (effects (font (size 1.27 1.27)) hide)
  2124. )
  2125. )
  2126. (global_label "MD14" (shape input) (at 38.1 252.73 180) (fields_autoplaced)
  2127. (effects (font (size 0.9906 0.9906)) (justify right))
  2128. (uuid ee29d712-3378-4507-a00b-003526b29bb1)
  2129. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2130. (effects (font (size 1.27 1.27)) hide)
  2131. )
  2132. )
  2133. (global_label "~{BG}" (shape input) (at 38.1 58.42 180) (fields_autoplaced)
  2134. (effects (font (size 0.9906 0.9906)) (justify right))
  2135. (uuid eed466bf-cd88-4860-9abf-41a594ca08bd)
  2136. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2137. (effects (font (size 1.27 1.27)) hide)
  2138. )
  2139. )
  2140. (global_label "D9" (shape input) (at 384.81 121.92 0) (fields_autoplaced)
  2141. (effects (font (size 1.27 1.27)) (justify left))
  2142. (uuid f0ff5d1c-5481-4958-b844-4f68a17d4166)
  2143. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2144. (effects (font (size 1.27 1.27)) hide)
  2145. )
  2146. )
  2147. (global_label "A15" (shape input) (at 384.81 73.66 0) (fields_autoplaced)
  2148. (effects (font (size 1.27 1.27)) (justify left))
  2149. (uuid f3044f68-903d-4063-b253-30d8e3a83eae)
  2150. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2151. (effects (font (size 1.27 1.27)) hide)
  2152. )
  2153. )
  2154. (global_label "A5" (shape input) (at 384.81 48.26 0) (fields_autoplaced)
  2155. (effects (font (size 1.27 1.27)) (justify left))
  2156. (uuid f9b1563b-384a-447c-9f47-736504e995c8)
  2157. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2158. (effects (font (size 1.27 1.27)) hide)
  2159. )
  2160. )
  2161. (symbol (lib_id "CPU_NXP_68000:68010D") (at 193.04 93.98 0) (unit 1)
  2162. (in_bom yes) (on_board yes)
  2163. (uuid 00000000-0000-0000-0000-000061e0628e)
  2164. (property "Reference" "U3" (id 0) (at 177.8 34.29 0))
  2165. (property "Value" "68010-10" (id 1) (at 205.74 34.29 0))
  2166. (property "Footprint" "Package_DIP:DIP-64_W25.4mm" (id 2) (at 193.04 93.98 0)
  2167. (effects (font (size 1.27 1.27)) hide)
  2168. )
  2169. (property "Datasheet" "https://www.nxp.com/docs/en/reference-manual/MC68000UM.pdf" (id 3) (at 193.04 93.98 0)
  2170. (effects (font (size 1.27 1.27)) hide)
  2171. )
  2172. (pin "1" (uuid 4f2f68c4-6fa0-45ce-b5c2-e911daddcd12))
  2173. (pin "10" (uuid dd6c35f3-ae45-4706-ad6f-8028797ca8e0))
  2174. (pin "11" (uuid 39845449-7a31-4262-86b1-e7af14a6659f))
  2175. (pin "12" (uuid 07652224-af43-42a2-841c-1883ba305bc4))
  2176. (pin "13" (uuid b8e1a8b8-63f0-4e53-a6cb-c8edf9a649c4))
  2177. (pin "14" (uuid 63286bbb-78a3-4368-a50a-f6bf5f1653b0))
  2178. (pin "15" (uuid e4184668-3bdd-4cb2-a053-4f3d5e57b541))
  2179. (pin "16" (uuid ea745685-58a4-4364-a674-15381eadb187))
  2180. (pin "17" (uuid c6bba6d7-3631-448e-9df8-b5a9e3238ade))
  2181. (pin "18" (uuid adcbf4d0-ed9c-4c7d-b78f-3bcbe974bdcb))
  2182. (pin "19" (uuid 4b471778-f61d-4b9d-a507-3d4f82ec4b7c))
  2183. (pin "2" (uuid 883105b0-f6a6-466b-ba58-a2fcc1f18e4b))
  2184. (pin "20" (uuid f8621ac5-1e7e-4e87-8c69-5fd403df9470))
  2185. (pin "21" (uuid 80f8c1b4-10dd-40fe-b7f7-67988bc3ad81))
  2186. (pin "22" (uuid be5bbcc0-5b09-43de-a42f-297f80f602a5))
  2187. (pin "23" (uuid 725579dd-9ec6-473d-8843-6a11e99f108c))
  2188. (pin "24" (uuid 6ea0f2f7-b064-4b8f-bd17-48195d1c83d1))
  2189. (pin "25" (uuid acb0068c-c0e7-44cf-a209-296716acb6a2))
  2190. (pin "26" (uuid cdfb661b-489b-4b76-99f4-62b92bb1ab18))
  2191. (pin "27" (uuid 46491a9d-8b3d-4c74-b09a-70c876f162e5))
  2192. (pin "28" (uuid e80b0e91-f15f-4e36-9a9c-b2cfd5a01d2a))
  2193. (pin "29" (uuid 2295a793-dfca-4b86-a3e5-abf1834e2790))
  2194. (pin "3" (uuid e77c17df-b20e-4e7d-b937-f281c75a0014))
  2195. (pin "30" (uuid a150f0c9-1a23-4200-b489-18791f6d5ce5))
  2196. (pin "31" (uuid 0e592cd4-1950-44ef-9727-8e526f4c4e12))
  2197. (pin "32" (uuid 5bbde4f9-fcdb-4d27-a2d6-3847fcdd87ba))
  2198. (pin "33" (uuid 300aa512-2f66-4c26-a530-50c091b3a099))
  2199. (pin "34" (uuid 11c7c8d4-4c4b-4330-bb59-1eec2e98b255))
  2200. (pin "35" (uuid 34ddb753-e57c-4ca8-a67b-d7cdf62cae93))
  2201. (pin "36" (uuid 09c6ca89-863f-42d4-867e-9a769c316610))
  2202. (pin "37" (uuid 28b01cd2-da3a-46ec-8825-b0f31a0b8987))
  2203. (pin "38" (uuid a49e8613-3cd2-48ed-8977-6bb5023f7722))
  2204. (pin "39" (uuid a323243c-4cab-4689-aa04-1e663cf86177))
  2205. (pin "4" (uuid 70cda344-73be-4466-a097-1fd56f3b19e2))
  2206. (pin "40" (uuid 64d1d0fe-4fd6-4a55-8314-56a651e1ccab))
  2207. (pin "41" (uuid bf4036b4-c410-489a-b46c-abee2c31db09))
  2208. (pin "42" (uuid 5cff09b0-b3d4-41a7-a6a4-7f917b40eda9))
  2209. (pin "43" (uuid 5a397f61-35c4-4c18-9dcd-73a2d44cc9af))
  2210. (pin "44" (uuid 0a8dfc5c-35dc-4e44-a2bf-5968ebf90cca))
  2211. (pin "45" (uuid fb1a635e-b207-4b36-b0fb-e877e480e86a))
  2212. (pin "46" (uuid c9badf80-21f8-404a-b5df-18e98bffebf9))
  2213. (pin "47" (uuid c2a9d834-7cb1-4ec5-b0ba-ae56215ff9fc))
  2214. (pin "48" (uuid 97e5f992-979e-4291-bd9a-a77c3fd4b1b5))
  2215. (pin "49" (uuid 91c82043-0b26-427f-b23c-6094224ddfc2))
  2216. (pin "5" (uuid 8615dae0-65cf-4932-8e6f-9a0f32429a5e))
  2217. (pin "50" (uuid b547dd70-2ea7-4cfd-a1ee-911561975d81))
  2218. (pin "51" (uuid 21573090-1953-4b11-9042-108ae79fe9c5))
  2219. (pin "52" (uuid 53719fc4-141e-4c58-98cd-ab3bf9a4e1c0))
  2220. (pin "53" (uuid c5565d96-c729-4597-a74f-7f75befcc39d))
  2221. (pin "54" (uuid fe4869dc-e96e-4bb4-a38d-2ca990635f2d))
  2222. (pin "55" (uuid 2cd3975a-2259-4fa9-8133-e1586b9b9618))
  2223. (pin "56" (uuid 70abf340-8b3e-403e-a5e2-d8f35caa2f87))
  2224. (pin "57" (uuid 7de6564c-7ad6-4d57-a54c-8d2835ff5cdc))
  2225. (pin "58" (uuid dff67d5c-d976-4516-ae67-dbbdb70f8ddd))
  2226. (pin "59" (uuid f6dcb5b4-0971-448a-b9ab-6db37a750704))
  2227. (pin "6" (uuid 68039801-1b0f-480a-861d-d55f24af0c17))
  2228. (pin "60" (uuid af6ac8e6-193c-4bd2-ac0b-7f515b538a8b))
  2229. (pin "61" (uuid 3b6dda98-f455-4961-854e-3c4cceecffcc))
  2230. (pin "62" (uuid 42f10020-b50a-4739-a546-6b63e441c980))
  2231. (pin "63" (uuid eafb53d1-7486-4935-b154-2efbffbed6ca))
  2232. (pin "64" (uuid b55dabdc-b790-4740-9349-75159cff975a))
  2233. (pin "7" (uuid 004b7456-c25a-480f-88f6-723c1bcd9939))
  2234. (pin "8" (uuid b8b15b51-8345-4a1d-8ecf-04fc15b9e450))
  2235. (pin "9" (uuid 832b5a8c-7fe2-47ff-beee-cebf840750bb))
  2236. )
  2237. (symbol (lib_id "x37:NS32081D-10") (at 325.12 187.96 0) (unit 1)
  2238. (in_bom yes) (on_board yes)
  2239. (uuid 00000000-0000-0000-0000-000061e4489b)
  2240. (property "Reference" "U10" (id 0) (at 317.5 162.56 0))
  2241. (property "Value" "NS32081D-10" (id 1) (at 335.28 163.83 0))
  2242. (property "Footprint" "Package_DIP:DIP-24_W15.24mm_Socket_LongPads" (id 2) (at 325.12 187.96 0)
  2243. (effects (font (size 1.27 1.27)) hide)
  2244. )
  2245. (property "Datasheet" "" (id 3) (at 325.12 187.96 0)
  2246. (effects (font (size 1.27 1.27)) hide)
  2247. )
  2248. (pin "1" (uuid 22c28634-55a5-4f76-9217-6b70ddd108b8))
  2249. (pin "10" (uuid cfdef906-c924-4492-999d-4de066c0bce1))
  2250. (pin "12" (uuid 74012f9c-57f0-452a-9ea1-1e3437e264b8))
  2251. (pin "13" (uuid d1441985-7b63-4bf8-a06d-c70da2e3b78b))
  2252. (pin "14" (uuid cd50b8dc-829d-4a1d-8f2a-6471f378ba87))
  2253. (pin "15" (uuid 0c544a8c-9f45-4205-9bca-1d91c95d58ef))
  2254. (pin "16" (uuid bb5d2eae-a96e-45dd-89aa-125fe22cc2fa))
  2255. (pin "17" (uuid facb0614-068b-4c9c-a466-d374df96a94c))
  2256. (pin "18" (uuid c37d3f0c-41ec-4928-8869-febc821c6326))
  2257. (pin "19" (uuid ea77ba09-319a-49bd-ad5b-49f4c76f232c))
  2258. (pin "2" (uuid 0a1d0cbe-85ab-4f0f-b3b1-fcef21dfb600))
  2259. (pin "20" (uuid 60d26b83-9c3a-4edb-93ef-ab3d9d05e8cb))
  2260. (pin "21" (uuid ae158d42-76cc-4911-a621-4cc28931c98b))
  2261. (pin "22" (uuid 1cb64bfe-d819-47e3-be11-515b04f2c451))
  2262. (pin "23" (uuid 9f4abbc0-6ac3-48f0-b823-2c1c19349540))
  2263. (pin "24" (uuid d5f4d798-57d3-493b-b57c-3b6e89508879))
  2264. (pin "3" (uuid 0a5610bb-d01a-4417-8271-dc424dd2c838))
  2265. (pin "4" (uuid e4504518-96e7-4c9e-8457-7273f5a490f1))
  2266. (pin "5" (uuid 42ecdba3-f348-4384-8d4b-cd21e56f3613))
  2267. (pin "6" (uuid a22bec73-a69c-4ab7-8d8d-f6a6b09f925f))
  2268. (pin "7" (uuid bd29b6d3-a58c-4b1f-9c20-de4efb708ab2))
  2269. (pin "8" (uuid b44c0167-50fe-4c67-94fb-5ce2e6f52544))
  2270. (pin "9" (uuid dd2d59b3-ddef-491f-bb57-eb3d3820bdeb))
  2271. (pin "11" (uuid 765684c2-53b3-4ef7-bd1b-7a4a73d87b76))
  2272. )
  2273. (symbol (lib_id "power:+5V") (at 194.31 30.48 0) (unit 1)
  2274. (in_bom yes) (on_board yes) (fields_autoplaced)
  2275. (uuid 2b7bef61-43b8-4117-8a91-d39a50c62aad)
  2276. (property "Reference" "#PWR0108" (id 0) (at 194.31 34.29 0)
  2277. (effects (font (size 1.27 1.27)) hide)
  2278. )
  2279. (property "Value" "+5V" (id 1) (at 194.31 25.4 0))
  2280. (property "Footprint" "" (id 2) (at 194.31 30.48 0)
  2281. (effects (font (size 1.27 1.27)) hide)
  2282. )
  2283. (property "Datasheet" "" (id 3) (at 194.31 30.48 0)
  2284. (effects (font (size 1.27 1.27)) hide)
  2285. )
  2286. (pin "1" (uuid 21d09c9b-c293-4e64-80b8-fd5624df77f6))
  2287. )
  2288. (symbol (lib_id "74xx:74HC245") (at 213.36 200.66 0) (unit 1)
  2289. (in_bom yes) (on_board yes)
  2290. (uuid 2d617fad-47fe-4db9-836a-4bceb9c31c3b)
  2291. (property "Reference" "U32" (id 0) (at 207.01 182.88 0))
  2292. (property "Value" "74ALS245" (id 1) (at 219.71 182.88 0))
  2293. (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 213.36 200.66 0)
  2294. (effects (font (size 1.27 1.27)) hide)
  2295. )
  2296. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC245" (id 3) (at 213.36 200.66 0)
  2297. (effects (font (size 1.27 1.27)) hide)
  2298. )
  2299. (pin "1" (uuid 406d491e-5b01-46dc-a768-fd0992cdb346))
  2300. (pin "10" (uuid c6462399-f2e4-4f1a-b34a-b49a04c8bdb9))
  2301. (pin "11" (uuid 15ea3484-2685-47cb-9e01-ec01c6d477b8))
  2302. (pin "12" (uuid d4ef5db0-5fba-4fcd-ab64-2ef2646c5c6d))
  2303. (pin "13" (uuid d115a0df-1034-4583-83af-ff1cb8acfa17))
  2304. (pin "14" (uuid 720ec55a-7c69-4064-b792-ef3dbba4eab9))
  2305. (pin "15" (uuid e000728f-e3c5-4fc4-86af-db9ceb3a6542))
  2306. (pin "16" (uuid 18d3014d-7089-41b5-ab03-53cc0a265580))
  2307. (pin "17" (uuid 662bafcb-dcfb-4471-a8a9-f5c777fdf249))
  2308. (pin "18" (uuid 3f96e159-1f3b-4ee7-a46e-e60d78f2137a))
  2309. (pin "19" (uuid 77aa6db5-9b8d-4983-b88e-30fe5af25975))
  2310. (pin "2" (uuid 0e0f9829-27a5-43b2-a0ae-121d3ce72ef4))
  2311. (pin "20" (uuid 3934b2e9-06c8-499c-a6df-4d7b35cfb894))
  2312. (pin "3" (uuid 73f40fda-e6eb-4f93-9482-56cf47d84a87))
  2313. (pin "4" (uuid 3579cf2f-29b0-46b6-a07d-483fb5586322))
  2314. (pin "5" (uuid ef51df0d-fc2c-482b-a0e5-e49bae94f31f))
  2315. (pin "6" (uuid 41b4f8c6-4973-4fc7-9118-d582bc7f31e7))
  2316. (pin "7" (uuid 34a11a07-8b7f-45d2-96e3-89fd43e62756))
  2317. (pin "8" (uuid 47993d80-a37e-426e-90c9-fd54b49ed166))
  2318. (pin "9" (uuid fb9a832c-737d-49fb-bbb4-29a0ba3e8178))
  2319. )
  2320. (symbol (lib_id "power:+5V") (at 213.36 228.6 0) (unit 1)
  2321. (in_bom yes) (on_board yes)
  2322. (uuid 4688ff87-8262-46f4-ad96-b5f4e529cfa9)
  2323. (property "Reference" "#PWR0104" (id 0) (at 213.36 232.41 0)
  2324. (effects (font (size 1.27 1.27)) hide)
  2325. )
  2326. (property "Value" "+5V" (id 1) (at 209.55 228.6 0))
  2327. (property "Footprint" "" (id 2) (at 213.36 228.6 0)
  2328. (effects (font (size 1.27 1.27)) hide)
  2329. )
  2330. (property "Datasheet" "" (id 3) (at 213.36 228.6 0)
  2331. (effects (font (size 1.27 1.27)) hide)
  2332. )
  2333. (pin "1" (uuid 3d416885-b8b5-4f5c-bc29-39c6376095e8))
  2334. )
  2335. (symbol (lib_id "power:+5V") (at 325.12 162.56 0) (unit 1)
  2336. (in_bom yes) (on_board yes) (fields_autoplaced)
  2337. (uuid 5a5dbce0-2e30-4865-b50a-ba91ebb7cd8b)
  2338. (property "Reference" "#PWR0107" (id 0) (at 325.12 166.37 0)
  2339. (effects (font (size 1.27 1.27)) hide)
  2340. )
  2341. (property "Value" "+5V" (id 1) (at 325.12 157.48 0))
  2342. (property "Footprint" "" (id 2) (at 325.12 162.56 0)
  2343. (effects (font (size 1.27 1.27)) hide)
  2344. )
  2345. (property "Datasheet" "" (id 3) (at 325.12 162.56 0)
  2346. (effects (font (size 1.27 1.27)) hide)
  2347. )
  2348. (pin "1" (uuid 88ec7ad4-ce10-4adb-9e08-fdc4d8b0b7d9))
  2349. )
  2350. (symbol (lib_id "74xx:74HC245") (at 213.36 250.19 0) (unit 1)
  2351. (in_bom yes) (on_board yes)
  2352. (uuid 6ce41a48-c5e2-4d5f-8548-1c7b5c309a8a)
  2353. (property "Reference" "U31" (id 0) (at 205.74 232.41 0))
  2354. (property "Value" "74ALS245" (id 1) (at 218.44 232.41 0))
  2355. (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 213.36 250.19 0)
  2356. (effects (font (size 1.27 1.27)) hide)
  2357. )
  2358. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC245" (id 3) (at 213.36 250.19 0)
  2359. (effects (font (size 1.27 1.27)) hide)
  2360. )
  2361. (pin "1" (uuid 77ef8901-6325-4427-901a-4acd9074dd7b))
  2362. (pin "10" (uuid 2026567f-be64-41dd-8011-b0897ba0ff2e))
  2363. (pin "11" (uuid 981ff4de-0330-4757-b746-0cb983df5e7c))
  2364. (pin "12" (uuid fead07ab-5a70-40db-ada8-c72dcc827bfc))
  2365. (pin "13" (uuid 7943ed8c-e760-4ace-9c5f-baf5589fae39))
  2366. (pin "14" (uuid 59e09498-d26e-4ba7-b47d-fece2ea7c274))
  2367. (pin "15" (uuid ea4f0afc-785b-40cf-8ef1-cbe20404c18b))
  2368. (pin "16" (uuid 9505be36-b21c-4db8-9484-dd0861395d26))
  2369. (pin "17" (uuid 49d97c73-e37a-4154-9d0a-88037e40cc11))
  2370. (pin "18" (uuid 961b4579-9ee8-407a-89a7-81f36f1ad865))
  2371. (pin "19" (uuid 3656bb3f-f8a4-4f3a-8e9a-ec6203c87a56))
  2372. (pin "2" (uuid eb6a726e-fed9-4891-95fa-b4d4a5f77b35))
  2373. (pin "20" (uuid d70d1cd3-1668-4688-8eb7-f773efb7bb87))
  2374. (pin "3" (uuid 3c646c61-400f-4f60-98b8-05ed5e632a3f))
  2375. (pin "4" (uuid 8aeda7bd-b078-427a-a185-d5bc595c6436))
  2376. (pin "5" (uuid 251669f2-aed1-46fe-b2e4-9582ff1e4084))
  2377. (pin "6" (uuid 3198b8ca-7d11-4e0c-89a4-c173f9fcf724))
  2378. (pin "7" (uuid 311665d9-0fab-4325-8b46-f3638bf521df))
  2379. (pin "8" (uuid 3c3e06bd-c8bb-4ec8-84e0-f7f9437909b3))
  2380. (pin "9" (uuid 5eedf685-0df3-4da8-aded-0e6ed1cb2507))
  2381. )
  2382. (symbol (lib_id "power:GND") (at 213.36 271.78 0) (unit 1)
  2383. (in_bom yes) (on_board yes)
  2384. (uuid 843b53af-dd34-4db8-aa6b-5035b25affc7)
  2385. (property "Reference" "#PWR0105" (id 0) (at 213.36 278.13 0)
  2386. (effects (font (size 1.27 1.27)) hide)
  2387. )
  2388. (property "Value" "GND" (id 1) (at 213.487 276.1742 0))
  2389. (property "Footprint" "" (id 2) (at 213.36 271.78 0)
  2390. (effects (font (size 1.27 1.27)) hide)
  2391. )
  2392. (property "Datasheet" "" (id 3) (at 213.36 271.78 0)
  2393. (effects (font (size 1.27 1.27)) hide)
  2394. )
  2395. (pin "1" (uuid 348dc703-3cab-4547-b664-e8b335a6083c))
  2396. )
  2397. (symbol (lib_id "power:GND") (at 213.36 222.25 0) (unit 1)
  2398. (in_bom yes) (on_board yes)
  2399. (uuid 8953a9dc-c048-4b07-aafe-6c87346ed923)
  2400. (property "Reference" "#PWR0106" (id 0) (at 213.36 228.6 0)
  2401. (effects (font (size 1.27 1.27)) hide)
  2402. )
  2403. (property "Value" "GND" (id 1) (at 209.55 224.155 0))
  2404. (property "Footprint" "" (id 2) (at 213.36 222.25 0)
  2405. (effects (font (size 1.27 1.27)) hide)
  2406. )
  2407. (property "Datasheet" "" (id 3) (at 213.36 222.25 0)
  2408. (effects (font (size 1.27 1.27)) hide)
  2409. )
  2410. (pin "1" (uuid affc1c6b-4bf1-4fe2-8481-7251b0d1fc0c))
  2411. )
  2412. (symbol (lib_id "power:GND") (at 325.12 214.63 0) (unit 1)
  2413. (in_bom yes) (on_board yes) (fields_autoplaced)
  2414. (uuid 8cf31e2b-4fc3-4a38-96f0-f327f4d08e8a)
  2415. (property "Reference" "#PWR0101" (id 0) (at 325.12 220.98 0)
  2416. (effects (font (size 1.27 1.27)) hide)
  2417. )
  2418. (property "Value" "GND" (id 1) (at 325.12 219.71 0))
  2419. (property "Footprint" "" (id 2) (at 325.12 214.63 0)
  2420. (effects (font (size 1.27 1.27)) hide)
  2421. )
  2422. (property "Datasheet" "" (id 3) (at 325.12 214.63 0)
  2423. (effects (font (size 1.27 1.27)) hide)
  2424. )
  2425. (pin "1" (uuid 74be75e7-376e-4193-8346-a505d1961e83))
  2426. )
  2427. (symbol (lib_id "power:+5V") (at 213.36 179.07 0) (unit 1)
  2428. (in_bom yes) (on_board yes) (fields_autoplaced)
  2429. (uuid 9a88c19c-2a4a-4efb-8c29-aeacc0ca104c)
  2430. (property "Reference" "#PWR0103" (id 0) (at 213.36 182.88 0)
  2431. (effects (font (size 1.27 1.27)) hide)
  2432. )
  2433. (property "Value" "+5V" (id 1) (at 213.36 173.99 0))
  2434. (property "Footprint" "" (id 2) (at 213.36 179.07 0)
  2435. (effects (font (size 1.27 1.27)) hide)
  2436. )
  2437. (property "Datasheet" "" (id 3) (at 213.36 179.07 0)
  2438. (effects (font (size 1.27 1.27)) hide)
  2439. )
  2440. (pin "1" (uuid 4318064e-1267-4d19-9cb9-3530393e245c))
  2441. )
  2442. (symbol (lib_id "power:GND") (at 194.31 157.48 0) (unit 1)
  2443. (in_bom yes) (on_board yes) (fields_autoplaced)
  2444. (uuid eb3aade8-7dbc-464b-9dc9-b5004bdeab98)
  2445. (property "Reference" "#PWR0102" (id 0) (at 194.31 163.83 0)
  2446. (effects (font (size 1.27 1.27)) hide)
  2447. )
  2448. (property "Value" "GND" (id 1) (at 194.31 162.56 0))
  2449. (property "Footprint" "" (id 2) (at 194.31 157.48 0)
  2450. (effects (font (size 1.27 1.27)) hide)
  2451. )
  2452. (property "Datasheet" "" (id 3) (at 194.31 157.48 0)
  2453. (effects (font (size 1.27 1.27)) hide)
  2454. )
  2455. (pin "1" (uuid e6cb1d42-7805-47bf-b42f-05d4f3411f8e))
  2456. )
  2457. )