smartaidmagnum.kicad_pcb 267 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455
  1. (kicad_pcb (version 20221018) (generator pcbnew)
  2. (general
  3. (thickness 1.6)
  4. )
  5. (paper "A4")
  6. (layers
  7. (0 "F.Cu" signal)
  8. (31 "B.Cu" signal)
  9. (32 "B.Adhes" user "B.Adhesive")
  10. (33 "F.Adhes" user "F.Adhesive")
  11. (34 "B.Paste" user)
  12. (35 "F.Paste" user)
  13. (36 "B.SilkS" user "B.Silkscreen")
  14. (37 "F.SilkS" user "F.Silkscreen")
  15. (38 "B.Mask" user)
  16. (39 "F.Mask" user)
  17. (40 "Dwgs.User" user "User.Drawings")
  18. (41 "Cmts.User" user "User.Comments")
  19. (42 "Eco1.User" user "User.Eco1")
  20. (43 "Eco2.User" user "User.Eco2")
  21. (44 "Edge.Cuts" user)
  22. (45 "Margin" user)
  23. (46 "B.CrtYd" user "B.Courtyard")
  24. (47 "F.CrtYd" user "F.Courtyard")
  25. (48 "B.Fab" user)
  26. (49 "F.Fab" user)
  27. (50 "User.1" user)
  28. (51 "User.2" user)
  29. (52 "User.3" user)
  30. (53 "User.4" user)
  31. (54 "User.5" user)
  32. (55 "User.6" user)
  33. (56 "User.7" user)
  34. (57 "User.8" user)
  35. (58 "User.9" user)
  36. )
  37. (setup
  38. (pad_to_mask_clearance 0)
  39. (pcbplotparams
  40. (layerselection 0x00010fc_ffffffff)
  41. (plot_on_all_layers_selection 0x0000000_00000000)
  42. (disableapertmacros false)
  43. (usegerberextensions false)
  44. (usegerberattributes true)
  45. (usegerberadvancedattributes true)
  46. (creategerberjobfile true)
  47. (dashed_line_dash_ratio 12.000000)
  48. (dashed_line_gap_ratio 3.000000)
  49. (svgprecision 4)
  50. (plotframeref false)
  51. (viasonmask false)
  52. (mode 1)
  53. (useauxorigin false)
  54. (hpglpennumber 1)
  55. (hpglpenspeed 20)
  56. (hpglpendiameter 15.000000)
  57. (dxfpolygonmode true)
  58. (dxfimperialunits true)
  59. (dxfusepcbnewfont true)
  60. (psnegative false)
  61. (psa4output false)
  62. (plotreference true)
  63. (plotvalue true)
  64. (plotinvisibletext false)
  65. (sketchpadsonfab false)
  66. (subtractmaskfromsilk false)
  67. (outputformat 1)
  68. (mirror false)
  69. (drillshape 1)
  70. (scaleselection 1)
  71. (outputdirectory "")
  72. )
  73. )
  74. (net 0 "")
  75. (net 1 "VCC")
  76. (net 2 "/A12_128")
  77. (net 3 "/A7")
  78. (net 4 "/A6")
  79. (net 5 "/A5")
  80. (net 6 "/A4")
  81. (net 7 "/A3")
  82. (net 8 "/A2")
  83. (net 9 "/A1")
  84. (net 10 "/A0")
  85. (net 11 "/D4_D0-128_D4-64")
  86. (net 12 "/D1_D1-128_D7-64")
  87. (net 13 "/D2_D2-128_D5-64")
  88. (net 14 "unconnected-(U1-GND-Pad14)")
  89. (net 15 "/D5_D3-128_D1-64")
  90. (net 16 "/D6_D4-128_D6-64")
  91. (net 17 "/D3_D5-128_D3-64")
  92. (net 18 "/D0_D6-128_D0-64")
  93. (net 19 "/D7_D7-128_D2-64")
  94. (net 20 "/CE_128")
  95. (net 21 "/A10")
  96. (net 22 "/A11")
  97. (net 23 "/A9")
  98. (net 24 "/A8")
  99. (net 25 "/A13_128")
  100. (net 26 "unconnected-(U1-VCC-Pad28)")
  101. (net 27 "unconnected-(U2-GND-Pad14)")
  102. (net 28 "/CE_64")
  103. (net 29 "unconnected-(U2-NC-Pad26)")
  104. (net 30 "unconnected-(U2-VCC-Pad28)")
  105. (net 31 "unconnected-(U14-GND-Pad12)")
  106. (net 32 "/SRAM_OE")
  107. (net 33 "/SRAM_CE")
  108. (net 34 "/SRAM_WE")
  109. (net 35 "unconnected-(U14-VCC-Pad24)")
  110. (net 36 "unconnected-(X1--12V-PadA1)")
  111. (net 37 "unconnected-(X1-~{RESIN}-PadA3)")
  112. (net 38 "unconnected-(X1-GND-PadA4)")
  113. (net 39 "/D7")
  114. (net 40 "/D6")
  115. (net 41 "/D5")
  116. (net 42 "/D4")
  117. (net 43 "/D3")
  118. (net 44 "/D2")
  119. (net 45 "/D1")
  120. (net 46 "/D0")
  121. (net 47 "unconnected-(X1-NC-PadA14)")
  122. (net 48 "unconnected-(X1-~{RST}-PadA15)")
  123. (net 49 "unconnected-(X1-~{STATUS}-PadA16)")
  124. (net 50 "unconnected-(X1-~{INP}-PadA17)")
  125. (net 51 "unconnected-(X1-~{C4}-PadA18)")
  126. (net 52 "unconnected-(X1-~{C3}-PadA19)")
  127. (net 53 "unconnected-(X1-~{C2}-PadA20)")
  128. (net 54 "unconnected-(X1-~{C1}-PadA21)")
  129. (net 55 "unconnected-(X1-~{OUT}-PadA22)")
  130. (net 56 "unconnected-(X1-~{CS}-PadA23)")
  131. (net 57 "unconnected-(X1-GND-PadA24)")
  132. (net 58 "unconnected-(X1-GND-PadA25)")
  133. (net 59 "unconnected-(X1-GND-PadA26)")
  134. (net 60 "unconnected-(X1-GND-PadA27)")
  135. (net 61 "unconnected-(X1-GND-PadA28)")
  136. (net 62 "unconnected-(X1-GND-PadA29)")
  137. (net 63 "unconnected-(X1-READY-PadA30)")
  138. (net 64 "unconnected-(X1-+5V-PadA31)")
  139. (net 65 "unconnected-(X1-+12V-PadA32)")
  140. (net 66 "unconnected-(X1--12V-PadB1)")
  141. (net 67 "unconnected-(X1-0V-PadB2)")
  142. (net 68 "unconnected-(X1-GND-PadB3)")
  143. (net 69 "/xmemfl")
  144. (net 70 "unconnected-(X1-GND-PadB6)")
  145. (net 71 "unconnected-(X1-GND-PadB7)")
  146. (net 72 "unconnected-(X1-GND-PadB8)")
  147. (net 73 "unconnected-(X1-GND-PadB9)")
  148. (net 74 "unconnected-(X1-GND-PadB10)")
  149. (net 75 "unconnected-(X1-GND-PadB11)")
  150. (net 76 "unconnected-(X1-GND-PadB12)")
  151. (net 77 "unconnected-(X1-~{INT}-PadB13)")
  152. (net 78 "/A15")
  153. (net 79 "/A14")
  154. (net 80 "/A13")
  155. (net 81 "/A12")
  156. (net 82 "unconnected-(X1-NC-PadB30)")
  157. (net 83 "unconnected-(X1-+5V-PadB31)")
  158. (net 84 "unconnected-(X1-+12V-PadB32)")
  159. (net 85 "Net-(Q1-C)")
  160. (net 86 "Net-(Q1-B)")
  161. (net 87 "GND")
  162. (net 88 "Net-(Q2-C)")
  163. (net 89 "Net-(Q2-B)")
  164. (net 90 "Net-(Q3-B)")
  165. (net 91 "/0V")
  166. (net 92 "/OE_EPROM")
  167. (net 93 "/PROM_A6")
  168. (net 94 "unconnected-(U15-GND-Pad8)")
  169. (net 95 "/PROM_Q4")
  170. (net 96 "/NOR_IN_11_2")
  171. (net 97 "/PROM_Q2")
  172. (net 98 "/PROM_Q1")
  173. (net 99 "unconnected-(U15-VCC-Pad16)")
  174. (net 100 "/CLK")
  175. (net 101 "unconnected-(X2--12V-PadA1)")
  176. (net 102 "unconnected-(X2-~{RESIN}-PadA3)")
  177. (net 103 "unconnected-(X2-GND-PadA4)")
  178. (net 104 "unconnected-(X2-NC-PadA14)")
  179. (net 105 "unconnected-(X2-~{RST}-PadA15)")
  180. (net 106 "unconnected-(X2-~{STATUS}-PadA16)")
  181. (net 107 "unconnected-(X2-~{INP}-PadA17)")
  182. (net 108 "unconnected-(X2-~{C4}-PadA18)")
  183. (net 109 "unconnected-(X2-~{C3}-PadA19)")
  184. (net 110 "unconnected-(X2-~{C2}-PadA20)")
  185. (net 111 "unconnected-(X2-~{C1}-PadA21)")
  186. (net 112 "unconnected-(X2-~{OUT}-PadA22)")
  187. (net 113 "unconnected-(X2-~{CS}-PadA23)")
  188. (net 114 "unconnected-(X2-GND-PadA24)")
  189. (net 115 "unconnected-(X2-GND-PadA25)")
  190. (net 116 "unconnected-(X2-GND-PadA26)")
  191. (net 117 "unconnected-(X2-GND-PadA27)")
  192. (net 118 "unconnected-(X2-GND-PadA28)")
  193. (net 119 "unconnected-(X2-GND-PadA29)")
  194. (net 120 "unconnected-(X2-READY-PadA30)")
  195. (net 121 "unconnected-(X2-+5V-PadA31)")
  196. (net 122 "unconnected-(X2-+12V-PadA32)")
  197. (net 123 "unconnected-(X2--12V-PadB1)")
  198. (net 124 "unconnected-(X2-0V-PadB2)")
  199. (net 125 "unconnected-(X2-GND-PadB3)")
  200. (net 126 "/xmemfl_OUT")
  201. (net 127 "unconnected-(X2-GND-PadB6)")
  202. (net 128 "unconnected-(X2-GND-PadB7)")
  203. (net 129 "unconnected-(X2-GND-PadB8)")
  204. (net 130 "unconnected-(X2-GND-PadB9)")
  205. (net 131 "unconnected-(X2-GND-PadB10)")
  206. (net 132 "unconnected-(X2-GND-PadB11)")
  207. (net 133 "unconnected-(X2-GND-PadB12)")
  208. (net 134 "unconnected-(X2-~{INT}-PadB13)")
  209. (net 135 "unconnected-(X2-NC-PadB30)")
  210. (net 136 "unconnected-(X2-+5V-PadB31)")
  211. (net 137 "unconnected-(X2-+12V-PadB32)")
  212. (net 138 "Net-(R1-Pad2)")
  213. (net 139 "Net-(D1-A)")
  214. (net 140 "Net-(BT1-+)")
  215. (net 141 "Net-(U9_E2_L1B-~{Q})")
  216. (net 142 "Net-(U9_E2_L1B-Q)")
  217. (net 143 "Net-(C1-Pad1)")
  218. (net 144 "/OUT_DIR")
  219. (net 145 "unconnected-(U3-GND-Pad10)")
  220. (net 146 "unconnected-(U3-VCC-Pad20)")
  221. (net 147 "/NOR OUT2")
  222. (net 148 "Net-(U5A-Q2)")
  223. (net 149 "Net-(U5A-Q1)")
  224. (net 150 "unconnected-(U4E-GND-Pad7)")
  225. (net 151 "Net-(U5A-Q3)")
  226. (net 152 "Net-(U5B-Q0)")
  227. (net 153 "unconnected-(U4E-VCC-Pad14)")
  228. (net 154 "Net-(U5A-MR)")
  229. (net 155 "unconnected-(U5A-Q0-Pad3)")
  230. (net 156 "unconnected-(U5C-GND-Pad7)")
  231. (net 157 "unconnected-(U5B-Q3-Pad8)")
  232. (net 158 "unconnected-(U5B-Q2-Pad9)")
  233. (net 159 "unconnected-(U5B-Q1-Pad10)")
  234. (net 160 "Net-(U5B-MR)")
  235. (net 161 "unconnected-(U5C-VCC-Pad14)")
  236. (net 162 "unconnected-(U6C-GND-Pad7)")
  237. (net 163 "unconnected-(U6C-VCC-Pad14)")
  238. (net 164 "Net-(U6_D5A-~{S})")
  239. (net 165 "/NOR_IN_10_2")
  240. (net 166 "unconnected-(U6_D5A-~{Q}-Pad6)")
  241. (net 167 "unconnected-(U6_D5B-~{Q}-Pad8)")
  242. (net 168 "/NOR_IN_9_2")
  243. (net 169 "unconnected-(U7-Q3a-Pad4)")
  244. (net 170 "/2-4_2")
  245. (net 171 "unconnected-(U7-GND-Pad8)")
  246. (net 172 "unconnected-(U7-Q0b-Pad9)")
  247. (net 173 "unconnected-(U7-Q1b-Pad10)")
  248. (net 174 "unconnected-(U7-Q2b-Pad11)")
  249. (net 175 "/BANK_SEL")
  250. (net 176 "unconnected-(U7-VCC-Pad16)")
  251. (net 177 "unconnected-(U8C-GND-Pad7)")
  252. (net 178 "unconnected-(U8C-VCC-Pad14)")
  253. (net 179 "/NOR OUT 1")
  254. (net 180 "unconnected-(U9C-GND-Pad7)")
  255. (net 181 "/NOR_IN_12_1")
  256. (net 182 "unconnected-(U9C-VCC-Pad14)")
  257. (net 183 "unconnected-(U9_E2_H1A-~{S}-Pad4)")
  258. (net 184 "unconnected-(U9_E2_H1A-~{Q}-Pad6)")
  259. (net 185 "unconnected-(U9_E2_H1C-GND-Pad7)")
  260. (net 186 "unconnected-(U9_E2_H1B-~{Q}-Pad8)")
  261. (net 187 "unconnected-(U9_E2_H1B-Q-Pad9)")
  262. (net 188 "unconnected-(U9_E2_H1B-~{S}-Pad10)")
  263. (net 189 "unconnected-(U9_E2_H1B-C-Pad11)")
  264. (net 190 "unconnected-(U9_E2_H1B-D-Pad12)")
  265. (net 191 "unconnected-(U9_E2_H1B-~{R}-Pad13)")
  266. (net 192 "unconnected-(U9_E2_H1C-VCC-Pad14)")
  267. (net 193 "unconnected-(U9_E2_L1A-~{Q}-Pad6)")
  268. (net 194 "unconnected-(U9_E2_L1C-GND-Pad7)")
  269. (net 195 "Net-(U9_E2_L1B-~{S})")
  270. (net 196 "Net-(U9_E2_L1B-C)")
  271. (net 197 "unconnected-(U9_E2_L1C-VCC-Pad14)")
  272. (net 198 "Net-(U9_E3A-~{Q})")
  273. (net 199 "unconnected-(U9_E3C-GND-Pad7)")
  274. (net 200 "Net-(U9_E3B-~{S})")
  275. (net 201 "unconnected-(U9_E3C-VCC-Pad14)")
  276. (net 202 "Net-(U10-Pad3)")
  277. (net 203 "unconnected-(U10E-GND-Pad7)")
  278. (net 204 "unconnected-(U10E-VCC-Pad14)")
  279. (net 205 "unconnected-(U11E-GND-Pad7)")
  280. (net 206 "Net-(U11-Pad8)")
  281. (net 207 "unconnected-(U11E-VCC-Pad14)")
  282. (net 208 "unconnected-(U12-Pad3)")
  283. (net 209 "unconnected-(U12E-GND-Pad7)")
  284. (net 210 "unconnected-(U12-Pad11)")
  285. (net 211 "unconnected-(U12-Pad12)")
  286. (net 212 "unconnected-(U12-Pad13)")
  287. (net 213 "unconnected-(U12E-VCC-Pad14)")
  288. (net 214 "unconnected-(U13-Pad6)")
  289. (net 215 "unconnected-(U13E-GND-Pad7)")
  290. (net 216 "unconnected-(U13-Pad8)")
  291. (footprint "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
  292. (tstamp 034e35c8-4fb7-4fd0-8484-4f9f9599da2b)
  293. (at 113.157 92.329)
  294. (descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
  295. (tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
  296. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  297. (property "Sheetname" "")
  298. (property "ki_description" "0.1A Ic, 30V Vce, PNP Small Signal Transistor, TO-92")
  299. (property "ki_keywords" "PNP Transistor")
  300. (path "/05afb9ba-f769-4918-b6f6-aac88cfe2cfc")
  301. (attr through_hole)
  302. (fp_text reference "Q2" (at 1.27 -3.56) (layer "F.SilkS")
  303. (effects (font (size 1 1) (thickness 0.15)))
  304. (tstamp ac51f208-512a-4966-a13d-9063069d1252)
  305. )
  306. (fp_text value "BC558" (at 1.27 2.79) (layer "F.Fab")
  307. (effects (font (size 1 1) (thickness 0.15)))
  308. (tstamp 1b2cfb43-a882-4289-8fbd-0c0999d08860)
  309. )
  310. (fp_text user "${REFERENCE}" (at 1.27 0) (layer "F.Fab")
  311. (effects (font (size 1 1) (thickness 0.15)))
  312. (tstamp 4c6c151b-2be8-4b7d-9c33-6873c3fffc4f)
  313. )
  314. (fp_line (start -0.53 1.85) (end 3.07 1.85)
  315. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0dcb6bde-c4d1-4f16-827b-1f661815512e))
  316. (fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6)
  317. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ed5b0fe-2ce9-4d74-b306-f85a2b79c56e))
  318. (fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478)
  319. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ca95de1-c4d3-4b7b-b6c8-53f512f19af2))
  320. (fp_line (start -1.46 -2.73) (end -1.46 2.01)
  321. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 18d2b35f-fbdc-4c0d-a995-768672a937ab))
  322. (fp_line (start -1.46 -2.73) (end 4 -2.73)
  323. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a4bf575-7677-4ad2-8a61-05e7531110df))
  324. (fp_line (start 4 2.01) (end -1.46 2.01)
  325. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d195364c-ced9-4a37-a9a7-2f35f83396d1))
  326. (fp_line (start 4 2.01) (end 4 -2.73)
  327. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87291b22-4571-4dfd-b5ae-b8441072d26d))
  328. (fp_line (start -0.5 1.75) (end 3 1.75)
  329. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dfc33c7e-a82f-40db-9942-390ed9363395))
  330. (fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48)
  331. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7430ac83-3751-4948-a6b3-d7f73e8358ff))
  332. (fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625)
  333. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20ebb287-d079-4dd1-9502-a0a37a544b58))
  334. (pad "1" thru_hole rect (at 0 0) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
  335. (net 88 "Net-(Q2-C)") (pinfunction "C") (pintype "passive") (tstamp c54d95dc-9a65-4fd4-97b0-e592df798080))
  336. (pad "2" thru_hole oval (at 1.27 0) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
  337. (net 89 "Net-(Q2-B)") (pinfunction "B") (pintype "input") (tstamp 85c39358-3930-4e85-94dc-546f912628dd))
  338. (pad "3" thru_hole oval (at 2.54 0) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
  339. (net 1 "VCC") (pinfunction "E") (pintype "passive") (tstamp aba212d9-a136-4b3a-a87a-ca32c674cd5a))
  340. (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.wrl"
  341. (offset (xyz 0 0 0))
  342. (scale (xyz 1 1 1))
  343. (rotate (xyz 0 0 0))
  344. )
  345. )
  346. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  347. (tstamp 10c45dd6-7bde-4dca-bdec-62fa37153016)
  348. (at 160.926 32.607)
  349. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  350. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  351. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  352. (property "Sheetname" "")
  353. (property "ki_description" "Quad 2-input OR")
  354. (property "ki_keywords" "TTL Or2")
  355. (path "/f54bda32-cbd9-49eb-a177-70b66d580fee")
  356. (attr through_hole)
  357. (fp_text reference "U13" (at 3.81 -2.33) (layer "F.SilkS")
  358. (effects (font (size 1 1) (thickness 0.15)))
  359. (tstamp 69f084f2-9d8b-457e-8a57-5cbba89ca650)
  360. )
  361. (fp_text value "74HC32" (at 3.81 17.57) (layer "F.Fab")
  362. (effects (font (size 1 1) (thickness 0.15)))
  363. (tstamp 33e0a5c1-4bfa-477c-ba81-2a19f39a7666)
  364. )
  365. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  366. (effects (font (size 1 1) (thickness 0.15)))
  367. (tstamp 88b1df6a-8ba8-44d2-b829-2263a9361b9c)
  368. )
  369. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  370. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 637b4b1d-5ba2-4edb-8e69-d749ef5b060d))
  371. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  372. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d1e1ed1-ef20-4833-af98-0d790a4e7fd3))
  373. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  374. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20078ef3-deeb-436b-9217-308a782b2cbc))
  375. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  376. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb1a2a05-bf69-4054-9cbb-003d2ed1d5ad))
  377. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  378. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2edec88-5e77-4187-ba9d-5f4197070452))
  379. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  380. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7ff5940-3d4b-49f8-b1c8-7568b9e95317))
  381. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  382. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51321082-e407-4652-9113-095de7d5b847))
  383. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  384. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e0922ec-9c58-4317-b9fc-a8f7f7ae8de9))
  385. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  386. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b68ba140-f238-4eb5-8e1a-e376b7ae9048))
  387. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  388. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f41d0a70-8b42-4b73-982b-6efb01343b42))
  389. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  390. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb0b3194-75ea-48e4-9be0-246bc8b5109f))
  391. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  392. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25428c4a-69fc-4bee-a08f-9ab475c179cd))
  393. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  394. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp caf40c83-630c-4f76-bc28-976918423f44))
  395. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  396. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79014ea6-586f-47e1-8de2-4831763c5e4d))
  397. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  398. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8e102414-64d6-44a1-afb9-01c88ab35837))
  399. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  400. (net 170 "/2-4_2") (pintype "input") (tstamp 584e9e40-738d-42e9-b01d-e69bbe0933fe))
  401. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  402. (net 85 "Net-(Q1-C)") (pintype "input") (tstamp 3aa149be-cb1f-4866-8fbc-58047a1f9646))
  403. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  404. (net 32 "/SRAM_OE") (pintype "output") (tstamp 9b4cade8-4512-466b-96f7-9a648cffdd56))
  405. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  406. (net 34 "/SRAM_WE") (pintype "input") (tstamp 1b282486-5707-4d51-8564-e7dacaebebec))
  407. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  408. (net 34 "/SRAM_WE") (pintype "input") (tstamp 15ea4c44-0226-4934-8555-20513ae14474))
  409. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  410. (net 214 "unconnected-(U13-Pad6)") (pintype "output+no_connect") (tstamp fefa79f0-489d-4e36-ae34-7e71cef8ced4))
  411. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  412. (net 215 "unconnected-(U13E-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp b9e8579d-bbf2-4cc7-90ad-fb4b8b3cbaae))
  413. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  414. (net 216 "unconnected-(U13-Pad8)") (pintype "output") (tstamp 2b34135e-6822-4137-85e0-1f6ffc7921ad))
  415. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  416. (net 85 "Net-(Q1-C)") (pintype "input") (tstamp c8c6e7f6-dcf2-42bf-8d33-20f790d98133))
  417. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  418. (net 85 "Net-(Q1-C)") (pintype "input") (tstamp bea74af7-8c51-4a69-be89-3b1eaf51b2b9))
  419. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  420. (net 33 "/SRAM_CE") (pintype "output") (tstamp 5267df56-facc-4962-9e88-68e1bdfc19c2))
  421. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  422. (net 85 "Net-(Q1-C)") (pintype "input") (tstamp 5e8da9e8-2cf7-482d-9b3e-e7cae285a82e))
  423. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  424. (net 69 "/xmemfl") (pintype "input") (tstamp 7d34dbd7-8f8d-45af-9d7c-523cf284f2f6))
  425. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  426. (net 88 "Net-(Q2-C)") (pinfunction "VCC") (pintype "power_in") (tstamp d307bc39-9805-4b2a-84a7-d79ebb556a9d))
  427. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  428. (offset (xyz 0 0 0))
  429. (scale (xyz 1 1 1))
  430. (rotate (xyz 0 0 0))
  431. )
  432. )
  433. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  434. (tstamp 1a152c07-56ae-448f-993d-f93848661788)
  435. (at 171.776 32.607)
  436. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  437. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  438. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  439. (property "Sheetname" "")
  440. (property "ki_description" "Dual D Flip-flop, Set & Reset")
  441. (property "ki_keywords" "TTL DFF")
  442. (path "/a8ea977a-3bb1-44d5-8eac-b24afa436218")
  443. (attr through_hole)
  444. (fp_text reference "U6_D5" (at 3.81 -2.33) (layer "F.SilkS")
  445. (effects (font (size 1 1) (thickness 0.15)))
  446. (tstamp d1277fed-0a13-4edb-87c9-ebd98d6f2054)
  447. )
  448. (fp_text value "74LS74" (at 3.81 17.57) (layer "F.Fab")
  449. (effects (font (size 1 1) (thickness 0.15)))
  450. (tstamp 3c69a301-a3fd-4136-8ad6-9863d73514bf)
  451. )
  452. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  453. (effects (font (size 1 1) (thickness 0.15)))
  454. (tstamp 00aed044-08b1-47e1-9194-ead66519c4d1)
  455. )
  456. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  457. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc2078a6-21d1-40da-8a45-ad7662d3086e))
  458. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  459. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a175de65-a6da-4030-977e-fce4258c5c68))
  460. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  461. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eef04c8a-5cd8-4f7a-8fdb-921bff4191f3))
  462. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  463. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1ffb57d-9c06-4222-a985-1a18139c907e))
  464. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  465. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a5061ca-6a03-4303-8baa-bba02775712c))
  466. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  467. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7243c289-705c-49dc-b4cb-218fc340573d))
  468. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  469. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9736d90-95dc-44da-ab90-feaf1e266f47))
  470. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  471. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc70c14c-18f1-4630-a704-4130348171e6))
  472. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  473. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7de3c92f-57bd-4102-a317-7cbe0db68bb9))
  474. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  475. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3040623d-497a-4306-8e6c-722ea9938505))
  476. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  477. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6105ee48-743e-4a10-9748-44b27e16f7c4))
  478. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  479. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f33633ef-1d35-469e-8835-3c45801bd5f4))
  480. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  481. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69c7d8a6-0234-485b-84b5-059b515ba2fd))
  482. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  483. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44c1d876-d8bf-413a-80ae-3adb12925bfd))
  484. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  485. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5313797a-c49f-4835-b2ea-3e53491d3aeb))
  486. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  487. (net 1 "VCC") (pinfunction "~{R}") (pintype "input") (tstamp c70a670f-9c1e-4873-b35f-476d4395025b))
  488. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  489. (net 69 "/xmemfl") (pinfunction "D") (pintype "input") (tstamp 567c870c-a9ab-4797-9cea-1570c1e89b07))
  490. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  491. (net 100 "/CLK") (pinfunction "C") (pintype "input") (tstamp 5b7fb08f-6914-4b16-b1dc-821e6a047e1a))
  492. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  493. (net 164 "Net-(U6_D5A-~{S})") (pinfunction "~{S}") (pintype "input") (tstamp e3f5232e-f3f2-402e-a3c5-0d3436dd2412))
  494. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  495. (net 165 "/NOR_IN_10_2") (pinfunction "Q") (pintype "output") (tstamp 9ad460d9-f965-40bb-b03e-04ccc03407d1))
  496. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  497. (net 166 "unconnected-(U6_D5A-~{Q}-Pad6)") (pinfunction "~{Q}") (pintype "output") (tstamp 8856a533-a56e-46ea-be01-595081b3bebe))
  498. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp fd27567e-49d2-4c08-84af-f288c20e63ae))
  499. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  500. (net 167 "unconnected-(U6_D5B-~{Q}-Pad8)") (pinfunction "~{Q}") (pintype "output") (tstamp 5e22ff21-d96b-4765-83b4-a9cc06955c45))
  501. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  502. (net 168 "/NOR_IN_9_2") (pinfunction "Q") (pintype "output") (tstamp 9cce0e18-b0ee-4eaf-b706-fdb4f5c2b111))
  503. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  504. (net 164 "Net-(U6_D5A-~{S})") (pinfunction "~{S}") (pintype "input") (tstamp 72cd4b85-e2a5-4462-b8d2-9e5d52ce54cb))
  505. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  506. (net 100 "/CLK") (pinfunction "C") (pintype "input") (tstamp 496b2b90-8014-4011-90b2-a9a0a2862afa))
  507. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  508. (net 165 "/NOR_IN_10_2") (pinfunction "D") (pintype "input") (tstamp f14cff0f-a929-4821-b94c-04b3a8a297cb))
  509. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  510. (net 1 "VCC") (pinfunction "~{R}") (pintype "input") (tstamp b66c039e-6228-4141-be91-79653f5fff47))
  511. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 0a4201e6-7c75-414e-b73b-2e9f74f5b70e))
  512. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  513. (offset (xyz 0 0 0))
  514. (scale (xyz 1 1 1))
  515. (rotate (xyz 0 0 0))
  516. )
  517. )
  518. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  519. (tstamp 233ee129-2d75-40f9-8b0d-998c6315676b)
  520. (at 171.776 13.207)
  521. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  522. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  523. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  524. (property "Sheetname" "")
  525. (property "ki_description" "5-input NOR")
  526. (property "ki_keywords" "TTL Nor5")
  527. (path "/e7c3c7cd-9def-46b9-9ead-5093e7a0d85c")
  528. (attr through_hole)
  529. (fp_text reference "U9" (at 3.81 -2.33) (layer "F.SilkS")
  530. (effects (font (size 1 1) (thickness 0.15)))
  531. (tstamp becb3539-ea6f-486c-a0c9-6a032e74fafe)
  532. )
  533. (fp_text value "74LS260" (at 3.81 17.57) (layer "F.Fab")
  534. (effects (font (size 1 1) (thickness 0.15)))
  535. (tstamp 8b932a37-bf2d-4887-af88-9ae1d94e8d11)
  536. )
  537. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  538. (effects (font (size 1 1) (thickness 0.15)))
  539. (tstamp d23c8c06-5e1d-417b-9cba-31ee25f3a4e0)
  540. )
  541. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  542. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5006ad0b-66eb-4537-8a2f-24d17592324d))
  543. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  544. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07038e88-9eb4-46b1-b029-9dd0e8ba8bbb))
  545. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  546. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4297efe9-74d0-4895-b5a7-bdac3ee54730))
  547. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  548. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66190d57-572a-4fb6-b4f3-fc3108afb3c1))
  549. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  550. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8846c591-2320-4496-bf30-b5320038c296))
  551. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  552. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42fd8f22-d2fa-4b81-8de3-c9c5a05e324c))
  553. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  554. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ea8bff2-1c77-4829-99f8-bfd3d9aefd93))
  555. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  556. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d5aff75-eee7-4b29-89a2-4d935446749e))
  557. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  558. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8f6e384-628d-4f68-8cf3-c21edd33ad67))
  559. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  560. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 156ede4a-530a-46c5-bceb-124ada6ff130))
  561. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  562. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e183aa37-9310-45f2-b206-e5e5fe38ff85))
  563. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  564. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28b3e079-04b8-4f6c-bea3-cc782add01e8))
  565. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  566. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b119b173-7980-4e83-9178-dac4f384245f))
  567. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  568. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c84b531-663d-43af-a271-bcc493a52491))
  569. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  570. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dc5e1ebb-6d69-4e4c-87d7-ad91d19807e4))
  571. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  572. (net 5 "/A5") (pintype "input") (tstamp fa5dc48d-07cd-4c36-8bcb-17fae161be51))
  573. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  574. (net 3 "/A7") (pintype "input") (tstamp 85a076b8-c66d-4d9c-a22e-34127576c745))
  575. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 361ea5d2-bef0-4473-9e97-b423ebf0346c))
  576. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  577. (net 24 "/A8") (pintype "input") (tstamp 989d16dc-d8a5-4f8a-b9ce-5e7c4e77a379))
  578. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  579. (net 179 "/NOR OUT 1") (pintype "output") (tstamp ef58229b-d9aa-4a5a-9b9e-e900d0784110))
  580. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  581. (net 147 "/NOR OUT2") (pintype "output") (tstamp db3b80fe-85b8-4097-9d56-497b4664b2ae))
  582. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  583. (net 180 "unconnected-(U9C-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp ef30adbe-c260-407a-92c0-a59ebb662d44))
  584. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  585. (net 69 "/xmemfl") (pintype "input") (tstamp 56f38737-a108-4884-8ab0-a7c9d1a70052))
  586. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  587. (net 168 "/NOR_IN_9_2") (pintype "input") (tstamp 576a0a76-1202-478a-8a16-3467f805e820))
  588. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  589. (net 165 "/NOR_IN_10_2") (pintype "input") (tstamp 99170272-fd5f-47ed-80d4-9f953dd68f82))
  590. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  591. (net 96 "/NOR_IN_11_2") (pintype "input") (tstamp 5b5b7a47-3396-4701-b6f8-7ecf3eac4be3))
  592. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  593. (net 181 "/NOR_IN_12_1") (pintype "input") (tstamp e754d354-ffd1-45c5-b69d-3084ab7e61eb))
  594. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  595. (net 23 "/A9") (pintype "input") (tstamp ea029a90-d25b-4263-a113-1532e6ff50ed))
  596. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  597. (net 182 "unconnected-(U9C-VCC-Pad14)") (pinfunction "VCC") (pintype "power_in") (tstamp ac1a64b5-b048-439c-ad5b-00b2873acf99))
  598. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  599. (offset (xyz 0 0 0))
  600. (scale (xyz 1 1 1))
  601. (rotate (xyz 0 0 0))
  602. )
  603. )
  604. (footprint "smartaidmagnum:FAB64B" (layer "F.Cu")
  605. (tstamp 24e6cfb0-a872-4ad9-bc8b-b849a6525a3c)
  606. (at 74.9102 100.5676)
  607. (descr "<b>DIN 41612 CONNECTOR</b>\n<p>\nFemale, 64 pins, type B, rows AB, grid 2.54 mm.<br />\nB mates with Q, but pin numbers reversed.\n</p>")
  608. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  609. (property "Sheetname" "")
  610. (path "/a1a46aea-a948-47a9-9082-fabee6f1d87c")
  611. (attr through_hole)
  612. (fp_text reference "X1" (at -4.445 -39.37 -90) (layer "F.SilkS")
  613. (effects (font (size 1.2065 1.2065) (thickness 0.12065)) (justify left bottom))
  614. (tstamp 50f8c86c-9b4e-4fb3-8683-d8f27bb42fc7)
  615. )
  616. (fp_text value "ABC-Bus" (at -4.445 34.29 -90) (layer "F.Fab")
  617. (effects (font (size 1.2065 1.2065) (thickness 0.12065)) (justify left bottom))
  618. (tstamp 02e4f45d-5c40-4561-bf5b-95a8d8b6ee42)
  619. )
  620. (fp_text user "a" (at -2.286 -40.64) (layer "F.SilkS")
  621. (effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
  622. (tstamp 1aba9201-e387-4192-b1ba-f0204b27b349)
  623. )
  624. (fp_text user "32" (at -2.159 41.91) (layer "F.SilkS")
  625. (effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
  626. (tstamp 22d8fb95-2f07-498b-bb9d-1e89a330d113)
  627. )
  628. (fp_text user ">STD" (at -4.445 0 90) (layer "F.SilkS")
  629. (effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
  630. (tstamp 6bb9e970-2b16-42c6-bcce-55c7214f1e78)
  631. )
  632. (fp_text user "1" (at -0.762 -40.64) (layer "F.SilkS")
  633. (effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
  634. (tstamp debf8a49-9f29-4965-ac3e-6ad98cbc6cd0)
  635. )
  636. (fp_line (start -4.064 46.736) (end -4.064 -46.736)
  637. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 3b723ff8-75a6-422f-8ad6-7eed99e2b328))
  638. (fp_line (start -3.556 47.244) (end -1.905 47.244)
  639. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4b68aecc-d86d-4dea-ae14-c169d44b4694))
  640. (fp_line (start -2.794 42.545) (end -2.794 -42.545)
  641. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e5d336b4-99bc-4cc9-8d8b-ee058e16e901))
  642. (fp_line (start -1.905 -47.244) (end -3.556 -47.244)
  643. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 364ceb4a-e6db-4029-a2c9-f3880d9fdb18))
  644. (fp_line (start -1.905 -47.244) (end -1.905 -44.45)
  645. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4f518ebb-6da0-456e-9d60-ce93c58d5f91))
  646. (fp_line (start -1.905 47.244) (end -1.905 44.45)
  647. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 66f253f8-4f18-401e-b3f4-cd150cc787d7))
  648. (fp_line (start -1.905 47.244) (end 3.556 47.244)
  649. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 74f7bd50-3c68-436d-ac02-3babd8bbf72f))
  650. (fp_line (start -0.381 -42.545) (end -2.794 -42.545)
  651. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 431b1adc-72cc-419c-a3ad-d3e21d4ab39d))
  652. (fp_line (start -0.381 -42.545) (end -1.905 -44.45)
  653. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5da6a533-78dc-4ca7-9f1f-9dd9cafa6136))
  654. (fp_line (start -0.381 -42.545) (end 0.889 -42.545)
  655. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp f128b7d5-7045-4446-9a12-d04681171785))
  656. (fp_line (start -0.381 42.545) (end -2.794 42.545)
  657. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ae71b758-ca88-4a19-b9f1-c28a21286b7e))
  658. (fp_line (start -0.381 42.545) (end -1.905 44.45)
  659. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 391b10a8-157e-4862-87fe-d96b0ecd3ef8))
  660. (fp_line (start 0.889 -42.545) (end 2.667 -42.545)
  661. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 6183823a-0f5f-4610-a5cf-18ec9c514b3a))
  662. (fp_line (start 0.889 -41.529) (end 0.889 -42.545)
  663. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 69df031a-6330-4d19-9618-af04c1f68fe6))
  664. (fp_line (start 0.889 41.529) (end 2.794 41.529)
  665. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 63fdd731-06f1-4436-a5c1-f691d03c8ad5))
  666. (fp_line (start 0.889 42.545) (end -0.381 42.545)
  667. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 11793547-8073-4413-bf08-032a5503d531))
  668. (fp_line (start 0.889 42.545) (end 0.889 41.529)
  669. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4eda8fca-0627-4757-8edf-21a4b3023679))
  670. (fp_line (start 0.889 42.545) (end 2.667 42.545)
  671. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9702f45d-61c8-4b5c-bab1-0f1ea9792c37))
  672. (fp_line (start 2.667 -42.545) (end 4.064 -44.45)
  673. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp bef37dbd-9157-4712-b24a-550336080b45))
  674. (fp_line (start 2.667 42.545) (end 4.064 44.45)
  675. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 35c335b5-3d3c-4211-90b2-808822796fd8))
  676. (fp_line (start 2.794 -41.529) (end 0.889 -41.529)
  677. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp cf37ed5b-26ba-458d-8500-07493f6cb423))
  678. (fp_line (start 2.794 41.529) (end 2.794 -41.529)
  679. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp f00d8e0f-65cc-4d84-819c-870dfbeea34a))
  680. (fp_line (start 3.556 -47.244) (end -1.905 -47.244)
  681. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 0117dbda-63fb-4d76-9103-81ebf0d6417c))
  682. (fp_line (start 4.064 -44.45) (end 4.064 -46.736)
  683. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 12e857c5-37f3-4383-b0d6-fae5554320f1))
  684. (fp_line (start 4.064 -44.45) (end 4.064 44.45)
  685. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1c643cda-5959-45d5-87a4-bb5311629f21))
  686. (fp_line (start 4.064 46.736) (end 4.064 44.45)
  687. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8385892a-420e-4216-9362-1b6afdf85d50))
  688. (fp_arc (start -4.064 -46.736) (mid -3.91521 -47.09521) (end -3.556 -47.244)
  689. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 88cd1c5e-8110-4d5e-9b29-47847760e7ca))
  690. (fp_arc (start -3.556 47.244) (mid -3.91521 47.09521) (end -4.064 46.736)
  691. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 801c5001-f385-4ab8-b212-e5c864f46271))
  692. (fp_arc (start 3.556 -47.244) (mid 3.909437 -47.084314) (end 4.086 -46.738999)
  693. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8095d1b9-f383-4c49-bc8e-d3549580de86))
  694. (fp_arc (start 4.064 46.736) (mid 3.91521 47.09521) (end 3.556 47.244)
  695. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8044e50a-81f0-4903-85f1-b9b74c7ea060))
  696. (fp_circle (center 0.9652 -45.0088) (end 2.2352 -45.0088)
  697. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7198a7e1-c89d-45e5-929a-288d0179dc20))
  698. (fp_circle (center 0.9652 45.0088) (end 2.2352 45.0088)
  699. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp d2fc9f09-1be6-4856-b2ea-e9ba4fe43d24))
  700. (fp_circle (center 0.9652 -45.0088) (end 3.2512 -45.0088)
  701. (stroke (width 1.778) (type solid)) (fill none) (layer "Dwgs.User") (tstamp 9fb5f159-d66c-4220-93e9-8f6c4d05bcf9))
  702. (fp_circle (center 0.9652 -45.0088) (end 3.2512 -45.0088)
  703. (stroke (width 1.778) (type solid)) (fill none) (layer "Dwgs.User") (tstamp f1c4d22f-e55f-4e32-9441-7b9743dc66ad))
  704. (fp_circle (center 0.9652 45.0088) (end 3.2512 45.0088)
  705. (stroke (width 1.778) (type solid)) (fill none) (layer "Dwgs.User") (tstamp 9673d574-0c0a-41f0-a699-fd65bef6a1ae))
  706. (fp_circle (center 0.9652 45.0088) (end 3.2512 45.0088)
  707. (stroke (width 1.778) (type solid)) (fill none) (layer "Dwgs.User") (tstamp a258a70b-6d37-4b8d-9ace-00bed3bf2efa))
  708. (fp_line (start -2.54 -42.291) (end -2.54 42.291)
  709. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp b0840cdf-d689-4d49-ab15-747d0197b37f))
  710. (fp_line (start 0.635 -42.291) (end -2.54 -42.291)
  711. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 912488d9-c1ef-4a9a-b68e-3da8061c57da))
  712. (fp_line (start 0.635 -41.275) (end 0.635 -42.291)
  713. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp e5b4aa13-aee1-4206-bafb-1dc6aa0b0244))
  714. (fp_line (start 0.635 41.275) (end 0.635 42.291)
  715. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 6f200cc5-cdd3-4701-886c-a1fbaa7e325b))
  716. (fp_line (start 0.635 41.275) (end 2.54 41.275)
  717. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp bdb50d47-2b71-4e78-bd89-280bce7ca69b))
  718. (fp_line (start 0.635 42.291) (end -2.54 42.291)
  719. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 4091661b-2245-48f1-95af-eac1f2137e59))
  720. (fp_line (start 2.54 -41.275) (end 0.635 -41.275)
  721. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp ec313991-dd14-480a-a0a7-b7968a6c64a6))
  722. (fp_line (start 2.54 41.275) (end 2.54 -41.275)
  723. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 30e979e5-7b57-4b00-8d5b-95a5759adafe))
  724. (fp_poly
  725. (pts
  726. (xy -1.651 -38.735)
  727. (xy -0.889 -38.735)
  728. (xy -0.889 -40.005)
  729. (xy -1.651 -40.005)
  730. )
  731. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 354f45d3-2e67-4a8e-8b90-f6e99485186e))
  732. (fp_poly
  733. (pts
  734. (xy -1.651 -36.195)
  735. (xy -0.889 -36.195)
  736. (xy -0.889 -37.465)
  737. (xy -1.651 -37.465)
  738. )
  739. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 6d57f438-b06a-41cd-a75f-132c0b1765da))
  740. (fp_poly
  741. (pts
  742. (xy -1.651 -33.655)
  743. (xy -0.889 -33.655)
  744. (xy -0.889 -34.925)
  745. (xy -1.651 -34.925)
  746. )
  747. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 84349b2d-690e-4535-9429-c5ee768bd710))
  748. (fp_poly
  749. (pts
  750. (xy -1.651 -31.115)
  751. (xy -0.889 -31.115)
  752. (xy -0.889 -32.385)
  753. (xy -1.651 -32.385)
  754. )
  755. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 01953608-3c2a-491a-9d25-e023e08ad18d))
  756. (fp_poly
  757. (pts
  758. (xy -1.651 -28.575)
  759. (xy -0.889 -28.575)
  760. (xy -0.889 -29.845)
  761. (xy -1.651 -29.845)
  762. )
  763. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp da066ae8-420a-4424-bbfe-6e25d674285d))
  764. (fp_poly
  765. (pts
  766. (xy -1.651 -26.035)
  767. (xy -0.889 -26.035)
  768. (xy -0.889 -27.305)
  769. (xy -1.651 -27.305)
  770. )
  771. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 0ccbafd7-aef1-4df9-9471-eb3626f52ca7))
  772. (fp_poly
  773. (pts
  774. (xy -1.651 -23.495)
  775. (xy -0.889 -23.495)
  776. (xy -0.889 -24.765)
  777. (xy -1.651 -24.765)
  778. )
  779. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 2d2cd829-c653-4f1a-9985-e3f971a1a8b0))
  780. (fp_poly
  781. (pts
  782. (xy -1.651 -20.955)
  783. (xy -0.889 -20.955)
  784. (xy -0.889 -22.225)
  785. (xy -1.651 -22.225)
  786. )
  787. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 23ccdac7-fc7f-4dbd-9513-51ac02f2bb1d))
  788. (fp_poly
  789. (pts
  790. (xy -1.651 -18.415)
  791. (xy -0.889 -18.415)
  792. (xy -0.889 -19.685)
  793. (xy -1.651 -19.685)
  794. )
  795. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp a5b3c77b-2c1a-4050-9a7d-737c721f1619))
  796. (fp_poly
  797. (pts
  798. (xy -1.651 -15.875)
  799. (xy -0.889 -15.875)
  800. (xy -0.889 -17.145)
  801. (xy -1.651 -17.145)
  802. )
  803. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 1db9e99b-5b6c-459c-a059-3c81d16f920c))
  804. (fp_poly
  805. (pts
  806. (xy -1.651 -13.335)
  807. (xy -0.889 -13.335)
  808. (xy -0.889 -14.605)
  809. (xy -1.651 -14.605)
  810. )
  811. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 811ad497-4143-4759-b577-6f12f3efaea4))
  812. (fp_poly
  813. (pts
  814. (xy -1.651 -10.795)
  815. (xy -0.889 -10.795)
  816. (xy -0.889 -12.065)
  817. (xy -1.651 -12.065)
  818. )
  819. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 90e4598b-dd8d-4628-8bd7-3d8a2e55ef92))
  820. (fp_poly
  821. (pts
  822. (xy -1.651 -8.255)
  823. (xy -0.889 -8.255)
  824. (xy -0.889 -9.525)
  825. (xy -1.651 -9.525)
  826. )
  827. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp bb8f0103-c5ac-4331-9631-4eaf5b976bed))
  828. (fp_poly
  829. (pts
  830. (xy -1.651 -5.715)
  831. (xy -0.889 -5.715)
  832. (xy -0.889 -6.985)
  833. (xy -1.651 -6.985)
  834. )
  835. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp a2a0342d-1dfe-478f-8b8d-e689e6ce31d3))
  836. (fp_poly
  837. (pts
  838. (xy -1.651 -3.175)
  839. (xy -0.889 -3.175)
  840. (xy -0.889 -4.445)
  841. (xy -1.651 -4.445)
  842. )
  843. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp fa35dc5b-c5cd-43e1-8eb8-39423cf0badd))
  844. (fp_poly
  845. (pts
  846. (xy -1.651 -0.635)
  847. (xy -0.889 -0.635)
  848. (xy -0.889 -1.905)
  849. (xy -1.651 -1.905)
  850. )
  851. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp d1b61432-b1f8-4f55-805c-fbdb9b985c1a))
  852. (fp_poly
  853. (pts
  854. (xy -1.651 1.905)
  855. (xy -0.889 1.905)
  856. (xy -0.889 0.635)
  857. (xy -1.651 0.635)
  858. )
  859. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 1e859624-13a4-4584-8f5a-2709c2c383cb))
  860. (fp_poly
  861. (pts
  862. (xy -1.651 4.445)
  863. (xy -0.889 4.445)
  864. (xy -0.889 3.175)
  865. (xy -1.651 3.175)
  866. )
  867. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 7cb827ca-b277-4806-9dc4-da3c8df7a81f))
  868. (fp_poly
  869. (pts
  870. (xy -1.651 6.985)
  871. (xy -0.889 6.985)
  872. (xy -0.889 5.715)
  873. (xy -1.651 5.715)
  874. )
  875. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 578bbc23-caa1-4bc4-9d91-201f242cdf12))
  876. (fp_poly
  877. (pts
  878. (xy -1.651 9.525)
  879. (xy -0.889 9.525)
  880. (xy -0.889 8.255)
  881. (xy -1.651 8.255)
  882. )
  883. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 8ee2d4b6-f53d-452e-81e6-b89f2c89c122))
  884. (fp_poly
  885. (pts
  886. (xy -1.651 12.065)
  887. (xy -0.889 12.065)
  888. (xy -0.889 10.795)
  889. (xy -1.651 10.795)
  890. )
  891. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 29bbd66f-e57a-4b94-921c-8cdaf64239d9))
  892. (fp_poly
  893. (pts
  894. (xy -1.651 14.605)
  895. (xy -0.889 14.605)
  896. (xy -0.889 13.335)
  897. (xy -1.651 13.335)
  898. )
  899. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 5eb42aef-ad35-4295-b8ce-612a5cd15e71))
  900. (fp_poly
  901. (pts
  902. (xy -1.651 17.145)
  903. (xy -0.889 17.145)
  904. (xy -0.889 15.875)
  905. (xy -1.651 15.875)
  906. )
  907. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 8cd936a5-ca1e-4a3e-86f1-2b267d01a52e))
  908. (fp_poly
  909. (pts
  910. (xy -1.651 19.685)
  911. (xy -0.889 19.685)
  912. (xy -0.889 18.415)
  913. (xy -1.651 18.415)
  914. )
  915. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp e15a5866-5191-4892-8ee2-e512f258a5bd))
  916. (fp_poly
  917. (pts
  918. (xy -1.651 22.225)
  919. (xy -0.889 22.225)
  920. (xy -0.889 20.955)
  921. (xy -1.651 20.955)
  922. )
  923. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp bbd877e0-4dfb-4a6c-88d4-a29e93922bd7))
  924. (fp_poly
  925. (pts
  926. (xy -1.651 24.765)
  927. (xy -0.889 24.765)
  928. (xy -0.889 23.495)
  929. (xy -1.651 23.495)
  930. )
  931. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp c4a06a52-e17d-4b4c-8529-29147b9b312e))
  932. (fp_poly
  933. (pts
  934. (xy -1.651 27.305)
  935. (xy -0.889 27.305)
  936. (xy -0.889 26.035)
  937. (xy -1.651 26.035)
  938. )
  939. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 92e3c043-05c5-40ce-b7a5-dd9f5089369d))
  940. (fp_poly
  941. (pts
  942. (xy -1.651 29.845)
  943. (xy -0.889 29.845)
  944. (xy -0.889 28.575)
  945. (xy -1.651 28.575)
  946. )
  947. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 224a9945-1903-4e0d-ba3d-487178402626))
  948. (fp_poly
  949. (pts
  950. (xy -1.651 32.385)
  951. (xy -0.889 32.385)
  952. (xy -0.889 31.115)
  953. (xy -1.651 31.115)
  954. )
  955. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 87219c96-f677-483f-96f5-ebc0b3798755))
  956. (fp_poly
  957. (pts
  958. (xy -1.651 34.925)
  959. (xy -0.889 34.925)
  960. (xy -0.889 33.655)
  961. (xy -1.651 33.655)
  962. )
  963. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp a2ff3a16-eff4-4581-b2d6-2af4b2034bb6))
  964. (fp_poly
  965. (pts
  966. (xy -1.651 37.465)
  967. (xy -0.889 37.465)
  968. (xy -0.889 36.195)
  969. (xy -1.651 36.195)
  970. )
  971. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp b4e7e827-3e71-4d1f-9216-43ef7cfaa0e7))
  972. (fp_poly
  973. (pts
  974. (xy -1.651 40.005)
  975. (xy -0.889 40.005)
  976. (xy -0.889 38.735)
  977. (xy -1.651 38.735)
  978. )
  979. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp bd47797d-9ace-4da1-a3f7-1f3ead49b495))
  980. (fp_poly
  981. (pts
  982. (xy 0.889 -38.735)
  983. (xy 1.651 -38.735)
  984. (xy 1.651 -40.005)
  985. (xy 0.889 -40.005)
  986. )
  987. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 854127ff-da80-4666-b22b-22014769545b))
  988. (fp_poly
  989. (pts
  990. (xy 0.889 -36.195)
  991. (xy 1.651 -36.195)
  992. (xy 1.651 -37.465)
  993. (xy 0.889 -37.465)
  994. )
  995. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 2037eca4-0c82-4ca5-a93e-4e1d40aa7d24))
  996. (fp_poly
  997. (pts
  998. (xy 0.889 -33.655)
  999. (xy 1.651 -33.655)
  1000. (xy 1.651 -34.925)
  1001. (xy 0.889 -34.925)
  1002. )
  1003. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 185fae87-cde7-4f97-ba0e-92c81024d499))
  1004. (fp_poly
  1005. (pts
  1006. (xy 0.889 -31.115)
  1007. (xy 1.651 -31.115)
  1008. (xy 1.651 -32.385)
  1009. (xy 0.889 -32.385)
  1010. )
  1011. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp bdc8a136-0c9f-4ea3-b219-232e316ab204))
  1012. (fp_poly
  1013. (pts
  1014. (xy 0.889 -28.575)
  1015. (xy 1.651 -28.575)
  1016. (xy 1.651 -29.845)
  1017. (xy 0.889 -29.845)
  1018. )
  1019. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp a284c8a0-833d-46cc-b6df-9a344a5da096))
  1020. (fp_poly
  1021. (pts
  1022. (xy 0.889 -26.035)
  1023. (xy 1.651 -26.035)
  1024. (xy 1.651 -27.305)
  1025. (xy 0.889 -27.305)
  1026. )
  1027. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 00e38dce-aa73-4088-8579-0e6e852b4ef3))
  1028. (fp_poly
  1029. (pts
  1030. (xy 0.889 -23.495)
  1031. (xy 1.651 -23.495)
  1032. (xy 1.651 -24.765)
  1033. (xy 0.889 -24.765)
  1034. )
  1035. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 811faca7-1d42-4317-989f-7a4bdde0b631))
  1036. (fp_poly
  1037. (pts
  1038. (xy 0.889 -20.955)
  1039. (xy 1.651 -20.955)
  1040. (xy 1.651 -22.225)
  1041. (xy 0.889 -22.225)
  1042. )
  1043. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp d7805500-2a1e-4b1e-b011-334dda42823e))
  1044. (fp_poly
  1045. (pts
  1046. (xy 0.889 -18.415)
  1047. (xy 1.651 -18.415)
  1048. (xy 1.651 -19.685)
  1049. (xy 0.889 -19.685)
  1050. )
  1051. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 42fd385c-c572-4dc4-bc5f-72a004184ac9))
  1052. (fp_poly
  1053. (pts
  1054. (xy 0.889 -15.875)
  1055. (xy 1.651 -15.875)
  1056. (xy 1.651 -17.145)
  1057. (xy 0.889 -17.145)
  1058. )
  1059. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 4baece3d-933e-43ee-8827-c4f026a91818))
  1060. (fp_poly
  1061. (pts
  1062. (xy 0.889 -13.335)
  1063. (xy 1.651 -13.335)
  1064. (xy 1.651 -14.605)
  1065. (xy 0.889 -14.605)
  1066. )
  1067. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp ad9d692c-4fb5-45c9-ad1f-cf880c341f93))
  1068. (fp_poly
  1069. (pts
  1070. (xy 0.889 -10.795)
  1071. (xy 1.651 -10.795)
  1072. (xy 1.651 -12.065)
  1073. (xy 0.889 -12.065)
  1074. )
  1075. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 89a2efc5-ef27-49ad-8c86-c38d13c89c77))
  1076. (fp_poly
  1077. (pts
  1078. (xy 0.889 -8.255)
  1079. (xy 1.651 -8.255)
  1080. (xy 1.651 -9.525)
  1081. (xy 0.889 -9.525)
  1082. )
  1083. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp e0254f70-1a9d-45c9-bf17-a96ddcadc0c0))
  1084. (fp_poly
  1085. (pts
  1086. (xy 0.889 -5.715)
  1087. (xy 1.651 -5.715)
  1088. (xy 1.651 -6.985)
  1089. (xy 0.889 -6.985)
  1090. )
  1091. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 10faeca4-3772-46db-8a4b-94245fffe17e))
  1092. (fp_poly
  1093. (pts
  1094. (xy 0.889 -3.175)
  1095. (xy 1.651 -3.175)
  1096. (xy 1.651 -4.445)
  1097. (xy 0.889 -4.445)
  1098. )
  1099. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp fb046f0c-2b85-455a-bd60-a61797bb5f0a))
  1100. (fp_poly
  1101. (pts
  1102. (xy 0.889 -0.635)
  1103. (xy 1.651 -0.635)
  1104. (xy 1.651 -1.905)
  1105. (xy 0.889 -1.905)
  1106. )
  1107. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 06311a54-13be-47b4-8a0c-16f78f66dad0))
  1108. (fp_poly
  1109. (pts
  1110. (xy 0.889 1.905)
  1111. (xy 1.651 1.905)
  1112. (xy 1.651 0.635)
  1113. (xy 0.889 0.635)
  1114. )
  1115. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 982800da-6566-46cb-b685-8d417de3d765))
  1116. (fp_poly
  1117. (pts
  1118. (xy 0.889 4.445)
  1119. (xy 1.651 4.445)
  1120. (xy 1.651 3.175)
  1121. (xy 0.889 3.175)
  1122. )
  1123. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 36e29eac-365b-4500-8530-d8162c191af7))
  1124. (fp_poly
  1125. (pts
  1126. (xy 0.889 6.985)
  1127. (xy 1.651 6.985)
  1128. (xy 1.651 5.715)
  1129. (xy 0.889 5.715)
  1130. )
  1131. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp e38c6b47-84da-4042-a507-300273b95f6b))
  1132. (fp_poly
  1133. (pts
  1134. (xy 0.889 9.525)
  1135. (xy 1.651 9.525)
  1136. (xy 1.651 8.255)
  1137. (xy 0.889 8.255)
  1138. )
  1139. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp aa5bf4a6-2438-4422-a4b7-e5e4ec1cac8d))
  1140. (fp_poly
  1141. (pts
  1142. (xy 0.889 12.065)
  1143. (xy 1.651 12.065)
  1144. (xy 1.651 10.795)
  1145. (xy 0.889 10.795)
  1146. )
  1147. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 0b7401f4-f3a8-4558-97c6-48bed11b6285))
  1148. (fp_poly
  1149. (pts
  1150. (xy 0.889 14.605)
  1151. (xy 1.651 14.605)
  1152. (xy 1.651 13.335)
  1153. (xy 0.889 13.335)
  1154. )
  1155. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 2cadcea3-97dd-4461-ac70-d6b906a2661f))
  1156. (fp_poly
  1157. (pts
  1158. (xy 0.889 17.145)
  1159. (xy 1.651 17.145)
  1160. (xy 1.651 15.875)
  1161. (xy 0.889 15.875)
  1162. )
  1163. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 1535ebd3-67c8-4a68-811e-770a0e9f621c))
  1164. (fp_poly
  1165. (pts
  1166. (xy 0.889 19.685)
  1167. (xy 1.651 19.685)
  1168. (xy 1.651 18.415)
  1169. (xy 0.889 18.415)
  1170. )
  1171. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp e7885438-bb63-48b9-b0ca-f48774b4e616))
  1172. (fp_poly
  1173. (pts
  1174. (xy 0.889 22.225)
  1175. (xy 1.651 22.225)
  1176. (xy 1.651 20.955)
  1177. (xy 0.889 20.955)
  1178. )
  1179. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 07f24aaf-f3bd-4679-b2c1-c88b5ad0db02))
  1180. (fp_poly
  1181. (pts
  1182. (xy 0.889 24.765)
  1183. (xy 1.651 24.765)
  1184. (xy 1.651 23.495)
  1185. (xy 0.889 23.495)
  1186. )
  1187. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 0b0ebb8c-cc54-44b0-8bf2-5aa37d363e3a))
  1188. (fp_poly
  1189. (pts
  1190. (xy 0.889 27.305)
  1191. (xy 1.651 27.305)
  1192. (xy 1.651 26.035)
  1193. (xy 0.889 26.035)
  1194. )
  1195. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp ce7a457a-5a0b-408a-b592-3ed9a9ec4f68))
  1196. (fp_poly
  1197. (pts
  1198. (xy 0.889 29.845)
  1199. (xy 1.651 29.845)
  1200. (xy 1.651 28.575)
  1201. (xy 0.889 28.575)
  1202. )
  1203. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp fe93b0d3-d64b-41a0-b916-93f1372b74f2))
  1204. (fp_poly
  1205. (pts
  1206. (xy 0.889 32.385)
  1207. (xy 1.651 32.385)
  1208. (xy 1.651 31.115)
  1209. (xy 0.889 31.115)
  1210. )
  1211. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 511e1447-132a-41df-82de-07cc9df8bd7f))
  1212. (fp_poly
  1213. (pts
  1214. (xy 0.889 34.925)
  1215. (xy 1.651 34.925)
  1216. (xy 1.651 33.655)
  1217. (xy 0.889 33.655)
  1218. )
  1219. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 0eb6acd7-4227-4b3d-aee0-bf1f9159b81c))
  1220. (fp_poly
  1221. (pts
  1222. (xy 0.889 37.465)
  1223. (xy 1.651 37.465)
  1224. (xy 1.651 36.195)
  1225. (xy 0.889 36.195)
  1226. )
  1227. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 5d818bb5-5f9b-49a6-9178-7af1cce9deac))
  1228. (fp_poly
  1229. (pts
  1230. (xy 0.889 40.005)
  1231. (xy 1.651 40.005)
  1232. (xy 1.651 38.735)
  1233. (xy 0.889 38.735)
  1234. )
  1235. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 85c7a4e1-110c-4a76-a580-e4cdc8b5f229))
  1236. (pad "" np_thru_hole circle (at 0.9652 -45.0088) (size 2.794 2.794) (drill 2.794) (layers "*.Cu" "*.Mask") (tstamp 9d33f06e-7b41-43bf-b17c-e82e546d8082))
  1237. (pad "" np_thru_hole circle (at 0.9652 45.0088) (size 2.794 2.794) (drill 2.794) (layers "*.Cu" "*.Mask") (tstamp 1725c35c-50e2-4532-b8ee-a09a8d68652c))
  1238. (pad "A1" thru_hole circle (at -1.27 -39.37) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1239. (net 36 "unconnected-(X1--12V-PadA1)") (pinfunction "-12V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 44d05191-f3ff-4d64-bc9d-6a66486c89fd))
  1240. (pad "A2" thru_hole circle (at -1.27 -36.83) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1241. (net 91 "/0V") (pinfunction "0V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 82853f46-1f48-4e14-ab93-523f9f215be6))
  1242. (pad "A3" thru_hole circle (at -1.27 -34.29) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1243. (net 37 "unconnected-(X1-~{RESIN}-PadA3)") (pinfunction "~{RESIN}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 458600ec-be28-48af-9c77-1e6c8587282c))
  1244. (pad "A4" thru_hole circle (at -1.27 -31.75) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1245. (net 38 "unconnected-(X1-GND-PadA4)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 11151f62-5382-4b69-8cdc-d200cb509389))
  1246. (pad "A5" thru_hole circle (at -1.27 -29.21) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1247. (net 34 "/SRAM_WE") (pinfunction "~{XMEMW}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 033f93f8-e06e-427a-9931-a42c74cfca77))
  1248. (pad "A6" thru_hole circle (at -1.27 -26.67) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1249. (net 39 "/D7") (pinfunction "D7") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 070c8f19-bb70-419a-b650-792307a2ed0e))
  1250. (pad "A7" thru_hole circle (at -1.27 -24.13) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1251. (net 40 "/D6") (pinfunction "D6") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 50f68c0f-c6f2-4880-a79a-595767b603d0))
  1252. (pad "A8" thru_hole circle (at -1.27 -21.59) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1253. (net 41 "/D5") (pinfunction "D5") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 0f3d64c5-95d9-461c-9da8-785ebdbc499d))
  1254. (pad "A9" thru_hole circle (at -1.27 -19.05) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1255. (net 42 "/D4") (pinfunction "D4") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 43101d16-6a2a-43d0-810b-f80fa033d0c3))
  1256. (pad "A10" thru_hole circle (at -1.27 -16.51) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1257. (net 43 "/D3") (pinfunction "D3") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 5628ae16-4ec3-48b9-b220-20972cf10d85))
  1258. (pad "A11" thru_hole circle (at -1.27 -13.97) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1259. (net 44 "/D2") (pinfunction "D2") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 5020721b-7b87-4ffa-88e6-1dd797ddd27b))
  1260. (pad "A12" thru_hole circle (at -1.27 -11.43) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1261. (net 45 "/D1") (pinfunction "D1") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 2ed7547d-c106-49d9-a7e1-9bfd01a5bc06))
  1262. (pad "A13" thru_hole circle (at -1.27 -8.89) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1263. (net 46 "/D0") (pinfunction "D0") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp a4d88ce1-02ca-4092-aaa8-d980d50e058b))
  1264. (pad "A14" thru_hole circle (at -1.27 -6.35) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1265. (net 47 "unconnected-(X1-NC-PadA14)") (pinfunction "NC") (pintype "passive") (solder_mask_margin 0.1016) (tstamp c57e5181-1d81-4582-af3d-876b495f5e73))
  1266. (pad "A15" thru_hole circle (at -1.27 -3.81) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1267. (net 48 "unconnected-(X1-~{RST}-PadA15)") (pinfunction "~{RST}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 533911ec-ab34-497f-b856-a5b9112848a7))
  1268. (pad "A16" thru_hole circle (at -1.27 -1.27) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1269. (net 49 "unconnected-(X1-~{STATUS}-PadA16)") (pinfunction "~{STATUS}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp e7ab1209-8c01-4ae0-84c9-2188fbdb54a7))
  1270. (pad "A17" thru_hole circle (at -1.27 1.27) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1271. (net 50 "unconnected-(X1-~{INP}-PadA17)") (pinfunction "~{INP}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 12e53097-c46b-441c-adc8-8b009a989d84))
  1272. (pad "A18" thru_hole circle (at -1.27 3.81) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1273. (net 51 "unconnected-(X1-~{C4}-PadA18)") (pinfunction "~{C4}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp b57b0a77-cf88-4f0f-8bc7-84893d1b50a2))
  1274. (pad "A19" thru_hole circle (at -1.27 6.35) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1275. (net 52 "unconnected-(X1-~{C3}-PadA19)") (pinfunction "~{C3}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 751c1311-0561-49df-9837-b4ec155e08bd))
  1276. (pad "A20" thru_hole circle (at -1.27 8.89) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1277. (net 53 "unconnected-(X1-~{C2}-PadA20)") (pinfunction "~{C2}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 6511de6e-d603-4cf3-9918-713a7bdc9903))
  1278. (pad "A21" thru_hole circle (at -1.27 11.43) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1279. (net 54 "unconnected-(X1-~{C1}-PadA21)") (pinfunction "~{C1}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 7760d014-8842-403e-8086-87265e4b9a1b))
  1280. (pad "A22" thru_hole circle (at -1.27 13.97) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1281. (net 55 "unconnected-(X1-~{OUT}-PadA22)") (pinfunction "~{OUT}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 34bcf037-a513-4fe8-a4ed-aeeaceea1dc4))
  1282. (pad "A23" thru_hole circle (at -1.27 16.51) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1283. (net 56 "unconnected-(X1-~{CS}-PadA23)") (pinfunction "~{CS}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp f8aa89e9-c81e-4432-a77d-543156d2f573))
  1284. (pad "A24" thru_hole circle (at -1.27 19.05) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1285. (net 57 "unconnected-(X1-GND-PadA24)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 87624969-4374-4be8-a61d-533f616b43a9))
  1286. (pad "A25" thru_hole circle (at -1.27 21.59) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1287. (net 58 "unconnected-(X1-GND-PadA25)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp c374dd35-a21e-4376-af50-96d4e17d897b))
  1288. (pad "A26" thru_hole circle (at -1.27 24.13) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1289. (net 59 "unconnected-(X1-GND-PadA26)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp f3ce322d-3fdf-4ad4-af93-07357db3a7c3))
  1290. (pad "A27" thru_hole circle (at -1.27 26.67) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1291. (net 60 "unconnected-(X1-GND-PadA27)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp cdf3140e-a3a8-4865-8ffd-4be10abc1d17))
  1292. (pad "A28" thru_hole circle (at -1.27 29.21) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1293. (net 61 "unconnected-(X1-GND-PadA28)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 9e17b7d5-7881-4046-8d35-bb2bdac5aa54))
  1294. (pad "A29" thru_hole circle (at -1.27 31.75) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1295. (net 62 "unconnected-(X1-GND-PadA29)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp ab8d9c7d-efae-4bf1-8acc-c2f3a65d6e3c))
  1296. (pad "A30" thru_hole circle (at -1.27 34.29) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1297. (net 63 "unconnected-(X1-READY-PadA30)") (pinfunction "READY") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp e2f431c4-ad63-4aa3-b574-fc29814961d6))
  1298. (pad "A31" thru_hole circle (at -1.27 36.83) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1299. (net 64 "unconnected-(X1-+5V-PadA31)") (pinfunction "+5V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp e05c2627-4c1f-441e-b33a-c8f5a5fe5f39))
  1300. (pad "A32" thru_hole circle (at -1.27 39.37) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1301. (net 65 "unconnected-(X1-+12V-PadA32)") (pinfunction "+12V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 7190da51-5eea-409a-b4dd-5653f8765838))
  1302. (pad "B1" thru_hole circle (at 1.27 -39.37) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1303. (net 66 "unconnected-(X1--12V-PadB1)") (pinfunction "-12V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 6d25feb4-1f24-4966-88fe-340b3be3045d))
  1304. (pad "B2" thru_hole circle (at 1.27 -36.83) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1305. (net 67 "unconnected-(X1-0V-PadB2)") (pinfunction "0V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 193c7c53-b75a-4d7c-b0ef-723969c432be))
  1306. (pad "B3" thru_hole circle (at 1.27 -34.29) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1307. (net 68 "unconnected-(X1-GND-PadB3)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 01c8bcd3-b97e-45ec-a89d-28bfd42fc529))
  1308. (pad "B4" thru_hole circle (at 1.27 -31.75) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1309. (net 69 "/xmemfl") (pinfunction "~{XMEMFL}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 7857a5d7-64d4-48ad-84a6-87226c04ecd2))
  1310. (pad "B5" thru_hole circle (at 1.27 -29.21) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1311. (net 100 "/CLK") (pinfunction "5") (pintype "passive") (solder_mask_margin 0.1016) (tstamp 682f33ab-f885-4ca3-a49a-0e281f19954e))
  1312. (pad "B6" thru_hole circle (at 1.27 -26.67) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1313. (net 70 "unconnected-(X1-GND-PadB6)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 3dbc203a-2a1e-4630-95f9-a10d4e72b1ae))
  1314. (pad "B7" thru_hole circle (at 1.27 -24.13) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1315. (net 71 "unconnected-(X1-GND-PadB7)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp adaf0c7f-19c4-4204-988d-76c1591942cc))
  1316. (pad "B8" thru_hole circle (at 1.27 -21.59) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1317. (net 72 "unconnected-(X1-GND-PadB8)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp caa8e55a-edbb-4cdf-aec8-2fa9855ec09d))
  1318. (pad "B9" thru_hole circle (at 1.27 -19.05) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1319. (net 73 "unconnected-(X1-GND-PadB9)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 17241f73-d057-4785-b654-a6c8bf320ae1))
  1320. (pad "B10" thru_hole circle (at 1.27 -16.51) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1321. (net 74 "unconnected-(X1-GND-PadB10)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp d12f709c-147c-4843-a5e5-e4959190a7da))
  1322. (pad "B11" thru_hole circle (at 1.27 -13.97) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1323. (net 75 "unconnected-(X1-GND-PadB11)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 6c0e9dfa-9260-42fc-b58e-f60970efd4a8))
  1324. (pad "B12" thru_hole circle (at 1.27 -11.43) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1325. (net 76 "unconnected-(X1-GND-PadB12)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 41fdf404-ea29-4323-adb8-ab8d416f5385))
  1326. (pad "B13" thru_hole circle (at 1.27 -8.89) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1327. (net 77 "unconnected-(X1-~{INT}-PadB13)") (pinfunction "~{INT}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp d1b01ecc-d50b-4551-add9-5ce844df6dbc))
  1328. (pad "B14" thru_hole circle (at 1.27 -6.35) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1329. (net 78 "/A15") (pinfunction "A15") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 65e7b6ad-bea6-437f-af59-b903196ab794))
  1330. (pad "B15" thru_hole circle (at 1.27 -3.81) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1331. (net 79 "/A14") (pinfunction "A14") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp a257704b-fc9e-4872-9752-4140c505987f))
  1332. (pad "B16" thru_hole circle (at 1.27 -1.27) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1333. (net 80 "/A13") (pinfunction "A13") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp eee8b23b-7766-42b9-8d82-73edc838e94e))
  1334. (pad "B17" thru_hole circle (at 1.27 1.27) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1335. (net 81 "/A12") (pinfunction "A12") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 2e48cd37-0fac-4dad-8197-f6048b8e47ba))
  1336. (pad "B18" thru_hole circle (at 1.27 3.81) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1337. (net 22 "/A11") (pinfunction "A11") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp bb5a0b0b-a162-4d99-8480-cb5ad7e18511))
  1338. (pad "B19" thru_hole circle (at 1.27 6.35) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1339. (net 21 "/A10") (pinfunction "A10") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp d30f2046-6130-438b-bdfa-90789927b6be))
  1340. (pad "B20" thru_hole circle (at 1.27 8.89) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1341. (net 23 "/A9") (pinfunction "A9") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 90a6dc6a-2a8b-4dab-98ef-b947b1aad3b1))
  1342. (pad "B21" thru_hole circle (at 1.27 11.43) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1343. (net 24 "/A8") (pinfunction "A8") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 623bb2fe-a7cb-4f9a-b020-63ce2686c20b))
  1344. (pad "B22" thru_hole circle (at 1.27 13.97) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1345. (net 3 "/A7") (pinfunction "A7") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp a794bace-6754-4417-b964-de220ee7894a))
  1346. (pad "B23" thru_hole circle (at 1.27 16.51) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1347. (net 4 "/A6") (pinfunction "A6") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 20c85ff3-e82f-4f8d-98b7-820afd4c3d56))
  1348. (pad "B24" thru_hole circle (at 1.27 19.05) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1349. (net 5 "/A5") (pinfunction "A5") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 33814867-5345-4084-9337-3d0c37156674))
  1350. (pad "B25" thru_hole circle (at 1.27 21.59) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1351. (net 6 "/A4") (pinfunction "A4") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 4ae008e6-8936-4d79-9432-d64f9899de01))
  1352. (pad "B26" thru_hole circle (at 1.27 24.13) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1353. (net 7 "/A3") (pinfunction "A3") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 7abd9103-577d-4310-b888-f9b374f6f94d))
  1354. (pad "B27" thru_hole circle (at 1.27 26.67) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1355. (net 8 "/A2") (pinfunction "A2") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 7e998d92-a198-466d-b312-062e26dfabbe))
  1356. (pad "B28" thru_hole circle (at 1.27 29.21) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1357. (net 9 "/A1") (pinfunction "A1") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 82223ef9-c204-411e-9c09-1c583587006b))
  1358. (pad "B29" thru_hole circle (at 1.27 31.75) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1359. (net 10 "/A0") (pinfunction "A0") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 95ddc532-fdcb-4fb0-b433-e143c5a7f727))
  1360. (pad "B30" thru_hole circle (at 1.27 34.29) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1361. (net 82 "unconnected-(X1-NC-PadB30)") (pinfunction "NC") (pintype "passive") (solder_mask_margin 0.1016) (tstamp 0a7a6874-8c41-4510-98b6-45aeb808f287))
  1362. (pad "B31" thru_hole circle (at 1.27 36.83) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1363. (net 83 "unconnected-(X1-+5V-PadB31)") (pinfunction "+5V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 8f1a113e-3e0f-4167-9a18-d86947737cf8))
  1364. (pad "B32" thru_hole circle (at 1.27 39.37) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  1365. (net 84 "unconnected-(X1-+12V-PadB32)") (pinfunction "+12V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp e914b5ca-8692-4401-a724-70b52e42e236))
  1366. )
  1367. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  1368. (tstamp 256a35cc-e958-4462-b40f-823d3ff6fe3e)
  1369. (at 150.076 13.207)
  1370. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  1371. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  1372. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  1373. (property "Sheetname" "")
  1374. (property "ki_description" "Dual D Flip-flop, Set & Reset")
  1375. (property "ki_keywords" "TTL DFF")
  1376. (path "/077d314b-da27-4a5b-bfef-79d98cfc9b86")
  1377. (attr through_hole)
  1378. (fp_text reference "U6" (at 3.81 -2.33) (layer "F.SilkS")
  1379. (effects (font (size 1 1) (thickness 0.15)))
  1380. (tstamp ff5cb1ff-35f4-446f-82e2-d15f9197d141)
  1381. )
  1382. (fp_text value "74LS74" (at 3.81 17.57) (layer "F.Fab")
  1383. (effects (font (size 1 1) (thickness 0.15)))
  1384. (tstamp e417a52f-88fd-4386-928f-456d07f8413e)
  1385. )
  1386. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  1387. (effects (font (size 1 1) (thickness 0.15)))
  1388. (tstamp be94bd62-b69c-48b7-ac77-c70796ab39a6)
  1389. )
  1390. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  1391. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e07bb08-fa16-4372-b98d-72f9e84dd054))
  1392. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  1393. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05a7371f-630c-41e7-9fed-5286b7ce05c0))
  1394. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  1395. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 071865e9-f0a4-4f18-91f4-5e29e6ecb561))
  1396. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  1397. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09a69fe6-0e4a-4c03-9c2f-b5f102cd4e66))
  1398. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  1399. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66a9f90a-2e34-4fd7-97a8-58d678e7869c))
  1400. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  1401. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec9a0e92-b91a-4d99-bdf9-64dad31ee48a))
  1402. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  1403. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 388af6cc-cf54-48bc-b25c-78058762918b))
  1404. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  1405. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0502a06-b696-4c7b-875e-bba85c0386c7))
  1406. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  1407. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp caf58a72-0053-497f-986a-9348122d36fc))
  1408. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  1409. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0a01517-bc21-44d5-8a28-d537129d9591))
  1410. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  1411. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e1bdd2d-6c3a-48b7-af51-85ad2fb285e4))
  1412. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  1413. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2a2e0713-1ea2-4178-805e-c42acd6ee90f))
  1414. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  1415. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff0ab75b-c539-4328-8599-a241c1e2c02f))
  1416. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  1417. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce924cfe-a4e7-431f-b0ac-535fae7fa5e6))
  1418. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  1419. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5eb3b40-8c57-4c19-b691-91bb55e32359))
  1420. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp b611e6d7-1408-49c9-830e-6364a81a0646))
  1421. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 28fc9a31-8374-489f-9cb1-b22e2b864ba8))
  1422. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp b7934ae7-d2fd-444a-b0bd-9790597c8292))
  1423. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp fdc47eaa-d34b-45e2-bb2d-82c4f1d3b45e))
  1424. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp bc83b758-92c4-41c8-accb-c253c7db894a))
  1425. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp b9215f46-bb7b-4932-a662-446f3d93ca4b))
  1426. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1427. (net 162 "unconnected-(U6C-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp 3bdcbdff-4266-4dd1-82ab-dfc356090906))
  1428. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp a7f4b2fb-65ba-4a11-9302-ef8bf9464508))
  1429. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 996e4bfb-0ff5-4811-8c87-fba320cd9f16))
  1430. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp d58499d6-444c-4df5-b1c7-9950a7f53093))
  1431. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 53ac3395-749b-485a-bc46-db5abf3f46a5))
  1432. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 9a347623-d9e7-4f70-b0b2-1d83f862b50d))
  1433. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 383d5008-ed29-4150-9c70-213150b7ce62))
  1434. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1435. (net 163 "unconnected-(U6C-VCC-Pad14)") (pinfunction "VCC") (pintype "power_in") (tstamp 03c04ed0-4160-4df3-9013-b5363ed25f9e))
  1436. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  1437. (offset (xyz 0 0 0))
  1438. (scale (xyz 1 1 1))
  1439. (rotate (xyz 0 0 0))
  1440. )
  1441. )
  1442. (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
  1443. (tstamp 326902e8-06be-494f-8132-07d6c34b9799)
  1444. (at 182.576 25.307)
  1445. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1446. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1447. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  1448. (property "Sheetname" "")
  1449. (property "ki_description" "Resistor, small symbol")
  1450. (property "ki_keywords" "R resistor")
  1451. (path "/8fa2066c-dc03-4523-a6f4-a8eb499a28e7")
  1452. (attr through_hole)
  1453. (fp_text reference "R4" (at 5.08 -2.37) (layer "F.SilkS")
  1454. (effects (font (size 1 1) (thickness 0.15)))
  1455. (tstamp 076d1380-09e6-489b-9f92-26ce98613247)
  1456. )
  1457. (fp_text value "82" (at 5.08 2.37) (layer "F.Fab")
  1458. (effects (font (size 1 1) (thickness 0.15)))
  1459. (tstamp c61c4c96-4c95-410a-bf8b-2e00b84c0c15)
  1460. )
  1461. (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
  1462. (effects (font (size 1 1) (thickness 0.15)))
  1463. (tstamp ea4cc93a-2c37-494d-8b7b-768b405ac0d5)
  1464. )
  1465. (fp_line (start 1.04 0) (end 1.81 0)
  1466. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8dd4048-5cad-4a4b-8ca1-0e63f63c6bcf))
  1467. (fp_line (start 1.81 -1.37) (end 1.81 1.37)
  1468. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 229220c9-6d79-4804-9b35-3d29d9798a7b))
  1469. (fp_line (start 1.81 1.37) (end 8.35 1.37)
  1470. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d58eb65f-3c15-4b3e-83fa-13179c8779de))
  1471. (fp_line (start 8.35 -1.37) (end 1.81 -1.37)
  1472. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 131a8b29-3ca2-40c0-9952-19019f9feddc))
  1473. (fp_line (start 8.35 1.37) (end 8.35 -1.37)
  1474. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4250132-83b5-4333-a51e-3487b4b8d10e))
  1475. (fp_line (start 9.12 0) (end 8.35 0)
  1476. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26cefe53-a803-44b7-a535-a0ae8c5abde0))
  1477. (fp_line (start -1.05 -1.5) (end -1.05 1.5)
  1478. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4fed0575-544c-46e5-bfb8-dbb4afb842fe))
  1479. (fp_line (start -1.05 1.5) (end 11.21 1.5)
  1480. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 307c5ae9-8f68-4d6d-958b-3dddff22672a))
  1481. (fp_line (start 11.21 -1.5) (end -1.05 -1.5)
  1482. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ccc4621-4551-42f1-a950-81f636f9cbe0))
  1483. (fp_line (start 11.21 1.5) (end 11.21 -1.5)
  1484. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1d74fd2-20a3-460c-9904-7c228703ac47))
  1485. (fp_line (start 0 0) (end 1.93 0)
  1486. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ced9a58d-b464-4fb3-b3cc-27cd1c55a92f))
  1487. (fp_line (start 1.93 -1.25) (end 1.93 1.25)
  1488. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 958a8976-e07d-48ae-9248-a2851cc9a7b6))
  1489. (fp_line (start 1.93 1.25) (end 8.23 1.25)
  1490. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82770709-a9e3-4951-a780-6bfc4f6f684d))
  1491. (fp_line (start 8.23 -1.25) (end 1.93 -1.25)
  1492. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dea7d0ea-32f6-46c8-aca0-0ffda0f8e822))
  1493. (fp_line (start 8.23 1.25) (end 8.23 -1.25)
  1494. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a451786e-cf0e-4627-bdc4-686b84e49ac2))
  1495. (fp_line (start 10.16 0) (end 8.23 0)
  1496. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ef7c9bc6-0b77-4fcf-bba5-717bf71545bc))
  1497. (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1498. (net 86 "Net-(Q1-B)") (pintype "passive") (tstamp bccf5eba-0d32-48e4-82e8-94bc7703330a))
  1499. (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1500. (net 139 "Net-(D1-A)") (pintype "passive") (tstamp 7fe73d21-6ac0-4ea6-b3bb-34215f59299f))
  1501. (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
  1502. (offset (xyz 0 0 0))
  1503. (scale (xyz 1 1 1))
  1504. (rotate (xyz 0 0 0))
  1505. )
  1506. )
  1507. (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
  1508. (tstamp 3399ffb0-6aa8-4e0d-acfd-fe26e9ca8a53)
  1509. (at 182.576 21.257)
  1510. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1511. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1512. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  1513. (property "Sheetname" "")
  1514. (property "ki_description" "Resistor, small symbol")
  1515. (property "ki_keywords" "R resistor")
  1516. (path "/a2d0fbfa-7be2-438f-ac5c-e5227ed8ee8f")
  1517. (attr through_hole)
  1518. (fp_text reference "R3" (at 5.08 -2.37) (layer "F.SilkS")
  1519. (effects (font (size 1 1) (thickness 0.15)))
  1520. (tstamp 35d40957-94f0-4034-acd9-214d45fba494)
  1521. )
  1522. (fp_text value "10K" (at 5.08 2.37) (layer "F.Fab")
  1523. (effects (font (size 1 1) (thickness 0.15)))
  1524. (tstamp 1302162a-c612-4d22-8ad6-81592b5760bc)
  1525. )
  1526. (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
  1527. (effects (font (size 1 1) (thickness 0.15)))
  1528. (tstamp e4a1bce6-077e-460e-93d8-3b041b7565a0)
  1529. )
  1530. (fp_line (start 1.04 0) (end 1.81 0)
  1531. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f53a012b-3a1f-4793-b40b-46d2a43b7ce5))
  1532. (fp_line (start 1.81 -1.37) (end 1.81 1.37)
  1533. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27dcd316-3d74-4459-ab20-472e36047805))
  1534. (fp_line (start 1.81 1.37) (end 8.35 1.37)
  1535. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9bf32b0c-aacf-491c-b01f-1a038a66b739))
  1536. (fp_line (start 8.35 -1.37) (end 1.81 -1.37)
  1537. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81be9049-5042-4d14-a57a-0ef20ff5bc0a))
  1538. (fp_line (start 8.35 1.37) (end 8.35 -1.37)
  1539. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aeef7c8f-058a-4634-942b-0fd6771048cb))
  1540. (fp_line (start 9.12 0) (end 8.35 0)
  1541. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4b457cf-621e-4697-bd97-27154424c900))
  1542. (fp_line (start -1.05 -1.5) (end -1.05 1.5)
  1543. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff01cd13-7e9f-47f1-92b5-e423c6ffe704))
  1544. (fp_line (start -1.05 1.5) (end 11.21 1.5)
  1545. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a9ba042-9d39-49a0-bd51-bd7c43028a1f))
  1546. (fp_line (start 11.21 -1.5) (end -1.05 -1.5)
  1547. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 201a359d-5e5c-4736-b5fa-f6d334f8e010))
  1548. (fp_line (start 11.21 1.5) (end 11.21 -1.5)
  1549. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9ef0c36-0caf-4b16-845d-384e8d96ccc5))
  1550. (fp_line (start 0 0) (end 1.93 0)
  1551. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c88e295b-c11e-47ad-8d6d-d73a149bd96d))
  1552. (fp_line (start 1.93 -1.25) (end 1.93 1.25)
  1553. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d7ed96b-a131-4db9-a078-83cb36180ecf))
  1554. (fp_line (start 1.93 1.25) (end 8.23 1.25)
  1555. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6d15fa1-d404-4aff-9c13-f34e3d0ac57c))
  1556. (fp_line (start 8.23 -1.25) (end 1.93 -1.25)
  1557. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 146403ee-988c-4545-b9de-4681f920eb59))
  1558. (fp_line (start 8.23 1.25) (end 8.23 -1.25)
  1559. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 610f607f-3253-471f-822c-90bac61c6d83))
  1560. (fp_line (start 10.16 0) (end 8.23 0)
  1561. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c41d7390-7192-458e-bfbc-b86371039ae1))
  1562. (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1563. (net 85 "Net-(Q1-C)") (pintype "passive") (tstamp ab6e006f-91a2-4cc2-97d9-30ed2b90a899))
  1564. (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1565. (net 89 "Net-(Q2-B)") (pintype "passive") (tstamp 3ce1e097-4c03-437b-8160-40f0101c568a))
  1566. (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
  1567. (offset (xyz 0 0 0))
  1568. (scale (xyz 1 1 1))
  1569. (rotate (xyz 0 0 0))
  1570. )
  1571. )
  1572. (footprint "Package_DIP:DIP-16_W7.62mm" (layer "F.Cu")
  1573. (tstamp 376d3ca0-5425-4b0e-9225-2280e3178dde)
  1574. (at 49.1068 47.2604)
  1575. (descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  1576. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  1577. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  1578. (property "Sheetname" "")
  1579. (property "ki_description" "2k bit bipolar PROM")
  1580. (property "ki_keywords" "2k bit bipolar PROM")
  1581. (path "/bd1f95c9-ec7c-4727-87b0-2dbc4fefc1f6")
  1582. (attr through_hole)
  1583. (fp_text reference "U15" (at 3.81 -2.33) (layer "F.SilkS")
  1584. (effects (font (size 1 1) (thickness 0.15)))
  1585. (tstamp 0936f98e-6b68-443c-b968-2a4c0e6e4df7)
  1586. )
  1587. (fp_text value "82S131" (at 3.81 20.11) (layer "F.Fab")
  1588. (effects (font (size 1 1) (thickness 0.15)))
  1589. (tstamp 6db81af3-e2c9-48e0-877d-5f33a41f679d)
  1590. )
  1591. (fp_text user "${REFERENCE}" (at 3.81 8.89) (layer "F.Fab")
  1592. (effects (font (size 1 1) (thickness 0.15)))
  1593. (tstamp 03d0f68c-9490-4e83-a5cb-906824c3de51)
  1594. )
  1595. (fp_line (start 1.16 -1.33) (end 1.16 19.11)
  1596. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76460c97-8c44-4fab-8572-9fdb18e2a9be))
  1597. (fp_line (start 1.16 19.11) (end 6.46 19.11)
  1598. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6745ff5-a6f8-4b75-8e22-672569873e65))
  1599. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  1600. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb678a0a-f805-4e54-baf5-c4519b5f169f))
  1601. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  1602. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0020336f-692b-4c9d-926e-801a9460c5de))
  1603. (fp_line (start 6.46 19.11) (end 6.46 -1.33)
  1604. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1835a09-9a7d-49ea-9837-29ceae8dc9d0))
  1605. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  1606. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aad5218d-fe9b-49eb-a5ae-f00563052887))
  1607. (fp_line (start -1.1 -1.55) (end -1.1 19.3)
  1608. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b57d04c2-cc27-4ebb-be3b-54917a26ed4d))
  1609. (fp_line (start -1.1 19.3) (end 8.7 19.3)
  1610. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 913467e7-ccc7-4f02-9fd4-912272a40c65))
  1611. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  1612. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c592213-3fc7-40ac-9e0d-5e1c41d8123e))
  1613. (fp_line (start 8.7 19.3) (end 8.7 -1.55)
  1614. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a60ae675-fe1e-4d3c-9d35-7c5e76b7d5b6))
  1615. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  1616. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae690c8a-c5f0-4f58-be8a-ad28d6f3737f))
  1617. (fp_line (start 0.635 19.05) (end 0.635 -0.27)
  1618. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fab40f91-86f8-4966-acc2-f7d3428fdda6))
  1619. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  1620. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9cfe23eb-ab36-44b6-9552-e922179fb8d8))
  1621. (fp_line (start 6.985 -1.27) (end 6.985 19.05)
  1622. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a56d5a28-dd0f-4523-a96e-5e3c3b968681))
  1623. (fp_line (start 6.985 19.05) (end 0.635 19.05)
  1624. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3190e5c-e589-45dd-8ce3-41d9909bcb61))
  1625. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1626. (net 93 "/PROM_A6") (pinfunction "A6") (pintype "input") (tstamp d0525e32-bfa4-4127-b3a0-251c1b8a7961))
  1627. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1628. (net 78 "/A15") (pinfunction "A5") (pintype "input") (tstamp dd234bb4-afef-46d7-a8b1-ce3b66ff1eb6))
  1629. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1630. (net 79 "/A14") (pinfunction "A4") (pintype "input") (tstamp ff696f62-08c1-47c5-9885-4059fb3822f1))
  1631. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1632. (net 80 "/A13") (pinfunction "A3") (pintype "input") (tstamp fd15d17d-6218-4819-b8d2-199e00624acf))
  1633. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1634. (net 21 "/A10") (pinfunction "A0") (pintype "input") (tstamp a561eb7e-fcab-4f38-a5c0-590bacebd048))
  1635. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1636. (net 22 "/A11") (pinfunction "A1") (pintype "input") (tstamp a3e96af1-dd4f-4db7-80de-76955befe653))
  1637. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1638. (net 81 "/A12") (pinfunction "A2") (pintype "input") (tstamp e89a77f1-dad5-455c-96ec-8d1ed7db8909))
  1639. (pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1640. (net 94 "unconnected-(U15-GND-Pad8)") (pinfunction "GND") (pintype "power_in") (tstamp a36458a1-35ba-4a4a-9f0e-6351de09c371))
  1641. (pad "9" thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1642. (net 95 "/PROM_Q4") (pinfunction "Q4") (pintype "tri_state") (tstamp 864ffd2c-3d7f-4416-a167-c3b806fac493))
  1643. (pad "10" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1644. (net 96 "/NOR_IN_11_2") (pinfunction "Q3") (pintype "tri_state") (tstamp 796e325e-4a7d-4d4e-9237-eca8dfb24044))
  1645. (pad "11" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1646. (net 97 "/PROM_Q2") (pinfunction "Q2") (pintype "tri_state") (tstamp fea7dfbf-da5b-45a1-b3e9-c2033048585c))
  1647. (pad "12" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1648. (net 98 "/PROM_Q1") (pinfunction "Q1") (pintype "tri_state") (tstamp 018884ab-bd71-46dc-8c56-2a86934a64ac))
  1649. (pad "13" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1650. (net 87 "GND") (pinfunction "~{CE}") (pintype "input") (tstamp c1a17b3c-1842-49f0-83e8-f0e40f19e3b0))
  1651. (pad "14" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1652. (net 25 "/A13_128") (pinfunction "A8") (pintype "input") (tstamp f74065c9-e936-4cd6-8003-9b42d49a1e3e))
  1653. (pad "15" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1654. (net 2 "/A12_128") (pinfunction "A7") (pintype "input") (tstamp 9e2cb439-8605-4d0f-acdd-c2e4434b72db))
  1655. (pad "16" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1656. (net 99 "unconnected-(U15-VCC-Pad16)") (pinfunction "VCC") (pintype "power_in") (tstamp 0b1201a0-b37f-4fab-b575-57539cdac47b))
  1657. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-16_W7.62mm.wrl"
  1658. (offset (xyz 0 0 0))
  1659. (scale (xyz 1 1 1))
  1660. (rotate (xyz 0 0 0))
  1661. )
  1662. )
  1663. (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
  1664. (tstamp 3d935008-0126-47a8-a61a-3f21feb53b95)
  1665. (at 182.576 45.557)
  1666. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1667. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1668. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  1669. (property "Sheetname" "")
  1670. (property "ki_description" "Resistor, small symbol")
  1671. (property "ki_keywords" "R resistor")
  1672. (path "/1600863d-a522-4aa9-bb76-8ae94e0e5566")
  1673. (attr through_hole)
  1674. (fp_text reference "R9" (at 5.08 -2.37) (layer "F.SilkS")
  1675. (effects (font (size 1 1) (thickness 0.15)))
  1676. (tstamp b5ba30ae-d3f7-47f9-bbaf-057ac80f66d5)
  1677. )
  1678. (fp_text value "10K" (at 5.08 2.37) (layer "F.Fab")
  1679. (effects (font (size 1 1) (thickness 0.15)))
  1680. (tstamp 448b769c-07c5-462c-9939-80f13e3d9a1d)
  1681. )
  1682. (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
  1683. (effects (font (size 1 1) (thickness 0.15)))
  1684. (tstamp 96943da9-b289-40d9-9be9-d0b009f6593a)
  1685. )
  1686. (fp_line (start 1.04 0) (end 1.81 0)
  1687. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9249a68-bfdd-412e-9e5e-07d2dd334b23))
  1688. (fp_line (start 1.81 -1.37) (end 1.81 1.37)
  1689. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7252ea9d-e067-493c-97ee-a975e7d097f1))
  1690. (fp_line (start 1.81 1.37) (end 8.35 1.37)
  1691. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aafb387a-2185-4b12-a1d0-e8ba0221ee2c))
  1692. (fp_line (start 8.35 -1.37) (end 1.81 -1.37)
  1693. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3d78f6c-f169-47f1-b122-12639d845b04))
  1694. (fp_line (start 8.35 1.37) (end 8.35 -1.37)
  1695. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c4547ca7-68d8-481e-a1f0-1649542c838a))
  1696. (fp_line (start 9.12 0) (end 8.35 0)
  1697. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1bf7c537-2bb5-420a-a20b-8406682d3254))
  1698. (fp_line (start -1.05 -1.5) (end -1.05 1.5)
  1699. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d91bc8e-4631-4556-8281-3cf273267fe1))
  1700. (fp_line (start -1.05 1.5) (end 11.21 1.5)
  1701. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47e22780-4c0f-4f6d-a5b0-a4d87b1deede))
  1702. (fp_line (start 11.21 -1.5) (end -1.05 -1.5)
  1703. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1250b9e8-18ac-4710-97a3-142f12b025cc))
  1704. (fp_line (start 11.21 1.5) (end 11.21 -1.5)
  1705. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0cb960fd-28e7-41c9-aba9-6644be74fcfb))
  1706. (fp_line (start 0 0) (end 1.93 0)
  1707. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c267ae8f-9a93-4d83-b53c-da7c9030d7c2))
  1708. (fp_line (start 1.93 -1.25) (end 1.93 1.25)
  1709. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25b83d61-a074-43a9-bd12-768871b4e5ae))
  1710. (fp_line (start 1.93 1.25) (end 8.23 1.25)
  1711. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4e79f8b-d752-456d-9d68-38a8c8c578ed))
  1712. (fp_line (start 8.23 -1.25) (end 1.93 -1.25)
  1713. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa560a78-512e-459b-b75c-2084c5d00c10))
  1714. (fp_line (start 8.23 1.25) (end 8.23 -1.25)
  1715. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f77736f8-1a86-4e1d-a38c-1adefcff6bf7))
  1716. (fp_line (start 10.16 0) (end 8.23 0)
  1717. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f1d3ee34-384b-4ea2-822d-ed66da73ef37))
  1718. (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1719. (net 1 "VCC") (pintype "passive") (tstamp e9316f65-15a5-49f4-9c47-734de52b8ff9))
  1720. (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1721. (net 34 "/SRAM_WE") (pintype "passive") (tstamp 349ba119-2760-43c9-9730-ed11b46a8daa))
  1722. (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
  1723. (offset (xyz 0 0 0))
  1724. (scale (xyz 1 1 1))
  1725. (rotate (xyz 0 0 0))
  1726. )
  1727. )
  1728. (footprint "Package_DIP:DIP-28_W15.24mm" (layer "F.Cu")
  1729. (tstamp 3ddd0663-6c40-4ea1-b41d-e374b0b87908)
  1730. (at 97.282 106.934)
  1731. (descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils)")
  1732. (tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil")
  1733. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  1734. (property "Sheetname" "")
  1735. (property "ki_description" "UV Erasable EPROM 128 KiBit, [Obsolete 2000-11]")
  1736. (property "ki_keywords" "Erasable OTP EPROM 128KiBit")
  1737. (path "/bb2ca3ec-3654-477b-b637-01e22ff77fce")
  1738. (attr through_hole)
  1739. (fp_text reference "U1" (at 7.62 -2.33) (layer "F.SilkS")
  1740. (effects (font (size 1 1) (thickness 0.15)))
  1741. (tstamp 7edaf0a2-2b6f-4349-9485-2ca4d8c24781)
  1742. )
  1743. (fp_text value "27128" (at 7.62 35.35) (layer "F.Fab")
  1744. (effects (font (size 1 1) (thickness 0.15)))
  1745. (tstamp 1a9f8aad-f610-414b-8733-5efd84211488)
  1746. )
  1747. (fp_text user "${REFERENCE}" (at 7.62 16.51) (layer "F.Fab")
  1748. (effects (font (size 1 1) (thickness 0.15)))
  1749. (tstamp 7633a870-8b7a-45d8-bdda-6ed514807772)
  1750. )
  1751. (fp_line (start 1.16 -1.33) (end 1.16 34.35)
  1752. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e0f8431-c4bb-418f-beee-ca961c3fccd2))
  1753. (fp_line (start 1.16 34.35) (end 14.08 34.35)
  1754. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca703ed1-0208-416a-ab88-59c673681556))
  1755. (fp_line (start 6.62 -1.33) (end 1.16 -1.33)
  1756. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 943b6ba1-9d75-4491-a789-bd488c0e1ef4))
  1757. (fp_line (start 14.08 -1.33) (end 8.62 -1.33)
  1758. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9489eacb-1676-487f-810f-45eb036dc9bb))
  1759. (fp_line (start 14.08 34.35) (end 14.08 -1.33)
  1760. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ea1c448-32ff-4d14-a02f-8dd63a8fffae))
  1761. (fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33)
  1762. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7308338-8d63-4546-98b7-3594431033a0))
  1763. (fp_line (start -1.05 -1.55) (end -1.05 34.55)
  1764. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 015f4cc8-a30b-42f4-b7f5-1401124b9d27))
  1765. (fp_line (start -1.05 34.55) (end 16.3 34.55)
  1766. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 702a5673-71cb-424f-a848-218fc47fe89b))
  1767. (fp_line (start 16.3 -1.55) (end -1.05 -1.55)
  1768. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24245940-78ac-4b06-a58d-76b4df7e516a))
  1769. (fp_line (start 16.3 34.55) (end 16.3 -1.55)
  1770. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c49dad98-3d90-4b2b-bd27-8809fd25c4cc))
  1771. (fp_line (start 0.255 -0.27) (end 1.255 -1.27)
  1772. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 865da5c8-6684-47ef-b8f8-71f533ef6488))
  1773. (fp_line (start 0.255 34.29) (end 0.255 -0.27)
  1774. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 053df92d-26f0-474d-9ea0-f24c237d1fde))
  1775. (fp_line (start 1.255 -1.27) (end 14.985 -1.27)
  1776. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 163b969b-af94-4f2c-a782-bfd595ec2713))
  1777. (fp_line (start 14.985 -1.27) (end 14.985 34.29)
  1778. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b390b197-5486-4805-87ce-b728953d40f9))
  1779. (fp_line (start 14.985 34.29) (end 0.255 34.29)
  1780. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 387d5c82-222a-4f39-b8fa-2e7bc019be82))
  1781. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1782. (net 1 "VCC") (pinfunction "VPP") (pintype "input") (tstamp 17908965-93f1-4e81-84f9-b01f52d1acb9))
  1783. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1784. (net 2 "/A12_128") (pinfunction "A12") (pintype "input") (tstamp e674eb09-b9fd-4b96-8ccf-bcafa45a33b7))
  1785. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1786. (net 3 "/A7") (pinfunction "A7") (pintype "input") (tstamp 2f6cc0bd-77be-44f5-901f-76de9031d057))
  1787. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1788. (net 4 "/A6") (pinfunction "A6") (pintype "input") (tstamp 4c2469cd-0fa6-4f36-a62a-90e57e8402a9))
  1789. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1790. (net 5 "/A5") (pinfunction "A5") (pintype "input") (tstamp 36e8556d-6556-4b04-b67e-52ca9b33f78e))
  1791. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1792. (net 6 "/A4") (pinfunction "A4") (pintype "input") (tstamp 3dcde2c0-e4e8-4638-9bc2-7b70ec3487cc))
  1793. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1794. (net 7 "/A3") (pinfunction "A3") (pintype "input") (tstamp 4982fcee-43ec-4978-b295-12e732519023))
  1795. (pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1796. (net 8 "/A2") (pinfunction "A2") (pintype "input") (tstamp 249a0608-6c07-46d9-b782-9c19191ab3a0))
  1797. (pad "9" thru_hole oval (at 0 20.32) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1798. (net 9 "/A1") (pinfunction "A1") (pintype "input") (tstamp 3209f2f6-3799-45dd-a3df-f1ec9d59bdaa))
  1799. (pad "10" thru_hole oval (at 0 22.86) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1800. (net 10 "/A0") (pinfunction "A0") (pintype "input") (tstamp 1eeced82-1f43-445d-8bdd-e0ccc2301f2a))
  1801. (pad "11" thru_hole oval (at 0 25.4) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1802. (net 11 "/D4_D0-128_D4-64") (pinfunction "D0") (pintype "tri_state") (tstamp 8584c746-9a3e-4bbd-b77c-d187087b97f9))
  1803. (pad "12" thru_hole oval (at 0 27.94) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1804. (net 12 "/D1_D1-128_D7-64") (pinfunction "D1") (pintype "tri_state") (tstamp 20c8227b-e653-4715-b898-5a45d06e434a))
  1805. (pad "13" thru_hole oval (at 0 30.48) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1806. (net 13 "/D2_D2-128_D5-64") (pinfunction "D2") (pintype "tri_state") (tstamp e3ced862-c52d-4066-88c8-52925ecde424))
  1807. (pad "14" thru_hole oval (at 0 33.02) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1808. (net 14 "unconnected-(U1-GND-Pad14)") (pinfunction "GND") (pintype "power_in") (tstamp 972e2d7e-45be-4cb5-8753-4977cb07f747))
  1809. (pad "15" thru_hole oval (at 15.24 33.02) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1810. (net 15 "/D5_D3-128_D1-64") (pinfunction "D3") (pintype "tri_state") (tstamp 7858886c-2030-4e36-a057-e6a31c296451))
  1811. (pad "16" thru_hole oval (at 15.24 30.48) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1812. (net 16 "/D6_D4-128_D6-64") (pinfunction "D4") (pintype "tri_state") (tstamp 50b98d7d-a466-4f83-b05a-a58266dca46b))
  1813. (pad "17" thru_hole oval (at 15.24 27.94) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1814. (net 17 "/D3_D5-128_D3-64") (pinfunction "D5") (pintype "tri_state") (tstamp d9ee60b3-c81e-49ee-b63c-bafb30bda805))
  1815. (pad "18" thru_hole oval (at 15.24 25.4) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1816. (net 18 "/D0_D6-128_D0-64") (pinfunction "D6") (pintype "tri_state") (tstamp f506f846-b69a-414b-a73c-42e5520159e9))
  1817. (pad "19" thru_hole oval (at 15.24 22.86) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1818. (net 19 "/D7_D7-128_D2-64") (pinfunction "D7") (pintype "tri_state") (tstamp c3c10b6c-4e63-4b6f-9f07-0fba486de8cc))
  1819. (pad "20" thru_hole oval (at 15.24 20.32) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1820. (net 20 "/CE_128") (pinfunction "~{CE}") (pintype "input") (tstamp 19748edb-0e3d-4f56-a16a-263397c42562))
  1821. (pad "21" thru_hole oval (at 15.24 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1822. (net 21 "/A10") (pinfunction "A10") (pintype "input") (tstamp 3f465d93-6e58-4910-a44b-9f95d75568be))
  1823. (pad "22" thru_hole oval (at 15.24 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1824. (net 92 "/OE_EPROM") (pinfunction "~{OE}") (pintype "input") (tstamp abd1f0bd-80e7-4b3c-a64c-48ef79fb53ac))
  1825. (pad "23" thru_hole oval (at 15.24 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1826. (net 22 "/A11") (pinfunction "A11") (pintype "input") (tstamp 5eca4b1b-938c-4eb2-b843-ede3c2bab05b))
  1827. (pad "24" thru_hole oval (at 15.24 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1828. (net 23 "/A9") (pinfunction "A9") (pintype "input") (tstamp b9fdf644-fe28-4690-be9c-1596c1239278))
  1829. (pad "25" thru_hole oval (at 15.24 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1830. (net 24 "/A8") (pinfunction "A8") (pintype "input") (tstamp d0cb4f06-edda-475b-845d-28163fbfa8b0))
  1831. (pad "26" thru_hole oval (at 15.24 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1832. (net 25 "/A13_128") (pinfunction "A13") (pintype "input") (tstamp 6c0914f4-d09a-4a43-b60f-3feab5432df6))
  1833. (pad "27" thru_hole oval (at 15.24 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1834. (net 1 "VCC") (pinfunction "~{PGM}") (pintype "input") (tstamp dddf00bd-c03a-4a09-8222-dd067cd108ab))
  1835. (pad "28" thru_hole oval (at 15.24 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1836. (net 26 "unconnected-(U1-VCC-Pad28)") (pinfunction "VCC") (pintype "power_in") (tstamp 5bdc0af7-5894-4dc6-86d2-7c15a78afc24))
  1837. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-28_W15.24mm.wrl"
  1838. (offset (xyz 0 0 0))
  1839. (scale (xyz 1 1 1))
  1840. (rotate (xyz 0 0 0))
  1841. )
  1842. )
  1843. (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
  1844. (tstamp 50a7e4d2-0337-49df-8d6b-5b277c52276a)
  1845. (at 182.576 33.407)
  1846. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1847. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  1848. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  1849. (property "Sheetname" "")
  1850. (property "ki_description" "Resistor, small symbol")
  1851. (property "ki_keywords" "R resistor")
  1852. (path "/dffd4735-3ac9-4857-a849-47c7f622ffb6")
  1853. (attr through_hole)
  1854. (fp_text reference "R6" (at 5.08 -2.37) (layer "F.SilkS")
  1855. (effects (font (size 1 1) (thickness 0.15)))
  1856. (tstamp d2e2fea5-8520-42a7-9cb2-6146016c28ed)
  1857. )
  1858. (fp_text value "820" (at 5.08 2.37) (layer "F.Fab")
  1859. (effects (font (size 1 1) (thickness 0.15)))
  1860. (tstamp 3932faec-795f-49ad-af96-94d35b7c6639)
  1861. )
  1862. (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
  1863. (effects (font (size 1 1) (thickness 0.15)))
  1864. (tstamp 864f99fa-e946-4a37-9992-f8c40544bdae)
  1865. )
  1866. (fp_line (start 1.04 0) (end 1.81 0)
  1867. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb8fbcfb-ff1e-44a7-919e-5d182a7450b3))
  1868. (fp_line (start 1.81 -1.37) (end 1.81 1.37)
  1869. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7cf17268-890b-4c41-8f78-0cf9e91dfe4c))
  1870. (fp_line (start 1.81 1.37) (end 8.35 1.37)
  1871. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f3e7720-f315-4a6b-90d9-f075984810dc))
  1872. (fp_line (start 8.35 -1.37) (end 1.81 -1.37)
  1873. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eaa3e01b-cde4-4748-b0c2-abaaed99dbc2))
  1874. (fp_line (start 8.35 1.37) (end 8.35 -1.37)
  1875. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63be7f42-7b24-46f6-b29a-cd858673d143))
  1876. (fp_line (start 9.12 0) (end 8.35 0)
  1877. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8c6c6d7d-641c-4eef-b585-0fcf9f0498a5))
  1878. (fp_line (start -1.05 -1.5) (end -1.05 1.5)
  1879. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f5aff02-89fd-4f0b-9710-8948355d44c3))
  1880. (fp_line (start -1.05 1.5) (end 11.21 1.5)
  1881. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 838d7f6b-bea6-4da6-9796-fbbda195844a))
  1882. (fp_line (start 11.21 -1.5) (end -1.05 -1.5)
  1883. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 59f86e98-0554-48db-942c-21e295054c8b))
  1884. (fp_line (start 11.21 1.5) (end 11.21 -1.5)
  1885. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8bdf655f-f3c2-4e8b-b4a8-59d38238a3fa))
  1886. (fp_line (start 0 0) (end 1.93 0)
  1887. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 969a5003-d991-45ff-aa93-35e971850dce))
  1888. (fp_line (start 1.93 -1.25) (end 1.93 1.25)
  1889. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 467c90d6-30fa-43b3-8a49-593abaadb6e3))
  1890. (fp_line (start 1.93 1.25) (end 8.23 1.25)
  1891. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25c8ee0c-9b19-471b-b333-1dd1babacac8))
  1892. (fp_line (start 8.23 -1.25) (end 1.93 -1.25)
  1893. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2454cb38-589f-4f1f-bb03-b17d8bf05424))
  1894. (fp_line (start 8.23 1.25) (end 8.23 -1.25)
  1895. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2adc773-ec51-4204-ae98-5247f243fb47))
  1896. (fp_line (start 10.16 0) (end 8.23 0)
  1897. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29bdb60a-1963-4b7b-83e9-a6995b92a3b4))
  1898. (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1899. (net 88 "Net-(Q2-C)") (pintype "passive") (tstamp a5ccd9aa-7729-40bc-a2ce-cfb650e9e904))
  1900. (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1901. (net 140 "Net-(BT1-+)") (pintype "passive") (tstamp 80bcc291-148e-494b-8cd6-5f502a56f973))
  1902. (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
  1903. (offset (xyz 0 0 0))
  1904. (scale (xyz 1 1 1))
  1905. (rotate (xyz 0 0 0))
  1906. )
  1907. )
  1908. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  1909. (tstamp 50f333ec-7c6d-4818-b2d3-57fa0e76eb95)
  1910. (at 128.376 13.207)
  1911. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  1912. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  1913. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  1914. (property "Sheetname" "")
  1915. (property "ki_description" "Quad buffer 3-State outputs")
  1916. (property "ki_keywords" "TTL Buffer 3State")
  1917. (path "/c62e2f04-907b-49c9-b9da-e7fea74b1a88")
  1918. (attr through_hole)
  1919. (fp_text reference "U4" (at 3.81 -2.33) (layer "F.SilkS")
  1920. (effects (font (size 1 1) (thickness 0.15)))
  1921. (tstamp 6d478a56-a366-4f02-94f1-61d697b407ff)
  1922. )
  1923. (fp_text value "74LS126" (at 3.81 17.57) (layer "F.Fab")
  1924. (effects (font (size 1 1) (thickness 0.15)))
  1925. (tstamp ecda1261-7035-4931-a6be-969d94efea34)
  1926. )
  1927. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  1928. (effects (font (size 1 1) (thickness 0.15)))
  1929. (tstamp 33763614-ffe8-4f75-b259-32f08deab957)
  1930. )
  1931. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  1932. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a21ce00-caa0-4bda-bcd2-40a539a9984f))
  1933. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  1934. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5279826c-49c4-41ff-9940-94331216a770))
  1935. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  1936. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b1e46de-ed5b-4a6d-bbc9-2e03046b56ad))
  1937. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  1938. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe70d4d2-9ece-443d-9392-f2e7d78f6c46))
  1939. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  1940. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dbbf7372-4da3-452e-823e-cdba8b941f3b))
  1941. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  1942. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0586cb38-ae83-4648-9e97-7110c7af4e11))
  1943. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  1944. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57b1f552-92c8-4dae-bbc5-0ad77ea97d7c))
  1945. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  1946. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7d980e5-d363-4822-bd0f-2dbba38ee324))
  1947. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  1948. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79f8ed9a-989f-4af8-8e40-f4fd3fe78190))
  1949. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  1950. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d41430f-e967-4f33-873d-0f96147667d1))
  1951. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  1952. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e7d792ce-7b06-4110-bd8b-3b9197f74b7b))
  1953. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  1954. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4d1c6af-bed2-4a27-a9b2-9e6a1f9c9f50))
  1955. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  1956. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f890736-2a8d-4608-8bfb-8c4095744a58))
  1957. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  1958. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f3980a2-5958-43fe-91a5-5466204cc486))
  1959. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  1960. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 882e5d06-c740-42f5-99ec-932c53dc6a3e))
  1961. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1962. (net 147 "/NOR OUT2") (pintype "input") (tstamp 88d6b802-f723-4433-a02f-c97981f4797a))
  1963. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1964. (net 148 "Net-(U5A-Q2)") (pintype "input") (tstamp 0b23531d-5b30-4a55-a5fe-10c2bb482288))
  1965. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1966. (net 11 "/D4_D0-128_D4-64") (pintype "tri_state") (tstamp 8bf32d23-2e79-4d50-a877-f9d75d559387))
  1967. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1968. (net 147 "/NOR OUT2") (pintype "input") (tstamp 5d4c296a-35a1-45aa-a812-e36688f29a9f))
  1969. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1970. (net 149 "Net-(U5A-Q1)") (pintype "input") (tstamp d94d6c52-355a-424d-a84b-c84df7d3036d))
  1971. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1972. (net 13 "/D2_D2-128_D5-64") (pintype "tri_state") (tstamp 598ec2bb-6664-4027-ae4b-b03200953f56))
  1973. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1974. (net 150 "unconnected-(U4E-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp 32cc13d5-6fdc-43fe-8dd7-74b64b1c45e7))
  1975. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1976. (net 17 "/D3_D5-128_D3-64") (pintype "tri_state") (tstamp 5acd5e6c-a5c1-4230-b9e2-54a846472511))
  1977. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1978. (net 151 "Net-(U5A-Q3)") (pintype "input") (tstamp 7ffd9671-acea-4d1a-93c8-f9f433b99216))
  1979. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1980. (net 147 "/NOR OUT2") (pintype "input") (tstamp dcfd3f78-14b4-465b-9a92-7c284bb61798))
  1981. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1982. (net 18 "/D0_D6-128_D0-64") (pintype "tri_state") (tstamp 8e18c50b-1b1e-4bca-bbfa-c299a28c61be))
  1983. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1984. (net 152 "Net-(U5B-Q0)") (pintype "input") (tstamp 306def6b-94d1-4447-b44a-4cee43947708))
  1985. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1986. (net 147 "/NOR OUT2") (pintype "input") (tstamp e6f8e64f-a3d9-4884-aa26-bf14d7e7d752))
  1987. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  1988. (net 153 "unconnected-(U4E-VCC-Pad14)") (pinfunction "VCC") (pintype "power_in") (tstamp 37f53d16-4ca9-4506-b453-c5c5a9edec5c))
  1989. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  1990. (offset (xyz 0 0 0))
  1991. (scale (xyz 1 1 1))
  1992. (rotate (xyz 0 0 0))
  1993. )
  1994. )
  1995. (footprint "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
  1996. (tstamp 6087886a-7ccd-44dd-b321-4faeede2d44c)
  1997. (at 106.074 90.4)
  1998. (descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
  1999. (tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
  2000. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2001. (property "Sheetname" "")
  2002. (property "ki_description" "0.1A Ic, 30V Vce, Small Signal NPN Transistor, TO-92")
  2003. (property "ki_keywords" "NPN Transistor")
  2004. (path "/47169ac0-43af-41ba-9719-b53a2229c7ea")
  2005. (attr through_hole)
  2006. (fp_text reference "Q1" (at 1.27 -3.56) (layer "F.SilkS")
  2007. (effects (font (size 1 1) (thickness 0.15)))
  2008. (tstamp 6c225e34-486d-448b-a1bf-c0b7c20e06fb)
  2009. )
  2010. (fp_text value "BC548" (at 1.27 2.79) (layer "F.Fab")
  2011. (effects (font (size 1 1) (thickness 0.15)))
  2012. (tstamp 962a9b45-ef7d-4ade-874e-2f60fea53910)
  2013. )
  2014. (fp_text user "${REFERENCE}" (at 1.27 0) (layer "F.Fab")
  2015. (effects (font (size 1 1) (thickness 0.15)))
  2016. (tstamp 042794c2-45ad-4483-84ba-cab2f3ada72c)
  2017. )
  2018. (fp_line (start -0.53 1.85) (end 3.07 1.85)
  2019. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3184d60a-688f-44bf-80d0-372c87ee5541))
  2020. (fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6)
  2021. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d64194df-4ff2-456f-857f-a706d8ba5c4b))
  2022. (fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478)
  2023. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1aa99a34-6600-4f9a-b84e-840de673a05d))
  2024. (fp_line (start -1.46 -2.73) (end -1.46 2.01)
  2025. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c128fa2-5a88-402a-8b1e-fe7a44c2fe38))
  2026. (fp_line (start -1.46 -2.73) (end 4 -2.73)
  2027. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 05d04faf-bf54-427c-9173-c54e0fbb6d14))
  2028. (fp_line (start 4 2.01) (end -1.46 2.01)
  2029. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 186086c5-3d00-4b6d-b909-6fe30e2c05a4))
  2030. (fp_line (start 4 2.01) (end 4 -2.73)
  2031. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 60544234-45cd-47bf-a9aa-48e0de4af865))
  2032. (fp_line (start -0.5 1.75) (end 3 1.75)
  2033. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f6be25a-fdb9-4539-87de-711f77ae3454))
  2034. (fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48)
  2035. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a60894f9-7a88-4b64-8820-f90de1c055bb))
  2036. (fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625)
  2037. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a30a8e6-07e8-4801-be6a-b274859922b4))
  2038. (pad "1" thru_hole rect (at 0 0) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
  2039. (net 85 "Net-(Q1-C)") (pinfunction "C") (pintype "passive") (tstamp bd3a4c5a-5f4f-419d-9304-8d912c1e535c))
  2040. (pad "2" thru_hole oval (at 1.27 0) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
  2041. (net 86 "Net-(Q1-B)") (pinfunction "B") (pintype "input") (tstamp 5823a5fb-98bc-4b2c-8726-3d316f55df31))
  2042. (pad "3" thru_hole oval (at 2.54 0) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
  2043. (net 87 "GND") (pinfunction "E") (pintype "passive") (tstamp 3f13bf0a-4c4a-4766-a2ea-be380663e153))
  2044. (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.wrl"
  2045. (offset (xyz 0 0 0))
  2046. (scale (xyz 1 1 1))
  2047. (rotate (xyz 0 0 0))
  2048. )
  2049. )
  2050. (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
  2051. (tstamp 65a57d84-2292-44da-8b30-083a79c8ecb0)
  2052. (at 182.576 37.457)
  2053. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  2054. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2055. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2056. (property "Sheetname" "")
  2057. (property "ki_description" "Resistor, small symbol")
  2058. (property "ki_keywords" "R resistor")
  2059. (path "/59ce429f-fdfd-4c81-8c44-63475bd57131")
  2060. (attr through_hole)
  2061. (fp_text reference "R7" (at 5.08 -2.37) (layer "F.SilkS")
  2062. (effects (font (size 1 1) (thickness 0.15)))
  2063. (tstamp e31c5a37-7388-41fa-ba22-6ff7552bf31d)
  2064. )
  2065. (fp_text value "10K" (at 5.08 2.37) (layer "F.Fab")
  2066. (effects (font (size 1 1) (thickness 0.15)))
  2067. (tstamp 5e8b4031-2ad6-402c-9b42-dece86f68b09)
  2068. )
  2069. (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
  2070. (effects (font (size 1 1) (thickness 0.15)))
  2071. (tstamp 437720cf-dd77-4a9f-8cc6-aa96567f3d48)
  2072. )
  2073. (fp_line (start 1.04 0) (end 1.81 0)
  2074. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28ee67e0-3628-40a7-94c8-da2ba673a5c7))
  2075. (fp_line (start 1.81 -1.37) (end 1.81 1.37)
  2076. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b32d0fc9-5b98-4474-8c0b-2847005baf94))
  2077. (fp_line (start 1.81 1.37) (end 8.35 1.37)
  2078. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 044da4a7-172b-4971-9853-be8133cee7de))
  2079. (fp_line (start 8.35 -1.37) (end 1.81 -1.37)
  2080. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a0cec0e-0a74-4d2c-839c-95ec4be55949))
  2081. (fp_line (start 8.35 1.37) (end 8.35 -1.37)
  2082. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d2a8636-cf4b-4d15-a27c-de9bc49da76f))
  2083. (fp_line (start 9.12 0) (end 8.35 0)
  2084. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a48f8439-40ff-4347-bc26-8377be39fa29))
  2085. (fp_line (start -1.05 -1.5) (end -1.05 1.5)
  2086. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b3e60b5-6eed-488f-b37b-82b6f76440e8))
  2087. (fp_line (start -1.05 1.5) (end 11.21 1.5)
  2088. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c5c4909-ed02-407c-bafb-d8de51beee6c))
  2089. (fp_line (start 11.21 -1.5) (end -1.05 -1.5)
  2090. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a40ea242-37b0-44eb-a5e8-cb8eb700b232))
  2091. (fp_line (start 11.21 1.5) (end 11.21 -1.5)
  2092. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e23007e0-d40d-4b90-8824-15aba19a8415))
  2093. (fp_line (start 0 0) (end 1.93 0)
  2094. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 082c6ede-3074-441a-8b24-c0ca9866838d))
  2095. (fp_line (start 1.93 -1.25) (end 1.93 1.25)
  2096. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87b3b7d0-a06f-4a05-b320-1d89d9a17e1c))
  2097. (fp_line (start 1.93 1.25) (end 8.23 1.25)
  2098. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c23cbe94-51f1-4324-b550-3e6d3e14feb6))
  2099. (fp_line (start 8.23 -1.25) (end 1.93 -1.25)
  2100. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34f3e23c-0ea8-4a6d-a01c-66eb29aa6553))
  2101. (fp_line (start 8.23 1.25) (end 8.23 -1.25)
  2102. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f94af725-26f0-4066-8f75-207eb4c11721))
  2103. (fp_line (start 10.16 0) (end 8.23 0)
  2104. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa4fe9db-f703-4107-9e0f-bfb053bb2597))
  2105. (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2106. (net 141 "Net-(U9_E2_L1B-~{Q})") (pintype "passive") (tstamp 35b72582-1c8e-4ce3-aa0b-bf67413fb13e))
  2107. (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2108. (net 90 "Net-(Q3-B)") (pintype "passive") (tstamp 8e7b4982-ba5f-41df-b022-6131f217ecb3))
  2109. (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
  2110. (offset (xyz 0 0 0))
  2111. (scale (xyz 1 1 1))
  2112. (rotate (xyz 0 0 0))
  2113. )
  2114. )
  2115. (footprint "Package_DIP:DIP-24_W15.24mm" (layer "F.Cu")
  2116. (tstamp 6d53931c-c2b0-42ed-b1ae-f515be877475)
  2117. (at 158.618 94.229)
  2118. (descr "24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils)")
  2119. (tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil")
  2120. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2121. (property "Sheetname" "")
  2122. (property "ki_description" "2048x8 bit Low Power CMOS Static RAM, 55/70ns, DIP-28")
  2123. (property "ki_keywords" "RAM SRAM CMOS MEMORY")
  2124. (path "/8e15dc81-f70a-48a0-ac11-a7ad1464e141")
  2125. (attr through_hole)
  2126. (fp_text reference "U14" (at 7.62 -2.33) (layer "F.SilkS")
  2127. (effects (font (size 1 1) (thickness 0.15)))
  2128. (tstamp a4550e10-86f5-4db7-983a-f2966dd16f61)
  2129. )
  2130. (fp_text value "MB8416" (at 7.62 30.27) (layer "F.Fab")
  2131. (effects (font (size 1 1) (thickness 0.15)))
  2132. (tstamp b70ecb39-28f2-4cdc-8ee4-5fb726e5fcc3)
  2133. )
  2134. (fp_text user "${REFERENCE}" (at 7.62 13.97) (layer "F.Fab")
  2135. (effects (font (size 1 1) (thickness 0.15)))
  2136. (tstamp 82053fb5-160c-43b3-891b-d3afcfc100a5)
  2137. )
  2138. (fp_line (start 1.16 -1.33) (end 1.16 29.27)
  2139. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce1ff1b5-3b19-41dd-86da-2cc44c0f67f4))
  2140. (fp_line (start 1.16 29.27) (end 14.08 29.27)
  2141. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ccee855-32dc-43c9-83cc-f813928c3ab1))
  2142. (fp_line (start 6.62 -1.33) (end 1.16 -1.33)
  2143. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4937a76-6ec3-4268-8a4c-c5f3e9292a6d))
  2144. (fp_line (start 14.08 -1.33) (end 8.62 -1.33)
  2145. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0183b5e-8ce3-4473-94e4-cf72769ef4f1))
  2146. (fp_line (start 14.08 29.27) (end 14.08 -1.33)
  2147. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9bd0c1c6-a9bb-44fc-b002-ae133716b15d))
  2148. (fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33)
  2149. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d078bb8-b931-4d41-af5c-b56ea6f6ebf5))
  2150. (fp_line (start -1.05 -1.55) (end -1.05 29.5)
  2151. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d318bf0-ade0-4908-82bd-fadcda4b18f2))
  2152. (fp_line (start -1.05 29.5) (end 16.3 29.5)
  2153. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9642e599-76f5-42b9-a5fe-dcb85377d0fc))
  2154. (fp_line (start 16.3 -1.55) (end -1.05 -1.55)
  2155. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c9a4e1d-07c9-4130-93d9-3150e410abac))
  2156. (fp_line (start 16.3 29.5) (end 16.3 -1.55)
  2157. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 430edee2-e031-4fd9-924f-96f90592d788))
  2158. (fp_line (start 0.255 -0.27) (end 1.255 -1.27)
  2159. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0857932e-25d3-4228-8070-652ce6892088))
  2160. (fp_line (start 0.255 29.21) (end 0.255 -0.27)
  2161. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3efae7d-aa9d-467f-9847-1a569b75b0a0))
  2162. (fp_line (start 1.255 -1.27) (end 14.985 -1.27)
  2163. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eab4032d-6b61-4fbf-9bd3-db503101668d))
  2164. (fp_line (start 14.985 -1.27) (end 14.985 29.21)
  2165. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f564635-9fda-4a90-8621-322f349c5a5d))
  2166. (fp_line (start 14.985 29.21) (end 0.255 29.21)
  2167. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b099496f-51b5-497b-ba33-8f82a73e74cb))
  2168. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2169. (net 3 "/A7") (pinfunction "A7") (pintype "input") (tstamp 760628cd-c6d8-423e-b835-f5f97ffc4875))
  2170. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2171. (net 4 "/A6") (pinfunction "A6") (pintype "input") (tstamp 1fb0264a-ed2f-4351-a815-aaf8ed736606))
  2172. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2173. (net 5 "/A5") (pinfunction "A5") (pintype "input") (tstamp db6f3302-9fb8-4aed-854c-a003a62ac11a))
  2174. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2175. (net 6 "/A4") (pinfunction "A4") (pintype "input") (tstamp 52fa682b-daa0-456e-a272-a5b522c9cbf6))
  2176. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2177. (net 7 "/A3") (pinfunction "A3") (pintype "input") (tstamp 7727d7e2-5979-45e6-ae88-c7dcc469c696))
  2178. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2179. (net 8 "/A2") (pinfunction "A2") (pintype "input") (tstamp ffca084f-de5c-48e6-a858-189cd0caa1f7))
  2180. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2181. (net 9 "/A1") (pinfunction "A1") (pintype "input") (tstamp 17eb0f1c-50fd-4d20-9671-ba8c05cc556c))
  2182. (pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2183. (net 10 "/A0") (pinfunction "A0") (pintype "input") (tstamp fec2ff9a-76e5-4ba8-8376-e74536f7a8c0))
  2184. (pad "9" thru_hole oval (at 0 20.32) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2185. (net 18 "/D0_D6-128_D0-64") (pinfunction "Q0") (pintype "tri_state") (tstamp d3cdba66-8986-4857-9c34-66814a5f9c7f))
  2186. (pad "10" thru_hole oval (at 0 22.86) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2187. (net 12 "/D1_D1-128_D7-64") (pinfunction "Q1") (pintype "tri_state") (tstamp 62119915-a280-488a-98a5-349d8e5c3286))
  2188. (pad "11" thru_hole oval (at 0 25.4) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2189. (net 13 "/D2_D2-128_D5-64") (pinfunction "Q2") (pintype "tri_state") (tstamp acd3ec4f-efa0-4a9e-a525-4747bff018f9))
  2190. (pad "12" thru_hole oval (at 0 27.94) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2191. (net 31 "unconnected-(U14-GND-Pad12)") (pinfunction "GND") (pintype "power_in") (tstamp b8b7026b-7eff-4551-a2f7-35676967c014))
  2192. (pad "13" thru_hole oval (at 15.24 27.94) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2193. (net 17 "/D3_D5-128_D3-64") (pinfunction "Q3") (pintype "tri_state") (tstamp 55917a3a-5cc2-4f12-a587-5e66bf886722))
  2194. (pad "14" thru_hole oval (at 15.24 25.4) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2195. (net 11 "/D4_D0-128_D4-64") (pinfunction "Q4") (pintype "tri_state") (tstamp 0a6d98a3-5168-402c-9212-9377200565ac))
  2196. (pad "15" thru_hole oval (at 15.24 22.86) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2197. (net 15 "/D5_D3-128_D1-64") (pinfunction "Q5") (pintype "tri_state") (tstamp c0caea6f-d036-47eb-8553-3f472750394a))
  2198. (pad "16" thru_hole oval (at 15.24 20.32) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2199. (net 16 "/D6_D4-128_D6-64") (pinfunction "Q6") (pintype "tri_state") (tstamp 422b4f2a-f0b8-4633-9e54-de02f88cd40d))
  2200. (pad "17" thru_hole oval (at 15.24 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2201. (net 19 "/D7_D7-128_D2-64") (pinfunction "Q7") (pintype "tri_state") (tstamp 7eb35f0e-be8b-4a75-96ba-bf36f66c3247))
  2202. (pad "18" thru_hole oval (at 15.24 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2203. (net 32 "/SRAM_OE") (pinfunction "~{OE}") (pintype "input") (tstamp 40c43c91-a77b-44ad-a6fa-bc87a823dfb4))
  2204. (pad "19" thru_hole oval (at 15.24 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2205. (net 21 "/A10") (pinfunction "A10") (pintype "input") (tstamp d8e6f74f-a136-4fc0-98be-58c40fcd9abb))
  2206. (pad "20" thru_hole oval (at 15.24 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2207. (net 33 "/SRAM_CE") (pinfunction "~{CS}") (pintype "input") (tstamp a09bd526-7964-4724-8cab-8e2b07031975))
  2208. (pad "21" thru_hole oval (at 15.24 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2209. (net 34 "/SRAM_WE") (pinfunction "~{WE}") (pintype "input") (tstamp c189c4d8-7ec2-497e-a47e-ed80cd021274))
  2210. (pad "22" thru_hole oval (at 15.24 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2211. (net 23 "/A9") (pinfunction "A9") (pintype "input") (tstamp e6fe6e5b-3ce6-4395-8278-897523c6ecdc))
  2212. (pad "23" thru_hole oval (at 15.24 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2213. (net 24 "/A8") (pinfunction "A8") (pintype "input") (tstamp 64c87e2e-748f-4d37-b996-8f0d2da19976))
  2214. (pad "24" thru_hole oval (at 15.24 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2215. (net 35 "unconnected-(U14-VCC-Pad24)") (pinfunction "VCC") (pintype "power_in") (tstamp 66e27914-46d2-42fe-8c14-71fd005f2a00))
  2216. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-24_W15.24mm.wrl"
  2217. (offset (xyz 0 0 0))
  2218. (scale (xyz 1 1 1))
  2219. (rotate (xyz 0 0 0))
  2220. )
  2221. )
  2222. (footprint "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
  2223. (tstamp 7150b142-d189-482f-b5a3-434e519f0db4)
  2224. (at 49.4668 70.3404)
  2225. (descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
  2226. (tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
  2227. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2228. (property "Sheetname" "")
  2229. (property "ki_description" "0.1A Ic, 30V Vce, Small Signal NPN Transistor, TO-92")
  2230. (property "ki_keywords" "NPN Transistor")
  2231. (path "/cf60817b-52b3-40ff-9bf9-f6a91ee37230")
  2232. (attr through_hole)
  2233. (fp_text reference "Q3" (at 1.27 -3.56) (layer "F.SilkS")
  2234. (effects (font (size 1 1) (thickness 0.15)))
  2235. (tstamp 763cc5e4-1ea3-4b8c-a6e8-0f5fb6c10770)
  2236. )
  2237. (fp_text value "BC548" (at 1.27 2.79) (layer "F.Fab")
  2238. (effects (font (size 1 1) (thickness 0.15)))
  2239. (tstamp 10771a9b-c0c3-491f-9cb4-14432ecd77aa)
  2240. )
  2241. (fp_text user "${REFERENCE}" (at 1.27 0) (layer "F.Fab")
  2242. (effects (font (size 1 1) (thickness 0.15)))
  2243. (tstamp 917f194a-069e-48ea-93a5-ba4343d5b360)
  2244. )
  2245. (fp_line (start -0.53 1.85) (end 3.07 1.85)
  2246. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89840c45-8d24-42ff-b5f7-4ff58eadc91d))
  2247. (fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6)
  2248. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 702c3b3d-6e53-4da6-a290-8a3eaea57e88))
  2249. (fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478)
  2250. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75817c8f-ee58-4149-97fc-f58fe2de9d50))
  2251. (fp_line (start -1.46 -2.73) (end -1.46 2.01)
  2252. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0cfa8c62-74a4-4169-aca1-c3da7328217a))
  2253. (fp_line (start -1.46 -2.73) (end 4 -2.73)
  2254. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5702ebe7-0d6c-47e4-b382-8068b7d0869e))
  2255. (fp_line (start 4 2.01) (end -1.46 2.01)
  2256. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 027c4b59-5f65-4ce3-a5ce-f5b3f49ee0c6))
  2257. (fp_line (start 4 2.01) (end 4 -2.73)
  2258. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a90bf6b8-dfac-41ac-991a-5bce383c8530))
  2259. (fp_line (start -0.5 1.75) (end 3 1.75)
  2260. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c2d4e28e-f8e0-4255-a9ac-83a9dbef868c))
  2261. (fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48)
  2262. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7441976f-af3c-4547-87ea-f70dad5459d5))
  2263. (fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625)
  2264. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23613dc6-25c4-41ee-b8f3-111ef889e71b))
  2265. (pad "1" thru_hole rect (at 0 0) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
  2266. (net 87 "GND") (pinfunction "C") (pintype "passive") (tstamp 9c2b06a1-8d91-4760-9db2-0b65d9cec57f))
  2267. (pad "2" thru_hole oval (at 1.27 0) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
  2268. (net 90 "Net-(Q3-B)") (pinfunction "B") (pintype "input") (tstamp d788e8d2-a72e-4b46-89e2-50dccf2f83a1))
  2269. (pad "3" thru_hole oval (at 2.54 0) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
  2270. (net 91 "/0V") (pinfunction "E") (pintype "passive") (tstamp 682ddcec-ae7a-4bb0-866f-556b076e40c7))
  2271. (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.wrl"
  2272. (offset (xyz 0 0 0))
  2273. (scale (xyz 1 1 1))
  2274. (rotate (xyz 0 0 0))
  2275. )
  2276. )
  2277. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  2278. (tstamp 7396ba92-542e-403a-8340-d062914fdc69)
  2279. (at 128.376 52.007)
  2280. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  2281. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  2282. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2283. (property "Sheetname" "")
  2284. (property "ki_description" "Dual D Flip-flop, Set & Reset")
  2285. (property "ki_keywords" "TTL DFF")
  2286. (path "/c03b9397-7489-4d9a-adf9-b5cb7b9b276a")
  2287. (attr through_hole)
  2288. (fp_text reference "U9_E3" (at 3.81 -2.33) (layer "F.SilkS")
  2289. (effects (font (size 1 1) (thickness 0.15)))
  2290. (tstamp 3bbf8ce4-784a-44c8-98dc-6d59711e3c04)
  2291. )
  2292. (fp_text value "74LS74" (at 3.81 17.57) (layer "F.Fab")
  2293. (effects (font (size 1 1) (thickness 0.15)))
  2294. (tstamp 74e87236-f576-4d1d-a35c-00e38e98863b)
  2295. )
  2296. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  2297. (effects (font (size 1 1) (thickness 0.15)))
  2298. (tstamp dc955884-7c62-455b-b510-1261d585e07a)
  2299. )
  2300. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  2301. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e94b5f7-2bdc-4b1f-826d-7293ce890656))
  2302. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  2303. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82fd9445-83ee-4cd2-a83b-98ed086fd7a2))
  2304. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  2305. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a73dd382-f444-436d-b323-16133d41b2cd))
  2306. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  2307. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28c5226f-8070-4597-ab93-cbacd8c5b2f0))
  2308. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  2309. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12469952-95a5-42bb-8e17-3f92fd5127a4))
  2310. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  2311. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d704acbc-538d-4a68-aa10-00ad1530d449))
  2312. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  2313. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4290e070-fed7-4037-a33c-c61756c67443))
  2314. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  2315. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8f21f36e-9f09-4648-baa9-8cba2c9c115c))
  2316. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  2317. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76d96212-c6a3-418a-a8e9-7f40074e4912))
  2318. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  2319. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8b09980-1fc6-4244-b330-332a28a2fdb4))
  2320. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  2321. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d4dd1e3-8fcd-4b35-a970-abbcff421eaf))
  2322. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  2323. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7209c4a7-6e95-4804-a1cf-fbdce9b347d7))
  2324. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  2325. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fff297b7-988c-47ff-bf21-6243d42772f5))
  2326. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  2327. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5980e635-c45d-4801-92f6-ad441c51e824))
  2328. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  2329. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4956986-362e-46b1-96d6-2ec61a10a0a0))
  2330. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2331. (net 100 "/CLK") (pinfunction "~{R}") (pintype "input") (tstamp 0f267f82-c51a-40bf-be4c-b40d95d8001b))
  2332. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2333. (net 100 "/CLK") (pinfunction "D") (pintype "input") (tstamp 7a9e8a39-4ecc-4ad0-9563-e3c8e978132e))
  2334. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2335. (net 196 "Net-(U9_E2_L1B-C)") (pinfunction "C") (pintype "input") (tstamp 899f0246-bfcc-40a0-8786-19ef4fb0a6be))
  2336. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2337. (net 1 "VCC") (pinfunction "~{S}") (pintype "input") (tstamp 98ccb120-e83d-468b-92e4-95b61ccc916c))
  2338. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2339. (net 154 "Net-(U5A-MR)") (pinfunction "Q") (pintype "output") (tstamp 6d96b52d-ac95-4fb6-9d75-a79935122ad9))
  2340. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2341. (net 198 "Net-(U9_E3A-~{Q})") (pinfunction "~{Q}") (pintype "output") (tstamp 6fa47f6d-3649-4b2f-8802-2387eea42e45))
  2342. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2343. (net 199 "unconnected-(U9_E3C-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp 43a5c525-74ad-4307-9172-ba4e6e21b24d))
  2344. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2345. (net 181 "/NOR_IN_12_1") (pinfunction "~{Q}") (pintype "output") (tstamp 807afb20-da9f-45be-903f-c7060c7bb98d))
  2346. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2347. (net 164 "Net-(U6_D5A-~{S})") (pinfunction "Q") (pintype "output") (tstamp c27f0e4a-b677-4d51-b235-5e5dc394bfea))
  2348. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2349. (net 200 "Net-(U9_E3B-~{S})") (pinfunction "~{S}") (pintype "input") (tstamp 45a000db-32c5-49c2-a48c-ff9b589d4b2e))
  2350. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2351. (net 154 "Net-(U5A-MR)") (pinfunction "C") (pintype "input") (tstamp 754b53f0-98cc-451a-9528-b0dd4c69c5af))
  2352. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2353. (net 87 "GND") (pinfunction "D") (pintype "input") (tstamp a1629899-e9e1-4a93-b717-1f12ea4aaaab))
  2354. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2355. (net 1 "VCC") (pinfunction "~{R}") (pintype "input") (tstamp 3805ef8f-71b4-44b7-889e-f85b4f21ff31))
  2356. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2357. (net 201 "unconnected-(U9_E3C-VCC-Pad14)") (pinfunction "VCC") (pintype "power_in") (tstamp ddc2a9ca-3f17-4cf7-a5ba-8775353f7642))
  2358. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  2359. (offset (xyz 0 0 0))
  2360. (scale (xyz 1 1 1))
  2361. (rotate (xyz 0 0 0))
  2362. )
  2363. )
  2364. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  2365. (tstamp 77f8f551-2624-4f65-95be-144c3f7fcf1e)
  2366. (at 150.076 32.607)
  2367. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  2368. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  2369. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2370. (property "Sheetname" "")
  2371. (property "ki_description" "Quad And2")
  2372. (property "ki_keywords" "TTL and2")
  2373. (path "/f07f1066-851b-4bb6-94d5-4cb5d268f203")
  2374. (attr through_hole)
  2375. (fp_text reference "U12" (at 3.81 -2.33) (layer "F.SilkS")
  2376. (effects (font (size 1 1) (thickness 0.15)))
  2377. (tstamp 678299b7-9ce9-44ec-b558-72754b62a0bd)
  2378. )
  2379. (fp_text value "74LS08" (at 3.81 17.57) (layer "F.Fab")
  2380. (effects (font (size 1 1) (thickness 0.15)))
  2381. (tstamp e74da64c-7baf-4a52-8160-4260b1db9b37)
  2382. )
  2383. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  2384. (effects (font (size 1 1) (thickness 0.15)))
  2385. (tstamp 8a5bfb10-2e3d-4a60-85b7-918d5a3c2293)
  2386. )
  2387. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  2388. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc548bdc-e7d8-4e40-8489-44552aa65a25))
  2389. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  2390. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5dc9649a-ed4a-47bd-8248-616c349e324b))
  2391. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  2392. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6f99fb0-9a86-41df-aac6-363e2770ed06))
  2393. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  2394. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp acf5403a-0e63-42e7-8428-3727b062e22c))
  2395. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  2396. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ffd7973f-fb27-4083-9528-274b97022467))
  2397. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  2398. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7991e05-04ca-4bf6-ab9d-22fc7b4b4538))
  2399. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  2400. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 25a9f688-38c2-4624-bbc7-6c75e2ddc6f2))
  2401. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  2402. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b6b81124-8b27-4128-9e13-cccaa851e4b0))
  2403. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  2404. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 197d371a-880f-40f5-857c-10266007902d))
  2405. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  2406. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4338f0a5-9e97-431f-b926-a3cd007e2c81))
  2407. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  2408. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f63f0ca-66de-4c07-855c-141b1756a6f1))
  2409. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  2410. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bfc3fafc-aabe-40b8-9250-8e429d4d10ac))
  2411. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  2412. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c25038da-4da4-4c01-ba2f-f0b6ee758be1))
  2413. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  2414. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81079b89-8935-4fe6-bd8d-58d4c9d228f1))
  2415. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  2416. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4654369f-2bad-4838-9efc-dd64fa391c93))
  2417. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2418. (net 69 "/xmemfl") (pintype "input") (tstamp b85e477e-1e13-40aa-921a-61eb8375df2f))
  2419. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2420. (net 126 "/xmemfl_OUT") (pintype "input") (tstamp 3d447df7-4bca-4a96-805a-81cb8fe8e162))
  2421. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2422. (net 208 "unconnected-(U12-Pad3)") (pintype "output+no_connect") (tstamp 65ff7440-d51c-4a51-bcca-71d8c6af3340))
  2423. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2424. (net 164 "Net-(U6_D5A-~{S})") (pintype "input") (tstamp b315a6e5-8404-442f-a4f3-ccdf1ad023ea))
  2425. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2426. (net 143 "Net-(C1-Pad1)") (pintype "input") (tstamp 84d3e2f8-856b-4bd4-8f97-34cf7d88c026))
  2427. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2428. (net 195 "Net-(U9_E2_L1B-~{S})") (pintype "output") (tstamp f0665076-0288-4c5f-b09c-8f3869a1a80d))
  2429. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2430. (net 209 "unconnected-(U12E-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp 8cc62435-8d7b-44a4-b71a-f77b5b018644))
  2431. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2432. (net 144 "/OUT_DIR") (pintype "output") (tstamp 520607ee-38b6-432a-b394-47957a55e82f))
  2433. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2434. (net 138 "Net-(R1-Pad2)") (pintype "input") (tstamp 650a1009-9c9d-4d06-8c99-699288fa5e6a))
  2435. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2436. (net 206 "Net-(U11-Pad8)") (pintype "input") (tstamp 935863bc-4745-41be-b6f1-5850181ab03a))
  2437. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2438. (net 210 "unconnected-(U12-Pad11)") (pintype "output") (tstamp 362ef649-e14a-4a41-a7c3-a189fc68b672))
  2439. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2440. (net 211 "unconnected-(U12-Pad12)") (pintype "input") (tstamp 5c894daa-a438-4629-8e3a-c96d0d398143))
  2441. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2442. (net 212 "unconnected-(U12-Pad13)") (pintype "input") (tstamp 356317f4-e2f7-413f-aeef-5559c419e2df))
  2443. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2444. (net 213 "unconnected-(U12E-VCC-Pad14)") (pinfunction "VCC") (pintype "power_in") (tstamp 9de750b0-d21d-42f7-ae07-3f35cbe49d3c))
  2445. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  2446. (offset (xyz 0 0 0))
  2447. (scale (xyz 1 1 1))
  2448. (rotate (xyz 0 0 0))
  2449. )
  2450. )
  2451. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  2452. (tstamp 81593b95-6ef5-4e9c-a473-4f6ac914fc5d)
  2453. (at 128.376 32.607)
  2454. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  2455. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  2456. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2457. (property "Sheetname" "")
  2458. (property "ki_description" "quad 2-input NAND gate")
  2459. (property "ki_keywords" "TTL nand 2-input")
  2460. (path "/d4ce3837-fddd-4c82-89e6-99a4c97142e4")
  2461. (attr through_hole)
  2462. (fp_text reference "U10" (at 3.81 -2.33) (layer "F.SilkS")
  2463. (effects (font (size 1 1) (thickness 0.15)))
  2464. (tstamp 80b3814e-1739-4e8a-a35e-162fa5321a2a)
  2465. )
  2466. (fp_text value "74LS00" (at 3.81 17.57) (layer "F.Fab")
  2467. (effects (font (size 1 1) (thickness 0.15)))
  2468. (tstamp 6a91bf87-b435-43ab-ae2b-c6d0907d33b2)
  2469. )
  2470. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  2471. (effects (font (size 1 1) (thickness 0.15)))
  2472. (tstamp 49945172-58ef-417b-baf9-f62da7a53dbe)
  2473. )
  2474. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  2475. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b9a927b-4be1-4805-831b-b0499b341bf8))
  2476. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  2477. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a235f757-cb55-4548-8ce3-b308467ca266))
  2478. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  2479. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29cef7d1-e558-486d-af11-cc45bb2415b2))
  2480. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  2481. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bae79805-af48-42f0-94f0-2ff454329978))
  2482. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  2483. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4e9c14c-04e2-47f9-ae94-ee86dc07fa4d))
  2484. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  2485. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23f6334b-c880-46b9-9466-1889e16b6d95))
  2486. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  2487. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cc9f1e3e-2922-49b2-93b8-657bca8da10b))
  2488. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  2489. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24ec6752-58ee-47a5-a56a-266e867d655c))
  2490. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  2491. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 615722fc-fcf0-40e3-bc5d-2326c3b3a733))
  2492. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  2493. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dfd389ac-9704-4bcc-af17-5b35bc901c54))
  2494. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  2495. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95459bed-592c-4ce3-8bf5-ccee3b802b6a))
  2496. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  2497. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04d6f1b7-95aa-4651-afc6-424b58c27375))
  2498. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  2499. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b31e1bf3-f20a-4c70-a5b6-9700ba5cbdc6))
  2500. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  2501. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ccda877-bd8e-4179-aa9e-c5458cb84754))
  2502. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  2503. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5cc3c63-c3e7-4a3f-8c33-9ad169b11566))
  2504. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2505. (net 95 "/PROM_Q4") (pintype "input") (tstamp 10457dc3-b6a1-464b-8d93-746acc1adea0))
  2506. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2507. (net 95 "/PROM_Q4") (pintype "input") (tstamp b0a505bb-3316-4719-8c8f-cd9000acf6b6))
  2508. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2509. (net 202 "Net-(U10-Pad3)") (pintype "output") (tstamp c9fec025-dfe9-44bd-828b-668c2a4d04e9))
  2510. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2511. (net 148 "Net-(U5A-Q2)") (pintype "input") (tstamp a57907f6-383a-4fe4-8676-0ac8872358ce))
  2512. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2513. (net 152 "Net-(U5B-Q0)") (pintype "input") (tstamp 27470f1c-7615-4d33-ad01-bb358bf4fdb7))
  2514. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2515. (net 200 "Net-(U9_E3B-~{S})") (pintype "output") (tstamp 60b25593-657e-4da7-810e-b815dc22e654))
  2516. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2517. (net 203 "unconnected-(U10E-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp 874923a1-36da-4c45-9b3a-d61a381c4fb3))
  2518. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2519. (net 160 "Net-(U5B-MR)") (pintype "output") (tstamp 9f81fa3a-6ea1-43a3-a29a-9212e0f7b7a9))
  2520. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2521. (net 181 "/NOR_IN_12_1") (pintype "input") (tstamp eafe6579-661e-4510-acc5-2ca680063772))
  2522. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2523. (net 198 "Net-(U9_E3A-~{Q})") (pintype "input") (tstamp 6760793c-f352-4dcc-9d15-9965c8c471cd))
  2524. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2525. (net 93 "/PROM_A6") (pintype "output") (tstamp 10ff8d20-6163-4dbb-98ea-966aee02d2f1))
  2526. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2527. (net 4 "/A6") (pintype "input") (tstamp 89debebc-7db8-4a34-bcf6-f9fd774b7c24))
  2528. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2529. (net 179 "/NOR OUT 1") (pintype "input") (tstamp 60f5d299-7ea3-48f7-9bd9-53db9e4ddb67))
  2530. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2531. (net 204 "unconnected-(U10E-VCC-Pad14)") (pinfunction "VCC") (pintype "power_in") (tstamp 87ec7a12-811e-4eae-badd-4a68bcd0f761))
  2532. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  2533. (offset (xyz 0 0 0))
  2534. (scale (xyz 1 1 1))
  2535. (rotate (xyz 0 0 0))
  2536. )
  2537. )
  2538. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  2539. (tstamp 8f60fdf7-c7bb-4c61-944f-7d6461964088)
  2540. (at 160.926 13.207)
  2541. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  2542. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  2543. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2544. (property "Sheetname" "")
  2545. (property "ki_description" "Dual D Flip-flop, Set & Reset")
  2546. (property "ki_keywords" "TTL DFF")
  2547. (path "/8209ddd7-4c77-4490-aa92-878e6d3d8d90")
  2548. (attr through_hole)
  2549. (fp_text reference "U8" (at 3.81 -2.33) (layer "F.SilkS")
  2550. (effects (font (size 1 1) (thickness 0.15)))
  2551. (tstamp cf5dded3-0c60-4d42-8f3b-6d2e69af977c)
  2552. )
  2553. (fp_text value "74LS74" (at 3.81 17.57) (layer "F.Fab")
  2554. (effects (font (size 1 1) (thickness 0.15)))
  2555. (tstamp f4b785e7-b9c3-451f-870d-ddccf011b801)
  2556. )
  2557. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  2558. (effects (font (size 1 1) (thickness 0.15)))
  2559. (tstamp c1bc2d9b-e205-4652-8155-76f120bb6e41)
  2560. )
  2561. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  2562. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22072a79-e226-40ac-8862-19b5ad5cf1cc))
  2563. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  2564. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3f0a347-6254-47cb-862d-41329cec9463))
  2565. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  2566. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e13e22c-9ad5-48d1-90a3-c31fc1f92d85))
  2567. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  2568. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c151ad13-efd5-453a-a5fd-68d11a27993f))
  2569. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  2570. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9a35e71-9c01-44a1-b232-06778dd03333))
  2571. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  2572. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b19d9ba-4527-4747-af87-59b12bed35e6))
  2573. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  2574. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b22b468-b4cd-4185-827d-10b04b662971))
  2575. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  2576. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a32f579-3e0b-4b9f-939a-4167d04883eb))
  2577. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  2578. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83254643-14f2-4ece-8968-7fe904dde524))
  2579. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  2580. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 26f15109-103e-422c-9a67-3ee140c9920b))
  2581. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  2582. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp abb7212d-e777-4144-971f-d914aadf2f22))
  2583. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  2584. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 338527d8-86c2-429e-bafb-3246f8f30fa8))
  2585. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  2586. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0385d969-75bd-4aef-b576-4592089777d4))
  2587. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  2588. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb7d26c7-59aa-4557-9d3b-61add87e1d60))
  2589. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  2590. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d0fff4e-93ef-41c5-910e-dd17cfe3ee2e))
  2591. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 0c0c57ae-af3a-449b-a66a-638bb9d3a937))
  2592. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 5da94c58-397c-4837-96da-2c1d90093128))
  2593. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 7dc57778-1b6a-4ebb-9c36-7127a5504ace))
  2594. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 0aa670d1-bc5d-448c-b45c-934918a697ad))
  2595. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 02fb40ee-bea7-4963-80eb-9e749856bec1))
  2596. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 48dfcff9-2907-4776-8993-b5641701c624))
  2597. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2598. (net 177 "unconnected-(U8C-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp 5a9c739d-0a1c-486c-ae37-5e7dd35f4d10))
  2599. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp b3df860e-b717-40e4-947f-41402c9b84ef))
  2600. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp cf1413a9-aba0-4eac-94e8-643db2cf1a87))
  2601. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp d16c64fa-a27d-4434-89d5-e8bd7dd375cd))
  2602. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 950f065d-8f5b-499d-88e7-b048119c9319))
  2603. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 6455c5a8-45bf-4cb2-bdf3-f441985965bb))
  2604. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 617bf911-ce81-4f06-949a-1409924b7731))
  2605. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2606. (net 178 "unconnected-(U8C-VCC-Pad14)") (pinfunction "VCC") (pintype "power_in") (tstamp 51466b94-a73c-4b56-a307-07efc4146a96))
  2607. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  2608. (offset (xyz 0 0 0))
  2609. (scale (xyz 1 1 1))
  2610. (rotate (xyz 0 0 0))
  2611. )
  2612. )
  2613. (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
  2614. (tstamp aebe49fb-3b56-4805-b288-a4af90afbe2f)
  2615. (at 182.576 13.157)
  2616. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  2617. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2618. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2619. (property "Sheetname" "")
  2620. (property "ki_description" "Resistor, small symbol")
  2621. (property "ki_keywords" "R resistor")
  2622. (path "/11747968-058e-4abc-a173-38a9e0affd8b")
  2623. (attr through_hole)
  2624. (fp_text reference "R1" (at 5.08 -2.37) (layer "F.SilkS")
  2625. (effects (font (size 1 1) (thickness 0.15)))
  2626. (tstamp 54b7b965-4db1-4b6f-a146-449cd989f785)
  2627. )
  2628. (fp_text value "10K" (at 5.08 2.37) (layer "F.Fab")
  2629. (effects (font (size 1 1) (thickness 0.15)))
  2630. (tstamp 74050aed-8122-4ffe-b071-bd53310d4945)
  2631. )
  2632. (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
  2633. (effects (font (size 1 1) (thickness 0.15)))
  2634. (tstamp 9069478f-fc81-47c3-aa69-765c5bc3bc1a)
  2635. )
  2636. (fp_line (start 1.04 0) (end 1.81 0)
  2637. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc2a0da8-f023-4bce-8baf-55d410bbe097))
  2638. (fp_line (start 1.81 -1.37) (end 1.81 1.37)
  2639. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 986bf26d-fb31-447b-bde7-a3af7c5c365c))
  2640. (fp_line (start 1.81 1.37) (end 8.35 1.37)
  2641. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f273175f-b981-4ec4-923d-a864dc0d0db7))
  2642. (fp_line (start 8.35 -1.37) (end 1.81 -1.37)
  2643. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da8ad434-3bbf-4cba-bff6-d3875b14265c))
  2644. (fp_line (start 8.35 1.37) (end 8.35 -1.37)
  2645. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 235a208c-a334-4448-9a14-bc8017d3276a))
  2646. (fp_line (start 9.12 0) (end 8.35 0)
  2647. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77adc187-1172-45df-8efc-04e47b1e9cf7))
  2648. (fp_line (start -1.05 -1.5) (end -1.05 1.5)
  2649. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97100e26-7036-4397-8c80-311ff143b19f))
  2650. (fp_line (start -1.05 1.5) (end 11.21 1.5)
  2651. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5dfed1fe-66c3-44e1-9d23-c3e9ca91cb81))
  2652. (fp_line (start 11.21 -1.5) (end -1.05 -1.5)
  2653. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e96962da-82cc-4601-9b4c-855fe4bdb0c7))
  2654. (fp_line (start 11.21 1.5) (end 11.21 -1.5)
  2655. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c360fa4-7da3-47fc-a76e-a023b0a549da))
  2656. (fp_line (start 0 0) (end 1.93 0)
  2657. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dffe0480-227d-4490-856c-1890aca63aa1))
  2658. (fp_line (start 1.93 -1.25) (end 1.93 1.25)
  2659. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87162b94-0572-4e43-a1f4-c38a1e244799))
  2660. (fp_line (start 1.93 1.25) (end 8.23 1.25)
  2661. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3d5d7a3-1c28-4603-a67d-9af0319ea375))
  2662. (fp_line (start 8.23 -1.25) (end 1.93 -1.25)
  2663. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11de537b-6ccd-4286-80e5-fcca36b7bf57))
  2664. (fp_line (start 8.23 1.25) (end 8.23 -1.25)
  2665. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae807528-78e3-45fa-b087-a9a3658378dc))
  2666. (fp_line (start 10.16 0) (end 8.23 0)
  2667. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c635cce6-546c-4f08-871f-2f3a382c7422))
  2668. (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2669. (net 1 "VCC") (pintype "passive") (tstamp 7f5e8bad-5464-454f-8a79-cbb793004c83))
  2670. (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2671. (net 138 "Net-(R1-Pad2)") (pintype "passive") (tstamp b9d3968e-cc2b-4dcb-9ba6-063b46b4d778))
  2672. (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
  2673. (offset (xyz 0 0 0))
  2674. (scale (xyz 1 1 1))
  2675. (rotate (xyz 0 0 0))
  2676. )
  2677. )
  2678. (footprint "Package_DIP:DIP-28_W15.24mm" (layer "F.Cu")
  2679. (tstamp b267dc43-2f83-46c2-8e35-f77c99a57f71)
  2680. (at 105.664 52.07)
  2681. (descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils)")
  2682. (tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil")
  2683. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2684. (property "Sheetname" "")
  2685. (property "ki_description" "EPROM 64 KiBit, [Obsolete 2000-11]")
  2686. (property "ki_keywords" "EPROM 64KiBit")
  2687. (path "/2655bd42-206a-4569-b010-30ec1d6d97ae")
  2688. (attr through_hole)
  2689. (fp_text reference "U2" (at 7.62 -2.33) (layer "F.SilkS")
  2690. (effects (font (size 1 1) (thickness 0.15)))
  2691. (tstamp f1f48eee-8202-410c-ae91-bac31c4f89e5)
  2692. )
  2693. (fp_text value "2764" (at 7.62 35.35) (layer "F.Fab")
  2694. (effects (font (size 1 1) (thickness 0.15)))
  2695. (tstamp e959cfe5-2df3-4154-b1f1-eb9816cf0182)
  2696. )
  2697. (fp_text user "${REFERENCE}" (at 7.62 16.51) (layer "F.Fab")
  2698. (effects (font (size 1 1) (thickness 0.15)))
  2699. (tstamp d7fab356-0109-4230-afde-73560d0b0f67)
  2700. )
  2701. (fp_line (start 1.16 -1.33) (end 1.16 34.35)
  2702. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7cb9d806-4b8f-414f-97e7-8b7566dddb1b))
  2703. (fp_line (start 1.16 34.35) (end 14.08 34.35)
  2704. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41058d33-8b1c-4336-a21b-57f5d79d9e4a))
  2705. (fp_line (start 6.62 -1.33) (end 1.16 -1.33)
  2706. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3d8ed27-a687-467b-9633-a15d6222c85f))
  2707. (fp_line (start 14.08 -1.33) (end 8.62 -1.33)
  2708. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 090807fb-4397-4cd9-8085-2aeff29c8515))
  2709. (fp_line (start 14.08 34.35) (end 14.08 -1.33)
  2710. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e26b8d8-d158-4133-ba06-064fa33dad7e))
  2711. (fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33)
  2712. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d5692ee-24af-4a34-a56f-607dbacd5737))
  2713. (fp_line (start -1.05 -1.55) (end -1.05 34.55)
  2714. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78c689bb-a5c4-4e29-b5d9-91c7c2f73394))
  2715. (fp_line (start -1.05 34.55) (end 16.3 34.55)
  2716. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f3e031a-5ec7-45e7-ad41-653df0cbc868))
  2717. (fp_line (start 16.3 -1.55) (end -1.05 -1.55)
  2718. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b346945-37a1-4979-9f63-292edfb91063))
  2719. (fp_line (start 16.3 34.55) (end 16.3 -1.55)
  2720. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3eb92c4-45ab-4179-9ca5-da859d4d1868))
  2721. (fp_line (start 0.255 -0.27) (end 1.255 -1.27)
  2722. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d79bba4a-2fa4-47ce-a438-e06c7e164dc5))
  2723. (fp_line (start 0.255 34.29) (end 0.255 -0.27)
  2724. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b507b27-e1b8-4110-9eed-daf34a25ab04))
  2725. (fp_line (start 1.255 -1.27) (end 14.985 -1.27)
  2726. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b58a7d24-08f7-417f-b9d9-922a890531ef))
  2727. (fp_line (start 14.985 -1.27) (end 14.985 34.29)
  2728. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 114920b6-bcf7-4a68-82fc-986a07873d4b))
  2729. (fp_line (start 14.985 34.29) (end 0.255 34.29)
  2730. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2a6a29f6-6453-478b-8968-5fcf005249a2))
  2731. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2732. (net 1 "VCC") (pinfunction "VPP") (pintype "input") (tstamp 18f5d1c8-9227-491e-bb29-73eea3eab984))
  2733. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2734. (net 1 "VCC") (pinfunction "A12") (pintype "input") (tstamp 04aef677-e7b6-4d68-96e8-0654a0420056))
  2735. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2736. (net 3 "/A7") (pinfunction "A7") (pintype "input") (tstamp f91e09cb-4333-462f-80f1-ca9474f6b6aa))
  2737. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2738. (net 4 "/A6") (pinfunction "A6") (pintype "input") (tstamp 2e51f10a-79d3-427f-a447-7ebdd0fa70d2))
  2739. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2740. (net 5 "/A5") (pinfunction "A5") (pintype "input") (tstamp 0fc476bc-1702-42e9-902d-d7dff0d9ccaa))
  2741. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2742. (net 6 "/A4") (pinfunction "A4") (pintype "input") (tstamp 099cae1e-8029-4255-8fb3-717296d8fae4))
  2743. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2744. (net 7 "/A3") (pinfunction "A3") (pintype "input") (tstamp 5bbf1e9a-4913-485a-8767-f5535f5ae023))
  2745. (pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2746. (net 8 "/A2") (pinfunction "A2") (pintype "input") (tstamp 582edf83-6a4e-4909-a7a1-3e180b25fd1e))
  2747. (pad "9" thru_hole oval (at 0 20.32) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2748. (net 9 "/A1") (pinfunction "A1") (pintype "input") (tstamp 306a6e04-f32a-4bf1-bf35-59622354064d))
  2749. (pad "10" thru_hole oval (at 0 22.86) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2750. (net 10 "/A0") (pinfunction "A0") (pintype "input") (tstamp 22218c53-4b26-4cb7-8e5e-897ac0648dde))
  2751. (pad "11" thru_hole oval (at 0 25.4) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2752. (net 18 "/D0_D6-128_D0-64") (pinfunction "D0") (pintype "tri_state") (tstamp 56056d54-f059-4ee6-9f23-597b6d1fbb2c))
  2753. (pad "12" thru_hole oval (at 0 27.94) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2754. (net 15 "/D5_D3-128_D1-64") (pinfunction "D1") (pintype "tri_state") (tstamp 6e7be5e7-2406-485f-8607-355191141035))
  2755. (pad "13" thru_hole oval (at 0 30.48) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2756. (net 19 "/D7_D7-128_D2-64") (pinfunction "D2") (pintype "tri_state") (tstamp 97494239-ca5e-4c3d-98d4-2af94bcd254f))
  2757. (pad "14" thru_hole oval (at 0 33.02) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2758. (net 27 "unconnected-(U2-GND-Pad14)") (pinfunction "GND") (pintype "power_in") (tstamp d695d190-2428-4918-99d2-71ba2d258fe8))
  2759. (pad "15" thru_hole oval (at 15.24 33.02) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2760. (net 17 "/D3_D5-128_D3-64") (pinfunction "D3") (pintype "tri_state") (tstamp cfe681e5-8f04-47d2-a464-4a5c2d6a2b56))
  2761. (pad "16" thru_hole oval (at 15.24 30.48) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2762. (net 11 "/D4_D0-128_D4-64") (pinfunction "D4") (pintype "tri_state") (tstamp aed51d0b-7819-4443-a984-2dbe232a1973))
  2763. (pad "17" thru_hole oval (at 15.24 27.94) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2764. (net 13 "/D2_D2-128_D5-64") (pinfunction "D5") (pintype "tri_state") (tstamp 231ea11b-91e7-4f9d-a8de-48ca5b93f541))
  2765. (pad "18" thru_hole oval (at 15.24 25.4) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2766. (net 16 "/D6_D4-128_D6-64") (pinfunction "D6") (pintype "tri_state") (tstamp 5a92b5c0-c637-4719-92af-eb1702853fe8))
  2767. (pad "19" thru_hole oval (at 15.24 22.86) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2768. (net 12 "/D1_D1-128_D7-64") (pinfunction "D7") (pintype "tri_state") (tstamp 878f99e2-7b0a-46f5-806f-e63e35271e82))
  2769. (pad "20" thru_hole oval (at 15.24 20.32) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2770. (net 28 "/CE_64") (pinfunction "~{CE}") (pintype "input") (tstamp 29344e41-286c-4b9f-a03a-0e4597218062))
  2771. (pad "21" thru_hole oval (at 15.24 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2772. (net 2 "/A12_128") (pinfunction "A10") (pintype "input") (tstamp c0ab2ec6-6fe6-44e1-bec4-2d3946cd03fd))
  2773. (pad "22" thru_hole oval (at 15.24 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2774. (net 92 "/OE_EPROM") (pinfunction "~{OE}") (pintype "input") (tstamp 630bcd75-2023-4351-9f16-ff7a8b657ca4))
  2775. (pad "23" thru_hole oval (at 15.24 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2776. (net 25 "/A13_128") (pinfunction "A11") (pintype "input") (tstamp 062af395-6a8f-4736-bb94-b67bea43637e))
  2777. (pad "24" thru_hole oval (at 15.24 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2778. (net 23 "/A9") (pinfunction "A9") (pintype "input") (tstamp ae1bd00c-ef79-4a3d-b085-ffc6365ac783))
  2779. (pad "25" thru_hole oval (at 15.24 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2780. (net 24 "/A8") (pinfunction "A8") (pintype "input") (tstamp 74760f54-4559-4560-99aa-2ec6c6697662))
  2781. (pad "26" thru_hole oval (at 15.24 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2782. (net 29 "unconnected-(U2-NC-Pad26)") (pinfunction "NC") (pintype "no_connect") (tstamp 69decadc-5427-46d9-af9f-31edbc161594))
  2783. (pad "27" thru_hole oval (at 15.24 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2784. (net 1 "VCC") (pinfunction "~{PGM}") (pintype "input") (tstamp 20fabf24-9795-4dc5-bf04-133cb44ff5d5))
  2785. (pad "28" thru_hole oval (at 15.24 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2786. (net 30 "unconnected-(U2-VCC-Pad28)") (pinfunction "VCC") (pintype "power_in") (tstamp ccc57bc7-2072-4aea-a0ab-bf4163978acc))
  2787. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-28_W15.24mm.wrl"
  2788. (offset (xyz 0 0 0))
  2789. (scale (xyz 1 1 1))
  2790. (rotate (xyz 0 0 0))
  2791. )
  2792. )
  2793. (footprint "Package_DIP:DIP-16_W7.62mm" (layer "F.Cu")
  2794. (tstamp b2b467e7-2d34-4867-8df3-5e20b72beb93)
  2795. (at 193.476 49.657)
  2796. (descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  2797. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  2798. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2799. (property "Sheetname" "")
  2800. (property "ki_description" "Dual 2 to 4 lines Decoder/Demultiplexer")
  2801. (property "ki_keywords" "TTL DECOD8 DECOD4 DEMUX4 DEMUX8 DEMUX DECOD")
  2802. (path "/8eaa7361-9c12-452a-b8fd-a60705895a7c")
  2803. (attr through_hole)
  2804. (fp_text reference "U7" (at 3.81 -2.33) (layer "F.SilkS")
  2805. (effects (font (size 1 1) (thickness 0.15)))
  2806. (tstamp 6439062f-6f40-43a5-8f31-2ebdc7c2dcd1)
  2807. )
  2808. (fp_text value "74LS155" (at 3.81 20.11) (layer "F.Fab")
  2809. (effects (font (size 1 1) (thickness 0.15)))
  2810. (tstamp fb5ef031-50c2-4fe7-8e87-89c6f8040ded)
  2811. )
  2812. (fp_text user "${REFERENCE}" (at 3.81 8.89) (layer "F.Fab")
  2813. (effects (font (size 1 1) (thickness 0.15)))
  2814. (tstamp 076e06f2-7ab4-45cb-8561-d160daba4831)
  2815. )
  2816. (fp_line (start 1.16 -1.33) (end 1.16 19.11)
  2817. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9cdc1f0b-a0e5-49f6-90f6-c551af6ccd6a))
  2818. (fp_line (start 1.16 19.11) (end 6.46 19.11)
  2819. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af9bb960-4939-41e2-b636-a53d976f9a1b))
  2820. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  2821. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9147df8d-3db3-4bee-aa51-e1788ecce7d8))
  2822. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  2823. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b18dae2a-e90b-46f9-b0b8-e25298b87ff0))
  2824. (fp_line (start 6.46 19.11) (end 6.46 -1.33)
  2825. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f9c6ac3-e18f-46fa-bd11-92bb69382265))
  2826. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  2827. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61806dd2-d353-4d03-bc40-b3ae772795ca))
  2828. (fp_line (start -1.1 -1.55) (end -1.1 19.3)
  2829. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4d34a3b-c52c-43af-81ef-ebc5b3049df4))
  2830. (fp_line (start -1.1 19.3) (end 8.7 19.3)
  2831. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3bfe5e1b-d60a-497e-82ea-3a8a0e7993e9))
  2832. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  2833. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80c79130-ecfe-4304-acaa-de0635e83793))
  2834. (fp_line (start 8.7 19.3) (end 8.7 -1.55)
  2835. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ac1046a-bc30-452c-b7c7-47fdd346c450))
  2836. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  2837. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b76e507f-7403-468b-8d3b-47336e52206d))
  2838. (fp_line (start 0.635 19.05) (end 0.635 -0.27)
  2839. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6d7c579-2881-4df9-a8a7-717b7bb08d48))
  2840. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  2841. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3020ec9a-7146-424b-8c89-e181f1057df9))
  2842. (fp_line (start 6.985 -1.27) (end 6.985 19.05)
  2843. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 591eed81-ba20-49d1-9fef-ed4d42c3b0df))
  2844. (fp_line (start 6.985 19.05) (end 0.635 19.05)
  2845. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3eddc88a-42f8-4657-a434-f85c1696157e))
  2846. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2847. (net 95 "/PROM_Q4") (pinfunction "Ea1") (pintype "input") (tstamp 69d5bd9d-8337-4370-a0df-34c6e2e277ba))
  2848. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2849. (net 87 "GND") (pinfunction "Ea2") (pintype "input") (tstamp 9f022db8-6fe1-4c6d-b256-c0d32e4768fc))
  2850. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2851. (net 97 "/PROM_Q2") (pinfunction "A1") (pintype "input") (tstamp e2bf0642-01aa-4465-962d-1e17731c4b13))
  2852. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2853. (net 169 "unconnected-(U7-Q3a-Pad4)") (pinfunction "Q3a") (pintype "output+no_connect") (tstamp c6b35744-10e3-4528-bdfd-b3c7fd222bbd))
  2854. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2855. (net 170 "/2-4_2") (pinfunction "Q2a") (pintype "output") (tstamp 7285bd73-d509-494b-959c-0f98c78274e4))
  2856. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2857. (net 20 "/CE_128") (pinfunction "Q1a") (pintype "output") (tstamp 84efbcd1-90e8-4dcf-bb2a-f67a98d03ba5))
  2858. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2859. (net 28 "/CE_64") (pinfunction "Q0a") (pintype "output") (tstamp 9acab21c-7247-4382-844c-ad045ce7952b))
  2860. (pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2861. (net 171 "unconnected-(U7-GND-Pad8)") (pinfunction "GND") (pintype "power_in") (tstamp 05efae15-48a6-4b67-9d91-6e232cd666ef))
  2862. (pad "9" thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2863. (net 172 "unconnected-(U7-Q0b-Pad9)") (pinfunction "Q0b") (pintype "output") (tstamp 568e983c-9390-4f05-8734-78e805b0994c))
  2864. (pad "10" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2865. (net 173 "unconnected-(U7-Q1b-Pad10)") (pinfunction "Q1b") (pintype "output") (tstamp 5c3c18eb-8712-4374-8caa-87051e454867))
  2866. (pad "11" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2867. (net 174 "unconnected-(U7-Q2b-Pad11)") (pinfunction "Q2b") (pintype "output") (tstamp fac28e66-389d-4d71-99e3-0841411ca5d3))
  2868. (pad "12" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2869. (net 175 "/BANK_SEL") (pinfunction "Q3b") (pintype "output") (tstamp 25a180d6-c728-4ae7-a698-887db36dc866))
  2870. (pad "13" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2871. (net 98 "/PROM_Q1") (pinfunction "A0") (pintype "input") (tstamp efcaf305-4254-4ddf-b1e5-f062583776bb))
  2872. (pad "14" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2873. (net 34 "/SRAM_WE") (pinfunction "Eb1") (pintype "input") (tstamp d03c99b5-0f2d-4ba2-9e8c-36896f882c59))
  2874. (pad "15" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2875. (net 87 "GND") (pinfunction "Eb2") (pintype "input") (tstamp 103a536d-c645-4ce6-b5f8-3cf9778cba45))
  2876. (pad "16" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2877. (net 176 "unconnected-(U7-VCC-Pad16)") (pinfunction "VCC") (pintype "power_in") (tstamp db67a3aa-7a12-4685-afa3-c341447e180c))
  2878. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-16_W7.62mm.wrl"
  2879. (offset (xyz 0 0 0))
  2880. (scale (xyz 1 1 1))
  2881. (rotate (xyz 0 0 0))
  2882. )
  2883. )
  2884. (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
  2885. (tstamp c85f6ee8-cf7b-4aa1-a331-17ad6b879f9a)
  2886. (at 182.576 41.507)
  2887. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  2888. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  2889. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2890. (property "Sheetname" "")
  2891. (property "ki_description" "Resistor, small symbol")
  2892. (property "ki_keywords" "R resistor")
  2893. (path "/b72f26a1-dacc-47ef-8fa4-6bba58a2badd")
  2894. (attr through_hole)
  2895. (fp_text reference "R8" (at 5.08 -2.37) (layer "F.SilkS")
  2896. (effects (font (size 1 1) (thickness 0.15)))
  2897. (tstamp 89404d36-b487-4639-a5ad-1d26b3a2e464)
  2898. )
  2899. (fp_text value "1.5k" (at 5.08 2.37) (layer "F.Fab")
  2900. (effects (font (size 1 1) (thickness 0.15)))
  2901. (tstamp b9419ee9-91bf-4fe0-aa41-72b786ccfbaa)
  2902. )
  2903. (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
  2904. (effects (font (size 1 1) (thickness 0.15)))
  2905. (tstamp 01b4169b-2f1f-4b31-8a3e-02fca56d986b)
  2906. )
  2907. (fp_line (start 1.04 0) (end 1.81 0)
  2908. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 431dd052-6140-456f-bf7b-cd502f1e7e33))
  2909. (fp_line (start 1.81 -1.37) (end 1.81 1.37)
  2910. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5258b385-61af-4c51-b342-24b0e2d5e6b7))
  2911. (fp_line (start 1.81 1.37) (end 8.35 1.37)
  2912. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01611b9b-c2b7-4d2a-bf3b-17aa410a4926))
  2913. (fp_line (start 8.35 -1.37) (end 1.81 -1.37)
  2914. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2d91865-9443-4d7a-af67-e7374c08156f))
  2915. (fp_line (start 8.35 1.37) (end 8.35 -1.37)
  2916. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31559ddc-515c-4a76-92e9-e7c63fa57712))
  2917. (fp_line (start 9.12 0) (end 8.35 0)
  2918. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67283a67-98e7-4c0a-9948-1a802e5b0419))
  2919. (fp_line (start -1.05 -1.5) (end -1.05 1.5)
  2920. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57bc7d6f-f496-4b0c-83a1-0193fbf43cc2))
  2921. (fp_line (start -1.05 1.5) (end 11.21 1.5)
  2922. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8b957a88-fdf6-46c8-a6f5-91887276fe11))
  2923. (fp_line (start 11.21 -1.5) (end -1.05 -1.5)
  2924. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cffad263-1c6d-496a-bdb6-808349a0c6f2))
  2925. (fp_line (start 11.21 1.5) (end 11.21 -1.5)
  2926. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ad4f442-a501-4fa2-a712-d8ce72388020))
  2927. (fp_line (start 0 0) (end 1.93 0)
  2928. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41a5a7a1-6f17-4bfd-9169-0d9deaec5556))
  2929. (fp_line (start 1.93 -1.25) (end 1.93 1.25)
  2930. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72421914-933e-44d7-9652-a04cb7d29963))
  2931. (fp_line (start 1.93 1.25) (end 8.23 1.25)
  2932. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4add1f2-099f-4478-8079-5c90e5a50aee))
  2933. (fp_line (start 8.23 -1.25) (end 1.93 -1.25)
  2934. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5f3369df-7b2c-4c50-a17c-6c6db1104c36))
  2935. (fp_line (start 8.23 1.25) (end 8.23 -1.25)
  2936. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2cd69f04-1726-4e51-a925-dde3f63b08c1))
  2937. (fp_line (start 10.16 0) (end 8.23 0)
  2938. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22ebcab9-02c5-4534-bbff-2928693d0ff3))
  2939. (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2940. (net 142 "Net-(U9_E2_L1B-Q)") (pintype "passive") (tstamp afac5363-ab7f-4e68-8c09-a8429968ae9b))
  2941. (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  2942. (net 143 "Net-(C1-Pad1)") (pintype "passive") (tstamp 034ba6e7-68f7-4cc7-8f84-3f39a6354678))
  2943. (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
  2944. (offset (xyz 0 0 0))
  2945. (scale (xyz 1 1 1))
  2946. (rotate (xyz 0 0 0))
  2947. )
  2948. )
  2949. (footprint "Package_DIP:DIP-20_W7.62mm" (layer "F.Cu")
  2950. (tstamp d61c5acd-51e1-4dab-be4e-5e984d5b4624)
  2951. (at 182.626 49.657)
  2952. (descr "20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  2953. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  2954. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  2955. (property "Sheetname" "")
  2956. (property "ki_description" "Octal BUS Transceivers, 3-State outputs")
  2957. (property "ki_keywords" "TTL BUS 3State")
  2958. (path "/bfdbd9fb-d09f-42a3-bf4b-f2d55f5aaf1b")
  2959. (attr through_hole)
  2960. (fp_text reference "U3" (at 3.81 -2.33) (layer "F.SilkS")
  2961. (effects (font (size 1 1) (thickness 0.15)))
  2962. (tstamp 4fdd4511-f76b-4827-817a-0ba5f421b3e5)
  2963. )
  2964. (fp_text value "74LS245" (at 3.81 25.19) (layer "F.Fab")
  2965. (effects (font (size 1 1) (thickness 0.15)))
  2966. (tstamp f7e3bceb-5af8-4c54-8862-a712987b24ba)
  2967. )
  2968. (fp_text user "${REFERENCE}" (at 3.81 11.43) (layer "F.Fab")
  2969. (effects (font (size 1 1) (thickness 0.15)))
  2970. (tstamp 2af5531f-c4d6-4f52-b3a9-b672ddf8e230)
  2971. )
  2972. (fp_line (start 1.16 -1.33) (end 1.16 24.19)
  2973. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31b838e1-bd0f-4081-8774-6b9884f4c00c))
  2974. (fp_line (start 1.16 24.19) (end 6.46 24.19)
  2975. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5560a88-f0eb-4a07-a2c7-a7658120882b))
  2976. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  2977. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b207741e-cf71-4db8-996f-d2f2d5e73d72))
  2978. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  2979. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 387fd2aa-5724-4429-ba5b-6a30b21d05cc))
  2980. (fp_line (start 6.46 24.19) (end 6.46 -1.33)
  2981. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 129a4a44-8236-46bc-937a-78cd4a74b8a4))
  2982. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  2983. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1846feb-b3c9-45e2-a681-38066572b41e))
  2984. (fp_line (start -1.1 -1.55) (end -1.1 24.4)
  2985. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80b6676b-38df-4862-815c-363daf757672))
  2986. (fp_line (start -1.1 24.4) (end 8.7 24.4)
  2987. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29b8296c-f304-47c0-9a84-cec2aeeedb01))
  2988. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  2989. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d0df575-ae6e-4d63-b838-01f3224ccd7f))
  2990. (fp_line (start 8.7 24.4) (end 8.7 -1.55)
  2991. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef767e78-b2f7-4fc7-9c0f-8018cdfd071c))
  2992. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  2993. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f8eea3d-47a5-4eed-a418-7b79751d8919))
  2994. (fp_line (start 0.635 24.13) (end 0.635 -0.27)
  2995. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f505b210-a0ea-46c1-8de0-2b37af8c044b))
  2996. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  2997. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09989d09-9051-4ad6-8de7-cdd5360fcdd6))
  2998. (fp_line (start 6.985 -1.27) (end 6.985 24.13)
  2999. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14bab1d4-8ff1-4b4f-b50e-4969292d9e9e))
  3000. (fp_line (start 6.985 24.13) (end 0.635 24.13)
  3001. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ff8cb4d-9493-474e-8cfd-433b0b35ad87))
  3002. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3003. (net 144 "/OUT_DIR") (pinfunction "A->B") (pintype "input") (tstamp d9178210-9367-4679-96cc-ff0cf807612a))
  3004. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3005. (net 46 "/D0") (pinfunction "A0") (pintype "tri_state") (tstamp 8f239d88-8f73-4bb5-aeef-609959b869d0))
  3006. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3007. (net 45 "/D1") (pinfunction "A1") (pintype "tri_state") (tstamp d2739d4c-2148-4340-bbcb-e561c8fc8be2))
  3008. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3009. (net 44 "/D2") (pinfunction "A2") (pintype "tri_state") (tstamp 5a232f70-b547-4c0c-936e-3e3bbebca681))
  3010. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3011. (net 43 "/D3") (pinfunction "A3") (pintype "tri_state") (tstamp eba53806-f04d-40ca-9482-8cdfc3965f3d))
  3012. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3013. (net 42 "/D4") (pinfunction "A4") (pintype "tri_state") (tstamp 0df0f0df-5f0e-40ac-a2f7-149aae676893))
  3014. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3015. (net 41 "/D5") (pinfunction "A5") (pintype "tri_state") (tstamp b86a79d3-4779-4c6d-9411-b39f025f4231))
  3016. (pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3017. (net 40 "/D6") (pinfunction "A6") (pintype "tri_state") (tstamp 088844a0-598f-454b-875a-c43cb23cb971))
  3018. (pad "9" thru_hole oval (at 0 20.32) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3019. (net 39 "/D7") (pinfunction "A7") (pintype "tri_state") (tstamp 309f235c-d592-43ce-99e0-f56a4201cb56))
  3020. (pad "10" thru_hole oval (at 0 22.86) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3021. (net 145 "unconnected-(U3-GND-Pad10)") (pinfunction "GND") (pintype "power_in") (tstamp 1d080fc5-5d1a-4542-9f7b-be9e41fb5cdc))
  3022. (pad "11" thru_hole oval (at 7.62 22.86) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3023. (net 19 "/D7_D7-128_D2-64") (pinfunction "B7") (pintype "tri_state") (tstamp f81cc1c5-32bb-42f7-b9b0-ed1ab9094c16))
  3024. (pad "12" thru_hole oval (at 7.62 20.32) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3025. (net 16 "/D6_D4-128_D6-64") (pinfunction "B6") (pintype "tri_state") (tstamp 11a8bbe1-03e5-495d-82e3-7013a5f3dd10))
  3026. (pad "13" thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3027. (net 15 "/D5_D3-128_D1-64") (pinfunction "B5") (pintype "tri_state") (tstamp e6371d20-f218-4b0a-becf-882bd1512ed5))
  3028. (pad "14" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3029. (net 11 "/D4_D0-128_D4-64") (pinfunction "B4") (pintype "tri_state") (tstamp 13a80470-19f8-42a6-8bd5-09a2baf4fcb9))
  3030. (pad "15" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3031. (net 17 "/D3_D5-128_D3-64") (pinfunction "B3") (pintype "tri_state") (tstamp a11cf791-fb46-489b-85bc-cf74f59f4661))
  3032. (pad "16" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3033. (net 13 "/D2_D2-128_D5-64") (pinfunction "B2") (pintype "tri_state") (tstamp e16ed652-0090-4e0c-a916-3c4cad158fd4))
  3034. (pad "17" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3035. (net 12 "/D1_D1-128_D7-64") (pinfunction "B1") (pintype "tri_state") (tstamp d2625024-4e4e-4b97-bc50-da09301e78e5))
  3036. (pad "18" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3037. (net 18 "/D0_D6-128_D0-64") (pinfunction "B0") (pintype "tri_state") (tstamp 4b2a330f-3ad8-4706-888e-9e1edfcafe08))
  3038. (pad "19" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3039. (net 87 "GND") (pinfunction "CE") (pintype "input") (tstamp aa2b5814-9265-4eb5-9b61-a6b2678ad3de))
  3040. (pad "20" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3041. (net 146 "unconnected-(U3-VCC-Pad20)") (pinfunction "VCC") (pintype "power_in") (tstamp 088ca0d7-bf0c-47c3-9fbc-7369632927a1))
  3042. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-20_W7.62mm.wrl"
  3043. (offset (xyz 0 0 0))
  3044. (scale (xyz 1 1 1))
  3045. (rotate (xyz 0 0 0))
  3046. )
  3047. )
  3048. (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
  3049. (tstamp d71c8e5b-b922-4ae2-ac47-ab65ec2c5b56)
  3050. (at 182.576 17.207)
  3051. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3052. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3053. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  3054. (property "Sheetname" "")
  3055. (property "ki_description" "Resistor, small symbol")
  3056. (property "ki_keywords" "R resistor")
  3057. (path "/5b3729b0-9f45-4ae1-9a0b-af3f45177059")
  3058. (attr through_hole)
  3059. (fp_text reference "R2" (at 5.08 -2.37) (layer "F.SilkS")
  3060. (effects (font (size 1 1) (thickness 0.15)))
  3061. (tstamp 0ac97d74-7afd-4a6b-9bca-47521a0801eb)
  3062. )
  3063. (fp_text value "220k" (at 5.08 2.37) (layer "F.Fab")
  3064. (effects (font (size 1 1) (thickness 0.15)))
  3065. (tstamp 362c4f0c-df0e-4043-90fe-68db10647266)
  3066. )
  3067. (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
  3068. (effects (font (size 1 1) (thickness 0.15)))
  3069. (tstamp 2981b92d-1e55-4904-98cd-13f1bc0e38c6)
  3070. )
  3071. (fp_line (start 1.04 0) (end 1.81 0)
  3072. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 262a8f26-3987-4d94-b727-ec666c32307f))
  3073. (fp_line (start 1.81 -1.37) (end 1.81 1.37)
  3074. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06c03880-f163-4b78-817f-622d7da7c382))
  3075. (fp_line (start 1.81 1.37) (end 8.35 1.37)
  3076. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c985b706-0efe-4a7d-abdd-98f071c9d447))
  3077. (fp_line (start 8.35 -1.37) (end 1.81 -1.37)
  3078. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 095802f2-0ea8-43be-8b1d-89655873e5ae))
  3079. (fp_line (start 8.35 1.37) (end 8.35 -1.37)
  3080. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e564ff22-77ba-41f0-9b20-82c7e458ee04))
  3081. (fp_line (start 9.12 0) (end 8.35 0)
  3082. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e9aa6c1-7c51-4afc-b9ed-a78929281455))
  3083. (fp_line (start -1.05 -1.5) (end -1.05 1.5)
  3084. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f760bf88-35c2-4ce9-a3b4-018aa6775e6c))
  3085. (fp_line (start -1.05 1.5) (end 11.21 1.5)
  3086. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0e207e3-d183-4266-bc11-004477f532ec))
  3087. (fp_line (start 11.21 -1.5) (end -1.05 -1.5)
  3088. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1c47d1e-9919-4d71-ab3a-368847e85cde))
  3089. (fp_line (start 11.21 1.5) (end 11.21 -1.5)
  3090. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43d13fc3-9b29-48ab-b2f3-93421c3d8d48))
  3091. (fp_line (start 0 0) (end 1.93 0)
  3092. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 643cda81-627a-4a78-a85f-626e80329f5f))
  3093. (fp_line (start 1.93 -1.25) (end 1.93 1.25)
  3094. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7360249a-b4f6-44cb-9389-e83e8a97331d))
  3095. (fp_line (start 1.93 1.25) (end 8.23 1.25)
  3096. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50754dd4-dcb7-4245-8244-63cdff8b0774))
  3097. (fp_line (start 8.23 -1.25) (end 1.93 -1.25)
  3098. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 979950ad-ba68-4507-b126-7d40ad4543cb))
  3099. (fp_line (start 8.23 1.25) (end 8.23 -1.25)
  3100. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 328181bb-7db4-47dd-a6e1-bd2546ed607a))
  3101. (fp_line (start 10.16 0) (end 8.23 0)
  3102. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5c94abc-68f8-4617-b942-446d5f7b78d5))
  3103. (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3104. (net 88 "Net-(Q2-C)") (pintype "passive") (tstamp 09d673b6-c228-48f4-ad07-72b527232830))
  3105. (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3106. (net 85 "Net-(Q1-C)") (pintype "passive") (tstamp 3d03c770-3d46-4b35-8a7b-79212d9a7cb7))
  3107. (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
  3108. (offset (xyz 0 0 0))
  3109. (scale (xyz 1 1 1))
  3110. (rotate (xyz 0 0 0))
  3111. )
  3112. )
  3113. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  3114. (tstamp dcb80a8c-a020-41d0-b0d5-9eda311afbbd)
  3115. (at 139.226 32.607)
  3116. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  3117. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  3118. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  3119. (property "Sheetname" "")
  3120. (property "ki_description" "Quad 2-input OR")
  3121. (property "ki_keywords" "TTL Or2")
  3122. (path "/58b3309f-811f-475c-a255-6cc5fd8002f9")
  3123. (attr through_hole)
  3124. (fp_text reference "U11" (at 3.81 -2.33) (layer "F.SilkS")
  3125. (effects (font (size 1 1) (thickness 0.15)))
  3126. (tstamp 7f780b72-99b0-4388-aba8-967965a34943)
  3127. )
  3128. (fp_text value "74LS32" (at 3.81 17.57) (layer "F.Fab")
  3129. (effects (font (size 1 1) (thickness 0.15)))
  3130. (tstamp 0b0c13d6-481f-4abe-8ad8-84c94b961c7b)
  3131. )
  3132. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  3133. (effects (font (size 1 1) (thickness 0.15)))
  3134. (tstamp cb1513d5-409d-48f5-abc2-3324fe099ea8)
  3135. )
  3136. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  3137. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3766532-7f1d-445b-94c0-553be8ec6185))
  3138. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  3139. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c667669b-ee4e-47dc-a444-a98ca02e8eb2))
  3140. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  3141. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 052da339-9566-410c-8a4d-f814732b4bcc))
  3142. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  3143. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a63d4d2c-de52-4e03-a094-3ca4b8edb143))
  3144. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  3145. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e47a8bf-f817-40b3-8400-83e7c9b2d1c3))
  3146. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  3147. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73b03611-dc81-4063-88f8-9d8301ddf38f))
  3148. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  3149. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9421532d-845f-4420-baf0-dc2143c1fca7))
  3150. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  3151. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23b89ec1-c23b-4dc5-a3e5-71d9b6478c1e))
  3152. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  3153. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 793d0ca5-0b3d-4ffc-a026-7f47f6044966))
  3154. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  3155. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 19484180-95fd-4c17-a3e6-d123622edf27))
  3156. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  3157. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5107bc4-ff57-4755-9468-2c313530c3b1))
  3158. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  3159. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 27a1f1c1-3f3c-49a2-a11f-d9d0c1f3b909))
  3160. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  3161. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29fa3a2d-0876-4d02-8c9e-e0bebec81085))
  3162. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  3163. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97676ad1-a7ae-4663-b789-a051f19cc385))
  3164. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  3165. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 290bc47e-93c7-465e-8b7f-2cf7b26408ac))
  3166. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3167. (net 95 "/PROM_Q4") (pintype "input") (tstamp 3bf8c707-09ec-4b0d-a64f-a53136f5282e))
  3168. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3169. (net 69 "/xmemfl") (pintype "input") (tstamp 4780970e-ce47-48cc-9e7f-3a09e6b05948))
  3170. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3171. (net 126 "/xmemfl_OUT") (pintype "output") (tstamp 42ad6ca5-1725-4c38-89c1-85c24baa703a))
  3172. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3173. (net 147 "/NOR OUT2") (pintype "input") (tstamp 316cc663-22a3-48f5-853f-6fdf48a941b7))
  3174. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3175. (net 69 "/xmemfl") (pintype "input") (tstamp 1b693ded-0f2a-47aa-9c7d-043e42faca03))
  3176. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3177. (net 92 "/OE_EPROM") (pintype "output") (tstamp 1c1c3f89-8525-4076-85fa-5725d6e63cf3))
  3178. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3179. (net 205 "unconnected-(U11E-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp d7fc285b-b2b5-42af-8da6-aff7a9a915a4))
  3180. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3181. (net 206 "Net-(U11-Pad8)") (pintype "output") (tstamp c83b5f99-90db-4159-88c1-09d37d24727a))
  3182. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3183. (net 69 "/xmemfl") (pintype "input") (tstamp 81ac1546-da82-4597-b179-2916c375e8ef))
  3184. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3185. (net 202 "Net-(U10-Pad3)") (pintype "input") (tstamp 031f8c5c-8e66-4ab4-9db1-fb799e2e5a61))
  3186. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3187. (net 196 "Net-(U9_E2_L1B-C)") (pintype "output") (tstamp 10ed26a2-5d6a-4f99-b3b9-82f8cef6e3d8))
  3188. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3189. (net 96 "/NOR_IN_11_2") (pintype "input") (tstamp a220e911-ad5c-4e2f-9bde-46bc593f914c))
  3190. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3191. (net 69 "/xmemfl") (pintype "input") (tstamp c2e629f5-93eb-42f0-8d04-0cf99a3ef114))
  3192. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3193. (net 207 "unconnected-(U11E-VCC-Pad14)") (pinfunction "VCC") (pintype "power_in") (tstamp ee9f2af9-389a-4e9e-be66-1bcc6fcb7fe5))
  3194. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  3195. (offset (xyz 0 0 0))
  3196. (scale (xyz 1 1 1))
  3197. (rotate (xyz 0 0 0))
  3198. )
  3199. )
  3200. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  3201. (tstamp df16a36a-9122-48fb-9b56-c5c609fa66e5)
  3202. (at 139.226 13.207)
  3203. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  3204. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  3205. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  3206. (property "Sheetname" "")
  3207. (property "ki_description" "Dual BCD 4-bit counter")
  3208. (property "ki_keywords" "TTL CNT CNT4")
  3209. (path "/dc035192-0947-4a58-9ebe-65946690eda6")
  3210. (attr through_hole)
  3211. (fp_text reference "U5" (at 3.81 -2.33) (layer "F.SilkS")
  3212. (effects (font (size 1 1) (thickness 0.15)))
  3213. (tstamp e7b32599-6618-4d1d-bcc8-2f7285908c17)
  3214. )
  3215. (fp_text value "74LS393" (at 3.81 17.57) (layer "F.Fab")
  3216. (effects (font (size 1 1) (thickness 0.15)))
  3217. (tstamp d3d7bd3e-37af-4dd3-9eda-9dd918a0c4f2)
  3218. )
  3219. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  3220. (effects (font (size 1 1) (thickness 0.15)))
  3221. (tstamp 1897a43a-390e-4f87-951d-40ee744a33a9)
  3222. )
  3223. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  3224. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a46237f6-5214-4f4c-b99d-c36c3f43f2f0))
  3225. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  3226. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92a42bb5-7ed6-4e82-be9f-95d3afdb17fc))
  3227. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  3228. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95b467a8-69dc-4ccd-bcd0-1590fbe6eaf1))
  3229. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  3230. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e97d4248-479c-4a26-8a29-762f7e5358e0))
  3231. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  3232. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4ef41a2-6cda-49ee-a394-3ee8387bcb39))
  3233. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  3234. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 56e08f54-5389-4726-acf2-766b6e6c21fd))
  3235. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  3236. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8ce4984-b16d-4c38-8500-84d413e3f997))
  3237. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  3238. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41f56862-4af5-4411-aa19-021ba6c9c5fa))
  3239. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  3240. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2680536e-33fa-472c-9c96-eccd8debf4ee))
  3241. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  3242. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d16d3130-e665-47a6-9986-a8792f77a4d5))
  3243. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  3244. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 859ac56b-d1bd-44eb-8378-bd80e9b9cb6d))
  3245. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  3246. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d0d02fe-d7ce-454f-aa6c-e689a032944d))
  3247. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  3248. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2fef16c8-a1d6-4699-a063-3a8c168c7c12))
  3249. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  3250. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 215344c4-ae0e-49f6-afc2-adfd5659c48b))
  3251. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  3252. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c205f1d5-0e7c-4c48-a398-388e9e2bf68e))
  3253. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3254. (net 100 "/CLK") (pinfunction "CP") (pintype "input") (tstamp ef9598cb-5f38-43e2-bb42-e04eda538ee0))
  3255. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3256. (net 154 "Net-(U5A-MR)") (pinfunction "MR") (pintype "input") (tstamp 794addf5-fa16-4c9a-9602-6564c0af88fd))
  3257. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3258. (net 155 "unconnected-(U5A-Q0-Pad3)") (pinfunction "Q0") (pintype "output") (tstamp 7e85b705-a568-42fb-b479-f4a3f6ebb65a))
  3259. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3260. (net 149 "Net-(U5A-Q1)") (pinfunction "Q1") (pintype "output") (tstamp 06fa56cf-b201-41c8-b5b9-1fd9df9de879))
  3261. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3262. (net 148 "Net-(U5A-Q2)") (pinfunction "Q2") (pintype "output") (tstamp 82d3515e-d713-47ad-881c-52c8cd5aa031))
  3263. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3264. (net 151 "Net-(U5A-Q3)") (pinfunction "Q3") (pintype "output") (tstamp 731b05f4-f1fe-40aa-af0c-5c8724daeba5))
  3265. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3266. (net 156 "unconnected-(U5C-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp 7d810891-79a4-4e65-b151-9317435e8c35))
  3267. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3268. (net 157 "unconnected-(U5B-Q3-Pad8)") (pinfunction "Q3") (pintype "output") (tstamp b2fa65da-91ca-4a31-a5a2-b44c37a890f9))
  3269. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3270. (net 158 "unconnected-(U5B-Q2-Pad9)") (pinfunction "Q2") (pintype "output") (tstamp ee49b58a-32e3-475e-a421-213cda8e6533))
  3271. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3272. (net 159 "unconnected-(U5B-Q1-Pad10)") (pinfunction "Q1") (pintype "output") (tstamp c1ec1887-2de3-4c69-a3d1-2d833e4049c7))
  3273. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3274. (net 152 "Net-(U5B-Q0)") (pinfunction "Q0") (pintype "output") (tstamp d1b6f0b1-474a-4932-a3d0-0538d008285a))
  3275. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3276. (net 160 "Net-(U5B-MR)") (pinfunction "MR") (pintype "input") (tstamp 32002dfc-1a0c-48ff-b55c-600a29c3eab7))
  3277. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3278. (net 151 "Net-(U5A-Q3)") (pinfunction "CP") (pintype "input") (tstamp 13dbc348-8388-4081-ad79-aef55f79444d))
  3279. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3280. (net 161 "unconnected-(U5C-VCC-Pad14)") (pinfunction "VCC") (pintype "power_in") (tstamp 49569f88-aabc-4bb7-ba1b-b17d44b850e5))
  3281. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  3282. (offset (xyz 0 0 0))
  3283. (scale (xyz 1 1 1))
  3284. (rotate (xyz 0 0 0))
  3285. )
  3286. )
  3287. (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
  3288. (tstamp e20f1336-ce58-46be-9158-d76a8cc6e45b)
  3289. (at 182.576 29.357)
  3290. (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  3291. (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
  3292. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  3293. (property "Sheetname" "")
  3294. (property "ki_description" "Resistor, small symbol")
  3295. (property "ki_keywords" "R resistor")
  3296. (path "/6ecbaecb-3ad1-44c9-9672-bc180ab5384c")
  3297. (attr through_hole)
  3298. (fp_text reference "R5" (at 5.08 -2.37) (layer "F.SilkS")
  3299. (effects (font (size 1 1) (thickness 0.15)))
  3300. (tstamp 3b71bbf7-4c85-40eb-9ebc-ce4defae293c)
  3301. )
  3302. (fp_text value "82" (at 5.08 2.37) (layer "F.Fab")
  3303. (effects (font (size 1 1) (thickness 0.15)))
  3304. (tstamp 0827e1fe-7406-42f3-9e8a-6574ff4d488e)
  3305. )
  3306. (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
  3307. (effects (font (size 1 1) (thickness 0.15)))
  3308. (tstamp d5d7b7bc-3aa1-4fa3-9f7b-148a5ef0003a)
  3309. )
  3310. (fp_line (start 1.04 0) (end 1.81 0)
  3311. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05e25ddd-63bf-4e03-bd5d-6bb0f0a38723))
  3312. (fp_line (start 1.81 -1.37) (end 1.81 1.37)
  3313. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66fd0ef8-6753-47b6-8a6f-be32e49e071f))
  3314. (fp_line (start 1.81 1.37) (end 8.35 1.37)
  3315. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4eed60d4-2f7c-4c8f-9848-f6a9f4a90372))
  3316. (fp_line (start 8.35 -1.37) (end 1.81 -1.37)
  3317. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fc88a6d-6b02-471f-9521-5970b5ce4fc4))
  3318. (fp_line (start 8.35 1.37) (end 8.35 -1.37)
  3319. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51763295-5003-4a7d-83e9-1157df3651d3))
  3320. (fp_line (start 9.12 0) (end 8.35 0)
  3321. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8abe0b77-01df-4ae5-90d0-772fb091c979))
  3322. (fp_line (start -1.05 -1.5) (end -1.05 1.5)
  3323. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ebbffdd-90c0-4819-ba75-84c43146f70f))
  3324. (fp_line (start -1.05 1.5) (end 11.21 1.5)
  3325. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c086665-ee30-479d-8736-b990d24f32e5))
  3326. (fp_line (start 11.21 -1.5) (end -1.05 -1.5)
  3327. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34e3b83a-be36-47b8-9b5a-9988c9ea46b6))
  3328. (fp_line (start 11.21 1.5) (end 11.21 -1.5)
  3329. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 389be9f9-ed91-4fca-aaa7-e7e39a2c6a10))
  3330. (fp_line (start 0 0) (end 1.93 0)
  3331. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp acb46bee-1928-4fad-a296-c9440ae580f4))
  3332. (fp_line (start 1.93 -1.25) (end 1.93 1.25)
  3333. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c5adc03-0ad3-4b2c-99b5-7ff65f8d5347))
  3334. (fp_line (start 1.93 1.25) (end 8.23 1.25)
  3335. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e972be10-9df9-41cf-9ac7-963bfb2f9987))
  3336. (fp_line (start 8.23 -1.25) (end 1.93 -1.25)
  3337. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a6f99a4-9a0c-4941-a875-3c7301871da3))
  3338. (fp_line (start 8.23 1.25) (end 8.23 -1.25)
  3339. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c0c6d5a-06e6-4bf4-b44d-80f639d3d374))
  3340. (fp_line (start 10.16 0) (end 8.23 0)
  3341. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca3b0dc5-907d-4667-b33f-3a64283063f1))
  3342. (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3343. (net 139 "Net-(D1-A)") (pintype "passive") (tstamp 29bd0412-5dcc-4de1-bc7e-8e0ffce2ba66))
  3344. (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3345. (net 87 "GND") (pintype "passive") (tstamp 713acca7-2219-47e4-8bdd-d48a3acec37c))
  3346. (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
  3347. (offset (xyz 0 0 0))
  3348. (scale (xyz 1 1 1))
  3349. (rotate (xyz 0 0 0))
  3350. )
  3351. )
  3352. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  3353. (tstamp e27ea49c-3656-42ae-8f02-915c1b099c30)
  3354. (at 139.226 52.007)
  3355. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  3356. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  3357. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  3358. (property "Sheetname" "")
  3359. (property "ki_description" "Dual D Flip-flop, Set & Reset")
  3360. (property "ki_keywords" "TTL DFF")
  3361. (path "/d78e0108-40a6-4a4c-9976-dc61d62914de")
  3362. (attr through_hole)
  3363. (fp_text reference "U9_E2_H1" (at 3.81 -2.33) (layer "F.SilkS")
  3364. (effects (font (size 1 1) (thickness 0.15)))
  3365. (tstamp f7893c0d-a36c-4623-87cb-653d9cceb142)
  3366. )
  3367. (fp_text value "74LS74" (at 3.81 17.57) (layer "F.Fab")
  3368. (effects (font (size 1 1) (thickness 0.15)))
  3369. (tstamp c2e056ec-5cb6-4a2f-9d1b-7f31a1abcb46)
  3370. )
  3371. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  3372. (effects (font (size 1 1) (thickness 0.15)))
  3373. (tstamp dd6ad6fe-2015-4df6-81ad-63c3d4174c29)
  3374. )
  3375. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  3376. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6bb9bd9a-0d71-46d0-8019-d581f0c58f16))
  3377. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  3378. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c929d57-43c4-4ba1-9412-f49b09f6069c))
  3379. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  3380. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88ba63df-f9a1-40c4-9e18-b9247d38f73f))
  3381. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  3382. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fcf07762-1a49-4d33-8129-2a95dabc9447))
  3383. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  3384. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f152ab02-1849-4028-8d39-663bd08ecffd))
  3385. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  3386. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cccfcb7f-5f1d-4001-a34b-43cd3bf9ca77))
  3387. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  3388. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62f75cc5-d80d-4a05-88ac-9c43ec060697))
  3389. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  3390. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 998c0d4e-714f-431f-9b61-92300130254a))
  3391. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  3392. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 304bc26c-941d-44a9-8d8e-9ead314d1fae))
  3393. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  3394. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3d9460a-31d6-43e5-b9a3-b1b4149a3dac))
  3395. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  3396. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 654afd01-e720-413e-bd59-4f929358a1c6))
  3397. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  3398. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f433849-7fc9-40c8-85ee-f72c3bd14afd))
  3399. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  3400. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 24479e33-3633-4a91-a08b-16be50c4c90e))
  3401. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  3402. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8372c4c-a254-4e7c-a875-686529df6ad0))
  3403. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  3404. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f2b26c8-b6ce-4d95-92a5-82a63aa5c822))
  3405. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3406. (net 1 "VCC") (pinfunction "~{R}") (pintype "input") (tstamp 64cfb473-b859-44c3-95e6-1620a3737945))
  3407. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3408. (net 10 "/A0") (pinfunction "D") (pintype "input") (tstamp ae164170-f82d-4357-8ea5-260a576fe2b0))
  3409. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3410. (net 175 "/BANK_SEL") (pinfunction "C") (pintype "input") (tstamp 4bcd6219-fe66-40cb-b3eb-1669298b79b5))
  3411. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3412. (net 183 "unconnected-(U9_E2_H1A-~{S}-Pad4)") (pinfunction "~{S}") (pintype "input+no_connect") (tstamp ea83110a-c3d6-4e8b-a259-99f5812e8919))
  3413. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3414. (net 25 "/A13_128") (pinfunction "Q") (pintype "output") (tstamp 80dfce94-41ff-44de-9354-c4dfe798a353))
  3415. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3416. (net 184 "unconnected-(U9_E2_H1A-~{Q}-Pad6)") (pinfunction "~{Q}") (pintype "output+no_connect") (tstamp 90ebb0c5-c37c-4fd7-88af-a64051bb97b0))
  3417. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3418. (net 185 "unconnected-(U9_E2_H1C-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp 6b27c832-39df-4bf7-99f6-27b7666aec2f))
  3419. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3420. (net 186 "unconnected-(U9_E2_H1B-~{Q}-Pad8)") (pinfunction "~{Q}") (pintype "output") (tstamp d55e8718-4781-4933-b2f5-5013da00392d))
  3421. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3422. (net 187 "unconnected-(U9_E2_H1B-Q-Pad9)") (pinfunction "Q") (pintype "output") (tstamp b54c20cd-e71f-4a51-8804-b382f66c0c8b))
  3423. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3424. (net 188 "unconnected-(U9_E2_H1B-~{S}-Pad10)") (pinfunction "~{S}") (pintype "input") (tstamp 59b2dc57-0923-43ac-81df-6bc01f103f02))
  3425. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3426. (net 189 "unconnected-(U9_E2_H1B-C-Pad11)") (pinfunction "C") (pintype "input") (tstamp a496bd32-1800-4bdd-925f-d1eab1d13252))
  3427. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3428. (net 190 "unconnected-(U9_E2_H1B-D-Pad12)") (pinfunction "D") (pintype "input") (tstamp 24e521e9-7a68-498f-a1de-e449c13ff273))
  3429. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3430. (net 191 "unconnected-(U9_E2_H1B-~{R}-Pad13)") (pinfunction "~{R}") (pintype "input") (tstamp cdd21ef3-0552-4982-b8e9-b4873640b9c3))
  3431. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  3432. (net 192 "unconnected-(U9_E2_H1C-VCC-Pad14)") (pinfunction "VCC") (pintype "power_in") (tstamp 8958011f-bab1-4034-aa03-8961eefb6bac))
  3433. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  3434. (offset (xyz 0 0 0))
  3435. (scale (xyz 1 1 1))
  3436. (rotate (xyz 0 0 0))
  3437. )
  3438. )
  3439. (footprint "smartaidmagnum:FAB64B" (layer "F.Cu")
  3440. (tstamp e782db35-07ab-41a0-bba8-f8eab00b29bb)
  3441. (at 36.703 95.758)
  3442. (descr "<b>DIN 41612 CONNECTOR</b>\n<p>\nFemale, 64 pins, type B, rows AB, grid 2.54 mm.<br />\nB mates with Q, but pin numbers reversed.\n</p>")
  3443. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  3444. (property "Sheetname" "")
  3445. (path "/a3643525-93f4-47ba-b3c8-fab1eaace7cc")
  3446. (attr through_hole)
  3447. (fp_text reference "X2" (at -4.445 -39.37 -90) (layer "F.SilkS")
  3448. (effects (font (size 1.2065 1.2065) (thickness 0.12065)) (justify left bottom))
  3449. (tstamp df74aea6-aafa-4b49-9eeb-b7cdc28fe7fd)
  3450. )
  3451. (fp_text value "ABC-Bus" (at -4.445 34.29 -90) (layer "F.Fab")
  3452. (effects (font (size 1.2065 1.2065) (thickness 0.12065)) (justify left bottom))
  3453. (tstamp cfbe7157-6b18-409d-9028-28b90c87f828)
  3454. )
  3455. (fp_text user "1" (at -0.762 -40.64) (layer "F.SilkS")
  3456. (effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
  3457. (tstamp 3478a049-adf6-4b4a-bb31-100fd197db10)
  3458. )
  3459. (fp_text user ">STD" (at -4.445 0 90) (layer "F.SilkS")
  3460. (effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
  3461. (tstamp 495c8802-065c-4547-8c01-4f64bb6b4d51)
  3462. )
  3463. (fp_text user "a" (at -2.286 -40.64) (layer "F.SilkS")
  3464. (effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
  3465. (tstamp 8d2a6e2e-75eb-4f0a-9577-395fb8084cb3)
  3466. )
  3467. (fp_text user "32" (at -2.159 41.91) (layer "F.SilkS")
  3468. (effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
  3469. (tstamp e995d1d8-dcb1-4810-bf3e-a88ee5a7ef66)
  3470. )
  3471. (fp_line (start -4.064 46.736) (end -4.064 -46.736)
  3472. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 3e512207-e5ec-4c01-9318-073b24c94f17))
  3473. (fp_line (start -3.556 47.244) (end -1.905 47.244)
  3474. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e4ddfc38-1289-4843-94d9-1a7c5dd418df))
  3475. (fp_line (start -2.794 42.545) (end -2.794 -42.545)
  3476. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9b1b4d7c-5c02-4146-9a48-22562ea2027b))
  3477. (fp_line (start -1.905 -47.244) (end -3.556 -47.244)
  3478. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9dcae635-0405-4526-850c-e55cc1797b22))
  3479. (fp_line (start -1.905 -47.244) (end -1.905 -44.45)
  3480. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2a92d00b-397d-4492-a2f8-4ff593e6a8b4))
  3481. (fp_line (start -1.905 47.244) (end -1.905 44.45)
  3482. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b338bf11-ba5a-474c-a79c-2afb23bbd720))
  3483. (fp_line (start -1.905 47.244) (end 3.556 47.244)
  3484. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 53445547-8dc7-40ee-babb-b44a48cd3b92))
  3485. (fp_line (start -0.381 -42.545) (end -2.794 -42.545)
  3486. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4cdb9500-6ac8-4ca5-8069-947e9605413c))
  3487. (fp_line (start -0.381 -42.545) (end -1.905 -44.45)
  3488. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2cde8880-2906-4908-aaa3-a4de1a832d90))
  3489. (fp_line (start -0.381 -42.545) (end 0.889 -42.545)
  3490. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 528e103a-91a1-41f5-a81c-4ad0ca69d2ca))
  3491. (fp_line (start -0.381 42.545) (end -2.794 42.545)
  3492. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5dd69c14-91ef-428b-9b51-463aa53b630e))
  3493. (fp_line (start -0.381 42.545) (end -1.905 44.45)
  3494. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp abb7f0b0-1297-45f6-82e4-2392aac9ae8f))
  3495. (fp_line (start 0.889 -42.545) (end 2.667 -42.545)
  3496. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 17914405-fe3b-4d52-a620-befd3a89bdc8))
  3497. (fp_line (start 0.889 -41.529) (end 0.889 -42.545)
  3498. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp dd26e5bb-b1bc-40ed-9501-fc10b25ba64e))
  3499. (fp_line (start 0.889 41.529) (end 2.794 41.529)
  3500. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 762e8fa5-17cb-4ecd-910d-80d117312da8))
  3501. (fp_line (start 0.889 42.545) (end -0.381 42.545)
  3502. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 3385c4a9-3932-4bfe-83cc-d5c5b29bc639))
  3503. (fp_line (start 0.889 42.545) (end 0.889 41.529)
  3504. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e0722b76-1276-49b0-b787-c1d7af744302))
  3505. (fp_line (start 0.889 42.545) (end 2.667 42.545)
  3506. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a62e4ebb-168e-498a-aa46-a60493de1be7))
  3507. (fp_line (start 2.667 -42.545) (end 4.064 -44.45)
  3508. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp eb1c794e-b78e-476e-aa87-6f937b3c7b99))
  3509. (fp_line (start 2.667 42.545) (end 4.064 44.45)
  3510. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2d362a7b-39d3-40bc-9dd5-052093e3f129))
  3511. (fp_line (start 2.794 -41.529) (end 0.889 -41.529)
  3512. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp de6d84ab-091b-4334-b911-4b401616094f))
  3513. (fp_line (start 2.794 41.529) (end 2.794 -41.529)
  3514. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp dd4efb32-5be2-48de-b053-84c108a2daee))
  3515. (fp_line (start 3.556 -47.244) (end -1.905 -47.244)
  3516. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 0c75f13e-8d8e-4d5d-ba23-62330d504010))
  3517. (fp_line (start 4.064 -44.45) (end 4.064 -46.736)
  3518. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b5c41f9d-2555-414e-bbf8-bd4011175e85))
  3519. (fp_line (start 4.064 -44.45) (end 4.064 44.45)
  3520. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4112dc8f-4d5f-4ce0-ab13-a55724e8ac3d))
  3521. (fp_line (start 4.064 46.736) (end 4.064 44.45)
  3522. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 6c3025e0-0410-4b9c-9bd6-be7ba7b2c67c))
  3523. (fp_arc (start -4.064 -46.736) (mid -3.91521 -47.09521) (end -3.556 -47.244)
  3524. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 3914cc9d-04fb-4195-9127-9920e5e8e102))
  3525. (fp_arc (start -3.556 47.244) (mid -3.91521 47.09521) (end -4.064 46.736)
  3526. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8f954d82-14a0-48d8-b357-4e49e46ed44a))
  3527. (fp_arc (start 3.556 -47.244) (mid 3.909437 -47.084314) (end 4.086 -46.738999)
  3528. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ae83ef18-1b78-4460-b461-6f9f87c922ff))
  3529. (fp_arc (start 4.064 46.736) (mid 3.91521 47.09521) (end 3.556 47.244)
  3530. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e7150aac-694d-4efe-8fc4-3272ee18b04d))
  3531. (fp_circle (center 0.9652 -45.0088) (end 2.2352 -45.0088)
  3532. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp 1f351c1a-180d-4458-b089-754987ec17f8))
  3533. (fp_circle (center 0.9652 45.0088) (end 2.2352 45.0088)
  3534. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp 66f364b7-994a-4b78-b14d-00d273d72deb))
  3535. (fp_circle (center 0.9652 -45.0088) (end 3.2512 -45.0088)
  3536. (stroke (width 1.778) (type solid)) (fill none) (layer "Dwgs.User") (tstamp a87648b1-66da-4405-ab92-5d0fe0947228))
  3537. (fp_circle (center 0.9652 -45.0088) (end 3.2512 -45.0088)
  3538. (stroke (width 1.778) (type solid)) (fill none) (layer "Dwgs.User") (tstamp ee4f7ef7-eb4c-4058-9150-e81fd5b5bdd7))
  3539. (fp_circle (center 0.9652 45.0088) (end 3.2512 45.0088)
  3540. (stroke (width 1.778) (type solid)) (fill none) (layer "Dwgs.User") (tstamp e90fe19e-a09c-4d00-977b-a962faeb494f))
  3541. (fp_circle (center 0.9652 45.0088) (end 3.2512 45.0088)
  3542. (stroke (width 1.778) (type solid)) (fill none) (layer "Dwgs.User") (tstamp f136ffeb-36a9-4e2c-9fbb-6972f50fc89c))
  3543. (fp_line (start -2.54 -42.291) (end -2.54 42.291)
  3544. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp f1f8e719-570a-4c51-a7b0-c073176562fe))
  3545. (fp_line (start 0.635 -42.291) (end -2.54 -42.291)
  3546. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 11195a47-0f27-4ce0-b25f-df9100eb112b))
  3547. (fp_line (start 0.635 -41.275) (end 0.635 -42.291)
  3548. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 5c067a68-1785-458b-b19d-4c319285f1c3))
  3549. (fp_line (start 0.635 41.275) (end 0.635 42.291)
  3550. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 3fc69f3f-661f-45bc-ab3e-ff265bae0496))
  3551. (fp_line (start 0.635 41.275) (end 2.54 41.275)
  3552. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 2bdc6b92-0205-46cc-8346-9cfd2366fbe7))
  3553. (fp_line (start 0.635 42.291) (end -2.54 42.291)
  3554. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp be0290c3-89c9-4460-8f87-9403026fc380))
  3555. (fp_line (start 2.54 -41.275) (end 0.635 -41.275)
  3556. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 7006ab3e-4169-4fd2-a607-5e2d344ca6d1))
  3557. (fp_line (start 2.54 41.275) (end 2.54 -41.275)
  3558. (stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 12305225-3e59-4a57-992c-d2a4aaba008e))
  3559. (fp_poly
  3560. (pts
  3561. (xy -1.651 -38.735)
  3562. (xy -0.889 -38.735)
  3563. (xy -0.889 -40.005)
  3564. (xy -1.651 -40.005)
  3565. )
  3566. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp e6015ff1-23e6-4a37-af1e-537882170d23))
  3567. (fp_poly
  3568. (pts
  3569. (xy -1.651 -36.195)
  3570. (xy -0.889 -36.195)
  3571. (xy -0.889 -37.465)
  3572. (xy -1.651 -37.465)
  3573. )
  3574. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 5d1faba1-8b3b-4163-b9cb-274f8944014c))
  3575. (fp_poly
  3576. (pts
  3577. (xy -1.651 -33.655)
  3578. (xy -0.889 -33.655)
  3579. (xy -0.889 -34.925)
  3580. (xy -1.651 -34.925)
  3581. )
  3582. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 16b7285f-44e3-4473-b78e-f422a666e481))
  3583. (fp_poly
  3584. (pts
  3585. (xy -1.651 -31.115)
  3586. (xy -0.889 -31.115)
  3587. (xy -0.889 -32.385)
  3588. (xy -1.651 -32.385)
  3589. )
  3590. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 7a3668ad-af5e-46b6-9908-a5fa98fd408d))
  3591. (fp_poly
  3592. (pts
  3593. (xy -1.651 -28.575)
  3594. (xy -0.889 -28.575)
  3595. (xy -0.889 -29.845)
  3596. (xy -1.651 -29.845)
  3597. )
  3598. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 9a65a95e-050d-4ed1-9273-263fc57573fc))
  3599. (fp_poly
  3600. (pts
  3601. (xy -1.651 -26.035)
  3602. (xy -0.889 -26.035)
  3603. (xy -0.889 -27.305)
  3604. (xy -1.651 -27.305)
  3605. )
  3606. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 90b40a77-ebd1-45ef-8222-c0a11c6648d4))
  3607. (fp_poly
  3608. (pts
  3609. (xy -1.651 -23.495)
  3610. (xy -0.889 -23.495)
  3611. (xy -0.889 -24.765)
  3612. (xy -1.651 -24.765)
  3613. )
  3614. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 02d5972a-fcc6-41d5-ae34-069111e6c8d6))
  3615. (fp_poly
  3616. (pts
  3617. (xy -1.651 -20.955)
  3618. (xy -0.889 -20.955)
  3619. (xy -0.889 -22.225)
  3620. (xy -1.651 -22.225)
  3621. )
  3622. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 0138db5f-352a-497a-b158-af60feb217ec))
  3623. (fp_poly
  3624. (pts
  3625. (xy -1.651 -18.415)
  3626. (xy -0.889 -18.415)
  3627. (xy -0.889 -19.685)
  3628. (xy -1.651 -19.685)
  3629. )
  3630. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 15b1bcfb-d4c8-4e4c-8c3e-569db3c909f8))
  3631. (fp_poly
  3632. (pts
  3633. (xy -1.651 -15.875)
  3634. (xy -0.889 -15.875)
  3635. (xy -0.889 -17.145)
  3636. (xy -1.651 -17.145)
  3637. )
  3638. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 0d6a94f6-a837-4bbe-be66-c3b9a1136031))
  3639. (fp_poly
  3640. (pts
  3641. (xy -1.651 -13.335)
  3642. (xy -0.889 -13.335)
  3643. (xy -0.889 -14.605)
  3644. (xy -1.651 -14.605)
  3645. )
  3646. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 56b4cd26-7b5d-4384-b887-62ce86307a9e))
  3647. (fp_poly
  3648. (pts
  3649. (xy -1.651 -10.795)
  3650. (xy -0.889 -10.795)
  3651. (xy -0.889 -12.065)
  3652. (xy -1.651 -12.065)
  3653. )
  3654. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp a6a9317d-71f7-4525-806c-ebed245fe129))
  3655. (fp_poly
  3656. (pts
  3657. (xy -1.651 -8.255)
  3658. (xy -0.889 -8.255)
  3659. (xy -0.889 -9.525)
  3660. (xy -1.651 -9.525)
  3661. )
  3662. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp f2740077-182f-425e-8d0a-0ec5e31d0478))
  3663. (fp_poly
  3664. (pts
  3665. (xy -1.651 -5.715)
  3666. (xy -0.889 -5.715)
  3667. (xy -0.889 -6.985)
  3668. (xy -1.651 -6.985)
  3669. )
  3670. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 3c113811-a6ab-4729-a821-46cdbe7ead84))
  3671. (fp_poly
  3672. (pts
  3673. (xy -1.651 -3.175)
  3674. (xy -0.889 -3.175)
  3675. (xy -0.889 -4.445)
  3676. (xy -1.651 -4.445)
  3677. )
  3678. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 065881d8-07e0-4a73-a3ab-d68c2d876e6f))
  3679. (fp_poly
  3680. (pts
  3681. (xy -1.651 -0.635)
  3682. (xy -0.889 -0.635)
  3683. (xy -0.889 -1.905)
  3684. (xy -1.651 -1.905)
  3685. )
  3686. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp b8051dcd-5d5f-40c7-91f2-01e4227abc96))
  3687. (fp_poly
  3688. (pts
  3689. (xy -1.651 1.905)
  3690. (xy -0.889 1.905)
  3691. (xy -0.889 0.635)
  3692. (xy -1.651 0.635)
  3693. )
  3694. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp a122e61e-44e8-4cb0-a206-7839015b24df))
  3695. (fp_poly
  3696. (pts
  3697. (xy -1.651 4.445)
  3698. (xy -0.889 4.445)
  3699. (xy -0.889 3.175)
  3700. (xy -1.651 3.175)
  3701. )
  3702. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 2b44c49e-59c5-43a2-9cc5-7497b4b71865))
  3703. (fp_poly
  3704. (pts
  3705. (xy -1.651 6.985)
  3706. (xy -0.889 6.985)
  3707. (xy -0.889 5.715)
  3708. (xy -1.651 5.715)
  3709. )
  3710. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 8c861476-c420-4c29-aaed-c2c2807be544))
  3711. (fp_poly
  3712. (pts
  3713. (xy -1.651 9.525)
  3714. (xy -0.889 9.525)
  3715. (xy -0.889 8.255)
  3716. (xy -1.651 8.255)
  3717. )
  3718. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 3021347a-6846-45c4-b51a-8c1ffe816c2b))
  3719. (fp_poly
  3720. (pts
  3721. (xy -1.651 12.065)
  3722. (xy -0.889 12.065)
  3723. (xy -0.889 10.795)
  3724. (xy -1.651 10.795)
  3725. )
  3726. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp b204c2ca-0de8-4cd7-89a4-41389a099a1d))
  3727. (fp_poly
  3728. (pts
  3729. (xy -1.651 14.605)
  3730. (xy -0.889 14.605)
  3731. (xy -0.889 13.335)
  3732. (xy -1.651 13.335)
  3733. )
  3734. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 62c96b70-f74e-4c41-b795-3acce7d9f537))
  3735. (fp_poly
  3736. (pts
  3737. (xy -1.651 17.145)
  3738. (xy -0.889 17.145)
  3739. (xy -0.889 15.875)
  3740. (xy -1.651 15.875)
  3741. )
  3742. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp afedf526-fb3f-4096-adfe-c9ec46aceee5))
  3743. (fp_poly
  3744. (pts
  3745. (xy -1.651 19.685)
  3746. (xy -0.889 19.685)
  3747. (xy -0.889 18.415)
  3748. (xy -1.651 18.415)
  3749. )
  3750. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 008bdb7b-71c5-42ca-bd13-888be8b7af5a))
  3751. (fp_poly
  3752. (pts
  3753. (xy -1.651 22.225)
  3754. (xy -0.889 22.225)
  3755. (xy -0.889 20.955)
  3756. (xy -1.651 20.955)
  3757. )
  3758. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp a553cfe4-d130-4dd3-8e57-66bbf4e843fc))
  3759. (fp_poly
  3760. (pts
  3761. (xy -1.651 24.765)
  3762. (xy -0.889 24.765)
  3763. (xy -0.889 23.495)
  3764. (xy -1.651 23.495)
  3765. )
  3766. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp a568369c-d625-43f6-bf34-29d86fd4601b))
  3767. (fp_poly
  3768. (pts
  3769. (xy -1.651 27.305)
  3770. (xy -0.889 27.305)
  3771. (xy -0.889 26.035)
  3772. (xy -1.651 26.035)
  3773. )
  3774. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp e37b29bc-5c1d-425b-91d3-93af18e4e506))
  3775. (fp_poly
  3776. (pts
  3777. (xy -1.651 29.845)
  3778. (xy -0.889 29.845)
  3779. (xy -0.889 28.575)
  3780. (xy -1.651 28.575)
  3781. )
  3782. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 073d1113-b792-4e3d-9ed3-64984eef67a8))
  3783. (fp_poly
  3784. (pts
  3785. (xy -1.651 32.385)
  3786. (xy -0.889 32.385)
  3787. (xy -0.889 31.115)
  3788. (xy -1.651 31.115)
  3789. )
  3790. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 01571b3d-42a7-4f61-9da5-2375b2cca347))
  3791. (fp_poly
  3792. (pts
  3793. (xy -1.651 34.925)
  3794. (xy -0.889 34.925)
  3795. (xy -0.889 33.655)
  3796. (xy -1.651 33.655)
  3797. )
  3798. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 574c73fa-f02b-4dd7-8607-3eec219d9dbb))
  3799. (fp_poly
  3800. (pts
  3801. (xy -1.651 37.465)
  3802. (xy -0.889 37.465)
  3803. (xy -0.889 36.195)
  3804. (xy -1.651 36.195)
  3805. )
  3806. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 40fe4893-d6e5-4c21-835a-c66a04efa44e))
  3807. (fp_poly
  3808. (pts
  3809. (xy -1.651 40.005)
  3810. (xy -0.889 40.005)
  3811. (xy -0.889 38.735)
  3812. (xy -1.651 38.735)
  3813. )
  3814. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 23ffe422-5201-4368-aff5-809c31c32a41))
  3815. (fp_poly
  3816. (pts
  3817. (xy 0.889 -38.735)
  3818. (xy 1.651 -38.735)
  3819. (xy 1.651 -40.005)
  3820. (xy 0.889 -40.005)
  3821. )
  3822. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 15484130-1a99-48cc-a0f7-283408c274ca))
  3823. (fp_poly
  3824. (pts
  3825. (xy 0.889 -36.195)
  3826. (xy 1.651 -36.195)
  3827. (xy 1.651 -37.465)
  3828. (xy 0.889 -37.465)
  3829. )
  3830. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 4da9a243-34f0-4745-9104-90446678179d))
  3831. (fp_poly
  3832. (pts
  3833. (xy 0.889 -33.655)
  3834. (xy 1.651 -33.655)
  3835. (xy 1.651 -34.925)
  3836. (xy 0.889 -34.925)
  3837. )
  3838. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 8e0135bf-4af1-488d-abd9-e79ec407daae))
  3839. (fp_poly
  3840. (pts
  3841. (xy 0.889 -31.115)
  3842. (xy 1.651 -31.115)
  3843. (xy 1.651 -32.385)
  3844. (xy 0.889 -32.385)
  3845. )
  3846. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 7d703c96-8de5-46cc-9e90-0fbf42c7fec3))
  3847. (fp_poly
  3848. (pts
  3849. (xy 0.889 -28.575)
  3850. (xy 1.651 -28.575)
  3851. (xy 1.651 -29.845)
  3852. (xy 0.889 -29.845)
  3853. )
  3854. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp f19761dc-bc36-4fe2-b407-b75f5a9ffcaa))
  3855. (fp_poly
  3856. (pts
  3857. (xy 0.889 -26.035)
  3858. (xy 1.651 -26.035)
  3859. (xy 1.651 -27.305)
  3860. (xy 0.889 -27.305)
  3861. )
  3862. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 17d27d37-4e95-4c6d-84e3-a089f6e9f223))
  3863. (fp_poly
  3864. (pts
  3865. (xy 0.889 -23.495)
  3866. (xy 1.651 -23.495)
  3867. (xy 1.651 -24.765)
  3868. (xy 0.889 -24.765)
  3869. )
  3870. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp ddb5479a-856c-44e5-8567-294d787bcd01))
  3871. (fp_poly
  3872. (pts
  3873. (xy 0.889 -20.955)
  3874. (xy 1.651 -20.955)
  3875. (xy 1.651 -22.225)
  3876. (xy 0.889 -22.225)
  3877. )
  3878. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp c789546c-c744-4db7-a545-aba6885ed5b4))
  3879. (fp_poly
  3880. (pts
  3881. (xy 0.889 -18.415)
  3882. (xy 1.651 -18.415)
  3883. (xy 1.651 -19.685)
  3884. (xy 0.889 -19.685)
  3885. )
  3886. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 8fe57cdc-f363-4ab3-91e5-c176e15b15b6))
  3887. (fp_poly
  3888. (pts
  3889. (xy 0.889 -15.875)
  3890. (xy 1.651 -15.875)
  3891. (xy 1.651 -17.145)
  3892. (xy 0.889 -17.145)
  3893. )
  3894. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 6ac63002-e267-4ef0-899c-5441a5722c16))
  3895. (fp_poly
  3896. (pts
  3897. (xy 0.889 -13.335)
  3898. (xy 1.651 -13.335)
  3899. (xy 1.651 -14.605)
  3900. (xy 0.889 -14.605)
  3901. )
  3902. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp f539a9c4-3b13-40aa-a1e1-d038fa67a5aa))
  3903. (fp_poly
  3904. (pts
  3905. (xy 0.889 -10.795)
  3906. (xy 1.651 -10.795)
  3907. (xy 1.651 -12.065)
  3908. (xy 0.889 -12.065)
  3909. )
  3910. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp b264577c-41b8-4a63-bed2-cebb751b24a8))
  3911. (fp_poly
  3912. (pts
  3913. (xy 0.889 -8.255)
  3914. (xy 1.651 -8.255)
  3915. (xy 1.651 -9.525)
  3916. (xy 0.889 -9.525)
  3917. )
  3918. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 29b4baf1-eea6-463e-9c40-8d97dea9a9d3))
  3919. (fp_poly
  3920. (pts
  3921. (xy 0.889 -5.715)
  3922. (xy 1.651 -5.715)
  3923. (xy 1.651 -6.985)
  3924. (xy 0.889 -6.985)
  3925. )
  3926. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 634a0cf1-dec1-4c4a-a54d-89a9f5fceafb))
  3927. (fp_poly
  3928. (pts
  3929. (xy 0.889 -3.175)
  3930. (xy 1.651 -3.175)
  3931. (xy 1.651 -4.445)
  3932. (xy 0.889 -4.445)
  3933. )
  3934. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 1ab58a20-0c68-4776-8d6b-1cbd7b9d7c26))
  3935. (fp_poly
  3936. (pts
  3937. (xy 0.889 -0.635)
  3938. (xy 1.651 -0.635)
  3939. (xy 1.651 -1.905)
  3940. (xy 0.889 -1.905)
  3941. )
  3942. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 6aa1e76f-d998-4f16-818d-8c2105f861c9))
  3943. (fp_poly
  3944. (pts
  3945. (xy 0.889 1.905)
  3946. (xy 1.651 1.905)
  3947. (xy 1.651 0.635)
  3948. (xy 0.889 0.635)
  3949. )
  3950. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp b84dbf36-14af-496e-8b0a-34cc04987995))
  3951. (fp_poly
  3952. (pts
  3953. (xy 0.889 4.445)
  3954. (xy 1.651 4.445)
  3955. (xy 1.651 3.175)
  3956. (xy 0.889 3.175)
  3957. )
  3958. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 7644d96b-05c8-40d0-9001-6d03f224a0aa))
  3959. (fp_poly
  3960. (pts
  3961. (xy 0.889 6.985)
  3962. (xy 1.651 6.985)
  3963. (xy 1.651 5.715)
  3964. (xy 0.889 5.715)
  3965. )
  3966. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 7b06db71-de36-4bc2-85ab-c49b78fa33d1))
  3967. (fp_poly
  3968. (pts
  3969. (xy 0.889 9.525)
  3970. (xy 1.651 9.525)
  3971. (xy 1.651 8.255)
  3972. (xy 0.889 8.255)
  3973. )
  3974. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 86660b29-b509-4ada-b449-2aa7a74e85d5))
  3975. (fp_poly
  3976. (pts
  3977. (xy 0.889 12.065)
  3978. (xy 1.651 12.065)
  3979. (xy 1.651 10.795)
  3980. (xy 0.889 10.795)
  3981. )
  3982. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 9fb43a82-a425-457d-a877-67fe752a1959))
  3983. (fp_poly
  3984. (pts
  3985. (xy 0.889 14.605)
  3986. (xy 1.651 14.605)
  3987. (xy 1.651 13.335)
  3988. (xy 0.889 13.335)
  3989. )
  3990. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 16ea809e-c967-4aa4-8cf9-6c8fe64d4ef0))
  3991. (fp_poly
  3992. (pts
  3993. (xy 0.889 17.145)
  3994. (xy 1.651 17.145)
  3995. (xy 1.651 15.875)
  3996. (xy 0.889 15.875)
  3997. )
  3998. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 4996abe6-896b-4eb1-9e4b-8a6223d5baa1))
  3999. (fp_poly
  4000. (pts
  4001. (xy 0.889 19.685)
  4002. (xy 1.651 19.685)
  4003. (xy 1.651 18.415)
  4004. (xy 0.889 18.415)
  4005. )
  4006. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 5667e486-9cef-4559-a989-d9d0805866a8))
  4007. (fp_poly
  4008. (pts
  4009. (xy 0.889 22.225)
  4010. (xy 1.651 22.225)
  4011. (xy 1.651 20.955)
  4012. (xy 0.889 20.955)
  4013. )
  4014. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 4bd702ae-b0f4-4a4a-b318-9cc4aa7d702e))
  4015. (fp_poly
  4016. (pts
  4017. (xy 0.889 24.765)
  4018. (xy 1.651 24.765)
  4019. (xy 1.651 23.495)
  4020. (xy 0.889 23.495)
  4021. )
  4022. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 1169dc72-b032-4777-aefc-98930b2b9fc0))
  4023. (fp_poly
  4024. (pts
  4025. (xy 0.889 27.305)
  4026. (xy 1.651 27.305)
  4027. (xy 1.651 26.035)
  4028. (xy 0.889 26.035)
  4029. )
  4030. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 2b80bae0-e851-42fc-9e7d-14e9c51f5084))
  4031. (fp_poly
  4032. (pts
  4033. (xy 0.889 29.845)
  4034. (xy 1.651 29.845)
  4035. (xy 1.651 28.575)
  4036. (xy 0.889 28.575)
  4037. )
  4038. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 8a9592bc-d805-4fd7-913c-516d811c1e17))
  4039. (fp_poly
  4040. (pts
  4041. (xy 0.889 32.385)
  4042. (xy 1.651 32.385)
  4043. (xy 1.651 31.115)
  4044. (xy 0.889 31.115)
  4045. )
  4046. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp d2c010a3-7bd9-461b-b68e-4ab42c65a142))
  4047. (fp_poly
  4048. (pts
  4049. (xy 0.889 34.925)
  4050. (xy 1.651 34.925)
  4051. (xy 1.651 33.655)
  4052. (xy 0.889 33.655)
  4053. )
  4054. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp ac40d126-504a-45bc-a737-43e1b976d1e4))
  4055. (fp_poly
  4056. (pts
  4057. (xy 0.889 37.465)
  4058. (xy 1.651 37.465)
  4059. (xy 1.651 36.195)
  4060. (xy 0.889 36.195)
  4061. )
  4062. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 379a3bde-d374-4505-9ca2-ded214e2b0e1))
  4063. (fp_poly
  4064. (pts
  4065. (xy 0.889 40.005)
  4066. (xy 1.651 40.005)
  4067. (xy 1.651 38.735)
  4068. (xy 0.889 38.735)
  4069. )
  4070. (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 85a43f05-d021-46dc-81a9-e1d4a085d85b))
  4071. (pad "" np_thru_hole circle (at 0.9652 -45.0088) (size 2.794 2.794) (drill 2.794) (layers "*.Cu" "*.Mask") (tstamp f7ed82d7-c76e-420d-9aaf-02ba66a227e1))
  4072. (pad "" np_thru_hole circle (at 0.9652 45.0088) (size 2.794 2.794) (drill 2.794) (layers "*.Cu" "*.Mask") (tstamp 5aca7f7f-7620-4382-960e-4745d9c71841))
  4073. (pad "A1" thru_hole circle (at -1.27 -39.37) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4074. (net 101 "unconnected-(X2--12V-PadA1)") (pinfunction "-12V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 4fba279b-1d23-4cc4-8401-680710dd34b4))
  4075. (pad "A2" thru_hole circle (at -1.27 -36.83) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4076. (net 91 "/0V") (pinfunction "0V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 51257e0d-caa3-4c07-a687-99a0318f191d))
  4077. (pad "A3" thru_hole circle (at -1.27 -34.29) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4078. (net 102 "unconnected-(X2-~{RESIN}-PadA3)") (pinfunction "~{RESIN}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp d610e0a4-33db-48f2-8b58-17d4cb77e0b6))
  4079. (pad "A4" thru_hole circle (at -1.27 -31.75) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4080. (net 103 "unconnected-(X2-GND-PadA4)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 92ea19c5-92c6-475a-9990-55b26e2fdada))
  4081. (pad "A5" thru_hole circle (at -1.27 -29.21) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4082. (net 34 "/SRAM_WE") (pinfunction "~{XMEMW}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp f9a4ca2f-097e-4ab0-9804-b0ea70e2b528))
  4083. (pad "A6" thru_hole circle (at -1.27 -26.67) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4084. (net 39 "/D7") (pinfunction "D7") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 8509c9fc-b87e-4db3-8736-ce365b754e0b))
  4085. (pad "A7" thru_hole circle (at -1.27 -24.13) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4086. (net 40 "/D6") (pinfunction "D6") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp ce6b9b71-1caa-4ac4-b7fd-b0bcd269ce00))
  4087. (pad "A8" thru_hole circle (at -1.27 -21.59) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4088. (net 41 "/D5") (pinfunction "D5") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp e78d66e2-dbce-44c5-9ef1-1e3c08cea3d2))
  4089. (pad "A9" thru_hole circle (at -1.27 -19.05) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4090. (net 42 "/D4") (pinfunction "D4") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp eb675b65-576f-427b-9435-3730ee28ae98))
  4091. (pad "A10" thru_hole circle (at -1.27 -16.51) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4092. (net 43 "/D3") (pinfunction "D3") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp c277547f-04d9-4d3f-8506-01865cac25b7))
  4093. (pad "A11" thru_hole circle (at -1.27 -13.97) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4094. (net 44 "/D2") (pinfunction "D2") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp c6bc6242-904b-43ff-8891-25c711967f18))
  4095. (pad "A12" thru_hole circle (at -1.27 -11.43) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4096. (net 45 "/D1") (pinfunction "D1") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 1bf3d524-ca90-465c-bf75-3f1a01ca5e86))
  4097. (pad "A13" thru_hole circle (at -1.27 -8.89) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4098. (net 46 "/D0") (pinfunction "D0") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 56e0a6b1-03eb-43a3-87f2-2874d233f028))
  4099. (pad "A14" thru_hole circle (at -1.27 -6.35) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4100. (net 104 "unconnected-(X2-NC-PadA14)") (pinfunction "NC") (pintype "passive") (solder_mask_margin 0.1016) (tstamp adb98cb6-39a8-4073-a69a-0ede05d614ce))
  4101. (pad "A15" thru_hole circle (at -1.27 -3.81) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4102. (net 105 "unconnected-(X2-~{RST}-PadA15)") (pinfunction "~{RST}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 68a83521-682b-4e93-95ca-381305b7cf9c))
  4103. (pad "A16" thru_hole circle (at -1.27 -1.27) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4104. (net 106 "unconnected-(X2-~{STATUS}-PadA16)") (pinfunction "~{STATUS}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 14af3968-c666-4d73-b650-f3f2e0c7547d))
  4105. (pad "A17" thru_hole circle (at -1.27 1.27) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4106. (net 107 "unconnected-(X2-~{INP}-PadA17)") (pinfunction "~{INP}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 18151d73-6a00-4d9b-a363-7205f97bcb2c))
  4107. (pad "A18" thru_hole circle (at -1.27 3.81) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4108. (net 108 "unconnected-(X2-~{C4}-PadA18)") (pinfunction "~{C4}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp fda9545a-e6cd-4751-ae84-c35886e46a11))
  4109. (pad "A19" thru_hole circle (at -1.27 6.35) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4110. (net 109 "unconnected-(X2-~{C3}-PadA19)") (pinfunction "~{C3}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp ec974d07-5db5-4a66-96e3-55db34a0f929))
  4111. (pad "A20" thru_hole circle (at -1.27 8.89) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4112. (net 110 "unconnected-(X2-~{C2}-PadA20)") (pinfunction "~{C2}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 30177390-23eb-4a95-9039-fdb327554840))
  4113. (pad "A21" thru_hole circle (at -1.27 11.43) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4114. (net 111 "unconnected-(X2-~{C1}-PadA21)") (pinfunction "~{C1}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 3b57e33f-f9ac-4c30-9125-1cd0e92eab99))
  4115. (pad "A22" thru_hole circle (at -1.27 13.97) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4116. (net 112 "unconnected-(X2-~{OUT}-PadA22)") (pinfunction "~{OUT}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp fcc0b571-c070-494a-9075-960ffc8cad12))
  4117. (pad "A23" thru_hole circle (at -1.27 16.51) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4118. (net 113 "unconnected-(X2-~{CS}-PadA23)") (pinfunction "~{CS}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 413cd74d-9a7e-4091-abe4-3c2e0580698f))
  4119. (pad "A24" thru_hole circle (at -1.27 19.05) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4120. (net 114 "unconnected-(X2-GND-PadA24)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 0d8e1b1a-c647-4606-a5b8-a444f78d1cf5))
  4121. (pad "A25" thru_hole circle (at -1.27 21.59) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4122. (net 115 "unconnected-(X2-GND-PadA25)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 3f85629a-5fa6-47fd-a0ea-f0efeccb40e4))
  4123. (pad "A26" thru_hole circle (at -1.27 24.13) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4124. (net 116 "unconnected-(X2-GND-PadA26)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 6194949e-58e3-4ea1-8f3a-a5902cb9a4a3))
  4125. (pad "A27" thru_hole circle (at -1.27 26.67) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4126. (net 117 "unconnected-(X2-GND-PadA27)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 9523fcf9-ad29-4e4e-aef2-7bda2c3a2480))
  4127. (pad "A28" thru_hole circle (at -1.27 29.21) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4128. (net 118 "unconnected-(X2-GND-PadA28)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp ea5d45d1-8ad5-407f-b8bb-541e03f655fd))
  4129. (pad "A29" thru_hole circle (at -1.27 31.75) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4130. (net 119 "unconnected-(X2-GND-PadA29)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp f753dc8e-264c-4975-9eb5-e800f80029b0))
  4131. (pad "A30" thru_hole circle (at -1.27 34.29) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4132. (net 120 "unconnected-(X2-READY-PadA30)") (pinfunction "READY") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp ca19ce32-0adb-4097-a898-3a53d9833aaf))
  4133. (pad "A31" thru_hole circle (at -1.27 36.83) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4134. (net 121 "unconnected-(X2-+5V-PadA31)") (pinfunction "+5V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp b91a2d91-4442-4270-a687-c8afb0001ba4))
  4135. (pad "A32" thru_hole circle (at -1.27 39.37) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4136. (net 122 "unconnected-(X2-+12V-PadA32)") (pinfunction "+12V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 33919f1b-0bbf-443a-9bb5-0727e419d313))
  4137. (pad "B1" thru_hole circle (at 1.27 -39.37) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4138. (net 123 "unconnected-(X2--12V-PadB1)") (pinfunction "-12V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp fa6f9d2c-508e-49b1-9ee5-dbfb215f5735))
  4139. (pad "B2" thru_hole circle (at 1.27 -36.83) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4140. (net 124 "unconnected-(X2-0V-PadB2)") (pinfunction "0V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 927fdc60-4d7a-4d27-ab79-6d82361c1f70))
  4141. (pad "B3" thru_hole circle (at 1.27 -34.29) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4142. (net 125 "unconnected-(X2-GND-PadB3)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 30e46ebe-bdd5-4a88-b86c-03c51895c729))
  4143. (pad "B4" thru_hole circle (at 1.27 -31.75) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4144. (net 126 "/xmemfl_OUT") (pinfunction "~{XMEMFL}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp d0c4e814-c2cc-423f-946a-096dc848203a))
  4145. (pad "B5" thru_hole circle (at 1.27 -29.21) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4146. (net 100 "/CLK") (pinfunction "5") (pintype "passive") (solder_mask_margin 0.1016) (tstamp 86b3ca14-c3db-4c82-ae6e-edbc55c27224))
  4147. (pad "B6" thru_hole circle (at 1.27 -26.67) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4148. (net 127 "unconnected-(X2-GND-PadB6)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp bee22fd2-b492-4aa0-ad54-e9d5af8fb2e7))
  4149. (pad "B7" thru_hole circle (at 1.27 -24.13) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4150. (net 128 "unconnected-(X2-GND-PadB7)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp d942fff8-b248-4247-a85e-80744915a53b))
  4151. (pad "B8" thru_hole circle (at 1.27 -21.59) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4152. (net 129 "unconnected-(X2-GND-PadB8)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 9f0169e0-c5aa-4ff0-8924-682acb5c7cbd))
  4153. (pad "B9" thru_hole circle (at 1.27 -19.05) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4154. (net 130 "unconnected-(X2-GND-PadB9)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 1dd2866f-eff0-4692-b26b-46bff226038a))
  4155. (pad "B10" thru_hole circle (at 1.27 -16.51) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4156. (net 131 "unconnected-(X2-GND-PadB10)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 5b426d06-e0fb-4605-bfdf-7e12ce2f3a4e))
  4157. (pad "B11" thru_hole circle (at 1.27 -13.97) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4158. (net 132 "unconnected-(X2-GND-PadB11)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 9dab5106-1a2a-4c37-9ab4-3a113e73c360))
  4159. (pad "B12" thru_hole circle (at 1.27 -11.43) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4160. (net 133 "unconnected-(X2-GND-PadB12)") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp f296b317-c38c-484c-86f1-5c053fea7533))
  4161. (pad "B13" thru_hole circle (at 1.27 -8.89) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4162. (net 134 "unconnected-(X2-~{INT}-PadB13)") (pinfunction "~{INT}") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 94d2c008-e4b8-49da-9bb7-e073d1f73a0a))
  4163. (pad "B14" thru_hole circle (at 1.27 -6.35) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4164. (net 78 "/A15") (pinfunction "A15") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp a434febf-387c-4108-aeeb-7f614d0384c9))
  4165. (pad "B15" thru_hole circle (at 1.27 -3.81) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4166. (net 79 "/A14") (pinfunction "A14") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp c537df47-1a2b-4941-bb3b-de27d858cc2e))
  4167. (pad "B16" thru_hole circle (at 1.27 -1.27) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4168. (net 80 "/A13") (pinfunction "A13") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 202f2013-4ccd-4938-9f19-97c4876a4e3c))
  4169. (pad "B17" thru_hole circle (at 1.27 1.27) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4170. (net 81 "/A12") (pinfunction "A12") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 191f7480-0ddc-4fdb-b039-2d3bdb5b6964))
  4171. (pad "B18" thru_hole circle (at 1.27 3.81) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4172. (net 22 "/A11") (pinfunction "A11") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp c36e7b13-302b-4359-88e6-9fbdbaf3a7b4))
  4173. (pad "B19" thru_hole circle (at 1.27 6.35) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4174. (net 21 "/A10") (pinfunction "A10") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 4518387c-c832-4511-bfdf-ec82e3c778a4))
  4175. (pad "B20" thru_hole circle (at 1.27 8.89) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4176. (net 23 "/A9") (pinfunction "A9") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp cf39ca34-a72d-4d11-97aa-5c943e3b4d47))
  4177. (pad "B21" thru_hole circle (at 1.27 11.43) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4178. (net 24 "/A8") (pinfunction "A8") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 52a1f8e7-097f-4e76-87af-88ece81df5b0))
  4179. (pad "B22" thru_hole circle (at 1.27 13.97) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4180. (net 3 "/A7") (pinfunction "A7") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp fb981b17-4489-4a81-adb1-c339101d4478))
  4181. (pad "B23" thru_hole circle (at 1.27 16.51) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4182. (net 4 "/A6") (pinfunction "A6") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 5f924439-5343-4a5c-806a-1a5a8cba60c0))
  4183. (pad "B24" thru_hole circle (at 1.27 19.05) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4184. (net 5 "/A5") (pinfunction "A5") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 7164e42f-f22e-47aa-9dec-f199a0649258))
  4185. (pad "B25" thru_hole circle (at 1.27 21.59) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4186. (net 6 "/A4") (pinfunction "A4") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 8b1312f2-4242-4681-a4e1-2acbd973393f))
  4187. (pad "B26" thru_hole circle (at 1.27 24.13) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4188. (net 7 "/A3") (pinfunction "A3") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp d14a2176-d2d5-4941-8f79-c1088333e058))
  4189. (pad "B27" thru_hole circle (at 1.27 26.67) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4190. (net 8 "/A2") (pinfunction "A2") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 84be7bcd-3249-4010-bec1-444d6bf392e9))
  4191. (pad "B28" thru_hole circle (at 1.27 29.21) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4192. (net 9 "/A1") (pinfunction "A1") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 4a19164c-f2ce-4bff-bfdf-e0ab535aa1c3))
  4193. (pad "B29" thru_hole circle (at 1.27 31.75) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4194. (net 10 "/A0") (pinfunction "A0") (pintype "bidirectional") (solder_mask_margin 0.1016) (tstamp 6b046504-2d04-4338-9f32-b0af996b1e35))
  4195. (pad "B30" thru_hole circle (at 1.27 34.29) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4196. (net 135 "unconnected-(X2-NC-PadB30)") (pinfunction "NC") (pintype "passive") (solder_mask_margin 0.1016) (tstamp 748582f0-159e-4313-873e-0c736e212f10))
  4197. (pad "B31" thru_hole circle (at 1.27 36.83) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4198. (net 136 "unconnected-(X2-+5V-PadB31)") (pinfunction "+5V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp 07f48eb1-c00d-4963-a5f9-215a7decb0ba))
  4199. (pad "B32" thru_hole circle (at 1.27 39.37) (size 1.4224 1.4224) (drill 0.9144) (layers "*.Cu" "*.Mask")
  4200. (net 137 "unconnected-(X2-+12V-PadB32)") (pinfunction "+12V") (pintype "power_out") (solder_mask_margin 0.1016) (tstamp a20d3052-d67a-4c1f-b4a0-9a2cec7aaf3e))
  4201. )
  4202. (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
  4203. (tstamp ea6115da-84b1-46e5-80f7-0dba3e6b2595)
  4204. (at 150.076 52.007)
  4205. (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  4206. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  4207. (property "Sheetfile" "smartaidmagnum.kicad_sch")
  4208. (property "Sheetname" "")
  4209. (property "ki_description" "Dual D Flip-flop, Set & Reset")
  4210. (property "ki_keywords" "TTL DFF")
  4211. (path "/d68b9e4a-fce4-4e3e-b69d-23b6c0156175")
  4212. (attr through_hole)
  4213. (fp_text reference "U9_E2_L1" (at 3.81 -2.33) (layer "F.SilkS")
  4214. (effects (font (size 1 1) (thickness 0.15)))
  4215. (tstamp cc8b1da2-3d13-414b-b204-56d7a0949a9d)
  4216. )
  4217. (fp_text value "74LS74" (at 3.81 17.57) (layer "F.Fab")
  4218. (effects (font (size 1 1) (thickness 0.15)))
  4219. (tstamp 30aa5035-4efe-41ac-bc56-ca7233bde517)
  4220. )
  4221. (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
  4222. (effects (font (size 1 1) (thickness 0.15)))
  4223. (tstamp 093056e6-8c46-4012-9e3b-b49498e9c921)
  4224. )
  4225. (fp_line (start 1.16 -1.33) (end 1.16 16.57)
  4226. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 554f0129-edf0-4b58-aa70-4044058e4719))
  4227. (fp_line (start 1.16 16.57) (end 6.46 16.57)
  4228. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3019d50-6151-4ef1-92bb-8d1b3de45d4f))
  4229. (fp_line (start 2.81 -1.33) (end 1.16 -1.33)
  4230. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 60313b01-9ecc-49a2-b02b-9d232a00c84e))
  4231. (fp_line (start 6.46 -1.33) (end 4.81 -1.33)
  4232. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c687dc8-c295-4ea1-a2e3-c2909115e8de))
  4233. (fp_line (start 6.46 16.57) (end 6.46 -1.33)
  4234. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6c608b4-e988-41e3-b287-aa14105e3b55))
  4235. (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
  4236. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5d7368e-2ef1-405a-b11e-abc91d63df4f))
  4237. (fp_line (start -1.1 -1.55) (end -1.1 16.8)
  4238. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8def2f1a-093c-4982-ba8e-42cc93e88dfc))
  4239. (fp_line (start -1.1 16.8) (end 8.7 16.8)
  4240. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06c84776-6331-4fa5-9439-59e900ac1836))
  4241. (fp_line (start 8.7 -1.55) (end -1.1 -1.55)
  4242. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d36303a3-5ae7-48f9-85ef-88e2413a6935))
  4243. (fp_line (start 8.7 16.8) (end 8.7 -1.55)
  4244. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8d9ce8e-d137-441a-b08b-5e3e90ff35ea))
  4245. (fp_line (start 0.635 -0.27) (end 1.635 -1.27)
  4246. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd7162c7-500e-4eab-8400-c68d1f720242))
  4247. (fp_line (start 0.635 16.51) (end 0.635 -0.27)
  4248. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac81bdbd-0833-4dea-8c13-2376528408b0))
  4249. (fp_line (start 1.635 -1.27) (end 6.985 -1.27)
  4250. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6f2aeaa-7de4-4f28-98e2-97cfbb728045))
  4251. (fp_line (start 6.985 -1.27) (end 6.985 16.51)
  4252. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2201c237-1df3-4dbd-b39c-826c263fe731))
  4253. (fp_line (start 6.985 16.51) (end 0.635 16.51)
  4254. (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab94db58-2414-438f-8464-8b6dca6a6155))
  4255. (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4256. (net 1 "VCC") (pinfunction "~{R}") (pintype "input") (tstamp af8ba4d4-dae9-48b3-a478-c0579674618f))
  4257. (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4258. (net 9 "/A1") (pinfunction "D") (pintype "input") (tstamp 6933fa4d-f3f2-482b-9096-d1f5bd02437f))
  4259. (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4260. (net 175 "/BANK_SEL") (pinfunction "C") (pintype "input") (tstamp 04b1221a-dc6e-4008-8c05-1a970a7be4f9))
  4261. (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4262. (net 1 "VCC") (pinfunction "~{S}") (pintype "input") (tstamp c2de7e26-9db1-4792-b3c0-6834619d4435))
  4263. (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4264. (net 2 "/A12_128") (pinfunction "Q") (pintype "output") (tstamp 1daa085a-4a7f-429c-8b2e-321a69c8753f))
  4265. (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4266. (net 193 "unconnected-(U9_E2_L1A-~{Q}-Pad6)") (pinfunction "~{Q}") (pintype "output") (tstamp 19208388-6a4b-4a12-ba72-f9f8327ab36e))
  4267. (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4268. (net 194 "unconnected-(U9_E2_L1C-GND-Pad7)") (pinfunction "GND") (pintype "power_in") (tstamp 20c679c7-fac1-490f-bff0-472eaa60d203))
  4269. (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4270. (net 141 "Net-(U9_E2_L1B-~{Q})") (pinfunction "~{Q}") (pintype "output") (tstamp bfcd028c-16cc-4e31-b8b8-b6f5569af8cb))
  4271. (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4272. (net 142 "Net-(U9_E2_L1B-Q)") (pinfunction "Q") (pintype "output") (tstamp ae2b1b1a-4479-482e-8620-e25cbc7c489f))
  4273. (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4274. (net 195 "Net-(U9_E2_L1B-~{S})") (pinfunction "~{S}") (pintype "input") (tstamp efc47d19-1f1e-47a3-8e59-551072e04a9f))
  4275. (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4276. (net 196 "Net-(U9_E2_L1B-C)") (pinfunction "C") (pintype "input") (tstamp 91f2e570-c4a8-4816-80d8-241e125996db))
  4277. (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4278. (net 100 "/CLK") (pinfunction "D") (pintype "input") (tstamp a82ec2ad-26fe-4415-af94-ff5e7fb48f24))
  4279. (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4280. (net 1 "VCC") (pinfunction "~{R}") (pintype "input") (tstamp 121c1d42-6dd3-4d51-ac50-98a553007c10))
  4281. (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4282. (net 197 "unconnected-(U9_E2_L1C-VCC-Pad14)") (pinfunction "VCC") (pintype "power_in") (tstamp c267d5b6-9f55-46f4-bfb3-35f49f5856b1))
  4283. (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
  4284. (offset (xyz 0 0 0))
  4285. (scale (xyz 1 1 1))
  4286. (rotate (xyz 0 0 0))
  4287. )
  4288. )
  4289. )