frmBoardGroup_BigReceiver.designer.cs 209 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080
  1. namespace FPER
  2. {
  3. partial class frmBoardGroup_BigReceiver
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBoardGroup_BigReceiver));
  30. this.txtThisReceiverID = new System.Windows.Forms.TextBox();
  31. this.imageList1 = new System.Windows.Forms.ImageList(this.components);
  32. this.btnCommand = new System.Windows.Forms.Button();
  33. this.button3 = new System.Windows.Forms.Button();
  34. this.panel1 = new System.Windows.Forms.Panel();
  35. this.btnWinClose = new System.Windows.Forms.Button();
  36. this.lblDir = new System.Windows.Forms.Label();
  37. this.panel_Temp = new System.Windows.Forms.Panel();
  38. this.imageList_Loop = new System.Windows.Forms.ImageList(this.components);
  39. this.imageList_RepeaterBoard = new System.Windows.Forms.ImageList(this.components);
  40. this.lbl_COMM26 = new System.Windows.Forms.Label();
  41. this.lbl_COMM21 = new System.Windows.Forms.Label();
  42. this.lbl_COMM46 = new System.Windows.Forms.Label();
  43. this.lbl_COMM41 = new System.Windows.Forms.Label();
  44. this.lbl_COMM61 = new System.Windows.Forms.Label();
  45. this.lbl_COMM27 = new System.Windows.Forms.Label();
  46. this.lbl_COMM47 = new System.Windows.Forms.Label();
  47. this.lbl_COMM25 = new System.Windows.Forms.Label();
  48. this.lbl_COMM45 = new System.Windows.Forms.Label();
  49. this.lbl_COMM22 = new System.Windows.Forms.Label();
  50. this.lbl_COMM42 = new System.Windows.Forms.Label();
  51. this.lbl_COMM62 = new System.Windows.Forms.Label();
  52. this.lbl_COMM20 = new System.Windows.Forms.Label();
  53. this.lbl_COMM40 = new System.Windows.Forms.Label();
  54. this.lbl_COMM60 = new System.Windows.Forms.Label();
  55. this.lbl_COMM28 = new System.Windows.Forms.Label();
  56. this.lbl_COMM48 = new System.Windows.Forms.Label();
  57. this.lbl_COMM23 = new System.Windows.Forms.Label();
  58. this.lbl_COMM43 = new System.Windows.Forms.Label();
  59. this.lbl_COMM63 = new System.Windows.Forms.Label();
  60. this.lbl_COMM9 = new System.Windows.Forms.Label();
  61. this.lbl_COMM29 = new System.Windows.Forms.Label();
  62. this.lbl_COMM49 = new System.Windows.Forms.Label();
  63. this.lbl_COMM24 = new System.Windows.Forms.Label();
  64. this.lbl_COMM44 = new System.Windows.Forms.Label();
  65. this.lbl_COMM64 = new System.Windows.Forms.Label();
  66. this.lbl_COMM10 = new System.Windows.Forms.Label();
  67. this.lbl_COMM30 = new System.Windows.Forms.Label();
  68. this.lbl_COMM50 = new System.Windows.Forms.Label();
  69. this.lbl_COMM11 = new System.Windows.Forms.Label();
  70. this.lbl_COMM31 = new System.Windows.Forms.Label();
  71. this.lbl_COMM51 = new System.Windows.Forms.Label();
  72. this.lbl_COMM16 = new System.Windows.Forms.Label();
  73. this.lbl_COMM36 = new System.Windows.Forms.Label();
  74. this.lbl_COMM56 = new System.Windows.Forms.Label();
  75. this.label5 = new System.Windows.Forms.Label();
  76. this.label51 = new System.Windows.Forms.Label();
  77. this.label77 = new System.Windows.Forms.Label();
  78. this.label32 = new System.Windows.Forms.Label();
  79. this.label52 = new System.Windows.Forms.Label();
  80. this.label78 = new System.Windows.Forms.Label();
  81. this.label8 = new System.Windows.Forms.Label();
  82. this.label54 = new System.Windows.Forms.Label();
  83. this.label79 = new System.Windows.Forms.Label();
  84. this.label33 = new System.Windows.Forms.Label();
  85. this.label55 = new System.Windows.Forms.Label();
  86. this.label80 = new System.Windows.Forms.Label();
  87. this.lbl_COMM12 = new System.Windows.Forms.Label();
  88. this.lbl_COMM32 = new System.Windows.Forms.Label();
  89. this.lbl_COMM52 = new System.Windows.Forms.Label();
  90. this.lbl_COMM17 = new System.Windows.Forms.Label();
  91. this.lbl_COMM37 = new System.Windows.Forms.Label();
  92. this.lbl_COMM57 = new System.Windows.Forms.Label();
  93. this.lbl_COMM13 = new System.Windows.Forms.Label();
  94. this.btnBoard9_loop0 = new System.Windows.Forms.Button();
  95. this.btnBoard29_loop0 = new System.Windows.Forms.Button();
  96. this.btnBoard49_loop0 = new System.Windows.Forms.Button();
  97. this.btnBoard17_loop0 = new System.Windows.Forms.Button();
  98. this.btnBoard37_loop0 = new System.Windows.Forms.Button();
  99. this.btnBoard57_loop0 = new System.Windows.Forms.Button();
  100. this.btnBoard13_loop0 = new System.Windows.Forms.Button();
  101. this.btnBoard33_loop0 = new System.Windows.Forms.Button();
  102. this.btnBoard53_loop0 = new System.Windows.Forms.Button();
  103. this.btnBoard21_loop0 = new System.Windows.Forms.Button();
  104. this.btnBoard41_loop0 = new System.Windows.Forms.Button();
  105. this.btnBoard61_loop0 = new System.Windows.Forms.Button();
  106. this.btnBoard25_loop0 = new System.Windows.Forms.Button();
  107. this.btnBoard45_loop0 = new System.Windows.Forms.Button();
  108. this.btnBoard10_loop0 = new System.Windows.Forms.Button();
  109. this.btnBoard30_loop0 = new System.Windows.Forms.Button();
  110. this.btnBoard50_loop0 = new System.Windows.Forms.Button();
  111. this.btnBoard18_loop0 = new System.Windows.Forms.Button();
  112. this.btnBoard38_loop0 = new System.Windows.Forms.Button();
  113. this.btnBoard58_loop0 = new System.Windows.Forms.Button();
  114. this.btnBoard14_loop0 = new System.Windows.Forms.Button();
  115. this.btnBoard34_loop0 = new System.Windows.Forms.Button();
  116. this.btnBoard54_loop0 = new System.Windows.Forms.Button();
  117. this.btnBoard22_loop0 = new System.Windows.Forms.Button();
  118. this.btnBoard42_loop0 = new System.Windows.Forms.Button();
  119. this.btnBoard62_loop0 = new System.Windows.Forms.Button();
  120. this.btnBoard26_loop0 = new System.Windows.Forms.Button();
  121. this.btnBoard46_loop0 = new System.Windows.Forms.Button();
  122. this.btnBoard11_loop0 = new System.Windows.Forms.Button();
  123. this.btnBoard31_loop0 = new System.Windows.Forms.Button();
  124. this.btnBoard51_loop0 = new System.Windows.Forms.Button();
  125. this.btnBoard19_loop0 = new System.Windows.Forms.Button();
  126. this.btnBoard39_loop0 = new System.Windows.Forms.Button();
  127. this.btnBoard59_loop0 = new System.Windows.Forms.Button();
  128. this.btnBoard15_loop0 = new System.Windows.Forms.Button();
  129. this.btnBoard35_loop0 = new System.Windows.Forms.Button();
  130. this.btnBoard55_loop0 = new System.Windows.Forms.Button();
  131. this.btnBoard23_loop0 = new System.Windows.Forms.Button();
  132. this.btnBoard43_loop0 = new System.Windows.Forms.Button();
  133. this.btnBoard63_loop0 = new System.Windows.Forms.Button();
  134. this.btnBoard27_loop0 = new System.Windows.Forms.Button();
  135. this.btnBoard47_loop0 = new System.Windows.Forms.Button();
  136. this.btnBoard12_loop0 = new System.Windows.Forms.Button();
  137. this.btnBoard32_loop0 = new System.Windows.Forms.Button();
  138. this.btnBoard52_loop0 = new System.Windows.Forms.Button();
  139. this.btnBoard20_loop0 = new System.Windows.Forms.Button();
  140. this.btnBoard40_loop0 = new System.Windows.Forms.Button();
  141. this.btnBoard60_loop0 = new System.Windows.Forms.Button();
  142. this.btnBoard16_loop0 = new System.Windows.Forms.Button();
  143. this.btnBoard36_loop0 = new System.Windows.Forms.Button();
  144. this.btnBoard56_loop0 = new System.Windows.Forms.Button();
  145. this.btnBoard24_loop0 = new System.Windows.Forms.Button();
  146. this.btnBoard44_loop0 = new System.Windows.Forms.Button();
  147. this.btnBoard64_loop0 = new System.Windows.Forms.Button();
  148. this.btnBoard28_loop0 = new System.Windows.Forms.Button();
  149. this.btnBoard48_loop0 = new System.Windows.Forms.Button();
  150. this.lbl_COMM33 = new System.Windows.Forms.Label();
  151. this.btnBoard9_loop2 = new System.Windows.Forms.Button();
  152. this.btnBoard29_loop2 = new System.Windows.Forms.Button();
  153. this.btnBoard49_loop2 = new System.Windows.Forms.Button();
  154. this.btnBoard17_loop2 = new System.Windows.Forms.Button();
  155. this.btnBoard37_loop2 = new System.Windows.Forms.Button();
  156. this.btnBoard57_loop2 = new System.Windows.Forms.Button();
  157. this.btnBoard13_loop2 = new System.Windows.Forms.Button();
  158. this.btnBoard33_loop2 = new System.Windows.Forms.Button();
  159. this.btnBoard53_loop2 = new System.Windows.Forms.Button();
  160. this.btnBoard21_loop2 = new System.Windows.Forms.Button();
  161. this.btnBoard41_loop2 = new System.Windows.Forms.Button();
  162. this.btnBoard61_loop2 = new System.Windows.Forms.Button();
  163. this.btnBoard25_loop2 = new System.Windows.Forms.Button();
  164. this.btnBoard45_loop2 = new System.Windows.Forms.Button();
  165. this.btnBoard10_loop2 = new System.Windows.Forms.Button();
  166. this.btnBoard30_loop2 = new System.Windows.Forms.Button();
  167. this.btnBoard50_loop2 = new System.Windows.Forms.Button();
  168. this.btnBoard18_loop2 = new System.Windows.Forms.Button();
  169. this.btnBoard38_loop2 = new System.Windows.Forms.Button();
  170. this.btnBoard58_loop2 = new System.Windows.Forms.Button();
  171. this.btnBoard14_loop2 = new System.Windows.Forms.Button();
  172. this.btnBoard34_loop2 = new System.Windows.Forms.Button();
  173. this.btnBoard54_loop2 = new System.Windows.Forms.Button();
  174. this.btnBoard22_loop2 = new System.Windows.Forms.Button();
  175. this.btnBoard42_loop2 = new System.Windows.Forms.Button();
  176. this.btnBoard62_loop2 = new System.Windows.Forms.Button();
  177. this.btnBoard26_loop2 = new System.Windows.Forms.Button();
  178. this.btnBoard46_loop2 = new System.Windows.Forms.Button();
  179. this.btnBoard11_loop2 = new System.Windows.Forms.Button();
  180. this.btnBoard31_loop2 = new System.Windows.Forms.Button();
  181. this.btnBoard51_loop2 = new System.Windows.Forms.Button();
  182. this.btnBoard19_loop2 = new System.Windows.Forms.Button();
  183. this.btnBoard39_loop2 = new System.Windows.Forms.Button();
  184. this.btnBoard59_loop2 = new System.Windows.Forms.Button();
  185. this.btnBoard15_loop2 = new System.Windows.Forms.Button();
  186. this.btnBoard35_loop2 = new System.Windows.Forms.Button();
  187. this.btnBoard55_loop2 = new System.Windows.Forms.Button();
  188. this.btnBoard23_loop2 = new System.Windows.Forms.Button();
  189. this.btnBoard43_loop2 = new System.Windows.Forms.Button();
  190. this.btnBoard63_loop2 = new System.Windows.Forms.Button();
  191. this.btnBoard27_loop2 = new System.Windows.Forms.Button();
  192. this.btnBoard47_loop2 = new System.Windows.Forms.Button();
  193. this.btnBoard12_loop2 = new System.Windows.Forms.Button();
  194. this.btnBoard32_loop2 = new System.Windows.Forms.Button();
  195. this.btnBoard52_loop2 = new System.Windows.Forms.Button();
  196. this.btnBoard20_loop2 = new System.Windows.Forms.Button();
  197. this.btnBoard40_loop2 = new System.Windows.Forms.Button();
  198. this.btnBoard60_loop2 = new System.Windows.Forms.Button();
  199. this.btnBoard16_loop2 = new System.Windows.Forms.Button();
  200. this.btnBoard36_loop2 = new System.Windows.Forms.Button();
  201. this.btnBoard56_loop2 = new System.Windows.Forms.Button();
  202. this.btnBoard24_loop2 = new System.Windows.Forms.Button();
  203. this.btnBoard44_loop2 = new System.Windows.Forms.Button();
  204. this.btnBoard64_loop2 = new System.Windows.Forms.Button();
  205. this.btnBoard28_loop2 = new System.Windows.Forms.Button();
  206. this.btnBoard48_loop2 = new System.Windows.Forms.Button();
  207. this.lbl_COMM53 = new System.Windows.Forms.Label();
  208. this.lbl_COMM18 = new System.Windows.Forms.Label();
  209. this.lbl_COMM38 = new System.Windows.Forms.Label();
  210. this.lbl_COMM58 = new System.Windows.Forms.Label();
  211. this.lbl_COMM14 = new System.Windows.Forms.Label();
  212. this.lbl_COMM34 = new System.Windows.Forms.Label();
  213. this.btnBoard9_loop1 = new System.Windows.Forms.Button();
  214. this.btnBoard29_loop1 = new System.Windows.Forms.Button();
  215. this.btnBoard49_loop1 = new System.Windows.Forms.Button();
  216. this.btnBoard17_loop1 = new System.Windows.Forms.Button();
  217. this.btnBoard37_loop1 = new System.Windows.Forms.Button();
  218. this.btnBoard57_loop1 = new System.Windows.Forms.Button();
  219. this.btnBoard13_loop1 = new System.Windows.Forms.Button();
  220. this.btnBoard33_loop1 = new System.Windows.Forms.Button();
  221. this.btnBoard53_loop1 = new System.Windows.Forms.Button();
  222. this.btnBoard21_loop1 = new System.Windows.Forms.Button();
  223. this.btnBoard41_loop1 = new System.Windows.Forms.Button();
  224. this.btnBoard61_loop1 = new System.Windows.Forms.Button();
  225. this.btnBoard25_loop1 = new System.Windows.Forms.Button();
  226. this.btnBoard45_loop1 = new System.Windows.Forms.Button();
  227. this.btnBoard10_loop1 = new System.Windows.Forms.Button();
  228. this.btnBoard30_loop1 = new System.Windows.Forms.Button();
  229. this.btnBoard50_loop1 = new System.Windows.Forms.Button();
  230. this.btnBoard18_loop1 = new System.Windows.Forms.Button();
  231. this.btnBoard38_loop1 = new System.Windows.Forms.Button();
  232. this.btnBoard58_loop1 = new System.Windows.Forms.Button();
  233. this.btnBoard14_loop1 = new System.Windows.Forms.Button();
  234. this.btnBoard34_loop1 = new System.Windows.Forms.Button();
  235. this.btnBoard54_loop1 = new System.Windows.Forms.Button();
  236. this.btnBoard22_loop1 = new System.Windows.Forms.Button();
  237. this.btnBoard42_loop1 = new System.Windows.Forms.Button();
  238. this.btnBoard62_loop1 = new System.Windows.Forms.Button();
  239. this.btnBoard26_loop1 = new System.Windows.Forms.Button();
  240. this.btnBoard46_loop1 = new System.Windows.Forms.Button();
  241. this.btnBoard11_loop1 = new System.Windows.Forms.Button();
  242. this.btnBoard31_loop1 = new System.Windows.Forms.Button();
  243. this.btnBoard51_loop1 = new System.Windows.Forms.Button();
  244. this.btnBoard19_loop1 = new System.Windows.Forms.Button();
  245. this.btnBoard39_loop1 = new System.Windows.Forms.Button();
  246. this.btnBoard59_loop1 = new System.Windows.Forms.Button();
  247. this.btnBoard15_loop1 = new System.Windows.Forms.Button();
  248. this.btnBoard35_loop1 = new System.Windows.Forms.Button();
  249. this.btnBoard55_loop1 = new System.Windows.Forms.Button();
  250. this.btnBoard23_loop1 = new System.Windows.Forms.Button();
  251. this.btnBoard43_loop1 = new System.Windows.Forms.Button();
  252. this.btnBoard63_loop1 = new System.Windows.Forms.Button();
  253. this.btnBoard27_loop1 = new System.Windows.Forms.Button();
  254. this.btnBoard47_loop1 = new System.Windows.Forms.Button();
  255. this.btnBoard12_loop1 = new System.Windows.Forms.Button();
  256. this.btnBoard32_loop1 = new System.Windows.Forms.Button();
  257. this.btnBoard52_loop1 = new System.Windows.Forms.Button();
  258. this.btnBoard20_loop1 = new System.Windows.Forms.Button();
  259. this.btnBoard40_loop1 = new System.Windows.Forms.Button();
  260. this.btnBoard60_loop1 = new System.Windows.Forms.Button();
  261. this.btnBoard16_loop1 = new System.Windows.Forms.Button();
  262. this.btnBoard36_loop1 = new System.Windows.Forms.Button();
  263. this.btnBoard56_loop1 = new System.Windows.Forms.Button();
  264. this.btnBoard24_loop1 = new System.Windows.Forms.Button();
  265. this.btnBoard44_loop1 = new System.Windows.Forms.Button();
  266. this.btnBoard64_loop1 = new System.Windows.Forms.Button();
  267. this.btnBoard28_loop1 = new System.Windows.Forms.Button();
  268. this.btnBoard48_loop1 = new System.Windows.Forms.Button();
  269. this.btnBoard9_loop3 = new System.Windows.Forms.Button();
  270. this.btnBoard29_loop3 = new System.Windows.Forms.Button();
  271. this.btnBoard49_loop3 = new System.Windows.Forms.Button();
  272. this.btnBoard17_loop3 = new System.Windows.Forms.Button();
  273. this.btnBoard37_loop3 = new System.Windows.Forms.Button();
  274. this.btnBoard57_loop3 = new System.Windows.Forms.Button();
  275. this.btnBoard13_loop3 = new System.Windows.Forms.Button();
  276. this.btnBoard33_loop3 = new System.Windows.Forms.Button();
  277. this.btnBoard53_loop3 = new System.Windows.Forms.Button();
  278. this.btnBoard21_loop3 = new System.Windows.Forms.Button();
  279. this.btnBoard41_loop3 = new System.Windows.Forms.Button();
  280. this.btnBoard61_loop3 = new System.Windows.Forms.Button();
  281. this.btnBoard25_loop3 = new System.Windows.Forms.Button();
  282. this.btnBoard45_loop3 = new System.Windows.Forms.Button();
  283. this.btnBoard10_loop3 = new System.Windows.Forms.Button();
  284. this.btnBoard30_loop3 = new System.Windows.Forms.Button();
  285. this.btnBoard50_loop3 = new System.Windows.Forms.Button();
  286. this.btnBoard18_loop3 = new System.Windows.Forms.Button();
  287. this.btnBoard38_loop3 = new System.Windows.Forms.Button();
  288. this.btnBoard58_loop3 = new System.Windows.Forms.Button();
  289. this.btnBoard14_loop3 = new System.Windows.Forms.Button();
  290. this.btnBoard34_loop3 = new System.Windows.Forms.Button();
  291. this.btnBoard54_loop3 = new System.Windows.Forms.Button();
  292. this.btnBoard22_loop3 = new System.Windows.Forms.Button();
  293. this.btnBoard42_loop3 = new System.Windows.Forms.Button();
  294. this.btnBoard62_loop3 = new System.Windows.Forms.Button();
  295. this.btnBoard26_loop3 = new System.Windows.Forms.Button();
  296. this.btnBoard46_loop3 = new System.Windows.Forms.Button();
  297. this.btnBoard11_loop3 = new System.Windows.Forms.Button();
  298. this.btnBoard31_loop3 = new System.Windows.Forms.Button();
  299. this.btnBoard51_loop3 = new System.Windows.Forms.Button();
  300. this.btnBoard19_loop3 = new System.Windows.Forms.Button();
  301. this.btnBoard39_loop3 = new System.Windows.Forms.Button();
  302. this.btnBoard59_loop3 = new System.Windows.Forms.Button();
  303. this.btnBoard15_loop3 = new System.Windows.Forms.Button();
  304. this.btnBoard35_loop3 = new System.Windows.Forms.Button();
  305. this.btnBoard55_loop3 = new System.Windows.Forms.Button();
  306. this.btnBoard23_loop3 = new System.Windows.Forms.Button();
  307. this.btnBoard43_loop3 = new System.Windows.Forms.Button();
  308. this.btnBoard63_loop3 = new System.Windows.Forms.Button();
  309. this.btnBoard27_loop3 = new System.Windows.Forms.Button();
  310. this.btnBoard47_loop3 = new System.Windows.Forms.Button();
  311. this.btnBoard12_loop3 = new System.Windows.Forms.Button();
  312. this.btnBoard32_loop3 = new System.Windows.Forms.Button();
  313. this.btnBoard52_loop3 = new System.Windows.Forms.Button();
  314. this.btnBoard20_loop3 = new System.Windows.Forms.Button();
  315. this.btnBoard40_loop3 = new System.Windows.Forms.Button();
  316. this.btnBoard60_loop3 = new System.Windows.Forms.Button();
  317. this.btnBoard2_loop1 = new System.Windows.Forms.Button();
  318. this.btnBoard16_loop3 = new System.Windows.Forms.Button();
  319. this.btnBoard3_loop1 = new System.Windows.Forms.Button();
  320. this.btnBoard36_loop3 = new System.Windows.Forms.Button();
  321. this.btnBoard56_loop3 = new System.Windows.Forms.Button();
  322. this.btnBoard1_loop1 = new System.Windows.Forms.Button();
  323. this.btnBoard24_loop3 = new System.Windows.Forms.Button();
  324. this.btnBoard44_loop3 = new System.Windows.Forms.Button();
  325. this.btnBoard64_loop3 = new System.Windows.Forms.Button();
  326. this.btnBoard3_loop0 = new System.Windows.Forms.Button();
  327. this.btnBoard28_loop3 = new System.Windows.Forms.Button();
  328. this.btnBoard48_loop3 = new System.Windows.Forms.Button();
  329. this.btnBoard2_loop0 = new System.Windows.Forms.Button();
  330. this.lbl_COMM54 = new System.Windows.Forms.Label();
  331. this.lbl_COMM19 = new System.Windows.Forms.Label();
  332. this.btnBoard5_loop0 = new System.Windows.Forms.Button();
  333. this.btnBoard1_loop0 = new System.Windows.Forms.Button();
  334. this.btnBoard6_loop0 = new System.Windows.Forms.Button();
  335. this.lbl_COMM39 = new System.Windows.Forms.Label();
  336. this.lbl_COMM6 = new System.Windows.Forms.Label();
  337. this.lbl_COMM3 = new System.Windows.Forms.Label();
  338. this.lbl_COMM5 = new System.Windows.Forms.Label();
  339. this.lbl_COMM59 = new System.Windows.Forms.Label();
  340. this.lbl_COMM4 = new System.Windows.Forms.Label();
  341. this.btnBoard4_loop0 = new System.Windows.Forms.Button();
  342. this.lbl_COMM15 = new System.Windows.Forms.Label();
  343. this.lbl_COMM2 = new System.Windows.Forms.Label();
  344. this.btnBoard1_loop2 = new System.Windows.Forms.Button();
  345. this.label9 = new System.Windows.Forms.Label();
  346. this.btnBoard4_loop1 = new System.Windows.Forms.Button();
  347. this.lbl_COMM35 = new System.Windows.Forms.Label();
  348. this.lbl_COMM55 = new System.Windows.Forms.Label();
  349. this.lbl_COMM7 = new System.Windows.Forms.Label();
  350. this.btnBoard5_loop1 = new System.Windows.Forms.Button();
  351. this.lbl_COMM8 = new System.Windows.Forms.Label();
  352. this.label10 = new System.Windows.Forms.Label();
  353. this.btnBoard7_loop0 = new System.Windows.Forms.Button();
  354. this.btnBoard6_loop1 = new System.Windows.Forms.Button();
  355. this.btnBoard8_loop0 = new System.Windows.Forms.Button();
  356. this.lbl_COMM1 = new System.Windows.Forms.Label();
  357. this.btnBoard7_loop1 = new System.Windows.Forms.Button();
  358. this.btnBoard1_loop3 = new System.Windows.Forms.Button();
  359. this.btnBoard8_loop1 = new System.Windows.Forms.Button();
  360. this.btnBoard2_loop2 = new System.Windows.Forms.Button();
  361. this.btnBoard2_loop3 = new System.Windows.Forms.Button();
  362. this.btnBoard3_loop2 = new System.Windows.Forms.Button();
  363. this.btnBoard3_loop3 = new System.Windows.Forms.Button();
  364. this.btnBoard4_loop2 = new System.Windows.Forms.Button();
  365. this.btnBoard4_loop3 = new System.Windows.Forms.Button();
  366. this.btnBoard5_loop2 = new System.Windows.Forms.Button();
  367. this.btnBoard5_loop3 = new System.Windows.Forms.Button();
  368. this.btnBoard6_loop2 = new System.Windows.Forms.Button();
  369. this.btnBoard6_loop3 = new System.Windows.Forms.Button();
  370. this.btnBoard7_loop2 = new System.Windows.Forms.Button();
  371. this.btnBoard7_loop3 = new System.Windows.Forms.Button();
  372. this.btnBoard8_loop2 = new System.Windows.Forms.Button();
  373. this.btnBoard8_loop3 = new System.Windows.Forms.Button();
  374. this.label2 = new System.Windows.Forms.Label();
  375. this.label1 = new System.Windows.Forms.Label();
  376. this.groupBox2 = new System.Windows.Forms.GroupBox();
  377. this.panel1.SuspendLayout();
  378. this.groupBox2.SuspendLayout();
  379. this.SuspendLayout();
  380. //
  381. // txtThisReceiverID
  382. //
  383. this.txtThisReceiverID.BackColor = System.Drawing.Color.Black;
  384. this.txtThisReceiverID.Font = new System.Drawing.Font("굴림", 20F, System.Drawing.FontStyle.Bold);
  385. this.txtThisReceiverID.ForeColor = System.Drawing.Color.White;
  386. this.txtThisReceiverID.Location = new System.Drawing.Point(133, 58);
  387. this.txtThisReceiverID.MaxLength = 2;
  388. this.txtThisReceiverID.Name = "txtThisReceiverID";
  389. this.txtThisReceiverID.ReadOnly = true;
  390. this.txtThisReceiverID.Size = new System.Drawing.Size(39, 38);
  391. this.txtThisReceiverID.TabIndex = 153;
  392. this.txtThisReceiverID.Text = "01";
  393. this.txtThisReceiverID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  394. //
  395. // imageList1
  396. //
  397. this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
  398. this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
  399. this.imageList1.Images.SetKeyName(0, "통신보드_비사용.gif");
  400. this.imageList1.Images.SetKeyName(1, "통신보드_정상.gif");
  401. this.imageList1.Images.SetKeyName(2, "통신보드_이상.gif");
  402. //
  403. // btnCommand
  404. //
  405. this.btnCommand.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnCommand.BackgroundImage")));
  406. this.btnCommand.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  407. this.btnCommand.FlatAppearance.BorderSize = 0;
  408. this.btnCommand.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  409. this.btnCommand.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold);
  410. this.btnCommand.ForeColor = System.Drawing.Color.White;
  411. this.btnCommand.Location = new System.Drawing.Point(883, 57);
  412. this.btnCommand.Name = "btnCommand";
  413. this.btnCommand.Size = new System.Drawing.Size(183, 40);
  414. this.btnCommand.TabIndex = 155;
  415. this.btnCommand.Text = "읽기명령";
  416. this.btnCommand.UseVisualStyleBackColor = true;
  417. this.btnCommand.Visible = false;
  418. this.btnCommand.Click += new System.EventHandler(this.btnCommand_Click);
  419. //
  420. // button3
  421. //
  422. this.button3.BackColor = System.Drawing.Color.LightGray;
  423. this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
  424. this.button3.FlatAppearance.BorderSize = 0;
  425. this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  426. this.button3.Location = new System.Drawing.Point(15, 58);
  427. this.button3.Name = "button3";
  428. this.button3.Size = new System.Drawing.Size(117, 37);
  429. this.button3.TabIndex = 154;
  430. this.button3.UseVisualStyleBackColor = false;
  431. //
  432. // panel1
  433. //
  434. this.panel1.BackColor = System.Drawing.Color.Black;
  435. this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
  436. this.panel1.Controls.Add(this.btnWinClose);
  437. this.panel1.Controls.Add(this.lblDir);
  438. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  439. this.panel1.Location = new System.Drawing.Point(0, 0);
  440. this.panel1.Name = "panel1";
  441. this.panel1.Size = new System.Drawing.Size(1080, 36);
  442. this.panel1.TabIndex = 10;
  443. //
  444. // btnWinClose
  445. //
  446. this.btnWinClose.BackgroundImage = global::FPER.Properties.Resources.버튼_폼닫기_63_31;
  447. this.btnWinClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  448. this.btnWinClose.FlatAppearance.BorderSize = 0;
  449. this.btnWinClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  450. this.btnWinClose.Font = new System.Drawing.Font("굴림", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  451. this.btnWinClose.Location = new System.Drawing.Point(1003, 1);
  452. this.btnWinClose.Name = "btnWinClose";
  453. this.btnWinClose.Size = new System.Drawing.Size(63, 31);
  454. this.btnWinClose.TabIndex = 171;
  455. this.btnWinClose.UseVisualStyleBackColor = false;
  456. this.btnWinClose.Click += new System.EventHandler(this.btnWinClose_Click);
  457. //
  458. // lblDir
  459. //
  460. this.lblDir.AutoSize = true;
  461. this.lblDir.BackColor = System.Drawing.Color.Transparent;
  462. this.lblDir.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold);
  463. this.lblDir.ForeColor = System.Drawing.Color.Black;
  464. this.lblDir.Location = new System.Drawing.Point(12, 9);
  465. this.lblDir.Name = "lblDir";
  466. this.lblDir.Size = new System.Drawing.Size(247, 21);
  467. this.lblDir.TabIndex = 10;
  468. this.lblDir.Text = "시작 > 중계반 상태보기";
  469. //
  470. // panel_Temp
  471. //
  472. this.panel_Temp.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(185)))), ((int)(((byte)(211)))), ((int)(((byte)(228)))));
  473. this.panel_Temp.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Temp.BackgroundImage")));
  474. this.panel_Temp.Location = new System.Drawing.Point(0, 33);
  475. this.panel_Temp.Margin = new System.Windows.Forms.Padding(0);
  476. this.panel_Temp.Name = "panel_Temp";
  477. this.panel_Temp.Size = new System.Drawing.Size(1080, 88);
  478. this.panel_Temp.TabIndex = 232;
  479. //
  480. // imageList_Loop
  481. //
  482. this.imageList_Loop.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_Loop.ImageStream")));
  483. this.imageList_Loop.TransparentColor = System.Drawing.Color.Transparent;
  484. this.imageList_Loop.Images.SetKeyName(0, "중계반_내용_짙은회색_95_45.JPG");
  485. this.imageList_Loop.Images.SetKeyName(1, "중계반_내용_파랑_95_45.JPG");
  486. this.imageList_Loop.Images.SetKeyName(2, "중계반_내용_빨강_95_45.JPG");
  487. this.imageList_Loop.Images.SetKeyName(3, "중계반_내용_얕은회색_95_45.JPG");
  488. //
  489. // imageList_RepeaterBoard
  490. //
  491. this.imageList_RepeaterBoard.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_RepeaterBoard.ImageStream")));
  492. this.imageList_RepeaterBoard.TransparentColor = System.Drawing.Color.Transparent;
  493. this.imageList_RepeaterBoard.Images.SetKeyName(0, "중계반_헤더_짙은회색_103_177.JPG");
  494. this.imageList_RepeaterBoard.Images.SetKeyName(1, "중계반_헤더_파랑_103_177.JPG");
  495. this.imageList_RepeaterBoard.Images.SetKeyName(2, "중계반_헤더_빨강_103_177.jpg");
  496. this.imageList_RepeaterBoard.Images.SetKeyName(3, "중계반_배경_옅은회색_가운데_103_177.JPG");
  497. //
  498. // lbl_COMM26
  499. //
  500. this.lbl_COMM26.AutoSize = true;
  501. this.lbl_COMM26.Font = new System.Drawing.Font("굴림", 10F);
  502. this.lbl_COMM26.Location = new System.Drawing.Point(285, 213);
  503. this.lbl_COMM26.Name = "lbl_COMM26";
  504. this.lbl_COMM26.Size = new System.Drawing.Size(70, 14);
  505. this.lbl_COMM26.TabIndex = 256;
  506. this.lbl_COMM26.Text = "중계반 26";
  507. //
  508. // lbl_COMM21
  509. //
  510. this.lbl_COMM21.AutoSize = true;
  511. this.lbl_COMM21.Font = new System.Drawing.Font("굴림", 10F);
  512. this.lbl_COMM21.Location = new System.Drawing.Point(285, 73);
  513. this.lbl_COMM21.Name = "lbl_COMM21";
  514. this.lbl_COMM21.Size = new System.Drawing.Size(70, 14);
  515. this.lbl_COMM21.TabIndex = 253;
  516. this.lbl_COMM21.Text = "중계반 21";
  517. //
  518. // lbl_COMM46
  519. //
  520. this.lbl_COMM46.AutoSize = true;
  521. this.lbl_COMM46.Font = new System.Drawing.Font("굴림", 10F);
  522. this.lbl_COMM46.Location = new System.Drawing.Point(555, 213);
  523. this.lbl_COMM46.Name = "lbl_COMM46";
  524. this.lbl_COMM46.Size = new System.Drawing.Size(70, 14);
  525. this.lbl_COMM46.TabIndex = 252;
  526. this.lbl_COMM46.Text = "중계반 46";
  527. //
  528. // lbl_COMM41
  529. //
  530. this.lbl_COMM41.AutoSize = true;
  531. this.lbl_COMM41.Font = new System.Drawing.Font("굴림", 10F);
  532. this.lbl_COMM41.Location = new System.Drawing.Point(555, 73);
  533. this.lbl_COMM41.Name = "lbl_COMM41";
  534. this.lbl_COMM41.Size = new System.Drawing.Size(70, 14);
  535. this.lbl_COMM41.TabIndex = 255;
  536. this.lbl_COMM41.Text = "중계반 41";
  537. //
  538. // lbl_COMM61
  539. //
  540. this.lbl_COMM61.AutoSize = true;
  541. this.lbl_COMM61.Font = new System.Drawing.Font("굴림", 10F);
  542. this.lbl_COMM61.Location = new System.Drawing.Point(825, 73);
  543. this.lbl_COMM61.Name = "lbl_COMM61";
  544. this.lbl_COMM61.Size = new System.Drawing.Size(70, 14);
  545. this.lbl_COMM61.TabIndex = 254;
  546. this.lbl_COMM61.Text = "중계반 61";
  547. //
  548. // lbl_COMM27
  549. //
  550. this.lbl_COMM27.AutoSize = true;
  551. this.lbl_COMM27.Font = new System.Drawing.Font("굴림", 10F);
  552. this.lbl_COMM27.Location = new System.Drawing.Point(285, 241);
  553. this.lbl_COMM27.Name = "lbl_COMM27";
  554. this.lbl_COMM27.Size = new System.Drawing.Size(70, 14);
  555. this.lbl_COMM27.TabIndex = 292;
  556. this.lbl_COMM27.Text = "중계반 27";
  557. //
  558. // lbl_COMM47
  559. //
  560. this.lbl_COMM47.AutoSize = true;
  561. this.lbl_COMM47.Font = new System.Drawing.Font("굴림", 10F);
  562. this.lbl_COMM47.Location = new System.Drawing.Point(555, 241);
  563. this.lbl_COMM47.Name = "lbl_COMM47";
  564. this.lbl_COMM47.Size = new System.Drawing.Size(70, 14);
  565. this.lbl_COMM47.TabIndex = 293;
  566. this.lbl_COMM47.Text = "중계반 47";
  567. //
  568. // lbl_COMM25
  569. //
  570. this.lbl_COMM25.AutoSize = true;
  571. this.lbl_COMM25.Font = new System.Drawing.Font("굴림", 10F);
  572. this.lbl_COMM25.Location = new System.Drawing.Point(285, 185);
  573. this.lbl_COMM25.Name = "lbl_COMM25";
  574. this.lbl_COMM25.Size = new System.Drawing.Size(70, 14);
  575. this.lbl_COMM25.TabIndex = 219;
  576. this.lbl_COMM25.Text = "중계반 25";
  577. //
  578. // lbl_COMM45
  579. //
  580. this.lbl_COMM45.AutoSize = true;
  581. this.lbl_COMM45.Font = new System.Drawing.Font("굴림", 10F);
  582. this.lbl_COMM45.Location = new System.Drawing.Point(555, 185);
  583. this.lbl_COMM45.Name = "lbl_COMM45";
  584. this.lbl_COMM45.Size = new System.Drawing.Size(70, 14);
  585. this.lbl_COMM45.TabIndex = 218;
  586. this.lbl_COMM45.Text = "중계반 45";
  587. //
  588. // lbl_COMM22
  589. //
  590. this.lbl_COMM22.AutoSize = true;
  591. this.lbl_COMM22.Font = new System.Drawing.Font("굴림", 10F);
  592. this.lbl_COMM22.Location = new System.Drawing.Point(285, 101);
  593. this.lbl_COMM22.Name = "lbl_COMM22";
  594. this.lbl_COMM22.Size = new System.Drawing.Size(70, 14);
  595. this.lbl_COMM22.TabIndex = 291;
  596. this.lbl_COMM22.Text = "중계반 22";
  597. //
  598. // lbl_COMM42
  599. //
  600. this.lbl_COMM42.AutoSize = true;
  601. this.lbl_COMM42.Font = new System.Drawing.Font("굴림", 10F);
  602. this.lbl_COMM42.Location = new System.Drawing.Point(555, 101);
  603. this.lbl_COMM42.Name = "lbl_COMM42";
  604. this.lbl_COMM42.Size = new System.Drawing.Size(70, 14);
  605. this.lbl_COMM42.TabIndex = 289;
  606. this.lbl_COMM42.Text = "중계반 42";
  607. //
  608. // lbl_COMM62
  609. //
  610. this.lbl_COMM62.AutoSize = true;
  611. this.lbl_COMM62.Font = new System.Drawing.Font("굴림", 10F);
  612. this.lbl_COMM62.Location = new System.Drawing.Point(825, 101);
  613. this.lbl_COMM62.Name = "lbl_COMM62";
  614. this.lbl_COMM62.Size = new System.Drawing.Size(70, 14);
  615. this.lbl_COMM62.TabIndex = 290;
  616. this.lbl_COMM62.Text = "중계반 62";
  617. //
  618. // lbl_COMM20
  619. //
  620. this.lbl_COMM20.AutoSize = true;
  621. this.lbl_COMM20.Font = new System.Drawing.Font("굴림", 10F);
  622. this.lbl_COMM20.Location = new System.Drawing.Point(15, 605);
  623. this.lbl_COMM20.Name = "lbl_COMM20";
  624. this.lbl_COMM20.Size = new System.Drawing.Size(70, 14);
  625. this.lbl_COMM20.TabIndex = 220;
  626. this.lbl_COMM20.Text = "중계반 20";
  627. //
  628. // lbl_COMM40
  629. //
  630. this.lbl_COMM40.AutoSize = true;
  631. this.lbl_COMM40.Font = new System.Drawing.Font("굴림", 10F);
  632. this.lbl_COMM40.Location = new System.Drawing.Point(285, 605);
  633. this.lbl_COMM40.Name = "lbl_COMM40";
  634. this.lbl_COMM40.Size = new System.Drawing.Size(70, 14);
  635. this.lbl_COMM40.TabIndex = 217;
  636. this.lbl_COMM40.Text = "중계반 40";
  637. //
  638. // lbl_COMM60
  639. //
  640. this.lbl_COMM60.AutoSize = true;
  641. this.lbl_COMM60.Font = new System.Drawing.Font("굴림", 10F);
  642. this.lbl_COMM60.Location = new System.Drawing.Point(555, 605);
  643. this.lbl_COMM60.Name = "lbl_COMM60";
  644. this.lbl_COMM60.Size = new System.Drawing.Size(70, 14);
  645. this.lbl_COMM60.TabIndex = 221;
  646. this.lbl_COMM60.Text = "중계반 60";
  647. //
  648. // lbl_COMM28
  649. //
  650. this.lbl_COMM28.AutoSize = true;
  651. this.lbl_COMM28.Font = new System.Drawing.Font("굴림", 10F);
  652. this.lbl_COMM28.Location = new System.Drawing.Point(285, 269);
  653. this.lbl_COMM28.Name = "lbl_COMM28";
  654. this.lbl_COMM28.Size = new System.Drawing.Size(70, 14);
  655. this.lbl_COMM28.TabIndex = 328;
  656. this.lbl_COMM28.Text = "중계반 28";
  657. //
  658. // lbl_COMM48
  659. //
  660. this.lbl_COMM48.AutoSize = true;
  661. this.lbl_COMM48.Font = new System.Drawing.Font("굴림", 10F);
  662. this.lbl_COMM48.Location = new System.Drawing.Point(555, 269);
  663. this.lbl_COMM48.Name = "lbl_COMM48";
  664. this.lbl_COMM48.Size = new System.Drawing.Size(70, 14);
  665. this.lbl_COMM48.TabIndex = 329;
  666. this.lbl_COMM48.Text = "중계반 48";
  667. //
  668. // lbl_COMM23
  669. //
  670. this.lbl_COMM23.AutoSize = true;
  671. this.lbl_COMM23.Font = new System.Drawing.Font("굴림", 10F);
  672. this.lbl_COMM23.Location = new System.Drawing.Point(285, 129);
  673. this.lbl_COMM23.Name = "lbl_COMM23";
  674. this.lbl_COMM23.Size = new System.Drawing.Size(70, 14);
  675. this.lbl_COMM23.TabIndex = 327;
  676. this.lbl_COMM23.Text = "중계반 23";
  677. //
  678. // lbl_COMM43
  679. //
  680. this.lbl_COMM43.AutoSize = true;
  681. this.lbl_COMM43.Font = new System.Drawing.Font("굴림", 10F);
  682. this.lbl_COMM43.Location = new System.Drawing.Point(555, 129);
  683. this.lbl_COMM43.Name = "lbl_COMM43";
  684. this.lbl_COMM43.Size = new System.Drawing.Size(70, 14);
  685. this.lbl_COMM43.TabIndex = 324;
  686. this.lbl_COMM43.Text = "중계반 43";
  687. //
  688. // lbl_COMM63
  689. //
  690. this.lbl_COMM63.AutoSize = true;
  691. this.lbl_COMM63.Font = new System.Drawing.Font("굴림", 10F);
  692. this.lbl_COMM63.Location = new System.Drawing.Point(825, 129);
  693. this.lbl_COMM63.Name = "lbl_COMM63";
  694. this.lbl_COMM63.Size = new System.Drawing.Size(70, 14);
  695. this.lbl_COMM63.TabIndex = 325;
  696. this.lbl_COMM63.Text = "중계반 63";
  697. //
  698. // lbl_COMM9
  699. //
  700. this.lbl_COMM9.AutoSize = true;
  701. this.lbl_COMM9.Font = new System.Drawing.Font("굴림", 10F);
  702. this.lbl_COMM9.Location = new System.Drawing.Point(15, 297);
  703. this.lbl_COMM9.Name = "lbl_COMM9";
  704. this.lbl_COMM9.Size = new System.Drawing.Size(70, 14);
  705. this.lbl_COMM9.TabIndex = 369;
  706. this.lbl_COMM9.Text = "중계반 09";
  707. //
  708. // lbl_COMM29
  709. //
  710. this.lbl_COMM29.AutoSize = true;
  711. this.lbl_COMM29.Font = new System.Drawing.Font("굴림", 10F);
  712. this.lbl_COMM29.Location = new System.Drawing.Point(285, 297);
  713. this.lbl_COMM29.Name = "lbl_COMM29";
  714. this.lbl_COMM29.Size = new System.Drawing.Size(70, 14);
  715. this.lbl_COMM29.TabIndex = 370;
  716. this.lbl_COMM29.Text = "중계반 29";
  717. //
  718. // lbl_COMM49
  719. //
  720. this.lbl_COMM49.AutoSize = true;
  721. this.lbl_COMM49.Font = new System.Drawing.Font("굴림", 10F);
  722. this.lbl_COMM49.Location = new System.Drawing.Point(555, 297);
  723. this.lbl_COMM49.Name = "lbl_COMM49";
  724. this.lbl_COMM49.Size = new System.Drawing.Size(70, 14);
  725. this.lbl_COMM49.TabIndex = 371;
  726. this.lbl_COMM49.Text = "중계반 49";
  727. //
  728. // lbl_COMM24
  729. //
  730. this.lbl_COMM24.AutoSize = true;
  731. this.lbl_COMM24.Font = new System.Drawing.Font("굴림", 10F);
  732. this.lbl_COMM24.Location = new System.Drawing.Point(285, 157);
  733. this.lbl_COMM24.Name = "lbl_COMM24";
  734. this.lbl_COMM24.Size = new System.Drawing.Size(70, 14);
  735. this.lbl_COMM24.TabIndex = 368;
  736. this.lbl_COMM24.Text = "중계반 24";
  737. //
  738. // lbl_COMM44
  739. //
  740. this.lbl_COMM44.AutoSize = true;
  741. this.lbl_COMM44.Font = new System.Drawing.Font("굴림", 10F);
  742. this.lbl_COMM44.Location = new System.Drawing.Point(555, 157);
  743. this.lbl_COMM44.Name = "lbl_COMM44";
  744. this.lbl_COMM44.Size = new System.Drawing.Size(70, 14);
  745. this.lbl_COMM44.TabIndex = 365;
  746. this.lbl_COMM44.Text = "중계반 44";
  747. //
  748. // lbl_COMM64
  749. //
  750. this.lbl_COMM64.AutoSize = true;
  751. this.lbl_COMM64.Font = new System.Drawing.Font("굴림", 10F);
  752. this.lbl_COMM64.Location = new System.Drawing.Point(825, 157);
  753. this.lbl_COMM64.Name = "lbl_COMM64";
  754. this.lbl_COMM64.Size = new System.Drawing.Size(70, 14);
  755. this.lbl_COMM64.TabIndex = 366;
  756. this.lbl_COMM64.Text = "중계반 64";
  757. //
  758. // lbl_COMM10
  759. //
  760. this.lbl_COMM10.AutoSize = true;
  761. this.lbl_COMM10.Font = new System.Drawing.Font("굴림", 10F);
  762. this.lbl_COMM10.Location = new System.Drawing.Point(15, 325);
  763. this.lbl_COMM10.Name = "lbl_COMM10";
  764. this.lbl_COMM10.Size = new System.Drawing.Size(70, 14);
  765. this.lbl_COMM10.TabIndex = 388;
  766. this.lbl_COMM10.Text = "중계반 10";
  767. //
  768. // lbl_COMM30
  769. //
  770. this.lbl_COMM30.AutoSize = true;
  771. this.lbl_COMM30.Font = new System.Drawing.Font("굴림", 10F);
  772. this.lbl_COMM30.Location = new System.Drawing.Point(285, 325);
  773. this.lbl_COMM30.Name = "lbl_COMM30";
  774. this.lbl_COMM30.Size = new System.Drawing.Size(70, 14);
  775. this.lbl_COMM30.TabIndex = 387;
  776. this.lbl_COMM30.Text = "중계반 30";
  777. //
  778. // lbl_COMM50
  779. //
  780. this.lbl_COMM50.AutoSize = true;
  781. this.lbl_COMM50.Font = new System.Drawing.Font("굴림", 10F);
  782. this.lbl_COMM50.Location = new System.Drawing.Point(555, 325);
  783. this.lbl_COMM50.Name = "lbl_COMM50";
  784. this.lbl_COMM50.Size = new System.Drawing.Size(70, 14);
  785. this.lbl_COMM50.TabIndex = 389;
  786. this.lbl_COMM50.Text = "중계반 50";
  787. //
  788. // lbl_COMM11
  789. //
  790. this.lbl_COMM11.AutoSize = true;
  791. this.lbl_COMM11.Font = new System.Drawing.Font("굴림", 10F);
  792. this.lbl_COMM11.Location = new System.Drawing.Point(15, 353);
  793. this.lbl_COMM11.Name = "lbl_COMM11";
  794. this.lbl_COMM11.Size = new System.Drawing.Size(70, 14);
  795. this.lbl_COMM11.TabIndex = 420;
  796. this.lbl_COMM11.Text = "중계반 11";
  797. //
  798. // lbl_COMM31
  799. //
  800. this.lbl_COMM31.AutoSize = true;
  801. this.lbl_COMM31.Font = new System.Drawing.Font("굴림", 10F);
  802. this.lbl_COMM31.Location = new System.Drawing.Point(285, 353);
  803. this.lbl_COMM31.Name = "lbl_COMM31";
  804. this.lbl_COMM31.Size = new System.Drawing.Size(70, 14);
  805. this.lbl_COMM31.TabIndex = 421;
  806. this.lbl_COMM31.Text = "중계반 31";
  807. //
  808. // lbl_COMM51
  809. //
  810. this.lbl_COMM51.AutoSize = true;
  811. this.lbl_COMM51.Font = new System.Drawing.Font("굴림", 10F);
  812. this.lbl_COMM51.Location = new System.Drawing.Point(555, 353);
  813. this.lbl_COMM51.Name = "lbl_COMM51";
  814. this.lbl_COMM51.Size = new System.Drawing.Size(70, 14);
  815. this.lbl_COMM51.TabIndex = 422;
  816. this.lbl_COMM51.Text = "중계반 51";
  817. //
  818. // lbl_COMM16
  819. //
  820. this.lbl_COMM16.AutoSize = true;
  821. this.lbl_COMM16.Font = new System.Drawing.Font("굴림", 10F);
  822. this.lbl_COMM16.Location = new System.Drawing.Point(15, 493);
  823. this.lbl_COMM16.Name = "lbl_COMM16";
  824. this.lbl_COMM16.Size = new System.Drawing.Size(70, 14);
  825. this.lbl_COMM16.TabIndex = 424;
  826. this.lbl_COMM16.Text = "중계반 16";
  827. //
  828. // lbl_COMM36
  829. //
  830. this.lbl_COMM36.AutoSize = true;
  831. this.lbl_COMM36.Font = new System.Drawing.Font("굴림", 10F);
  832. this.lbl_COMM36.Location = new System.Drawing.Point(285, 493);
  833. this.lbl_COMM36.Name = "lbl_COMM36";
  834. this.lbl_COMM36.Size = new System.Drawing.Size(70, 14);
  835. this.lbl_COMM36.TabIndex = 423;
  836. this.lbl_COMM36.Text = "중계반 36";
  837. //
  838. // lbl_COMM56
  839. //
  840. this.lbl_COMM56.AutoSize = true;
  841. this.lbl_COMM56.Font = new System.Drawing.Font("굴림", 10F);
  842. this.lbl_COMM56.Location = new System.Drawing.Point(555, 493);
  843. this.lbl_COMM56.Name = "lbl_COMM56";
  844. this.lbl_COMM56.Size = new System.Drawing.Size(70, 14);
  845. this.lbl_COMM56.TabIndex = 425;
  846. this.lbl_COMM56.Text = "중계반 56";
  847. //
  848. // label5
  849. //
  850. this.label5.AutoSize = true;
  851. this.label5.Font = new System.Drawing.Font("굴림", 10F);
  852. this.label5.Location = new System.Drawing.Point(415, 38);
  853. this.label5.Name = "label5";
  854. this.label5.Size = new System.Drawing.Size(23, 14);
  855. this.label5.TabIndex = 188;
  856. this.label5.Text = "L1";
  857. //
  858. // label51
  859. //
  860. this.label51.AutoSize = true;
  861. this.label51.Font = new System.Drawing.Font("굴림", 10F);
  862. this.label51.Location = new System.Drawing.Point(685, 38);
  863. this.label51.Name = "label51";
  864. this.label51.Size = new System.Drawing.Size(23, 14);
  865. this.label51.TabIndex = 187;
  866. this.label51.Text = "L1";
  867. //
  868. // label77
  869. //
  870. this.label77.AutoSize = true;
  871. this.label77.Font = new System.Drawing.Font("굴림", 10F);
  872. this.label77.Location = new System.Drawing.Point(955, 38);
  873. this.label77.Name = "label77";
  874. this.label77.Size = new System.Drawing.Size(23, 14);
  875. this.label77.TabIndex = 186;
  876. this.label77.Text = "L1";
  877. //
  878. // label32
  879. //
  880. this.label32.AutoSize = true;
  881. this.label32.Font = new System.Drawing.Font("굴림", 10F);
  882. this.label32.Location = new System.Drawing.Point(475, 38);
  883. this.label32.Name = "label32";
  884. this.label32.Size = new System.Drawing.Size(23, 14);
  885. this.label32.TabIndex = 189;
  886. this.label32.Text = "L3";
  887. //
  888. // label52
  889. //
  890. this.label52.AutoSize = true;
  891. this.label52.Font = new System.Drawing.Font("굴림", 10F);
  892. this.label52.Location = new System.Drawing.Point(745, 38);
  893. this.label52.Name = "label52";
  894. this.label52.Size = new System.Drawing.Size(23, 14);
  895. this.label52.TabIndex = 190;
  896. this.label52.Text = "L3";
  897. //
  898. // label78
  899. //
  900. this.label78.AutoSize = true;
  901. this.label78.Font = new System.Drawing.Font("굴림", 10F);
  902. this.label78.Location = new System.Drawing.Point(1015, 38);
  903. this.label78.Name = "label78";
  904. this.label78.Size = new System.Drawing.Size(23, 14);
  905. this.label78.TabIndex = 191;
  906. this.label78.Text = "L3";
  907. //
  908. // label8
  909. //
  910. this.label8.AutoSize = true;
  911. this.label8.Font = new System.Drawing.Font("굴림", 10F);
  912. this.label8.Location = new System.Drawing.Point(385, 38);
  913. this.label8.Name = "label8";
  914. this.label8.Size = new System.Drawing.Size(23, 14);
  915. this.label8.TabIndex = 182;
  916. this.label8.Text = "L0";
  917. //
  918. // label54
  919. //
  920. this.label54.AutoSize = true;
  921. this.label54.Font = new System.Drawing.Font("굴림", 10F);
  922. this.label54.Location = new System.Drawing.Point(655, 38);
  923. this.label54.Name = "label54";
  924. this.label54.Size = new System.Drawing.Size(23, 14);
  925. this.label54.TabIndex = 181;
  926. this.label54.Text = "L0";
  927. //
  928. // label79
  929. //
  930. this.label79.AutoSize = true;
  931. this.label79.Font = new System.Drawing.Font("굴림", 10F);
  932. this.label79.Location = new System.Drawing.Point(925, 38);
  933. this.label79.Name = "label79";
  934. this.label79.Size = new System.Drawing.Size(23, 14);
  935. this.label79.TabIndex = 180;
  936. this.label79.Text = "L0";
  937. //
  938. // label33
  939. //
  940. this.label33.AutoSize = true;
  941. this.label33.Font = new System.Drawing.Font("굴림", 10F);
  942. this.label33.Location = new System.Drawing.Point(445, 38);
  943. this.label33.Name = "label33";
  944. this.label33.Size = new System.Drawing.Size(23, 14);
  945. this.label33.TabIndex = 185;
  946. this.label33.Text = "L2";
  947. //
  948. // label55
  949. //
  950. this.label55.AutoSize = true;
  951. this.label55.Font = new System.Drawing.Font("굴림", 10F);
  952. this.label55.Location = new System.Drawing.Point(715, 38);
  953. this.label55.Name = "label55";
  954. this.label55.Size = new System.Drawing.Size(23, 14);
  955. this.label55.TabIndex = 183;
  956. this.label55.Text = "L2";
  957. //
  958. // label80
  959. //
  960. this.label80.AutoSize = true;
  961. this.label80.Font = new System.Drawing.Font("굴림", 10F);
  962. this.label80.Location = new System.Drawing.Point(985, 38);
  963. this.label80.Name = "label80";
  964. this.label80.Size = new System.Drawing.Size(23, 14);
  965. this.label80.TabIndex = 184;
  966. this.label80.Text = "L2";
  967. //
  968. // lbl_COMM12
  969. //
  970. this.lbl_COMM12.AutoSize = true;
  971. this.lbl_COMM12.Font = new System.Drawing.Font("굴림", 10F);
  972. this.lbl_COMM12.Location = new System.Drawing.Point(15, 381);
  973. this.lbl_COMM12.Name = "lbl_COMM12";
  974. this.lbl_COMM12.Size = new System.Drawing.Size(70, 14);
  975. this.lbl_COMM12.TabIndex = 460;
  976. this.lbl_COMM12.Text = "중계반 12";
  977. //
  978. // lbl_COMM32
  979. //
  980. this.lbl_COMM32.AutoSize = true;
  981. this.lbl_COMM32.Font = new System.Drawing.Font("굴림", 10F);
  982. this.lbl_COMM32.Location = new System.Drawing.Point(285, 381);
  983. this.lbl_COMM32.Name = "lbl_COMM32";
  984. this.lbl_COMM32.Size = new System.Drawing.Size(70, 14);
  985. this.lbl_COMM32.TabIndex = 459;
  986. this.lbl_COMM32.Text = "중계반 32";
  987. //
  988. // lbl_COMM52
  989. //
  990. this.lbl_COMM52.AutoSize = true;
  991. this.lbl_COMM52.Font = new System.Drawing.Font("굴림", 10F);
  992. this.lbl_COMM52.Location = new System.Drawing.Point(555, 381);
  993. this.lbl_COMM52.Name = "lbl_COMM52";
  994. this.lbl_COMM52.Size = new System.Drawing.Size(70, 14);
  995. this.lbl_COMM52.TabIndex = 461;
  996. this.lbl_COMM52.Text = "중계반 52";
  997. //
  998. // lbl_COMM17
  999. //
  1000. this.lbl_COMM17.AutoSize = true;
  1001. this.lbl_COMM17.Font = new System.Drawing.Font("굴림", 10F);
  1002. this.lbl_COMM17.Location = new System.Drawing.Point(15, 521);
  1003. this.lbl_COMM17.Name = "lbl_COMM17";
  1004. this.lbl_COMM17.Size = new System.Drawing.Size(70, 14);
  1005. this.lbl_COMM17.TabIndex = 456;
  1006. this.lbl_COMM17.Text = "중계반 17";
  1007. //
  1008. // lbl_COMM37
  1009. //
  1010. this.lbl_COMM37.AutoSize = true;
  1011. this.lbl_COMM37.Font = new System.Drawing.Font("굴림", 10F);
  1012. this.lbl_COMM37.Location = new System.Drawing.Point(285, 521);
  1013. this.lbl_COMM37.Name = "lbl_COMM37";
  1014. this.lbl_COMM37.Size = new System.Drawing.Size(70, 14);
  1015. this.lbl_COMM37.TabIndex = 457;
  1016. this.lbl_COMM37.Text = "중계반 37";
  1017. //
  1018. // lbl_COMM57
  1019. //
  1020. this.lbl_COMM57.AutoSize = true;
  1021. this.lbl_COMM57.Font = new System.Drawing.Font("굴림", 10F);
  1022. this.lbl_COMM57.Location = new System.Drawing.Point(555, 521);
  1023. this.lbl_COMM57.Name = "lbl_COMM57";
  1024. this.lbl_COMM57.Size = new System.Drawing.Size(70, 14);
  1025. this.lbl_COMM57.TabIndex = 458;
  1026. this.lbl_COMM57.Text = "중계반 57";
  1027. //
  1028. // lbl_COMM13
  1029. //
  1030. this.lbl_COMM13.AutoSize = true;
  1031. this.lbl_COMM13.Font = new System.Drawing.Font("굴림", 10F);
  1032. this.lbl_COMM13.Location = new System.Drawing.Point(15, 409);
  1033. this.lbl_COMM13.Name = "lbl_COMM13";
  1034. this.lbl_COMM13.Size = new System.Drawing.Size(70, 14);
  1035. this.lbl_COMM13.TabIndex = 494;
  1036. this.lbl_COMM13.Text = "중계반 13";
  1037. //
  1038. // btnBoard9_loop0
  1039. //
  1040. this.btnBoard9_loop0.Location = new System.Drawing.Point(115, 292);
  1041. this.btnBoard9_loop0.Name = "btnBoard9_loop0";
  1042. this.btnBoard9_loop0.Size = new System.Drawing.Size(23, 23);
  1043. this.btnBoard9_loop0.TabIndex = 144;
  1044. this.btnBoard9_loop0.UseVisualStyleBackColor = true;
  1045. //
  1046. // btnBoard29_loop0
  1047. //
  1048. this.btnBoard29_loop0.Location = new System.Drawing.Point(385, 292);
  1049. this.btnBoard29_loop0.Name = "btnBoard29_loop0";
  1050. this.btnBoard29_loop0.Size = new System.Drawing.Size(23, 23);
  1051. this.btnBoard29_loop0.TabIndex = 144;
  1052. this.btnBoard29_loop0.UseVisualStyleBackColor = true;
  1053. //
  1054. // btnBoard49_loop0
  1055. //
  1056. this.btnBoard49_loop0.Location = new System.Drawing.Point(655, 292);
  1057. this.btnBoard49_loop0.Name = "btnBoard49_loop0";
  1058. this.btnBoard49_loop0.Size = new System.Drawing.Size(23, 23);
  1059. this.btnBoard49_loop0.TabIndex = 144;
  1060. this.btnBoard49_loop0.UseVisualStyleBackColor = true;
  1061. //
  1062. // btnBoard17_loop0
  1063. //
  1064. this.btnBoard17_loop0.Location = new System.Drawing.Point(115, 516);
  1065. this.btnBoard17_loop0.Name = "btnBoard17_loop0";
  1066. this.btnBoard17_loop0.Size = new System.Drawing.Size(23, 23);
  1067. this.btnBoard17_loop0.TabIndex = 144;
  1068. this.btnBoard17_loop0.UseVisualStyleBackColor = true;
  1069. //
  1070. // btnBoard37_loop0
  1071. //
  1072. this.btnBoard37_loop0.Location = new System.Drawing.Point(385, 516);
  1073. this.btnBoard37_loop0.Name = "btnBoard37_loop0";
  1074. this.btnBoard37_loop0.Size = new System.Drawing.Size(23, 23);
  1075. this.btnBoard37_loop0.TabIndex = 144;
  1076. this.btnBoard37_loop0.UseVisualStyleBackColor = true;
  1077. //
  1078. // btnBoard57_loop0
  1079. //
  1080. this.btnBoard57_loop0.Location = new System.Drawing.Point(655, 516);
  1081. this.btnBoard57_loop0.Name = "btnBoard57_loop0";
  1082. this.btnBoard57_loop0.Size = new System.Drawing.Size(23, 23);
  1083. this.btnBoard57_loop0.TabIndex = 144;
  1084. this.btnBoard57_loop0.UseVisualStyleBackColor = true;
  1085. //
  1086. // btnBoard13_loop0
  1087. //
  1088. this.btnBoard13_loop0.Location = new System.Drawing.Point(115, 404);
  1089. this.btnBoard13_loop0.Name = "btnBoard13_loop0";
  1090. this.btnBoard13_loop0.Size = new System.Drawing.Size(23, 23);
  1091. this.btnBoard13_loop0.TabIndex = 144;
  1092. this.btnBoard13_loop0.UseVisualStyleBackColor = true;
  1093. //
  1094. // btnBoard33_loop0
  1095. //
  1096. this.btnBoard33_loop0.Location = new System.Drawing.Point(385, 404);
  1097. this.btnBoard33_loop0.Name = "btnBoard33_loop0";
  1098. this.btnBoard33_loop0.Size = new System.Drawing.Size(23, 23);
  1099. this.btnBoard33_loop0.TabIndex = 144;
  1100. this.btnBoard33_loop0.UseVisualStyleBackColor = true;
  1101. //
  1102. // btnBoard53_loop0
  1103. //
  1104. this.btnBoard53_loop0.Location = new System.Drawing.Point(655, 404);
  1105. this.btnBoard53_loop0.Name = "btnBoard53_loop0";
  1106. this.btnBoard53_loop0.Size = new System.Drawing.Size(23, 23);
  1107. this.btnBoard53_loop0.TabIndex = 144;
  1108. this.btnBoard53_loop0.UseVisualStyleBackColor = true;
  1109. //
  1110. // btnBoard21_loop0
  1111. //
  1112. this.btnBoard21_loop0.Location = new System.Drawing.Point(385, 68);
  1113. this.btnBoard21_loop0.Name = "btnBoard21_loop0";
  1114. this.btnBoard21_loop0.Size = new System.Drawing.Size(23, 23);
  1115. this.btnBoard21_loop0.TabIndex = 144;
  1116. this.btnBoard21_loop0.UseVisualStyleBackColor = true;
  1117. //
  1118. // btnBoard41_loop0
  1119. //
  1120. this.btnBoard41_loop0.Location = new System.Drawing.Point(655, 68);
  1121. this.btnBoard41_loop0.Name = "btnBoard41_loop0";
  1122. this.btnBoard41_loop0.Size = new System.Drawing.Size(23, 23);
  1123. this.btnBoard41_loop0.TabIndex = 144;
  1124. this.btnBoard41_loop0.UseVisualStyleBackColor = true;
  1125. //
  1126. // btnBoard61_loop0
  1127. //
  1128. this.btnBoard61_loop0.Location = new System.Drawing.Point(925, 68);
  1129. this.btnBoard61_loop0.Name = "btnBoard61_loop0";
  1130. this.btnBoard61_loop0.Size = new System.Drawing.Size(23, 23);
  1131. this.btnBoard61_loop0.TabIndex = 144;
  1132. this.btnBoard61_loop0.UseVisualStyleBackColor = true;
  1133. //
  1134. // btnBoard25_loop0
  1135. //
  1136. this.btnBoard25_loop0.Location = new System.Drawing.Point(385, 180);
  1137. this.btnBoard25_loop0.Name = "btnBoard25_loop0";
  1138. this.btnBoard25_loop0.Size = new System.Drawing.Size(23, 23);
  1139. this.btnBoard25_loop0.TabIndex = 144;
  1140. this.btnBoard25_loop0.UseVisualStyleBackColor = true;
  1141. //
  1142. // btnBoard45_loop0
  1143. //
  1144. this.btnBoard45_loop0.Location = new System.Drawing.Point(655, 180);
  1145. this.btnBoard45_loop0.Name = "btnBoard45_loop0";
  1146. this.btnBoard45_loop0.Size = new System.Drawing.Size(23, 23);
  1147. this.btnBoard45_loop0.TabIndex = 144;
  1148. this.btnBoard45_loop0.UseVisualStyleBackColor = true;
  1149. //
  1150. // btnBoard10_loop0
  1151. //
  1152. this.btnBoard10_loop0.Location = new System.Drawing.Point(115, 320);
  1153. this.btnBoard10_loop0.Name = "btnBoard10_loop0";
  1154. this.btnBoard10_loop0.Size = new System.Drawing.Size(23, 23);
  1155. this.btnBoard10_loop0.TabIndex = 144;
  1156. this.btnBoard10_loop0.UseVisualStyleBackColor = true;
  1157. //
  1158. // btnBoard30_loop0
  1159. //
  1160. this.btnBoard30_loop0.Location = new System.Drawing.Point(385, 320);
  1161. this.btnBoard30_loop0.Name = "btnBoard30_loop0";
  1162. this.btnBoard30_loop0.Size = new System.Drawing.Size(23, 23);
  1163. this.btnBoard30_loop0.TabIndex = 144;
  1164. this.btnBoard30_loop0.UseVisualStyleBackColor = true;
  1165. //
  1166. // btnBoard50_loop0
  1167. //
  1168. this.btnBoard50_loop0.Location = new System.Drawing.Point(655, 320);
  1169. this.btnBoard50_loop0.Name = "btnBoard50_loop0";
  1170. this.btnBoard50_loop0.Size = new System.Drawing.Size(23, 23);
  1171. this.btnBoard50_loop0.TabIndex = 144;
  1172. this.btnBoard50_loop0.UseVisualStyleBackColor = true;
  1173. //
  1174. // btnBoard18_loop0
  1175. //
  1176. this.btnBoard18_loop0.Location = new System.Drawing.Point(115, 544);
  1177. this.btnBoard18_loop0.Name = "btnBoard18_loop0";
  1178. this.btnBoard18_loop0.Size = new System.Drawing.Size(23, 23);
  1179. this.btnBoard18_loop0.TabIndex = 144;
  1180. this.btnBoard18_loop0.UseVisualStyleBackColor = true;
  1181. //
  1182. // btnBoard38_loop0
  1183. //
  1184. this.btnBoard38_loop0.Location = new System.Drawing.Point(385, 544);
  1185. this.btnBoard38_loop0.Name = "btnBoard38_loop0";
  1186. this.btnBoard38_loop0.Size = new System.Drawing.Size(23, 23);
  1187. this.btnBoard38_loop0.TabIndex = 144;
  1188. this.btnBoard38_loop0.UseVisualStyleBackColor = true;
  1189. //
  1190. // btnBoard58_loop0
  1191. //
  1192. this.btnBoard58_loop0.Location = new System.Drawing.Point(655, 544);
  1193. this.btnBoard58_loop0.Name = "btnBoard58_loop0";
  1194. this.btnBoard58_loop0.Size = new System.Drawing.Size(23, 23);
  1195. this.btnBoard58_loop0.TabIndex = 144;
  1196. this.btnBoard58_loop0.UseVisualStyleBackColor = true;
  1197. //
  1198. // btnBoard14_loop0
  1199. //
  1200. this.btnBoard14_loop0.Location = new System.Drawing.Point(115, 432);
  1201. this.btnBoard14_loop0.Name = "btnBoard14_loop0";
  1202. this.btnBoard14_loop0.Size = new System.Drawing.Size(23, 23);
  1203. this.btnBoard14_loop0.TabIndex = 144;
  1204. this.btnBoard14_loop0.UseVisualStyleBackColor = true;
  1205. //
  1206. // btnBoard34_loop0
  1207. //
  1208. this.btnBoard34_loop0.Location = new System.Drawing.Point(385, 432);
  1209. this.btnBoard34_loop0.Name = "btnBoard34_loop0";
  1210. this.btnBoard34_loop0.Size = new System.Drawing.Size(23, 23);
  1211. this.btnBoard34_loop0.TabIndex = 144;
  1212. this.btnBoard34_loop0.UseVisualStyleBackColor = true;
  1213. //
  1214. // btnBoard54_loop0
  1215. //
  1216. this.btnBoard54_loop0.Location = new System.Drawing.Point(655, 432);
  1217. this.btnBoard54_loop0.Name = "btnBoard54_loop0";
  1218. this.btnBoard54_loop0.Size = new System.Drawing.Size(23, 23);
  1219. this.btnBoard54_loop0.TabIndex = 144;
  1220. this.btnBoard54_loop0.UseVisualStyleBackColor = true;
  1221. //
  1222. // btnBoard22_loop0
  1223. //
  1224. this.btnBoard22_loop0.Location = new System.Drawing.Point(385, 96);
  1225. this.btnBoard22_loop0.Name = "btnBoard22_loop0";
  1226. this.btnBoard22_loop0.Size = new System.Drawing.Size(23, 23);
  1227. this.btnBoard22_loop0.TabIndex = 144;
  1228. this.btnBoard22_loop0.UseVisualStyleBackColor = true;
  1229. //
  1230. // btnBoard42_loop0
  1231. //
  1232. this.btnBoard42_loop0.Location = new System.Drawing.Point(655, 96);
  1233. this.btnBoard42_loop0.Name = "btnBoard42_loop0";
  1234. this.btnBoard42_loop0.Size = new System.Drawing.Size(23, 23);
  1235. this.btnBoard42_loop0.TabIndex = 144;
  1236. this.btnBoard42_loop0.UseVisualStyleBackColor = true;
  1237. //
  1238. // btnBoard62_loop0
  1239. //
  1240. this.btnBoard62_loop0.Location = new System.Drawing.Point(925, 96);
  1241. this.btnBoard62_loop0.Name = "btnBoard62_loop0";
  1242. this.btnBoard62_loop0.Size = new System.Drawing.Size(23, 23);
  1243. this.btnBoard62_loop0.TabIndex = 144;
  1244. this.btnBoard62_loop0.UseVisualStyleBackColor = true;
  1245. //
  1246. // btnBoard26_loop0
  1247. //
  1248. this.btnBoard26_loop0.Location = new System.Drawing.Point(385, 208);
  1249. this.btnBoard26_loop0.Name = "btnBoard26_loop0";
  1250. this.btnBoard26_loop0.Size = new System.Drawing.Size(23, 23);
  1251. this.btnBoard26_loop0.TabIndex = 144;
  1252. this.btnBoard26_loop0.UseVisualStyleBackColor = true;
  1253. //
  1254. // btnBoard46_loop0
  1255. //
  1256. this.btnBoard46_loop0.Location = new System.Drawing.Point(655, 208);
  1257. this.btnBoard46_loop0.Name = "btnBoard46_loop0";
  1258. this.btnBoard46_loop0.Size = new System.Drawing.Size(23, 23);
  1259. this.btnBoard46_loop0.TabIndex = 144;
  1260. this.btnBoard46_loop0.UseVisualStyleBackColor = true;
  1261. //
  1262. // btnBoard11_loop0
  1263. //
  1264. this.btnBoard11_loop0.Location = new System.Drawing.Point(115, 348);
  1265. this.btnBoard11_loop0.Name = "btnBoard11_loop0";
  1266. this.btnBoard11_loop0.Size = new System.Drawing.Size(23, 23);
  1267. this.btnBoard11_loop0.TabIndex = 144;
  1268. this.btnBoard11_loop0.UseVisualStyleBackColor = true;
  1269. //
  1270. // btnBoard31_loop0
  1271. //
  1272. this.btnBoard31_loop0.Location = new System.Drawing.Point(385, 348);
  1273. this.btnBoard31_loop0.Name = "btnBoard31_loop0";
  1274. this.btnBoard31_loop0.Size = new System.Drawing.Size(23, 23);
  1275. this.btnBoard31_loop0.TabIndex = 144;
  1276. this.btnBoard31_loop0.UseVisualStyleBackColor = true;
  1277. //
  1278. // btnBoard51_loop0
  1279. //
  1280. this.btnBoard51_loop0.Location = new System.Drawing.Point(655, 348);
  1281. this.btnBoard51_loop0.Name = "btnBoard51_loop0";
  1282. this.btnBoard51_loop0.Size = new System.Drawing.Size(23, 23);
  1283. this.btnBoard51_loop0.TabIndex = 144;
  1284. this.btnBoard51_loop0.UseVisualStyleBackColor = true;
  1285. //
  1286. // btnBoard19_loop0
  1287. //
  1288. this.btnBoard19_loop0.Location = new System.Drawing.Point(115, 572);
  1289. this.btnBoard19_loop0.Name = "btnBoard19_loop0";
  1290. this.btnBoard19_loop0.Size = new System.Drawing.Size(23, 23);
  1291. this.btnBoard19_loop0.TabIndex = 144;
  1292. this.btnBoard19_loop0.UseVisualStyleBackColor = true;
  1293. //
  1294. // btnBoard39_loop0
  1295. //
  1296. this.btnBoard39_loop0.Location = new System.Drawing.Point(385, 572);
  1297. this.btnBoard39_loop0.Name = "btnBoard39_loop0";
  1298. this.btnBoard39_loop0.Size = new System.Drawing.Size(23, 23);
  1299. this.btnBoard39_loop0.TabIndex = 144;
  1300. this.btnBoard39_loop0.UseVisualStyleBackColor = true;
  1301. //
  1302. // btnBoard59_loop0
  1303. //
  1304. this.btnBoard59_loop0.Location = new System.Drawing.Point(655, 572);
  1305. this.btnBoard59_loop0.Name = "btnBoard59_loop0";
  1306. this.btnBoard59_loop0.Size = new System.Drawing.Size(23, 23);
  1307. this.btnBoard59_loop0.TabIndex = 144;
  1308. this.btnBoard59_loop0.UseVisualStyleBackColor = true;
  1309. //
  1310. // btnBoard15_loop0
  1311. //
  1312. this.btnBoard15_loop0.Location = new System.Drawing.Point(115, 460);
  1313. this.btnBoard15_loop0.Name = "btnBoard15_loop0";
  1314. this.btnBoard15_loop0.Size = new System.Drawing.Size(23, 23);
  1315. this.btnBoard15_loop0.TabIndex = 144;
  1316. this.btnBoard15_loop0.UseVisualStyleBackColor = true;
  1317. //
  1318. // btnBoard35_loop0
  1319. //
  1320. this.btnBoard35_loop0.Location = new System.Drawing.Point(385, 460);
  1321. this.btnBoard35_loop0.Name = "btnBoard35_loop0";
  1322. this.btnBoard35_loop0.Size = new System.Drawing.Size(23, 23);
  1323. this.btnBoard35_loop0.TabIndex = 144;
  1324. this.btnBoard35_loop0.UseVisualStyleBackColor = true;
  1325. //
  1326. // btnBoard55_loop0
  1327. //
  1328. this.btnBoard55_loop0.Location = new System.Drawing.Point(655, 460);
  1329. this.btnBoard55_loop0.Name = "btnBoard55_loop0";
  1330. this.btnBoard55_loop0.Size = new System.Drawing.Size(23, 23);
  1331. this.btnBoard55_loop0.TabIndex = 144;
  1332. this.btnBoard55_loop0.UseVisualStyleBackColor = true;
  1333. //
  1334. // btnBoard23_loop0
  1335. //
  1336. this.btnBoard23_loop0.Location = new System.Drawing.Point(385, 124);
  1337. this.btnBoard23_loop0.Name = "btnBoard23_loop0";
  1338. this.btnBoard23_loop0.Size = new System.Drawing.Size(23, 23);
  1339. this.btnBoard23_loop0.TabIndex = 144;
  1340. this.btnBoard23_loop0.UseVisualStyleBackColor = true;
  1341. //
  1342. // btnBoard43_loop0
  1343. //
  1344. this.btnBoard43_loop0.Location = new System.Drawing.Point(655, 124);
  1345. this.btnBoard43_loop0.Name = "btnBoard43_loop0";
  1346. this.btnBoard43_loop0.Size = new System.Drawing.Size(23, 23);
  1347. this.btnBoard43_loop0.TabIndex = 144;
  1348. this.btnBoard43_loop0.UseVisualStyleBackColor = true;
  1349. //
  1350. // btnBoard63_loop0
  1351. //
  1352. this.btnBoard63_loop0.Location = new System.Drawing.Point(925, 124);
  1353. this.btnBoard63_loop0.Name = "btnBoard63_loop0";
  1354. this.btnBoard63_loop0.Size = new System.Drawing.Size(23, 23);
  1355. this.btnBoard63_loop0.TabIndex = 144;
  1356. this.btnBoard63_loop0.UseVisualStyleBackColor = true;
  1357. //
  1358. // btnBoard27_loop0
  1359. //
  1360. this.btnBoard27_loop0.Location = new System.Drawing.Point(385, 236);
  1361. this.btnBoard27_loop0.Name = "btnBoard27_loop0";
  1362. this.btnBoard27_loop0.Size = new System.Drawing.Size(23, 23);
  1363. this.btnBoard27_loop0.TabIndex = 144;
  1364. this.btnBoard27_loop0.UseVisualStyleBackColor = true;
  1365. //
  1366. // btnBoard47_loop0
  1367. //
  1368. this.btnBoard47_loop0.Location = new System.Drawing.Point(655, 236);
  1369. this.btnBoard47_loop0.Name = "btnBoard47_loop0";
  1370. this.btnBoard47_loop0.Size = new System.Drawing.Size(23, 23);
  1371. this.btnBoard47_loop0.TabIndex = 144;
  1372. this.btnBoard47_loop0.UseVisualStyleBackColor = true;
  1373. //
  1374. // btnBoard12_loop0
  1375. //
  1376. this.btnBoard12_loop0.Location = new System.Drawing.Point(115, 376);
  1377. this.btnBoard12_loop0.Name = "btnBoard12_loop0";
  1378. this.btnBoard12_loop0.Size = new System.Drawing.Size(23, 23);
  1379. this.btnBoard12_loop0.TabIndex = 144;
  1380. this.btnBoard12_loop0.UseVisualStyleBackColor = true;
  1381. //
  1382. // btnBoard32_loop0
  1383. //
  1384. this.btnBoard32_loop0.Location = new System.Drawing.Point(385, 376);
  1385. this.btnBoard32_loop0.Name = "btnBoard32_loop0";
  1386. this.btnBoard32_loop0.Size = new System.Drawing.Size(23, 23);
  1387. this.btnBoard32_loop0.TabIndex = 144;
  1388. this.btnBoard32_loop0.UseVisualStyleBackColor = true;
  1389. //
  1390. // btnBoard52_loop0
  1391. //
  1392. this.btnBoard52_loop0.Location = new System.Drawing.Point(655, 376);
  1393. this.btnBoard52_loop0.Name = "btnBoard52_loop0";
  1394. this.btnBoard52_loop0.Size = new System.Drawing.Size(23, 23);
  1395. this.btnBoard52_loop0.TabIndex = 144;
  1396. this.btnBoard52_loop0.UseVisualStyleBackColor = true;
  1397. //
  1398. // btnBoard20_loop0
  1399. //
  1400. this.btnBoard20_loop0.Location = new System.Drawing.Point(115, 600);
  1401. this.btnBoard20_loop0.Name = "btnBoard20_loop0";
  1402. this.btnBoard20_loop0.Size = new System.Drawing.Size(23, 23);
  1403. this.btnBoard20_loop0.TabIndex = 144;
  1404. this.btnBoard20_loop0.UseVisualStyleBackColor = true;
  1405. //
  1406. // btnBoard40_loop0
  1407. //
  1408. this.btnBoard40_loop0.Location = new System.Drawing.Point(385, 600);
  1409. this.btnBoard40_loop0.Name = "btnBoard40_loop0";
  1410. this.btnBoard40_loop0.Size = new System.Drawing.Size(23, 23);
  1411. this.btnBoard40_loop0.TabIndex = 144;
  1412. this.btnBoard40_loop0.UseVisualStyleBackColor = true;
  1413. //
  1414. // btnBoard60_loop0
  1415. //
  1416. this.btnBoard60_loop0.Location = new System.Drawing.Point(655, 600);
  1417. this.btnBoard60_loop0.Name = "btnBoard60_loop0";
  1418. this.btnBoard60_loop0.Size = new System.Drawing.Size(23, 23);
  1419. this.btnBoard60_loop0.TabIndex = 144;
  1420. this.btnBoard60_loop0.UseVisualStyleBackColor = true;
  1421. //
  1422. // btnBoard16_loop0
  1423. //
  1424. this.btnBoard16_loop0.Location = new System.Drawing.Point(115, 488);
  1425. this.btnBoard16_loop0.Name = "btnBoard16_loop0";
  1426. this.btnBoard16_loop0.Size = new System.Drawing.Size(23, 23);
  1427. this.btnBoard16_loop0.TabIndex = 144;
  1428. this.btnBoard16_loop0.UseVisualStyleBackColor = true;
  1429. //
  1430. // btnBoard36_loop0
  1431. //
  1432. this.btnBoard36_loop0.Location = new System.Drawing.Point(385, 488);
  1433. this.btnBoard36_loop0.Name = "btnBoard36_loop0";
  1434. this.btnBoard36_loop0.Size = new System.Drawing.Size(23, 23);
  1435. this.btnBoard36_loop0.TabIndex = 144;
  1436. this.btnBoard36_loop0.UseVisualStyleBackColor = true;
  1437. //
  1438. // btnBoard56_loop0
  1439. //
  1440. this.btnBoard56_loop0.Location = new System.Drawing.Point(655, 488);
  1441. this.btnBoard56_loop0.Name = "btnBoard56_loop0";
  1442. this.btnBoard56_loop0.Size = new System.Drawing.Size(23, 23);
  1443. this.btnBoard56_loop0.TabIndex = 144;
  1444. this.btnBoard56_loop0.UseVisualStyleBackColor = true;
  1445. //
  1446. // btnBoard24_loop0
  1447. //
  1448. this.btnBoard24_loop0.Location = new System.Drawing.Point(385, 152);
  1449. this.btnBoard24_loop0.Name = "btnBoard24_loop0";
  1450. this.btnBoard24_loop0.Size = new System.Drawing.Size(23, 23);
  1451. this.btnBoard24_loop0.TabIndex = 144;
  1452. this.btnBoard24_loop0.UseVisualStyleBackColor = true;
  1453. //
  1454. // btnBoard44_loop0
  1455. //
  1456. this.btnBoard44_loop0.Location = new System.Drawing.Point(655, 152);
  1457. this.btnBoard44_loop0.Name = "btnBoard44_loop0";
  1458. this.btnBoard44_loop0.Size = new System.Drawing.Size(23, 23);
  1459. this.btnBoard44_loop0.TabIndex = 144;
  1460. this.btnBoard44_loop0.UseVisualStyleBackColor = true;
  1461. //
  1462. // btnBoard64_loop0
  1463. //
  1464. this.btnBoard64_loop0.Location = new System.Drawing.Point(925, 152);
  1465. this.btnBoard64_loop0.Name = "btnBoard64_loop0";
  1466. this.btnBoard64_loop0.Size = new System.Drawing.Size(23, 23);
  1467. this.btnBoard64_loop0.TabIndex = 144;
  1468. this.btnBoard64_loop0.UseVisualStyleBackColor = true;
  1469. //
  1470. // btnBoard28_loop0
  1471. //
  1472. this.btnBoard28_loop0.Location = new System.Drawing.Point(385, 264);
  1473. this.btnBoard28_loop0.Name = "btnBoard28_loop0";
  1474. this.btnBoard28_loop0.Size = new System.Drawing.Size(23, 23);
  1475. this.btnBoard28_loop0.TabIndex = 144;
  1476. this.btnBoard28_loop0.UseVisualStyleBackColor = true;
  1477. //
  1478. // btnBoard48_loop0
  1479. //
  1480. this.btnBoard48_loop0.Location = new System.Drawing.Point(655, 264);
  1481. this.btnBoard48_loop0.Name = "btnBoard48_loop0";
  1482. this.btnBoard48_loop0.Size = new System.Drawing.Size(23, 23);
  1483. this.btnBoard48_loop0.TabIndex = 144;
  1484. this.btnBoard48_loop0.UseVisualStyleBackColor = true;
  1485. //
  1486. // lbl_COMM33
  1487. //
  1488. this.lbl_COMM33.AutoSize = true;
  1489. this.lbl_COMM33.Font = new System.Drawing.Font("굴림", 10F);
  1490. this.lbl_COMM33.Location = new System.Drawing.Point(285, 409);
  1491. this.lbl_COMM33.Name = "lbl_COMM33";
  1492. this.lbl_COMM33.Size = new System.Drawing.Size(70, 14);
  1493. this.lbl_COMM33.TabIndex = 493;
  1494. this.lbl_COMM33.Text = "중계반 33";
  1495. //
  1496. // btnBoard9_loop2
  1497. //
  1498. this.btnBoard9_loop2.Location = new System.Drawing.Point(175, 292);
  1499. this.btnBoard9_loop2.Name = "btnBoard9_loop2";
  1500. this.btnBoard9_loop2.Size = new System.Drawing.Size(23, 23);
  1501. this.btnBoard9_loop2.TabIndex = 144;
  1502. this.btnBoard9_loop2.UseVisualStyleBackColor = true;
  1503. //
  1504. // btnBoard29_loop2
  1505. //
  1506. this.btnBoard29_loop2.Location = new System.Drawing.Point(445, 292);
  1507. this.btnBoard29_loop2.Name = "btnBoard29_loop2";
  1508. this.btnBoard29_loop2.Size = new System.Drawing.Size(23, 23);
  1509. this.btnBoard29_loop2.TabIndex = 144;
  1510. this.btnBoard29_loop2.UseVisualStyleBackColor = true;
  1511. //
  1512. // btnBoard49_loop2
  1513. //
  1514. this.btnBoard49_loop2.Location = new System.Drawing.Point(715, 292);
  1515. this.btnBoard49_loop2.Name = "btnBoard49_loop2";
  1516. this.btnBoard49_loop2.Size = new System.Drawing.Size(23, 23);
  1517. this.btnBoard49_loop2.TabIndex = 144;
  1518. this.btnBoard49_loop2.UseVisualStyleBackColor = true;
  1519. //
  1520. // btnBoard17_loop2
  1521. //
  1522. this.btnBoard17_loop2.Location = new System.Drawing.Point(175, 516);
  1523. this.btnBoard17_loop2.Name = "btnBoard17_loop2";
  1524. this.btnBoard17_loop2.Size = new System.Drawing.Size(23, 23);
  1525. this.btnBoard17_loop2.TabIndex = 144;
  1526. this.btnBoard17_loop2.UseVisualStyleBackColor = true;
  1527. //
  1528. // btnBoard37_loop2
  1529. //
  1530. this.btnBoard37_loop2.Location = new System.Drawing.Point(445, 516);
  1531. this.btnBoard37_loop2.Name = "btnBoard37_loop2";
  1532. this.btnBoard37_loop2.Size = new System.Drawing.Size(23, 23);
  1533. this.btnBoard37_loop2.TabIndex = 144;
  1534. this.btnBoard37_loop2.UseVisualStyleBackColor = true;
  1535. //
  1536. // btnBoard57_loop2
  1537. //
  1538. this.btnBoard57_loop2.Location = new System.Drawing.Point(715, 516);
  1539. this.btnBoard57_loop2.Name = "btnBoard57_loop2";
  1540. this.btnBoard57_loop2.Size = new System.Drawing.Size(23, 23);
  1541. this.btnBoard57_loop2.TabIndex = 144;
  1542. this.btnBoard57_loop2.UseVisualStyleBackColor = true;
  1543. //
  1544. // btnBoard13_loop2
  1545. //
  1546. this.btnBoard13_loop2.Location = new System.Drawing.Point(175, 404);
  1547. this.btnBoard13_loop2.Name = "btnBoard13_loop2";
  1548. this.btnBoard13_loop2.Size = new System.Drawing.Size(23, 23);
  1549. this.btnBoard13_loop2.TabIndex = 144;
  1550. this.btnBoard13_loop2.UseVisualStyleBackColor = true;
  1551. //
  1552. // btnBoard33_loop2
  1553. //
  1554. this.btnBoard33_loop2.Location = new System.Drawing.Point(445, 404);
  1555. this.btnBoard33_loop2.Name = "btnBoard33_loop2";
  1556. this.btnBoard33_loop2.Size = new System.Drawing.Size(23, 23);
  1557. this.btnBoard33_loop2.TabIndex = 144;
  1558. this.btnBoard33_loop2.UseVisualStyleBackColor = true;
  1559. //
  1560. // btnBoard53_loop2
  1561. //
  1562. this.btnBoard53_loop2.Location = new System.Drawing.Point(715, 404);
  1563. this.btnBoard53_loop2.Name = "btnBoard53_loop2";
  1564. this.btnBoard53_loop2.Size = new System.Drawing.Size(23, 23);
  1565. this.btnBoard53_loop2.TabIndex = 144;
  1566. this.btnBoard53_loop2.UseVisualStyleBackColor = true;
  1567. //
  1568. // btnBoard21_loop2
  1569. //
  1570. this.btnBoard21_loop2.Location = new System.Drawing.Point(445, 68);
  1571. this.btnBoard21_loop2.Name = "btnBoard21_loop2";
  1572. this.btnBoard21_loop2.Size = new System.Drawing.Size(23, 23);
  1573. this.btnBoard21_loop2.TabIndex = 144;
  1574. this.btnBoard21_loop2.UseVisualStyleBackColor = true;
  1575. //
  1576. // btnBoard41_loop2
  1577. //
  1578. this.btnBoard41_loop2.Location = new System.Drawing.Point(715, 68);
  1579. this.btnBoard41_loop2.Name = "btnBoard41_loop2";
  1580. this.btnBoard41_loop2.Size = new System.Drawing.Size(23, 23);
  1581. this.btnBoard41_loop2.TabIndex = 144;
  1582. this.btnBoard41_loop2.UseVisualStyleBackColor = true;
  1583. //
  1584. // btnBoard61_loop2
  1585. //
  1586. this.btnBoard61_loop2.Location = new System.Drawing.Point(985, 68);
  1587. this.btnBoard61_loop2.Name = "btnBoard61_loop2";
  1588. this.btnBoard61_loop2.Size = new System.Drawing.Size(23, 23);
  1589. this.btnBoard61_loop2.TabIndex = 144;
  1590. this.btnBoard61_loop2.UseVisualStyleBackColor = true;
  1591. //
  1592. // btnBoard25_loop2
  1593. //
  1594. this.btnBoard25_loop2.Location = new System.Drawing.Point(445, 180);
  1595. this.btnBoard25_loop2.Name = "btnBoard25_loop2";
  1596. this.btnBoard25_loop2.Size = new System.Drawing.Size(23, 23);
  1597. this.btnBoard25_loop2.TabIndex = 144;
  1598. this.btnBoard25_loop2.UseVisualStyleBackColor = true;
  1599. //
  1600. // btnBoard45_loop2
  1601. //
  1602. this.btnBoard45_loop2.Location = new System.Drawing.Point(715, 180);
  1603. this.btnBoard45_loop2.Name = "btnBoard45_loop2";
  1604. this.btnBoard45_loop2.Size = new System.Drawing.Size(23, 23);
  1605. this.btnBoard45_loop2.TabIndex = 144;
  1606. this.btnBoard45_loop2.UseVisualStyleBackColor = true;
  1607. //
  1608. // btnBoard10_loop2
  1609. //
  1610. this.btnBoard10_loop2.Location = new System.Drawing.Point(175, 320);
  1611. this.btnBoard10_loop2.Name = "btnBoard10_loop2";
  1612. this.btnBoard10_loop2.Size = new System.Drawing.Size(23, 23);
  1613. this.btnBoard10_loop2.TabIndex = 144;
  1614. this.btnBoard10_loop2.UseVisualStyleBackColor = true;
  1615. //
  1616. // btnBoard30_loop2
  1617. //
  1618. this.btnBoard30_loop2.Location = new System.Drawing.Point(445, 320);
  1619. this.btnBoard30_loop2.Name = "btnBoard30_loop2";
  1620. this.btnBoard30_loop2.Size = new System.Drawing.Size(23, 23);
  1621. this.btnBoard30_loop2.TabIndex = 144;
  1622. this.btnBoard30_loop2.UseVisualStyleBackColor = true;
  1623. //
  1624. // btnBoard50_loop2
  1625. //
  1626. this.btnBoard50_loop2.Location = new System.Drawing.Point(715, 320);
  1627. this.btnBoard50_loop2.Name = "btnBoard50_loop2";
  1628. this.btnBoard50_loop2.Size = new System.Drawing.Size(23, 23);
  1629. this.btnBoard50_loop2.TabIndex = 144;
  1630. this.btnBoard50_loop2.UseVisualStyleBackColor = true;
  1631. //
  1632. // btnBoard18_loop2
  1633. //
  1634. this.btnBoard18_loop2.Location = new System.Drawing.Point(175, 544);
  1635. this.btnBoard18_loop2.Name = "btnBoard18_loop2";
  1636. this.btnBoard18_loop2.Size = new System.Drawing.Size(23, 23);
  1637. this.btnBoard18_loop2.TabIndex = 144;
  1638. this.btnBoard18_loop2.UseVisualStyleBackColor = true;
  1639. //
  1640. // btnBoard38_loop2
  1641. //
  1642. this.btnBoard38_loop2.Location = new System.Drawing.Point(445, 544);
  1643. this.btnBoard38_loop2.Name = "btnBoard38_loop2";
  1644. this.btnBoard38_loop2.Size = new System.Drawing.Size(23, 23);
  1645. this.btnBoard38_loop2.TabIndex = 144;
  1646. this.btnBoard38_loop2.UseVisualStyleBackColor = true;
  1647. //
  1648. // btnBoard58_loop2
  1649. //
  1650. this.btnBoard58_loop2.Location = new System.Drawing.Point(715, 544);
  1651. this.btnBoard58_loop2.Name = "btnBoard58_loop2";
  1652. this.btnBoard58_loop2.Size = new System.Drawing.Size(23, 23);
  1653. this.btnBoard58_loop2.TabIndex = 144;
  1654. this.btnBoard58_loop2.UseVisualStyleBackColor = true;
  1655. //
  1656. // btnBoard14_loop2
  1657. //
  1658. this.btnBoard14_loop2.Location = new System.Drawing.Point(175, 432);
  1659. this.btnBoard14_loop2.Name = "btnBoard14_loop2";
  1660. this.btnBoard14_loop2.Size = new System.Drawing.Size(23, 23);
  1661. this.btnBoard14_loop2.TabIndex = 144;
  1662. this.btnBoard14_loop2.UseVisualStyleBackColor = true;
  1663. //
  1664. // btnBoard34_loop2
  1665. //
  1666. this.btnBoard34_loop2.Location = new System.Drawing.Point(445, 432);
  1667. this.btnBoard34_loop2.Name = "btnBoard34_loop2";
  1668. this.btnBoard34_loop2.Size = new System.Drawing.Size(23, 23);
  1669. this.btnBoard34_loop2.TabIndex = 144;
  1670. this.btnBoard34_loop2.UseVisualStyleBackColor = true;
  1671. //
  1672. // btnBoard54_loop2
  1673. //
  1674. this.btnBoard54_loop2.Location = new System.Drawing.Point(715, 432);
  1675. this.btnBoard54_loop2.Name = "btnBoard54_loop2";
  1676. this.btnBoard54_loop2.Size = new System.Drawing.Size(23, 23);
  1677. this.btnBoard54_loop2.TabIndex = 144;
  1678. this.btnBoard54_loop2.UseVisualStyleBackColor = true;
  1679. //
  1680. // btnBoard22_loop2
  1681. //
  1682. this.btnBoard22_loop2.Location = new System.Drawing.Point(445, 96);
  1683. this.btnBoard22_loop2.Name = "btnBoard22_loop2";
  1684. this.btnBoard22_loop2.Size = new System.Drawing.Size(23, 23);
  1685. this.btnBoard22_loop2.TabIndex = 144;
  1686. this.btnBoard22_loop2.UseVisualStyleBackColor = true;
  1687. //
  1688. // btnBoard42_loop2
  1689. //
  1690. this.btnBoard42_loop2.Location = new System.Drawing.Point(715, 96);
  1691. this.btnBoard42_loop2.Name = "btnBoard42_loop2";
  1692. this.btnBoard42_loop2.Size = new System.Drawing.Size(23, 23);
  1693. this.btnBoard42_loop2.TabIndex = 144;
  1694. this.btnBoard42_loop2.UseVisualStyleBackColor = true;
  1695. //
  1696. // btnBoard62_loop2
  1697. //
  1698. this.btnBoard62_loop2.Location = new System.Drawing.Point(985, 96);
  1699. this.btnBoard62_loop2.Name = "btnBoard62_loop2";
  1700. this.btnBoard62_loop2.Size = new System.Drawing.Size(23, 23);
  1701. this.btnBoard62_loop2.TabIndex = 144;
  1702. this.btnBoard62_loop2.UseVisualStyleBackColor = true;
  1703. //
  1704. // btnBoard26_loop2
  1705. //
  1706. this.btnBoard26_loop2.Location = new System.Drawing.Point(445, 208);
  1707. this.btnBoard26_loop2.Name = "btnBoard26_loop2";
  1708. this.btnBoard26_loop2.Size = new System.Drawing.Size(23, 23);
  1709. this.btnBoard26_loop2.TabIndex = 144;
  1710. this.btnBoard26_loop2.UseVisualStyleBackColor = true;
  1711. //
  1712. // btnBoard46_loop2
  1713. //
  1714. this.btnBoard46_loop2.Location = new System.Drawing.Point(715, 208);
  1715. this.btnBoard46_loop2.Name = "btnBoard46_loop2";
  1716. this.btnBoard46_loop2.Size = new System.Drawing.Size(23, 23);
  1717. this.btnBoard46_loop2.TabIndex = 144;
  1718. this.btnBoard46_loop2.UseVisualStyleBackColor = true;
  1719. //
  1720. // btnBoard11_loop2
  1721. //
  1722. this.btnBoard11_loop2.Location = new System.Drawing.Point(175, 348);
  1723. this.btnBoard11_loop2.Name = "btnBoard11_loop2";
  1724. this.btnBoard11_loop2.Size = new System.Drawing.Size(23, 23);
  1725. this.btnBoard11_loop2.TabIndex = 144;
  1726. this.btnBoard11_loop2.UseVisualStyleBackColor = true;
  1727. //
  1728. // btnBoard31_loop2
  1729. //
  1730. this.btnBoard31_loop2.Location = new System.Drawing.Point(445, 348);
  1731. this.btnBoard31_loop2.Name = "btnBoard31_loop2";
  1732. this.btnBoard31_loop2.Size = new System.Drawing.Size(23, 23);
  1733. this.btnBoard31_loop2.TabIndex = 144;
  1734. this.btnBoard31_loop2.UseVisualStyleBackColor = true;
  1735. //
  1736. // btnBoard51_loop2
  1737. //
  1738. this.btnBoard51_loop2.Location = new System.Drawing.Point(715, 348);
  1739. this.btnBoard51_loop2.Name = "btnBoard51_loop2";
  1740. this.btnBoard51_loop2.Size = new System.Drawing.Size(23, 23);
  1741. this.btnBoard51_loop2.TabIndex = 144;
  1742. this.btnBoard51_loop2.UseVisualStyleBackColor = true;
  1743. //
  1744. // btnBoard19_loop2
  1745. //
  1746. this.btnBoard19_loop2.Location = new System.Drawing.Point(175, 572);
  1747. this.btnBoard19_loop2.Name = "btnBoard19_loop2";
  1748. this.btnBoard19_loop2.Size = new System.Drawing.Size(23, 23);
  1749. this.btnBoard19_loop2.TabIndex = 144;
  1750. this.btnBoard19_loop2.UseVisualStyleBackColor = true;
  1751. //
  1752. // btnBoard39_loop2
  1753. //
  1754. this.btnBoard39_loop2.Location = new System.Drawing.Point(445, 572);
  1755. this.btnBoard39_loop2.Name = "btnBoard39_loop2";
  1756. this.btnBoard39_loop2.Size = new System.Drawing.Size(23, 23);
  1757. this.btnBoard39_loop2.TabIndex = 144;
  1758. this.btnBoard39_loop2.UseVisualStyleBackColor = true;
  1759. //
  1760. // btnBoard59_loop2
  1761. //
  1762. this.btnBoard59_loop2.Location = new System.Drawing.Point(715, 572);
  1763. this.btnBoard59_loop2.Name = "btnBoard59_loop2";
  1764. this.btnBoard59_loop2.Size = new System.Drawing.Size(23, 23);
  1765. this.btnBoard59_loop2.TabIndex = 144;
  1766. this.btnBoard59_loop2.UseVisualStyleBackColor = true;
  1767. //
  1768. // btnBoard15_loop2
  1769. //
  1770. this.btnBoard15_loop2.Location = new System.Drawing.Point(175, 460);
  1771. this.btnBoard15_loop2.Name = "btnBoard15_loop2";
  1772. this.btnBoard15_loop2.Size = new System.Drawing.Size(23, 23);
  1773. this.btnBoard15_loop2.TabIndex = 144;
  1774. this.btnBoard15_loop2.UseVisualStyleBackColor = true;
  1775. //
  1776. // btnBoard35_loop2
  1777. //
  1778. this.btnBoard35_loop2.Location = new System.Drawing.Point(445, 460);
  1779. this.btnBoard35_loop2.Name = "btnBoard35_loop2";
  1780. this.btnBoard35_loop2.Size = new System.Drawing.Size(23, 23);
  1781. this.btnBoard35_loop2.TabIndex = 144;
  1782. this.btnBoard35_loop2.UseVisualStyleBackColor = true;
  1783. //
  1784. // btnBoard55_loop2
  1785. //
  1786. this.btnBoard55_loop2.Location = new System.Drawing.Point(715, 460);
  1787. this.btnBoard55_loop2.Name = "btnBoard55_loop2";
  1788. this.btnBoard55_loop2.Size = new System.Drawing.Size(23, 23);
  1789. this.btnBoard55_loop2.TabIndex = 144;
  1790. this.btnBoard55_loop2.UseVisualStyleBackColor = true;
  1791. //
  1792. // btnBoard23_loop2
  1793. //
  1794. this.btnBoard23_loop2.Location = new System.Drawing.Point(445, 124);
  1795. this.btnBoard23_loop2.Name = "btnBoard23_loop2";
  1796. this.btnBoard23_loop2.Size = new System.Drawing.Size(23, 23);
  1797. this.btnBoard23_loop2.TabIndex = 144;
  1798. this.btnBoard23_loop2.UseVisualStyleBackColor = true;
  1799. //
  1800. // btnBoard43_loop2
  1801. //
  1802. this.btnBoard43_loop2.Location = new System.Drawing.Point(715, 124);
  1803. this.btnBoard43_loop2.Name = "btnBoard43_loop2";
  1804. this.btnBoard43_loop2.Size = new System.Drawing.Size(23, 23);
  1805. this.btnBoard43_loop2.TabIndex = 144;
  1806. this.btnBoard43_loop2.UseVisualStyleBackColor = true;
  1807. //
  1808. // btnBoard63_loop2
  1809. //
  1810. this.btnBoard63_loop2.Location = new System.Drawing.Point(985, 124);
  1811. this.btnBoard63_loop2.Name = "btnBoard63_loop2";
  1812. this.btnBoard63_loop2.Size = new System.Drawing.Size(23, 23);
  1813. this.btnBoard63_loop2.TabIndex = 144;
  1814. this.btnBoard63_loop2.UseVisualStyleBackColor = true;
  1815. //
  1816. // btnBoard27_loop2
  1817. //
  1818. this.btnBoard27_loop2.Location = new System.Drawing.Point(445, 236);
  1819. this.btnBoard27_loop2.Name = "btnBoard27_loop2";
  1820. this.btnBoard27_loop2.Size = new System.Drawing.Size(23, 23);
  1821. this.btnBoard27_loop2.TabIndex = 144;
  1822. this.btnBoard27_loop2.UseVisualStyleBackColor = true;
  1823. //
  1824. // btnBoard47_loop2
  1825. //
  1826. this.btnBoard47_loop2.Location = new System.Drawing.Point(715, 236);
  1827. this.btnBoard47_loop2.Name = "btnBoard47_loop2";
  1828. this.btnBoard47_loop2.Size = new System.Drawing.Size(23, 23);
  1829. this.btnBoard47_loop2.TabIndex = 144;
  1830. this.btnBoard47_loop2.UseVisualStyleBackColor = true;
  1831. //
  1832. // btnBoard12_loop2
  1833. //
  1834. this.btnBoard12_loop2.Location = new System.Drawing.Point(175, 376);
  1835. this.btnBoard12_loop2.Name = "btnBoard12_loop2";
  1836. this.btnBoard12_loop2.Size = new System.Drawing.Size(23, 23);
  1837. this.btnBoard12_loop2.TabIndex = 144;
  1838. this.btnBoard12_loop2.UseVisualStyleBackColor = true;
  1839. //
  1840. // btnBoard32_loop2
  1841. //
  1842. this.btnBoard32_loop2.Location = new System.Drawing.Point(445, 376);
  1843. this.btnBoard32_loop2.Name = "btnBoard32_loop2";
  1844. this.btnBoard32_loop2.Size = new System.Drawing.Size(23, 23);
  1845. this.btnBoard32_loop2.TabIndex = 144;
  1846. this.btnBoard32_loop2.UseVisualStyleBackColor = true;
  1847. //
  1848. // btnBoard52_loop2
  1849. //
  1850. this.btnBoard52_loop2.Location = new System.Drawing.Point(715, 376);
  1851. this.btnBoard52_loop2.Name = "btnBoard52_loop2";
  1852. this.btnBoard52_loop2.Size = new System.Drawing.Size(23, 23);
  1853. this.btnBoard52_loop2.TabIndex = 144;
  1854. this.btnBoard52_loop2.UseVisualStyleBackColor = true;
  1855. //
  1856. // btnBoard20_loop2
  1857. //
  1858. this.btnBoard20_loop2.Location = new System.Drawing.Point(175, 600);
  1859. this.btnBoard20_loop2.Name = "btnBoard20_loop2";
  1860. this.btnBoard20_loop2.Size = new System.Drawing.Size(23, 23);
  1861. this.btnBoard20_loop2.TabIndex = 144;
  1862. this.btnBoard20_loop2.UseVisualStyleBackColor = true;
  1863. //
  1864. // btnBoard40_loop2
  1865. //
  1866. this.btnBoard40_loop2.Location = new System.Drawing.Point(445, 600);
  1867. this.btnBoard40_loop2.Name = "btnBoard40_loop2";
  1868. this.btnBoard40_loop2.Size = new System.Drawing.Size(23, 23);
  1869. this.btnBoard40_loop2.TabIndex = 144;
  1870. this.btnBoard40_loop2.UseVisualStyleBackColor = true;
  1871. //
  1872. // btnBoard60_loop2
  1873. //
  1874. this.btnBoard60_loop2.Location = new System.Drawing.Point(715, 600);
  1875. this.btnBoard60_loop2.Name = "btnBoard60_loop2";
  1876. this.btnBoard60_loop2.Size = new System.Drawing.Size(23, 23);
  1877. this.btnBoard60_loop2.TabIndex = 144;
  1878. this.btnBoard60_loop2.UseVisualStyleBackColor = true;
  1879. //
  1880. // btnBoard16_loop2
  1881. //
  1882. this.btnBoard16_loop2.Location = new System.Drawing.Point(175, 488);
  1883. this.btnBoard16_loop2.Name = "btnBoard16_loop2";
  1884. this.btnBoard16_loop2.Size = new System.Drawing.Size(23, 23);
  1885. this.btnBoard16_loop2.TabIndex = 144;
  1886. this.btnBoard16_loop2.UseVisualStyleBackColor = true;
  1887. //
  1888. // btnBoard36_loop2
  1889. //
  1890. this.btnBoard36_loop2.Location = new System.Drawing.Point(445, 488);
  1891. this.btnBoard36_loop2.Name = "btnBoard36_loop2";
  1892. this.btnBoard36_loop2.Size = new System.Drawing.Size(23, 23);
  1893. this.btnBoard36_loop2.TabIndex = 144;
  1894. this.btnBoard36_loop2.UseVisualStyleBackColor = true;
  1895. //
  1896. // btnBoard56_loop2
  1897. //
  1898. this.btnBoard56_loop2.Location = new System.Drawing.Point(715, 488);
  1899. this.btnBoard56_loop2.Name = "btnBoard56_loop2";
  1900. this.btnBoard56_loop2.Size = new System.Drawing.Size(23, 23);
  1901. this.btnBoard56_loop2.TabIndex = 144;
  1902. this.btnBoard56_loop2.UseVisualStyleBackColor = true;
  1903. //
  1904. // btnBoard24_loop2
  1905. //
  1906. this.btnBoard24_loop2.Location = new System.Drawing.Point(445, 152);
  1907. this.btnBoard24_loop2.Name = "btnBoard24_loop2";
  1908. this.btnBoard24_loop2.Size = new System.Drawing.Size(23, 23);
  1909. this.btnBoard24_loop2.TabIndex = 144;
  1910. this.btnBoard24_loop2.UseVisualStyleBackColor = true;
  1911. //
  1912. // btnBoard44_loop2
  1913. //
  1914. this.btnBoard44_loop2.Location = new System.Drawing.Point(715, 152);
  1915. this.btnBoard44_loop2.Name = "btnBoard44_loop2";
  1916. this.btnBoard44_loop2.Size = new System.Drawing.Size(23, 23);
  1917. this.btnBoard44_loop2.TabIndex = 144;
  1918. this.btnBoard44_loop2.UseVisualStyleBackColor = true;
  1919. //
  1920. // btnBoard64_loop2
  1921. //
  1922. this.btnBoard64_loop2.Location = new System.Drawing.Point(985, 152);
  1923. this.btnBoard64_loop2.Name = "btnBoard64_loop2";
  1924. this.btnBoard64_loop2.Size = new System.Drawing.Size(23, 23);
  1925. this.btnBoard64_loop2.TabIndex = 144;
  1926. this.btnBoard64_loop2.UseVisualStyleBackColor = true;
  1927. //
  1928. // btnBoard28_loop2
  1929. //
  1930. this.btnBoard28_loop2.Location = new System.Drawing.Point(445, 264);
  1931. this.btnBoard28_loop2.Name = "btnBoard28_loop2";
  1932. this.btnBoard28_loop2.Size = new System.Drawing.Size(23, 23);
  1933. this.btnBoard28_loop2.TabIndex = 144;
  1934. this.btnBoard28_loop2.UseVisualStyleBackColor = true;
  1935. //
  1936. // btnBoard48_loop2
  1937. //
  1938. this.btnBoard48_loop2.Location = new System.Drawing.Point(715, 264);
  1939. this.btnBoard48_loop2.Name = "btnBoard48_loop2";
  1940. this.btnBoard48_loop2.Size = new System.Drawing.Size(23, 23);
  1941. this.btnBoard48_loop2.TabIndex = 144;
  1942. this.btnBoard48_loop2.UseVisualStyleBackColor = true;
  1943. //
  1944. // lbl_COMM53
  1945. //
  1946. this.lbl_COMM53.AutoSize = true;
  1947. this.lbl_COMM53.Font = new System.Drawing.Font("굴림", 10F);
  1948. this.lbl_COMM53.Location = new System.Drawing.Point(555, 409);
  1949. this.lbl_COMM53.Name = "lbl_COMM53";
  1950. this.lbl_COMM53.Size = new System.Drawing.Size(70, 14);
  1951. this.lbl_COMM53.TabIndex = 492;
  1952. this.lbl_COMM53.Text = "중계반 53";
  1953. //
  1954. // lbl_COMM18
  1955. //
  1956. this.lbl_COMM18.AutoSize = true;
  1957. this.lbl_COMM18.Font = new System.Drawing.Font("굴림", 10F);
  1958. this.lbl_COMM18.Location = new System.Drawing.Point(15, 549);
  1959. this.lbl_COMM18.Name = "lbl_COMM18";
  1960. this.lbl_COMM18.Size = new System.Drawing.Size(70, 14);
  1961. this.lbl_COMM18.TabIndex = 496;
  1962. this.lbl_COMM18.Text = "중계반 18";
  1963. //
  1964. // lbl_COMM38
  1965. //
  1966. this.lbl_COMM38.AutoSize = true;
  1967. this.lbl_COMM38.Font = new System.Drawing.Font("굴림", 10F);
  1968. this.lbl_COMM38.Location = new System.Drawing.Point(285, 549);
  1969. this.lbl_COMM38.Name = "lbl_COMM38";
  1970. this.lbl_COMM38.Size = new System.Drawing.Size(70, 14);
  1971. this.lbl_COMM38.TabIndex = 495;
  1972. this.lbl_COMM38.Text = "중계반 38";
  1973. //
  1974. // lbl_COMM58
  1975. //
  1976. this.lbl_COMM58.AutoSize = true;
  1977. this.lbl_COMM58.Font = new System.Drawing.Font("굴림", 10F);
  1978. this.lbl_COMM58.Location = new System.Drawing.Point(555, 549);
  1979. this.lbl_COMM58.Name = "lbl_COMM58";
  1980. this.lbl_COMM58.Size = new System.Drawing.Size(70, 14);
  1981. this.lbl_COMM58.TabIndex = 497;
  1982. this.lbl_COMM58.Text = "중계반 58";
  1983. //
  1984. // lbl_COMM14
  1985. //
  1986. this.lbl_COMM14.AutoSize = true;
  1987. this.lbl_COMM14.Font = new System.Drawing.Font("굴림", 10F);
  1988. this.lbl_COMM14.Location = new System.Drawing.Point(15, 437);
  1989. this.lbl_COMM14.Name = "lbl_COMM14";
  1990. this.lbl_COMM14.Size = new System.Drawing.Size(70, 14);
  1991. this.lbl_COMM14.TabIndex = 532;
  1992. this.lbl_COMM14.Text = "중계반 14";
  1993. //
  1994. // lbl_COMM34
  1995. //
  1996. this.lbl_COMM34.AutoSize = true;
  1997. this.lbl_COMM34.Font = new System.Drawing.Font("굴림", 10F);
  1998. this.lbl_COMM34.Location = new System.Drawing.Point(285, 437);
  1999. this.lbl_COMM34.Name = "lbl_COMM34";
  2000. this.lbl_COMM34.Size = new System.Drawing.Size(70, 14);
  2001. this.lbl_COMM34.TabIndex = 531;
  2002. this.lbl_COMM34.Text = "중계반 34";
  2003. //
  2004. // btnBoard9_loop1
  2005. //
  2006. this.btnBoard9_loop1.Location = new System.Drawing.Point(145, 292);
  2007. this.btnBoard9_loop1.Name = "btnBoard9_loop1";
  2008. this.btnBoard9_loop1.Size = new System.Drawing.Size(23, 23);
  2009. this.btnBoard9_loop1.TabIndex = 144;
  2010. this.btnBoard9_loop1.UseVisualStyleBackColor = true;
  2011. //
  2012. // btnBoard29_loop1
  2013. //
  2014. this.btnBoard29_loop1.Location = new System.Drawing.Point(415, 292);
  2015. this.btnBoard29_loop1.Name = "btnBoard29_loop1";
  2016. this.btnBoard29_loop1.Size = new System.Drawing.Size(23, 23);
  2017. this.btnBoard29_loop1.TabIndex = 144;
  2018. this.btnBoard29_loop1.UseVisualStyleBackColor = true;
  2019. //
  2020. // btnBoard49_loop1
  2021. //
  2022. this.btnBoard49_loop1.Location = new System.Drawing.Point(685, 292);
  2023. this.btnBoard49_loop1.Name = "btnBoard49_loop1";
  2024. this.btnBoard49_loop1.Size = new System.Drawing.Size(23, 23);
  2025. this.btnBoard49_loop1.TabIndex = 144;
  2026. this.btnBoard49_loop1.UseVisualStyleBackColor = true;
  2027. //
  2028. // btnBoard17_loop1
  2029. //
  2030. this.btnBoard17_loop1.Location = new System.Drawing.Point(145, 516);
  2031. this.btnBoard17_loop1.Name = "btnBoard17_loop1";
  2032. this.btnBoard17_loop1.Size = new System.Drawing.Size(23, 23);
  2033. this.btnBoard17_loop1.TabIndex = 144;
  2034. this.btnBoard17_loop1.UseVisualStyleBackColor = true;
  2035. //
  2036. // btnBoard37_loop1
  2037. //
  2038. this.btnBoard37_loop1.Location = new System.Drawing.Point(415, 516);
  2039. this.btnBoard37_loop1.Name = "btnBoard37_loop1";
  2040. this.btnBoard37_loop1.Size = new System.Drawing.Size(23, 23);
  2041. this.btnBoard37_loop1.TabIndex = 144;
  2042. this.btnBoard37_loop1.UseVisualStyleBackColor = true;
  2043. //
  2044. // btnBoard57_loop1
  2045. //
  2046. this.btnBoard57_loop1.Location = new System.Drawing.Point(685, 516);
  2047. this.btnBoard57_loop1.Name = "btnBoard57_loop1";
  2048. this.btnBoard57_loop1.Size = new System.Drawing.Size(23, 23);
  2049. this.btnBoard57_loop1.TabIndex = 144;
  2050. this.btnBoard57_loop1.UseVisualStyleBackColor = true;
  2051. //
  2052. // btnBoard13_loop1
  2053. //
  2054. this.btnBoard13_loop1.Location = new System.Drawing.Point(145, 404);
  2055. this.btnBoard13_loop1.Name = "btnBoard13_loop1";
  2056. this.btnBoard13_loop1.Size = new System.Drawing.Size(23, 23);
  2057. this.btnBoard13_loop1.TabIndex = 144;
  2058. this.btnBoard13_loop1.UseVisualStyleBackColor = true;
  2059. //
  2060. // btnBoard33_loop1
  2061. //
  2062. this.btnBoard33_loop1.Location = new System.Drawing.Point(415, 404);
  2063. this.btnBoard33_loop1.Name = "btnBoard33_loop1";
  2064. this.btnBoard33_loop1.Size = new System.Drawing.Size(23, 23);
  2065. this.btnBoard33_loop1.TabIndex = 144;
  2066. this.btnBoard33_loop1.UseVisualStyleBackColor = true;
  2067. //
  2068. // btnBoard53_loop1
  2069. //
  2070. this.btnBoard53_loop1.Location = new System.Drawing.Point(685, 404);
  2071. this.btnBoard53_loop1.Name = "btnBoard53_loop1";
  2072. this.btnBoard53_loop1.Size = new System.Drawing.Size(23, 23);
  2073. this.btnBoard53_loop1.TabIndex = 144;
  2074. this.btnBoard53_loop1.UseVisualStyleBackColor = true;
  2075. //
  2076. // btnBoard21_loop1
  2077. //
  2078. this.btnBoard21_loop1.Location = new System.Drawing.Point(415, 68);
  2079. this.btnBoard21_loop1.Name = "btnBoard21_loop1";
  2080. this.btnBoard21_loop1.Size = new System.Drawing.Size(23, 23);
  2081. this.btnBoard21_loop1.TabIndex = 144;
  2082. this.btnBoard21_loop1.UseVisualStyleBackColor = true;
  2083. //
  2084. // btnBoard41_loop1
  2085. //
  2086. this.btnBoard41_loop1.Location = new System.Drawing.Point(685, 68);
  2087. this.btnBoard41_loop1.Name = "btnBoard41_loop1";
  2088. this.btnBoard41_loop1.Size = new System.Drawing.Size(23, 23);
  2089. this.btnBoard41_loop1.TabIndex = 144;
  2090. this.btnBoard41_loop1.UseVisualStyleBackColor = true;
  2091. //
  2092. // btnBoard61_loop1
  2093. //
  2094. this.btnBoard61_loop1.Location = new System.Drawing.Point(955, 68);
  2095. this.btnBoard61_loop1.Name = "btnBoard61_loop1";
  2096. this.btnBoard61_loop1.Size = new System.Drawing.Size(23, 23);
  2097. this.btnBoard61_loop1.TabIndex = 144;
  2098. this.btnBoard61_loop1.UseVisualStyleBackColor = true;
  2099. //
  2100. // btnBoard25_loop1
  2101. //
  2102. this.btnBoard25_loop1.Location = new System.Drawing.Point(415, 180);
  2103. this.btnBoard25_loop1.Name = "btnBoard25_loop1";
  2104. this.btnBoard25_loop1.Size = new System.Drawing.Size(23, 23);
  2105. this.btnBoard25_loop1.TabIndex = 144;
  2106. this.btnBoard25_loop1.UseVisualStyleBackColor = true;
  2107. //
  2108. // btnBoard45_loop1
  2109. //
  2110. this.btnBoard45_loop1.Location = new System.Drawing.Point(685, 180);
  2111. this.btnBoard45_loop1.Name = "btnBoard45_loop1";
  2112. this.btnBoard45_loop1.Size = new System.Drawing.Size(23, 23);
  2113. this.btnBoard45_loop1.TabIndex = 144;
  2114. this.btnBoard45_loop1.UseVisualStyleBackColor = true;
  2115. //
  2116. // btnBoard10_loop1
  2117. //
  2118. this.btnBoard10_loop1.Location = new System.Drawing.Point(145, 320);
  2119. this.btnBoard10_loop1.Name = "btnBoard10_loop1";
  2120. this.btnBoard10_loop1.Size = new System.Drawing.Size(23, 23);
  2121. this.btnBoard10_loop1.TabIndex = 144;
  2122. this.btnBoard10_loop1.UseVisualStyleBackColor = true;
  2123. //
  2124. // btnBoard30_loop1
  2125. //
  2126. this.btnBoard30_loop1.Location = new System.Drawing.Point(415, 320);
  2127. this.btnBoard30_loop1.Name = "btnBoard30_loop1";
  2128. this.btnBoard30_loop1.Size = new System.Drawing.Size(23, 23);
  2129. this.btnBoard30_loop1.TabIndex = 144;
  2130. this.btnBoard30_loop1.UseVisualStyleBackColor = true;
  2131. //
  2132. // btnBoard50_loop1
  2133. //
  2134. this.btnBoard50_loop1.Location = new System.Drawing.Point(685, 320);
  2135. this.btnBoard50_loop1.Name = "btnBoard50_loop1";
  2136. this.btnBoard50_loop1.Size = new System.Drawing.Size(23, 23);
  2137. this.btnBoard50_loop1.TabIndex = 144;
  2138. this.btnBoard50_loop1.UseVisualStyleBackColor = true;
  2139. //
  2140. // btnBoard18_loop1
  2141. //
  2142. this.btnBoard18_loop1.Location = new System.Drawing.Point(145, 544);
  2143. this.btnBoard18_loop1.Name = "btnBoard18_loop1";
  2144. this.btnBoard18_loop1.Size = new System.Drawing.Size(23, 23);
  2145. this.btnBoard18_loop1.TabIndex = 144;
  2146. this.btnBoard18_loop1.UseVisualStyleBackColor = true;
  2147. //
  2148. // btnBoard38_loop1
  2149. //
  2150. this.btnBoard38_loop1.Location = new System.Drawing.Point(415, 544);
  2151. this.btnBoard38_loop1.Name = "btnBoard38_loop1";
  2152. this.btnBoard38_loop1.Size = new System.Drawing.Size(23, 23);
  2153. this.btnBoard38_loop1.TabIndex = 144;
  2154. this.btnBoard38_loop1.UseVisualStyleBackColor = true;
  2155. //
  2156. // btnBoard58_loop1
  2157. //
  2158. this.btnBoard58_loop1.Location = new System.Drawing.Point(685, 544);
  2159. this.btnBoard58_loop1.Name = "btnBoard58_loop1";
  2160. this.btnBoard58_loop1.Size = new System.Drawing.Size(23, 23);
  2161. this.btnBoard58_loop1.TabIndex = 144;
  2162. this.btnBoard58_loop1.UseVisualStyleBackColor = true;
  2163. //
  2164. // btnBoard14_loop1
  2165. //
  2166. this.btnBoard14_loop1.Location = new System.Drawing.Point(145, 432);
  2167. this.btnBoard14_loop1.Name = "btnBoard14_loop1";
  2168. this.btnBoard14_loop1.Size = new System.Drawing.Size(23, 23);
  2169. this.btnBoard14_loop1.TabIndex = 144;
  2170. this.btnBoard14_loop1.UseVisualStyleBackColor = true;
  2171. //
  2172. // btnBoard34_loop1
  2173. //
  2174. this.btnBoard34_loop1.Location = new System.Drawing.Point(415, 432);
  2175. this.btnBoard34_loop1.Name = "btnBoard34_loop1";
  2176. this.btnBoard34_loop1.Size = new System.Drawing.Size(23, 23);
  2177. this.btnBoard34_loop1.TabIndex = 144;
  2178. this.btnBoard34_loop1.UseVisualStyleBackColor = true;
  2179. //
  2180. // btnBoard54_loop1
  2181. //
  2182. this.btnBoard54_loop1.Location = new System.Drawing.Point(685, 432);
  2183. this.btnBoard54_loop1.Name = "btnBoard54_loop1";
  2184. this.btnBoard54_loop1.Size = new System.Drawing.Size(23, 23);
  2185. this.btnBoard54_loop1.TabIndex = 144;
  2186. this.btnBoard54_loop1.UseVisualStyleBackColor = true;
  2187. //
  2188. // btnBoard22_loop1
  2189. //
  2190. this.btnBoard22_loop1.Location = new System.Drawing.Point(415, 96);
  2191. this.btnBoard22_loop1.Name = "btnBoard22_loop1";
  2192. this.btnBoard22_loop1.Size = new System.Drawing.Size(23, 23);
  2193. this.btnBoard22_loop1.TabIndex = 144;
  2194. this.btnBoard22_loop1.UseVisualStyleBackColor = true;
  2195. //
  2196. // btnBoard42_loop1
  2197. //
  2198. this.btnBoard42_loop1.Location = new System.Drawing.Point(685, 96);
  2199. this.btnBoard42_loop1.Name = "btnBoard42_loop1";
  2200. this.btnBoard42_loop1.Size = new System.Drawing.Size(23, 23);
  2201. this.btnBoard42_loop1.TabIndex = 144;
  2202. this.btnBoard42_loop1.UseVisualStyleBackColor = true;
  2203. //
  2204. // btnBoard62_loop1
  2205. //
  2206. this.btnBoard62_loop1.Location = new System.Drawing.Point(955, 96);
  2207. this.btnBoard62_loop1.Name = "btnBoard62_loop1";
  2208. this.btnBoard62_loop1.Size = new System.Drawing.Size(23, 23);
  2209. this.btnBoard62_loop1.TabIndex = 144;
  2210. this.btnBoard62_loop1.UseVisualStyleBackColor = true;
  2211. //
  2212. // btnBoard26_loop1
  2213. //
  2214. this.btnBoard26_loop1.Location = new System.Drawing.Point(415, 208);
  2215. this.btnBoard26_loop1.Name = "btnBoard26_loop1";
  2216. this.btnBoard26_loop1.Size = new System.Drawing.Size(23, 23);
  2217. this.btnBoard26_loop1.TabIndex = 144;
  2218. this.btnBoard26_loop1.UseVisualStyleBackColor = true;
  2219. //
  2220. // btnBoard46_loop1
  2221. //
  2222. this.btnBoard46_loop1.Location = new System.Drawing.Point(685, 208);
  2223. this.btnBoard46_loop1.Name = "btnBoard46_loop1";
  2224. this.btnBoard46_loop1.Size = new System.Drawing.Size(23, 23);
  2225. this.btnBoard46_loop1.TabIndex = 144;
  2226. this.btnBoard46_loop1.UseVisualStyleBackColor = true;
  2227. //
  2228. // btnBoard11_loop1
  2229. //
  2230. this.btnBoard11_loop1.Location = new System.Drawing.Point(145, 348);
  2231. this.btnBoard11_loop1.Name = "btnBoard11_loop1";
  2232. this.btnBoard11_loop1.Size = new System.Drawing.Size(23, 23);
  2233. this.btnBoard11_loop1.TabIndex = 144;
  2234. this.btnBoard11_loop1.UseVisualStyleBackColor = true;
  2235. //
  2236. // btnBoard31_loop1
  2237. //
  2238. this.btnBoard31_loop1.Location = new System.Drawing.Point(415, 348);
  2239. this.btnBoard31_loop1.Name = "btnBoard31_loop1";
  2240. this.btnBoard31_loop1.Size = new System.Drawing.Size(23, 23);
  2241. this.btnBoard31_loop1.TabIndex = 144;
  2242. this.btnBoard31_loop1.UseVisualStyleBackColor = true;
  2243. //
  2244. // btnBoard51_loop1
  2245. //
  2246. this.btnBoard51_loop1.Location = new System.Drawing.Point(685, 348);
  2247. this.btnBoard51_loop1.Name = "btnBoard51_loop1";
  2248. this.btnBoard51_loop1.Size = new System.Drawing.Size(23, 23);
  2249. this.btnBoard51_loop1.TabIndex = 144;
  2250. this.btnBoard51_loop1.UseVisualStyleBackColor = true;
  2251. //
  2252. // btnBoard19_loop1
  2253. //
  2254. this.btnBoard19_loop1.Location = new System.Drawing.Point(145, 572);
  2255. this.btnBoard19_loop1.Name = "btnBoard19_loop1";
  2256. this.btnBoard19_loop1.Size = new System.Drawing.Size(23, 23);
  2257. this.btnBoard19_loop1.TabIndex = 144;
  2258. this.btnBoard19_loop1.UseVisualStyleBackColor = true;
  2259. //
  2260. // btnBoard39_loop1
  2261. //
  2262. this.btnBoard39_loop1.Location = new System.Drawing.Point(415, 572);
  2263. this.btnBoard39_loop1.Name = "btnBoard39_loop1";
  2264. this.btnBoard39_loop1.Size = new System.Drawing.Size(23, 23);
  2265. this.btnBoard39_loop1.TabIndex = 144;
  2266. this.btnBoard39_loop1.UseVisualStyleBackColor = true;
  2267. //
  2268. // btnBoard59_loop1
  2269. //
  2270. this.btnBoard59_loop1.Location = new System.Drawing.Point(685, 572);
  2271. this.btnBoard59_loop1.Name = "btnBoard59_loop1";
  2272. this.btnBoard59_loop1.Size = new System.Drawing.Size(23, 23);
  2273. this.btnBoard59_loop1.TabIndex = 144;
  2274. this.btnBoard59_loop1.UseVisualStyleBackColor = true;
  2275. //
  2276. // btnBoard15_loop1
  2277. //
  2278. this.btnBoard15_loop1.Location = new System.Drawing.Point(145, 460);
  2279. this.btnBoard15_loop1.Name = "btnBoard15_loop1";
  2280. this.btnBoard15_loop1.Size = new System.Drawing.Size(23, 23);
  2281. this.btnBoard15_loop1.TabIndex = 144;
  2282. this.btnBoard15_loop1.UseVisualStyleBackColor = true;
  2283. //
  2284. // btnBoard35_loop1
  2285. //
  2286. this.btnBoard35_loop1.Location = new System.Drawing.Point(415, 460);
  2287. this.btnBoard35_loop1.Name = "btnBoard35_loop1";
  2288. this.btnBoard35_loop1.Size = new System.Drawing.Size(23, 23);
  2289. this.btnBoard35_loop1.TabIndex = 144;
  2290. this.btnBoard35_loop1.UseVisualStyleBackColor = true;
  2291. //
  2292. // btnBoard55_loop1
  2293. //
  2294. this.btnBoard55_loop1.Location = new System.Drawing.Point(685, 460);
  2295. this.btnBoard55_loop1.Name = "btnBoard55_loop1";
  2296. this.btnBoard55_loop1.Size = new System.Drawing.Size(23, 23);
  2297. this.btnBoard55_loop1.TabIndex = 144;
  2298. this.btnBoard55_loop1.UseVisualStyleBackColor = true;
  2299. //
  2300. // btnBoard23_loop1
  2301. //
  2302. this.btnBoard23_loop1.Location = new System.Drawing.Point(415, 124);
  2303. this.btnBoard23_loop1.Name = "btnBoard23_loop1";
  2304. this.btnBoard23_loop1.Size = new System.Drawing.Size(23, 23);
  2305. this.btnBoard23_loop1.TabIndex = 144;
  2306. this.btnBoard23_loop1.UseVisualStyleBackColor = true;
  2307. //
  2308. // btnBoard43_loop1
  2309. //
  2310. this.btnBoard43_loop1.Location = new System.Drawing.Point(685, 124);
  2311. this.btnBoard43_loop1.Name = "btnBoard43_loop1";
  2312. this.btnBoard43_loop1.Size = new System.Drawing.Size(23, 23);
  2313. this.btnBoard43_loop1.TabIndex = 144;
  2314. this.btnBoard43_loop1.UseVisualStyleBackColor = true;
  2315. //
  2316. // btnBoard63_loop1
  2317. //
  2318. this.btnBoard63_loop1.Location = new System.Drawing.Point(955, 124);
  2319. this.btnBoard63_loop1.Name = "btnBoard63_loop1";
  2320. this.btnBoard63_loop1.Size = new System.Drawing.Size(23, 23);
  2321. this.btnBoard63_loop1.TabIndex = 144;
  2322. this.btnBoard63_loop1.UseVisualStyleBackColor = true;
  2323. //
  2324. // btnBoard27_loop1
  2325. //
  2326. this.btnBoard27_loop1.Location = new System.Drawing.Point(415, 236);
  2327. this.btnBoard27_loop1.Name = "btnBoard27_loop1";
  2328. this.btnBoard27_loop1.Size = new System.Drawing.Size(23, 23);
  2329. this.btnBoard27_loop1.TabIndex = 144;
  2330. this.btnBoard27_loop1.UseVisualStyleBackColor = true;
  2331. //
  2332. // btnBoard47_loop1
  2333. //
  2334. this.btnBoard47_loop1.Location = new System.Drawing.Point(685, 236);
  2335. this.btnBoard47_loop1.Name = "btnBoard47_loop1";
  2336. this.btnBoard47_loop1.Size = new System.Drawing.Size(23, 23);
  2337. this.btnBoard47_loop1.TabIndex = 144;
  2338. this.btnBoard47_loop1.UseVisualStyleBackColor = true;
  2339. //
  2340. // btnBoard12_loop1
  2341. //
  2342. this.btnBoard12_loop1.Location = new System.Drawing.Point(145, 376);
  2343. this.btnBoard12_loop1.Name = "btnBoard12_loop1";
  2344. this.btnBoard12_loop1.Size = new System.Drawing.Size(23, 23);
  2345. this.btnBoard12_loop1.TabIndex = 144;
  2346. this.btnBoard12_loop1.UseVisualStyleBackColor = true;
  2347. //
  2348. // btnBoard32_loop1
  2349. //
  2350. this.btnBoard32_loop1.Location = new System.Drawing.Point(415, 376);
  2351. this.btnBoard32_loop1.Name = "btnBoard32_loop1";
  2352. this.btnBoard32_loop1.Size = new System.Drawing.Size(23, 23);
  2353. this.btnBoard32_loop1.TabIndex = 144;
  2354. this.btnBoard32_loop1.UseVisualStyleBackColor = true;
  2355. //
  2356. // btnBoard52_loop1
  2357. //
  2358. this.btnBoard52_loop1.Location = new System.Drawing.Point(685, 376);
  2359. this.btnBoard52_loop1.Name = "btnBoard52_loop1";
  2360. this.btnBoard52_loop1.Size = new System.Drawing.Size(23, 23);
  2361. this.btnBoard52_loop1.TabIndex = 144;
  2362. this.btnBoard52_loop1.UseVisualStyleBackColor = true;
  2363. //
  2364. // btnBoard20_loop1
  2365. //
  2366. this.btnBoard20_loop1.Location = new System.Drawing.Point(145, 600);
  2367. this.btnBoard20_loop1.Name = "btnBoard20_loop1";
  2368. this.btnBoard20_loop1.Size = new System.Drawing.Size(23, 23);
  2369. this.btnBoard20_loop1.TabIndex = 144;
  2370. this.btnBoard20_loop1.UseVisualStyleBackColor = true;
  2371. //
  2372. // btnBoard40_loop1
  2373. //
  2374. this.btnBoard40_loop1.Location = new System.Drawing.Point(415, 600);
  2375. this.btnBoard40_loop1.Name = "btnBoard40_loop1";
  2376. this.btnBoard40_loop1.Size = new System.Drawing.Size(23, 23);
  2377. this.btnBoard40_loop1.TabIndex = 144;
  2378. this.btnBoard40_loop1.UseVisualStyleBackColor = true;
  2379. //
  2380. // btnBoard60_loop1
  2381. //
  2382. this.btnBoard60_loop1.Location = new System.Drawing.Point(685, 600);
  2383. this.btnBoard60_loop1.Name = "btnBoard60_loop1";
  2384. this.btnBoard60_loop1.Size = new System.Drawing.Size(23, 23);
  2385. this.btnBoard60_loop1.TabIndex = 144;
  2386. this.btnBoard60_loop1.UseVisualStyleBackColor = true;
  2387. //
  2388. // btnBoard16_loop1
  2389. //
  2390. this.btnBoard16_loop1.Location = new System.Drawing.Point(145, 488);
  2391. this.btnBoard16_loop1.Name = "btnBoard16_loop1";
  2392. this.btnBoard16_loop1.Size = new System.Drawing.Size(23, 23);
  2393. this.btnBoard16_loop1.TabIndex = 144;
  2394. this.btnBoard16_loop1.UseVisualStyleBackColor = true;
  2395. //
  2396. // btnBoard36_loop1
  2397. //
  2398. this.btnBoard36_loop1.Location = new System.Drawing.Point(415, 488);
  2399. this.btnBoard36_loop1.Name = "btnBoard36_loop1";
  2400. this.btnBoard36_loop1.Size = new System.Drawing.Size(23, 23);
  2401. this.btnBoard36_loop1.TabIndex = 144;
  2402. this.btnBoard36_loop1.UseVisualStyleBackColor = true;
  2403. //
  2404. // btnBoard56_loop1
  2405. //
  2406. this.btnBoard56_loop1.Location = new System.Drawing.Point(685, 488);
  2407. this.btnBoard56_loop1.Name = "btnBoard56_loop1";
  2408. this.btnBoard56_loop1.Size = new System.Drawing.Size(23, 23);
  2409. this.btnBoard56_loop1.TabIndex = 144;
  2410. this.btnBoard56_loop1.UseVisualStyleBackColor = true;
  2411. //
  2412. // btnBoard24_loop1
  2413. //
  2414. this.btnBoard24_loop1.Location = new System.Drawing.Point(415, 152);
  2415. this.btnBoard24_loop1.Name = "btnBoard24_loop1";
  2416. this.btnBoard24_loop1.Size = new System.Drawing.Size(23, 23);
  2417. this.btnBoard24_loop1.TabIndex = 144;
  2418. this.btnBoard24_loop1.UseVisualStyleBackColor = true;
  2419. //
  2420. // btnBoard44_loop1
  2421. //
  2422. this.btnBoard44_loop1.Location = new System.Drawing.Point(685, 152);
  2423. this.btnBoard44_loop1.Name = "btnBoard44_loop1";
  2424. this.btnBoard44_loop1.Size = new System.Drawing.Size(23, 23);
  2425. this.btnBoard44_loop1.TabIndex = 144;
  2426. this.btnBoard44_loop1.UseVisualStyleBackColor = true;
  2427. //
  2428. // btnBoard64_loop1
  2429. //
  2430. this.btnBoard64_loop1.Location = new System.Drawing.Point(955, 152);
  2431. this.btnBoard64_loop1.Name = "btnBoard64_loop1";
  2432. this.btnBoard64_loop1.Size = new System.Drawing.Size(23, 23);
  2433. this.btnBoard64_loop1.TabIndex = 144;
  2434. this.btnBoard64_loop1.UseVisualStyleBackColor = true;
  2435. //
  2436. // btnBoard28_loop1
  2437. //
  2438. this.btnBoard28_loop1.Location = new System.Drawing.Point(415, 264);
  2439. this.btnBoard28_loop1.Name = "btnBoard28_loop1";
  2440. this.btnBoard28_loop1.Size = new System.Drawing.Size(23, 23);
  2441. this.btnBoard28_loop1.TabIndex = 144;
  2442. this.btnBoard28_loop1.UseVisualStyleBackColor = true;
  2443. //
  2444. // btnBoard48_loop1
  2445. //
  2446. this.btnBoard48_loop1.Location = new System.Drawing.Point(685, 264);
  2447. this.btnBoard48_loop1.Name = "btnBoard48_loop1";
  2448. this.btnBoard48_loop1.Size = new System.Drawing.Size(23, 23);
  2449. this.btnBoard48_loop1.TabIndex = 144;
  2450. this.btnBoard48_loop1.UseVisualStyleBackColor = true;
  2451. //
  2452. // btnBoard9_loop3
  2453. //
  2454. this.btnBoard9_loop3.Location = new System.Drawing.Point(205, 292);
  2455. this.btnBoard9_loop3.Name = "btnBoard9_loop3";
  2456. this.btnBoard9_loop3.Size = new System.Drawing.Size(23, 23);
  2457. this.btnBoard9_loop3.TabIndex = 144;
  2458. this.btnBoard9_loop3.UseVisualStyleBackColor = true;
  2459. //
  2460. // btnBoard29_loop3
  2461. //
  2462. this.btnBoard29_loop3.Location = new System.Drawing.Point(475, 292);
  2463. this.btnBoard29_loop3.Name = "btnBoard29_loop3";
  2464. this.btnBoard29_loop3.Size = new System.Drawing.Size(23, 23);
  2465. this.btnBoard29_loop3.TabIndex = 144;
  2466. this.btnBoard29_loop3.UseVisualStyleBackColor = true;
  2467. //
  2468. // btnBoard49_loop3
  2469. //
  2470. this.btnBoard49_loop3.Location = new System.Drawing.Point(745, 292);
  2471. this.btnBoard49_loop3.Name = "btnBoard49_loop3";
  2472. this.btnBoard49_loop3.Size = new System.Drawing.Size(23, 23);
  2473. this.btnBoard49_loop3.TabIndex = 144;
  2474. this.btnBoard49_loop3.UseVisualStyleBackColor = true;
  2475. //
  2476. // btnBoard17_loop3
  2477. //
  2478. this.btnBoard17_loop3.Location = new System.Drawing.Point(205, 516);
  2479. this.btnBoard17_loop3.Name = "btnBoard17_loop3";
  2480. this.btnBoard17_loop3.Size = new System.Drawing.Size(23, 23);
  2481. this.btnBoard17_loop3.TabIndex = 144;
  2482. this.btnBoard17_loop3.UseVisualStyleBackColor = true;
  2483. //
  2484. // btnBoard37_loop3
  2485. //
  2486. this.btnBoard37_loop3.Location = new System.Drawing.Point(475, 516);
  2487. this.btnBoard37_loop3.Name = "btnBoard37_loop3";
  2488. this.btnBoard37_loop3.Size = new System.Drawing.Size(23, 23);
  2489. this.btnBoard37_loop3.TabIndex = 144;
  2490. this.btnBoard37_loop3.UseVisualStyleBackColor = true;
  2491. //
  2492. // btnBoard57_loop3
  2493. //
  2494. this.btnBoard57_loop3.Location = new System.Drawing.Point(745, 516);
  2495. this.btnBoard57_loop3.Name = "btnBoard57_loop3";
  2496. this.btnBoard57_loop3.Size = new System.Drawing.Size(23, 23);
  2497. this.btnBoard57_loop3.TabIndex = 144;
  2498. this.btnBoard57_loop3.UseVisualStyleBackColor = true;
  2499. //
  2500. // btnBoard13_loop3
  2501. //
  2502. this.btnBoard13_loop3.Location = new System.Drawing.Point(205, 404);
  2503. this.btnBoard13_loop3.Name = "btnBoard13_loop3";
  2504. this.btnBoard13_loop3.Size = new System.Drawing.Size(23, 23);
  2505. this.btnBoard13_loop3.TabIndex = 144;
  2506. this.btnBoard13_loop3.UseVisualStyleBackColor = true;
  2507. //
  2508. // btnBoard33_loop3
  2509. //
  2510. this.btnBoard33_loop3.Location = new System.Drawing.Point(475, 404);
  2511. this.btnBoard33_loop3.Name = "btnBoard33_loop3";
  2512. this.btnBoard33_loop3.Size = new System.Drawing.Size(23, 23);
  2513. this.btnBoard33_loop3.TabIndex = 144;
  2514. this.btnBoard33_loop3.UseVisualStyleBackColor = true;
  2515. //
  2516. // btnBoard53_loop3
  2517. //
  2518. this.btnBoard53_loop3.Location = new System.Drawing.Point(745, 404);
  2519. this.btnBoard53_loop3.Name = "btnBoard53_loop3";
  2520. this.btnBoard53_loop3.Size = new System.Drawing.Size(23, 23);
  2521. this.btnBoard53_loop3.TabIndex = 144;
  2522. this.btnBoard53_loop3.UseVisualStyleBackColor = true;
  2523. //
  2524. // btnBoard21_loop3
  2525. //
  2526. this.btnBoard21_loop3.Location = new System.Drawing.Point(475, 68);
  2527. this.btnBoard21_loop3.Name = "btnBoard21_loop3";
  2528. this.btnBoard21_loop3.Size = new System.Drawing.Size(23, 23);
  2529. this.btnBoard21_loop3.TabIndex = 144;
  2530. this.btnBoard21_loop3.UseVisualStyleBackColor = true;
  2531. //
  2532. // btnBoard41_loop3
  2533. //
  2534. this.btnBoard41_loop3.Location = new System.Drawing.Point(745, 68);
  2535. this.btnBoard41_loop3.Name = "btnBoard41_loop3";
  2536. this.btnBoard41_loop3.Size = new System.Drawing.Size(23, 23);
  2537. this.btnBoard41_loop3.TabIndex = 144;
  2538. this.btnBoard41_loop3.UseVisualStyleBackColor = true;
  2539. //
  2540. // btnBoard61_loop3
  2541. //
  2542. this.btnBoard61_loop3.Location = new System.Drawing.Point(1015, 68);
  2543. this.btnBoard61_loop3.Name = "btnBoard61_loop3";
  2544. this.btnBoard61_loop3.Size = new System.Drawing.Size(23, 23);
  2545. this.btnBoard61_loop3.TabIndex = 144;
  2546. this.btnBoard61_loop3.UseVisualStyleBackColor = true;
  2547. //
  2548. // btnBoard25_loop3
  2549. //
  2550. this.btnBoard25_loop3.Location = new System.Drawing.Point(475, 180);
  2551. this.btnBoard25_loop3.Name = "btnBoard25_loop3";
  2552. this.btnBoard25_loop3.Size = new System.Drawing.Size(23, 23);
  2553. this.btnBoard25_loop3.TabIndex = 144;
  2554. this.btnBoard25_loop3.UseVisualStyleBackColor = true;
  2555. //
  2556. // btnBoard45_loop3
  2557. //
  2558. this.btnBoard45_loop3.Location = new System.Drawing.Point(745, 180);
  2559. this.btnBoard45_loop3.Name = "btnBoard45_loop3";
  2560. this.btnBoard45_loop3.Size = new System.Drawing.Size(23, 23);
  2561. this.btnBoard45_loop3.TabIndex = 144;
  2562. this.btnBoard45_loop3.UseVisualStyleBackColor = true;
  2563. //
  2564. // btnBoard10_loop3
  2565. //
  2566. this.btnBoard10_loop3.Location = new System.Drawing.Point(205, 320);
  2567. this.btnBoard10_loop3.Name = "btnBoard10_loop3";
  2568. this.btnBoard10_loop3.Size = new System.Drawing.Size(23, 23);
  2569. this.btnBoard10_loop3.TabIndex = 144;
  2570. this.btnBoard10_loop3.UseVisualStyleBackColor = true;
  2571. //
  2572. // btnBoard30_loop3
  2573. //
  2574. this.btnBoard30_loop3.Location = new System.Drawing.Point(475, 320);
  2575. this.btnBoard30_loop3.Name = "btnBoard30_loop3";
  2576. this.btnBoard30_loop3.Size = new System.Drawing.Size(23, 23);
  2577. this.btnBoard30_loop3.TabIndex = 144;
  2578. this.btnBoard30_loop3.UseVisualStyleBackColor = true;
  2579. //
  2580. // btnBoard50_loop3
  2581. //
  2582. this.btnBoard50_loop3.Location = new System.Drawing.Point(745, 320);
  2583. this.btnBoard50_loop3.Name = "btnBoard50_loop3";
  2584. this.btnBoard50_loop3.Size = new System.Drawing.Size(23, 23);
  2585. this.btnBoard50_loop3.TabIndex = 144;
  2586. this.btnBoard50_loop3.UseVisualStyleBackColor = true;
  2587. //
  2588. // btnBoard18_loop3
  2589. //
  2590. this.btnBoard18_loop3.Location = new System.Drawing.Point(205, 544);
  2591. this.btnBoard18_loop3.Name = "btnBoard18_loop3";
  2592. this.btnBoard18_loop3.Size = new System.Drawing.Size(23, 23);
  2593. this.btnBoard18_loop3.TabIndex = 144;
  2594. this.btnBoard18_loop3.UseVisualStyleBackColor = true;
  2595. //
  2596. // btnBoard38_loop3
  2597. //
  2598. this.btnBoard38_loop3.Location = new System.Drawing.Point(475, 544);
  2599. this.btnBoard38_loop3.Name = "btnBoard38_loop3";
  2600. this.btnBoard38_loop3.Size = new System.Drawing.Size(23, 23);
  2601. this.btnBoard38_loop3.TabIndex = 144;
  2602. this.btnBoard38_loop3.UseVisualStyleBackColor = true;
  2603. //
  2604. // btnBoard58_loop3
  2605. //
  2606. this.btnBoard58_loop3.Location = new System.Drawing.Point(745, 544);
  2607. this.btnBoard58_loop3.Name = "btnBoard58_loop3";
  2608. this.btnBoard58_loop3.Size = new System.Drawing.Size(23, 23);
  2609. this.btnBoard58_loop3.TabIndex = 144;
  2610. this.btnBoard58_loop3.UseVisualStyleBackColor = true;
  2611. //
  2612. // btnBoard14_loop3
  2613. //
  2614. this.btnBoard14_loop3.Location = new System.Drawing.Point(205, 432);
  2615. this.btnBoard14_loop3.Name = "btnBoard14_loop3";
  2616. this.btnBoard14_loop3.Size = new System.Drawing.Size(23, 23);
  2617. this.btnBoard14_loop3.TabIndex = 144;
  2618. this.btnBoard14_loop3.UseVisualStyleBackColor = true;
  2619. //
  2620. // btnBoard34_loop3
  2621. //
  2622. this.btnBoard34_loop3.Location = new System.Drawing.Point(475, 432);
  2623. this.btnBoard34_loop3.Name = "btnBoard34_loop3";
  2624. this.btnBoard34_loop3.Size = new System.Drawing.Size(23, 23);
  2625. this.btnBoard34_loop3.TabIndex = 144;
  2626. this.btnBoard34_loop3.UseVisualStyleBackColor = true;
  2627. //
  2628. // btnBoard54_loop3
  2629. //
  2630. this.btnBoard54_loop3.Location = new System.Drawing.Point(745, 432);
  2631. this.btnBoard54_loop3.Name = "btnBoard54_loop3";
  2632. this.btnBoard54_loop3.Size = new System.Drawing.Size(23, 23);
  2633. this.btnBoard54_loop3.TabIndex = 144;
  2634. this.btnBoard54_loop3.UseVisualStyleBackColor = true;
  2635. //
  2636. // btnBoard22_loop3
  2637. //
  2638. this.btnBoard22_loop3.Location = new System.Drawing.Point(475, 96);
  2639. this.btnBoard22_loop3.Name = "btnBoard22_loop3";
  2640. this.btnBoard22_loop3.Size = new System.Drawing.Size(23, 23);
  2641. this.btnBoard22_loop3.TabIndex = 144;
  2642. this.btnBoard22_loop3.UseVisualStyleBackColor = true;
  2643. //
  2644. // btnBoard42_loop3
  2645. //
  2646. this.btnBoard42_loop3.Location = new System.Drawing.Point(745, 96);
  2647. this.btnBoard42_loop3.Name = "btnBoard42_loop3";
  2648. this.btnBoard42_loop3.Size = new System.Drawing.Size(23, 23);
  2649. this.btnBoard42_loop3.TabIndex = 144;
  2650. this.btnBoard42_loop3.UseVisualStyleBackColor = true;
  2651. //
  2652. // btnBoard62_loop3
  2653. //
  2654. this.btnBoard62_loop3.Location = new System.Drawing.Point(1015, 96);
  2655. this.btnBoard62_loop3.Name = "btnBoard62_loop3";
  2656. this.btnBoard62_loop3.Size = new System.Drawing.Size(23, 23);
  2657. this.btnBoard62_loop3.TabIndex = 144;
  2658. this.btnBoard62_loop3.UseVisualStyleBackColor = true;
  2659. //
  2660. // btnBoard26_loop3
  2661. //
  2662. this.btnBoard26_loop3.Location = new System.Drawing.Point(475, 208);
  2663. this.btnBoard26_loop3.Name = "btnBoard26_loop3";
  2664. this.btnBoard26_loop3.Size = new System.Drawing.Size(23, 23);
  2665. this.btnBoard26_loop3.TabIndex = 144;
  2666. this.btnBoard26_loop3.UseVisualStyleBackColor = true;
  2667. //
  2668. // btnBoard46_loop3
  2669. //
  2670. this.btnBoard46_loop3.Location = new System.Drawing.Point(745, 208);
  2671. this.btnBoard46_loop3.Name = "btnBoard46_loop3";
  2672. this.btnBoard46_loop3.Size = new System.Drawing.Size(23, 23);
  2673. this.btnBoard46_loop3.TabIndex = 144;
  2674. this.btnBoard46_loop3.UseVisualStyleBackColor = true;
  2675. //
  2676. // btnBoard11_loop3
  2677. //
  2678. this.btnBoard11_loop3.Location = new System.Drawing.Point(205, 348);
  2679. this.btnBoard11_loop3.Name = "btnBoard11_loop3";
  2680. this.btnBoard11_loop3.Size = new System.Drawing.Size(23, 23);
  2681. this.btnBoard11_loop3.TabIndex = 144;
  2682. this.btnBoard11_loop3.UseVisualStyleBackColor = true;
  2683. //
  2684. // btnBoard31_loop3
  2685. //
  2686. this.btnBoard31_loop3.Location = new System.Drawing.Point(475, 348);
  2687. this.btnBoard31_loop3.Name = "btnBoard31_loop3";
  2688. this.btnBoard31_loop3.Size = new System.Drawing.Size(23, 23);
  2689. this.btnBoard31_loop3.TabIndex = 144;
  2690. this.btnBoard31_loop3.UseVisualStyleBackColor = true;
  2691. //
  2692. // btnBoard51_loop3
  2693. //
  2694. this.btnBoard51_loop3.Location = new System.Drawing.Point(745, 348);
  2695. this.btnBoard51_loop3.Name = "btnBoard51_loop3";
  2696. this.btnBoard51_loop3.Size = new System.Drawing.Size(23, 23);
  2697. this.btnBoard51_loop3.TabIndex = 144;
  2698. this.btnBoard51_loop3.UseVisualStyleBackColor = true;
  2699. //
  2700. // btnBoard19_loop3
  2701. //
  2702. this.btnBoard19_loop3.Location = new System.Drawing.Point(205, 572);
  2703. this.btnBoard19_loop3.Name = "btnBoard19_loop3";
  2704. this.btnBoard19_loop3.Size = new System.Drawing.Size(23, 23);
  2705. this.btnBoard19_loop3.TabIndex = 144;
  2706. this.btnBoard19_loop3.UseVisualStyleBackColor = true;
  2707. //
  2708. // btnBoard39_loop3
  2709. //
  2710. this.btnBoard39_loop3.Location = new System.Drawing.Point(475, 572);
  2711. this.btnBoard39_loop3.Name = "btnBoard39_loop3";
  2712. this.btnBoard39_loop3.Size = new System.Drawing.Size(23, 23);
  2713. this.btnBoard39_loop3.TabIndex = 144;
  2714. this.btnBoard39_loop3.UseVisualStyleBackColor = true;
  2715. //
  2716. // btnBoard59_loop3
  2717. //
  2718. this.btnBoard59_loop3.Location = new System.Drawing.Point(745, 572);
  2719. this.btnBoard59_loop3.Name = "btnBoard59_loop3";
  2720. this.btnBoard59_loop3.Size = new System.Drawing.Size(23, 23);
  2721. this.btnBoard59_loop3.TabIndex = 144;
  2722. this.btnBoard59_loop3.UseVisualStyleBackColor = true;
  2723. //
  2724. // btnBoard15_loop3
  2725. //
  2726. this.btnBoard15_loop3.Location = new System.Drawing.Point(205, 460);
  2727. this.btnBoard15_loop3.Name = "btnBoard15_loop3";
  2728. this.btnBoard15_loop3.Size = new System.Drawing.Size(23, 23);
  2729. this.btnBoard15_loop3.TabIndex = 144;
  2730. this.btnBoard15_loop3.UseVisualStyleBackColor = true;
  2731. //
  2732. // btnBoard35_loop3
  2733. //
  2734. this.btnBoard35_loop3.Location = new System.Drawing.Point(475, 460);
  2735. this.btnBoard35_loop3.Name = "btnBoard35_loop3";
  2736. this.btnBoard35_loop3.Size = new System.Drawing.Size(23, 23);
  2737. this.btnBoard35_loop3.TabIndex = 144;
  2738. this.btnBoard35_loop3.UseVisualStyleBackColor = true;
  2739. //
  2740. // btnBoard55_loop3
  2741. //
  2742. this.btnBoard55_loop3.Location = new System.Drawing.Point(745, 460);
  2743. this.btnBoard55_loop3.Name = "btnBoard55_loop3";
  2744. this.btnBoard55_loop3.Size = new System.Drawing.Size(23, 23);
  2745. this.btnBoard55_loop3.TabIndex = 144;
  2746. this.btnBoard55_loop3.UseVisualStyleBackColor = true;
  2747. //
  2748. // btnBoard23_loop3
  2749. //
  2750. this.btnBoard23_loop3.Location = new System.Drawing.Point(475, 124);
  2751. this.btnBoard23_loop3.Name = "btnBoard23_loop3";
  2752. this.btnBoard23_loop3.Size = new System.Drawing.Size(23, 23);
  2753. this.btnBoard23_loop3.TabIndex = 144;
  2754. this.btnBoard23_loop3.UseVisualStyleBackColor = true;
  2755. //
  2756. // btnBoard43_loop3
  2757. //
  2758. this.btnBoard43_loop3.Location = new System.Drawing.Point(745, 124);
  2759. this.btnBoard43_loop3.Name = "btnBoard43_loop3";
  2760. this.btnBoard43_loop3.Size = new System.Drawing.Size(23, 23);
  2761. this.btnBoard43_loop3.TabIndex = 144;
  2762. this.btnBoard43_loop3.UseVisualStyleBackColor = true;
  2763. //
  2764. // btnBoard63_loop3
  2765. //
  2766. this.btnBoard63_loop3.Location = new System.Drawing.Point(1015, 124);
  2767. this.btnBoard63_loop3.Name = "btnBoard63_loop3";
  2768. this.btnBoard63_loop3.Size = new System.Drawing.Size(23, 23);
  2769. this.btnBoard63_loop3.TabIndex = 144;
  2770. this.btnBoard63_loop3.UseVisualStyleBackColor = true;
  2771. //
  2772. // btnBoard27_loop3
  2773. //
  2774. this.btnBoard27_loop3.Location = new System.Drawing.Point(475, 236);
  2775. this.btnBoard27_loop3.Name = "btnBoard27_loop3";
  2776. this.btnBoard27_loop3.Size = new System.Drawing.Size(23, 23);
  2777. this.btnBoard27_loop3.TabIndex = 144;
  2778. this.btnBoard27_loop3.UseVisualStyleBackColor = true;
  2779. //
  2780. // btnBoard47_loop3
  2781. //
  2782. this.btnBoard47_loop3.Location = new System.Drawing.Point(745, 236);
  2783. this.btnBoard47_loop3.Name = "btnBoard47_loop3";
  2784. this.btnBoard47_loop3.Size = new System.Drawing.Size(23, 23);
  2785. this.btnBoard47_loop3.TabIndex = 144;
  2786. this.btnBoard47_loop3.UseVisualStyleBackColor = true;
  2787. //
  2788. // btnBoard12_loop3
  2789. //
  2790. this.btnBoard12_loop3.Location = new System.Drawing.Point(205, 376);
  2791. this.btnBoard12_loop3.Name = "btnBoard12_loop3";
  2792. this.btnBoard12_loop3.Size = new System.Drawing.Size(23, 23);
  2793. this.btnBoard12_loop3.TabIndex = 144;
  2794. this.btnBoard12_loop3.UseVisualStyleBackColor = true;
  2795. //
  2796. // btnBoard32_loop3
  2797. //
  2798. this.btnBoard32_loop3.Location = new System.Drawing.Point(475, 376);
  2799. this.btnBoard32_loop3.Name = "btnBoard32_loop3";
  2800. this.btnBoard32_loop3.Size = new System.Drawing.Size(23, 23);
  2801. this.btnBoard32_loop3.TabIndex = 144;
  2802. this.btnBoard32_loop3.UseVisualStyleBackColor = true;
  2803. //
  2804. // btnBoard52_loop3
  2805. //
  2806. this.btnBoard52_loop3.Location = new System.Drawing.Point(745, 376);
  2807. this.btnBoard52_loop3.Name = "btnBoard52_loop3";
  2808. this.btnBoard52_loop3.Size = new System.Drawing.Size(23, 23);
  2809. this.btnBoard52_loop3.TabIndex = 144;
  2810. this.btnBoard52_loop3.UseVisualStyleBackColor = true;
  2811. //
  2812. // btnBoard20_loop3
  2813. //
  2814. this.btnBoard20_loop3.Location = new System.Drawing.Point(205, 600);
  2815. this.btnBoard20_loop3.Name = "btnBoard20_loop3";
  2816. this.btnBoard20_loop3.Size = new System.Drawing.Size(23, 23);
  2817. this.btnBoard20_loop3.TabIndex = 144;
  2818. this.btnBoard20_loop3.UseVisualStyleBackColor = true;
  2819. //
  2820. // btnBoard40_loop3
  2821. //
  2822. this.btnBoard40_loop3.Location = new System.Drawing.Point(475, 600);
  2823. this.btnBoard40_loop3.Name = "btnBoard40_loop3";
  2824. this.btnBoard40_loop3.Size = new System.Drawing.Size(23, 23);
  2825. this.btnBoard40_loop3.TabIndex = 144;
  2826. this.btnBoard40_loop3.UseVisualStyleBackColor = true;
  2827. //
  2828. // btnBoard60_loop3
  2829. //
  2830. this.btnBoard60_loop3.Location = new System.Drawing.Point(745, 600);
  2831. this.btnBoard60_loop3.Name = "btnBoard60_loop3";
  2832. this.btnBoard60_loop3.Size = new System.Drawing.Size(23, 23);
  2833. this.btnBoard60_loop3.TabIndex = 144;
  2834. this.btnBoard60_loop3.UseVisualStyleBackColor = true;
  2835. //
  2836. // btnBoard2_loop1
  2837. //
  2838. this.btnBoard2_loop1.Location = new System.Drawing.Point(145, 96);
  2839. this.btnBoard2_loop1.Name = "btnBoard2_loop1";
  2840. this.btnBoard2_loop1.Size = new System.Drawing.Size(23, 23);
  2841. this.btnBoard2_loop1.TabIndex = 144;
  2842. this.btnBoard2_loop1.UseVisualStyleBackColor = true;
  2843. //
  2844. // btnBoard16_loop3
  2845. //
  2846. this.btnBoard16_loop3.Location = new System.Drawing.Point(205, 488);
  2847. this.btnBoard16_loop3.Name = "btnBoard16_loop3";
  2848. this.btnBoard16_loop3.Size = new System.Drawing.Size(23, 23);
  2849. this.btnBoard16_loop3.TabIndex = 144;
  2850. this.btnBoard16_loop3.UseVisualStyleBackColor = true;
  2851. //
  2852. // btnBoard3_loop1
  2853. //
  2854. this.btnBoard3_loop1.Location = new System.Drawing.Point(145, 124);
  2855. this.btnBoard3_loop1.Name = "btnBoard3_loop1";
  2856. this.btnBoard3_loop1.Size = new System.Drawing.Size(23, 23);
  2857. this.btnBoard3_loop1.TabIndex = 144;
  2858. this.btnBoard3_loop1.UseVisualStyleBackColor = true;
  2859. //
  2860. // btnBoard36_loop3
  2861. //
  2862. this.btnBoard36_loop3.Location = new System.Drawing.Point(475, 488);
  2863. this.btnBoard36_loop3.Name = "btnBoard36_loop3";
  2864. this.btnBoard36_loop3.Size = new System.Drawing.Size(23, 23);
  2865. this.btnBoard36_loop3.TabIndex = 144;
  2866. this.btnBoard36_loop3.UseVisualStyleBackColor = true;
  2867. //
  2868. // btnBoard56_loop3
  2869. //
  2870. this.btnBoard56_loop3.Location = new System.Drawing.Point(745, 488);
  2871. this.btnBoard56_loop3.Name = "btnBoard56_loop3";
  2872. this.btnBoard56_loop3.Size = new System.Drawing.Size(23, 23);
  2873. this.btnBoard56_loop3.TabIndex = 144;
  2874. this.btnBoard56_loop3.UseVisualStyleBackColor = true;
  2875. //
  2876. // btnBoard1_loop1
  2877. //
  2878. this.btnBoard1_loop1.Location = new System.Drawing.Point(145, 68);
  2879. this.btnBoard1_loop1.Name = "btnBoard1_loop1";
  2880. this.btnBoard1_loop1.Size = new System.Drawing.Size(23, 23);
  2881. this.btnBoard1_loop1.TabIndex = 144;
  2882. this.btnBoard1_loop1.UseVisualStyleBackColor = true;
  2883. //
  2884. // btnBoard24_loop3
  2885. //
  2886. this.btnBoard24_loop3.Location = new System.Drawing.Point(475, 152);
  2887. this.btnBoard24_loop3.Name = "btnBoard24_loop3";
  2888. this.btnBoard24_loop3.Size = new System.Drawing.Size(23, 23);
  2889. this.btnBoard24_loop3.TabIndex = 144;
  2890. this.btnBoard24_loop3.UseVisualStyleBackColor = true;
  2891. //
  2892. // btnBoard44_loop3
  2893. //
  2894. this.btnBoard44_loop3.Location = new System.Drawing.Point(745, 152);
  2895. this.btnBoard44_loop3.Name = "btnBoard44_loop3";
  2896. this.btnBoard44_loop3.Size = new System.Drawing.Size(23, 23);
  2897. this.btnBoard44_loop3.TabIndex = 144;
  2898. this.btnBoard44_loop3.UseVisualStyleBackColor = true;
  2899. //
  2900. // btnBoard64_loop3
  2901. //
  2902. this.btnBoard64_loop3.Location = new System.Drawing.Point(1015, 152);
  2903. this.btnBoard64_loop3.Name = "btnBoard64_loop3";
  2904. this.btnBoard64_loop3.Size = new System.Drawing.Size(23, 23);
  2905. this.btnBoard64_loop3.TabIndex = 144;
  2906. this.btnBoard64_loop3.UseVisualStyleBackColor = true;
  2907. //
  2908. // btnBoard3_loop0
  2909. //
  2910. this.btnBoard3_loop0.Location = new System.Drawing.Point(115, 124);
  2911. this.btnBoard3_loop0.Name = "btnBoard3_loop0";
  2912. this.btnBoard3_loop0.Size = new System.Drawing.Size(23, 23);
  2913. this.btnBoard3_loop0.TabIndex = 144;
  2914. this.btnBoard3_loop0.UseVisualStyleBackColor = true;
  2915. //
  2916. // btnBoard28_loop3
  2917. //
  2918. this.btnBoard28_loop3.Location = new System.Drawing.Point(475, 264);
  2919. this.btnBoard28_loop3.Name = "btnBoard28_loop3";
  2920. this.btnBoard28_loop3.Size = new System.Drawing.Size(23, 23);
  2921. this.btnBoard28_loop3.TabIndex = 144;
  2922. this.btnBoard28_loop3.UseVisualStyleBackColor = true;
  2923. //
  2924. // btnBoard48_loop3
  2925. //
  2926. this.btnBoard48_loop3.Location = new System.Drawing.Point(745, 264);
  2927. this.btnBoard48_loop3.Name = "btnBoard48_loop3";
  2928. this.btnBoard48_loop3.Size = new System.Drawing.Size(23, 23);
  2929. this.btnBoard48_loop3.TabIndex = 144;
  2930. this.btnBoard48_loop3.UseVisualStyleBackColor = true;
  2931. //
  2932. // btnBoard2_loop0
  2933. //
  2934. this.btnBoard2_loop0.Location = new System.Drawing.Point(115, 96);
  2935. this.btnBoard2_loop0.Name = "btnBoard2_loop0";
  2936. this.btnBoard2_loop0.Size = new System.Drawing.Size(23, 23);
  2937. this.btnBoard2_loop0.TabIndex = 144;
  2938. this.btnBoard2_loop0.UseVisualStyleBackColor = true;
  2939. //
  2940. // lbl_COMM54
  2941. //
  2942. this.lbl_COMM54.AutoSize = true;
  2943. this.lbl_COMM54.Font = new System.Drawing.Font("굴림", 10F);
  2944. this.lbl_COMM54.Location = new System.Drawing.Point(555, 437);
  2945. this.lbl_COMM54.Name = "lbl_COMM54";
  2946. this.lbl_COMM54.Size = new System.Drawing.Size(70, 14);
  2947. this.lbl_COMM54.TabIndex = 533;
  2948. this.lbl_COMM54.Text = "중계반 54";
  2949. //
  2950. // lbl_COMM19
  2951. //
  2952. this.lbl_COMM19.AutoSize = true;
  2953. this.lbl_COMM19.Font = new System.Drawing.Font("굴림", 10F);
  2954. this.lbl_COMM19.Location = new System.Drawing.Point(15, 577);
  2955. this.lbl_COMM19.Name = "lbl_COMM19";
  2956. this.lbl_COMM19.Size = new System.Drawing.Size(70, 14);
  2957. this.lbl_COMM19.TabIndex = 528;
  2958. this.lbl_COMM19.Text = "중계반 19";
  2959. //
  2960. // btnBoard5_loop0
  2961. //
  2962. this.btnBoard5_loop0.Location = new System.Drawing.Point(115, 180);
  2963. this.btnBoard5_loop0.Name = "btnBoard5_loop0";
  2964. this.btnBoard5_loop0.Size = new System.Drawing.Size(23, 23);
  2965. this.btnBoard5_loop0.TabIndex = 144;
  2966. this.btnBoard5_loop0.UseVisualStyleBackColor = true;
  2967. //
  2968. // btnBoard1_loop0
  2969. //
  2970. this.btnBoard1_loop0.Location = new System.Drawing.Point(115, 68);
  2971. this.btnBoard1_loop0.Name = "btnBoard1_loop0";
  2972. this.btnBoard1_loop0.Size = new System.Drawing.Size(23, 23);
  2973. this.btnBoard1_loop0.TabIndex = 144;
  2974. this.btnBoard1_loop0.UseVisualStyleBackColor = true;
  2975. //
  2976. // btnBoard6_loop0
  2977. //
  2978. this.btnBoard6_loop0.Location = new System.Drawing.Point(115, 208);
  2979. this.btnBoard6_loop0.Name = "btnBoard6_loop0";
  2980. this.btnBoard6_loop0.Size = new System.Drawing.Size(23, 23);
  2981. this.btnBoard6_loop0.TabIndex = 144;
  2982. this.btnBoard6_loop0.UseVisualStyleBackColor = true;
  2983. //
  2984. // lbl_COMM39
  2985. //
  2986. this.lbl_COMM39.AutoSize = true;
  2987. this.lbl_COMM39.Font = new System.Drawing.Font("굴림", 10F);
  2988. this.lbl_COMM39.Location = new System.Drawing.Point(285, 577);
  2989. this.lbl_COMM39.Name = "lbl_COMM39";
  2990. this.lbl_COMM39.Size = new System.Drawing.Size(70, 14);
  2991. this.lbl_COMM39.TabIndex = 529;
  2992. this.lbl_COMM39.Text = "중계반 39";
  2993. //
  2994. // lbl_COMM6
  2995. //
  2996. this.lbl_COMM6.AutoSize = true;
  2997. this.lbl_COMM6.Font = new System.Drawing.Font("굴림", 10F);
  2998. this.lbl_COMM6.Location = new System.Drawing.Point(15, 213);
  2999. this.lbl_COMM6.Name = "lbl_COMM6";
  3000. this.lbl_COMM6.Size = new System.Drawing.Size(70, 14);
  3001. this.lbl_COMM6.TabIndex = 135;
  3002. this.lbl_COMM6.Text = "중계반 06";
  3003. //
  3004. // lbl_COMM3
  3005. //
  3006. this.lbl_COMM3.AutoSize = true;
  3007. this.lbl_COMM3.Font = new System.Drawing.Font("굴림", 10F);
  3008. this.lbl_COMM3.Location = new System.Drawing.Point(15, 129);
  3009. this.lbl_COMM3.Name = "lbl_COMM3";
  3010. this.lbl_COMM3.Size = new System.Drawing.Size(70, 14);
  3011. this.lbl_COMM3.TabIndex = 122;
  3012. this.lbl_COMM3.Text = "중계반 03";
  3013. //
  3014. // lbl_COMM5
  3015. //
  3016. this.lbl_COMM5.AutoSize = true;
  3017. this.lbl_COMM5.Font = new System.Drawing.Font("굴림", 10F);
  3018. this.lbl_COMM5.Location = new System.Drawing.Point(15, 185);
  3019. this.lbl_COMM5.Name = "lbl_COMM5";
  3020. this.lbl_COMM5.Size = new System.Drawing.Size(70, 14);
  3021. this.lbl_COMM5.TabIndex = 131;
  3022. this.lbl_COMM5.Text = "중계반 05";
  3023. //
  3024. // lbl_COMM59
  3025. //
  3026. this.lbl_COMM59.AutoSize = true;
  3027. this.lbl_COMM59.Font = new System.Drawing.Font("굴림", 10F);
  3028. this.lbl_COMM59.Location = new System.Drawing.Point(555, 577);
  3029. this.lbl_COMM59.Name = "lbl_COMM59";
  3030. this.lbl_COMM59.Size = new System.Drawing.Size(70, 14);
  3031. this.lbl_COMM59.TabIndex = 530;
  3032. this.lbl_COMM59.Text = "중계반 59";
  3033. //
  3034. // lbl_COMM4
  3035. //
  3036. this.lbl_COMM4.AutoSize = true;
  3037. this.lbl_COMM4.Font = new System.Drawing.Font("굴림", 10F);
  3038. this.lbl_COMM4.Location = new System.Drawing.Point(15, 157);
  3039. this.lbl_COMM4.Name = "lbl_COMM4";
  3040. this.lbl_COMM4.Size = new System.Drawing.Size(70, 14);
  3041. this.lbl_COMM4.TabIndex = 126;
  3042. this.lbl_COMM4.Text = "중계반 04";
  3043. //
  3044. // btnBoard4_loop0
  3045. //
  3046. this.btnBoard4_loop0.Location = new System.Drawing.Point(115, 152);
  3047. this.btnBoard4_loop0.Name = "btnBoard4_loop0";
  3048. this.btnBoard4_loop0.Size = new System.Drawing.Size(23, 23);
  3049. this.btnBoard4_loop0.TabIndex = 144;
  3050. this.btnBoard4_loop0.UseVisualStyleBackColor = true;
  3051. //
  3052. // lbl_COMM15
  3053. //
  3054. this.lbl_COMM15.AutoSize = true;
  3055. this.lbl_COMM15.Font = new System.Drawing.Font("굴림", 10F);
  3056. this.lbl_COMM15.Location = new System.Drawing.Point(15, 465);
  3057. this.lbl_COMM15.Name = "lbl_COMM15";
  3058. this.lbl_COMM15.Size = new System.Drawing.Size(70, 14);
  3059. this.lbl_COMM15.TabIndex = 549;
  3060. this.lbl_COMM15.Text = "중계반 15";
  3061. //
  3062. // lbl_COMM2
  3063. //
  3064. this.lbl_COMM2.AutoSize = true;
  3065. this.lbl_COMM2.Font = new System.Drawing.Font("굴림", 10F);
  3066. this.lbl_COMM2.Location = new System.Drawing.Point(15, 101);
  3067. this.lbl_COMM2.Name = "lbl_COMM2";
  3068. this.lbl_COMM2.Size = new System.Drawing.Size(70, 14);
  3069. this.lbl_COMM2.TabIndex = 118;
  3070. this.lbl_COMM2.Text = "중계반 02";
  3071. //
  3072. // btnBoard1_loop2
  3073. //
  3074. this.btnBoard1_loop2.Location = new System.Drawing.Point(175, 68);
  3075. this.btnBoard1_loop2.Name = "btnBoard1_loop2";
  3076. this.btnBoard1_loop2.Size = new System.Drawing.Size(23, 23);
  3077. this.btnBoard1_loop2.TabIndex = 145;
  3078. this.btnBoard1_loop2.UseVisualStyleBackColor = true;
  3079. //
  3080. // label9
  3081. //
  3082. this.label9.AutoSize = true;
  3083. this.label9.Font = new System.Drawing.Font("굴림", 10F);
  3084. this.label9.Location = new System.Drawing.Point(115, 38);
  3085. this.label9.Name = "label9";
  3086. this.label9.Size = new System.Drawing.Size(23, 14);
  3087. this.label9.TabIndex = 113;
  3088. this.label9.Text = "L0";
  3089. //
  3090. // btnBoard4_loop1
  3091. //
  3092. this.btnBoard4_loop1.Location = new System.Drawing.Point(145, 152);
  3093. this.btnBoard4_loop1.Name = "btnBoard4_loop1";
  3094. this.btnBoard4_loop1.Size = new System.Drawing.Size(23, 23);
  3095. this.btnBoard4_loop1.TabIndex = 144;
  3096. this.btnBoard4_loop1.UseVisualStyleBackColor = true;
  3097. //
  3098. // lbl_COMM35
  3099. //
  3100. this.lbl_COMM35.AutoSize = true;
  3101. this.lbl_COMM35.Font = new System.Drawing.Font("굴림", 10F);
  3102. this.lbl_COMM35.Location = new System.Drawing.Point(285, 465);
  3103. this.lbl_COMM35.Name = "lbl_COMM35";
  3104. this.lbl_COMM35.Size = new System.Drawing.Size(70, 14);
  3105. this.lbl_COMM35.TabIndex = 551;
  3106. this.lbl_COMM35.Text = "중계반 35";
  3107. //
  3108. // lbl_COMM55
  3109. //
  3110. this.lbl_COMM55.AutoSize = true;
  3111. this.lbl_COMM55.Font = new System.Drawing.Font("굴림", 10F);
  3112. this.lbl_COMM55.Location = new System.Drawing.Point(555, 465);
  3113. this.lbl_COMM55.Name = "lbl_COMM55";
  3114. this.lbl_COMM55.Size = new System.Drawing.Size(70, 14);
  3115. this.lbl_COMM55.TabIndex = 550;
  3116. this.lbl_COMM55.Text = "중계반 55";
  3117. //
  3118. // lbl_COMM7
  3119. //
  3120. this.lbl_COMM7.AutoSize = true;
  3121. this.lbl_COMM7.Font = new System.Drawing.Font("굴림", 10F);
  3122. this.lbl_COMM7.Location = new System.Drawing.Point(15, 241);
  3123. this.lbl_COMM7.Name = "lbl_COMM7";
  3124. this.lbl_COMM7.Size = new System.Drawing.Size(70, 14);
  3125. this.lbl_COMM7.TabIndex = 139;
  3126. this.lbl_COMM7.Text = "중계반 07";
  3127. //
  3128. // btnBoard5_loop1
  3129. //
  3130. this.btnBoard5_loop1.Location = new System.Drawing.Point(145, 180);
  3131. this.btnBoard5_loop1.Name = "btnBoard5_loop1";
  3132. this.btnBoard5_loop1.Size = new System.Drawing.Size(23, 23);
  3133. this.btnBoard5_loop1.TabIndex = 144;
  3134. this.btnBoard5_loop1.UseVisualStyleBackColor = true;
  3135. //
  3136. // lbl_COMM8
  3137. //
  3138. this.lbl_COMM8.AutoSize = true;
  3139. this.lbl_COMM8.Font = new System.Drawing.Font("굴림", 10F);
  3140. this.lbl_COMM8.Location = new System.Drawing.Point(15, 269);
  3141. this.lbl_COMM8.Name = "lbl_COMM8";
  3142. this.lbl_COMM8.Size = new System.Drawing.Size(70, 14);
  3143. this.lbl_COMM8.TabIndex = 143;
  3144. this.lbl_COMM8.Text = "중계반 08";
  3145. //
  3146. // label10
  3147. //
  3148. this.label10.AutoSize = true;
  3149. this.label10.Font = new System.Drawing.Font("굴림", 10F);
  3150. this.label10.Location = new System.Drawing.Point(145, 38);
  3151. this.label10.Name = "label10";
  3152. this.label10.Size = new System.Drawing.Size(23, 14);
  3153. this.label10.TabIndex = 114;
  3154. this.label10.Text = "L1";
  3155. //
  3156. // btnBoard7_loop0
  3157. //
  3158. this.btnBoard7_loop0.Location = new System.Drawing.Point(115, 236);
  3159. this.btnBoard7_loop0.Name = "btnBoard7_loop0";
  3160. this.btnBoard7_loop0.Size = new System.Drawing.Size(23, 23);
  3161. this.btnBoard7_loop0.TabIndex = 144;
  3162. this.btnBoard7_loop0.UseVisualStyleBackColor = true;
  3163. //
  3164. // btnBoard6_loop1
  3165. //
  3166. this.btnBoard6_loop1.Location = new System.Drawing.Point(145, 208);
  3167. this.btnBoard6_loop1.Name = "btnBoard6_loop1";
  3168. this.btnBoard6_loop1.Size = new System.Drawing.Size(23, 23);
  3169. this.btnBoard6_loop1.TabIndex = 144;
  3170. this.btnBoard6_loop1.UseVisualStyleBackColor = true;
  3171. //
  3172. // btnBoard8_loop0
  3173. //
  3174. this.btnBoard8_loop0.Location = new System.Drawing.Point(115, 264);
  3175. this.btnBoard8_loop0.Name = "btnBoard8_loop0";
  3176. this.btnBoard8_loop0.Size = new System.Drawing.Size(23, 23);
  3177. this.btnBoard8_loop0.TabIndex = 144;
  3178. this.btnBoard8_loop0.UseVisualStyleBackColor = true;
  3179. //
  3180. // lbl_COMM1
  3181. //
  3182. this.lbl_COMM1.AutoSize = true;
  3183. this.lbl_COMM1.Font = new System.Drawing.Font("굴림", 10F);
  3184. this.lbl_COMM1.Location = new System.Drawing.Point(15, 73);
  3185. this.lbl_COMM1.Name = "lbl_COMM1";
  3186. this.lbl_COMM1.Size = new System.Drawing.Size(70, 14);
  3187. this.lbl_COMM1.TabIndex = 111;
  3188. this.lbl_COMM1.Text = "중계반 01";
  3189. //
  3190. // btnBoard7_loop1
  3191. //
  3192. this.btnBoard7_loop1.Location = new System.Drawing.Point(145, 236);
  3193. this.btnBoard7_loop1.Name = "btnBoard7_loop1";
  3194. this.btnBoard7_loop1.Size = new System.Drawing.Size(23, 23);
  3195. this.btnBoard7_loop1.TabIndex = 144;
  3196. this.btnBoard7_loop1.UseVisualStyleBackColor = true;
  3197. //
  3198. // btnBoard1_loop3
  3199. //
  3200. this.btnBoard1_loop3.Location = new System.Drawing.Point(205, 68);
  3201. this.btnBoard1_loop3.Name = "btnBoard1_loop3";
  3202. this.btnBoard1_loop3.Size = new System.Drawing.Size(23, 23);
  3203. this.btnBoard1_loop3.TabIndex = 146;
  3204. this.btnBoard1_loop3.UseVisualStyleBackColor = true;
  3205. //
  3206. // btnBoard8_loop1
  3207. //
  3208. this.btnBoard8_loop1.Location = new System.Drawing.Point(145, 264);
  3209. this.btnBoard8_loop1.Name = "btnBoard8_loop1";
  3210. this.btnBoard8_loop1.Size = new System.Drawing.Size(23, 23);
  3211. this.btnBoard8_loop1.TabIndex = 144;
  3212. this.btnBoard8_loop1.UseVisualStyleBackColor = true;
  3213. //
  3214. // btnBoard2_loop2
  3215. //
  3216. this.btnBoard2_loop2.Location = new System.Drawing.Point(175, 96);
  3217. this.btnBoard2_loop2.Name = "btnBoard2_loop2";
  3218. this.btnBoard2_loop2.Size = new System.Drawing.Size(23, 23);
  3219. this.btnBoard2_loop2.TabIndex = 552;
  3220. this.btnBoard2_loop2.UseVisualStyleBackColor = true;
  3221. //
  3222. // btnBoard2_loop3
  3223. //
  3224. this.btnBoard2_loop3.Location = new System.Drawing.Point(205, 96);
  3225. this.btnBoard2_loop3.Name = "btnBoard2_loop3";
  3226. this.btnBoard2_loop3.Size = new System.Drawing.Size(23, 23);
  3227. this.btnBoard2_loop3.TabIndex = 553;
  3228. this.btnBoard2_loop3.UseVisualStyleBackColor = true;
  3229. //
  3230. // btnBoard3_loop2
  3231. //
  3232. this.btnBoard3_loop2.Location = new System.Drawing.Point(175, 124);
  3233. this.btnBoard3_loop2.Name = "btnBoard3_loop2";
  3234. this.btnBoard3_loop2.Size = new System.Drawing.Size(23, 23);
  3235. this.btnBoard3_loop2.TabIndex = 554;
  3236. this.btnBoard3_loop2.UseVisualStyleBackColor = true;
  3237. //
  3238. // btnBoard3_loop3
  3239. //
  3240. this.btnBoard3_loop3.Location = new System.Drawing.Point(205, 124);
  3241. this.btnBoard3_loop3.Name = "btnBoard3_loop3";
  3242. this.btnBoard3_loop3.Size = new System.Drawing.Size(23, 23);
  3243. this.btnBoard3_loop3.TabIndex = 555;
  3244. this.btnBoard3_loop3.UseVisualStyleBackColor = true;
  3245. //
  3246. // btnBoard4_loop2
  3247. //
  3248. this.btnBoard4_loop2.Location = new System.Drawing.Point(175, 152);
  3249. this.btnBoard4_loop2.Name = "btnBoard4_loop2";
  3250. this.btnBoard4_loop2.Size = new System.Drawing.Size(23, 23);
  3251. this.btnBoard4_loop2.TabIndex = 556;
  3252. this.btnBoard4_loop2.UseVisualStyleBackColor = true;
  3253. //
  3254. // btnBoard4_loop3
  3255. //
  3256. this.btnBoard4_loop3.Location = new System.Drawing.Point(205, 152);
  3257. this.btnBoard4_loop3.Name = "btnBoard4_loop3";
  3258. this.btnBoard4_loop3.Size = new System.Drawing.Size(23, 23);
  3259. this.btnBoard4_loop3.TabIndex = 557;
  3260. this.btnBoard4_loop3.UseVisualStyleBackColor = true;
  3261. //
  3262. // btnBoard5_loop2
  3263. //
  3264. this.btnBoard5_loop2.Location = new System.Drawing.Point(175, 180);
  3265. this.btnBoard5_loop2.Name = "btnBoard5_loop2";
  3266. this.btnBoard5_loop2.Size = new System.Drawing.Size(23, 23);
  3267. this.btnBoard5_loop2.TabIndex = 558;
  3268. this.btnBoard5_loop2.UseVisualStyleBackColor = true;
  3269. //
  3270. // btnBoard5_loop3
  3271. //
  3272. this.btnBoard5_loop3.Location = new System.Drawing.Point(205, 180);
  3273. this.btnBoard5_loop3.Name = "btnBoard5_loop3";
  3274. this.btnBoard5_loop3.Size = new System.Drawing.Size(23, 23);
  3275. this.btnBoard5_loop3.TabIndex = 559;
  3276. this.btnBoard5_loop3.UseVisualStyleBackColor = true;
  3277. //
  3278. // btnBoard6_loop2
  3279. //
  3280. this.btnBoard6_loop2.Location = new System.Drawing.Point(175, 208);
  3281. this.btnBoard6_loop2.Name = "btnBoard6_loop2";
  3282. this.btnBoard6_loop2.Size = new System.Drawing.Size(23, 23);
  3283. this.btnBoard6_loop2.TabIndex = 560;
  3284. this.btnBoard6_loop2.UseVisualStyleBackColor = true;
  3285. //
  3286. // btnBoard6_loop3
  3287. //
  3288. this.btnBoard6_loop3.Location = new System.Drawing.Point(205, 208);
  3289. this.btnBoard6_loop3.Name = "btnBoard6_loop3";
  3290. this.btnBoard6_loop3.Size = new System.Drawing.Size(23, 23);
  3291. this.btnBoard6_loop3.TabIndex = 561;
  3292. this.btnBoard6_loop3.UseVisualStyleBackColor = true;
  3293. //
  3294. // btnBoard7_loop2
  3295. //
  3296. this.btnBoard7_loop2.Location = new System.Drawing.Point(175, 236);
  3297. this.btnBoard7_loop2.Name = "btnBoard7_loop2";
  3298. this.btnBoard7_loop2.Size = new System.Drawing.Size(23, 23);
  3299. this.btnBoard7_loop2.TabIndex = 562;
  3300. this.btnBoard7_loop2.UseVisualStyleBackColor = true;
  3301. //
  3302. // btnBoard7_loop3
  3303. //
  3304. this.btnBoard7_loop3.Location = new System.Drawing.Point(205, 236);
  3305. this.btnBoard7_loop3.Name = "btnBoard7_loop3";
  3306. this.btnBoard7_loop3.Size = new System.Drawing.Size(23, 23);
  3307. this.btnBoard7_loop3.TabIndex = 563;
  3308. this.btnBoard7_loop3.UseVisualStyleBackColor = true;
  3309. //
  3310. // btnBoard8_loop2
  3311. //
  3312. this.btnBoard8_loop2.Location = new System.Drawing.Point(175, 264);
  3313. this.btnBoard8_loop2.Name = "btnBoard8_loop2";
  3314. this.btnBoard8_loop2.Size = new System.Drawing.Size(23, 23);
  3315. this.btnBoard8_loop2.TabIndex = 564;
  3316. this.btnBoard8_loop2.UseVisualStyleBackColor = true;
  3317. //
  3318. // btnBoard8_loop3
  3319. //
  3320. this.btnBoard8_loop3.Location = new System.Drawing.Point(205, 264);
  3321. this.btnBoard8_loop3.Name = "btnBoard8_loop3";
  3322. this.btnBoard8_loop3.Size = new System.Drawing.Size(23, 23);
  3323. this.btnBoard8_loop3.TabIndex = 565;
  3324. this.btnBoard8_loop3.UseVisualStyleBackColor = true;
  3325. //
  3326. // label2
  3327. //
  3328. this.label2.AutoSize = true;
  3329. this.label2.Font = new System.Drawing.Font("굴림", 10F);
  3330. this.label2.Location = new System.Drawing.Point(205, 38);
  3331. this.label2.Name = "label2";
  3332. this.label2.Size = new System.Drawing.Size(23, 14);
  3333. this.label2.TabIndex = 567;
  3334. this.label2.Text = "L3";
  3335. //
  3336. // label1
  3337. //
  3338. this.label1.AutoSize = true;
  3339. this.label1.Font = new System.Drawing.Font("굴림", 10F);
  3340. this.label1.Location = new System.Drawing.Point(175, 38);
  3341. this.label1.Name = "label1";
  3342. this.label1.Size = new System.Drawing.Size(23, 14);
  3343. this.label1.TabIndex = 566;
  3344. this.label1.Text = "L2";
  3345. //
  3346. // groupBox2
  3347. //
  3348. this.groupBox2.Controls.Add(this.label1);
  3349. this.groupBox2.Controls.Add(this.label2);
  3350. this.groupBox2.Controls.Add(this.btnBoard8_loop3);
  3351. this.groupBox2.Controls.Add(this.btnBoard8_loop2);
  3352. this.groupBox2.Controls.Add(this.btnBoard7_loop3);
  3353. this.groupBox2.Controls.Add(this.btnBoard7_loop2);
  3354. this.groupBox2.Controls.Add(this.btnBoard6_loop3);
  3355. this.groupBox2.Controls.Add(this.btnBoard6_loop2);
  3356. this.groupBox2.Controls.Add(this.btnBoard5_loop3);
  3357. this.groupBox2.Controls.Add(this.btnBoard5_loop2);
  3358. this.groupBox2.Controls.Add(this.btnBoard4_loop3);
  3359. this.groupBox2.Controls.Add(this.btnBoard4_loop2);
  3360. this.groupBox2.Controls.Add(this.btnBoard3_loop3);
  3361. this.groupBox2.Controls.Add(this.btnBoard3_loop2);
  3362. this.groupBox2.Controls.Add(this.btnBoard2_loop3);
  3363. this.groupBox2.Controls.Add(this.btnBoard2_loop2);
  3364. this.groupBox2.Controls.Add(this.btnBoard8_loop1);
  3365. this.groupBox2.Controls.Add(this.btnBoard1_loop3);
  3366. this.groupBox2.Controls.Add(this.btnBoard7_loop1);
  3367. this.groupBox2.Controls.Add(this.lbl_COMM1);
  3368. this.groupBox2.Controls.Add(this.btnBoard8_loop0);
  3369. this.groupBox2.Controls.Add(this.btnBoard6_loop1);
  3370. this.groupBox2.Controls.Add(this.btnBoard7_loop0);
  3371. this.groupBox2.Controls.Add(this.label10);
  3372. this.groupBox2.Controls.Add(this.lbl_COMM8);
  3373. this.groupBox2.Controls.Add(this.btnBoard5_loop1);
  3374. this.groupBox2.Controls.Add(this.lbl_COMM7);
  3375. this.groupBox2.Controls.Add(this.lbl_COMM55);
  3376. this.groupBox2.Controls.Add(this.lbl_COMM35);
  3377. this.groupBox2.Controls.Add(this.btnBoard4_loop1);
  3378. this.groupBox2.Controls.Add(this.label9);
  3379. this.groupBox2.Controls.Add(this.btnBoard1_loop2);
  3380. this.groupBox2.Controls.Add(this.lbl_COMM2);
  3381. this.groupBox2.Controls.Add(this.lbl_COMM15);
  3382. this.groupBox2.Controls.Add(this.btnBoard4_loop0);
  3383. this.groupBox2.Controls.Add(this.lbl_COMM4);
  3384. this.groupBox2.Controls.Add(this.lbl_COMM59);
  3385. this.groupBox2.Controls.Add(this.lbl_COMM5);
  3386. this.groupBox2.Controls.Add(this.lbl_COMM3);
  3387. this.groupBox2.Controls.Add(this.lbl_COMM6);
  3388. this.groupBox2.Controls.Add(this.lbl_COMM39);
  3389. this.groupBox2.Controls.Add(this.btnBoard6_loop0);
  3390. this.groupBox2.Controls.Add(this.btnBoard1_loop0);
  3391. this.groupBox2.Controls.Add(this.btnBoard5_loop0);
  3392. this.groupBox2.Controls.Add(this.lbl_COMM19);
  3393. this.groupBox2.Controls.Add(this.lbl_COMM54);
  3394. this.groupBox2.Controls.Add(this.btnBoard2_loop0);
  3395. this.groupBox2.Controls.Add(this.btnBoard48_loop3);
  3396. this.groupBox2.Controls.Add(this.btnBoard28_loop3);
  3397. this.groupBox2.Controls.Add(this.btnBoard3_loop0);
  3398. this.groupBox2.Controls.Add(this.btnBoard64_loop3);
  3399. this.groupBox2.Controls.Add(this.btnBoard44_loop3);
  3400. this.groupBox2.Controls.Add(this.btnBoard24_loop3);
  3401. this.groupBox2.Controls.Add(this.btnBoard1_loop1);
  3402. this.groupBox2.Controls.Add(this.btnBoard56_loop3);
  3403. this.groupBox2.Controls.Add(this.btnBoard36_loop3);
  3404. this.groupBox2.Controls.Add(this.btnBoard3_loop1);
  3405. this.groupBox2.Controls.Add(this.btnBoard16_loop3);
  3406. this.groupBox2.Controls.Add(this.btnBoard2_loop1);
  3407. this.groupBox2.Controls.Add(this.btnBoard60_loop3);
  3408. this.groupBox2.Controls.Add(this.btnBoard40_loop3);
  3409. this.groupBox2.Controls.Add(this.btnBoard20_loop3);
  3410. this.groupBox2.Controls.Add(this.btnBoard52_loop3);
  3411. this.groupBox2.Controls.Add(this.btnBoard32_loop3);
  3412. this.groupBox2.Controls.Add(this.btnBoard12_loop3);
  3413. this.groupBox2.Controls.Add(this.btnBoard47_loop3);
  3414. this.groupBox2.Controls.Add(this.btnBoard27_loop3);
  3415. this.groupBox2.Controls.Add(this.btnBoard63_loop3);
  3416. this.groupBox2.Controls.Add(this.btnBoard43_loop3);
  3417. this.groupBox2.Controls.Add(this.btnBoard23_loop3);
  3418. this.groupBox2.Controls.Add(this.btnBoard55_loop3);
  3419. this.groupBox2.Controls.Add(this.btnBoard35_loop3);
  3420. this.groupBox2.Controls.Add(this.btnBoard15_loop3);
  3421. this.groupBox2.Controls.Add(this.btnBoard59_loop3);
  3422. this.groupBox2.Controls.Add(this.btnBoard39_loop3);
  3423. this.groupBox2.Controls.Add(this.btnBoard19_loop3);
  3424. this.groupBox2.Controls.Add(this.btnBoard51_loop3);
  3425. this.groupBox2.Controls.Add(this.btnBoard31_loop3);
  3426. this.groupBox2.Controls.Add(this.btnBoard11_loop3);
  3427. this.groupBox2.Controls.Add(this.btnBoard46_loop3);
  3428. this.groupBox2.Controls.Add(this.btnBoard26_loop3);
  3429. this.groupBox2.Controls.Add(this.btnBoard62_loop3);
  3430. this.groupBox2.Controls.Add(this.btnBoard42_loop3);
  3431. this.groupBox2.Controls.Add(this.btnBoard22_loop3);
  3432. this.groupBox2.Controls.Add(this.btnBoard54_loop3);
  3433. this.groupBox2.Controls.Add(this.btnBoard34_loop3);
  3434. this.groupBox2.Controls.Add(this.btnBoard14_loop3);
  3435. this.groupBox2.Controls.Add(this.btnBoard58_loop3);
  3436. this.groupBox2.Controls.Add(this.btnBoard38_loop3);
  3437. this.groupBox2.Controls.Add(this.btnBoard18_loop3);
  3438. this.groupBox2.Controls.Add(this.btnBoard50_loop3);
  3439. this.groupBox2.Controls.Add(this.btnBoard30_loop3);
  3440. this.groupBox2.Controls.Add(this.btnBoard10_loop3);
  3441. this.groupBox2.Controls.Add(this.btnBoard45_loop3);
  3442. this.groupBox2.Controls.Add(this.btnBoard25_loop3);
  3443. this.groupBox2.Controls.Add(this.btnBoard61_loop3);
  3444. this.groupBox2.Controls.Add(this.btnBoard41_loop3);
  3445. this.groupBox2.Controls.Add(this.btnBoard21_loop3);
  3446. this.groupBox2.Controls.Add(this.btnBoard53_loop3);
  3447. this.groupBox2.Controls.Add(this.btnBoard33_loop3);
  3448. this.groupBox2.Controls.Add(this.btnBoard13_loop3);
  3449. this.groupBox2.Controls.Add(this.btnBoard57_loop3);
  3450. this.groupBox2.Controls.Add(this.btnBoard37_loop3);
  3451. this.groupBox2.Controls.Add(this.btnBoard17_loop3);
  3452. this.groupBox2.Controls.Add(this.btnBoard49_loop3);
  3453. this.groupBox2.Controls.Add(this.btnBoard29_loop3);
  3454. this.groupBox2.Controls.Add(this.btnBoard9_loop3);
  3455. this.groupBox2.Controls.Add(this.btnBoard48_loop1);
  3456. this.groupBox2.Controls.Add(this.btnBoard28_loop1);
  3457. this.groupBox2.Controls.Add(this.btnBoard64_loop1);
  3458. this.groupBox2.Controls.Add(this.btnBoard44_loop1);
  3459. this.groupBox2.Controls.Add(this.btnBoard24_loop1);
  3460. this.groupBox2.Controls.Add(this.btnBoard56_loop1);
  3461. this.groupBox2.Controls.Add(this.btnBoard36_loop1);
  3462. this.groupBox2.Controls.Add(this.btnBoard16_loop1);
  3463. this.groupBox2.Controls.Add(this.btnBoard60_loop1);
  3464. this.groupBox2.Controls.Add(this.btnBoard40_loop1);
  3465. this.groupBox2.Controls.Add(this.btnBoard20_loop1);
  3466. this.groupBox2.Controls.Add(this.btnBoard52_loop1);
  3467. this.groupBox2.Controls.Add(this.btnBoard32_loop1);
  3468. this.groupBox2.Controls.Add(this.btnBoard12_loop1);
  3469. this.groupBox2.Controls.Add(this.btnBoard47_loop1);
  3470. this.groupBox2.Controls.Add(this.btnBoard27_loop1);
  3471. this.groupBox2.Controls.Add(this.btnBoard63_loop1);
  3472. this.groupBox2.Controls.Add(this.btnBoard43_loop1);
  3473. this.groupBox2.Controls.Add(this.btnBoard23_loop1);
  3474. this.groupBox2.Controls.Add(this.btnBoard55_loop1);
  3475. this.groupBox2.Controls.Add(this.btnBoard35_loop1);
  3476. this.groupBox2.Controls.Add(this.btnBoard15_loop1);
  3477. this.groupBox2.Controls.Add(this.btnBoard59_loop1);
  3478. this.groupBox2.Controls.Add(this.btnBoard39_loop1);
  3479. this.groupBox2.Controls.Add(this.btnBoard19_loop1);
  3480. this.groupBox2.Controls.Add(this.btnBoard51_loop1);
  3481. this.groupBox2.Controls.Add(this.btnBoard31_loop1);
  3482. this.groupBox2.Controls.Add(this.btnBoard11_loop1);
  3483. this.groupBox2.Controls.Add(this.btnBoard46_loop1);
  3484. this.groupBox2.Controls.Add(this.btnBoard26_loop1);
  3485. this.groupBox2.Controls.Add(this.btnBoard62_loop1);
  3486. this.groupBox2.Controls.Add(this.btnBoard42_loop1);
  3487. this.groupBox2.Controls.Add(this.btnBoard22_loop1);
  3488. this.groupBox2.Controls.Add(this.btnBoard54_loop1);
  3489. this.groupBox2.Controls.Add(this.btnBoard34_loop1);
  3490. this.groupBox2.Controls.Add(this.btnBoard14_loop1);
  3491. this.groupBox2.Controls.Add(this.btnBoard58_loop1);
  3492. this.groupBox2.Controls.Add(this.btnBoard38_loop1);
  3493. this.groupBox2.Controls.Add(this.btnBoard18_loop1);
  3494. this.groupBox2.Controls.Add(this.btnBoard50_loop1);
  3495. this.groupBox2.Controls.Add(this.btnBoard30_loop1);
  3496. this.groupBox2.Controls.Add(this.btnBoard10_loop1);
  3497. this.groupBox2.Controls.Add(this.btnBoard45_loop1);
  3498. this.groupBox2.Controls.Add(this.btnBoard25_loop1);
  3499. this.groupBox2.Controls.Add(this.btnBoard61_loop1);
  3500. this.groupBox2.Controls.Add(this.btnBoard41_loop1);
  3501. this.groupBox2.Controls.Add(this.btnBoard21_loop1);
  3502. this.groupBox2.Controls.Add(this.btnBoard53_loop1);
  3503. this.groupBox2.Controls.Add(this.btnBoard33_loop1);
  3504. this.groupBox2.Controls.Add(this.btnBoard13_loop1);
  3505. this.groupBox2.Controls.Add(this.btnBoard57_loop1);
  3506. this.groupBox2.Controls.Add(this.btnBoard37_loop1);
  3507. this.groupBox2.Controls.Add(this.btnBoard17_loop1);
  3508. this.groupBox2.Controls.Add(this.btnBoard49_loop1);
  3509. this.groupBox2.Controls.Add(this.btnBoard29_loop1);
  3510. this.groupBox2.Controls.Add(this.btnBoard9_loop1);
  3511. this.groupBox2.Controls.Add(this.lbl_COMM34);
  3512. this.groupBox2.Controls.Add(this.lbl_COMM14);
  3513. this.groupBox2.Controls.Add(this.lbl_COMM58);
  3514. this.groupBox2.Controls.Add(this.lbl_COMM38);
  3515. this.groupBox2.Controls.Add(this.lbl_COMM18);
  3516. this.groupBox2.Controls.Add(this.lbl_COMM53);
  3517. this.groupBox2.Controls.Add(this.btnBoard48_loop2);
  3518. this.groupBox2.Controls.Add(this.btnBoard28_loop2);
  3519. this.groupBox2.Controls.Add(this.btnBoard64_loop2);
  3520. this.groupBox2.Controls.Add(this.btnBoard44_loop2);
  3521. this.groupBox2.Controls.Add(this.btnBoard24_loop2);
  3522. this.groupBox2.Controls.Add(this.btnBoard56_loop2);
  3523. this.groupBox2.Controls.Add(this.btnBoard36_loop2);
  3524. this.groupBox2.Controls.Add(this.btnBoard16_loop2);
  3525. this.groupBox2.Controls.Add(this.btnBoard60_loop2);
  3526. this.groupBox2.Controls.Add(this.btnBoard40_loop2);
  3527. this.groupBox2.Controls.Add(this.btnBoard20_loop2);
  3528. this.groupBox2.Controls.Add(this.btnBoard52_loop2);
  3529. this.groupBox2.Controls.Add(this.btnBoard32_loop2);
  3530. this.groupBox2.Controls.Add(this.btnBoard12_loop2);
  3531. this.groupBox2.Controls.Add(this.btnBoard47_loop2);
  3532. this.groupBox2.Controls.Add(this.btnBoard27_loop2);
  3533. this.groupBox2.Controls.Add(this.btnBoard63_loop2);
  3534. this.groupBox2.Controls.Add(this.btnBoard43_loop2);
  3535. this.groupBox2.Controls.Add(this.btnBoard23_loop2);
  3536. this.groupBox2.Controls.Add(this.btnBoard55_loop2);
  3537. this.groupBox2.Controls.Add(this.btnBoard35_loop2);
  3538. this.groupBox2.Controls.Add(this.btnBoard15_loop2);
  3539. this.groupBox2.Controls.Add(this.btnBoard59_loop2);
  3540. this.groupBox2.Controls.Add(this.btnBoard39_loop2);
  3541. this.groupBox2.Controls.Add(this.btnBoard19_loop2);
  3542. this.groupBox2.Controls.Add(this.btnBoard51_loop2);
  3543. this.groupBox2.Controls.Add(this.btnBoard31_loop2);
  3544. this.groupBox2.Controls.Add(this.btnBoard11_loop2);
  3545. this.groupBox2.Controls.Add(this.btnBoard46_loop2);
  3546. this.groupBox2.Controls.Add(this.btnBoard26_loop2);
  3547. this.groupBox2.Controls.Add(this.btnBoard62_loop2);
  3548. this.groupBox2.Controls.Add(this.btnBoard42_loop2);
  3549. this.groupBox2.Controls.Add(this.btnBoard22_loop2);
  3550. this.groupBox2.Controls.Add(this.btnBoard54_loop2);
  3551. this.groupBox2.Controls.Add(this.btnBoard34_loop2);
  3552. this.groupBox2.Controls.Add(this.btnBoard14_loop2);
  3553. this.groupBox2.Controls.Add(this.btnBoard58_loop2);
  3554. this.groupBox2.Controls.Add(this.btnBoard38_loop2);
  3555. this.groupBox2.Controls.Add(this.btnBoard18_loop2);
  3556. this.groupBox2.Controls.Add(this.btnBoard50_loop2);
  3557. this.groupBox2.Controls.Add(this.btnBoard30_loop2);
  3558. this.groupBox2.Controls.Add(this.btnBoard10_loop2);
  3559. this.groupBox2.Controls.Add(this.btnBoard45_loop2);
  3560. this.groupBox2.Controls.Add(this.btnBoard25_loop2);
  3561. this.groupBox2.Controls.Add(this.btnBoard61_loop2);
  3562. this.groupBox2.Controls.Add(this.btnBoard41_loop2);
  3563. this.groupBox2.Controls.Add(this.btnBoard21_loop2);
  3564. this.groupBox2.Controls.Add(this.btnBoard53_loop2);
  3565. this.groupBox2.Controls.Add(this.btnBoard33_loop2);
  3566. this.groupBox2.Controls.Add(this.btnBoard13_loop2);
  3567. this.groupBox2.Controls.Add(this.btnBoard57_loop2);
  3568. this.groupBox2.Controls.Add(this.btnBoard37_loop2);
  3569. this.groupBox2.Controls.Add(this.btnBoard17_loop2);
  3570. this.groupBox2.Controls.Add(this.btnBoard49_loop2);
  3571. this.groupBox2.Controls.Add(this.btnBoard29_loop2);
  3572. this.groupBox2.Controls.Add(this.btnBoard9_loop2);
  3573. this.groupBox2.Controls.Add(this.lbl_COMM33);
  3574. this.groupBox2.Controls.Add(this.btnBoard48_loop0);
  3575. this.groupBox2.Controls.Add(this.btnBoard28_loop0);
  3576. this.groupBox2.Controls.Add(this.btnBoard64_loop0);
  3577. this.groupBox2.Controls.Add(this.btnBoard44_loop0);
  3578. this.groupBox2.Controls.Add(this.btnBoard24_loop0);
  3579. this.groupBox2.Controls.Add(this.btnBoard56_loop0);
  3580. this.groupBox2.Controls.Add(this.btnBoard36_loop0);
  3581. this.groupBox2.Controls.Add(this.btnBoard16_loop0);
  3582. this.groupBox2.Controls.Add(this.btnBoard60_loop0);
  3583. this.groupBox2.Controls.Add(this.btnBoard40_loop0);
  3584. this.groupBox2.Controls.Add(this.btnBoard20_loop0);
  3585. this.groupBox2.Controls.Add(this.btnBoard52_loop0);
  3586. this.groupBox2.Controls.Add(this.btnBoard32_loop0);
  3587. this.groupBox2.Controls.Add(this.btnBoard12_loop0);
  3588. this.groupBox2.Controls.Add(this.btnBoard47_loop0);
  3589. this.groupBox2.Controls.Add(this.btnBoard27_loop0);
  3590. this.groupBox2.Controls.Add(this.btnBoard63_loop0);
  3591. this.groupBox2.Controls.Add(this.btnBoard43_loop0);
  3592. this.groupBox2.Controls.Add(this.btnBoard23_loop0);
  3593. this.groupBox2.Controls.Add(this.btnBoard55_loop0);
  3594. this.groupBox2.Controls.Add(this.btnBoard35_loop0);
  3595. this.groupBox2.Controls.Add(this.btnBoard15_loop0);
  3596. this.groupBox2.Controls.Add(this.btnBoard59_loop0);
  3597. this.groupBox2.Controls.Add(this.btnBoard39_loop0);
  3598. this.groupBox2.Controls.Add(this.btnBoard19_loop0);
  3599. this.groupBox2.Controls.Add(this.btnBoard51_loop0);
  3600. this.groupBox2.Controls.Add(this.btnBoard31_loop0);
  3601. this.groupBox2.Controls.Add(this.btnBoard11_loop0);
  3602. this.groupBox2.Controls.Add(this.btnBoard46_loop0);
  3603. this.groupBox2.Controls.Add(this.btnBoard26_loop0);
  3604. this.groupBox2.Controls.Add(this.btnBoard62_loop0);
  3605. this.groupBox2.Controls.Add(this.btnBoard42_loop0);
  3606. this.groupBox2.Controls.Add(this.btnBoard22_loop0);
  3607. this.groupBox2.Controls.Add(this.btnBoard54_loop0);
  3608. this.groupBox2.Controls.Add(this.btnBoard34_loop0);
  3609. this.groupBox2.Controls.Add(this.btnBoard14_loop0);
  3610. this.groupBox2.Controls.Add(this.btnBoard58_loop0);
  3611. this.groupBox2.Controls.Add(this.btnBoard38_loop0);
  3612. this.groupBox2.Controls.Add(this.btnBoard18_loop0);
  3613. this.groupBox2.Controls.Add(this.btnBoard50_loop0);
  3614. this.groupBox2.Controls.Add(this.btnBoard30_loop0);
  3615. this.groupBox2.Controls.Add(this.btnBoard10_loop0);
  3616. this.groupBox2.Controls.Add(this.btnBoard45_loop0);
  3617. this.groupBox2.Controls.Add(this.btnBoard25_loop0);
  3618. this.groupBox2.Controls.Add(this.btnBoard61_loop0);
  3619. this.groupBox2.Controls.Add(this.btnBoard41_loop0);
  3620. this.groupBox2.Controls.Add(this.btnBoard21_loop0);
  3621. this.groupBox2.Controls.Add(this.btnBoard53_loop0);
  3622. this.groupBox2.Controls.Add(this.btnBoard33_loop0);
  3623. this.groupBox2.Controls.Add(this.btnBoard13_loop0);
  3624. this.groupBox2.Controls.Add(this.btnBoard57_loop0);
  3625. this.groupBox2.Controls.Add(this.btnBoard37_loop0);
  3626. this.groupBox2.Controls.Add(this.btnBoard17_loop0);
  3627. this.groupBox2.Controls.Add(this.btnBoard49_loop0);
  3628. this.groupBox2.Controls.Add(this.btnBoard29_loop0);
  3629. this.groupBox2.Controls.Add(this.btnBoard9_loop0);
  3630. this.groupBox2.Controls.Add(this.lbl_COMM13);
  3631. this.groupBox2.Controls.Add(this.lbl_COMM57);
  3632. this.groupBox2.Controls.Add(this.lbl_COMM37);
  3633. this.groupBox2.Controls.Add(this.lbl_COMM17);
  3634. this.groupBox2.Controls.Add(this.lbl_COMM52);
  3635. this.groupBox2.Controls.Add(this.lbl_COMM32);
  3636. this.groupBox2.Controls.Add(this.lbl_COMM12);
  3637. this.groupBox2.Controls.Add(this.label80);
  3638. this.groupBox2.Controls.Add(this.label55);
  3639. this.groupBox2.Controls.Add(this.label33);
  3640. this.groupBox2.Controls.Add(this.label79);
  3641. this.groupBox2.Controls.Add(this.label54);
  3642. this.groupBox2.Controls.Add(this.label8);
  3643. this.groupBox2.Controls.Add(this.label78);
  3644. this.groupBox2.Controls.Add(this.label52);
  3645. this.groupBox2.Controls.Add(this.label32);
  3646. this.groupBox2.Controls.Add(this.label77);
  3647. this.groupBox2.Controls.Add(this.label51);
  3648. this.groupBox2.Controls.Add(this.label5);
  3649. this.groupBox2.Controls.Add(this.lbl_COMM56);
  3650. this.groupBox2.Controls.Add(this.lbl_COMM36);
  3651. this.groupBox2.Controls.Add(this.lbl_COMM16);
  3652. this.groupBox2.Controls.Add(this.lbl_COMM51);
  3653. this.groupBox2.Controls.Add(this.lbl_COMM31);
  3654. this.groupBox2.Controls.Add(this.lbl_COMM11);
  3655. this.groupBox2.Controls.Add(this.lbl_COMM50);
  3656. this.groupBox2.Controls.Add(this.lbl_COMM30);
  3657. this.groupBox2.Controls.Add(this.lbl_COMM10);
  3658. this.groupBox2.Controls.Add(this.lbl_COMM64);
  3659. this.groupBox2.Controls.Add(this.lbl_COMM44);
  3660. this.groupBox2.Controls.Add(this.lbl_COMM24);
  3661. this.groupBox2.Controls.Add(this.lbl_COMM49);
  3662. this.groupBox2.Controls.Add(this.lbl_COMM29);
  3663. this.groupBox2.Controls.Add(this.lbl_COMM9);
  3664. this.groupBox2.Controls.Add(this.lbl_COMM63);
  3665. this.groupBox2.Controls.Add(this.lbl_COMM43);
  3666. this.groupBox2.Controls.Add(this.lbl_COMM23);
  3667. this.groupBox2.Controls.Add(this.lbl_COMM48);
  3668. this.groupBox2.Controls.Add(this.lbl_COMM28);
  3669. this.groupBox2.Controls.Add(this.lbl_COMM60);
  3670. this.groupBox2.Controls.Add(this.lbl_COMM40);
  3671. this.groupBox2.Controls.Add(this.lbl_COMM20);
  3672. this.groupBox2.Controls.Add(this.lbl_COMM62);
  3673. this.groupBox2.Controls.Add(this.lbl_COMM42);
  3674. this.groupBox2.Controls.Add(this.lbl_COMM22);
  3675. this.groupBox2.Controls.Add(this.lbl_COMM45);
  3676. this.groupBox2.Controls.Add(this.lbl_COMM25);
  3677. this.groupBox2.Controls.Add(this.lbl_COMM47);
  3678. this.groupBox2.Controls.Add(this.lbl_COMM27);
  3679. this.groupBox2.Controls.Add(this.lbl_COMM61);
  3680. this.groupBox2.Controls.Add(this.lbl_COMM41);
  3681. this.groupBox2.Controls.Add(this.lbl_COMM46);
  3682. this.groupBox2.Controls.Add(this.lbl_COMM21);
  3683. this.groupBox2.Controls.Add(this.lbl_COMM26);
  3684. this.groupBox2.Location = new System.Drawing.Point(15, 141);
  3685. this.groupBox2.Name = "groupBox2";
  3686. this.groupBox2.Size = new System.Drawing.Size(1051, 644);
  3687. this.groupBox2.TabIndex = 234;
  3688. this.groupBox2.TabStop = false;
  3689. this.groupBox2.Text = "중계반";
  3690. //
  3691. // frmBoardGroup_BigReceiver
  3692. //
  3693. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  3694. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(185)))), ((int)(((byte)(211)))), ((int)(((byte)(228)))));
  3695. this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3696. this.ClientSize = new System.Drawing.Size(1080, 824);
  3697. this.Controls.Add(this.groupBox2);
  3698. this.Controls.Add(this.btnCommand);
  3699. this.Controls.Add(this.button3);
  3700. this.Controls.Add(this.txtThisReceiverID);
  3701. this.Controls.Add(this.panel1);
  3702. this.Controls.Add(this.panel_Temp);
  3703. this.DoubleBuffered = true;
  3704. this.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  3705. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  3706. this.MaximizeBox = false;
  3707. this.MinimizeBox = false;
  3708. this.Name = "frmBoardGroup_BigReceiver";
  3709. this.ShowIcon = false;
  3710. this.ShowInTaskbar = false;
  3711. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  3712. this.Text = "frmBoardGroup";
  3713. this.Activated += new System.EventHandler(this.frmBoardGroup_Activated);
  3714. this.Load += new System.EventHandler(this.frmBoardGroup_Load_1);
  3715. this.Disposed += new System.EventHandler(this.frmBoardGroup_Disposed);
  3716. this.panel1.ResumeLayout(false);
  3717. this.panel1.PerformLayout();
  3718. this.groupBox2.ResumeLayout(false);
  3719. this.groupBox2.PerformLayout();
  3720. this.ResumeLayout(false);
  3721. this.PerformLayout();
  3722. }
  3723. #endregion
  3724. private System.Windows.Forms.Panel panel1;
  3725. private System.Windows.Forms.Label lblDir;
  3726. private System.Windows.Forms.Button button3;
  3727. private System.Windows.Forms.TextBox txtThisReceiverID;
  3728. private System.Windows.Forms.Button btnWinClose;
  3729. private System.Windows.Forms.Button btnCommand;
  3730. private System.Windows.Forms.ImageList imageList1;
  3731. private System.Windows.Forms.Panel panel_Temp;
  3732. private System.Windows.Forms.ImageList imageList_Loop;
  3733. private System.Windows.Forms.ImageList imageList_RepeaterBoard;
  3734. private System.Windows.Forms.Label lbl_COMM26;
  3735. private System.Windows.Forms.Label lbl_COMM21;
  3736. private System.Windows.Forms.Label lbl_COMM46;
  3737. private System.Windows.Forms.Label lbl_COMM41;
  3738. private System.Windows.Forms.Label lbl_COMM61;
  3739. private System.Windows.Forms.Label lbl_COMM27;
  3740. private System.Windows.Forms.Label lbl_COMM47;
  3741. private System.Windows.Forms.Label lbl_COMM25;
  3742. private System.Windows.Forms.Label lbl_COMM45;
  3743. private System.Windows.Forms.Label lbl_COMM22;
  3744. private System.Windows.Forms.Label lbl_COMM42;
  3745. private System.Windows.Forms.Label lbl_COMM62;
  3746. private System.Windows.Forms.Label lbl_COMM20;
  3747. private System.Windows.Forms.Label lbl_COMM40;
  3748. private System.Windows.Forms.Label lbl_COMM60;
  3749. private System.Windows.Forms.Label lbl_COMM28;
  3750. private System.Windows.Forms.Label lbl_COMM48;
  3751. private System.Windows.Forms.Label lbl_COMM23;
  3752. private System.Windows.Forms.Label lbl_COMM43;
  3753. private System.Windows.Forms.Label lbl_COMM63;
  3754. private System.Windows.Forms.Label lbl_COMM9;
  3755. private System.Windows.Forms.Label lbl_COMM29;
  3756. private System.Windows.Forms.Label lbl_COMM49;
  3757. private System.Windows.Forms.Label lbl_COMM24;
  3758. private System.Windows.Forms.Label lbl_COMM44;
  3759. private System.Windows.Forms.Label lbl_COMM64;
  3760. private System.Windows.Forms.Label lbl_COMM10;
  3761. private System.Windows.Forms.Label lbl_COMM30;
  3762. private System.Windows.Forms.Label lbl_COMM50;
  3763. private System.Windows.Forms.Label lbl_COMM11;
  3764. private System.Windows.Forms.Label lbl_COMM31;
  3765. private System.Windows.Forms.Label lbl_COMM51;
  3766. private System.Windows.Forms.Label lbl_COMM16;
  3767. private System.Windows.Forms.Label lbl_COMM36;
  3768. private System.Windows.Forms.Label lbl_COMM56;
  3769. private System.Windows.Forms.Label label5;
  3770. private System.Windows.Forms.Label label51;
  3771. private System.Windows.Forms.Label label77;
  3772. private System.Windows.Forms.Label label32;
  3773. private System.Windows.Forms.Label label52;
  3774. private System.Windows.Forms.Label label78;
  3775. private System.Windows.Forms.Label label8;
  3776. private System.Windows.Forms.Label label54;
  3777. private System.Windows.Forms.Label label79;
  3778. private System.Windows.Forms.Label label33;
  3779. private System.Windows.Forms.Label label55;
  3780. private System.Windows.Forms.Label label80;
  3781. private System.Windows.Forms.Label lbl_COMM12;
  3782. private System.Windows.Forms.Label lbl_COMM32;
  3783. private System.Windows.Forms.Label lbl_COMM52;
  3784. private System.Windows.Forms.Label lbl_COMM17;
  3785. private System.Windows.Forms.Label lbl_COMM37;
  3786. private System.Windows.Forms.Label lbl_COMM57;
  3787. private System.Windows.Forms.Label lbl_COMM13;
  3788. private System.Windows.Forms.Button btnBoard9_loop0;
  3789. private System.Windows.Forms.Button btnBoard29_loop0;
  3790. private System.Windows.Forms.Button btnBoard49_loop0;
  3791. private System.Windows.Forms.Button btnBoard17_loop0;
  3792. private System.Windows.Forms.Button btnBoard37_loop0;
  3793. private System.Windows.Forms.Button btnBoard57_loop0;
  3794. private System.Windows.Forms.Button btnBoard13_loop0;
  3795. private System.Windows.Forms.Button btnBoard33_loop0;
  3796. private System.Windows.Forms.Button btnBoard53_loop0;
  3797. private System.Windows.Forms.Button btnBoard21_loop0;
  3798. private System.Windows.Forms.Button btnBoard41_loop0;
  3799. private System.Windows.Forms.Button btnBoard61_loop0;
  3800. private System.Windows.Forms.Button btnBoard25_loop0;
  3801. private System.Windows.Forms.Button btnBoard45_loop0;
  3802. private System.Windows.Forms.Button btnBoard10_loop0;
  3803. private System.Windows.Forms.Button btnBoard30_loop0;
  3804. private System.Windows.Forms.Button btnBoard50_loop0;
  3805. private System.Windows.Forms.Button btnBoard18_loop0;
  3806. private System.Windows.Forms.Button btnBoard38_loop0;
  3807. private System.Windows.Forms.Button btnBoard58_loop0;
  3808. private System.Windows.Forms.Button btnBoard14_loop0;
  3809. private System.Windows.Forms.Button btnBoard34_loop0;
  3810. private System.Windows.Forms.Button btnBoard54_loop0;
  3811. private System.Windows.Forms.Button btnBoard22_loop0;
  3812. private System.Windows.Forms.Button btnBoard42_loop0;
  3813. private System.Windows.Forms.Button btnBoard62_loop0;
  3814. private System.Windows.Forms.Button btnBoard26_loop0;
  3815. private System.Windows.Forms.Button btnBoard46_loop0;
  3816. private System.Windows.Forms.Button btnBoard11_loop0;
  3817. private System.Windows.Forms.Button btnBoard31_loop0;
  3818. private System.Windows.Forms.Button btnBoard51_loop0;
  3819. private System.Windows.Forms.Button btnBoard19_loop0;
  3820. private System.Windows.Forms.Button btnBoard39_loop0;
  3821. private System.Windows.Forms.Button btnBoard59_loop0;
  3822. private System.Windows.Forms.Button btnBoard15_loop0;
  3823. private System.Windows.Forms.Button btnBoard35_loop0;
  3824. private System.Windows.Forms.Button btnBoard55_loop0;
  3825. private System.Windows.Forms.Button btnBoard23_loop0;
  3826. private System.Windows.Forms.Button btnBoard43_loop0;
  3827. private System.Windows.Forms.Button btnBoard63_loop0;
  3828. private System.Windows.Forms.Button btnBoard27_loop0;
  3829. private System.Windows.Forms.Button btnBoard47_loop0;
  3830. private System.Windows.Forms.Button btnBoard12_loop0;
  3831. private System.Windows.Forms.Button btnBoard32_loop0;
  3832. private System.Windows.Forms.Button btnBoard52_loop0;
  3833. private System.Windows.Forms.Button btnBoard20_loop0;
  3834. private System.Windows.Forms.Button btnBoard40_loop0;
  3835. private System.Windows.Forms.Button btnBoard60_loop0;
  3836. private System.Windows.Forms.Button btnBoard16_loop0;
  3837. private System.Windows.Forms.Button btnBoard36_loop0;
  3838. private System.Windows.Forms.Button btnBoard56_loop0;
  3839. private System.Windows.Forms.Button btnBoard24_loop0;
  3840. private System.Windows.Forms.Button btnBoard44_loop0;
  3841. private System.Windows.Forms.Button btnBoard64_loop0;
  3842. private System.Windows.Forms.Button btnBoard28_loop0;
  3843. private System.Windows.Forms.Button btnBoard48_loop0;
  3844. private System.Windows.Forms.Label lbl_COMM33;
  3845. private System.Windows.Forms.Button btnBoard9_loop2;
  3846. private System.Windows.Forms.Button btnBoard29_loop2;
  3847. private System.Windows.Forms.Button btnBoard49_loop2;
  3848. private System.Windows.Forms.Button btnBoard17_loop2;
  3849. private System.Windows.Forms.Button btnBoard37_loop2;
  3850. private System.Windows.Forms.Button btnBoard57_loop2;
  3851. private System.Windows.Forms.Button btnBoard13_loop2;
  3852. private System.Windows.Forms.Button btnBoard33_loop2;
  3853. private System.Windows.Forms.Button btnBoard53_loop2;
  3854. private System.Windows.Forms.Button btnBoard21_loop2;
  3855. private System.Windows.Forms.Button btnBoard41_loop2;
  3856. private System.Windows.Forms.Button btnBoard61_loop2;
  3857. private System.Windows.Forms.Button btnBoard25_loop2;
  3858. private System.Windows.Forms.Button btnBoard45_loop2;
  3859. private System.Windows.Forms.Button btnBoard10_loop2;
  3860. private System.Windows.Forms.Button btnBoard30_loop2;
  3861. private System.Windows.Forms.Button btnBoard50_loop2;
  3862. private System.Windows.Forms.Button btnBoard18_loop2;
  3863. private System.Windows.Forms.Button btnBoard38_loop2;
  3864. private System.Windows.Forms.Button btnBoard58_loop2;
  3865. private System.Windows.Forms.Button btnBoard14_loop2;
  3866. private System.Windows.Forms.Button btnBoard34_loop2;
  3867. private System.Windows.Forms.Button btnBoard54_loop2;
  3868. private System.Windows.Forms.Button btnBoard22_loop2;
  3869. private System.Windows.Forms.Button btnBoard42_loop2;
  3870. private System.Windows.Forms.Button btnBoard62_loop2;
  3871. private System.Windows.Forms.Button btnBoard26_loop2;
  3872. private System.Windows.Forms.Button btnBoard46_loop2;
  3873. private System.Windows.Forms.Button btnBoard11_loop2;
  3874. private System.Windows.Forms.Button btnBoard31_loop2;
  3875. private System.Windows.Forms.Button btnBoard51_loop2;
  3876. private System.Windows.Forms.Button btnBoard19_loop2;
  3877. private System.Windows.Forms.Button btnBoard39_loop2;
  3878. private System.Windows.Forms.Button btnBoard59_loop2;
  3879. private System.Windows.Forms.Button btnBoard15_loop2;
  3880. private System.Windows.Forms.Button btnBoard35_loop2;
  3881. private System.Windows.Forms.Button btnBoard55_loop2;
  3882. private System.Windows.Forms.Button btnBoard23_loop2;
  3883. private System.Windows.Forms.Button btnBoard43_loop2;
  3884. private System.Windows.Forms.Button btnBoard63_loop2;
  3885. private System.Windows.Forms.Button btnBoard27_loop2;
  3886. private System.Windows.Forms.Button btnBoard47_loop2;
  3887. private System.Windows.Forms.Button btnBoard12_loop2;
  3888. private System.Windows.Forms.Button btnBoard32_loop2;
  3889. private System.Windows.Forms.Button btnBoard52_loop2;
  3890. private System.Windows.Forms.Button btnBoard20_loop2;
  3891. private System.Windows.Forms.Button btnBoard40_loop2;
  3892. private System.Windows.Forms.Button btnBoard60_loop2;
  3893. private System.Windows.Forms.Button btnBoard16_loop2;
  3894. private System.Windows.Forms.Button btnBoard36_loop2;
  3895. private System.Windows.Forms.Button btnBoard56_loop2;
  3896. private System.Windows.Forms.Button btnBoard24_loop2;
  3897. private System.Windows.Forms.Button btnBoard44_loop2;
  3898. private System.Windows.Forms.Button btnBoard64_loop2;
  3899. private System.Windows.Forms.Button btnBoard28_loop2;
  3900. private System.Windows.Forms.Button btnBoard48_loop2;
  3901. private System.Windows.Forms.Label lbl_COMM53;
  3902. private System.Windows.Forms.Label lbl_COMM18;
  3903. private System.Windows.Forms.Label lbl_COMM38;
  3904. private System.Windows.Forms.Label lbl_COMM58;
  3905. private System.Windows.Forms.Label lbl_COMM14;
  3906. private System.Windows.Forms.Label lbl_COMM34;
  3907. private System.Windows.Forms.Button btnBoard9_loop1;
  3908. private System.Windows.Forms.Button btnBoard29_loop1;
  3909. private System.Windows.Forms.Button btnBoard49_loop1;
  3910. private System.Windows.Forms.Button btnBoard17_loop1;
  3911. private System.Windows.Forms.Button btnBoard37_loop1;
  3912. private System.Windows.Forms.Button btnBoard57_loop1;
  3913. private System.Windows.Forms.Button btnBoard13_loop1;
  3914. private System.Windows.Forms.Button btnBoard33_loop1;
  3915. private System.Windows.Forms.Button btnBoard53_loop1;
  3916. private System.Windows.Forms.Button btnBoard21_loop1;
  3917. private System.Windows.Forms.Button btnBoard41_loop1;
  3918. private System.Windows.Forms.Button btnBoard61_loop1;
  3919. private System.Windows.Forms.Button btnBoard25_loop1;
  3920. private System.Windows.Forms.Button btnBoard45_loop1;
  3921. private System.Windows.Forms.Button btnBoard10_loop1;
  3922. private System.Windows.Forms.Button btnBoard30_loop1;
  3923. private System.Windows.Forms.Button btnBoard50_loop1;
  3924. private System.Windows.Forms.Button btnBoard18_loop1;
  3925. private System.Windows.Forms.Button btnBoard38_loop1;
  3926. private System.Windows.Forms.Button btnBoard58_loop1;
  3927. private System.Windows.Forms.Button btnBoard14_loop1;
  3928. private System.Windows.Forms.Button btnBoard34_loop1;
  3929. private System.Windows.Forms.Button btnBoard54_loop1;
  3930. private System.Windows.Forms.Button btnBoard22_loop1;
  3931. private System.Windows.Forms.Button btnBoard42_loop1;
  3932. private System.Windows.Forms.Button btnBoard62_loop1;
  3933. private System.Windows.Forms.Button btnBoard26_loop1;
  3934. private System.Windows.Forms.Button btnBoard46_loop1;
  3935. private System.Windows.Forms.Button btnBoard11_loop1;
  3936. private System.Windows.Forms.Button btnBoard31_loop1;
  3937. private System.Windows.Forms.Button btnBoard51_loop1;
  3938. private System.Windows.Forms.Button btnBoard19_loop1;
  3939. private System.Windows.Forms.Button btnBoard39_loop1;
  3940. private System.Windows.Forms.Button btnBoard59_loop1;
  3941. private System.Windows.Forms.Button btnBoard15_loop1;
  3942. private System.Windows.Forms.Button btnBoard35_loop1;
  3943. private System.Windows.Forms.Button btnBoard55_loop1;
  3944. private System.Windows.Forms.Button btnBoard23_loop1;
  3945. private System.Windows.Forms.Button btnBoard43_loop1;
  3946. private System.Windows.Forms.Button btnBoard63_loop1;
  3947. private System.Windows.Forms.Button btnBoard27_loop1;
  3948. private System.Windows.Forms.Button btnBoard47_loop1;
  3949. private System.Windows.Forms.Button btnBoard12_loop1;
  3950. private System.Windows.Forms.Button btnBoard32_loop1;
  3951. private System.Windows.Forms.Button btnBoard52_loop1;
  3952. private System.Windows.Forms.Button btnBoard20_loop1;
  3953. private System.Windows.Forms.Button btnBoard40_loop1;
  3954. private System.Windows.Forms.Button btnBoard60_loop1;
  3955. private System.Windows.Forms.Button btnBoard16_loop1;
  3956. private System.Windows.Forms.Button btnBoard36_loop1;
  3957. private System.Windows.Forms.Button btnBoard56_loop1;
  3958. private System.Windows.Forms.Button btnBoard24_loop1;
  3959. private System.Windows.Forms.Button btnBoard44_loop1;
  3960. private System.Windows.Forms.Button btnBoard64_loop1;
  3961. private System.Windows.Forms.Button btnBoard28_loop1;
  3962. private System.Windows.Forms.Button btnBoard48_loop1;
  3963. private System.Windows.Forms.Button btnBoard9_loop3;
  3964. private System.Windows.Forms.Button btnBoard29_loop3;
  3965. private System.Windows.Forms.Button btnBoard49_loop3;
  3966. private System.Windows.Forms.Button btnBoard17_loop3;
  3967. private System.Windows.Forms.Button btnBoard37_loop3;
  3968. private System.Windows.Forms.Button btnBoard57_loop3;
  3969. private System.Windows.Forms.Button btnBoard13_loop3;
  3970. private System.Windows.Forms.Button btnBoard33_loop3;
  3971. private System.Windows.Forms.Button btnBoard53_loop3;
  3972. private System.Windows.Forms.Button btnBoard21_loop3;
  3973. private System.Windows.Forms.Button btnBoard41_loop3;
  3974. private System.Windows.Forms.Button btnBoard61_loop3;
  3975. private System.Windows.Forms.Button btnBoard25_loop3;
  3976. private System.Windows.Forms.Button btnBoard45_loop3;
  3977. private System.Windows.Forms.Button btnBoard10_loop3;
  3978. private System.Windows.Forms.Button btnBoard30_loop3;
  3979. private System.Windows.Forms.Button btnBoard50_loop3;
  3980. private System.Windows.Forms.Button btnBoard18_loop3;
  3981. private System.Windows.Forms.Button btnBoard38_loop3;
  3982. private System.Windows.Forms.Button btnBoard58_loop3;
  3983. private System.Windows.Forms.Button btnBoard14_loop3;
  3984. private System.Windows.Forms.Button btnBoard34_loop3;
  3985. private System.Windows.Forms.Button btnBoard54_loop3;
  3986. private System.Windows.Forms.Button btnBoard22_loop3;
  3987. private System.Windows.Forms.Button btnBoard42_loop3;
  3988. private System.Windows.Forms.Button btnBoard62_loop3;
  3989. private System.Windows.Forms.Button btnBoard26_loop3;
  3990. private System.Windows.Forms.Button btnBoard46_loop3;
  3991. private System.Windows.Forms.Button btnBoard11_loop3;
  3992. private System.Windows.Forms.Button btnBoard31_loop3;
  3993. private System.Windows.Forms.Button btnBoard51_loop3;
  3994. private System.Windows.Forms.Button btnBoard19_loop3;
  3995. private System.Windows.Forms.Button btnBoard39_loop3;
  3996. private System.Windows.Forms.Button btnBoard59_loop3;
  3997. private System.Windows.Forms.Button btnBoard15_loop3;
  3998. private System.Windows.Forms.Button btnBoard35_loop3;
  3999. private System.Windows.Forms.Button btnBoard55_loop3;
  4000. private System.Windows.Forms.Button btnBoard23_loop3;
  4001. private System.Windows.Forms.Button btnBoard43_loop3;
  4002. private System.Windows.Forms.Button btnBoard63_loop3;
  4003. private System.Windows.Forms.Button btnBoard27_loop3;
  4004. private System.Windows.Forms.Button btnBoard47_loop3;
  4005. private System.Windows.Forms.Button btnBoard12_loop3;
  4006. private System.Windows.Forms.Button btnBoard32_loop3;
  4007. private System.Windows.Forms.Button btnBoard52_loop3;
  4008. private System.Windows.Forms.Button btnBoard20_loop3;
  4009. private System.Windows.Forms.Button btnBoard40_loop3;
  4010. private System.Windows.Forms.Button btnBoard60_loop3;
  4011. private System.Windows.Forms.Button btnBoard2_loop1;
  4012. private System.Windows.Forms.Button btnBoard16_loop3;
  4013. private System.Windows.Forms.Button btnBoard3_loop1;
  4014. private System.Windows.Forms.Button btnBoard36_loop3;
  4015. private System.Windows.Forms.Button btnBoard56_loop3;
  4016. private System.Windows.Forms.Button btnBoard1_loop1;
  4017. private System.Windows.Forms.Button btnBoard24_loop3;
  4018. private System.Windows.Forms.Button btnBoard44_loop3;
  4019. private System.Windows.Forms.Button btnBoard64_loop3;
  4020. private System.Windows.Forms.Button btnBoard3_loop0;
  4021. private System.Windows.Forms.Button btnBoard28_loop3;
  4022. private System.Windows.Forms.Button btnBoard48_loop3;
  4023. private System.Windows.Forms.Button btnBoard2_loop0;
  4024. private System.Windows.Forms.Label lbl_COMM54;
  4025. private System.Windows.Forms.Label lbl_COMM19;
  4026. private System.Windows.Forms.Button btnBoard5_loop0;
  4027. private System.Windows.Forms.Button btnBoard1_loop0;
  4028. private System.Windows.Forms.Button btnBoard6_loop0;
  4029. private System.Windows.Forms.Label lbl_COMM39;
  4030. private System.Windows.Forms.Label lbl_COMM6;
  4031. private System.Windows.Forms.Label lbl_COMM3;
  4032. private System.Windows.Forms.Label lbl_COMM5;
  4033. private System.Windows.Forms.Label lbl_COMM59;
  4034. private System.Windows.Forms.Label lbl_COMM4;
  4035. private System.Windows.Forms.Button btnBoard4_loop0;
  4036. private System.Windows.Forms.Label lbl_COMM15;
  4037. private System.Windows.Forms.Label lbl_COMM2;
  4038. private System.Windows.Forms.Button btnBoard1_loop2;
  4039. private System.Windows.Forms.Label label9;
  4040. private System.Windows.Forms.Button btnBoard4_loop1;
  4041. private System.Windows.Forms.Label lbl_COMM35;
  4042. private System.Windows.Forms.Label lbl_COMM55;
  4043. private System.Windows.Forms.Label lbl_COMM7;
  4044. private System.Windows.Forms.Button btnBoard5_loop1;
  4045. private System.Windows.Forms.Label lbl_COMM8;
  4046. private System.Windows.Forms.Label label10;
  4047. private System.Windows.Forms.Button btnBoard7_loop0;
  4048. private System.Windows.Forms.Button btnBoard6_loop1;
  4049. private System.Windows.Forms.Button btnBoard8_loop0;
  4050. private System.Windows.Forms.Label lbl_COMM1;
  4051. private System.Windows.Forms.Button btnBoard7_loop1;
  4052. private System.Windows.Forms.Button btnBoard1_loop3;
  4053. private System.Windows.Forms.Button btnBoard8_loop1;
  4054. private System.Windows.Forms.Button btnBoard2_loop2;
  4055. private System.Windows.Forms.Button btnBoard2_loop3;
  4056. private System.Windows.Forms.Button btnBoard3_loop2;
  4057. private System.Windows.Forms.Button btnBoard3_loop3;
  4058. private System.Windows.Forms.Button btnBoard4_loop2;
  4059. private System.Windows.Forms.Button btnBoard4_loop3;
  4060. private System.Windows.Forms.Button btnBoard5_loop2;
  4061. private System.Windows.Forms.Button btnBoard5_loop3;
  4062. private System.Windows.Forms.Button btnBoard6_loop2;
  4063. private System.Windows.Forms.Button btnBoard6_loop3;
  4064. private System.Windows.Forms.Button btnBoard7_loop2;
  4065. private System.Windows.Forms.Button btnBoard7_loop3;
  4066. private System.Windows.Forms.Button btnBoard8_loop2;
  4067. private System.Windows.Forms.Button btnBoard8_loop3;
  4068. private System.Windows.Forms.Label label2;
  4069. private System.Windows.Forms.Label label1;
  4070. private System.Windows.Forms.GroupBox groupBox2;
  4071. }
  4072. }