x37_dram_interface_3.kicad_sch 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid bea8315b-2ce6-441a-ac7f-0b67cf9c79a3)
  3. (paper "A3")
  4. (lib_symbols
  5. (symbol "74xx:74LS138" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  6. (property "Reference" "U" (id 0) (at -7.62 11.43 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Value" "74LS138" (id 1) (at -7.62 -13.97 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/sn74LS138" (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" "TTL DECOD DECOD8" (id 5) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_description" "Decoder 3 to 8 active low outputs" (id 6) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (property "ki_fp_filters" "DIP?16*" (id 7) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (symbol "74LS138_1_0"
  31. (pin input line (at -12.7 7.62 0) (length 5.08)
  32. (name "A0" (effects (font (size 1.27 1.27))))
  33. (number "1" (effects (font (size 1.27 1.27))))
  34. )
  35. (pin output output_low (at 12.7 -5.08 180) (length 5.08)
  36. (name "O5" (effects (font (size 1.27 1.27))))
  37. (number "10" (effects (font (size 1.27 1.27))))
  38. )
  39. (pin output output_low (at 12.7 -2.54 180) (length 5.08)
  40. (name "O4" (effects (font (size 1.27 1.27))))
  41. (number "11" (effects (font (size 1.27 1.27))))
  42. )
  43. (pin output output_low (at 12.7 0 180) (length 5.08)
  44. (name "O3" (effects (font (size 1.27 1.27))))
  45. (number "12" (effects (font (size 1.27 1.27))))
  46. )
  47. (pin output output_low (at 12.7 2.54 180) (length 5.08)
  48. (name "O2" (effects (font (size 1.27 1.27))))
  49. (number "13" (effects (font (size 1.27 1.27))))
  50. )
  51. (pin output output_low (at 12.7 5.08 180) (length 5.08)
  52. (name "O1" (effects (font (size 1.27 1.27))))
  53. (number "14" (effects (font (size 1.27 1.27))))
  54. )
  55. (pin output output_low (at 12.7 7.62 180) (length 5.08)
  56. (name "O0" (effects (font (size 1.27 1.27))))
  57. (number "15" (effects (font (size 1.27 1.27))))
  58. )
  59. (pin power_in line (at 0 15.24 270) (length 5.08)
  60. (name "VCC" (effects (font (size 1.27 1.27))))
  61. (number "16" (effects (font (size 1.27 1.27))))
  62. )
  63. (pin input line (at -12.7 5.08 0) (length 5.08)
  64. (name "A1" (effects (font (size 1.27 1.27))))
  65. (number "2" (effects (font (size 1.27 1.27))))
  66. )
  67. (pin input line (at -12.7 2.54 0) (length 5.08)
  68. (name "A2" (effects (font (size 1.27 1.27))))
  69. (number "3" (effects (font (size 1.27 1.27))))
  70. )
  71. (pin input input_low (at -12.7 -10.16 0) (length 5.08)
  72. (name "E1" (effects (font (size 1.27 1.27))))
  73. (number "4" (effects (font (size 1.27 1.27))))
  74. )
  75. (pin input input_low (at -12.7 -7.62 0) (length 5.08)
  76. (name "E2" (effects (font (size 1.27 1.27))))
  77. (number "5" (effects (font (size 1.27 1.27))))
  78. )
  79. (pin input line (at -12.7 -5.08 0) (length 5.08)
  80. (name "E3" (effects (font (size 1.27 1.27))))
  81. (number "6" (effects (font (size 1.27 1.27))))
  82. )
  83. (pin output output_low (at 12.7 -10.16 180) (length 5.08)
  84. (name "O7" (effects (font (size 1.27 1.27))))
  85. (number "7" (effects (font (size 1.27 1.27))))
  86. )
  87. (pin power_in line (at 0 -17.78 90) (length 5.08)
  88. (name "GND" (effects (font (size 1.27 1.27))))
  89. (number "8" (effects (font (size 1.27 1.27))))
  90. )
  91. (pin output output_low (at 12.7 -7.62 180) (length 5.08)
  92. (name "O6" (effects (font (size 1.27 1.27))))
  93. (number "9" (effects (font (size 1.27 1.27))))
  94. )
  95. )
  96. (symbol "74LS138_1_1"
  97. (rectangle (start -7.62 10.16) (end 7.62 -12.7)
  98. (stroke (width 0.254) (type default) (color 0 0 0 0))
  99. (fill (type background))
  100. )
  101. )
  102. )
  103. (symbol "74xx:74LS258" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  104. (property "Reference" "U" (id 0) (at -7.62 19.05 0)
  105. (effects (font (size 1.27 1.27)))
  106. )
  107. (property "Value" "74LS258" (id 1) (at -7.62 -21.59 0)
  108. (effects (font (size 1.27 1.27)))
  109. )
  110. (property "Footprint" "" (id 2) (at 0 0 0)
  111. (effects (font (size 1.27 1.27)) hide)
  112. )
  113. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS258" (id 3) (at 0 0 0)
  114. (effects (font (size 1.27 1.27)) hide)
  115. )
  116. (property "ki_locked" "" (id 4) (at 0 0 0)
  117. (effects (font (size 1.27 1.27)))
  118. )
  119. (property "ki_keywords" "TTL MUX MUX2" (id 5) (at 0 0 0)
  120. (effects (font (size 1.27 1.27)) hide)
  121. )
  122. (property "ki_description" "Quad 2 to 1 Multiplexer, inverting" (id 6) (at 0 0 0)
  123. (effects (font (size 1.27 1.27)) hide)
  124. )
  125. (property "ki_fp_filters" "DIP?16*" (id 7) (at 0 0 0)
  126. (effects (font (size 1.27 1.27)) hide)
  127. )
  128. (symbol "74LS258_1_0"
  129. (pin input line (at -12.7 -15.24 0) (length 5.08)
  130. (name "S" (effects (font (size 1.27 1.27))))
  131. (number "1" (effects (font (size 1.27 1.27))))
  132. )
  133. (pin input line (at -12.7 -10.16 0) (length 5.08)
  134. (name "I1d" (effects (font (size 1.27 1.27))))
  135. (number "10" (effects (font (size 1.27 1.27))))
  136. )
  137. (pin input line (at -12.7 -7.62 0) (length 5.08)
  138. (name "I0d" (effects (font (size 1.27 1.27))))
  139. (number "11" (effects (font (size 1.27 1.27))))
  140. )
  141. (pin tri_state inverted (at 12.7 0 180) (length 5.08)
  142. (name "Zc" (effects (font (size 1.27 1.27))))
  143. (number "12" (effects (font (size 1.27 1.27))))
  144. )
  145. (pin input line (at -12.7 -2.54 0) (length 5.08)
  146. (name "I1c" (effects (font (size 1.27 1.27))))
  147. (number "13" (effects (font (size 1.27 1.27))))
  148. )
  149. (pin input line (at -12.7 0 0) (length 5.08)
  150. (name "I0c" (effects (font (size 1.27 1.27))))
  151. (number "14" (effects (font (size 1.27 1.27))))
  152. )
  153. (pin input inverted (at -12.7 -17.78 0) (length 5.08)
  154. (name "OE" (effects (font (size 1.27 1.27))))
  155. (number "15" (effects (font (size 1.27 1.27))))
  156. )
  157. (pin power_in line (at 0 22.86 270) (length 5.08)
  158. (name "VCC" (effects (font (size 1.27 1.27))))
  159. (number "16" (effects (font (size 1.27 1.27))))
  160. )
  161. (pin input line (at -12.7 15.24 0) (length 5.08)
  162. (name "I0a" (effects (font (size 1.27 1.27))))
  163. (number "2" (effects (font (size 1.27 1.27))))
  164. )
  165. (pin input line (at -12.7 12.7 0) (length 5.08)
  166. (name "I1a" (effects (font (size 1.27 1.27))))
  167. (number "3" (effects (font (size 1.27 1.27))))
  168. )
  169. (pin tri_state inverted (at 12.7 15.24 180) (length 5.08)
  170. (name "Za" (effects (font (size 1.27 1.27))))
  171. (number "4" (effects (font (size 1.27 1.27))))
  172. )
  173. (pin input line (at -12.7 7.62 0) (length 5.08)
  174. (name "I0b" (effects (font (size 1.27 1.27))))
  175. (number "5" (effects (font (size 1.27 1.27))))
  176. )
  177. (pin input line (at -12.7 5.08 0) (length 5.08)
  178. (name "I1b" (effects (font (size 1.27 1.27))))
  179. (number "6" (effects (font (size 1.27 1.27))))
  180. )
  181. (pin tri_state inverted (at 12.7 7.62 180) (length 5.08)
  182. (name "Zb" (effects (font (size 1.27 1.27))))
  183. (number "7" (effects (font (size 1.27 1.27))))
  184. )
  185. (pin power_in line (at 0 -25.4 90) (length 5.08)
  186. (name "GND" (effects (font (size 1.27 1.27))))
  187. (number "8" (effects (font (size 1.27 1.27))))
  188. )
  189. (pin tri_state inverted (at 12.7 -7.62 180) (length 5.08)
  190. (name "Zd" (effects (font (size 1.27 1.27))))
  191. (number "9" (effects (font (size 1.27 1.27))))
  192. )
  193. )
  194. (symbol "74LS258_1_1"
  195. (rectangle (start -7.62 17.78) (end 7.62 -20.32)
  196. (stroke (width 0.254) (type default) (color 0 0 0 0))
  197. (fill (type background))
  198. )
  199. )
  200. )
  201. (symbol "74xx:74LS393" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  202. (property "Reference" "U" (id 0) (at -7.62 8.89 0)
  203. (effects (font (size 1.27 1.27)))
  204. )
  205. (property "Value" "74LS393" (id 1) (at -7.62 -8.89 0)
  206. (effects (font (size 1.27 1.27)))
  207. )
  208. (property "Footprint" "" (id 2) (at 0 0 0)
  209. (effects (font (size 1.27 1.27)) hide)
  210. )
  211. (property "Datasheet" "74xx\\74LS393.pdf" (id 3) (at 0 0 0)
  212. (effects (font (size 1.27 1.27)) hide)
  213. )
  214. (property "ki_locked" "" (id 4) (at 0 0 0)
  215. (effects (font (size 1.27 1.27)))
  216. )
  217. (property "ki_keywords" "TTL CNT CNT4" (id 5) (at 0 0 0)
  218. (effects (font (size 1.27 1.27)) hide)
  219. )
  220. (property "ki_description" "Dual BCD 4-bit counter" (id 6) (at 0 0 0)
  221. (effects (font (size 1.27 1.27)) hide)
  222. )
  223. (property "ki_fp_filters" "DIP*W7.62mm*" (id 7) (at 0 0 0)
  224. (effects (font (size 1.27 1.27)) hide)
  225. )
  226. (symbol "74LS393_1_0"
  227. (pin input clock (at -12.7 2.54 0) (length 5.08)
  228. (name "CP" (effects (font (size 1.27 1.27))))
  229. (number "1" (effects (font (size 1.27 1.27))))
  230. )
  231. (pin input line (at -12.7 -5.08 0) (length 5.08)
  232. (name "MR" (effects (font (size 1.27 1.27))))
  233. (number "2" (effects (font (size 1.27 1.27))))
  234. )
  235. (pin output line (at 12.7 2.54 180) (length 5.08)
  236. (name "Q0" (effects (font (size 1.27 1.27))))
  237. (number "3" (effects (font (size 1.27 1.27))))
  238. )
  239. (pin output line (at 12.7 0 180) (length 5.08)
  240. (name "Q1" (effects (font (size 1.27 1.27))))
  241. (number "4" (effects (font (size 1.27 1.27))))
  242. )
  243. (pin output line (at 12.7 -2.54 180) (length 5.08)
  244. (name "Q2" (effects (font (size 1.27 1.27))))
  245. (number "5" (effects (font (size 1.27 1.27))))
  246. )
  247. (pin output line (at 12.7 -5.08 180) (length 5.08)
  248. (name "Q3" (effects (font (size 1.27 1.27))))
  249. (number "6" (effects (font (size 1.27 1.27))))
  250. )
  251. )
  252. (symbol "74LS393_1_1"
  253. (rectangle (start -7.62 5.08) (end 7.62 -7.62)
  254. (stroke (width 0.254) (type default) (color 0 0 0 0))
  255. (fill (type background))
  256. )
  257. )
  258. (symbol "74LS393_2_0"
  259. (pin output line (at 12.7 0 180) (length 5.08)
  260. (name "Q1" (effects (font (size 1.27 1.27))))
  261. (number "10" (effects (font (size 1.27 1.27))))
  262. )
  263. (pin output line (at 12.7 2.54 180) (length 5.08)
  264. (name "Q0" (effects (font (size 1.27 1.27))))
  265. (number "11" (effects (font (size 1.27 1.27))))
  266. )
  267. (pin input line (at -12.7 -5.08 0) (length 5.08)
  268. (name "MR" (effects (font (size 1.27 1.27))))
  269. (number "12" (effects (font (size 1.27 1.27))))
  270. )
  271. (pin input clock (at -12.7 2.54 0) (length 5.08)
  272. (name "CP" (effects (font (size 1.27 1.27))))
  273. (number "13" (effects (font (size 1.27 1.27))))
  274. )
  275. (pin output line (at 12.7 -5.08 180) (length 5.08)
  276. (name "Q3" (effects (font (size 1.27 1.27))))
  277. (number "8" (effects (font (size 1.27 1.27))))
  278. )
  279. (pin output line (at 12.7 -2.54 180) (length 5.08)
  280. (name "Q2" (effects (font (size 1.27 1.27))))
  281. (number "9" (effects (font (size 1.27 1.27))))
  282. )
  283. )
  284. (symbol "74LS393_2_1"
  285. (rectangle (start -7.62 5.08) (end 7.62 -7.62)
  286. (stroke (width 0.254) (type default) (color 0 0 0 0))
  287. (fill (type background))
  288. )
  289. )
  290. (symbol "74LS393_3_0"
  291. (pin power_in line (at 0 12.7 270) (length 5.08)
  292. (name "VCC" (effects (font (size 1.27 1.27))))
  293. (number "14" (effects (font (size 1.27 1.27))))
  294. )
  295. (pin power_in line (at 0 -12.7 90) (length 5.08)
  296. (name "GND" (effects (font (size 1.27 1.27))))
  297. (number "7" (effects (font (size 1.27 1.27))))
  298. )
  299. )
  300. (symbol "74LS393_3_1"
  301. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  302. (stroke (width 0.254) (type default) (color 0 0 0 0))
  303. (fill (type background))
  304. )
  305. )
  306. )
  307. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  308. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  309. (effects (font (size 1.27 1.27)) (justify left))
  310. )
  311. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  312. (effects (font (size 1.27 1.27)) (justify left))
  313. )
  314. (property "Footprint" "" (id 2) (at 0 0 0)
  315. (effects (font (size 1.27 1.27)) hide)
  316. )
  317. (property "Datasheet" "~" (id 3) (at 0 0 0)
  318. (effects (font (size 1.27 1.27)) hide)
  319. )
  320. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  321. (effects (font (size 1.27 1.27)) hide)
  322. )
  323. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  324. (effects (font (size 1.27 1.27)) hide)
  325. )
  326. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  327. (effects (font (size 1.27 1.27)) hide)
  328. )
  329. (symbol "R_Small_0_1"
  330. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  331. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  332. (fill (type none))
  333. )
  334. )
  335. (symbol "R_Small_1_1"
  336. (pin passive line (at 0 2.54 270) (length 0.762)
  337. (name "~" (effects (font (size 1.27 1.27))))
  338. (number "1" (effects (font (size 1.27 1.27))))
  339. )
  340. (pin passive line (at 0 -2.54 90) (length 0.762)
  341. (name "~" (effects (font (size 1.27 1.27))))
  342. (number "2" (effects (font (size 1.27 1.27))))
  343. )
  344. )
  345. )
  346. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  347. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  348. (effects (font (size 1.27 1.27)) hide)
  349. )
  350. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  351. (effects (font (size 1.27 1.27)))
  352. )
  353. (property "Footprint" "" (id 2) (at 0 0 0)
  354. (effects (font (size 1.27 1.27)) hide)
  355. )
  356. (property "Datasheet" "" (id 3) (at 0 0 0)
  357. (effects (font (size 1.27 1.27)) hide)
  358. )
  359. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  360. (effects (font (size 1.27 1.27)) hide)
  361. )
  362. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  363. (effects (font (size 1.27 1.27)) hide)
  364. )
  365. (symbol "+5V_0_1"
  366. (polyline
  367. (pts
  368. (xy -0.762 1.27)
  369. (xy 0 2.54)
  370. )
  371. (stroke (width 0) (type default) (color 0 0 0 0))
  372. (fill (type none))
  373. )
  374. (polyline
  375. (pts
  376. (xy 0 0)
  377. (xy 0 2.54)
  378. )
  379. (stroke (width 0) (type default) (color 0 0 0 0))
  380. (fill (type none))
  381. )
  382. (polyline
  383. (pts
  384. (xy 0 2.54)
  385. (xy 0.762 1.27)
  386. )
  387. (stroke (width 0) (type default) (color 0 0 0 0))
  388. (fill (type none))
  389. )
  390. )
  391. (symbol "+5V_1_1"
  392. (pin power_in line (at 0 0 90) (length 0) hide
  393. (name "+5V" (effects (font (size 1.27 1.27))))
  394. (number "1" (effects (font (size 1.27 1.27))))
  395. )
  396. )
  397. )
  398. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  399. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  400. (effects (font (size 1.27 1.27)) hide)
  401. )
  402. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  403. (effects (font (size 1.27 1.27)))
  404. )
  405. (property "Footprint" "" (id 2) (at 0 0 0)
  406. (effects (font (size 1.27 1.27)) hide)
  407. )
  408. (property "Datasheet" "" (id 3) (at 0 0 0)
  409. (effects (font (size 1.27 1.27)) hide)
  410. )
  411. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  412. (effects (font (size 1.27 1.27)) hide)
  413. )
  414. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  415. (effects (font (size 1.27 1.27)) hide)
  416. )
  417. (symbol "GND_0_1"
  418. (polyline
  419. (pts
  420. (xy 0 0)
  421. (xy 0 -1.27)
  422. (xy 1.27 -1.27)
  423. (xy 0 -2.54)
  424. (xy -1.27 -1.27)
  425. (xy 0 -1.27)
  426. )
  427. (stroke (width 0) (type default) (color 0 0 0 0))
  428. (fill (type none))
  429. )
  430. )
  431. (symbol "GND_1_1"
  432. (pin power_in line (at 0 0 270) (length 0) hide
  433. (name "GND" (effects (font (size 1.27 1.27))))
  434. (number "1" (effects (font (size 1.27 1.27))))
  435. )
  436. )
  437. )
  438. )
  439. (junction (at 170.18 33.02) (diameter 0) (color 0 0 0 0)
  440. (uuid 20eb4edd-5195-45ad-bf22-bf661dfe5715)
  441. )
  442. (junction (at 182.88 194.31) (diameter 0) (color 0 0 0 0)
  443. (uuid 86b12f2b-f403-48f8-b61a-b2d67707e7f2)
  444. )
  445. (junction (at 175.26 201.93) (diameter 0) (color 0 0 0 0)
  446. (uuid 8bcbbbd8-4f5f-4eb8-a228-28bf22e0a5b0)
  447. )
  448. (junction (at 128.27 111.76) (diameter 0) (color 0 0 0 0)
  449. (uuid 8cee8022-8131-43df-8037-ad04815a1e6d)
  450. )
  451. (junction (at 120.65 119.38) (diameter 0) (color 0 0 0 0)
  452. (uuid 95bd81ed-b837-47d3-9a8e-73c4ca8782f7)
  453. )
  454. (junction (at 165.1 48.26) (diameter 0) (color 0 0 0 0)
  455. (uuid 9e7eb0af-2664-4fdc-896d-a3da83d71fe8)
  456. )
  457. (junction (at 123.19 116.84) (diameter 0) (color 0 0 0 0)
  458. (uuid 9fdeb54f-a77c-4b15-9732-e35b4c8fa949)
  459. )
  460. (junction (at 167.64 35.56) (diameter 0) (color 0 0 0 0)
  461. (uuid a0edf24f-4e0a-4384-91bd-1555a5b03118)
  462. )
  463. (junction (at 120.65 147.32) (diameter 0) (color 0 0 0 0)
  464. (uuid a1d08edb-684b-4590-8c40-4a0e19be43a3)
  465. )
  466. (junction (at 177.8 199.39) (diameter 0) (color 0 0 0 0)
  467. (uuid b8dbd723-1def-4af2-af54-c6c24241fa4b)
  468. )
  469. (junction (at 172.72 30.48) (diameter 0) (color 0 0 0 0)
  470. (uuid b9169e6d-2561-4d8b-8937-de4a71ad67d5)
  471. )
  472. (junction (at 118.11 160.02) (diameter 0) (color 0 0 0 0)
  473. (uuid bd49ccef-c99c-40a1-abef-4d0344e82bf7)
  474. )
  475. (junction (at 180.34 196.85) (diameter 0) (color 0 0 0 0)
  476. (uuid cc1bd140-3952-4b2d-ae38-739020c335ce)
  477. )
  478. (junction (at 125.73 114.3) (diameter 0) (color 0 0 0 0)
  479. (uuid d9471565-b302-4683-a7d3-15f7ebf43086)
  480. )
  481. (no_connect (at 212.09 93.98) (uuid 06203bd7-424d-4111-83ef-22dc164b0e92))
  482. (no_connect (at 212.09 96.52) (uuid 1e25d936-0545-48e4-a2c4-75c35806cc7a))
  483. (no_connect (at 212.09 91.44) (uuid 249e782b-01d9-43fe-98e2-2cf8f83d23fb))
  484. (no_connect (at 212.09 43.18) (uuid 309842db-cfb6-4670-8f71-e8fb1b9097c4))
  485. (no_connect (at 212.09 40.64) (uuid 31ee3c3f-ec6f-4297-b4b4-94cce4b7feaf))
  486. (no_connect (at 212.09 45.72) (uuid 7d50c841-6cd6-42c5-8347-9521711d41fb))
  487. (no_connect (at 212.09 88.9) (uuid cc1e7c4a-81d9-484d-b266-996aa5901858))
  488. (no_connect (at 212.09 48.26) (uuid d46e339d-8a6c-4d31-af7d-99e112e6a0b2))
  489. (wire (pts (xy 180.34 196.85) (xy 186.69 196.85))
  490. (stroke (width 0) (type default) (color 0 0 0 0))
  491. (uuid 00333d0a-a927-49d0-b984-e4dab0452fec)
  492. )
  493. (wire (pts (xy 184.15 93.98) (xy 186.69 93.98))
  494. (stroke (width 0) (type default) (color 0 0 0 0))
  495. (uuid 039a61a8-4e8c-4fc6-82f7-5e0b298db778)
  496. )
  497. (wire (pts (xy 186.69 83.82) (xy 167.64 83.82))
  498. (stroke (width 0) (type default) (color 0 0 0 0))
  499. (uuid 04ea178d-9228-48fb-8794-b920d4d8076f)
  500. )
  501. (wire (pts (xy 226.06 81.28) (xy 378.46 81.28))
  502. (stroke (width 0) (type default) (color 0 0 0 0))
  503. (uuid 0cfdfc0f-eda2-4fd2-97e2-985a0ca9b59b)
  504. )
  505. (wire (pts (xy 125.73 139.7) (xy 142.24 139.7))
  506. (stroke (width 0) (type default) (color 0 0 0 0))
  507. (uuid 18aaf4ab-b9f6-4d6f-97a5-57e14c36773b)
  508. )
  509. (wire (pts (xy 182.88 214.63) (xy 191.77 214.63))
  510. (stroke (width 0) (type default) (color 0 0 0 0))
  511. (uuid 1a2ebdb5-c66c-4037-9c2d-7699303c4def)
  512. )
  513. (wire (pts (xy 138.43 171.45) (xy 138.43 162.56))
  514. (stroke (width 0) (type default) (color 0 0 0 0))
  515. (uuid 1aa755e2-0b3c-4955-a99a-f91c06a5f566)
  516. )
  517. (wire (pts (xy 175.26 201.93) (xy 175.26 229.87))
  518. (stroke (width 0) (type default) (color 0 0 0 0))
  519. (uuid 1b009eab-1941-42a2-abdd-18daca14842b)
  520. )
  521. (wire (pts (xy 29.21 33.02) (xy 170.18 33.02))
  522. (stroke (width 0) (type default) (color 0 0 0 0))
  523. (uuid 1c2501c0-4317-4efc-8ae0-7683f2f85356)
  524. )
  525. (wire (pts (xy 29.21 30.48) (xy 172.72 30.48))
  526. (stroke (width 0) (type default) (color 0 0 0 0))
  527. (uuid 1c6ea0f9-8bc0-4c8f-8e1f-1cec02fd27a1)
  528. )
  529. (wire (pts (xy 175.26 201.93) (xy 186.69 201.93))
  530. (stroke (width 0) (type default) (color 0 0 0 0))
  531. (uuid 1cedcad8-3919-4f32-989c-a0725921e666)
  532. )
  533. (wire (pts (xy 167.64 196.85) (xy 180.34 196.85))
  534. (stroke (width 0) (type default) (color 0 0 0 0))
  535. (uuid 1e5ee148-2adb-4e71-a5ed-a1ce024043b1)
  536. )
  537. (wire (pts (xy 138.43 162.56) (xy 142.24 162.56))
  538. (stroke (width 0) (type default) (color 0 0 0 0))
  539. (uuid 22a58991-7ab8-461e-8066-aa5495016d05)
  540. )
  541. (wire (pts (xy 180.34 222.25) (xy 191.77 222.25))
  542. (stroke (width 0) (type default) (color 0 0 0 0))
  543. (uuid 242e19a4-97c4-43e2-b9d8-317988d482c5)
  544. )
  545. (wire (pts (xy 29.21 152.4) (xy 142.24 152.4))
  546. (stroke (width 0) (type default) (color 0 0 0 0))
  547. (uuid 246094d8-23f8-4ba1-b2d8-54a39af354b2)
  548. )
  549. (wire (pts (xy 226.06 35.56) (xy 378.46 35.56))
  550. (stroke (width 0) (type default) (color 0 0 0 0))
  551. (uuid 26038824-019e-4e8a-a3a1-c8f7c4b69f16)
  552. )
  553. (wire (pts (xy 167.64 35.56) (xy 186.69 35.56))
  554. (stroke (width 0) (type default) (color 0 0 0 0))
  555. (uuid 2707fe6e-d6ca-4ad2-b255-e892a1fc9f35)
  556. )
  557. (wire (pts (xy 165.1 48.26) (xy 186.69 48.26))
  558. (stroke (width 0) (type default) (color 0 0 0 0))
  559. (uuid 2aef9ad5-c05e-4a11-a9f2-b38737b94007)
  560. )
  561. (wire (pts (xy 170.18 33.02) (xy 186.69 33.02))
  562. (stroke (width 0) (type default) (color 0 0 0 0))
  563. (uuid 2d1a2d75-7b5a-4ba7-8e1c-10ff1c11afab)
  564. )
  565. (wire (pts (xy 142.24 201.93) (xy 137.16 201.93))
  566. (stroke (width 0) (type default) (color 0 0 0 0))
  567. (uuid 3182de62-cd79-4270-acc0-4b0339f6dd54)
  568. )
  569. (wire (pts (xy 204.47 252.73) (xy 204.47 254))
  570. (stroke (width 0) (type default) (color 0 0 0 0))
  571. (uuid 352b7c74-b8b3-4a23-b8b1-93d96bab07ea)
  572. )
  573. (wire (pts (xy 177.8 199.39) (xy 186.69 199.39))
  574. (stroke (width 0) (type default) (color 0 0 0 0))
  575. (uuid 35a0cb98-d5cd-47fc-9080-0033f111f850)
  576. )
  577. (wire (pts (xy 104.14 116.84) (xy 123.19 116.84))
  578. (stroke (width 0) (type default) (color 0 0 0 0))
  579. (uuid 38c83509-5f54-42d4-823a-f8523bb1e429)
  580. )
  581. (wire (pts (xy 226.06 33.02) (xy 378.46 33.02))
  582. (stroke (width 0) (type default) (color 0 0 0 0))
  583. (uuid 3c2884cf-88fa-4588-a430-16ae5ca7cf9a)
  584. )
  585. (wire (pts (xy 165.1 96.52) (xy 165.1 48.26))
  586. (stroke (width 0) (type default) (color 0 0 0 0))
  587. (uuid 3e12c0b8-05c8-4eaa-ae90-f19d340558db)
  588. )
  589. (wire (pts (xy 167.64 129.54) (xy 378.46 129.54))
  590. (stroke (width 0) (type default) (color 0 0 0 0))
  591. (uuid 41a07f1d-ade8-4c35-9b02-7539086e4539)
  592. )
  593. (wire (pts (xy 226.06 83.82) (xy 378.46 83.82))
  594. (stroke (width 0) (type default) (color 0 0 0 0))
  595. (uuid 41cc0179-f1ee-4819-8832-eb3851ea7a0e)
  596. )
  597. (wire (pts (xy 137.16 201.93) (xy 137.16 205.74))
  598. (stroke (width 0) (type default) (color 0 0 0 0))
  599. (uuid 4a290fbc-4b15-46a6-96a3-9e5fb62a166e)
  600. )
  601. (wire (pts (xy 120.65 119.38) (xy 132.08 119.38))
  602. (stroke (width 0) (type default) (color 0 0 0 0))
  603. (uuid 4dd0451a-ed64-4f60-9a52-d1ba7524be85)
  604. )
  605. (wire (pts (xy 142.24 144.78) (xy 29.21 144.78))
  606. (stroke (width 0) (type default) (color 0 0 0 0))
  607. (uuid 4e24b580-3313-4634-a80e-a7e6fe85eda2)
  608. )
  609. (wire (pts (xy 118.11 160.02) (xy 29.21 160.02))
  610. (stroke (width 0) (type default) (color 0 0 0 0))
  611. (uuid 4fd9ad32-0964-4e49-9d4b-1fc11a8f2f9c)
  612. )
  613. (wire (pts (xy 226.06 30.48) (xy 378.46 30.48))
  614. (stroke (width 0) (type default) (color 0 0 0 0))
  615. (uuid 5067d903-3c9b-45c3-b209-292200ab7bfd)
  616. )
  617. (wire (pts (xy 104.14 111.76) (xy 128.27 111.76))
  618. (stroke (width 0) (type default) (color 0 0 0 0))
  619. (uuid 50bc13b6-08be-4a3b-94df-1a18b907ee48)
  620. )
  621. (wire (pts (xy 142.24 160.02) (xy 118.11 160.02))
  622. (stroke (width 0) (type default) (color 0 0 0 0))
  623. (uuid 526d760a-8a10-4335-be97-ea40aca58124)
  624. )
  625. (wire (pts (xy 199.39 104.14) (xy 199.39 105.41))
  626. (stroke (width 0) (type default) (color 0 0 0 0))
  627. (uuid 5301e325-22f8-41e9-852b-5a461b89dfd4)
  628. )
  629. (wire (pts (xy 167.64 83.82) (xy 167.64 35.56))
  630. (stroke (width 0) (type default) (color 0 0 0 0))
  631. (uuid 59a614a5-847c-4d44-84ac-a2955260954f)
  632. )
  633. (wire (pts (xy 212.09 38.1) (xy 220.98 38.1))
  634. (stroke (width 0) (type default) (color 0 0 0 0))
  635. (uuid 59a8baad-c702-47d2-bf89-288d352a9da4)
  636. )
  637. (wire (pts (xy 175.26 229.87) (xy 191.77 229.87))
  638. (stroke (width 0) (type default) (color 0 0 0 0))
  639. (uuid 5b62ab61-5617-4376-86f8-381dd14ac55f)
  640. )
  641. (wire (pts (xy 212.09 33.02) (xy 220.98 33.02))
  642. (stroke (width 0) (type default) (color 0 0 0 0))
  643. (uuid 6239c779-acb4-4c23-abd1-0e475b5c6753)
  644. )
  645. (wire (pts (xy 185.42 45.72) (xy 186.69 45.72))
  646. (stroke (width 0) (type default) (color 0 0 0 0))
  647. (uuid 637853be-fc38-4ec7-a75f-2662bdb82fe8)
  648. )
  649. (wire (pts (xy 27.94 212.09) (xy 191.77 212.09))
  650. (stroke (width 0) (type default) (color 0 0 0 0))
  651. (uuid 662a8e85-3fd4-4174-8b90-47f6f1f2491f)
  652. )
  653. (wire (pts (xy 170.18 81.28) (xy 170.18 33.02))
  654. (stroke (width 0) (type default) (color 0 0 0 0))
  655. (uuid 6835430a-defb-4ab7-a261-d0f02eb3e689)
  656. )
  657. (wire (pts (xy 217.17 227.33) (xy 378.46 227.33))
  658. (stroke (width 0) (type default) (color 0 0 0 0))
  659. (uuid 6a093029-60da-42f3-852e-e8fca116bdc8)
  660. )
  661. (wire (pts (xy 125.73 114.3) (xy 125.73 139.7))
  662. (stroke (width 0) (type default) (color 0 0 0 0))
  663. (uuid 6b95dbe6-c1ed-4ad4-a8da-d497f6dfea5e)
  664. )
  665. (wire (pts (xy 204.47 203.2) (xy 204.47 204.47))
  666. (stroke (width 0) (type default) (color 0 0 0 0))
  667. (uuid 6d7ba0d7-3762-4f11-bd7d-b7a8883a3658)
  668. )
  669. (wire (pts (xy 212.09 30.48) (xy 220.98 30.48))
  670. (stroke (width 0) (type default) (color 0 0 0 0))
  671. (uuid 70bb3b6f-cb90-407e-b4c1-d0deea87dbe9)
  672. )
  673. (wire (pts (xy 226.06 78.74) (xy 378.46 78.74))
  674. (stroke (width 0) (type default) (color 0 0 0 0))
  675. (uuid 717d100c-2380-4d81-8e80-b021a2a1bd2f)
  676. )
  677. (wire (pts (xy 128.27 111.76) (xy 132.08 111.76))
  678. (stroke (width 0) (type default) (color 0 0 0 0))
  679. (uuid 72be7d93-c58d-47fd-9631-c12d358fdb51)
  680. )
  681. (wire (pts (xy 167.64 194.31) (xy 182.88 194.31))
  682. (stroke (width 0) (type default) (color 0 0 0 0))
  683. (uuid 7a9e0a1b-7914-468d-b3e4-2dcb8b9d98ae)
  684. )
  685. (wire (pts (xy 185.42 54.61) (xy 185.42 45.72))
  686. (stroke (width 0) (type default) (color 0 0 0 0))
  687. (uuid 7f625653-e579-4074-8b9b-6f4341c56bc3)
  688. )
  689. (wire (pts (xy 142.24 129.54) (xy 29.21 129.54))
  690. (stroke (width 0) (type default) (color 0 0 0 0))
  691. (uuid 7fac8aa9-42ac-404b-8a31-96140cc0f7c0)
  692. )
  693. (wire (pts (xy 180.34 196.85) (xy 180.34 222.25))
  694. (stroke (width 0) (type default) (color 0 0 0 0))
  695. (uuid 80bff978-290d-4bce-9860-cbfadbf4ad75)
  696. )
  697. (wire (pts (xy 179.07 43.18) (xy 186.69 43.18))
  698. (stroke (width 0) (type default) (color 0 0 0 0))
  699. (uuid 83a2f09e-a488-4813-befd-7632ee5a239e)
  700. )
  701. (wire (pts (xy 154.94 170.18) (xy 154.94 171.45))
  702. (stroke (width 0) (type default) (color 0 0 0 0))
  703. (uuid 84a2c5b2-ac97-49e4-afa7-2ea66b646826)
  704. )
  705. (wire (pts (xy 186.69 96.52) (xy 165.1 96.52))
  706. (stroke (width 0) (type default) (color 0 0 0 0))
  707. (uuid 8a56ec33-46b4-460f-8263-11a2093203d2)
  708. )
  709. (wire (pts (xy 226.06 38.1) (xy 378.46 38.1))
  710. (stroke (width 0) (type default) (color 0 0 0 0))
  711. (uuid 8bd37918-2fd7-4c7e-bf3a-8573777a0411)
  712. )
  713. (wire (pts (xy 123.19 154.94) (xy 142.24 154.94))
  714. (stroke (width 0) (type default) (color 0 0 0 0))
  715. (uuid 8d75556f-bef0-4563-927d-68ce465a9ce7)
  716. )
  717. (wire (pts (xy 217.17 212.09) (xy 378.46 212.09))
  718. (stroke (width 0) (type default) (color 0 0 0 0))
  719. (uuid 92961fd0-594b-412b-bdf9-02ea996c27b8)
  720. )
  721. (wire (pts (xy 217.17 219.71) (xy 378.46 219.71))
  722. (stroke (width 0) (type default) (color 0 0 0 0))
  723. (uuid 92ab19b8-9a53-4990-a4f0-c8c489da140f)
  724. )
  725. (wire (pts (xy 125.73 114.3) (xy 132.08 114.3))
  726. (stroke (width 0) (type default) (color 0 0 0 0))
  727. (uuid 93c7dbb0-82eb-48e4-b1ff-6c95c88c6075)
  728. )
  729. (wire (pts (xy 184.15 102.87) (xy 184.15 93.98))
  730. (stroke (width 0) (type default) (color 0 0 0 0))
  731. (uuid 9440fa05-bb7c-4db1-adbe-5dbe413e890e)
  732. )
  733. (wire (pts (xy 182.88 194.31) (xy 182.88 214.63))
  734. (stroke (width 0) (type default) (color 0 0 0 0))
  735. (uuid 9602a5ac-e3cc-42a7-974f-89f2fa410728)
  736. )
  737. (wire (pts (xy 120.65 194.31) (xy 142.24 194.31))
  738. (stroke (width 0) (type default) (color 0 0 0 0))
  739. (uuid 98fd6128-9bc3-4cb1-81ed-117801ed0418)
  740. )
  741. (wire (pts (xy 104.14 119.38) (xy 120.65 119.38))
  742. (stroke (width 0) (type default) (color 0 0 0 0))
  743. (uuid 9d89b786-eba7-447f-847f-8a028a953e1b)
  744. )
  745. (wire (pts (xy 186.69 78.74) (xy 172.72 78.74))
  746. (stroke (width 0) (type default) (color 0 0 0 0))
  747. (uuid 9e0e7724-53ac-49ec-b484-46a9f61f3980)
  748. )
  749. (wire (pts (xy 29.21 35.56) (xy 167.64 35.56))
  750. (stroke (width 0) (type default) (color 0 0 0 0))
  751. (uuid 9f4b3e93-43ed-480b-aeda-e48240170da9)
  752. )
  753. (wire (pts (xy 167.64 199.39) (xy 177.8 199.39))
  754. (stroke (width 0) (type default) (color 0 0 0 0))
  755. (uuid a3306afd-5352-4be1-baaf-ff40e353b838)
  756. )
  757. (wire (pts (xy 186.69 81.28) (xy 170.18 81.28))
  758. (stroke (width 0) (type default) (color 0 0 0 0))
  759. (uuid a35494e6-64bc-4b2a-a8b0-d8225dc7d647)
  760. )
  761. (wire (pts (xy 167.64 137.16) (xy 378.46 137.16))
  762. (stroke (width 0) (type default) (color 0 0 0 0))
  763. (uuid a7c584de-7c04-4d63-8b19-b47c8572b599)
  764. )
  765. (wire (pts (xy 27.94 234.95) (xy 191.77 234.95))
  766. (stroke (width 0) (type default) (color 0 0 0 0))
  767. (uuid a85ae353-a6c7-4702-9b7b-b374de92540f)
  768. )
  769. (wire (pts (xy 27.94 227.33) (xy 191.77 227.33))
  770. (stroke (width 0) (type default) (color 0 0 0 0))
  771. (uuid a9effcbb-33e0-462a-9ac5-a897d0fcd816)
  772. )
  773. (wire (pts (xy 199.39 55.88) (xy 199.39 57.15))
  774. (stroke (width 0) (type default) (color 0 0 0 0))
  775. (uuid ab5ab2b1-1846-4f8b-9023-430a9f3b2dbb)
  776. )
  777. (wire (pts (xy 78.74 119.38) (xy 73.66 119.38))
  778. (stroke (width 0) (type default) (color 0 0 0 0))
  779. (uuid ac397775-798f-41a1-8f0a-1dc6931033cf)
  780. )
  781. (wire (pts (xy 123.19 116.84) (xy 132.08 116.84))
  782. (stroke (width 0) (type default) (color 0 0 0 0))
  783. (uuid b066bb6b-7d9c-4bed-a914-f974634d0d32)
  784. )
  785. (wire (pts (xy 167.64 144.78) (xy 378.46 144.78))
  786. (stroke (width 0) (type default) (color 0 0 0 0))
  787. (uuid b1ed807d-70a7-4f82-8592-e806a724f225)
  788. )
  789. (wire (pts (xy 212.09 35.56) (xy 220.98 35.56))
  790. (stroke (width 0) (type default) (color 0 0 0 0))
  791. (uuid b583b9ae-381d-4d22-8cf1-e208946572d8)
  792. )
  793. (wire (pts (xy 187.96 245.11) (xy 191.77 245.11))
  794. (stroke (width 0) (type default) (color 0 0 0 0))
  795. (uuid b882254a-4a30-41d5-876a-c97227b6c109)
  796. )
  797. (wire (pts (xy 212.09 81.28) (xy 220.98 81.28))
  798. (stroke (width 0) (type default) (color 0 0 0 0))
  799. (uuid b891b9aa-eb81-473b-9626-de8529d37153)
  800. )
  801. (wire (pts (xy 120.65 147.32) (xy 142.24 147.32))
  802. (stroke (width 0) (type default) (color 0 0 0 0))
  803. (uuid ba28e500-e115-4a44-9d05-93760d85ab72)
  804. )
  805. (wire (pts (xy 120.65 119.38) (xy 120.65 147.32))
  806. (stroke (width 0) (type default) (color 0 0 0 0))
  807. (uuid babc4f70-88ac-4d82-a351-f56231181380)
  808. )
  809. (wire (pts (xy 212.09 83.82) (xy 220.98 83.82))
  810. (stroke (width 0) (type default) (color 0 0 0 0))
  811. (uuid bc8f6ea8-4a7e-4faa-a02c-4496745c2617)
  812. )
  813. (wire (pts (xy 118.11 160.02) (xy 118.11 242.57))
  814. (stroke (width 0) (type default) (color 0 0 0 0))
  815. (uuid bef179e9-ed77-4379-8526-599293df7107)
  816. )
  817. (wire (pts (xy 29.21 48.26) (xy 165.1 48.26))
  818. (stroke (width 0) (type default) (color 0 0 0 0))
  819. (uuid bf6cf7df-208c-4451-8113-b5fc140ba00f)
  820. )
  821. (wire (pts (xy 154.94 120.65) (xy 154.94 121.92))
  822. (stroke (width 0) (type default) (color 0 0 0 0))
  823. (uuid c3da8c99-1853-445f-b9b0-54931e6fb323)
  824. )
  825. (wire (pts (xy 73.66 119.38) (xy 73.66 123.19))
  826. (stroke (width 0) (type default) (color 0 0 0 0))
  827. (uuid c3fe41fa-18db-44f2-acff-435c72b51e47)
  828. )
  829. (wire (pts (xy 104.14 114.3) (xy 125.73 114.3))
  830. (stroke (width 0) (type default) (color 0 0 0 0))
  831. (uuid c6a5db57-4b91-4afa-9283-83bb1729d01d)
  832. )
  833. (wire (pts (xy 128.27 111.76) (xy 128.27 132.08))
  834. (stroke (width 0) (type default) (color 0 0 0 0))
  835. (uuid c8860a30-713c-4f42-8f3b-96a7f3537426)
  836. )
  837. (wire (pts (xy 78.74 111.76) (xy 29.21 111.76))
  838. (stroke (width 0) (type default) (color 0 0 0 0))
  839. (uuid ce612047-6962-46eb-bded-f72be6b683b6)
  840. )
  841. (wire (pts (xy 212.09 86.36) (xy 220.98 86.36))
  842. (stroke (width 0) (type default) (color 0 0 0 0))
  843. (uuid d30cca2b-3498-472f-b9ce-450390055f95)
  844. )
  845. (wire (pts (xy 199.39 69.85) (xy 199.39 71.12))
  846. (stroke (width 0) (type default) (color 0 0 0 0))
  847. (uuid d3834203-0e0b-4e1e-a992-27340f4b6704)
  848. )
  849. (wire (pts (xy 177.8 237.49) (xy 191.77 237.49))
  850. (stroke (width 0) (type default) (color 0 0 0 0))
  851. (uuid d560f79f-dce6-4feb-a36c-f28e85da0d7d)
  852. )
  853. (wire (pts (xy 177.8 199.39) (xy 177.8 237.49))
  854. (stroke (width 0) (type default) (color 0 0 0 0))
  855. (uuid d5ba4ee9-90cb-400c-9bd7-b2858c113325)
  856. )
  857. (wire (pts (xy 167.64 152.4) (xy 378.46 152.4))
  858. (stroke (width 0) (type default) (color 0 0 0 0))
  859. (uuid d6b03601-bee8-4536-be05-7bff53ca2eb7)
  860. )
  861. (wire (pts (xy 187.96 254) (xy 187.96 245.11))
  862. (stroke (width 0) (type default) (color 0 0 0 0))
  863. (uuid d868b5f5-b40a-405d-878a-c59c89910439)
  864. )
  865. (wire (pts (xy 120.65 147.32) (xy 120.65 194.31))
  866. (stroke (width 0) (type default) (color 0 0 0 0))
  867. (uuid d91c04ce-a04c-4f9a-90a5-93fdbfca13e2)
  868. )
  869. (wire (pts (xy 128.27 132.08) (xy 142.24 132.08))
  870. (stroke (width 0) (type default) (color 0 0 0 0))
  871. (uuid da99c6ea-c22c-4db3-bf2a-6bc5473b3b5b)
  872. )
  873. (wire (pts (xy 199.39 21.59) (xy 199.39 22.86))
  874. (stroke (width 0) (type default) (color 0 0 0 0))
  875. (uuid ddd53634-77d0-4506-9cd7-700ef9e63d57)
  876. )
  877. (wire (pts (xy 172.72 78.74) (xy 172.72 30.48))
  878. (stroke (width 0) (type default) (color 0 0 0 0))
  879. (uuid e2d244fb-4452-417e-a230-32b114bca73d)
  880. )
  881. (wire (pts (xy 172.72 30.48) (xy 186.69 30.48))
  882. (stroke (width 0) (type default) (color 0 0 0 0))
  883. (uuid e580f256-c3ae-45b2-9fbe-ff37c5b1f779)
  884. )
  885. (wire (pts (xy 29.21 137.16) (xy 142.24 137.16))
  886. (stroke (width 0) (type default) (color 0 0 0 0))
  887. (uuid ebd13ec9-ac0c-4ed5-a253-ff92873520f5)
  888. )
  889. (wire (pts (xy 226.06 86.36) (xy 378.46 86.36))
  890. (stroke (width 0) (type default) (color 0 0 0 0))
  891. (uuid ee100dd5-8bee-47ae-a036-7d9da075a3cb)
  892. )
  893. (wire (pts (xy 182.88 194.31) (xy 186.69 194.31))
  894. (stroke (width 0) (type default) (color 0 0 0 0))
  895. (uuid f31a57f5-97ab-4db9-b329-058c0a8b1807)
  896. )
  897. (wire (pts (xy 217.17 234.95) (xy 378.46 234.95))
  898. (stroke (width 0) (type default) (color 0 0 0 0))
  899. (uuid f3bc74c8-bc8d-45d1-a39a-207201c1a1b7)
  900. )
  901. (wire (pts (xy 167.64 201.93) (xy 175.26 201.93))
  902. (stroke (width 0) (type default) (color 0 0 0 0))
  903. (uuid f54f7371-f7cc-4a10-a496-2fd594d46c45)
  904. )
  905. (wire (pts (xy 27.94 219.71) (xy 191.77 219.71))
  906. (stroke (width 0) (type default) (color 0 0 0 0))
  907. (uuid f6250937-3bb5-4fb1-8bba-4918867146a8)
  908. )
  909. (wire (pts (xy 212.09 78.74) (xy 220.98 78.74))
  910. (stroke (width 0) (type default) (color 0 0 0 0))
  911. (uuid f8bb8e7a-cedf-43a8-a0e3-bb5bc5867af7)
  912. )
  913. (wire (pts (xy 123.19 116.84) (xy 123.19 154.94))
  914. (stroke (width 0) (type default) (color 0 0 0 0))
  915. (uuid f9f1feea-f050-453c-ab07-f3d6fab2ddc5)
  916. )
  917. (wire (pts (xy 186.69 91.44) (xy 29.21 91.44))
  918. (stroke (width 0) (type default) (color 0 0 0 0))
  919. (uuid fc8f931f-6edd-4804-bb65-8e35ca2577d4)
  920. )
  921. (wire (pts (xy 118.11 242.57) (xy 191.77 242.57))
  922. (stroke (width 0) (type default) (color 0 0 0 0))
  923. (uuid fff935c5-2825-4be2-869c-71aba9cd2b68)
  924. )
  925. (text "CAS decoder" (at 173.99 22.86 0)
  926. (effects (font (size 1.27 1.27)) (justify left bottom))
  927. (uuid 0e4bb750-48ed-4136-89e4-5d9fd10e22a8)
  928. )
  929. (text "Refresh address enable\n" (at 31.75 158.75 0)
  930. (effects (font (size 1.27 1.27)) (justify left bottom))
  931. (uuid 36c3bc0b-6712-4309-bcb8-c43d26a4480e)
  932. )
  933. (text "Refresh address counter\n" (at 125.73 189.23 0)
  934. (effects (font (size 1.27 1.27)) (justify left bottom))
  935. (uuid 7e5a43f1-306c-43e6-932b-5701e671d27c)
  936. )
  937. (text "CAS decoder" (at 179.07 71.12 0)
  938. (effects (font (size 1.27 1.27)) (justify left bottom))
  939. (uuid 80f52e7b-b305-4b12-8951-db02d18e1eb7)
  940. )
  941. (text "CPU/Refresh MUX\n" (at 212.09 201.93 0)
  942. (effects (font (size 1.27 1.27)) (justify left bottom))
  943. (uuid bedd2d67-a6f1-494b-ba41-8116dd730077)
  944. )
  945. (text "Refresh address counter\n" (at 58.42 106.68 0)
  946. (effects (font (size 1.27 1.27)) (justify left bottom))
  947. (uuid e6229a6c-b640-4323-a274-b6e992c274c9)
  948. )
  949. (text "CPU/Refresh MUX\n" (at 166.37 120.65 0)
  950. (effects (font (size 1.27 1.27)) (justify left bottom))
  951. (uuid ef402829-b408-4053-916c-eb87a1919376)
  952. )
  953. (global_label "RA4" (shape input) (at 378.46 144.78 0) (fields_autoplaced)
  954. (effects (font (size 1.27 1.27)) (justify left))
  955. (uuid 0c300ef2-ca59-470a-a140-331ef61b1924)
  956. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.3523 144.7006 0)
  957. (effects (font (size 1.27 1.27)) (justify left) hide)
  958. )
  959. )
  960. (global_label "A5" (shape input) (at 27.94 212.09 180) (fields_autoplaced)
  961. (effects (font (size 1.27 1.27)) (justify right))
  962. (uuid 1412543f-d67b-4da7-b7a1-36b6feb6d43a)
  963. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 23.3177 212.0106 0)
  964. (effects (font (size 1.27 1.27)) (justify right) hide)
  965. )
  966. )
  967. (global_label "RACNT" (shape input) (at 29.21 111.76 180) (fields_autoplaced)
  968. (effects (font (size 1.27 1.27)) (justify right))
  969. (uuid 199de19e-2c10-4277-a3ed-9e13463d449b)
  970. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.9591 111.6806 0)
  971. (effects (font (size 1.27 1.27)) (justify right) hide)
  972. )
  973. )
  974. (global_label "~{CASBNK3CB}" (shape input) (at 378.46 86.36 0) (fields_autoplaced)
  975. (effects (font (size 1.27 1.27)) (justify left))
  976. (uuid 2b5f9a17-68c3-4ab6-8a98-9637233a9be1)
  977. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 391.9723 86.2806 0)
  978. (effects (font (size 1.27 1.27)) (justify left) hide)
  979. )
  980. )
  981. (global_label "C407" (shape input) (at 132.08 119.38 0) (fields_autoplaced)
  982. (effects (font (size 1.27 1.27)) (justify left))
  983. (uuid 3560ec65-702d-4574-a3e1-686af7a91b7f)
  984. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 139.3028 119.3006 0)
  985. (effects (font (size 1.27 1.27)) (justify left) hide)
  986. )
  987. )
  988. (global_label "~{CAS}" (shape input) (at 29.21 48.26 180) (fields_autoplaced)
  989. (effects (font (size 1.27 1.27)) (justify right))
  990. (uuid 38400464-b37c-459d-97ca-cea043c78866)
  991. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 23.3177 48.1806 0)
  992. (effects (font (size 1.27 1.27)) (justify right) hide)
  993. )
  994. )
  995. (global_label "RA1" (shape input) (at 378.46 129.54 0) (fields_autoplaced)
  996. (effects (font (size 1.27 1.27)) (justify left))
  997. (uuid 38821540-6005-438a-9afd-6f6237d55a0d)
  998. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.3523 129.4606 0)
  999. (effects (font (size 1.27 1.27)) (justify left) hide)
  1000. )
  1001. )
  1002. (global_label "~{CASBNK2CB}" (shape input) (at 378.46 83.82 0) (fields_autoplaced)
  1003. (effects (font (size 1.27 1.27)) (justify left))
  1004. (uuid 3f8ac39e-d805-48b0-b45d-b930fb12dc1c)
  1005. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 391.9723 83.7406 0)
  1006. (effects (font (size 1.27 1.27)) (justify left) hide)
  1007. )
  1008. )
  1009. (global_label "C406" (shape input) (at 132.08 116.84 0) (fields_autoplaced)
  1010. (effects (font (size 1.27 1.27)) (justify left))
  1011. (uuid 41f9093f-f7a9-44b9-9105-1d8b1cdaeeed)
  1012. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 139.3028 116.7606 0)
  1013. (effects (font (size 1.27 1.27)) (justify left) hide)
  1014. )
  1015. )
  1016. (global_label "RA6" (shape input) (at 378.46 219.71 0) (fields_autoplaced)
  1017. (effects (font (size 1.27 1.27)) (justify left))
  1018. (uuid 46579236-0c30-4f96-8536-7a6f87839582)
  1019. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.3523 219.6306 0)
  1020. (effects (font (size 1.27 1.27)) (justify left) hide)
  1021. )
  1022. )
  1023. (global_label "C409" (shape input) (at 186.69 196.85 0) (fields_autoplaced)
  1024. (effects (font (size 1.27 1.27)) (justify left))
  1025. (uuid 46ec0fbf-6a46-42c7-982f-d9c0a418f361)
  1026. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 193.9128 196.7706 0)
  1027. (effects (font (size 1.27 1.27)) (justify left) hide)
  1028. )
  1029. )
  1030. (global_label "~{CASBNK1DB}" (shape input) (at 378.46 33.02 0) (fields_autoplaced)
  1031. (effects (font (size 1.27 1.27)) (justify left))
  1032. (uuid 4b51365c-5927-4595-a7c1-2ea6f925877d)
  1033. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 391.9723 32.9406 0)
  1034. (effects (font (size 1.27 1.27)) (justify left) hide)
  1035. )
  1036. )
  1037. (global_label "MA20" (shape input) (at 29.21 33.02 180) (fields_autoplaced)
  1038. (effects (font (size 1.27 1.27)) (justify right))
  1039. (uuid 55c37bf8-2161-4463-94d5-42bf9b56873f)
  1040. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.9268 32.9406 0)
  1041. (effects (font (size 1.27 1.27)) (justify right) hide)
  1042. )
  1043. )
  1044. (global_label "~{CASBNK1CB}" (shape input) (at 378.46 81.28 0) (fields_autoplaced)
  1045. (effects (font (size 1.27 1.27)) (justify left))
  1046. (uuid 5e384a08-7082-4bbd-a071-6ea683984944)
  1047. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 391.9723 81.2006 0)
  1048. (effects (font (size 1.27 1.27)) (justify left) hide)
  1049. )
  1050. )
  1051. (global_label "RA8" (shape input) (at 378.46 227.33 0) (fields_autoplaced)
  1052. (effects (font (size 1.27 1.27)) (justify left))
  1053. (uuid 5f067bf5-7dfe-4e69-9e56-08bf15f2cdba)
  1054. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.3523 227.2506 0)
  1055. (effects (font (size 1.27 1.27)) (justify left) hide)
  1056. )
  1057. )
  1058. (global_label "A7" (shape input) (at 27.94 234.95 180) (fields_autoplaced)
  1059. (effects (font (size 1.27 1.27)) (justify right))
  1060. (uuid 632bac75-41c3-45d0-b643-d8bc705e1ae6)
  1061. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 23.3177 234.8706 0)
  1062. (effects (font (size 1.27 1.27)) (justify right) hide)
  1063. )
  1064. )
  1065. (global_label "MA19" (shape input) (at 29.21 30.48 180) (fields_autoplaced)
  1066. (effects (font (size 1.27 1.27)) (justify right))
  1067. (uuid 63323a2c-be4c-447c-bc6b-ebebdb777bb8)
  1068. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.9268 30.4006 0)
  1069. (effects (font (size 1.27 1.27)) (justify right) hide)
  1070. )
  1071. )
  1072. (global_label "RAE" (shape input) (at 29.21 160.02 180) (fields_autoplaced)
  1073. (effects (font (size 1.27 1.27)) (justify right))
  1074. (uuid 7028c89a-973e-4536-8998-8417d3145b8d)
  1075. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 23.3782 159.9406 0)
  1076. (effects (font (size 1.27 1.27)) (justify right) hide)
  1077. )
  1078. )
  1079. (global_label "A2" (shape input) (at 29.21 137.16 180) (fields_autoplaced)
  1080. (effects (font (size 1.27 1.27)) (justify right))
  1081. (uuid 83cf560e-c154-471f-aa05-588e5a0bcb84)
  1082. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 24.5877 137.0806 0)
  1083. (effects (font (size 1.27 1.27)) (justify right) hide)
  1084. )
  1085. )
  1086. (global_label "EDCON" (shape input) (at 29.21 91.44 180) (fields_autoplaced)
  1087. (effects (font (size 1.27 1.27)) (justify right))
  1088. (uuid 94488797-3f37-4404-9371-8b2bb52fe91d)
  1089. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.5358 91.3606 0)
  1090. (effects (font (size 1.27 1.27)) (justify right) hide)
  1091. )
  1092. )
  1093. (global_label "~{CASBNK0CB}" (shape input) (at 378.46 78.74 0) (fields_autoplaced)
  1094. (effects (font (size 1.27 1.27)) (justify left))
  1095. (uuid 944f6817-2e78-407d-a149-76cd2bf67de2)
  1096. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 391.9723 78.6606 0)
  1097. (effects (font (size 1.27 1.27)) (justify left) hide)
  1098. )
  1099. )
  1100. (global_label "C411" (shape input) (at 186.69 201.93 0) (fields_autoplaced)
  1101. (effects (font (size 1.27 1.27)) (justify left))
  1102. (uuid 99219cef-bc8a-4a3f-9b85-4f8b244c5fae)
  1103. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 193.9128 201.8506 0)
  1104. (effects (font (size 1.27 1.27)) (justify left) hide)
  1105. )
  1106. )
  1107. (global_label "C404" (shape input) (at 132.08 111.76 0) (fields_autoplaced)
  1108. (effects (font (size 1.27 1.27)) (justify left))
  1109. (uuid a1e3cfba-9eb6-406d-b8df-588be2ba9bff)
  1110. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 139.3028 111.6806 0)
  1111. (effects (font (size 1.27 1.27)) (justify left) hide)
  1112. )
  1113. )
  1114. (global_label "~{CASBNK3DB}" (shape input) (at 378.46 38.1 0) (fields_autoplaced)
  1115. (effects (font (size 1.27 1.27)) (justify left))
  1116. (uuid b3c1c729-9ff1-4419-8790-4b758c1ffeda)
  1117. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 391.9723 38.0206 0)
  1118. (effects (font (size 1.27 1.27)) (justify left) hide)
  1119. )
  1120. )
  1121. (global_label "RA5" (shape input) (at 378.46 212.09 0) (fields_autoplaced)
  1122. (effects (font (size 1.27 1.27)) (justify left))
  1123. (uuid c0372ee8-7c28-4b06-b0d3-03df76e1dc4e)
  1124. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.3523 212.0106 0)
  1125. (effects (font (size 1.27 1.27)) (justify left) hide)
  1126. )
  1127. )
  1128. (global_label "RA7" (shape input) (at 378.46 234.95 0) (fields_autoplaced)
  1129. (effects (font (size 1.27 1.27)) (justify left))
  1130. (uuid c11ddda1-ac2c-4bda-8647-4cbaf75e38b3)
  1131. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.3523 234.8706 0)
  1132. (effects (font (size 1.27 1.27)) (justify left) hide)
  1133. )
  1134. )
  1135. (global_label "A4" (shape input) (at 29.21 144.78 180) (fields_autoplaced)
  1136. (effects (font (size 1.27 1.27)) (justify right))
  1137. (uuid c215bd74-4778-49b2-8c59-9beb1c4c210e)
  1138. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 24.5877 144.7006 0)
  1139. (effects (font (size 1.27 1.27)) (justify right) hide)
  1140. )
  1141. )
  1142. (global_label "A6" (shape input) (at 27.94 219.71 180) (fields_autoplaced)
  1143. (effects (font (size 1.27 1.27)) (justify right))
  1144. (uuid c36484c3-ac6a-469f-a1a4-544a9e001616)
  1145. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 23.3177 219.6306 0)
  1146. (effects (font (size 1.27 1.27)) (justify right) hide)
  1147. )
  1148. )
  1149. (global_label "RA2" (shape input) (at 378.46 137.16 0) (fields_autoplaced)
  1150. (effects (font (size 1.27 1.27)) (justify left))
  1151. (uuid c615c195-fed1-4a00-90f7-9b917b7e1c25)
  1152. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.3523 137.0806 0)
  1153. (effects (font (size 1.27 1.27)) (justify left) hide)
  1154. )
  1155. )
  1156. (global_label "A2" (shape input) (at 29.21 152.4 180) (fields_autoplaced)
  1157. (effects (font (size 1.27 1.27)) (justify right))
  1158. (uuid c90ddeef-0bd8-41e4-9270-d556c592e175)
  1159. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 24.5877 152.3206 0)
  1160. (effects (font (size 1.27 1.27)) (justify right) hide)
  1161. )
  1162. )
  1163. (global_label "RA3" (shape input) (at 378.46 152.4 0) (fields_autoplaced)
  1164. (effects (font (size 1.27 1.27)) (justify left))
  1165. (uuid caf40c25-179b-4e0a-8688-8c9a195d6c76)
  1166. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 384.3523 152.3206 0)
  1167. (effects (font (size 1.27 1.27)) (justify left) hide)
  1168. )
  1169. )
  1170. (global_label "~{CASBNK2DB}" (shape input) (at 378.46 35.56 0) (fields_autoplaced)
  1171. (effects (font (size 1.27 1.27)) (justify left))
  1172. (uuid ce3a9d87-4d05-4d94-9d39-32821a3ec4c0)
  1173. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 391.9723 35.4806 0)
  1174. (effects (font (size 1.27 1.27)) (justify left) hide)
  1175. )
  1176. )
  1177. (global_label "C405" (shape input) (at 132.08 114.3 0) (fields_autoplaced)
  1178. (effects (font (size 1.27 1.27)) (justify left))
  1179. (uuid d1f51b52-b60c-443f-9ac0-fe66bd17bedd)
  1180. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 139.3028 114.2206 0)
  1181. (effects (font (size 1.27 1.27)) (justify left) hide)
  1182. )
  1183. )
  1184. (global_label "MA21" (shape input) (at 29.21 35.56 180) (fields_autoplaced)
  1185. (effects (font (size 1.27 1.27)) (justify right))
  1186. (uuid d25e1824-1bd2-412b-9fbd-fae85db95d8b)
  1187. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.9268 35.4806 0)
  1188. (effects (font (size 1.27 1.27)) (justify right) hide)
  1189. )
  1190. )
  1191. (global_label "MA20" (shape input) (at 29.21 33.02 180) (fields_autoplaced)
  1192. (effects (font (size 1.27 1.27)) (justify right))
  1193. (uuid d4625499-e8f5-494c-b17b-f752b2c51d77)
  1194. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.9268 32.9406 0)
  1195. (effects (font (size 1.27 1.27)) (justify right) hide)
  1196. )
  1197. )
  1198. (global_label "A8" (shape input) (at 27.94 227.33 180) (fields_autoplaced)
  1199. (effects (font (size 1.27 1.27)) (justify right))
  1200. (uuid d901c975-5575-4912-8387-384c5d083119)
  1201. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 23.3177 227.2506 0)
  1202. (effects (font (size 1.27 1.27)) (justify right) hide)
  1203. )
  1204. )
  1205. (global_label "C408" (shape input) (at 186.69 194.31 0) (fields_autoplaced)
  1206. (effects (font (size 1.27 1.27)) (justify left))
  1207. (uuid e3874d72-f294-4900-a0d6-373fe6cf84c1)
  1208. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 193.9128 194.2306 0)
  1209. (effects (font (size 1.27 1.27)) (justify left) hide)
  1210. )
  1211. )
  1212. (global_label "C410" (shape input) (at 186.69 199.39 0) (fields_autoplaced)
  1213. (effects (font (size 1.27 1.27)) (justify left))
  1214. (uuid e71126e0-61a4-462e-8b69-3f5811c76810)
  1215. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 193.9128 199.3106 0)
  1216. (effects (font (size 1.27 1.27)) (justify left) hide)
  1217. )
  1218. )
  1219. (global_label "A1" (shape input) (at 29.21 129.54 180) (fields_autoplaced)
  1220. (effects (font (size 1.27 1.27)) (justify right))
  1221. (uuid ec6c514a-d220-4a16-af38-6cf9dce93564)
  1222. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 24.5877 129.4606 0)
  1223. (effects (font (size 1.27 1.27)) (justify right) hide)
  1224. )
  1225. )
  1226. (global_label "~{CASBNK0DB}" (shape input) (at 378.46 30.48 0) (fields_autoplaced)
  1227. (effects (font (size 1.27 1.27)) (justify left))
  1228. (uuid f05bafe6-5f2c-4152-9268-2a5293ddf091)
  1229. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 391.9723 30.4006 0)
  1230. (effects (font (size 1.27 1.27)) (justify left) hide)
  1231. )
  1232. )
  1233. (global_label "MA19" (shape input) (at 29.21 30.48 180) (fields_autoplaced)
  1234. (effects (font (size 1.27 1.27)) (justify right))
  1235. (uuid ff4e1de2-4ee3-4f27-a59e-b232c59b0357)
  1236. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.9268 30.4006 0)
  1237. (effects (font (size 1.27 1.27)) (justify right) hide)
  1238. )
  1239. )
  1240. (symbol (lib_id "power:+5V") (at 204.47 203.2 0) (unit 1)
  1241. (in_bom yes) (on_board yes) (fields_autoplaced)
  1242. (uuid 043ad689-2e87-4320-9ab5-d7d923bbc16e)
  1243. (property "Reference" "#PWR0264" (id 0) (at 204.47 207.01 0)
  1244. (effects (font (size 1.27 1.27)) hide)
  1245. )
  1246. (property "Value" "+5V" (id 1) (at 204.47 198.12 0))
  1247. (property "Footprint" "" (id 2) (at 204.47 203.2 0)
  1248. (effects (font (size 1.27 1.27)) hide)
  1249. )
  1250. (property "Datasheet" "" (id 3) (at 204.47 203.2 0)
  1251. (effects (font (size 1.27 1.27)) hide)
  1252. )
  1253. (pin "1" (uuid 57c84f51-b50a-4548-bdec-981c6919a219))
  1254. )
  1255. (symbol (lib_id "power:GND") (at 199.39 105.41 0) (unit 1)
  1256. (in_bom yes) (on_board yes) (fields_autoplaced)
  1257. (uuid 094d4e2b-4f19-4845-b264-9301d0108584)
  1258. (property "Reference" "#PWR0259" (id 0) (at 199.39 111.76 0)
  1259. (effects (font (size 1.27 1.27)) hide)
  1260. )
  1261. (property "Value" "GND" (id 1) (at 199.39 110.49 0))
  1262. (property "Footprint" "" (id 2) (at 199.39 105.41 0)
  1263. (effects (font (size 1.27 1.27)) hide)
  1264. )
  1265. (property "Datasheet" "" (id 3) (at 199.39 105.41 0)
  1266. (effects (font (size 1.27 1.27)) hide)
  1267. )
  1268. (pin "1" (uuid 6c82f45a-b05c-460b-911e-6615e14115e6))
  1269. )
  1270. (symbol (lib_id "74xx:74LS258") (at 154.94 144.78 0) (unit 1)
  1271. (in_bom yes) (on_board yes) (fields_autoplaced)
  1272. (uuid 0a7bb736-dc7d-4a3b-9e1f-b89eb97c7d9e)
  1273. (property "Reference" "U72" (id 0) (at 156.9594 121.92 0)
  1274. (effects (font (size 1.27 1.27)) (justify left))
  1275. )
  1276. (property "Value" "74F258" (id 1) (at 156.9594 124.46 0)
  1277. (effects (font (size 1.27 1.27)) (justify left))
  1278. )
  1279. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (id 2) (at 154.94 144.78 0)
  1280. (effects (font (size 1.27 1.27)) hide)
  1281. )
  1282. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS258" (id 3) (at 154.94 144.78 0)
  1283. (effects (font (size 1.27 1.27)) hide)
  1284. )
  1285. (pin "1" (uuid de1dfb3b-bc79-4562-ae95-95770c666288))
  1286. (pin "10" (uuid f472ff55-cad6-46a1-bb3f-8c955212c663))
  1287. (pin "11" (uuid 40d3a673-2cc6-40dd-8100-4dce83486350))
  1288. (pin "12" (uuid 9e71fd69-aed6-42a4-a1a4-28e5f96abc36))
  1289. (pin "13" (uuid e7875da4-66de-4b53-80a8-45a66c09e0be))
  1290. (pin "14" (uuid 4e69555c-7f59-4714-9d96-0909dda9b9bc))
  1291. (pin "15" (uuid 0ed4de65-b029-4383-9146-409f0c36914a))
  1292. (pin "16" (uuid e48ce2b5-cf62-45a7-872e-e634ad93f07a))
  1293. (pin "2" (uuid 6d43cbff-b6e5-4de6-9bf1-89f6c19d1d47))
  1294. (pin "3" (uuid 2918d6bf-063c-4b58-81cf-7e65d1a74389))
  1295. (pin "4" (uuid bcc84537-14d5-41cf-9d3e-ea6716bd1e44))
  1296. (pin "5" (uuid b0662ae0-d29c-4dd7-9fbc-fe3dd362258b))
  1297. (pin "6" (uuid 60dab043-6411-4236-890d-9abc2ca54371))
  1298. (pin "7" (uuid 36c47078-19a2-412d-84fb-82a279ba6282))
  1299. (pin "8" (uuid 3fb19386-ee35-470a-a481-150cca86dceb))
  1300. (pin "9" (uuid 37709c32-a8eb-4f98-a51b-f747221ef2c4))
  1301. )
  1302. (symbol (lib_id "power:+5V") (at 199.39 69.85 0) (unit 1)
  1303. (in_bom yes) (on_board yes) (fields_autoplaced)
  1304. (uuid 18304036-4c78-4790-873c-979dd6b8bac6)
  1305. (property "Reference" "#PWR0252" (id 0) (at 199.39 73.66 0)
  1306. (effects (font (size 1.27 1.27)) hide)
  1307. )
  1308. (property "Value" "+5V" (id 1) (at 199.39 64.77 0))
  1309. (property "Footprint" "" (id 2) (at 199.39 69.85 0)
  1310. (effects (font (size 1.27 1.27)) hide)
  1311. )
  1312. (property "Datasheet" "" (id 3) (at 199.39 69.85 0)
  1313. (effects (font (size 1.27 1.27)) hide)
  1314. )
  1315. (pin "1" (uuid 70327086-00df-43cf-af92-199ed9b584b7))
  1316. )
  1317. (symbol (lib_id "74xx:74LS258") (at 204.47 227.33 0) (unit 1)
  1318. (in_bom yes) (on_board yes) (fields_autoplaced)
  1319. (uuid 1cc8a814-3e6d-4cef-8eab-54573ad680c1)
  1320. (property "Reference" "U73" (id 0) (at 206.4894 204.47 0)
  1321. (effects (font (size 1.27 1.27)) (justify left))
  1322. )
  1323. (property "Value" "74F258" (id 1) (at 206.4894 207.01 0)
  1324. (effects (font (size 1.27 1.27)) (justify left))
  1325. )
  1326. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (id 2) (at 204.47 227.33 0)
  1327. (effects (font (size 1.27 1.27)) hide)
  1328. )
  1329. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS258" (id 3) (at 204.47 227.33 0)
  1330. (effects (font (size 1.27 1.27)) hide)
  1331. )
  1332. (pin "1" (uuid e346a1dc-b48c-455d-b153-c2cca0933075))
  1333. (pin "10" (uuid 37169f34-2f1b-4899-b214-e3c1ae6aae0d))
  1334. (pin "11" (uuid e263dde9-cd03-4f0f-a3fc-6406e482ed5c))
  1335. (pin "12" (uuid 12185561-4804-4a2b-8e4c-cb9ac8b7cde9))
  1336. (pin "13" (uuid b718297f-cab4-4dcd-8022-11264fb36ebc))
  1337. (pin "14" (uuid 767509b6-1454-49c7-9e35-6a6706eebcdd))
  1338. (pin "15" (uuid f903dfb0-c967-405e-910a-531f917d6361))
  1339. (pin "16" (uuid 055b24a9-0d81-44ad-b54e-0aa15db07d2e))
  1340. (pin "2" (uuid 2b32b51b-f6f7-4807-80f2-51ccae6cabf2))
  1341. (pin "3" (uuid 5e49740e-6367-4a5e-9a8b-e91f913c6025))
  1342. (pin "4" (uuid 78d9e800-fc1f-4a2e-a05f-69659aa7e6a4))
  1343. (pin "5" (uuid 74b59efc-519e-43ee-9972-8263bb12f701))
  1344. (pin "6" (uuid 88010ea4-1297-48f3-baf0-4e146e0d4365))
  1345. (pin "7" (uuid 60dedc71-e44b-43e0-b620-dc8a0e98c2ef))
  1346. (pin "8" (uuid 86519f63-2513-4c8b-a800-37d08f0f3619))
  1347. (pin "9" (uuid e8e660a0-2904-40bd-b47b-f1900e739e54))
  1348. )
  1349. (symbol (lib_id "74xx:74LS393") (at 154.94 196.85 0) (unit 1)
  1350. (in_bom yes) (on_board yes) (fields_autoplaced)
  1351. (uuid 26dd7d36-f4df-4c86-87fc-be71c5cc6a6a)
  1352. (property "Reference" "U71" (id 0) (at 154.94 186.69 0))
  1353. (property "Value" "74LS393" (id 1) (at 154.94 189.23 0))
  1354. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 154.94 196.85 0)
  1355. (effects (font (size 1.27 1.27)) hide)
  1356. )
  1357. (property "Datasheet" "74xx\\74LS393.pdf" (id 3) (at 154.94 196.85 0)
  1358. (effects (font (size 1.27 1.27)) hide)
  1359. )
  1360. (pin "1" (uuid 46778c79-6766-4148-ac2e-9aca22a0fdbf))
  1361. (pin "2" (uuid 3b4f5e5d-e14d-4097-ab6c-7aed00d7e6a9))
  1362. (pin "3" (uuid 56f1d05b-1aa5-49b7-9c26-d044953f4aa8))
  1363. (pin "4" (uuid a5a546a8-eb32-45c2-80f1-6a2e8ae4c326))
  1364. (pin "5" (uuid 104761ac-0e06-4571-b4e8-7c16bbaa40d6))
  1365. (pin "6" (uuid 457ac6c9-fca6-4429-a5de-8028a48fa66e))
  1366. (pin "10" (uuid 09f0525c-2c64-4efe-99f6-c38363126c2f))
  1367. (pin "11" (uuid 2a9f5844-1929-4102-8281-e16c935450cb))
  1368. (pin "12" (uuid 3ae44eec-65ae-454c-8c13-9009311a0917))
  1369. (pin "13" (uuid ac2beed8-cfa3-469d-a9c1-6607f0bbd152))
  1370. (pin "8" (uuid 80d6aa16-c07e-41cd-b96a-28c4d75286ed))
  1371. (pin "9" (uuid 4ac190ea-e04f-4f13-8816-86ffc7281a36))
  1372. (pin "14" (uuid 70ede042-af34-412b-adf7-72b6359f8eb8))
  1373. (pin "7" (uuid 7739b48a-47c2-43b4-bc8f-4c8a212e3106))
  1374. )
  1375. (symbol (lib_id "power:GND") (at 137.16 205.74 0) (unit 1)
  1376. (in_bom yes) (on_board yes) (fields_autoplaced)
  1377. (uuid 27483a3c-25e0-45f0-9bf0-053ced6bb75a)
  1378. (property "Reference" "#PWR0255" (id 0) (at 137.16 212.09 0)
  1379. (effects (font (size 1.27 1.27)) hide)
  1380. )
  1381. (property "Value" "GND" (id 1) (at 137.16 210.82 0))
  1382. (property "Footprint" "" (id 2) (at 137.16 205.74 0)
  1383. (effects (font (size 1.27 1.27)) hide)
  1384. )
  1385. (property "Datasheet" "" (id 3) (at 137.16 205.74 0)
  1386. (effects (font (size 1.27 1.27)) hide)
  1387. )
  1388. (pin "1" (uuid 0e7239d0-2c74-4b4d-bd78-d9a007df69be))
  1389. )
  1390. (symbol (lib_id "Device:R_Small") (at 223.52 35.56 90) (unit 1)
  1391. (in_bom yes) (on_board yes)
  1392. (uuid 2a48a92a-2dda-4d73-8653-9872387b507d)
  1393. (property "Reference" "R370-3" (id 0) (at 217.17 34.29 90))
  1394. (property "Value" "22" (id 1) (at 229.87 34.29 90))
  1395. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 223.52 35.56 0)
  1396. (effects (font (size 1.27 1.27)) hide)
  1397. )
  1398. (property "Datasheet" "~" (id 3) (at 223.52 35.56 0)
  1399. (effects (font (size 1.27 1.27)) hide)
  1400. )
  1401. (pin "1" (uuid 12802af1-d470-4144-be9f-0644f451a0a8))
  1402. (pin "2" (uuid 99dd4696-d1d2-4938-bca3-f66b0716db9f))
  1403. )
  1404. (symbol (lib_id "Device:R_Small") (at 223.52 83.82 90) (unit 1)
  1405. (in_bom yes) (on_board yes)
  1406. (uuid 3e057d37-fd2d-494e-8f01-c5aad0137e43)
  1407. (property "Reference" "R370-2" (id 0) (at 217.17 82.55 90))
  1408. (property "Value" "22" (id 1) (at 229.87 82.55 90))
  1409. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 223.52 83.82 0)
  1410. (effects (font (size 1.27 1.27)) hide)
  1411. )
  1412. (property "Datasheet" "~" (id 3) (at 223.52 83.82 0)
  1413. (effects (font (size 1.27 1.27)) hide)
  1414. )
  1415. (pin "1" (uuid 5e0177de-0e90-4874-8609-61de46ec48fa))
  1416. (pin "2" (uuid edb4db3a-c772-49d4-8643-1fc11cb7d812))
  1417. )
  1418. (symbol (lib_id "Device:R_Small") (at 223.52 78.74 90) (unit 1)
  1419. (in_bom yes) (on_board yes)
  1420. (uuid 43726bcc-6e5c-4277-b5f7-6d86815b78a9)
  1421. (property "Reference" "R372-2" (id 0) (at 217.17 77.47 90))
  1422. (property "Value" "22" (id 1) (at 229.87 77.47 90))
  1423. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 223.52 78.74 0)
  1424. (effects (font (size 1.27 1.27)) hide)
  1425. )
  1426. (property "Datasheet" "~" (id 3) (at 223.52 78.74 0)
  1427. (effects (font (size 1.27 1.27)) hide)
  1428. )
  1429. (pin "1" (uuid dcde06fb-c3b6-43e7-a1b4-350499c1d3c7))
  1430. (pin "2" (uuid 76e9f2d6-7390-4953-b908-e8bab3f1f761))
  1431. )
  1432. (symbol (lib_id "Device:R_Small") (at 223.52 81.28 90) (unit 1)
  1433. (in_bom yes) (on_board yes)
  1434. (uuid 45361732-9b43-4bba-b4ba-062f3102a9d8)
  1435. (property "Reference" "R371-2" (id 0) (at 217.17 80.01 90))
  1436. (property "Value" "22" (id 1) (at 229.87 80.01 90))
  1437. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 223.52 81.28 0)
  1438. (effects (font (size 1.27 1.27)) hide)
  1439. )
  1440. (property "Datasheet" "~" (id 3) (at 223.52 81.28 0)
  1441. (effects (font (size 1.27 1.27)) hide)
  1442. )
  1443. (pin "1" (uuid 5d3263b9-4893-4525-acaf-ed73abc28886))
  1444. (pin "2" (uuid 46d33186-0b82-4260-a9da-25ddefd13220))
  1445. )
  1446. (symbol (lib_id "Device:R_Small") (at 223.52 30.48 90) (unit 1)
  1447. (in_bom yes) (on_board yes)
  1448. (uuid 47f23170-2402-48db-8350-1c40a8a083ff)
  1449. (property "Reference" "R372-3" (id 0) (at 217.17 29.21 90))
  1450. (property "Value" "22" (id 1) (at 229.87 29.21 90))
  1451. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 223.52 30.48 0)
  1452. (effects (font (size 1.27 1.27)) hide)
  1453. )
  1454. (property "Datasheet" "~" (id 3) (at 223.52 30.48 0)
  1455. (effects (font (size 1.27 1.27)) hide)
  1456. )
  1457. (pin "1" (uuid f8a7031d-623a-4931-9c57-de12c61ea1de))
  1458. (pin "2" (uuid 4600b3c9-b910-425a-a6f0-8f6cac101af8))
  1459. )
  1460. (symbol (lib_id "power:GND") (at 184.15 102.87 0) (unit 1)
  1461. (in_bom yes) (on_board yes) (fields_autoplaced)
  1462. (uuid 50245255-4f03-4dc6-966c-8f845e70ccf5)
  1463. (property "Reference" "#PWR0258" (id 0) (at 184.15 109.22 0)
  1464. (effects (font (size 1.27 1.27)) hide)
  1465. )
  1466. (property "Value" "GND" (id 1) (at 184.15 107.95 0))
  1467. (property "Footprint" "" (id 2) (at 184.15 102.87 0)
  1468. (effects (font (size 1.27 1.27)) hide)
  1469. )
  1470. (property "Datasheet" "" (id 3) (at 184.15 102.87 0)
  1471. (effects (font (size 1.27 1.27)) hide)
  1472. )
  1473. (pin "1" (uuid 3c7de8a6-a795-45d5-8da5-431ab281cd1a))
  1474. )
  1475. (symbol (lib_id "power:+5V") (at 179.07 43.18 0) (unit 1)
  1476. (in_bom yes) (on_board yes)
  1477. (uuid 512f878b-d065-4ff8-a280-e88fabfef92f)
  1478. (property "Reference" "#PWR0254" (id 0) (at 179.07 46.99 0)
  1479. (effects (font (size 1.27 1.27)) hide)
  1480. )
  1481. (property "Value" "+5V" (id 1) (at 176.53 40.64 0))
  1482. (property "Footprint" "" (id 2) (at 179.07 43.18 0)
  1483. (effects (font (size 1.27 1.27)) hide)
  1484. )
  1485. (property "Datasheet" "" (id 3) (at 179.07 43.18 0)
  1486. (effects (font (size 1.27 1.27)) hide)
  1487. )
  1488. (pin "1" (uuid ab313ad2-a9df-4bf2-aff5-11cbb96852c0))
  1489. )
  1490. (symbol (lib_id "power:GND") (at 73.66 123.19 0) (unit 1)
  1491. (in_bom yes) (on_board yes) (fields_autoplaced)
  1492. (uuid 59cdaf23-e5e6-4728-a3a2-8478badd58dd)
  1493. (property "Reference" "#PWR0260" (id 0) (at 73.66 129.54 0)
  1494. (effects (font (size 1.27 1.27)) hide)
  1495. )
  1496. (property "Value" "GND" (id 1) (at 73.66 128.27 0))
  1497. (property "Footprint" "" (id 2) (at 73.66 123.19 0)
  1498. (effects (font (size 1.27 1.27)) hide)
  1499. )
  1500. (property "Datasheet" "" (id 3) (at 73.66 123.19 0)
  1501. (effects (font (size 1.27 1.27)) hide)
  1502. )
  1503. (pin "1" (uuid 17365364-67ce-484f-b7b2-52c293f6eae9))
  1504. )
  1505. (symbol (lib_id "power:GND") (at 154.94 171.45 0) (unit 1)
  1506. (in_bom yes) (on_board yes) (fields_autoplaced)
  1507. (uuid 6a4dd903-55b1-44df-9a88-f525301dba73)
  1508. (property "Reference" "#PWR0256" (id 0) (at 154.94 177.8 0)
  1509. (effects (font (size 1.27 1.27)) hide)
  1510. )
  1511. (property "Value" "GND" (id 1) (at 154.94 176.53 0))
  1512. (property "Footprint" "" (id 2) (at 154.94 171.45 0)
  1513. (effects (font (size 1.27 1.27)) hide)
  1514. )
  1515. (property "Datasheet" "" (id 3) (at 154.94 171.45 0)
  1516. (effects (font (size 1.27 1.27)) hide)
  1517. )
  1518. (pin "1" (uuid 6336cf23-9bdf-41e9-9918-5bb8d37f1f7b))
  1519. )
  1520. (symbol (lib_id "74xx:74LS138") (at 199.39 38.1 0) (unit 1)
  1521. (in_bom yes) (on_board yes) (fields_autoplaced)
  1522. (uuid 6b2ebbba-d5d7-4dbf-be1e-4701311a43d1)
  1523. (property "Reference" "U75" (id 0) (at 201.4094 22.86 0)
  1524. (effects (font (size 1.27 1.27)) (justify left))
  1525. )
  1526. (property "Value" "74F138" (id 1) (at 201.4094 25.4 0)
  1527. (effects (font (size 1.27 1.27)) (justify left))
  1528. )
  1529. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (id 2) (at 199.39 38.1 0)
  1530. (effects (font (size 1.27 1.27)) hide)
  1531. )
  1532. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS138" (id 3) (at 199.39 38.1 0)
  1533. (effects (font (size 1.27 1.27)) hide)
  1534. )
  1535. (pin "1" (uuid 32633543-c555-4ad4-bb60-73ad625b1441))
  1536. (pin "10" (uuid 0132cfdd-3cfc-4c26-9e91-9bfe7d609082))
  1537. (pin "11" (uuid 3f44da14-4f77-4e1b-b695-4433eff6212d))
  1538. (pin "12" (uuid 767730fb-5859-494d-827e-b4d7130ed2e6))
  1539. (pin "13" (uuid 1c6c9990-1059-4ebb-bbcd-3d05a4949daf))
  1540. (pin "14" (uuid 4b4600c1-257c-4667-bf27-11f66446cece))
  1541. (pin "15" (uuid 48e1cd76-1a3c-48ca-b36c-da581390ac3c))
  1542. (pin "16" (uuid a69ff2a6-e683-4415-92d0-c62866c8398e))
  1543. (pin "2" (uuid fbebb5b2-fd6b-4995-928c-ea7817520f7d))
  1544. (pin "3" (uuid f4ee65fe-9c50-420e-82f4-8d6110d08eb6))
  1545. (pin "4" (uuid 7ee6d668-3d70-4da4-9c02-2d7f46ece26b))
  1546. (pin "5" (uuid 41599d95-c249-4ac6-9c31-4cb98a4f39d5))
  1547. (pin "6" (uuid 4d8e0a9f-8c48-429c-bfbd-fa8000e6244d))
  1548. (pin "7" (uuid da56a779-e3e9-48c9-bfea-ab1413384b47))
  1549. (pin "8" (uuid b99ab201-f7c6-4a17-a98d-2aa02f5328a0))
  1550. (pin "9" (uuid 0ffcefb3-db63-4b7b-8ca9-524b49ed860f))
  1551. )
  1552. (symbol (lib_id "power:+5V") (at 199.39 21.59 0) (unit 1)
  1553. (in_bom yes) (on_board yes) (fields_autoplaced)
  1554. (uuid 6e7a6390-136b-4bb1-ae3d-982c4bbf3442)
  1555. (property "Reference" "#PWR0250" (id 0) (at 199.39 25.4 0)
  1556. (effects (font (size 1.27 1.27)) hide)
  1557. )
  1558. (property "Value" "+5V" (id 1) (at 199.39 16.51 0))
  1559. (property "Footprint" "" (id 2) (at 199.39 21.59 0)
  1560. (effects (font (size 1.27 1.27)) hide)
  1561. )
  1562. (property "Datasheet" "" (id 3) (at 199.39 21.59 0)
  1563. (effects (font (size 1.27 1.27)) hide)
  1564. )
  1565. (pin "1" (uuid 471555a0-1368-45e0-ac2f-f49a160f4b9e))
  1566. )
  1567. (symbol (lib_id "power:+5V") (at 154.94 120.65 0) (unit 1)
  1568. (in_bom yes) (on_board yes) (fields_autoplaced)
  1569. (uuid 7edfd04c-e858-4513-8a28-48c9416bbb9d)
  1570. (property "Reference" "#PWR0261" (id 0) (at 154.94 124.46 0)
  1571. (effects (font (size 1.27 1.27)) hide)
  1572. )
  1573. (property "Value" "+5V" (id 1) (at 154.94 115.57 0))
  1574. (property "Footprint" "" (id 2) (at 154.94 120.65 0)
  1575. (effects (font (size 1.27 1.27)) hide)
  1576. )
  1577. (property "Datasheet" "" (id 3) (at 154.94 120.65 0)
  1578. (effects (font (size 1.27 1.27)) hide)
  1579. )
  1580. (pin "1" (uuid 780ee84c-4391-4ca9-9074-75debd423782))
  1581. )
  1582. (symbol (lib_id "power:GND") (at 187.96 254 0) (unit 1)
  1583. (in_bom yes) (on_board yes) (fields_autoplaced)
  1584. (uuid 8ff35b35-e8cf-4b64-b4c8-3dfc22c47c26)
  1585. (property "Reference" "#PWR0262" (id 0) (at 187.96 260.35 0)
  1586. (effects (font (size 1.27 1.27)) hide)
  1587. )
  1588. (property "Value" "GND" (id 1) (at 187.96 259.08 0))
  1589. (property "Footprint" "" (id 2) (at 187.96 254 0)
  1590. (effects (font (size 1.27 1.27)) hide)
  1591. )
  1592. (property "Datasheet" "" (id 3) (at 187.96 254 0)
  1593. (effects (font (size 1.27 1.27)) hide)
  1594. )
  1595. (pin "1" (uuid 472a6d87-718e-4567-b1c8-98c11fb60da2))
  1596. )
  1597. (symbol (lib_id "power:GND") (at 204.47 254 0) (unit 1)
  1598. (in_bom yes) (on_board yes) (fields_autoplaced)
  1599. (uuid 9603e8d5-ea40-4277-b91c-9f7f74adde98)
  1600. (property "Reference" "#PWR0263" (id 0) (at 204.47 260.35 0)
  1601. (effects (font (size 1.27 1.27)) hide)
  1602. )
  1603. (property "Value" "GND" (id 1) (at 204.47 259.08 0))
  1604. (property "Footprint" "" (id 2) (at 204.47 254 0)
  1605. (effects (font (size 1.27 1.27)) hide)
  1606. )
  1607. (property "Datasheet" "" (id 3) (at 204.47 254 0)
  1608. (effects (font (size 1.27 1.27)) hide)
  1609. )
  1610. (pin "1" (uuid 3af219ee-2c53-4687-82f0-b22269b4ea2d))
  1611. )
  1612. (symbol (lib_id "power:GND") (at 185.42 54.61 0) (unit 1)
  1613. (in_bom yes) (on_board yes) (fields_autoplaced)
  1614. (uuid b976b1ba-a22d-4afa-b463-1916fe874fc2)
  1615. (property "Reference" "#PWR0253" (id 0) (at 185.42 60.96 0)
  1616. (effects (font (size 1.27 1.27)) hide)
  1617. )
  1618. (property "Value" "GND" (id 1) (at 185.42 59.69 0))
  1619. (property "Footprint" "" (id 2) (at 185.42 54.61 0)
  1620. (effects (font (size 1.27 1.27)) hide)
  1621. )
  1622. (property "Datasheet" "" (id 3) (at 185.42 54.61 0)
  1623. (effects (font (size 1.27 1.27)) hide)
  1624. )
  1625. (pin "1" (uuid afb460ce-9df0-41b0-a14e-0766e9e6d9e6))
  1626. )
  1627. (symbol (lib_id "74xx:74LS138") (at 199.39 86.36 0) (unit 1)
  1628. (in_bom yes) (on_board yes) (fields_autoplaced)
  1629. (uuid c290687a-f01b-4f9e-8925-c096242b26c6)
  1630. (property "Reference" "U74" (id 0) (at 201.4094 71.12 0)
  1631. (effects (font (size 1.27 1.27)) (justify left))
  1632. )
  1633. (property "Value" "74F138" (id 1) (at 201.4094 73.66 0)
  1634. (effects (font (size 1.27 1.27)) (justify left))
  1635. )
  1636. (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (id 2) (at 199.39 86.36 0)
  1637. (effects (font (size 1.27 1.27)) hide)
  1638. )
  1639. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS138" (id 3) (at 199.39 86.36 0)
  1640. (effects (font (size 1.27 1.27)) hide)
  1641. )
  1642. (pin "1" (uuid b518639a-cadb-449f-b7e4-7c49aee1de31))
  1643. (pin "10" (uuid 92f88b28-5828-4549-b7c6-3f69bc6ce639))
  1644. (pin "11" (uuid 7f81627f-aa9b-40d5-a4b6-f33123e67003))
  1645. (pin "12" (uuid 47dd31d0-4dee-476b-aacf-9ffbb5c6bac6))
  1646. (pin "13" (uuid 713d9837-0618-4d0a-bbaa-34c2a34d3bbb))
  1647. (pin "14" (uuid 0facd18b-3659-4fd3-8342-5804267e6794))
  1648. (pin "15" (uuid 7d4632cd-bed5-418b-8cad-d89cf6a1a953))
  1649. (pin "16" (uuid ad12dc87-145d-494a-8871-0cb4c4e4452b))
  1650. (pin "2" (uuid 11d605da-084b-48c3-8238-14f869b675c6))
  1651. (pin "3" (uuid 460d31b4-3d9b-4790-9448-60d34c3f0b14))
  1652. (pin "4" (uuid e84ef193-6692-48b2-843e-1067e95e132e))
  1653. (pin "5" (uuid 65b87858-6a21-40d2-98c1-c2b80e48bc2a))
  1654. (pin "6" (uuid c5cd8ace-73b3-4e57-a09d-a38a6e5ad94b))
  1655. (pin "7" (uuid ce5362e7-8723-4d53-829c-67c784c9d322))
  1656. (pin "8" (uuid 736e6646-e90c-440f-ade9-cccd127500ea))
  1657. (pin "9" (uuid b5887615-8864-436c-bb09-249c3caf3a51))
  1658. )
  1659. (symbol (lib_id "Device:R_Small") (at 223.52 38.1 90) (unit 1)
  1660. (in_bom yes) (on_board yes)
  1661. (uuid c864f65c-1eb8-44b5-a6a8-7af95c2dc7c6)
  1662. (property "Reference" "R369-2" (id 0) (at 217.17 36.83 90))
  1663. (property "Value" "22" (id 1) (at 229.87 36.83 90))
  1664. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 223.52 38.1 0)
  1665. (effects (font (size 1.27 1.27)) hide)
  1666. )
  1667. (property "Datasheet" "~" (id 3) (at 223.52 38.1 0)
  1668. (effects (font (size 1.27 1.27)) hide)
  1669. )
  1670. (pin "1" (uuid 2bc26398-6c3d-4d3d-b616-35da3c01d964))
  1671. (pin "2" (uuid 06cb552e-f0f9-4c1a-a1d9-b4230be9b298))
  1672. )
  1673. (symbol (lib_id "74xx:74LS393") (at 91.44 114.3 0) (unit 2)
  1674. (in_bom yes) (on_board yes) (fields_autoplaced)
  1675. (uuid caf1b94d-d90c-4447-b8f8-20fddace68c3)
  1676. (property "Reference" "U71" (id 0) (at 91.44 104.14 0))
  1677. (property "Value" "74LS393" (id 1) (at 91.44 106.68 0))
  1678. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 91.44 114.3 0)
  1679. (effects (font (size 1.27 1.27)) hide)
  1680. )
  1681. (property "Datasheet" "74xx\\74LS393.pdf" (id 3) (at 91.44 114.3 0)
  1682. (effects (font (size 1.27 1.27)) hide)
  1683. )
  1684. (pin "1" (uuid cb878f57-da6a-4fc0-9121-db7a3436df40))
  1685. (pin "2" (uuid 669b0f85-983e-461b-b30c-a3f262d21edd))
  1686. (pin "3" (uuid b0c56d7f-bfd7-41eb-b046-d822c93980e7))
  1687. (pin "4" (uuid 460a2c41-89e6-4a10-b53d-92491123bb06))
  1688. (pin "5" (uuid 6537263d-c891-4afa-a85e-5c0433b2284e))
  1689. (pin "6" (uuid ca67070e-da15-4b81-82b6-dba0bebaa94f))
  1690. (pin "10" (uuid 3e90dc48-9a77-4cdd-8bab-639e3b25a4f8))
  1691. (pin "11" (uuid 9e6ea654-c79f-43fe-aaea-8e727b5ca946))
  1692. (pin "12" (uuid e97606a7-f9c2-404e-8469-b6ec47269efe))
  1693. (pin "13" (uuid f085cab5-8e49-49de-a250-697fe7116eb9))
  1694. (pin "8" (uuid 269bbe17-efd5-49be-9619-2cc4267142e1))
  1695. (pin "9" (uuid 8baaa1ed-6758-48f2-8887-37a20dfc98d8))
  1696. (pin "14" (uuid a9665900-6e68-471f-ae8e-79cc80141209))
  1697. (pin "7" (uuid e01dbe07-2fc3-4a15-90e8-7b0359342581))
  1698. )
  1699. (symbol (lib_id "Device:R_Small") (at 223.52 33.02 90) (unit 1)
  1700. (in_bom yes) (on_board yes)
  1701. (uuid d38a0b86-da93-486f-8f24-00851b1c1e35)
  1702. (property "Reference" "R371-1" (id 0) (at 217.17 31.75 90))
  1703. (property "Value" "22" (id 1) (at 229.87 31.75 90))
  1704. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 223.52 33.02 0)
  1705. (effects (font (size 1.27 1.27)) hide)
  1706. )
  1707. (property "Datasheet" "~" (id 3) (at 223.52 33.02 0)
  1708. (effects (font (size 1.27 1.27)) hide)
  1709. )
  1710. (pin "1" (uuid 03afcc17-e621-4126-a2e6-9c4e0751e227))
  1711. (pin "2" (uuid 20d4161c-bd34-40e2-ab1f-bfcf39d10838))
  1712. )
  1713. (symbol (lib_id "Device:R_Small") (at 223.52 86.36 90) (unit 1)
  1714. (in_bom yes) (on_board yes)
  1715. (uuid d74638b1-5d04-4b14-8ce0-e225c571d3b5)
  1716. (property "Reference" "R369-1" (id 0) (at 217.17 85.09 90))
  1717. (property "Value" "22" (id 1) (at 229.87 85.09 90))
  1718. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 223.52 86.36 0)
  1719. (effects (font (size 1.27 1.27)) hide)
  1720. )
  1721. (property "Datasheet" "~" (id 3) (at 223.52 86.36 0)
  1722. (effects (font (size 1.27 1.27)) hide)
  1723. )
  1724. (pin "1" (uuid 222df57a-a4d4-40fb-a772-7ffae3ec2deb))
  1725. (pin "2" (uuid ea8b7670-8176-49c8-a148-9dce61286a63))
  1726. )
  1727. (symbol (lib_id "power:GND") (at 199.39 57.15 0) (unit 1)
  1728. (in_bom yes) (on_board yes) (fields_autoplaced)
  1729. (uuid f163dddd-320b-48fb-bb24-7a26e5b67e86)
  1730. (property "Reference" "#PWR0251" (id 0) (at 199.39 63.5 0)
  1731. (effects (font (size 1.27 1.27)) hide)
  1732. )
  1733. (property "Value" "GND" (id 1) (at 199.39 62.23 0))
  1734. (property "Footprint" "" (id 2) (at 199.39 57.15 0)
  1735. (effects (font (size 1.27 1.27)) hide)
  1736. )
  1737. (property "Datasheet" "" (id 3) (at 199.39 57.15 0)
  1738. (effects (font (size 1.27 1.27)) hide)
  1739. )
  1740. (pin "1" (uuid 60ba3f28-8f3c-4c35-99fc-38d37d19709f))
  1741. )
  1742. (symbol (lib_id "power:GND") (at 138.43 171.45 0) (unit 1)
  1743. (in_bom yes) (on_board yes) (fields_autoplaced)
  1744. (uuid f65196ff-21b3-4d40-9f69-21f349ee8e16)
  1745. (property "Reference" "#PWR0257" (id 0) (at 138.43 177.8 0)
  1746. (effects (font (size 1.27 1.27)) hide)
  1747. )
  1748. (property "Value" "GND" (id 1) (at 138.43 176.53 0))
  1749. (property "Footprint" "" (id 2) (at 138.43 171.45 0)
  1750. (effects (font (size 1.27 1.27)) hide)
  1751. )
  1752. (property "Datasheet" "" (id 3) (at 138.43 171.45 0)
  1753. (effects (font (size 1.27 1.27)) hide)
  1754. )
  1755. (pin "1" (uuid b14ead2f-7e9e-4ae6-be1a-ab6c16465218))
  1756. )
  1757. )