syz_pl.Designer.cs 254 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112
  1. namespace GdxnyWindTurbineContorls.MyControls.syz
  2. {
  3. partial class syz_pl
  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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(syz_pl));
  29. this.panel2 = new System.Windows.Forms.Panel();
  30. this.handCart1 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  31. this.breaker1 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  32. this.switchLeft1 = new GdxnyWindTurbineContorls.MyControls.SwitchLeft();
  33. this.handCart9 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  34. this.handCart10 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  35. this.handCart11 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  36. this.handCart12 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  37. this.handCart13 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  38. this.handCart14 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  39. this.handCart15 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  40. this.handCart16 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  41. this.handCart17 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  42. this.handCart18 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  43. this.handCart19 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  44. this.handCart20 = new GdxnyWindTurbineContorls.MyControls.HandCart();
  45. this.breaker2 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  46. this.breaker3 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  47. this.breaker4 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  48. this.breaker5 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  49. this.breaker6 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  50. this.breaker7 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  51. this.breaker8 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  52. this.breaker9 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  53. this.breaker10 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  54. this.breaker11 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  55. this.breaker12 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  56. this.breaker13 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  57. this.breaker14 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  58. this.breaker15 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  59. this.breaker16 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  60. this.breaker17 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  61. this.breaker18 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  62. this.breaker19 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  63. this.breaker20 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  64. this.breaker21 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  65. this.breaker22 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  66. this.breaker23 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  67. this.breaker24 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  68. this.breaker25 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  69. this.breaker26 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  70. this.breaker27 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  71. this.breaker28 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  72. this.breaker29 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  73. this.breaker30 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  74. this.breaker31 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  75. this.breaker32 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  76. this.breaker33 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  77. this.breaker34 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  78. this.breaker35 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  79. this.breaker36 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  80. this.breaker37 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  81. this.breaker38 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  82. this.breaker39 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  83. this.breaker40 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  84. this.breaker41 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  85. this.breaker42 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  86. this.breaker46 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  87. this.breaker47 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  88. this.breaker48 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  89. this.breaker49 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  90. this.breaker50 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  91. this.breaker51 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  92. this.breaker52 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  93. this.breaker53 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  94. this.breaker54 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  95. this.breaker55 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  96. this.breaker56 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  97. this.breaker57 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  98. this.breaker58 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  99. this.breaker59 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  100. this.breaker60 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  101. this.breaker61 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  102. this.breaker62 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  103. this.breaker63 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  104. this.breaker64 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  105. this.breaker65 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  106. this.breaker66 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  107. this.breaker67 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  108. this.breaker68 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  109. this.breaker69 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  110. this.breaker70 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  111. this.breaker71 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  112. this.breaker72 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  113. this.breaker73 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  114. this.breaker74 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  115. this.breaker75 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  116. this.breaker76 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  117. this.breaker77 = new GdxnyWindTurbineContorls.MyControls.Breaker();
  118. this.switchUpSmall1 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  119. this.switchUpSmall2 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  120. this.switchUpSmall3 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  121. this.switchUpSmall4 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  122. this.switchUpSmall5 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  123. this.switchUpSmall6 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  124. this.switchUpSmall7 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  125. this.switchUpSmall8 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  126. this.switchUpSmall9 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  127. this.switchUpSmall10 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  128. this.switchUpSmall11 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  129. this.switchUpSmall12 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  130. this.switchUpSmall13 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  131. this.switchUpSmall14 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  132. this.switchUpSmall15 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  133. this.switchUpSmall16 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  134. this.switchUpSmall18 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  135. this.switchUpSmall20 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  136. this.switchUpSmall21 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  137. this.handCartSmall1 = new GdxnyWindTurbineContorls.MyControls.HandCartSmall();
  138. this.switchUpSmall22 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  139. this.switchUpSmall23 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  140. this.switchUpSmall24 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  141. this.switchUpSmall25 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  142. this.switchUpSmall26 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  143. this.switchUpSmall27 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  144. this.switchUpSmall28 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  145. this.switchUpSmall29 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  146. this.switchUpSmall30 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  147. this.switchUpSmall31 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  148. this.switchUpSmall38 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  149. this.switchUpSmall39 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  150. this.switchUpSmall40 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  151. this.switchUpSmall41 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  152. this.switchUpSmall42 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  153. this.switchUpSmall43 = new GdxnyWindTurbineContorls.MyControls.SwitchUpSmall();
  154. this.pointLabel2 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  155. this.pointLabel1 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  156. this.pointLabel3 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  157. this.pointLabel4 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  158. this.pointLabel5 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  159. this.pointLabel6 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  160. this.pointLabel7 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  161. this.pointLabel8 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  162. this.pointLabel9 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  163. this.pointLabel10 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  164. this.pointLabel11 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  165. this.pointLabel12 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  166. this.pointLabel13 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  167. this.pointLabel14 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  168. this.pointLabel15 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  169. this.pointLabel16 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  170. this.pointLabel17 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  171. this.pointLabel18 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  172. this.pointLabel23 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  173. this.pointLabel24 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  174. this.pointLabel25 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  175. this.pointLabel26 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  176. this.pointLabel27 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  177. this.pointLabel28 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  178. this.pointLabel29 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  179. this.pointLabel30 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  180. this.pointLabel31 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  181. this.pointLabel32 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  182. this.pointLabel33 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  183. this.pointLabel34 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  184. this.pointLabel35 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  185. this.pointLabel36 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  186. this.pointLabel37 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  187. this.pointLabel38 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  188. this.pointLabel39 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  189. this.pointLabel40 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  190. this.pointLabel41 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  191. this.pointLabel42 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  192. this.pointLabel43 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  193. this.pointLabel44 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  194. this.pointLabel45 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  195. this.pointLabel46 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  196. this.pointLabel47 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  197. this.pointLabel48 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  198. this.pointLabel49 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  199. this.pointLabel50 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  200. this.pointLabel51 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  201. this.pointLabel52 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  202. this.pointLabel53 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  203. this.pointLabel54 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  204. this.pointLabel55 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  205. this.pointLabel56 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  206. this.pointLabel57 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  207. this.pointLabel58 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  208. this.pointLabel59 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  209. this.pointLabel60 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  210. this.pointLabel61 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  211. this.pointLabel62 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  212. this.pointLabel63 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  213. this.pointLabel64 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  214. this.pointLabel65 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  215. this.pointLabel66 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  216. this.pointLabel67 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  217. this.pointLabel68 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  218. this.pointLabel69 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  219. this.pointLabel70 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  220. this.pointLabel71 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  221. this.pointLabel72 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  222. this.pointLabel73 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  223. this.pointLabel74 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  224. this.pointLabel75 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  225. this.pointLabel76 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  226. this.pointLabel77 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  227. this.pointLabel78 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  228. this.pointLabel79 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  229. this.pointLabel80 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  230. this.pointLabel81 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  231. this.pointLabel82 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  232. this.pointLabel83 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  233. this.pointLabel84 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  234. this.pointLabel85 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  235. this.pointLabel86 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  236. this.pointLabel87 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  237. this.pointLabel88 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  238. this.pointLabel89 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  239. this.pointLabel90 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  240. this.pointLabel91 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  241. this.pointLabel92 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  242. this.pointLabel93 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  243. this.pointLabel94 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  244. this.pointLabel95 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  245. this.pointLabel96 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  246. this.pointLabel97 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  247. this.pointLabel98 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  248. this.pointLabel99 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  249. this.pointLabel100 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  250. this.pointLabel101 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  251. this.pointLabel102 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  252. this.pointLabel103 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  253. this.pointLabel104 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  254. this.pointLabel105 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  255. this.pointLabel106 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  256. this.pointLabel107 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  257. this.pointLabel108 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  258. this.pointLabel109 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  259. this.pointLabel110 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  260. this.pointLabel111 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  261. this.pointLabel112 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  262. this.pointLabel113 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  263. this.pointLabel114 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  264. this.pointLabel115 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  265. this.pointLabel116 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  266. this.pointLabel117 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  267. this.pointLabel118 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  268. this.pointLabel119 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  269. this.pointLabel120 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  270. this.pointLabel121 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  271. this.pointLabel122 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  272. this.pointLabel123 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  273. this.pointLabel124 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  274. this.pointLabel125 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  275. this.pointLabel126 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  276. this.pointLabel127 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  277. this.pointLabel128 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  278. this.pointLabel129 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  279. this.pointLabel130 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  280. this.pointLabel131 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  281. this.pointLabel132 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  282. this.pointLabel133 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  283. this.pointLabel134 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  284. this.pointLabel135 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  285. this.pointLabel136 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  286. this.pointLabel137 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  287. this.pointLabel138 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  288. this.pointLabel139 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  289. this.pointLabel140 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  290. this.pointLabel141 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  291. this.pointLabel142 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  292. this.pointLabel143 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  293. this.pointLabel144 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  294. this.pointLabel145 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  295. this.pointLabel146 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  296. this.pointLabel147 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  297. this.pointLabel148 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  298. this.pointLabel149 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  299. this.pointLabel150 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  300. this.pointLabel151 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  301. this.pointLabel152 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  302. this.pointLabel153 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  303. this.pointLabel154 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  304. this.pointLabel155 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  305. this.pointLabel156 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  306. this.pointLabel157 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  307. this.pointLabel158 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  308. this.pointLabel159 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  309. this.pointLabel160 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  310. this.pointLabel161 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  311. this.pointLabel162 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  312. this.pointLabel163 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  313. this.pointLabel164 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  314. this.pointLabel165 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  315. this.pointLabel166 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  316. this.pointLabel167 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  317. this.pointLabel168 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  318. this.pointLabel169 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  319. this.pointLabel170 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  320. this.pointLabel171 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  321. this.pointLabel172 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  322. this.pointLabel173 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  323. this.pointLabel174 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  324. this.pointLabel175 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  325. this.pointLabel176 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  326. this.pointLabel177 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  327. this.pointLabel178 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  328. this.pointLabel179 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  329. this.pointLabel180 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  330. this.pointLabel181 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  331. this.pointLabel182 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  332. this.pointLabel183 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  333. this.pointLabel184 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  334. this.pointLabel185 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  335. this.pointLabel186 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  336. this.pointLabel187 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  337. this.pointLabel188 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  338. this.pointLabel189 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  339. this.pointLabel190 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  340. this.pointLabel191 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  341. this.pointLabel192 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  342. this.pointLabel193 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  343. this.pointLabel194 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  344. this.pointLabel195 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  345. this.pointLabel196 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  346. this.pointLabel197 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  347. this.pointLabel198 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  348. this.pointLabel199 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  349. this.pointLabel200 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  350. this.pointLabel201 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  351. this.pointLabel202 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  352. this.pointLabel203 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  353. this.pointLabel204 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  354. this.pointLabel205 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  355. this.pointLabel206 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  356. this.pointLabel207 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  357. this.pointLabel208 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  358. this.pointLabel209 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  359. this.pointLabel210 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  360. this.pointLabel211 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  361. this.pointLabel212 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  362. this.pointLabel213 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  363. this.pointLabel214 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  364. this.pointLabel215 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  365. this.pointLabel216 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  366. this.pointLabel217 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  367. this.pointLabel218 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  368. this.pointLabel219 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  369. this.pointLabel220 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  370. this.pointLabel221 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  371. this.pointLabel222 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  372. this.pointLabel223 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  373. this.pointLabel224 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  374. this.pointLabel225 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  375. this.pointLabel226 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  376. this.pointLabel227 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  377. this.pointLabel228 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  378. this.pointLabel229 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  379. this.pointLabel230 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  380. this.pointLabel231 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  381. this.pointLabel232 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  382. this.pointLabel233 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  383. this.pointLabel234 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  384. this.pointLabel235 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  385. this.pointLabel236 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  386. this.pointLabel237 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  387. this.pointLabel238 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  388. this.pointLabel239 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  389. this.pointLabel240 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  390. this.pointLabel241 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  391. this.pointLabel242 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  392. this.pointLabel243 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  393. this.pointLabel244 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  394. this.pointLabel245 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  395. this.pointLabel246 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  396. this.pointLabel247 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  397. this.pointLabel248 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  398. this.pointLabel249 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  399. this.pointLabel250 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  400. this.pointLabel251 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  401. this.pointLabel252 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  402. this.pointLabel253 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  403. this.pointLabel254 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  404. this.pointLabel255 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  405. this.pointLabel256 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  406. this.pointLabel257 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  407. this.pointLabel258 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  408. this.pointLabel259 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  409. this.pointLabel260 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  410. this.pointLabel261 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  411. this.pointLabel262 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  412. this.pointLabel263 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  413. this.pointLabel264 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  414. this.pointLabel265 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  415. this.pointLabel266 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  416. this.pointLabel267 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  417. this.pointLabel268 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  418. this.pointLabel269 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  419. this.pointLabel270 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  420. this.pointLabel271 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  421. this.pointLabel272 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  422. this.pointLabel273 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  423. this.pointLabel274 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  424. this.pointLabel275 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  425. this.pointLabel276 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  426. this.pointLabel277 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  427. this.pointLabel278 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  428. this.pointLabel279 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  429. this.pointLabel280 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  430. this.pointLabel281 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  431. this.pointLabel282 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  432. this.pointLabel283 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  433. this.pointLabel284 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  434. this.pointLabel285 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  435. this.pointLabel286 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  436. this.pointLabel287 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  437. this.pointLabel288 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  438. this.pointLabel289 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  439. this.pointLabel290 = new GdxnyWindTurbineContorls.MyControls.PointLabel();
  440. this.pnlImage.SuspendLayout();
  441. this.SuspendLayout();
  442. //
  443. // pnlImage
  444. //
  445. this.pnlImage.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  446. this.pnlImage.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlImage.BackgroundImage")));
  447. this.pnlImage.Controls.Add(this.pointLabel215);
  448. this.pnlImage.Controls.Add(this.pointLabel216);
  449. this.pnlImage.Controls.Add(this.pointLabel217);
  450. this.pnlImage.Controls.Add(this.pointLabel218);
  451. this.pnlImage.Controls.Add(this.pointLabel219);
  452. this.pnlImage.Controls.Add(this.pointLabel220);
  453. this.pnlImage.Controls.Add(this.pointLabel221);
  454. this.pnlImage.Controls.Add(this.pointLabel222);
  455. this.pnlImage.Controls.Add(this.pointLabel223);
  456. this.pnlImage.Controls.Add(this.pointLabel224);
  457. this.pnlImage.Controls.Add(this.pointLabel225);
  458. this.pnlImage.Controls.Add(this.pointLabel226);
  459. this.pnlImage.Controls.Add(this.pointLabel227);
  460. this.pnlImage.Controls.Add(this.pointLabel228);
  461. this.pnlImage.Controls.Add(this.pointLabel229);
  462. this.pnlImage.Controls.Add(this.pointLabel230);
  463. this.pnlImage.Controls.Add(this.pointLabel231);
  464. this.pnlImage.Controls.Add(this.pointLabel232);
  465. this.pnlImage.Controls.Add(this.pointLabel233);
  466. this.pnlImage.Controls.Add(this.pointLabel234);
  467. this.pnlImage.Controls.Add(this.pointLabel235);
  468. this.pnlImage.Controls.Add(this.pointLabel236);
  469. this.pnlImage.Controls.Add(this.pointLabel237);
  470. this.pnlImage.Controls.Add(this.pointLabel238);
  471. this.pnlImage.Controls.Add(this.pointLabel239);
  472. this.pnlImage.Controls.Add(this.pointLabel240);
  473. this.pnlImage.Controls.Add(this.pointLabel241);
  474. this.pnlImage.Controls.Add(this.pointLabel242);
  475. this.pnlImage.Controls.Add(this.pointLabel243);
  476. this.pnlImage.Controls.Add(this.pointLabel244);
  477. this.pnlImage.Controls.Add(this.pointLabel245);
  478. this.pnlImage.Controls.Add(this.pointLabel246);
  479. this.pnlImage.Controls.Add(this.pointLabel247);
  480. this.pnlImage.Controls.Add(this.pointLabel248);
  481. this.pnlImage.Controls.Add(this.pointLabel249);
  482. this.pnlImage.Controls.Add(this.pointLabel250);
  483. this.pnlImage.Controls.Add(this.pointLabel251);
  484. this.pnlImage.Controls.Add(this.pointLabel252);
  485. this.pnlImage.Controls.Add(this.pointLabel253);
  486. this.pnlImage.Controls.Add(this.pointLabel254);
  487. this.pnlImage.Controls.Add(this.pointLabel255);
  488. this.pnlImage.Controls.Add(this.pointLabel256);
  489. this.pnlImage.Controls.Add(this.pointLabel257);
  490. this.pnlImage.Controls.Add(this.pointLabel258);
  491. this.pnlImage.Controls.Add(this.pointLabel259);
  492. this.pnlImage.Controls.Add(this.pointLabel260);
  493. this.pnlImage.Controls.Add(this.pointLabel261);
  494. this.pnlImage.Controls.Add(this.pointLabel262);
  495. this.pnlImage.Controls.Add(this.pointLabel263);
  496. this.pnlImage.Controls.Add(this.pointLabel264);
  497. this.pnlImage.Controls.Add(this.pointLabel265);
  498. this.pnlImage.Controls.Add(this.pointLabel266);
  499. this.pnlImage.Controls.Add(this.pointLabel267);
  500. this.pnlImage.Controls.Add(this.pointLabel268);
  501. this.pnlImage.Controls.Add(this.pointLabel269);
  502. this.pnlImage.Controls.Add(this.pointLabel270);
  503. this.pnlImage.Controls.Add(this.pointLabel271);
  504. this.pnlImage.Controls.Add(this.pointLabel272);
  505. this.pnlImage.Controls.Add(this.pointLabel273);
  506. this.pnlImage.Controls.Add(this.pointLabel274);
  507. this.pnlImage.Controls.Add(this.pointLabel275);
  508. this.pnlImage.Controls.Add(this.pointLabel276);
  509. this.pnlImage.Controls.Add(this.pointLabel277);
  510. this.pnlImage.Controls.Add(this.pointLabel278);
  511. this.pnlImage.Controls.Add(this.pointLabel279);
  512. this.pnlImage.Controls.Add(this.pointLabel280);
  513. this.pnlImage.Controls.Add(this.pointLabel281);
  514. this.pnlImage.Controls.Add(this.pointLabel282);
  515. this.pnlImage.Controls.Add(this.pointLabel283);
  516. this.pnlImage.Controls.Add(this.pointLabel284);
  517. this.pnlImage.Controls.Add(this.pointLabel285);
  518. this.pnlImage.Controls.Add(this.pointLabel286);
  519. this.pnlImage.Controls.Add(this.pointLabel287);
  520. this.pnlImage.Controls.Add(this.pointLabel288);
  521. this.pnlImage.Controls.Add(this.pointLabel289);
  522. this.pnlImage.Controls.Add(this.pointLabel290);
  523. this.pnlImage.Controls.Add(this.pointLabel211);
  524. this.pnlImage.Controls.Add(this.pointLabel212);
  525. this.pnlImage.Controls.Add(this.pointLabel213);
  526. this.pnlImage.Controls.Add(this.pointLabel214);
  527. this.pnlImage.Controls.Add(this.pointLabel207);
  528. this.pnlImage.Controls.Add(this.pointLabel208);
  529. this.pnlImage.Controls.Add(this.pointLabel209);
  530. this.pnlImage.Controls.Add(this.pointLabel210);
  531. this.pnlImage.Controls.Add(this.pointLabel203);
  532. this.pnlImage.Controls.Add(this.pointLabel204);
  533. this.pnlImage.Controls.Add(this.pointLabel205);
  534. this.pnlImage.Controls.Add(this.pointLabel206);
  535. this.pnlImage.Controls.Add(this.pointLabel199);
  536. this.pnlImage.Controls.Add(this.pointLabel200);
  537. this.pnlImage.Controls.Add(this.pointLabel201);
  538. this.pnlImage.Controls.Add(this.pointLabel202);
  539. this.pnlImage.Controls.Add(this.pointLabel195);
  540. this.pnlImage.Controls.Add(this.pointLabel196);
  541. this.pnlImage.Controls.Add(this.pointLabel197);
  542. this.pnlImage.Controls.Add(this.pointLabel198);
  543. this.pnlImage.Controls.Add(this.pointLabel191);
  544. this.pnlImage.Controls.Add(this.pointLabel192);
  545. this.pnlImage.Controls.Add(this.pointLabel193);
  546. this.pnlImage.Controls.Add(this.pointLabel194);
  547. this.pnlImage.Controls.Add(this.pointLabel183);
  548. this.pnlImage.Controls.Add(this.pointLabel184);
  549. this.pnlImage.Controls.Add(this.pointLabel185);
  550. this.pnlImage.Controls.Add(this.pointLabel186);
  551. this.pnlImage.Controls.Add(this.pointLabel187);
  552. this.pnlImage.Controls.Add(this.pointLabel188);
  553. this.pnlImage.Controls.Add(this.pointLabel189);
  554. this.pnlImage.Controls.Add(this.pointLabel190);
  555. this.pnlImage.Controls.Add(this.pointLabel111);
  556. this.pnlImage.Controls.Add(this.pointLabel112);
  557. this.pnlImage.Controls.Add(this.pointLabel113);
  558. this.pnlImage.Controls.Add(this.pointLabel114);
  559. this.pnlImage.Controls.Add(this.pointLabel115);
  560. this.pnlImage.Controls.Add(this.pointLabel116);
  561. this.pnlImage.Controls.Add(this.pointLabel117);
  562. this.pnlImage.Controls.Add(this.pointLabel118);
  563. this.pnlImage.Controls.Add(this.pointLabel119);
  564. this.pnlImage.Controls.Add(this.pointLabel120);
  565. this.pnlImage.Controls.Add(this.pointLabel121);
  566. this.pnlImage.Controls.Add(this.pointLabel122);
  567. this.pnlImage.Controls.Add(this.pointLabel123);
  568. this.pnlImage.Controls.Add(this.pointLabel124);
  569. this.pnlImage.Controls.Add(this.pointLabel125);
  570. this.pnlImage.Controls.Add(this.pointLabel126);
  571. this.pnlImage.Controls.Add(this.pointLabel127);
  572. this.pnlImage.Controls.Add(this.pointLabel128);
  573. this.pnlImage.Controls.Add(this.pointLabel129);
  574. this.pnlImage.Controls.Add(this.pointLabel130);
  575. this.pnlImage.Controls.Add(this.pointLabel131);
  576. this.pnlImage.Controls.Add(this.pointLabel132);
  577. this.pnlImage.Controls.Add(this.pointLabel133);
  578. this.pnlImage.Controls.Add(this.pointLabel134);
  579. this.pnlImage.Controls.Add(this.pointLabel135);
  580. this.pnlImage.Controls.Add(this.pointLabel136);
  581. this.pnlImage.Controls.Add(this.pointLabel137);
  582. this.pnlImage.Controls.Add(this.pointLabel138);
  583. this.pnlImage.Controls.Add(this.pointLabel139);
  584. this.pnlImage.Controls.Add(this.pointLabel140);
  585. this.pnlImage.Controls.Add(this.pointLabel141);
  586. this.pnlImage.Controls.Add(this.pointLabel142);
  587. this.pnlImage.Controls.Add(this.pointLabel143);
  588. this.pnlImage.Controls.Add(this.pointLabel144);
  589. this.pnlImage.Controls.Add(this.pointLabel145);
  590. this.pnlImage.Controls.Add(this.pointLabel146);
  591. this.pnlImage.Controls.Add(this.pointLabel147);
  592. this.pnlImage.Controls.Add(this.pointLabel148);
  593. this.pnlImage.Controls.Add(this.pointLabel149);
  594. this.pnlImage.Controls.Add(this.pointLabel150);
  595. this.pnlImage.Controls.Add(this.pointLabel151);
  596. this.pnlImage.Controls.Add(this.pointLabel152);
  597. this.pnlImage.Controls.Add(this.pointLabel153);
  598. this.pnlImage.Controls.Add(this.pointLabel154);
  599. this.pnlImage.Controls.Add(this.pointLabel155);
  600. this.pnlImage.Controls.Add(this.pointLabel156);
  601. this.pnlImage.Controls.Add(this.pointLabel157);
  602. this.pnlImage.Controls.Add(this.pointLabel158);
  603. this.pnlImage.Controls.Add(this.pointLabel159);
  604. this.pnlImage.Controls.Add(this.pointLabel160);
  605. this.pnlImage.Controls.Add(this.pointLabel161);
  606. this.pnlImage.Controls.Add(this.pointLabel162);
  607. this.pnlImage.Controls.Add(this.pointLabel163);
  608. this.pnlImage.Controls.Add(this.pointLabel164);
  609. this.pnlImage.Controls.Add(this.pointLabel165);
  610. this.pnlImage.Controls.Add(this.pointLabel166);
  611. this.pnlImage.Controls.Add(this.pointLabel167);
  612. this.pnlImage.Controls.Add(this.pointLabel168);
  613. this.pnlImage.Controls.Add(this.pointLabel169);
  614. this.pnlImage.Controls.Add(this.pointLabel170);
  615. this.pnlImage.Controls.Add(this.pointLabel171);
  616. this.pnlImage.Controls.Add(this.pointLabel172);
  617. this.pnlImage.Controls.Add(this.pointLabel173);
  618. this.pnlImage.Controls.Add(this.pointLabel174);
  619. this.pnlImage.Controls.Add(this.pointLabel175);
  620. this.pnlImage.Controls.Add(this.pointLabel176);
  621. this.pnlImage.Controls.Add(this.pointLabel177);
  622. this.pnlImage.Controls.Add(this.pointLabel178);
  623. this.pnlImage.Controls.Add(this.pointLabel179);
  624. this.pnlImage.Controls.Add(this.pointLabel180);
  625. this.pnlImage.Controls.Add(this.pointLabel181);
  626. this.pnlImage.Controls.Add(this.pointLabel182);
  627. this.pnlImage.Controls.Add(this.pointLabel87);
  628. this.pnlImage.Controls.Add(this.pointLabel88);
  629. this.pnlImage.Controls.Add(this.pointLabel89);
  630. this.pnlImage.Controls.Add(this.pointLabel90);
  631. this.pnlImage.Controls.Add(this.pointLabel91);
  632. this.pnlImage.Controls.Add(this.pointLabel92);
  633. this.pnlImage.Controls.Add(this.pointLabel93);
  634. this.pnlImage.Controls.Add(this.pointLabel94);
  635. this.pnlImage.Controls.Add(this.pointLabel95);
  636. this.pnlImage.Controls.Add(this.pointLabel96);
  637. this.pnlImage.Controls.Add(this.pointLabel97);
  638. this.pnlImage.Controls.Add(this.pointLabel98);
  639. this.pnlImage.Controls.Add(this.pointLabel99);
  640. this.pnlImage.Controls.Add(this.pointLabel100);
  641. this.pnlImage.Controls.Add(this.pointLabel101);
  642. this.pnlImage.Controls.Add(this.pointLabel102);
  643. this.pnlImage.Controls.Add(this.pointLabel103);
  644. this.pnlImage.Controls.Add(this.pointLabel104);
  645. this.pnlImage.Controls.Add(this.pointLabel105);
  646. this.pnlImage.Controls.Add(this.pointLabel106);
  647. this.pnlImage.Controls.Add(this.pointLabel107);
  648. this.pnlImage.Controls.Add(this.pointLabel108);
  649. this.pnlImage.Controls.Add(this.pointLabel109);
  650. this.pnlImage.Controls.Add(this.pointLabel110);
  651. this.pnlImage.Controls.Add(this.pointLabel55);
  652. this.pnlImage.Controls.Add(this.pointLabel56);
  653. this.pnlImage.Controls.Add(this.pointLabel57);
  654. this.pnlImage.Controls.Add(this.pointLabel58);
  655. this.pnlImage.Controls.Add(this.pointLabel59);
  656. this.pnlImage.Controls.Add(this.pointLabel60);
  657. this.pnlImage.Controls.Add(this.pointLabel61);
  658. this.pnlImage.Controls.Add(this.pointLabel62);
  659. this.pnlImage.Controls.Add(this.pointLabel63);
  660. this.pnlImage.Controls.Add(this.pointLabel64);
  661. this.pnlImage.Controls.Add(this.pointLabel65);
  662. this.pnlImage.Controls.Add(this.pointLabel66);
  663. this.pnlImage.Controls.Add(this.pointLabel67);
  664. this.pnlImage.Controls.Add(this.pointLabel68);
  665. this.pnlImage.Controls.Add(this.pointLabel69);
  666. this.pnlImage.Controls.Add(this.pointLabel70);
  667. this.pnlImage.Controls.Add(this.pointLabel71);
  668. this.pnlImage.Controls.Add(this.pointLabel72);
  669. this.pnlImage.Controls.Add(this.pointLabel73);
  670. this.pnlImage.Controls.Add(this.pointLabel74);
  671. this.pnlImage.Controls.Add(this.pointLabel75);
  672. this.pnlImage.Controls.Add(this.pointLabel76);
  673. this.pnlImage.Controls.Add(this.pointLabel77);
  674. this.pnlImage.Controls.Add(this.pointLabel78);
  675. this.pnlImage.Controls.Add(this.pointLabel79);
  676. this.pnlImage.Controls.Add(this.pointLabel80);
  677. this.pnlImage.Controls.Add(this.pointLabel81);
  678. this.pnlImage.Controls.Add(this.pointLabel82);
  679. this.pnlImage.Controls.Add(this.pointLabel83);
  680. this.pnlImage.Controls.Add(this.pointLabel84);
  681. this.pnlImage.Controls.Add(this.pointLabel85);
  682. this.pnlImage.Controls.Add(this.pointLabel86);
  683. this.pnlImage.Controls.Add(this.pointLabel39);
  684. this.pnlImage.Controls.Add(this.pointLabel40);
  685. this.pnlImage.Controls.Add(this.pointLabel41);
  686. this.pnlImage.Controls.Add(this.pointLabel42);
  687. this.pnlImage.Controls.Add(this.pointLabel43);
  688. this.pnlImage.Controls.Add(this.pointLabel44);
  689. this.pnlImage.Controls.Add(this.pointLabel45);
  690. this.pnlImage.Controls.Add(this.pointLabel46);
  691. this.pnlImage.Controls.Add(this.pointLabel47);
  692. this.pnlImage.Controls.Add(this.pointLabel48);
  693. this.pnlImage.Controls.Add(this.pointLabel49);
  694. this.pnlImage.Controls.Add(this.pointLabel50);
  695. this.pnlImage.Controls.Add(this.pointLabel51);
  696. this.pnlImage.Controls.Add(this.pointLabel52);
  697. this.pnlImage.Controls.Add(this.pointLabel53);
  698. this.pnlImage.Controls.Add(this.pointLabel54);
  699. this.pnlImage.Controls.Add(this.pointLabel31);
  700. this.pnlImage.Controls.Add(this.pointLabel32);
  701. this.pnlImage.Controls.Add(this.pointLabel33);
  702. this.pnlImage.Controls.Add(this.pointLabel34);
  703. this.pnlImage.Controls.Add(this.pointLabel35);
  704. this.pnlImage.Controls.Add(this.pointLabel36);
  705. this.pnlImage.Controls.Add(this.pointLabel37);
  706. this.pnlImage.Controls.Add(this.pointLabel38);
  707. this.pnlImage.Controls.Add(this.pointLabel27);
  708. this.pnlImage.Controls.Add(this.pointLabel28);
  709. this.pnlImage.Controls.Add(this.pointLabel29);
  710. this.pnlImage.Controls.Add(this.pointLabel30);
  711. this.pnlImage.Controls.Add(this.pointLabel23);
  712. this.pnlImage.Controls.Add(this.pointLabel24);
  713. this.pnlImage.Controls.Add(this.pointLabel25);
  714. this.pnlImage.Controls.Add(this.pointLabel26);
  715. this.pnlImage.Controls.Add(this.pointLabel17);
  716. this.pnlImage.Controls.Add(this.pointLabel18);
  717. this.pnlImage.Controls.Add(this.pointLabel15);
  718. this.pnlImage.Controls.Add(this.pointLabel16);
  719. this.pnlImage.Controls.Add(this.pointLabel13);
  720. this.pnlImage.Controls.Add(this.pointLabel14);
  721. this.pnlImage.Controls.Add(this.pointLabel9);
  722. this.pnlImage.Controls.Add(this.pointLabel10);
  723. this.pnlImage.Controls.Add(this.pointLabel11);
  724. this.pnlImage.Controls.Add(this.pointLabel12);
  725. this.pnlImage.Controls.Add(this.pointLabel5);
  726. this.pnlImage.Controls.Add(this.pointLabel6);
  727. this.pnlImage.Controls.Add(this.pointLabel7);
  728. this.pnlImage.Controls.Add(this.pointLabel8);
  729. this.pnlImage.Controls.Add(this.pointLabel4);
  730. this.pnlImage.Controls.Add(this.pointLabel3);
  731. this.pnlImage.Controls.Add(this.pointLabel1);
  732. this.pnlImage.Controls.Add(this.pointLabel2);
  733. this.pnlImage.Controls.Add(this.switchUpSmall43);
  734. this.pnlImage.Controls.Add(this.switchUpSmall42);
  735. this.pnlImage.Controls.Add(this.switchUpSmall41);
  736. this.pnlImage.Controls.Add(this.switchUpSmall40);
  737. this.pnlImage.Controls.Add(this.switchUpSmall39);
  738. this.pnlImage.Controls.Add(this.switchUpSmall38);
  739. this.pnlImage.Controls.Add(this.switchUpSmall31);
  740. this.pnlImage.Controls.Add(this.switchUpSmall30);
  741. this.pnlImage.Controls.Add(this.switchUpSmall29);
  742. this.pnlImage.Controls.Add(this.switchUpSmall28);
  743. this.pnlImage.Controls.Add(this.switchUpSmall27);
  744. this.pnlImage.Controls.Add(this.switchUpSmall26);
  745. this.pnlImage.Controls.Add(this.switchUpSmall25);
  746. this.pnlImage.Controls.Add(this.switchUpSmall24);
  747. this.pnlImage.Controls.Add(this.switchUpSmall23);
  748. this.pnlImage.Controls.Add(this.switchUpSmall22);
  749. this.pnlImage.Controls.Add(this.handCartSmall1);
  750. this.pnlImage.Controls.Add(this.switchUpSmall21);
  751. this.pnlImage.Controls.Add(this.switchUpSmall20);
  752. this.pnlImage.Controls.Add(this.switchUpSmall18);
  753. this.pnlImage.Controls.Add(this.switchUpSmall16);
  754. this.pnlImage.Controls.Add(this.switchUpSmall15);
  755. this.pnlImage.Controls.Add(this.switchUpSmall14);
  756. this.pnlImage.Controls.Add(this.switchUpSmall13);
  757. this.pnlImage.Controls.Add(this.switchUpSmall12);
  758. this.pnlImage.Controls.Add(this.switchUpSmall11);
  759. this.pnlImage.Controls.Add(this.switchUpSmall10);
  760. this.pnlImage.Controls.Add(this.switchUpSmall9);
  761. this.pnlImage.Controls.Add(this.switchUpSmall8);
  762. this.pnlImage.Controls.Add(this.switchUpSmall7);
  763. this.pnlImage.Controls.Add(this.switchUpSmall6);
  764. this.pnlImage.Controls.Add(this.switchUpSmall5);
  765. this.pnlImage.Controls.Add(this.switchUpSmall4);
  766. this.pnlImage.Controls.Add(this.switchUpSmall3);
  767. this.pnlImage.Controls.Add(this.switchUpSmall2);
  768. this.pnlImage.Controls.Add(this.switchUpSmall1);
  769. this.pnlImage.Controls.Add(this.breaker77);
  770. this.pnlImage.Controls.Add(this.breaker76);
  771. this.pnlImage.Controls.Add(this.breaker75);
  772. this.pnlImage.Controls.Add(this.breaker74);
  773. this.pnlImage.Controls.Add(this.breaker73);
  774. this.pnlImage.Controls.Add(this.breaker72);
  775. this.pnlImage.Controls.Add(this.breaker71);
  776. this.pnlImage.Controls.Add(this.breaker70);
  777. this.pnlImage.Controls.Add(this.breaker69);
  778. this.pnlImage.Controls.Add(this.breaker68);
  779. this.pnlImage.Controls.Add(this.breaker67);
  780. this.pnlImage.Controls.Add(this.breaker66);
  781. this.pnlImage.Controls.Add(this.breaker65);
  782. this.pnlImage.Controls.Add(this.breaker64);
  783. this.pnlImage.Controls.Add(this.breaker63);
  784. this.pnlImage.Controls.Add(this.breaker62);
  785. this.pnlImage.Controls.Add(this.breaker61);
  786. this.pnlImage.Controls.Add(this.breaker60);
  787. this.pnlImage.Controls.Add(this.breaker59);
  788. this.pnlImage.Controls.Add(this.breaker58);
  789. this.pnlImage.Controls.Add(this.breaker57);
  790. this.pnlImage.Controls.Add(this.breaker56);
  791. this.pnlImage.Controls.Add(this.breaker55);
  792. this.pnlImage.Controls.Add(this.breaker54);
  793. this.pnlImage.Controls.Add(this.breaker53);
  794. this.pnlImage.Controls.Add(this.breaker52);
  795. this.pnlImage.Controls.Add(this.breaker51);
  796. this.pnlImage.Controls.Add(this.breaker50);
  797. this.pnlImage.Controls.Add(this.breaker49);
  798. this.pnlImage.Controls.Add(this.breaker48);
  799. this.pnlImage.Controls.Add(this.breaker47);
  800. this.pnlImage.Controls.Add(this.breaker46);
  801. this.pnlImage.Controls.Add(this.breaker42);
  802. this.pnlImage.Controls.Add(this.breaker41);
  803. this.pnlImage.Controls.Add(this.breaker40);
  804. this.pnlImage.Controls.Add(this.breaker39);
  805. this.pnlImage.Controls.Add(this.breaker38);
  806. this.pnlImage.Controls.Add(this.breaker37);
  807. this.pnlImage.Controls.Add(this.breaker36);
  808. this.pnlImage.Controls.Add(this.breaker35);
  809. this.pnlImage.Controls.Add(this.breaker34);
  810. this.pnlImage.Controls.Add(this.breaker33);
  811. this.pnlImage.Controls.Add(this.breaker32);
  812. this.pnlImage.Controls.Add(this.breaker31);
  813. this.pnlImage.Controls.Add(this.breaker30);
  814. this.pnlImage.Controls.Add(this.breaker29);
  815. this.pnlImage.Controls.Add(this.breaker28);
  816. this.pnlImage.Controls.Add(this.breaker27);
  817. this.pnlImage.Controls.Add(this.breaker26);
  818. this.pnlImage.Controls.Add(this.breaker25);
  819. this.pnlImage.Controls.Add(this.breaker24);
  820. this.pnlImage.Controls.Add(this.breaker23);
  821. this.pnlImage.Controls.Add(this.breaker22);
  822. this.pnlImage.Controls.Add(this.breaker21);
  823. this.pnlImage.Controls.Add(this.breaker20);
  824. this.pnlImage.Controls.Add(this.breaker19);
  825. this.pnlImage.Controls.Add(this.breaker18);
  826. this.pnlImage.Controls.Add(this.breaker17);
  827. this.pnlImage.Controls.Add(this.breaker16);
  828. this.pnlImage.Controls.Add(this.breaker15);
  829. this.pnlImage.Controls.Add(this.breaker14);
  830. this.pnlImage.Controls.Add(this.breaker13);
  831. this.pnlImage.Controls.Add(this.breaker12);
  832. this.pnlImage.Controls.Add(this.breaker11);
  833. this.pnlImage.Controls.Add(this.breaker10);
  834. this.pnlImage.Controls.Add(this.breaker9);
  835. this.pnlImage.Controls.Add(this.breaker8);
  836. this.pnlImage.Controls.Add(this.breaker7);
  837. this.pnlImage.Controls.Add(this.breaker6);
  838. this.pnlImage.Controls.Add(this.breaker5);
  839. this.pnlImage.Controls.Add(this.breaker4);
  840. this.pnlImage.Controls.Add(this.breaker3);
  841. this.pnlImage.Controls.Add(this.breaker2);
  842. this.pnlImage.Controls.Add(this.handCart20);
  843. this.pnlImage.Controls.Add(this.handCart19);
  844. this.pnlImage.Controls.Add(this.handCart18);
  845. this.pnlImage.Controls.Add(this.handCart17);
  846. this.pnlImage.Controls.Add(this.handCart16);
  847. this.pnlImage.Controls.Add(this.handCart15);
  848. this.pnlImage.Controls.Add(this.handCart14);
  849. this.pnlImage.Controls.Add(this.handCart13);
  850. this.pnlImage.Controls.Add(this.handCart12);
  851. this.pnlImage.Controls.Add(this.handCart11);
  852. this.pnlImage.Controls.Add(this.handCart10);
  853. this.pnlImage.Controls.Add(this.handCart9);
  854. this.pnlImage.Controls.Add(this.switchLeft1);
  855. this.pnlImage.Controls.Add(this.breaker1);
  856. this.pnlImage.Controls.Add(this.handCart1);
  857. this.pnlImage.Location = new System.Drawing.Point(24, 77);
  858. this.pnlImage.Size = new System.Drawing.Size(1852, 880);
  859. this.pnlImage.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlImage_Paint);
  860. //
  861. // panel2
  862. //
  863. this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
  864. this.panel2.Location = new System.Drawing.Point(792, 25);
  865. this.panel2.Name = "panel2";
  866. this.panel2.Size = new System.Drawing.Size(294, 51);
  867. this.panel2.TabIndex = 2;
  868. //
  869. // handCart1
  870. //
  871. this.handCart1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  872. this.handCart1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart1.BackgroundImage")));
  873. this.handCart1.Location = new System.Drawing.Point(731, 57);
  874. this.handCart1.Name = "handCart1";
  875. this.handCart1.Size = new System.Drawing.Size(18, 58);
  876. this.handCart1.TabIndex = 1;
  877. this.handCart1.TagData = null;
  878. this.handCart1.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0002";
  879. //
  880. // breaker1
  881. //
  882. this.breaker1.BackColor = System.Drawing.Color.Red;
  883. this.breaker1.Location = new System.Drawing.Point(733, 74);
  884. this.breaker1.Name = "breaker1";
  885. this.breaker1.Size = new System.Drawing.Size(16, 24);
  886. this.breaker1.TabIndex = 2;
  887. this.breaker1.TagData = null;
  888. this.breaker1.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0001";
  889. //
  890. // switchLeft1
  891. //
  892. this.switchLeft1.Location = new System.Drawing.Point(761, 42);
  893. this.switchLeft1.Name = "switchLeft1";
  894. this.switchLeft1.Size = new System.Drawing.Size(40, 17);
  895. this.switchLeft1.TabIndex = 3;
  896. this.switchLeft1.TagData = null;
  897. this.switchLeft1.TagId = null;
  898. //
  899. // handCart9
  900. //
  901. this.handCart9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  902. this.handCart9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart9.BackgroundImage")));
  903. this.handCart9.Location = new System.Drawing.Point(1796, 140);
  904. this.handCart9.Name = "handCart9";
  905. this.handCart9.Size = new System.Drawing.Size(18, 58);
  906. this.handCart9.TabIndex = 11;
  907. this.handCart9.TagData = null;
  908. this.handCart9.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0016";
  909. //
  910. // handCart10
  911. //
  912. this.handCart10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  913. this.handCart10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart10.BackgroundImage")));
  914. this.handCart10.Location = new System.Drawing.Point(1671, 140);
  915. this.handCart10.Name = "handCart10";
  916. this.handCart10.Size = new System.Drawing.Size(18, 58);
  917. this.handCart10.TabIndex = 12;
  918. this.handCart10.TagData = null;
  919. this.handCart10.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0014";
  920. //
  921. // handCart11
  922. //
  923. this.handCart11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  924. this.handCart11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart11.BackgroundImage")));
  925. this.handCart11.Location = new System.Drawing.Point(1509, 140);
  926. this.handCart11.Name = "handCart11";
  927. this.handCart11.Size = new System.Drawing.Size(18, 58);
  928. this.handCart11.TabIndex = 13;
  929. this.handCart11.TagData = null;
  930. this.handCart11.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0012";
  931. //
  932. // handCart12
  933. //
  934. this.handCart12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  935. this.handCart12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart12.BackgroundImage")));
  936. this.handCart12.Location = new System.Drawing.Point(1348, 140);
  937. this.handCart12.Name = "handCart12";
  938. this.handCart12.Size = new System.Drawing.Size(18, 58);
  939. this.handCart12.TabIndex = 14;
  940. this.handCart12.TagData = null;
  941. this.handCart12.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0010";
  942. //
  943. // handCart13
  944. //
  945. this.handCart13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  946. this.handCart13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart13.BackgroundImage")));
  947. this.handCart13.Location = new System.Drawing.Point(1186, 140);
  948. this.handCart13.Name = "handCart13";
  949. this.handCart13.Size = new System.Drawing.Size(18, 58);
  950. this.handCart13.TabIndex = 15;
  951. this.handCart13.TagData = null;
  952. this.handCart13.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0008";
  953. //
  954. // handCart14
  955. //
  956. this.handCart14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  957. this.handCart14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart14.BackgroundImage")));
  958. this.handCart14.Location = new System.Drawing.Point(1025, 140);
  959. this.handCart14.Name = "handCart14";
  960. this.handCart14.Size = new System.Drawing.Size(18, 58);
  961. this.handCart14.TabIndex = 16;
  962. this.handCart14.TagData = null;
  963. this.handCart14.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0006";
  964. //
  965. // handCart15
  966. //
  967. this.handCart15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  968. this.handCart15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart15.BackgroundImage")));
  969. this.handCart15.Location = new System.Drawing.Point(866, 145);
  970. this.handCart15.Name = "handCart15";
  971. this.handCart15.Size = new System.Drawing.Size(18, 58);
  972. this.handCart15.TabIndex = 17;
  973. this.handCart15.TagData = null;
  974. this.handCart15.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0004";
  975. //
  976. // handCart16
  977. //
  978. this.handCart16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  979. this.handCart16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart16.BackgroundImage")));
  980. this.handCart16.Location = new System.Drawing.Point(646, 145);
  981. this.handCart16.Name = "handCart16";
  982. this.handCart16.Size = new System.Drawing.Size(18, 58);
  983. this.handCart16.TabIndex = 18;
  984. this.handCart16.TagData = null;
  985. this.handCart16.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0018";
  986. //
  987. // handCart17
  988. //
  989. this.handCart17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  990. this.handCart17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart17.BackgroundImage")));
  991. this.handCart17.Location = new System.Drawing.Point(513, 145);
  992. this.handCart17.Name = "handCart17";
  993. this.handCart17.Size = new System.Drawing.Size(18, 58);
  994. this.handCart17.TabIndex = 19;
  995. this.handCart17.TagData = null;
  996. this.handCart17.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0020";
  997. //
  998. // handCart18
  999. //
  1000. this.handCart18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1001. this.handCart18.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart18.BackgroundImage")));
  1002. this.handCart18.Location = new System.Drawing.Point(392, 145);
  1003. this.handCart18.Name = "handCart18";
  1004. this.handCart18.Size = new System.Drawing.Size(18, 58);
  1005. this.handCart18.TabIndex = 20;
  1006. this.handCart18.TagData = null;
  1007. this.handCart18.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0022";
  1008. //
  1009. // handCart19
  1010. //
  1011. this.handCart19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1012. this.handCart19.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart19.BackgroundImage")));
  1013. this.handCart19.Location = new System.Drawing.Point(241, 145);
  1014. this.handCart19.Name = "handCart19";
  1015. this.handCart19.Size = new System.Drawing.Size(18, 58);
  1016. this.handCart19.TabIndex = 21;
  1017. this.handCart19.TagData = null;
  1018. this.handCart19.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0024";
  1019. //
  1020. // handCart20
  1021. //
  1022. this.handCart20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1023. this.handCart20.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart20.BackgroundImage")));
  1024. this.handCart20.Location = new System.Drawing.Point(94, 145);
  1025. this.handCart20.Name = "handCart20";
  1026. this.handCart20.Size = new System.Drawing.Size(18, 58);
  1027. this.handCart20.TabIndex = 22;
  1028. this.handCart20.TagData = null;
  1029. this.handCart20.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0026";
  1030. //
  1031. // breaker2
  1032. //
  1033. this.breaker2.BackColor = System.Drawing.Color.Red;
  1034. this.breaker2.Location = new System.Drawing.Point(95, 162);
  1035. this.breaker2.Name = "breaker2";
  1036. this.breaker2.Size = new System.Drawing.Size(16, 24);
  1037. this.breaker2.TabIndex = 23;
  1038. this.breaker2.TagData = null;
  1039. this.breaker2.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0025";
  1040. //
  1041. // breaker3
  1042. //
  1043. this.breaker3.BackColor = System.Drawing.Color.Red;
  1044. this.breaker3.Location = new System.Drawing.Point(242, 162);
  1045. this.breaker3.Name = "breaker3";
  1046. this.breaker3.Size = new System.Drawing.Size(16, 24);
  1047. this.breaker3.TabIndex = 24;
  1048. this.breaker3.TagData = null;
  1049. this.breaker3.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0023";
  1050. //
  1051. // breaker4
  1052. //
  1053. this.breaker4.BackColor = System.Drawing.Color.Red;
  1054. this.breaker4.Location = new System.Drawing.Point(393, 162);
  1055. this.breaker4.Name = "breaker4";
  1056. this.breaker4.Size = new System.Drawing.Size(16, 24);
  1057. this.breaker4.TabIndex = 25;
  1058. this.breaker4.TagData = null;
  1059. this.breaker4.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0021";
  1060. //
  1061. // breaker5
  1062. //
  1063. this.breaker5.BackColor = System.Drawing.Color.Red;
  1064. this.breaker5.Location = new System.Drawing.Point(647, 162);
  1065. this.breaker5.Name = "breaker5";
  1066. this.breaker5.Size = new System.Drawing.Size(16, 24);
  1067. this.breaker5.TabIndex = 26;
  1068. this.breaker5.TagData = null;
  1069. this.breaker5.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0017";
  1070. //
  1071. // breaker6
  1072. //
  1073. this.breaker6.BackColor = System.Drawing.Color.Red;
  1074. this.breaker6.Location = new System.Drawing.Point(514, 162);
  1075. this.breaker6.Name = "breaker6";
  1076. this.breaker6.Size = new System.Drawing.Size(16, 24);
  1077. this.breaker6.TabIndex = 27;
  1078. this.breaker6.TagData = null;
  1079. this.breaker6.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0019";
  1080. //
  1081. // breaker7
  1082. //
  1083. this.breaker7.BackColor = System.Drawing.Color.Red;
  1084. this.breaker7.Location = new System.Drawing.Point(1026, 157);
  1085. this.breaker7.Name = "breaker7";
  1086. this.breaker7.Size = new System.Drawing.Size(16, 24);
  1087. this.breaker7.TabIndex = 28;
  1088. this.breaker7.TagData = null;
  1089. this.breaker7.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0005";
  1090. //
  1091. // breaker8
  1092. //
  1093. this.breaker8.BackColor = System.Drawing.Color.Red;
  1094. this.breaker8.Location = new System.Drawing.Point(1606, 328);
  1095. this.breaker8.Name = "breaker8";
  1096. this.breaker8.Size = new System.Drawing.Size(16, 24);
  1097. this.breaker8.TabIndex = 29;
  1098. this.breaker8.TagData = null;
  1099. this.breaker8.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L5_017_DI0510";
  1100. //
  1101. // breaker9
  1102. //
  1103. this.breaker9.BackColor = System.Drawing.Color.Red;
  1104. this.breaker9.Location = new System.Drawing.Point(867, 162);
  1105. this.breaker9.Name = "breaker9";
  1106. this.breaker9.Size = new System.Drawing.Size(16, 24);
  1107. this.breaker9.TabIndex = 30;
  1108. this.breaker9.TagData = null;
  1109. this.breaker9.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0003";
  1110. //
  1111. // breaker10
  1112. //
  1113. this.breaker10.BackColor = System.Drawing.Color.Red;
  1114. this.breaker10.Location = new System.Drawing.Point(1041, 328);
  1115. this.breaker10.Name = "breaker10";
  1116. this.breaker10.Size = new System.Drawing.Size(16, 24);
  1117. this.breaker10.TabIndex = 31;
  1118. this.breaker10.TagData = null;
  1119. this.breaker10.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_003_DI0510";
  1120. //
  1121. // breaker11
  1122. //
  1123. this.breaker11.BackColor = System.Drawing.Color.Red;
  1124. this.breaker11.Location = new System.Drawing.Point(1008, 328);
  1125. this.breaker11.Name = "breaker11";
  1126. this.breaker11.Size = new System.Drawing.Size(16, 24);
  1127. this.breaker11.TabIndex = 32;
  1128. this.breaker11.TagData = null;
  1129. this.breaker11.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_002_DI0510";
  1130. //
  1131. // breaker12
  1132. //
  1133. this.breaker12.BackColor = System.Drawing.Color.Red;
  1134. this.breaker12.Location = new System.Drawing.Point(960, 328);
  1135. this.breaker12.Name = "breaker12";
  1136. this.breaker12.Size = new System.Drawing.Size(16, 24);
  1137. this.breaker12.TabIndex = 33;
  1138. this.breaker12.TagData = null;
  1139. this.breaker12.TagId = "";
  1140. //
  1141. // breaker13
  1142. //
  1143. this.breaker13.BackColor = System.Drawing.Color.Red;
  1144. this.breaker13.Location = new System.Drawing.Point(1798, 157);
  1145. this.breaker13.Name = "breaker13";
  1146. this.breaker13.Size = new System.Drawing.Size(16, 24);
  1147. this.breaker13.TabIndex = 34;
  1148. this.breaker13.TagData = null;
  1149. this.breaker13.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0015";
  1150. //
  1151. // breaker14
  1152. //
  1153. this.breaker14.BackColor = System.Drawing.Color.Red;
  1154. this.breaker14.Location = new System.Drawing.Point(1672, 157);
  1155. this.breaker14.Name = "breaker14";
  1156. this.breaker14.Size = new System.Drawing.Size(16, 24);
  1157. this.breaker14.TabIndex = 35;
  1158. this.breaker14.TagData = null;
  1159. this.breaker14.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0013";
  1160. //
  1161. // breaker15
  1162. //
  1163. this.breaker15.BackColor = System.Drawing.Color.Red;
  1164. this.breaker15.Location = new System.Drawing.Point(1510, 157);
  1165. this.breaker15.Name = "breaker15";
  1166. this.breaker15.Size = new System.Drawing.Size(16, 24);
  1167. this.breaker15.TabIndex = 36;
  1168. this.breaker15.TagData = null;
  1169. this.breaker15.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0011";
  1170. //
  1171. // breaker16
  1172. //
  1173. this.breaker16.BackColor = System.Drawing.Color.Red;
  1174. this.breaker16.Location = new System.Drawing.Point(1349, 157);
  1175. this.breaker16.Name = "breaker16";
  1176. this.breaker16.Size = new System.Drawing.Size(16, 24);
  1177. this.breaker16.TabIndex = 37;
  1178. this.breaker16.TagData = null;
  1179. this.breaker16.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0009";
  1180. //
  1181. // breaker17
  1182. //
  1183. this.breaker17.BackColor = System.Drawing.Color.Red;
  1184. this.breaker17.Location = new System.Drawing.Point(1188, 157);
  1185. this.breaker17.Name = "breaker17";
  1186. this.breaker17.Size = new System.Drawing.Size(16, 24);
  1187. this.breaker17.TabIndex = 38;
  1188. this.breaker17.TagData = null;
  1189. this.breaker17.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0007";
  1190. //
  1191. // breaker18
  1192. //
  1193. this.breaker18.BackColor = System.Drawing.Color.Red;
  1194. this.breaker18.Location = new System.Drawing.Point(1089, 328);
  1195. this.breaker18.Name = "breaker18";
  1196. this.breaker18.Size = new System.Drawing.Size(16, 24);
  1197. this.breaker18.TabIndex = 39;
  1198. this.breaker18.TagData = null;
  1199. this.breaker18.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_004_DI0510";
  1200. //
  1201. // breaker19
  1202. //
  1203. this.breaker19.BackColor = System.Drawing.Color.Red;
  1204. this.breaker19.Location = new System.Drawing.Point(596, 664);
  1205. this.breaker19.Name = "breaker19";
  1206. this.breaker19.Size = new System.Drawing.Size(16, 24);
  1207. this.breaker19.TabIndex = 40;
  1208. this.breaker19.TagData = null;
  1209. this.breaker19.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0078";
  1210. this.breaker19.Load += new System.EventHandler(this.breaker19_Load);
  1211. //
  1212. // breaker20
  1213. //
  1214. this.breaker20.BackColor = System.Drawing.Color.Red;
  1215. this.breaker20.Location = new System.Drawing.Point(1711, 328);
  1216. this.breaker20.Name = "breaker20";
  1217. this.breaker20.Size = new System.Drawing.Size(16, 24);
  1218. this.breaker20.TabIndex = 41;
  1219. this.breaker20.TagData = null;
  1220. this.breaker20.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L5_019_DI0510";
  1221. //
  1222. // breaker21
  1223. //
  1224. this.breaker21.BackColor = System.Drawing.Color.Red;
  1225. this.breaker21.Location = new System.Drawing.Point(1654, 328);
  1226. this.breaker21.Name = "breaker21";
  1227. this.breaker21.Size = new System.Drawing.Size(16, 24);
  1228. this.breaker21.TabIndex = 42;
  1229. this.breaker21.TagData = null;
  1230. this.breaker21.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L5_018_DI0510";
  1231. //
  1232. // breaker22
  1233. //
  1234. this.breaker22.BackColor = System.Drawing.Color.Red;
  1235. this.breaker22.Location = new System.Drawing.Point(1573, 328);
  1236. this.breaker22.Name = "breaker22";
  1237. this.breaker22.Size = new System.Drawing.Size(16, 24);
  1238. this.breaker22.TabIndex = 43;
  1239. this.breaker22.TagData = null;
  1240. this.breaker22.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_016_DI0510";
  1241. //
  1242. // breaker23
  1243. //
  1244. this.breaker23.BackColor = System.Drawing.Color.Red;
  1245. this.breaker23.Location = new System.Drawing.Point(1525, 328);
  1246. this.breaker23.Name = "breaker23";
  1247. this.breaker23.Size = new System.Drawing.Size(16, 24);
  1248. this.breaker23.TabIndex = 44;
  1249. this.breaker23.TagData = null;
  1250. this.breaker23.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_015_DI0510";
  1251. //
  1252. // breaker24
  1253. //
  1254. this.breaker24.BackColor = System.Drawing.Color.Red;
  1255. this.breaker24.Location = new System.Drawing.Point(1492, 328);
  1256. this.breaker24.Name = "breaker24";
  1257. this.breaker24.Size = new System.Drawing.Size(16, 24);
  1258. this.breaker24.TabIndex = 45;
  1259. this.breaker24.TagData = null;
  1260. this.breaker24.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_014_DI0510";
  1261. //
  1262. // breaker25
  1263. //
  1264. this.breaker25.BackColor = System.Drawing.Color.Red;
  1265. this.breaker25.Location = new System.Drawing.Point(1444, 328);
  1266. this.breaker25.Name = "breaker25";
  1267. this.breaker25.Size = new System.Drawing.Size(16, 24);
  1268. this.breaker25.TabIndex = 46;
  1269. this.breaker25.TagData = null;
  1270. this.breaker25.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_013_DI0510";
  1271. //
  1272. // breaker26
  1273. //
  1274. this.breaker26.BackColor = System.Drawing.Color.Red;
  1275. this.breaker26.Location = new System.Drawing.Point(1412, 328);
  1276. this.breaker26.Name = "breaker26";
  1277. this.breaker26.Size = new System.Drawing.Size(16, 24);
  1278. this.breaker26.TabIndex = 47;
  1279. this.breaker26.TagData = null;
  1280. this.breaker26.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_012_DI0510";
  1281. //
  1282. // breaker27
  1283. //
  1284. this.breaker27.BackColor = System.Drawing.Color.Red;
  1285. this.breaker27.Location = new System.Drawing.Point(1364, 328);
  1286. this.breaker27.Name = "breaker27";
  1287. this.breaker27.Size = new System.Drawing.Size(16, 24);
  1288. this.breaker27.TabIndex = 48;
  1289. this.breaker27.TagData = null;
  1290. this.breaker27.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_011_DI0510";
  1291. //
  1292. // breaker28
  1293. //
  1294. this.breaker28.BackColor = System.Drawing.Color.Red;
  1295. this.breaker28.Location = new System.Drawing.Point(1331, 328);
  1296. this.breaker28.Name = "breaker28";
  1297. this.breaker28.Size = new System.Drawing.Size(16, 24);
  1298. this.breaker28.TabIndex = 49;
  1299. this.breaker28.TagData = null;
  1300. this.breaker28.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_010_DI0510";
  1301. //
  1302. // breaker29
  1303. //
  1304. this.breaker29.BackColor = System.Drawing.Color.Red;
  1305. this.breaker29.Location = new System.Drawing.Point(1283, 328);
  1306. this.breaker29.Name = "breaker29";
  1307. this.breaker29.Size = new System.Drawing.Size(16, 24);
  1308. this.breaker29.TabIndex = 50;
  1309. this.breaker29.TagData = null;
  1310. this.breaker29.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_009_DI0510";
  1311. //
  1312. // breaker30
  1313. //
  1314. this.breaker30.BackColor = System.Drawing.Color.Red;
  1315. this.breaker30.Location = new System.Drawing.Point(1170, 328);
  1316. this.breaker30.Name = "breaker30";
  1317. this.breaker30.Size = new System.Drawing.Size(16, 24);
  1318. this.breaker30.TabIndex = 51;
  1319. this.breaker30.TagData = null;
  1320. this.breaker30.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_006_DI0510";
  1321. //
  1322. // breaker31
  1323. //
  1324. this.breaker31.BackColor = System.Drawing.Color.Red;
  1325. this.breaker31.Location = new System.Drawing.Point(1122, 328);
  1326. this.breaker31.Name = "breaker31";
  1327. this.breaker31.Size = new System.Drawing.Size(16, 24);
  1328. this.breaker31.TabIndex = 52;
  1329. this.breaker31.TagData = null;
  1330. this.breaker31.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_005_DI0510";
  1331. //
  1332. // breaker32
  1333. //
  1334. this.breaker32.BackColor = System.Drawing.Color.Red;
  1335. this.breaker32.Location = new System.Drawing.Point(1203, 328);
  1336. this.breaker32.Name = "breaker32";
  1337. this.breaker32.Size = new System.Drawing.Size(16, 24);
  1338. this.breaker32.TabIndex = 53;
  1339. this.breaker32.TagData = null;
  1340. this.breaker32.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_007_DI0510";
  1341. //
  1342. // breaker33
  1343. //
  1344. this.breaker33.BackColor = System.Drawing.Color.Red;
  1345. this.breaker33.Location = new System.Drawing.Point(1251, 328);
  1346. this.breaker33.Name = "breaker33";
  1347. this.breaker33.Size = new System.Drawing.Size(16, 24);
  1348. this.breaker33.TabIndex = 54;
  1349. this.breaker33.TagData = null;
  1350. this.breaker33.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_008_DI0510";
  1351. //
  1352. // breaker34
  1353. //
  1354. this.breaker34.BackColor = System.Drawing.Color.Red;
  1355. this.breaker34.Location = new System.Drawing.Point(1156, 665);
  1356. this.breaker34.Name = "breaker34";
  1357. this.breaker34.Size = new System.Drawing.Size(16, 24);
  1358. this.breaker34.TabIndex = 55;
  1359. this.breaker34.TagData = null;
  1360. this.breaker34.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0032";
  1361. //
  1362. // breaker35
  1363. //
  1364. this.breaker35.BackColor = System.Drawing.Color.Red;
  1365. this.breaker35.Location = new System.Drawing.Point(1189, 664);
  1366. this.breaker35.Name = "breaker35";
  1367. this.breaker35.Size = new System.Drawing.Size(16, 24);
  1368. this.breaker35.TabIndex = 56;
  1369. this.breaker35.TagData = null;
  1370. this.breaker35.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0035";
  1371. //
  1372. // breaker36
  1373. //
  1374. this.breaker36.BackColor = System.Drawing.Color.Red;
  1375. this.breaker36.Location = new System.Drawing.Point(1237, 664);
  1376. this.breaker36.Name = "breaker36";
  1377. this.breaker36.Size = new System.Drawing.Size(16, 24);
  1378. this.breaker36.TabIndex = 57;
  1379. this.breaker36.TagData = null;
  1380. this.breaker36.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0036";
  1381. //
  1382. // breaker37
  1383. //
  1384. this.breaker37.BackColor = System.Drawing.Color.Red;
  1385. this.breaker37.Location = new System.Drawing.Point(1270, 664);
  1386. this.breaker37.Name = "breaker37";
  1387. this.breaker37.Size = new System.Drawing.Size(16, 24);
  1388. this.breaker37.TabIndex = 58;
  1389. this.breaker37.TagData = null;
  1390. this.breaker37.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0037";
  1391. //
  1392. // breaker38
  1393. //
  1394. this.breaker38.BackColor = System.Drawing.Color.Red;
  1395. this.breaker38.Location = new System.Drawing.Point(1318, 664);
  1396. this.breaker38.Name = "breaker38";
  1397. this.breaker38.Size = new System.Drawing.Size(16, 24);
  1398. this.breaker38.TabIndex = 59;
  1399. this.breaker38.TagData = null;
  1400. this.breaker38.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0038";
  1401. this.breaker38.Load += new System.EventHandler(this.breaker38_Load);
  1402. //
  1403. // breaker39
  1404. //
  1405. this.breaker39.BackColor = System.Drawing.Color.Red;
  1406. this.breaker39.Location = new System.Drawing.Point(1351, 665);
  1407. this.breaker39.Name = "breaker39";
  1408. this.breaker39.Size = new System.Drawing.Size(16, 24);
  1409. this.breaker39.TabIndex = 60;
  1410. this.breaker39.TagData = null;
  1411. this.breaker39.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0041";
  1412. this.breaker39.Load += new System.EventHandler(this.breaker39_Load);
  1413. //
  1414. // breaker40
  1415. //
  1416. this.breaker40.BackColor = System.Drawing.Color.Red;
  1417. this.breaker40.Location = new System.Drawing.Point(1399, 664);
  1418. this.breaker40.Name = "breaker40";
  1419. this.breaker40.Size = new System.Drawing.Size(16, 24);
  1420. this.breaker40.TabIndex = 61;
  1421. this.breaker40.TagData = null;
  1422. this.breaker40.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0042";
  1423. //
  1424. // breaker41
  1425. //
  1426. this.breaker41.BackColor = System.Drawing.Color.Red;
  1427. this.breaker41.Location = new System.Drawing.Point(1432, 665);
  1428. this.breaker41.Name = "breaker41";
  1429. this.breaker41.Size = new System.Drawing.Size(16, 24);
  1430. this.breaker41.TabIndex = 62;
  1431. this.breaker41.TagData = null;
  1432. this.breaker41.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0043";
  1433. this.breaker41.Load += new System.EventHandler(this.breaker41_Load);
  1434. //
  1435. // breaker42
  1436. //
  1437. this.breaker42.BackColor = System.Drawing.Color.Red;
  1438. this.breaker42.Location = new System.Drawing.Point(1480, 664);
  1439. this.breaker42.Name = "breaker42";
  1440. this.breaker42.Size = new System.Drawing.Size(16, 24);
  1441. this.breaker42.TabIndex = 63;
  1442. this.breaker42.TagData = null;
  1443. this.breaker42.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0044";
  1444. //
  1445. // breaker46
  1446. //
  1447. this.breaker46.BackColor = System.Drawing.Color.Red;
  1448. this.breaker46.Location = new System.Drawing.Point(516, 664);
  1449. this.breaker46.Name = "breaker46";
  1450. this.breaker46.Size = new System.Drawing.Size(16, 24);
  1451. this.breaker46.TabIndex = 67;
  1452. this.breaker46.TagData = null;
  1453. this.breaker46.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0073";
  1454. //
  1455. // breaker47
  1456. //
  1457. this.breaker47.BackColor = System.Drawing.Color.Red;
  1458. this.breaker47.Location = new System.Drawing.Point(564, 664);
  1459. this.breaker47.Name = "breaker47";
  1460. this.breaker47.Size = new System.Drawing.Size(16, 24);
  1461. this.breaker47.TabIndex = 68;
  1462. this.breaker47.TagData = null;
  1463. this.breaker47.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0074";
  1464. this.breaker47.Load += new System.EventHandler(this.breaker47_Load);
  1465. //
  1466. // breaker48
  1467. //
  1468. this.breaker48.BackColor = System.Drawing.Color.Red;
  1469. this.breaker48.Location = new System.Drawing.Point(644, 664);
  1470. this.breaker48.Name = "breaker48";
  1471. this.breaker48.Size = new System.Drawing.Size(16, 24);
  1472. this.breaker48.TabIndex = 69;
  1473. this.breaker48.TagData = null;
  1474. this.breaker48.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0079";
  1475. this.breaker48.Load += new System.EventHandler(this.breaker48_Load);
  1476. //
  1477. // breaker49
  1478. //
  1479. this.breaker49.BackColor = System.Drawing.Color.Red;
  1480. this.breaker49.Location = new System.Drawing.Point(677, 664);
  1481. this.breaker49.Name = "breaker49";
  1482. this.breaker49.Size = new System.Drawing.Size(16, 24);
  1483. this.breaker49.TabIndex = 70;
  1484. this.breaker49.TagData = null;
  1485. this.breaker49.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0080";
  1486. this.breaker49.Load += new System.EventHandler(this.breaker49_Load);
  1487. //
  1488. // breaker50
  1489. //
  1490. this.breaker50.BackColor = System.Drawing.Color.Red;
  1491. this.breaker50.Location = new System.Drawing.Point(725, 664);
  1492. this.breaker50.Name = "breaker50";
  1493. this.breaker50.Size = new System.Drawing.Size(16, 24);
  1494. this.breaker50.TabIndex = 71;
  1495. this.breaker50.TagData = null;
  1496. this.breaker50.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0081";
  1497. //
  1498. // breaker51
  1499. //
  1500. this.breaker51.BackColor = System.Drawing.Color.Red;
  1501. this.breaker51.Location = new System.Drawing.Point(758, 664);
  1502. this.breaker51.Name = "breaker51";
  1503. this.breaker51.Size = new System.Drawing.Size(16, 24);
  1504. this.breaker51.TabIndex = 72;
  1505. this.breaker51.TagData = null;
  1506. this.breaker51.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0082";
  1507. this.breaker51.Load += new System.EventHandler(this.breaker51_Load);
  1508. //
  1509. // breaker52
  1510. //
  1511. this.breaker52.BackColor = System.Drawing.Color.Red;
  1512. this.breaker52.Location = new System.Drawing.Point(806, 664);
  1513. this.breaker52.Name = "breaker52";
  1514. this.breaker52.Size = new System.Drawing.Size(16, 24);
  1515. this.breaker52.TabIndex = 73;
  1516. this.breaker52.TagData = null;
  1517. this.breaker52.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0083";
  1518. this.breaker52.Load += new System.EventHandler(this.breaker52_Load);
  1519. //
  1520. // breaker53
  1521. //
  1522. this.breaker53.BackColor = System.Drawing.Color.Red;
  1523. this.breaker53.Location = new System.Drawing.Point(840, 665);
  1524. this.breaker53.Name = "breaker53";
  1525. this.breaker53.Size = new System.Drawing.Size(16, 24);
  1526. this.breaker53.TabIndex = 74;
  1527. this.breaker53.TagData = null;
  1528. this.breaker53.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0085";
  1529. //
  1530. // breaker54
  1531. //
  1532. this.breaker54.BackColor = System.Drawing.Color.Red;
  1533. this.breaker54.Location = new System.Drawing.Point(885, 665);
  1534. this.breaker54.Name = "breaker54";
  1535. this.breaker54.Size = new System.Drawing.Size(16, 24);
  1536. this.breaker54.TabIndex = 75;
  1537. this.breaker54.TagData = null;
  1538. this.breaker54.TagId = null;
  1539. //
  1540. // breaker55
  1541. //
  1542. this.breaker55.BackColor = System.Drawing.Color.Red;
  1543. this.breaker55.Location = new System.Drawing.Point(921, 664);
  1544. this.breaker55.Name = "breaker55";
  1545. this.breaker55.Size = new System.Drawing.Size(16, 24);
  1546. this.breaker55.TabIndex = 76;
  1547. this.breaker55.TagData = null;
  1548. this.breaker55.TagId = null;
  1549. //
  1550. // breaker56
  1551. //
  1552. this.breaker56.BackColor = System.Drawing.Color.Red;
  1553. this.breaker56.Location = new System.Drawing.Point(967, 664);
  1554. this.breaker56.Name = "breaker56";
  1555. this.breaker56.Size = new System.Drawing.Size(16, 24);
  1556. this.breaker56.TabIndex = 77;
  1557. this.breaker56.TagData = null;
  1558. this.breaker56.TagId = null;
  1559. //
  1560. // breaker57
  1561. //
  1562. this.breaker57.BackColor = System.Drawing.Color.Red;
  1563. this.breaker57.Location = new System.Drawing.Point(1027, 664);
  1564. this.breaker57.Name = "breaker57";
  1565. this.breaker57.Size = new System.Drawing.Size(16, 24);
  1566. this.breaker57.TabIndex = 78;
  1567. this.breaker57.TagData = null;
  1568. this.breaker57.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0029";
  1569. //
  1570. // breaker58
  1571. //
  1572. this.breaker58.BackColor = System.Drawing.Color.Red;
  1573. this.breaker58.Location = new System.Drawing.Point(1075, 665);
  1574. this.breaker58.Name = "breaker58";
  1575. this.breaker58.Size = new System.Drawing.Size(16, 24);
  1576. this.breaker58.TabIndex = 79;
  1577. this.breaker58.TagData = null;
  1578. this.breaker58.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0030";
  1579. this.breaker58.Load += new System.EventHandler(this.breaker58_Load);
  1580. //
  1581. // breaker59
  1582. //
  1583. this.breaker59.BackColor = System.Drawing.Color.Red;
  1584. this.breaker59.Location = new System.Drawing.Point(1108, 665);
  1585. this.breaker59.Name = "breaker59";
  1586. this.breaker59.Size = new System.Drawing.Size(16, 24);
  1587. this.breaker59.TabIndex = 80;
  1588. this.breaker59.TagData = null;
  1589. this.breaker59.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0031";
  1590. //
  1591. // breaker60
  1592. //
  1593. this.breaker60.BackColor = System.Drawing.Color.Red;
  1594. this.breaker60.Location = new System.Drawing.Point(1512, 665);
  1595. this.breaker60.Name = "breaker60";
  1596. this.breaker60.Size = new System.Drawing.Size(16, 24);
  1597. this.breaker60.TabIndex = 81;
  1598. this.breaker60.TagData = null;
  1599. this.breaker60.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0047";
  1600. //
  1601. // breaker61
  1602. //
  1603. this.breaker61.BackColor = System.Drawing.Color.Red;
  1604. this.breaker61.Location = new System.Drawing.Point(1560, 664);
  1605. this.breaker61.Name = "breaker61";
  1606. this.breaker61.Size = new System.Drawing.Size(16, 24);
  1607. this.breaker61.TabIndex = 82;
  1608. this.breaker61.TagData = null;
  1609. this.breaker61.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0048";
  1610. //
  1611. // breaker62
  1612. //
  1613. this.breaker62.BackColor = System.Drawing.Color.Red;
  1614. this.breaker62.Location = new System.Drawing.Point(1593, 664);
  1615. this.breaker62.Name = "breaker62";
  1616. this.breaker62.Size = new System.Drawing.Size(16, 24);
  1617. this.breaker62.TabIndex = 83;
  1618. this.breaker62.TagData = null;
  1619. this.breaker62.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0049";
  1620. //
  1621. // breaker63
  1622. //
  1623. this.breaker63.BackColor = System.Drawing.Color.Red;
  1624. this.breaker63.Location = new System.Drawing.Point(1641, 664);
  1625. this.breaker63.Name = "breaker63";
  1626. this.breaker63.Size = new System.Drawing.Size(16, 24);
  1627. this.breaker63.TabIndex = 84;
  1628. this.breaker63.TagData = null;
  1629. this.breaker63.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0050";
  1630. //
  1631. // breaker64
  1632. //
  1633. this.breaker64.BackColor = System.Drawing.Color.Red;
  1634. this.breaker64.Location = new System.Drawing.Point(1674, 664);
  1635. this.breaker64.Name = "breaker64";
  1636. this.breaker64.Size = new System.Drawing.Size(16, 24);
  1637. this.breaker64.TabIndex = 85;
  1638. this.breaker64.TagData = null;
  1639. this.breaker64.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0053";
  1640. //
  1641. // breaker65
  1642. //
  1643. this.breaker65.BackColor = System.Drawing.Color.Red;
  1644. this.breaker65.Location = new System.Drawing.Point(1722, 665);
  1645. this.breaker65.Name = "breaker65";
  1646. this.breaker65.Size = new System.Drawing.Size(16, 24);
  1647. this.breaker65.TabIndex = 86;
  1648. this.breaker65.TagData = null;
  1649. this.breaker65.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0054";
  1650. this.breaker65.Load += new System.EventHandler(this.breaker65_Load);
  1651. //
  1652. // breaker66
  1653. //
  1654. this.breaker66.BackColor = System.Drawing.Color.Red;
  1655. this.breaker66.Location = new System.Drawing.Point(1755, 665);
  1656. this.breaker66.Name = "breaker66";
  1657. this.breaker66.Size = new System.Drawing.Size(16, 24);
  1658. this.breaker66.TabIndex = 87;
  1659. this.breaker66.TagData = null;
  1660. this.breaker66.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0055";
  1661. //
  1662. // breaker67
  1663. //
  1664. this.breaker67.BackColor = System.Drawing.Color.Red;
  1665. this.breaker67.Location = new System.Drawing.Point(1803, 664);
  1666. this.breaker67.Name = "breaker67";
  1667. this.breaker67.Size = new System.Drawing.Size(16, 24);
  1668. this.breaker67.TabIndex = 88;
  1669. this.breaker67.TagData = null;
  1670. this.breaker67.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0056";
  1671. //
  1672. // breaker68
  1673. //
  1674. this.breaker68.BackColor = System.Drawing.Color.Red;
  1675. this.breaker68.Location = new System.Drawing.Point(112, 664);
  1676. this.breaker68.Name = "breaker68";
  1677. this.breaker68.Size = new System.Drawing.Size(16, 24);
  1678. this.breaker68.TabIndex = 89;
  1679. this.breaker68.TagData = null;
  1680. this.breaker68.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0059";
  1681. //
  1682. // breaker69
  1683. //
  1684. this.breaker69.BackColor = System.Drawing.Color.Red;
  1685. this.breaker69.Location = new System.Drawing.Point(160, 664);
  1686. this.breaker69.Name = "breaker69";
  1687. this.breaker69.Size = new System.Drawing.Size(16, 24);
  1688. this.breaker69.TabIndex = 90;
  1689. this.breaker69.TagData = null;
  1690. this.breaker69.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0060";
  1691. this.breaker69.Load += new System.EventHandler(this.breaker69_Load);
  1692. //
  1693. // breaker70
  1694. //
  1695. this.breaker70.BackColor = System.Drawing.Color.Red;
  1696. this.breaker70.Location = new System.Drawing.Point(193, 664);
  1697. this.breaker70.Name = "breaker70";
  1698. this.breaker70.Size = new System.Drawing.Size(16, 24);
  1699. this.breaker70.TabIndex = 91;
  1700. this.breaker70.TagData = null;
  1701. this.breaker70.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0061";
  1702. this.breaker70.Load += new System.EventHandler(this.breaker70_Load);
  1703. //
  1704. // breaker71
  1705. //
  1706. this.breaker71.BackColor = System.Drawing.Color.Red;
  1707. this.breaker71.Location = new System.Drawing.Point(241, 664);
  1708. this.breaker71.Name = "breaker71";
  1709. this.breaker71.Size = new System.Drawing.Size(16, 24);
  1710. this.breaker71.TabIndex = 92;
  1711. this.breaker71.TagData = null;
  1712. this.breaker71.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0062";
  1713. this.breaker71.Load += new System.EventHandler(this.breaker71_Load);
  1714. //
  1715. // breaker72
  1716. //
  1717. this.breaker72.BackColor = System.Drawing.Color.Red;
  1718. this.breaker72.Location = new System.Drawing.Point(274, 664);
  1719. this.breaker72.Name = "breaker72";
  1720. this.breaker72.Size = new System.Drawing.Size(16, 24);
  1721. this.breaker72.TabIndex = 93;
  1722. this.breaker72.TagData = null;
  1723. this.breaker72.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0065";
  1724. //
  1725. // breaker73
  1726. //
  1727. this.breaker73.BackColor = System.Drawing.Color.Red;
  1728. this.breaker73.Location = new System.Drawing.Point(322, 664);
  1729. this.breaker73.Name = "breaker73";
  1730. this.breaker73.Size = new System.Drawing.Size(16, 24);
  1731. this.breaker73.TabIndex = 94;
  1732. this.breaker73.TagData = null;
  1733. this.breaker73.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0066";
  1734. //
  1735. // breaker74
  1736. //
  1737. this.breaker74.BackColor = System.Drawing.Color.Red;
  1738. this.breaker74.Location = new System.Drawing.Point(355, 664);
  1739. this.breaker74.Name = "breaker74";
  1740. this.breaker74.Size = new System.Drawing.Size(16, 24);
  1741. this.breaker74.TabIndex = 95;
  1742. this.breaker74.TagData = null;
  1743. this.breaker74.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0067";
  1744. this.breaker74.Load += new System.EventHandler(this.breaker74_Load);
  1745. //
  1746. // breaker75
  1747. //
  1748. this.breaker75.BackColor = System.Drawing.Color.Red;
  1749. this.breaker75.Location = new System.Drawing.Point(403, 664);
  1750. this.breaker75.Name = "breaker75";
  1751. this.breaker75.Size = new System.Drawing.Size(16, 24);
  1752. this.breaker75.TabIndex = 96;
  1753. this.breaker75.TagData = null;
  1754. this.breaker75.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0068";
  1755. //
  1756. // breaker76
  1757. //
  1758. this.breaker76.BackColor = System.Drawing.Color.Red;
  1759. this.breaker76.Location = new System.Drawing.Point(435, 664);
  1760. this.breaker76.Name = "breaker76";
  1761. this.breaker76.Size = new System.Drawing.Size(16, 24);
  1762. this.breaker76.TabIndex = 97;
  1763. this.breaker76.TagData = null;
  1764. this.breaker76.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0071";
  1765. this.breaker76.Load += new System.EventHandler(this.breaker76_Load);
  1766. //
  1767. // breaker77
  1768. //
  1769. this.breaker77.BackColor = System.Drawing.Color.Red;
  1770. this.breaker77.Location = new System.Drawing.Point(483, 665);
  1771. this.breaker77.Name = "breaker77";
  1772. this.breaker77.Size = new System.Drawing.Size(16, 24);
  1773. this.breaker77.TabIndex = 98;
  1774. this.breaker77.TagData = null;
  1775. this.breaker77.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0072";
  1776. //
  1777. // switchUpSmall1
  1778. //
  1779. this.switchUpSmall1.Location = new System.Drawing.Point(623, 231);
  1780. this.switchUpSmall1.Name = "switchUpSmall1";
  1781. this.switchUpSmall1.Size = new System.Drawing.Size(18, 22);
  1782. this.switchUpSmall1.TabIndex = 99;
  1783. this.switchUpSmall1.TagData = null;
  1784. this.switchUpSmall1.TagId = null;
  1785. //
  1786. // switchUpSmall2
  1787. //
  1788. this.switchUpSmall2.Location = new System.Drawing.Point(241, 224);
  1789. this.switchUpSmall2.Name = "switchUpSmall2";
  1790. this.switchUpSmall2.Size = new System.Drawing.Size(18, 22);
  1791. this.switchUpSmall2.TabIndex = 100;
  1792. this.switchUpSmall2.TagData = null;
  1793. this.switchUpSmall2.TagId = null;
  1794. //
  1795. // switchUpSmall3
  1796. //
  1797. this.switchUpSmall3.Location = new System.Drawing.Point(218, 310);
  1798. this.switchUpSmall3.Name = "switchUpSmall3";
  1799. this.switchUpSmall3.Size = new System.Drawing.Size(18, 22);
  1800. this.switchUpSmall3.TabIndex = 101;
  1801. this.switchUpSmall3.TagData = null;
  1802. this.switchUpSmall3.TagId = null;
  1803. //
  1804. // switchUpSmall4
  1805. //
  1806. this.switchUpSmall4.Location = new System.Drawing.Point(218, 231);
  1807. this.switchUpSmall4.Name = "switchUpSmall4";
  1808. this.switchUpSmall4.Size = new System.Drawing.Size(18, 22);
  1809. this.switchUpSmall4.TabIndex = 102;
  1810. this.switchUpSmall4.TagData = null;
  1811. this.switchUpSmall4.TagId = null;
  1812. //
  1813. // switchUpSmall5
  1814. //
  1815. this.switchUpSmall5.Location = new System.Drawing.Point(94, 305);
  1816. this.switchUpSmall5.Name = "switchUpSmall5";
  1817. this.switchUpSmall5.Size = new System.Drawing.Size(18, 22);
  1818. this.switchUpSmall5.TabIndex = 103;
  1819. this.switchUpSmall5.TagData = null;
  1820. this.switchUpSmall5.TagId = null;
  1821. //
  1822. // switchUpSmall6
  1823. //
  1824. this.switchUpSmall6.Location = new System.Drawing.Point(71, 231);
  1825. this.switchUpSmall6.Name = "switchUpSmall6";
  1826. this.switchUpSmall6.Size = new System.Drawing.Size(18, 22);
  1827. this.switchUpSmall6.TabIndex = 104;
  1828. this.switchUpSmall6.TagData = null;
  1829. this.switchUpSmall6.TagId = null;
  1830. //
  1831. // switchUpSmall7
  1832. //
  1833. this.switchUpSmall7.Location = new System.Drawing.Point(490, 231);
  1834. this.switchUpSmall7.Name = "switchUpSmall7";
  1835. this.switchUpSmall7.Size = new System.Drawing.Size(18, 22);
  1836. this.switchUpSmall7.TabIndex = 105;
  1837. this.switchUpSmall7.TagData = null;
  1838. this.switchUpSmall7.TagId = null;
  1839. //
  1840. // switchUpSmall8
  1841. //
  1842. this.switchUpSmall8.Location = new System.Drawing.Point(369, 231);
  1843. this.switchUpSmall8.Name = "switchUpSmall8";
  1844. this.switchUpSmall8.Size = new System.Drawing.Size(18, 22);
  1845. this.switchUpSmall8.TabIndex = 106;
  1846. this.switchUpSmall8.TagData = null;
  1847. this.switchUpSmall8.TagId = null;
  1848. //
  1849. // switchUpSmall9
  1850. //
  1851. this.switchUpSmall9.Location = new System.Drawing.Point(1047, 218);
  1852. this.switchUpSmall9.Name = "switchUpSmall9";
  1853. this.switchUpSmall9.Size = new System.Drawing.Size(18, 22);
  1854. this.switchUpSmall9.TabIndex = 107;
  1855. this.switchUpSmall9.TagData = null;
  1856. this.switchUpSmall9.TagId = null;
  1857. //
  1858. // switchUpSmall10
  1859. //
  1860. this.switchUpSmall10.Location = new System.Drawing.Point(889, 243);
  1861. this.switchUpSmall10.Name = "switchUpSmall10";
  1862. this.switchUpSmall10.Size = new System.Drawing.Size(18, 22);
  1863. this.switchUpSmall10.TabIndex = 108;
  1864. this.switchUpSmall10.TagData = null;
  1865. this.switchUpSmall10.TagId = null;
  1866. //
  1867. // switchUpSmall11
  1868. //
  1869. this.switchUpSmall11.Location = new System.Drawing.Point(1209, 218);
  1870. this.switchUpSmall11.Name = "switchUpSmall11";
  1871. this.switchUpSmall11.Size = new System.Drawing.Size(18, 22);
  1872. this.switchUpSmall11.TabIndex = 109;
  1873. this.switchUpSmall11.TagData = null;
  1874. this.switchUpSmall11.TagId = null;
  1875. //
  1876. // switchUpSmall12
  1877. //
  1878. this.switchUpSmall12.Location = new System.Drawing.Point(1371, 218);
  1879. this.switchUpSmall12.Name = "switchUpSmall12";
  1880. this.switchUpSmall12.Size = new System.Drawing.Size(18, 22);
  1881. this.switchUpSmall12.TabIndex = 110;
  1882. this.switchUpSmall12.TagData = null;
  1883. this.switchUpSmall12.TagId = null;
  1884. //
  1885. // switchUpSmall13
  1886. //
  1887. this.switchUpSmall13.Location = new System.Drawing.Point(1693, 218);
  1888. this.switchUpSmall13.Name = "switchUpSmall13";
  1889. this.switchUpSmall13.Size = new System.Drawing.Size(18, 22);
  1890. this.switchUpSmall13.TabIndex = 111;
  1891. this.switchUpSmall13.TagData = null;
  1892. this.switchUpSmall13.TagId = null;
  1893. //
  1894. // switchUpSmall14
  1895. //
  1896. this.switchUpSmall14.Location = new System.Drawing.Point(1531, 218);
  1897. this.switchUpSmall14.Name = "switchUpSmall14";
  1898. this.switchUpSmall14.Size = new System.Drawing.Size(18, 22);
  1899. this.switchUpSmall14.TabIndex = 112;
  1900. this.switchUpSmall14.TagData = null;
  1901. this.switchUpSmall14.TagId = null;
  1902. //
  1903. // switchUpSmall15
  1904. //
  1905. this.switchUpSmall15.Location = new System.Drawing.Point(135, 605);
  1906. this.switchUpSmall15.Name = "switchUpSmall15";
  1907. this.switchUpSmall15.Size = new System.Drawing.Size(18, 22);
  1908. this.switchUpSmall15.TabIndex = 113;
  1909. this.switchUpSmall15.TagData = null;
  1910. this.switchUpSmall15.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0057";
  1911. //
  1912. // switchUpSmall16
  1913. //
  1914. this.switchUpSmall16.Location = new System.Drawing.Point(1818, 230);
  1915. this.switchUpSmall16.Name = "switchUpSmall16";
  1916. this.switchUpSmall16.Size = new System.Drawing.Size(18, 22);
  1917. this.switchUpSmall16.TabIndex = 114;
  1918. this.switchUpSmall16.TagData = null;
  1919. this.switchUpSmall16.TagId = null;
  1920. //
  1921. // switchUpSmall18
  1922. //
  1923. this.switchUpSmall18.Location = new System.Drawing.Point(216, 605);
  1924. this.switchUpSmall18.Name = "switchUpSmall18";
  1925. this.switchUpSmall18.Size = new System.Drawing.Size(18, 22);
  1926. this.switchUpSmall18.TabIndex = 116;
  1927. this.switchUpSmall18.TagData = null;
  1928. this.switchUpSmall18.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0058";
  1929. //
  1930. // switchUpSmall20
  1931. //
  1932. this.switchUpSmall20.Location = new System.Drawing.Point(1779, 605);
  1933. this.switchUpSmall20.Name = "switchUpSmall20";
  1934. this.switchUpSmall20.Size = new System.Drawing.Size(18, 22);
  1935. this.switchUpSmall20.TabIndex = 118;
  1936. this.switchUpSmall20.TagData = null;
  1937. this.switchUpSmall20.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0052";
  1938. //
  1939. // switchUpSmall21
  1940. //
  1941. this.switchUpSmall21.Location = new System.Drawing.Point(1698, 605);
  1942. this.switchUpSmall21.Name = "switchUpSmall21";
  1943. this.switchUpSmall21.Size = new System.Drawing.Size(18, 22);
  1944. this.switchUpSmall21.TabIndex = 119;
  1945. this.switchUpSmall21.TagData = null;
  1946. this.switchUpSmall21.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0051";
  1947. //
  1948. // handCartSmall1
  1949. //
  1950. this.handCartSmall1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1951. this.handCartSmall1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCartSmall1.BackgroundImage")));
  1952. this.handCartSmall1.Location = new System.Drawing.Point(746, 158);
  1953. this.handCartSmall1.Name = "handCartSmall1";
  1954. this.handCartSmall1.Size = new System.Drawing.Size(18, 18);
  1955. this.handCartSmall1.TabIndex = 120;
  1956. this.handCartSmall1.TagData = null;
  1957. this.handCartSmall1.TagId = null;
  1958. //
  1959. // switchUpSmall22
  1960. //
  1961. this.switchUpSmall22.Location = new System.Drawing.Point(378, 605);
  1962. this.switchUpSmall22.Name = "switchUpSmall22";
  1963. this.switchUpSmall22.Size = new System.Drawing.Size(18, 22);
  1964. this.switchUpSmall22.TabIndex = 121;
  1965. this.switchUpSmall22.TagData = null;
  1966. this.switchUpSmall22.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0064";
  1967. //
  1968. // switchUpSmall23
  1969. //
  1970. this.switchUpSmall23.Location = new System.Drawing.Point(297, 605);
  1971. this.switchUpSmall23.Name = "switchUpSmall23";
  1972. this.switchUpSmall23.Size = new System.Drawing.Size(18, 22);
  1973. this.switchUpSmall23.TabIndex = 122;
  1974. this.switchUpSmall23.TagData = null;
  1975. this.switchUpSmall23.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0063";
  1976. //
  1977. // switchUpSmall24
  1978. //
  1979. this.switchUpSmall24.Location = new System.Drawing.Point(458, 605);
  1980. this.switchUpSmall24.Name = "switchUpSmall24";
  1981. this.switchUpSmall24.Size = new System.Drawing.Size(18, 22);
  1982. this.switchUpSmall24.TabIndex = 123;
  1983. this.switchUpSmall24.TagData = null;
  1984. this.switchUpSmall24.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0069";
  1985. //
  1986. // switchUpSmall25
  1987. //
  1988. this.switchUpSmall25.Location = new System.Drawing.Point(620, 605);
  1989. this.switchUpSmall25.Name = "switchUpSmall25";
  1990. this.switchUpSmall25.Size = new System.Drawing.Size(18, 22);
  1991. this.switchUpSmall25.TabIndex = 124;
  1992. this.switchUpSmall25.TagData = null;
  1993. this.switchUpSmall25.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0075";
  1994. //
  1995. // switchUpSmall26
  1996. //
  1997. this.switchUpSmall26.Location = new System.Drawing.Point(540, 605);
  1998. this.switchUpSmall26.Name = "switchUpSmall26";
  1999. this.switchUpSmall26.Size = new System.Drawing.Size(18, 22);
  2000. this.switchUpSmall26.TabIndex = 125;
  2001. this.switchUpSmall26.TagData = null;
  2002. this.switchUpSmall26.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0070";
  2003. //
  2004. // switchUpSmall27
  2005. //
  2006. this.switchUpSmall27.Location = new System.Drawing.Point(700, 605);
  2007. this.switchUpSmall27.Name = "switchUpSmall27";
  2008. this.switchUpSmall27.Size = new System.Drawing.Size(18, 22);
  2009. this.switchUpSmall27.TabIndex = 126;
  2010. this.switchUpSmall27.TagData = null;
  2011. this.switchUpSmall27.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0076";
  2012. //
  2013. // switchUpSmall28
  2014. //
  2015. this.switchUpSmall28.Location = new System.Drawing.Point(782, 605);
  2016. this.switchUpSmall28.Name = "switchUpSmall28";
  2017. this.switchUpSmall28.Size = new System.Drawing.Size(18, 22);
  2018. this.switchUpSmall28.TabIndex = 127;
  2019. this.switchUpSmall28.TagData = null;
  2020. this.switchUpSmall28.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0077";
  2021. //
  2022. // switchUpSmall29
  2023. //
  2024. this.switchUpSmall29.Location = new System.Drawing.Point(902, 584);
  2025. this.switchUpSmall29.Name = "switchUpSmall29";
  2026. this.switchUpSmall29.Size = new System.Drawing.Size(18, 22);
  2027. this.switchUpSmall29.TabIndex = 128;
  2028. this.switchUpSmall29.TagData = null;
  2029. this.switchUpSmall29.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0084";
  2030. //
  2031. // switchUpSmall30
  2032. //
  2033. this.switchUpSmall30.Location = new System.Drawing.Point(1131, 605);
  2034. this.switchUpSmall30.Name = "switchUpSmall30";
  2035. this.switchUpSmall30.Size = new System.Drawing.Size(18, 22);
  2036. this.switchUpSmall30.TabIndex = 129;
  2037. this.switchUpSmall30.TagData = null;
  2038. this.switchUpSmall30.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0028";
  2039. this.switchUpSmall30.Load += new System.EventHandler(this.switchUpSmall30_Load);
  2040. //
  2041. // switchUpSmall31
  2042. //
  2043. this.switchUpSmall31.Location = new System.Drawing.Point(1050, 605);
  2044. this.switchUpSmall31.Name = "switchUpSmall31";
  2045. this.switchUpSmall31.Size = new System.Drawing.Size(18, 22);
  2046. this.switchUpSmall31.TabIndex = 130;
  2047. this.switchUpSmall31.TagData = null;
  2048. this.switchUpSmall31.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0027";
  2049. //
  2050. // switchUpSmall38
  2051. //
  2052. this.switchUpSmall38.Location = new System.Drawing.Point(1616, 605);
  2053. this.switchUpSmall38.Name = "switchUpSmall38";
  2054. this.switchUpSmall38.Size = new System.Drawing.Size(18, 22);
  2055. this.switchUpSmall38.TabIndex = 137;
  2056. this.switchUpSmall38.TagData = null;
  2057. this.switchUpSmall38.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0046";
  2058. this.switchUpSmall38.Load += new System.EventHandler(this.switchUpSmall38_Load);
  2059. //
  2060. // switchUpSmall39
  2061. //
  2062. this.switchUpSmall39.Location = new System.Drawing.Point(1535, 605);
  2063. this.switchUpSmall39.Name = "switchUpSmall39";
  2064. this.switchUpSmall39.Size = new System.Drawing.Size(18, 22);
  2065. this.switchUpSmall39.TabIndex = 138;
  2066. this.switchUpSmall39.TagData = null;
  2067. this.switchUpSmall39.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0045";
  2068. //
  2069. // switchUpSmall40
  2070. //
  2071. this.switchUpSmall40.Location = new System.Drawing.Point(1454, 605);
  2072. this.switchUpSmall40.Name = "switchUpSmall40";
  2073. this.switchUpSmall40.Size = new System.Drawing.Size(18, 22);
  2074. this.switchUpSmall40.TabIndex = 139;
  2075. this.switchUpSmall40.TagData = null;
  2076. this.switchUpSmall40.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0040";
  2077. //
  2078. // switchUpSmall41
  2079. //
  2080. this.switchUpSmall41.Location = new System.Drawing.Point(1374, 605);
  2081. this.switchUpSmall41.Name = "switchUpSmall41";
  2082. this.switchUpSmall41.Size = new System.Drawing.Size(18, 22);
  2083. this.switchUpSmall41.TabIndex = 140;
  2084. this.switchUpSmall41.TagData = null;
  2085. this.switchUpSmall41.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0039";
  2086. //
  2087. // switchUpSmall42
  2088. //
  2089. this.switchUpSmall42.Location = new System.Drawing.Point(1293, 605);
  2090. this.switchUpSmall42.Name = "switchUpSmall42";
  2091. this.switchUpSmall42.Size = new System.Drawing.Size(18, 22);
  2092. this.switchUpSmall42.TabIndex = 141;
  2093. this.switchUpSmall42.TagData = null;
  2094. this.switchUpSmall42.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0034";
  2095. this.switchUpSmall42.Load += new System.EventHandler(this.switchUpSmall42_Load);
  2096. //
  2097. // switchUpSmall43
  2098. //
  2099. this.switchUpSmall43.Location = new System.Drawing.Point(1212, 605);
  2100. this.switchUpSmall43.Name = "switchUpSmall43";
  2101. this.switchUpSmall43.Size = new System.Drawing.Size(18, 22);
  2102. this.switchUpSmall43.TabIndex = 142;
  2103. this.switchUpSmall43.TagData = null;
  2104. this.switchUpSmall43.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_DI0033";
  2105. this.switchUpSmall43.Load += new System.EventHandler(this.switchUpSmall43_Load);
  2106. //
  2107. // pointLabel2
  2108. //
  2109. this.pointLabel2.Location = new System.Drawing.Point(631, 24);
  2110. this.pointLabel2.Name = "pointLabel2";
  2111. this.pointLabel2.Size = new System.Drawing.Size(51, 18);
  2112. this.pointLabel2.TabIndex = 145;
  2113. this.pointLabel2.TagData = null;
  2114. this.pointLabel2.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0047";
  2115. //
  2116. // pointLabel1
  2117. //
  2118. this.pointLabel1.Location = new System.Drawing.Point(631, 102);
  2119. this.pointLabel1.Name = "pointLabel1";
  2120. this.pointLabel1.Size = new System.Drawing.Size(51, 18);
  2121. this.pointLabel1.TabIndex = 146;
  2122. this.pointLabel1.TagData = null;
  2123. this.pointLabel1.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0052";
  2124. //
  2125. // pointLabel3
  2126. //
  2127. this.pointLabel3.Location = new System.Drawing.Point(631, 76);
  2128. this.pointLabel3.Name = "pointLabel3";
  2129. this.pointLabel3.Size = new System.Drawing.Size(51, 18);
  2130. this.pointLabel3.TabIndex = 147;
  2131. this.pointLabel3.TagData = null;
  2132. this.pointLabel3.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0051";
  2133. //
  2134. // pointLabel4
  2135. //
  2136. this.pointLabel4.Location = new System.Drawing.Point(631, 50);
  2137. this.pointLabel4.Name = "pointLabel4";
  2138. this.pointLabel4.Size = new System.Drawing.Size(51, 18);
  2139. this.pointLabel4.TabIndex = 148;
  2140. this.pointLabel4.TagData = null;
  2141. this.pointLabel4.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0050";
  2142. //
  2143. // pointLabel5
  2144. //
  2145. this.pointLabel5.Location = new System.Drawing.Point(1761, 52);
  2146. this.pointLabel5.Name = "pointLabel5";
  2147. this.pointLabel5.Size = new System.Drawing.Size(51, 18);
  2148. this.pointLabel5.TabIndex = 152;
  2149. this.pointLabel5.TagData = null;
  2150. this.pointLabel5.TagId = null;
  2151. //
  2152. // pointLabel6
  2153. //
  2154. this.pointLabel6.Location = new System.Drawing.Point(1761, 78);
  2155. this.pointLabel6.Name = "pointLabel6";
  2156. this.pointLabel6.Size = new System.Drawing.Size(51, 18);
  2157. this.pointLabel6.TabIndex = 151;
  2158. this.pointLabel6.TagData = null;
  2159. this.pointLabel6.TagId = null;
  2160. //
  2161. // pointLabel7
  2162. //
  2163. this.pointLabel7.Location = new System.Drawing.Point(1761, 104);
  2164. this.pointLabel7.Name = "pointLabel7";
  2165. this.pointLabel7.Size = new System.Drawing.Size(51, 18);
  2166. this.pointLabel7.TabIndex = 150;
  2167. this.pointLabel7.TagData = null;
  2168. this.pointLabel7.TagId = null;
  2169. //
  2170. // pointLabel8
  2171. //
  2172. this.pointLabel8.Location = new System.Drawing.Point(1761, 26);
  2173. this.pointLabel8.Name = "pointLabel8";
  2174. this.pointLabel8.Size = new System.Drawing.Size(51, 18);
  2175. this.pointLabel8.TabIndex = 149;
  2176. this.pointLabel8.TagData = null;
  2177. this.pointLabel8.TagId = null;
  2178. //
  2179. // pointLabel9
  2180. //
  2181. this.pointLabel9.Location = new System.Drawing.Point(221, 476);
  2182. this.pointLabel9.Name = "pointLabel9";
  2183. this.pointLabel9.Size = new System.Drawing.Size(51, 18);
  2184. this.pointLabel9.TabIndex = 156;
  2185. this.pointLabel9.TagData = null;
  2186. this.pointLabel9.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0034";
  2187. //
  2188. // pointLabel10
  2189. //
  2190. this.pointLabel10.Location = new System.Drawing.Point(221, 502);
  2191. this.pointLabel10.Name = "pointLabel10";
  2192. this.pointLabel10.Size = new System.Drawing.Size(51, 18);
  2193. this.pointLabel10.TabIndex = 155;
  2194. this.pointLabel10.TagData = null;
  2195. this.pointLabel10.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0035";
  2196. //
  2197. // pointLabel11
  2198. //
  2199. this.pointLabel11.Location = new System.Drawing.Point(221, 528);
  2200. this.pointLabel11.Name = "pointLabel11";
  2201. this.pointLabel11.Size = new System.Drawing.Size(51, 18);
  2202. this.pointLabel11.TabIndex = 154;
  2203. this.pointLabel11.TagData = null;
  2204. this.pointLabel11.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0036";
  2205. //
  2206. // pointLabel12
  2207. //
  2208. this.pointLabel12.Location = new System.Drawing.Point(221, 450);
  2209. this.pointLabel12.Name = "pointLabel12";
  2210. this.pointLabel12.Size = new System.Drawing.Size(51, 18);
  2211. this.pointLabel12.TabIndex = 153;
  2212. this.pointLabel12.TagData = null;
  2213. this.pointLabel12.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0031";
  2214. //
  2215. // pointLabel13
  2216. //
  2217. this.pointLabel13.Location = new System.Drawing.Point(378, 450);
  2218. this.pointLabel13.Name = "pointLabel13";
  2219. this.pointLabel13.Size = new System.Drawing.Size(51, 18);
  2220. this.pointLabel13.TabIndex = 158;
  2221. this.pointLabel13.TagData = null;
  2222. this.pointLabel13.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0025";
  2223. //
  2224. // pointLabel14
  2225. //
  2226. this.pointLabel14.Location = new System.Drawing.Point(378, 476);
  2227. this.pointLabel14.Name = "pointLabel14";
  2228. this.pointLabel14.Size = new System.Drawing.Size(51, 18);
  2229. this.pointLabel14.TabIndex = 157;
  2230. this.pointLabel14.TagData = null;
  2231. this.pointLabel14.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0028";
  2232. //
  2233. // pointLabel15
  2234. //
  2235. this.pointLabel15.Location = new System.Drawing.Point(590, 424);
  2236. this.pointLabel15.Name = "pointLabel15";
  2237. this.pointLabel15.Size = new System.Drawing.Size(51, 18);
  2238. this.pointLabel15.TabIndex = 160;
  2239. this.pointLabel15.TagData = null;
  2240. this.pointLabel15.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0019";
  2241. //
  2242. // pointLabel16
  2243. //
  2244. this.pointLabel16.Location = new System.Drawing.Point(590, 450);
  2245. this.pointLabel16.Name = "pointLabel16";
  2246. this.pointLabel16.Size = new System.Drawing.Size(51, 18);
  2247. this.pointLabel16.TabIndex = 159;
  2248. this.pointLabel16.TagData = null;
  2249. this.pointLabel16.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0022";
  2250. //
  2251. // pointLabel17
  2252. //
  2253. this.pointLabel17.Location = new System.Drawing.Point(722, 424);
  2254. this.pointLabel17.Name = "pointLabel17";
  2255. this.pointLabel17.Size = new System.Drawing.Size(51, 18);
  2256. this.pointLabel17.TabIndex = 162;
  2257. this.pointLabel17.TagData = null;
  2258. this.pointLabel17.TagId = null;
  2259. //
  2260. // pointLabel18
  2261. //
  2262. this.pointLabel18.Location = new System.Drawing.Point(722, 450);
  2263. this.pointLabel18.Name = "pointLabel18";
  2264. this.pointLabel18.Size = new System.Drawing.Size(51, 18);
  2265. this.pointLabel18.TabIndex = 161;
  2266. this.pointLabel18.TagData = null;
  2267. this.pointLabel18.TagId = null;
  2268. //
  2269. // pointLabel23
  2270. //
  2271. this.pointLabel23.Location = new System.Drawing.Point(100, 811);
  2272. this.pointLabel23.Name = "pointLabel23";
  2273. this.pointLabel23.Size = new System.Drawing.Size(38, 18);
  2274. this.pointLabel23.TabIndex = 170;
  2275. this.pointLabel23.TagData = null;
  2276. this.pointLabel23.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1521";
  2277. //
  2278. // pointLabel24
  2279. //
  2280. this.pointLabel24.Location = new System.Drawing.Point(100, 837);
  2281. this.pointLabel24.Name = "pointLabel24";
  2282. this.pointLabel24.Size = new System.Drawing.Size(38, 18);
  2283. this.pointLabel24.TabIndex = 169;
  2284. this.pointLabel24.TagData = null;
  2285. this.pointLabel24.TagId = null;
  2286. //
  2287. // pointLabel25
  2288. //
  2289. this.pointLabel25.Location = new System.Drawing.Point(100, 863);
  2290. this.pointLabel25.Name = "pointLabel25";
  2291. this.pointLabel25.Size = new System.Drawing.Size(38, 18);
  2292. this.pointLabel25.TabIndex = 168;
  2293. this.pointLabel25.TagData = null;
  2294. this.pointLabel25.TagId = null;
  2295. //
  2296. // pointLabel26
  2297. //
  2298. this.pointLabel26.Location = new System.Drawing.Point(100, 785);
  2299. this.pointLabel26.Name = "pointLabel26";
  2300. this.pointLabel26.Size = new System.Drawing.Size(38, 18);
  2301. this.pointLabel26.TabIndex = 167;
  2302. this.pointLabel26.TagData = null;
  2303. this.pointLabel26.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1509";
  2304. //
  2305. // pointLabel27
  2306. //
  2307. this.pointLabel27.Location = new System.Drawing.Point(141, 811);
  2308. this.pointLabel27.Name = "pointLabel27";
  2309. this.pointLabel27.Size = new System.Drawing.Size(38, 18);
  2310. this.pointLabel27.TabIndex = 174;
  2311. this.pointLabel27.TagData = null;
  2312. this.pointLabel27.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1562";
  2313. //
  2314. // pointLabel28
  2315. //
  2316. this.pointLabel28.Location = new System.Drawing.Point(141, 837);
  2317. this.pointLabel28.Name = "pointLabel28";
  2318. this.pointLabel28.Size = new System.Drawing.Size(38, 18);
  2319. this.pointLabel28.TabIndex = 173;
  2320. this.pointLabel28.TagData = null;
  2321. this.pointLabel28.TagId = null;
  2322. //
  2323. // pointLabel29
  2324. //
  2325. this.pointLabel29.Location = new System.Drawing.Point(141, 863);
  2326. this.pointLabel29.Name = "pointLabel29";
  2327. this.pointLabel29.Size = new System.Drawing.Size(38, 18);
  2328. this.pointLabel29.TabIndex = 172;
  2329. this.pointLabel29.TagData = null;
  2330. this.pointLabel29.TagId = null;
  2331. //
  2332. // pointLabel30
  2333. //
  2334. this.pointLabel30.Location = new System.Drawing.Point(141, 785);
  2335. this.pointLabel30.Name = "pointLabel30";
  2336. this.pointLabel30.Size = new System.Drawing.Size(38, 18);
  2337. this.pointLabel30.TabIndex = 171;
  2338. this.pointLabel30.TagData = null;
  2339. this.pointLabel30.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1550";
  2340. //
  2341. // pointLabel31
  2342. //
  2343. this.pointLabel31.Location = new System.Drawing.Point(223, 811);
  2344. this.pointLabel31.Name = "pointLabel31";
  2345. this.pointLabel31.Size = new System.Drawing.Size(38, 18);
  2346. this.pointLabel31.TabIndex = 182;
  2347. this.pointLabel31.TagData = null;
  2348. this.pointLabel31.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1644";
  2349. //
  2350. // pointLabel32
  2351. //
  2352. this.pointLabel32.Location = new System.Drawing.Point(223, 837);
  2353. this.pointLabel32.Name = "pointLabel32";
  2354. this.pointLabel32.Size = new System.Drawing.Size(38, 18);
  2355. this.pointLabel32.TabIndex = 181;
  2356. this.pointLabel32.TagData = null;
  2357. this.pointLabel32.TagId = null;
  2358. //
  2359. // pointLabel33
  2360. //
  2361. this.pointLabel33.Location = new System.Drawing.Point(223, 863);
  2362. this.pointLabel33.Name = "pointLabel33";
  2363. this.pointLabel33.Size = new System.Drawing.Size(38, 18);
  2364. this.pointLabel33.TabIndex = 180;
  2365. this.pointLabel33.TagData = null;
  2366. this.pointLabel33.TagId = null;
  2367. //
  2368. // pointLabel34
  2369. //
  2370. this.pointLabel34.Location = new System.Drawing.Point(223, 785);
  2371. this.pointLabel34.Name = "pointLabel34";
  2372. this.pointLabel34.Size = new System.Drawing.Size(38, 18);
  2373. this.pointLabel34.TabIndex = 179;
  2374. this.pointLabel34.TagData = null;
  2375. this.pointLabel34.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1632";
  2376. //
  2377. // pointLabel35
  2378. //
  2379. this.pointLabel35.Location = new System.Drawing.Point(182, 811);
  2380. this.pointLabel35.Name = "pointLabel35";
  2381. this.pointLabel35.Size = new System.Drawing.Size(38, 18);
  2382. this.pointLabel35.TabIndex = 178;
  2383. this.pointLabel35.TagData = null;
  2384. this.pointLabel35.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1603";
  2385. //
  2386. // pointLabel36
  2387. //
  2388. this.pointLabel36.Location = new System.Drawing.Point(182, 837);
  2389. this.pointLabel36.Name = "pointLabel36";
  2390. this.pointLabel36.Size = new System.Drawing.Size(38, 18);
  2391. this.pointLabel36.TabIndex = 177;
  2392. this.pointLabel36.TagData = null;
  2393. this.pointLabel36.TagId = null;
  2394. //
  2395. // pointLabel37
  2396. //
  2397. this.pointLabel37.Location = new System.Drawing.Point(182, 863);
  2398. this.pointLabel37.Name = "pointLabel37";
  2399. this.pointLabel37.Size = new System.Drawing.Size(38, 18);
  2400. this.pointLabel37.TabIndex = 176;
  2401. this.pointLabel37.TagData = null;
  2402. this.pointLabel37.TagId = null;
  2403. //
  2404. // pointLabel38
  2405. //
  2406. this.pointLabel38.Location = new System.Drawing.Point(182, 785);
  2407. this.pointLabel38.Name = "pointLabel38";
  2408. this.pointLabel38.Size = new System.Drawing.Size(38, 18);
  2409. this.pointLabel38.TabIndex = 175;
  2410. this.pointLabel38.TagData = null;
  2411. this.pointLabel38.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1591";
  2412. //
  2413. // pointLabel39
  2414. //
  2415. this.pointLabel39.Location = new System.Drawing.Point(387, 811);
  2416. this.pointLabel39.Name = "pointLabel39";
  2417. this.pointLabel39.Size = new System.Drawing.Size(38, 18);
  2418. this.pointLabel39.TabIndex = 198;
  2419. this.pointLabel39.TagData = null;
  2420. this.pointLabel39.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1808";
  2421. //
  2422. // pointLabel40
  2423. //
  2424. this.pointLabel40.Location = new System.Drawing.Point(387, 837);
  2425. this.pointLabel40.Name = "pointLabel40";
  2426. this.pointLabel40.Size = new System.Drawing.Size(38, 18);
  2427. this.pointLabel40.TabIndex = 197;
  2428. this.pointLabel40.TagData = null;
  2429. this.pointLabel40.TagId = null;
  2430. //
  2431. // pointLabel41
  2432. //
  2433. this.pointLabel41.Location = new System.Drawing.Point(387, 863);
  2434. this.pointLabel41.Name = "pointLabel41";
  2435. this.pointLabel41.Size = new System.Drawing.Size(38, 18);
  2436. this.pointLabel41.TabIndex = 196;
  2437. this.pointLabel41.TagData = null;
  2438. this.pointLabel41.TagId = null;
  2439. //
  2440. // pointLabel42
  2441. //
  2442. this.pointLabel42.Location = new System.Drawing.Point(387, 785);
  2443. this.pointLabel42.Name = "pointLabel42";
  2444. this.pointLabel42.Size = new System.Drawing.Size(38, 18);
  2445. this.pointLabel42.TabIndex = 195;
  2446. this.pointLabel42.TagData = null;
  2447. this.pointLabel42.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1796";
  2448. //
  2449. // pointLabel43
  2450. //
  2451. this.pointLabel43.Location = new System.Drawing.Point(346, 811);
  2452. this.pointLabel43.Name = "pointLabel43";
  2453. this.pointLabel43.Size = new System.Drawing.Size(38, 18);
  2454. this.pointLabel43.TabIndex = 194;
  2455. this.pointLabel43.TagData = null;
  2456. this.pointLabel43.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1767";
  2457. //
  2458. // pointLabel44
  2459. //
  2460. this.pointLabel44.Location = new System.Drawing.Point(346, 837);
  2461. this.pointLabel44.Name = "pointLabel44";
  2462. this.pointLabel44.Size = new System.Drawing.Size(38, 18);
  2463. this.pointLabel44.TabIndex = 193;
  2464. this.pointLabel44.TagData = null;
  2465. this.pointLabel44.TagId = null;
  2466. //
  2467. // pointLabel45
  2468. //
  2469. this.pointLabel45.Location = new System.Drawing.Point(346, 863);
  2470. this.pointLabel45.Name = "pointLabel45";
  2471. this.pointLabel45.Size = new System.Drawing.Size(38, 18);
  2472. this.pointLabel45.TabIndex = 192;
  2473. this.pointLabel45.TagData = null;
  2474. this.pointLabel45.TagId = null;
  2475. //
  2476. // pointLabel46
  2477. //
  2478. this.pointLabel46.Location = new System.Drawing.Point(346, 785);
  2479. this.pointLabel46.Name = "pointLabel46";
  2480. this.pointLabel46.Size = new System.Drawing.Size(38, 18);
  2481. this.pointLabel46.TabIndex = 191;
  2482. this.pointLabel46.TagData = null;
  2483. this.pointLabel46.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1755";
  2484. //
  2485. // pointLabel47
  2486. //
  2487. this.pointLabel47.Location = new System.Drawing.Point(305, 811);
  2488. this.pointLabel47.Name = "pointLabel47";
  2489. this.pointLabel47.Size = new System.Drawing.Size(38, 18);
  2490. this.pointLabel47.TabIndex = 190;
  2491. this.pointLabel47.TagData = null;
  2492. this.pointLabel47.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1726";
  2493. //
  2494. // pointLabel48
  2495. //
  2496. this.pointLabel48.Location = new System.Drawing.Point(305, 837);
  2497. this.pointLabel48.Name = "pointLabel48";
  2498. this.pointLabel48.Size = new System.Drawing.Size(38, 18);
  2499. this.pointLabel48.TabIndex = 189;
  2500. this.pointLabel48.TagData = null;
  2501. this.pointLabel48.TagId = null;
  2502. //
  2503. // pointLabel49
  2504. //
  2505. this.pointLabel49.Location = new System.Drawing.Point(305, 863);
  2506. this.pointLabel49.Name = "pointLabel49";
  2507. this.pointLabel49.Size = new System.Drawing.Size(38, 18);
  2508. this.pointLabel49.TabIndex = 188;
  2509. this.pointLabel49.TagData = null;
  2510. this.pointLabel49.TagId = null;
  2511. //
  2512. // pointLabel50
  2513. //
  2514. this.pointLabel50.Location = new System.Drawing.Point(305, 785);
  2515. this.pointLabel50.Name = "pointLabel50";
  2516. this.pointLabel50.Size = new System.Drawing.Size(38, 18);
  2517. this.pointLabel50.TabIndex = 187;
  2518. this.pointLabel50.TagData = null;
  2519. this.pointLabel50.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1714";
  2520. //
  2521. // pointLabel51
  2522. //
  2523. this.pointLabel51.Location = new System.Drawing.Point(264, 811);
  2524. this.pointLabel51.Name = "pointLabel51";
  2525. this.pointLabel51.Size = new System.Drawing.Size(38, 18);
  2526. this.pointLabel51.TabIndex = 186;
  2527. this.pointLabel51.TagData = null;
  2528. this.pointLabel51.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1685";
  2529. //
  2530. // pointLabel52
  2531. //
  2532. this.pointLabel52.Location = new System.Drawing.Point(264, 837);
  2533. this.pointLabel52.Name = "pointLabel52";
  2534. this.pointLabel52.Size = new System.Drawing.Size(38, 18);
  2535. this.pointLabel52.TabIndex = 185;
  2536. this.pointLabel52.TagData = null;
  2537. this.pointLabel52.TagId = null;
  2538. //
  2539. // pointLabel53
  2540. //
  2541. this.pointLabel53.Location = new System.Drawing.Point(264, 863);
  2542. this.pointLabel53.Name = "pointLabel53";
  2543. this.pointLabel53.Size = new System.Drawing.Size(38, 18);
  2544. this.pointLabel53.TabIndex = 184;
  2545. this.pointLabel53.TagData = null;
  2546. this.pointLabel53.TagId = null;
  2547. //
  2548. // pointLabel54
  2549. //
  2550. this.pointLabel54.Location = new System.Drawing.Point(264, 785);
  2551. this.pointLabel54.Name = "pointLabel54";
  2552. this.pointLabel54.Size = new System.Drawing.Size(38, 18);
  2553. this.pointLabel54.TabIndex = 183;
  2554. this.pointLabel54.TagData = null;
  2555. this.pointLabel54.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1673";
  2556. //
  2557. // pointLabel55
  2558. //
  2559. this.pointLabel55.Location = new System.Drawing.Point(715, 811);
  2560. this.pointLabel55.Name = "pointLabel55";
  2561. this.pointLabel55.Size = new System.Drawing.Size(38, 18);
  2562. this.pointLabel55.TabIndex = 230;
  2563. this.pointLabel55.TagData = null;
  2564. this.pointLabel55.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2136";
  2565. //
  2566. // pointLabel56
  2567. //
  2568. this.pointLabel56.Location = new System.Drawing.Point(715, 837);
  2569. this.pointLabel56.Name = "pointLabel56";
  2570. this.pointLabel56.Size = new System.Drawing.Size(38, 18);
  2571. this.pointLabel56.TabIndex = 229;
  2572. this.pointLabel56.TagData = null;
  2573. this.pointLabel56.TagId = null;
  2574. //
  2575. // pointLabel57
  2576. //
  2577. this.pointLabel57.Location = new System.Drawing.Point(715, 863);
  2578. this.pointLabel57.Name = "pointLabel57";
  2579. this.pointLabel57.Size = new System.Drawing.Size(38, 18);
  2580. this.pointLabel57.TabIndex = 228;
  2581. this.pointLabel57.TagData = null;
  2582. this.pointLabel57.TagId = null;
  2583. //
  2584. // pointLabel58
  2585. //
  2586. this.pointLabel58.Location = new System.Drawing.Point(715, 785);
  2587. this.pointLabel58.Name = "pointLabel58";
  2588. this.pointLabel58.Size = new System.Drawing.Size(38, 18);
  2589. this.pointLabel58.TabIndex = 227;
  2590. this.pointLabel58.TagData = null;
  2591. this.pointLabel58.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2124";
  2592. //
  2593. // pointLabel59
  2594. //
  2595. this.pointLabel59.Location = new System.Drawing.Point(674, 811);
  2596. this.pointLabel59.Name = "pointLabel59";
  2597. this.pointLabel59.Size = new System.Drawing.Size(38, 18);
  2598. this.pointLabel59.TabIndex = 226;
  2599. this.pointLabel59.TagData = null;
  2600. this.pointLabel59.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2095";
  2601. //
  2602. // pointLabel60
  2603. //
  2604. this.pointLabel60.Location = new System.Drawing.Point(674, 837);
  2605. this.pointLabel60.Name = "pointLabel60";
  2606. this.pointLabel60.Size = new System.Drawing.Size(38, 18);
  2607. this.pointLabel60.TabIndex = 225;
  2608. this.pointLabel60.TagData = null;
  2609. this.pointLabel60.TagId = null;
  2610. //
  2611. // pointLabel61
  2612. //
  2613. this.pointLabel61.Location = new System.Drawing.Point(674, 863);
  2614. this.pointLabel61.Name = "pointLabel61";
  2615. this.pointLabel61.Size = new System.Drawing.Size(38, 18);
  2616. this.pointLabel61.TabIndex = 224;
  2617. this.pointLabel61.TagData = null;
  2618. this.pointLabel61.TagId = null;
  2619. //
  2620. // pointLabel62
  2621. //
  2622. this.pointLabel62.Location = new System.Drawing.Point(674, 785);
  2623. this.pointLabel62.Name = "pointLabel62";
  2624. this.pointLabel62.Size = new System.Drawing.Size(38, 18);
  2625. this.pointLabel62.TabIndex = 223;
  2626. this.pointLabel62.TagData = null;
  2627. this.pointLabel62.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2083";
  2628. //
  2629. // pointLabel63
  2630. //
  2631. this.pointLabel63.Location = new System.Drawing.Point(633, 811);
  2632. this.pointLabel63.Name = "pointLabel63";
  2633. this.pointLabel63.Size = new System.Drawing.Size(38, 18);
  2634. this.pointLabel63.TabIndex = 222;
  2635. this.pointLabel63.TagData = null;
  2636. this.pointLabel63.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2054";
  2637. //
  2638. // pointLabel64
  2639. //
  2640. this.pointLabel64.Location = new System.Drawing.Point(633, 837);
  2641. this.pointLabel64.Name = "pointLabel64";
  2642. this.pointLabel64.Size = new System.Drawing.Size(38, 18);
  2643. this.pointLabel64.TabIndex = 221;
  2644. this.pointLabel64.TagData = null;
  2645. this.pointLabel64.TagId = null;
  2646. //
  2647. // pointLabel65
  2648. //
  2649. this.pointLabel65.Location = new System.Drawing.Point(633, 863);
  2650. this.pointLabel65.Name = "pointLabel65";
  2651. this.pointLabel65.Size = new System.Drawing.Size(38, 18);
  2652. this.pointLabel65.TabIndex = 220;
  2653. this.pointLabel65.TagData = null;
  2654. this.pointLabel65.TagId = null;
  2655. //
  2656. // pointLabel66
  2657. //
  2658. this.pointLabel66.Location = new System.Drawing.Point(633, 785);
  2659. this.pointLabel66.Name = "pointLabel66";
  2660. this.pointLabel66.Size = new System.Drawing.Size(38, 18);
  2661. this.pointLabel66.TabIndex = 219;
  2662. this.pointLabel66.TagData = null;
  2663. this.pointLabel66.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2042";
  2664. //
  2665. // pointLabel67
  2666. //
  2667. this.pointLabel67.Location = new System.Drawing.Point(592, 811);
  2668. this.pointLabel67.Name = "pointLabel67";
  2669. this.pointLabel67.Size = new System.Drawing.Size(38, 18);
  2670. this.pointLabel67.TabIndex = 218;
  2671. this.pointLabel67.TagData = null;
  2672. this.pointLabel67.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2013";
  2673. //
  2674. // pointLabel68
  2675. //
  2676. this.pointLabel68.Location = new System.Drawing.Point(592, 837);
  2677. this.pointLabel68.Name = "pointLabel68";
  2678. this.pointLabel68.Size = new System.Drawing.Size(38, 18);
  2679. this.pointLabel68.TabIndex = 217;
  2680. this.pointLabel68.TagData = null;
  2681. this.pointLabel68.TagId = null;
  2682. //
  2683. // pointLabel69
  2684. //
  2685. this.pointLabel69.Location = new System.Drawing.Point(592, 863);
  2686. this.pointLabel69.Name = "pointLabel69";
  2687. this.pointLabel69.Size = new System.Drawing.Size(38, 18);
  2688. this.pointLabel69.TabIndex = 216;
  2689. this.pointLabel69.TagData = null;
  2690. this.pointLabel69.TagId = null;
  2691. //
  2692. // pointLabel70
  2693. //
  2694. this.pointLabel70.Location = new System.Drawing.Point(592, 785);
  2695. this.pointLabel70.Name = "pointLabel70";
  2696. this.pointLabel70.Size = new System.Drawing.Size(38, 18);
  2697. this.pointLabel70.TabIndex = 215;
  2698. this.pointLabel70.TagData = null;
  2699. this.pointLabel70.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2001";
  2700. //
  2701. // pointLabel71
  2702. //
  2703. this.pointLabel71.Location = new System.Drawing.Point(551, 811);
  2704. this.pointLabel71.Name = "pointLabel71";
  2705. this.pointLabel71.Size = new System.Drawing.Size(38, 18);
  2706. this.pointLabel71.TabIndex = 214;
  2707. this.pointLabel71.TagData = null;
  2708. this.pointLabel71.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1972";
  2709. //
  2710. // pointLabel72
  2711. //
  2712. this.pointLabel72.Location = new System.Drawing.Point(551, 837);
  2713. this.pointLabel72.Name = "pointLabel72";
  2714. this.pointLabel72.Size = new System.Drawing.Size(38, 18);
  2715. this.pointLabel72.TabIndex = 213;
  2716. this.pointLabel72.TagData = null;
  2717. this.pointLabel72.TagId = null;
  2718. //
  2719. // pointLabel73
  2720. //
  2721. this.pointLabel73.Location = new System.Drawing.Point(551, 863);
  2722. this.pointLabel73.Name = "pointLabel73";
  2723. this.pointLabel73.Size = new System.Drawing.Size(38, 18);
  2724. this.pointLabel73.TabIndex = 212;
  2725. this.pointLabel73.TagData = null;
  2726. this.pointLabel73.TagId = null;
  2727. //
  2728. // pointLabel74
  2729. //
  2730. this.pointLabel74.Location = new System.Drawing.Point(551, 785);
  2731. this.pointLabel74.Name = "pointLabel74";
  2732. this.pointLabel74.Size = new System.Drawing.Size(38, 18);
  2733. this.pointLabel74.TabIndex = 211;
  2734. this.pointLabel74.TagData = null;
  2735. this.pointLabel74.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1960";
  2736. //
  2737. // pointLabel75
  2738. //
  2739. this.pointLabel75.Location = new System.Drawing.Point(510, 811);
  2740. this.pointLabel75.Name = "pointLabel75";
  2741. this.pointLabel75.Size = new System.Drawing.Size(38, 18);
  2742. this.pointLabel75.TabIndex = 210;
  2743. this.pointLabel75.TagData = null;
  2744. this.pointLabel75.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1931";
  2745. //
  2746. // pointLabel76
  2747. //
  2748. this.pointLabel76.Location = new System.Drawing.Point(510, 837);
  2749. this.pointLabel76.Name = "pointLabel76";
  2750. this.pointLabel76.Size = new System.Drawing.Size(38, 18);
  2751. this.pointLabel76.TabIndex = 209;
  2752. this.pointLabel76.TagData = null;
  2753. this.pointLabel76.TagId = null;
  2754. //
  2755. // pointLabel77
  2756. //
  2757. this.pointLabel77.Location = new System.Drawing.Point(510, 863);
  2758. this.pointLabel77.Name = "pointLabel77";
  2759. this.pointLabel77.Size = new System.Drawing.Size(38, 18);
  2760. this.pointLabel77.TabIndex = 208;
  2761. this.pointLabel77.TagData = null;
  2762. this.pointLabel77.TagId = null;
  2763. //
  2764. // pointLabel78
  2765. //
  2766. this.pointLabel78.Location = new System.Drawing.Point(510, 785);
  2767. this.pointLabel78.Name = "pointLabel78";
  2768. this.pointLabel78.Size = new System.Drawing.Size(38, 18);
  2769. this.pointLabel78.TabIndex = 207;
  2770. this.pointLabel78.TagData = null;
  2771. this.pointLabel78.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1919";
  2772. //
  2773. // pointLabel79
  2774. //
  2775. this.pointLabel79.Location = new System.Drawing.Point(469, 811);
  2776. this.pointLabel79.Name = "pointLabel79";
  2777. this.pointLabel79.Size = new System.Drawing.Size(38, 18);
  2778. this.pointLabel79.TabIndex = 206;
  2779. this.pointLabel79.TagData = null;
  2780. this.pointLabel79.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1890";
  2781. //
  2782. // pointLabel80
  2783. //
  2784. this.pointLabel80.Location = new System.Drawing.Point(469, 837);
  2785. this.pointLabel80.Name = "pointLabel80";
  2786. this.pointLabel80.Size = new System.Drawing.Size(38, 18);
  2787. this.pointLabel80.TabIndex = 205;
  2788. this.pointLabel80.TagData = null;
  2789. this.pointLabel80.TagId = null;
  2790. //
  2791. // pointLabel81
  2792. //
  2793. this.pointLabel81.Location = new System.Drawing.Point(469, 863);
  2794. this.pointLabel81.Name = "pointLabel81";
  2795. this.pointLabel81.Size = new System.Drawing.Size(38, 18);
  2796. this.pointLabel81.TabIndex = 204;
  2797. this.pointLabel81.TagData = null;
  2798. this.pointLabel81.TagId = null;
  2799. //
  2800. // pointLabel82
  2801. //
  2802. this.pointLabel82.Location = new System.Drawing.Point(469, 785);
  2803. this.pointLabel82.Name = "pointLabel82";
  2804. this.pointLabel82.Size = new System.Drawing.Size(38, 18);
  2805. this.pointLabel82.TabIndex = 203;
  2806. this.pointLabel82.TagData = null;
  2807. this.pointLabel82.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1878";
  2808. //
  2809. // pointLabel83
  2810. //
  2811. this.pointLabel83.Location = new System.Drawing.Point(428, 811);
  2812. this.pointLabel83.Name = "pointLabel83";
  2813. this.pointLabel83.Size = new System.Drawing.Size(38, 18);
  2814. this.pointLabel83.TabIndex = 202;
  2815. this.pointLabel83.TagData = null;
  2816. this.pointLabel83.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1849";
  2817. //
  2818. // pointLabel84
  2819. //
  2820. this.pointLabel84.Location = new System.Drawing.Point(428, 837);
  2821. this.pointLabel84.Name = "pointLabel84";
  2822. this.pointLabel84.Size = new System.Drawing.Size(38, 18);
  2823. this.pointLabel84.TabIndex = 201;
  2824. this.pointLabel84.TagData = null;
  2825. this.pointLabel84.TagId = null;
  2826. //
  2827. // pointLabel85
  2828. //
  2829. this.pointLabel85.Location = new System.Drawing.Point(428, 863);
  2830. this.pointLabel85.Name = "pointLabel85";
  2831. this.pointLabel85.Size = new System.Drawing.Size(38, 18);
  2832. this.pointLabel85.TabIndex = 200;
  2833. this.pointLabel85.TagData = null;
  2834. this.pointLabel85.TagId = null;
  2835. //
  2836. // pointLabel86
  2837. //
  2838. this.pointLabel86.Location = new System.Drawing.Point(428, 785);
  2839. this.pointLabel86.Name = "pointLabel86";
  2840. this.pointLabel86.Size = new System.Drawing.Size(38, 18);
  2841. this.pointLabel86.TabIndex = 199;
  2842. this.pointLabel86.TagData = null;
  2843. this.pointLabel86.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1837";
  2844. //
  2845. // pointLabel87
  2846. //
  2847. this.pointLabel87.Location = new System.Drawing.Point(961, 811);
  2848. this.pointLabel87.Name = "pointLabel87";
  2849. this.pointLabel87.Size = new System.Drawing.Size(38, 18);
  2850. this.pointLabel87.TabIndex = 254;
  2851. this.pointLabel87.TagData = null;
  2852. this.pointLabel87.TagId = null;
  2853. //
  2854. // pointLabel88
  2855. //
  2856. this.pointLabel88.Location = new System.Drawing.Point(961, 837);
  2857. this.pointLabel88.Name = "pointLabel88";
  2858. this.pointLabel88.Size = new System.Drawing.Size(38, 18);
  2859. this.pointLabel88.TabIndex = 253;
  2860. this.pointLabel88.TagData = null;
  2861. this.pointLabel88.TagId = null;
  2862. //
  2863. // pointLabel89
  2864. //
  2865. this.pointLabel89.Location = new System.Drawing.Point(961, 863);
  2866. this.pointLabel89.Name = "pointLabel89";
  2867. this.pointLabel89.Size = new System.Drawing.Size(38, 18);
  2868. this.pointLabel89.TabIndex = 252;
  2869. this.pointLabel89.TagData = null;
  2870. this.pointLabel89.TagId = null;
  2871. //
  2872. // pointLabel90
  2873. //
  2874. this.pointLabel90.Location = new System.Drawing.Point(961, 785);
  2875. this.pointLabel90.Name = "pointLabel90";
  2876. this.pointLabel90.Size = new System.Drawing.Size(38, 18);
  2877. this.pointLabel90.TabIndex = 251;
  2878. this.pointLabel90.TagData = null;
  2879. this.pointLabel90.TagId = null;
  2880. //
  2881. // pointLabel91
  2882. //
  2883. this.pointLabel91.Location = new System.Drawing.Point(920, 811);
  2884. this.pointLabel91.Name = "pointLabel91";
  2885. this.pointLabel91.Size = new System.Drawing.Size(38, 18);
  2886. this.pointLabel91.TabIndex = 250;
  2887. this.pointLabel91.TagData = null;
  2888. this.pointLabel91.TagId = null;
  2889. //
  2890. // pointLabel92
  2891. //
  2892. this.pointLabel92.Location = new System.Drawing.Point(920, 837);
  2893. this.pointLabel92.Name = "pointLabel92";
  2894. this.pointLabel92.Size = new System.Drawing.Size(38, 18);
  2895. this.pointLabel92.TabIndex = 249;
  2896. this.pointLabel92.TagData = null;
  2897. this.pointLabel92.TagId = null;
  2898. //
  2899. // pointLabel93
  2900. //
  2901. this.pointLabel93.Location = new System.Drawing.Point(920, 863);
  2902. this.pointLabel93.Name = "pointLabel93";
  2903. this.pointLabel93.Size = new System.Drawing.Size(38, 18);
  2904. this.pointLabel93.TabIndex = 248;
  2905. this.pointLabel93.TagData = null;
  2906. this.pointLabel93.TagId = null;
  2907. //
  2908. // pointLabel94
  2909. //
  2910. this.pointLabel94.Location = new System.Drawing.Point(920, 785);
  2911. this.pointLabel94.Name = "pointLabel94";
  2912. this.pointLabel94.Size = new System.Drawing.Size(38, 18);
  2913. this.pointLabel94.TabIndex = 247;
  2914. this.pointLabel94.TagData = null;
  2915. this.pointLabel94.TagId = null;
  2916. //
  2917. // pointLabel95
  2918. //
  2919. this.pointLabel95.Location = new System.Drawing.Point(879, 811);
  2920. this.pointLabel95.Name = "pointLabel95";
  2921. this.pointLabel95.Size = new System.Drawing.Size(38, 18);
  2922. this.pointLabel95.TabIndex = 246;
  2923. this.pointLabel95.TagData = null;
  2924. this.pointLabel95.TagId = null;
  2925. //
  2926. // pointLabel96
  2927. //
  2928. this.pointLabel96.Location = new System.Drawing.Point(879, 837);
  2929. this.pointLabel96.Name = "pointLabel96";
  2930. this.pointLabel96.Size = new System.Drawing.Size(38, 18);
  2931. this.pointLabel96.TabIndex = 245;
  2932. this.pointLabel96.TagData = null;
  2933. this.pointLabel96.TagId = null;
  2934. //
  2935. // pointLabel97
  2936. //
  2937. this.pointLabel97.Location = new System.Drawing.Point(879, 863);
  2938. this.pointLabel97.Name = "pointLabel97";
  2939. this.pointLabel97.Size = new System.Drawing.Size(38, 18);
  2940. this.pointLabel97.TabIndex = 244;
  2941. this.pointLabel97.TagData = null;
  2942. this.pointLabel97.TagId = null;
  2943. //
  2944. // pointLabel98
  2945. //
  2946. this.pointLabel98.Location = new System.Drawing.Point(879, 785);
  2947. this.pointLabel98.Name = "pointLabel98";
  2948. this.pointLabel98.Size = new System.Drawing.Size(38, 18);
  2949. this.pointLabel98.TabIndex = 243;
  2950. this.pointLabel98.TagData = null;
  2951. this.pointLabel98.TagId = null;
  2952. //
  2953. // pointLabel99
  2954. //
  2955. this.pointLabel99.Location = new System.Drawing.Point(838, 811);
  2956. this.pointLabel99.Name = "pointLabel99";
  2957. this.pointLabel99.Size = new System.Drawing.Size(38, 18);
  2958. this.pointLabel99.TabIndex = 242;
  2959. this.pointLabel99.TagData = null;
  2960. this.pointLabel99.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2259";
  2961. //
  2962. // pointLabel100
  2963. //
  2964. this.pointLabel100.Location = new System.Drawing.Point(838, 837);
  2965. this.pointLabel100.Name = "pointLabel100";
  2966. this.pointLabel100.Size = new System.Drawing.Size(38, 18);
  2967. this.pointLabel100.TabIndex = 241;
  2968. this.pointLabel100.TagData = null;
  2969. this.pointLabel100.TagId = null;
  2970. //
  2971. // pointLabel101
  2972. //
  2973. this.pointLabel101.Location = new System.Drawing.Point(838, 863);
  2974. this.pointLabel101.Name = "pointLabel101";
  2975. this.pointLabel101.Size = new System.Drawing.Size(38, 18);
  2976. this.pointLabel101.TabIndex = 240;
  2977. this.pointLabel101.TagData = null;
  2978. this.pointLabel101.TagId = null;
  2979. //
  2980. // pointLabel102
  2981. //
  2982. this.pointLabel102.Location = new System.Drawing.Point(838, 785);
  2983. this.pointLabel102.Name = "pointLabel102";
  2984. this.pointLabel102.Size = new System.Drawing.Size(38, 18);
  2985. this.pointLabel102.TabIndex = 239;
  2986. this.pointLabel102.TagData = null;
  2987. this.pointLabel102.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2247";
  2988. //
  2989. // pointLabel103
  2990. //
  2991. this.pointLabel103.Location = new System.Drawing.Point(797, 811);
  2992. this.pointLabel103.Name = "pointLabel103";
  2993. this.pointLabel103.Size = new System.Drawing.Size(38, 18);
  2994. this.pointLabel103.TabIndex = 238;
  2995. this.pointLabel103.TagData = null;
  2996. this.pointLabel103.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2218";
  2997. //
  2998. // pointLabel104
  2999. //
  3000. this.pointLabel104.Location = new System.Drawing.Point(797, 837);
  3001. this.pointLabel104.Name = "pointLabel104";
  3002. this.pointLabel104.Size = new System.Drawing.Size(38, 18);
  3003. this.pointLabel104.TabIndex = 237;
  3004. this.pointLabel104.TagData = null;
  3005. this.pointLabel104.TagId = null;
  3006. //
  3007. // pointLabel105
  3008. //
  3009. this.pointLabel105.Location = new System.Drawing.Point(797, 863);
  3010. this.pointLabel105.Name = "pointLabel105";
  3011. this.pointLabel105.Size = new System.Drawing.Size(38, 18);
  3012. this.pointLabel105.TabIndex = 236;
  3013. this.pointLabel105.TagData = null;
  3014. this.pointLabel105.TagId = null;
  3015. //
  3016. // pointLabel106
  3017. //
  3018. this.pointLabel106.Location = new System.Drawing.Point(797, 785);
  3019. this.pointLabel106.Name = "pointLabel106";
  3020. this.pointLabel106.Size = new System.Drawing.Size(38, 18);
  3021. this.pointLabel106.TabIndex = 235;
  3022. this.pointLabel106.TagData = null;
  3023. this.pointLabel106.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2206";
  3024. //
  3025. // pointLabel107
  3026. //
  3027. this.pointLabel107.Location = new System.Drawing.Point(756, 811);
  3028. this.pointLabel107.Name = "pointLabel107";
  3029. this.pointLabel107.Size = new System.Drawing.Size(38, 18);
  3030. this.pointLabel107.TabIndex = 234;
  3031. this.pointLabel107.TagData = null;
  3032. this.pointLabel107.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2177";
  3033. //
  3034. // pointLabel108
  3035. //
  3036. this.pointLabel108.Location = new System.Drawing.Point(756, 837);
  3037. this.pointLabel108.Name = "pointLabel108";
  3038. this.pointLabel108.Size = new System.Drawing.Size(38, 18);
  3039. this.pointLabel108.TabIndex = 233;
  3040. this.pointLabel108.TagData = null;
  3041. this.pointLabel108.TagId = null;
  3042. //
  3043. // pointLabel109
  3044. //
  3045. this.pointLabel109.Location = new System.Drawing.Point(756, 863);
  3046. this.pointLabel109.Name = "pointLabel109";
  3047. this.pointLabel109.Size = new System.Drawing.Size(38, 18);
  3048. this.pointLabel109.TabIndex = 232;
  3049. this.pointLabel109.TagData = null;
  3050. this.pointLabel109.TagId = null;
  3051. //
  3052. // pointLabel110
  3053. //
  3054. this.pointLabel110.Location = new System.Drawing.Point(756, 785);
  3055. this.pointLabel110.Name = "pointLabel110";
  3056. this.pointLabel110.Size = new System.Drawing.Size(38, 18);
  3057. this.pointLabel110.TabIndex = 231;
  3058. this.pointLabel110.TagData = null;
  3059. this.pointLabel110.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI2165";
  3060. //
  3061. // pointLabel111
  3062. //
  3063. this.pointLabel111.Location = new System.Drawing.Point(1712, 811);
  3064. this.pointLabel111.Name = "pointLabel111";
  3065. this.pointLabel111.Size = new System.Drawing.Size(38, 18);
  3066. this.pointLabel111.TabIndex = 326;
  3067. this.pointLabel111.TagData = null;
  3068. this.pointLabel111.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1398";
  3069. //
  3070. // pointLabel112
  3071. //
  3072. this.pointLabel112.Location = new System.Drawing.Point(1712, 837);
  3073. this.pointLabel112.Name = "pointLabel112";
  3074. this.pointLabel112.Size = new System.Drawing.Size(38, 18);
  3075. this.pointLabel112.TabIndex = 325;
  3076. this.pointLabel112.TagData = null;
  3077. this.pointLabel112.TagId = null;
  3078. //
  3079. // pointLabel113
  3080. //
  3081. this.pointLabel113.Location = new System.Drawing.Point(1712, 863);
  3082. this.pointLabel113.Name = "pointLabel113";
  3083. this.pointLabel113.Size = new System.Drawing.Size(38, 18);
  3084. this.pointLabel113.TabIndex = 324;
  3085. this.pointLabel113.TagData = null;
  3086. this.pointLabel113.TagId = null;
  3087. //
  3088. // pointLabel114
  3089. //
  3090. this.pointLabel114.Location = new System.Drawing.Point(1712, 785);
  3091. this.pointLabel114.Name = "pointLabel114";
  3092. this.pointLabel114.Size = new System.Drawing.Size(38, 18);
  3093. this.pointLabel114.TabIndex = 323;
  3094. this.pointLabel114.TagData = null;
  3095. this.pointLabel114.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1386";
  3096. //
  3097. // pointLabel115
  3098. //
  3099. this.pointLabel115.Location = new System.Drawing.Point(1671, 811);
  3100. this.pointLabel115.Name = "pointLabel115";
  3101. this.pointLabel115.Size = new System.Drawing.Size(38, 18);
  3102. this.pointLabel115.TabIndex = 322;
  3103. this.pointLabel115.TagData = null;
  3104. this.pointLabel115.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1357";
  3105. //
  3106. // pointLabel116
  3107. //
  3108. this.pointLabel116.Location = new System.Drawing.Point(1671, 837);
  3109. this.pointLabel116.Name = "pointLabel116";
  3110. this.pointLabel116.Size = new System.Drawing.Size(38, 18);
  3111. this.pointLabel116.TabIndex = 321;
  3112. this.pointLabel116.TagData = null;
  3113. this.pointLabel116.TagId = null;
  3114. //
  3115. // pointLabel117
  3116. //
  3117. this.pointLabel117.Location = new System.Drawing.Point(1671, 863);
  3118. this.pointLabel117.Name = "pointLabel117";
  3119. this.pointLabel117.Size = new System.Drawing.Size(38, 18);
  3120. this.pointLabel117.TabIndex = 320;
  3121. this.pointLabel117.TagData = null;
  3122. this.pointLabel117.TagId = null;
  3123. //
  3124. // pointLabel118
  3125. //
  3126. this.pointLabel118.Location = new System.Drawing.Point(1671, 785);
  3127. this.pointLabel118.Name = "pointLabel118";
  3128. this.pointLabel118.Size = new System.Drawing.Size(38, 18);
  3129. this.pointLabel118.TabIndex = 319;
  3130. this.pointLabel118.TagData = null;
  3131. this.pointLabel118.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1345";
  3132. //
  3133. // pointLabel119
  3134. //
  3135. this.pointLabel119.Location = new System.Drawing.Point(1630, 811);
  3136. this.pointLabel119.Name = "pointLabel119";
  3137. this.pointLabel119.Size = new System.Drawing.Size(38, 18);
  3138. this.pointLabel119.TabIndex = 318;
  3139. this.pointLabel119.TagData = null;
  3140. this.pointLabel119.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1316";
  3141. //
  3142. // pointLabel120
  3143. //
  3144. this.pointLabel120.Location = new System.Drawing.Point(1630, 837);
  3145. this.pointLabel120.Name = "pointLabel120";
  3146. this.pointLabel120.Size = new System.Drawing.Size(38, 18);
  3147. this.pointLabel120.TabIndex = 317;
  3148. this.pointLabel120.TagData = null;
  3149. this.pointLabel120.TagId = null;
  3150. //
  3151. // pointLabel121
  3152. //
  3153. this.pointLabel121.Location = new System.Drawing.Point(1630, 863);
  3154. this.pointLabel121.Name = "pointLabel121";
  3155. this.pointLabel121.Size = new System.Drawing.Size(38, 18);
  3156. this.pointLabel121.TabIndex = 316;
  3157. this.pointLabel121.TagData = null;
  3158. this.pointLabel121.TagId = null;
  3159. //
  3160. // pointLabel122
  3161. //
  3162. this.pointLabel122.Location = new System.Drawing.Point(1630, 785);
  3163. this.pointLabel122.Name = "pointLabel122";
  3164. this.pointLabel122.Size = new System.Drawing.Size(38, 18);
  3165. this.pointLabel122.TabIndex = 315;
  3166. this.pointLabel122.TagData = null;
  3167. this.pointLabel122.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1304";
  3168. //
  3169. // pointLabel123
  3170. //
  3171. this.pointLabel123.Location = new System.Drawing.Point(1589, 811);
  3172. this.pointLabel123.Name = "pointLabel123";
  3173. this.pointLabel123.Size = new System.Drawing.Size(38, 18);
  3174. this.pointLabel123.TabIndex = 314;
  3175. this.pointLabel123.TagData = null;
  3176. this.pointLabel123.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1275";
  3177. //
  3178. // pointLabel124
  3179. //
  3180. this.pointLabel124.Location = new System.Drawing.Point(1589, 837);
  3181. this.pointLabel124.Name = "pointLabel124";
  3182. this.pointLabel124.Size = new System.Drawing.Size(38, 18);
  3183. this.pointLabel124.TabIndex = 313;
  3184. this.pointLabel124.TagData = null;
  3185. this.pointLabel124.TagId = null;
  3186. //
  3187. // pointLabel125
  3188. //
  3189. this.pointLabel125.Location = new System.Drawing.Point(1589, 863);
  3190. this.pointLabel125.Name = "pointLabel125";
  3191. this.pointLabel125.Size = new System.Drawing.Size(38, 18);
  3192. this.pointLabel125.TabIndex = 312;
  3193. this.pointLabel125.TagData = null;
  3194. this.pointLabel125.TagId = null;
  3195. //
  3196. // pointLabel126
  3197. //
  3198. this.pointLabel126.Location = new System.Drawing.Point(1589, 785);
  3199. this.pointLabel126.Name = "pointLabel126";
  3200. this.pointLabel126.Size = new System.Drawing.Size(38, 18);
  3201. this.pointLabel126.TabIndex = 311;
  3202. this.pointLabel126.TagData = null;
  3203. this.pointLabel126.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1263";
  3204. //
  3205. // pointLabel127
  3206. //
  3207. this.pointLabel127.Location = new System.Drawing.Point(1548, 811);
  3208. this.pointLabel127.Name = "pointLabel127";
  3209. this.pointLabel127.Size = new System.Drawing.Size(38, 18);
  3210. this.pointLabel127.TabIndex = 310;
  3211. this.pointLabel127.TagData = null;
  3212. this.pointLabel127.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1234";
  3213. //
  3214. // pointLabel128
  3215. //
  3216. this.pointLabel128.Location = new System.Drawing.Point(1548, 837);
  3217. this.pointLabel128.Name = "pointLabel128";
  3218. this.pointLabel128.Size = new System.Drawing.Size(38, 18);
  3219. this.pointLabel128.TabIndex = 309;
  3220. this.pointLabel128.TagData = null;
  3221. this.pointLabel128.TagId = null;
  3222. //
  3223. // pointLabel129
  3224. //
  3225. this.pointLabel129.Location = new System.Drawing.Point(1548, 863);
  3226. this.pointLabel129.Name = "pointLabel129";
  3227. this.pointLabel129.Size = new System.Drawing.Size(38, 18);
  3228. this.pointLabel129.TabIndex = 308;
  3229. this.pointLabel129.TagData = null;
  3230. this.pointLabel129.TagId = null;
  3231. //
  3232. // pointLabel130
  3233. //
  3234. this.pointLabel130.Location = new System.Drawing.Point(1548, 785);
  3235. this.pointLabel130.Name = "pointLabel130";
  3236. this.pointLabel130.Size = new System.Drawing.Size(38, 18);
  3237. this.pointLabel130.TabIndex = 307;
  3238. this.pointLabel130.TagData = null;
  3239. this.pointLabel130.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1222";
  3240. //
  3241. // pointLabel131
  3242. //
  3243. this.pointLabel131.Location = new System.Drawing.Point(1507, 811);
  3244. this.pointLabel131.Name = "pointLabel131";
  3245. this.pointLabel131.Size = new System.Drawing.Size(38, 18);
  3246. this.pointLabel131.TabIndex = 306;
  3247. this.pointLabel131.TagData = null;
  3248. this.pointLabel131.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1193";
  3249. //
  3250. // pointLabel132
  3251. //
  3252. this.pointLabel132.Location = new System.Drawing.Point(1507, 837);
  3253. this.pointLabel132.Name = "pointLabel132";
  3254. this.pointLabel132.Size = new System.Drawing.Size(38, 18);
  3255. this.pointLabel132.TabIndex = 305;
  3256. this.pointLabel132.TagData = null;
  3257. this.pointLabel132.TagId = null;
  3258. //
  3259. // pointLabel133
  3260. //
  3261. this.pointLabel133.Location = new System.Drawing.Point(1507, 863);
  3262. this.pointLabel133.Name = "pointLabel133";
  3263. this.pointLabel133.Size = new System.Drawing.Size(38, 18);
  3264. this.pointLabel133.TabIndex = 304;
  3265. this.pointLabel133.TagData = null;
  3266. this.pointLabel133.TagId = null;
  3267. //
  3268. // pointLabel134
  3269. //
  3270. this.pointLabel134.Location = new System.Drawing.Point(1507, 785);
  3271. this.pointLabel134.Name = "pointLabel134";
  3272. this.pointLabel134.Size = new System.Drawing.Size(38, 18);
  3273. this.pointLabel134.TabIndex = 303;
  3274. this.pointLabel134.TagData = null;
  3275. this.pointLabel134.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1181";
  3276. //
  3277. // pointLabel135
  3278. //
  3279. this.pointLabel135.Location = new System.Drawing.Point(1466, 811);
  3280. this.pointLabel135.Name = "pointLabel135";
  3281. this.pointLabel135.Size = new System.Drawing.Size(38, 18);
  3282. this.pointLabel135.TabIndex = 302;
  3283. this.pointLabel135.TagData = null;
  3284. this.pointLabel135.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1152";
  3285. //
  3286. // pointLabel136
  3287. //
  3288. this.pointLabel136.Location = new System.Drawing.Point(1466, 837);
  3289. this.pointLabel136.Name = "pointLabel136";
  3290. this.pointLabel136.Size = new System.Drawing.Size(38, 18);
  3291. this.pointLabel136.TabIndex = 301;
  3292. this.pointLabel136.TagData = null;
  3293. this.pointLabel136.TagId = null;
  3294. //
  3295. // pointLabel137
  3296. //
  3297. this.pointLabel137.Location = new System.Drawing.Point(1466, 863);
  3298. this.pointLabel137.Name = "pointLabel137";
  3299. this.pointLabel137.Size = new System.Drawing.Size(38, 18);
  3300. this.pointLabel137.TabIndex = 300;
  3301. this.pointLabel137.TagData = null;
  3302. this.pointLabel137.TagId = null;
  3303. //
  3304. // pointLabel138
  3305. //
  3306. this.pointLabel138.Location = new System.Drawing.Point(1466, 785);
  3307. this.pointLabel138.Name = "pointLabel138";
  3308. this.pointLabel138.Size = new System.Drawing.Size(38, 18);
  3309. this.pointLabel138.TabIndex = 299;
  3310. this.pointLabel138.TagData = null;
  3311. this.pointLabel138.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1140";
  3312. //
  3313. // pointLabel139
  3314. //
  3315. this.pointLabel139.Location = new System.Drawing.Point(1425, 811);
  3316. this.pointLabel139.Name = "pointLabel139";
  3317. this.pointLabel139.Size = new System.Drawing.Size(38, 18);
  3318. this.pointLabel139.TabIndex = 298;
  3319. this.pointLabel139.TagData = null;
  3320. this.pointLabel139.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1111";
  3321. //
  3322. // pointLabel140
  3323. //
  3324. this.pointLabel140.Location = new System.Drawing.Point(1425, 837);
  3325. this.pointLabel140.Name = "pointLabel140";
  3326. this.pointLabel140.Size = new System.Drawing.Size(38, 18);
  3327. this.pointLabel140.TabIndex = 297;
  3328. this.pointLabel140.TagData = null;
  3329. this.pointLabel140.TagId = null;
  3330. //
  3331. // pointLabel141
  3332. //
  3333. this.pointLabel141.Location = new System.Drawing.Point(1425, 863);
  3334. this.pointLabel141.Name = "pointLabel141";
  3335. this.pointLabel141.Size = new System.Drawing.Size(38, 18);
  3336. this.pointLabel141.TabIndex = 296;
  3337. this.pointLabel141.TagData = null;
  3338. this.pointLabel141.TagId = null;
  3339. //
  3340. // pointLabel142
  3341. //
  3342. this.pointLabel142.Location = new System.Drawing.Point(1425, 785);
  3343. this.pointLabel142.Name = "pointLabel142";
  3344. this.pointLabel142.Size = new System.Drawing.Size(38, 18);
  3345. this.pointLabel142.TabIndex = 295;
  3346. this.pointLabel142.TagData = null;
  3347. this.pointLabel142.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1099";
  3348. //
  3349. // pointLabel143
  3350. //
  3351. this.pointLabel143.Location = new System.Drawing.Point(1384, 811);
  3352. this.pointLabel143.Name = "pointLabel143";
  3353. this.pointLabel143.Size = new System.Drawing.Size(38, 18);
  3354. this.pointLabel143.TabIndex = 294;
  3355. this.pointLabel143.TagData = null;
  3356. this.pointLabel143.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1070";
  3357. //
  3358. // pointLabel144
  3359. //
  3360. this.pointLabel144.Location = new System.Drawing.Point(1384, 837);
  3361. this.pointLabel144.Name = "pointLabel144";
  3362. this.pointLabel144.Size = new System.Drawing.Size(38, 18);
  3363. this.pointLabel144.TabIndex = 293;
  3364. this.pointLabel144.TagData = null;
  3365. this.pointLabel144.TagId = null;
  3366. //
  3367. // pointLabel145
  3368. //
  3369. this.pointLabel145.Location = new System.Drawing.Point(1384, 863);
  3370. this.pointLabel145.Name = "pointLabel145";
  3371. this.pointLabel145.Size = new System.Drawing.Size(38, 18);
  3372. this.pointLabel145.TabIndex = 292;
  3373. this.pointLabel145.TagData = null;
  3374. this.pointLabel145.TagId = null;
  3375. //
  3376. // pointLabel146
  3377. //
  3378. this.pointLabel146.Location = new System.Drawing.Point(1384, 785);
  3379. this.pointLabel146.Name = "pointLabel146";
  3380. this.pointLabel146.Size = new System.Drawing.Size(38, 18);
  3381. this.pointLabel146.TabIndex = 291;
  3382. this.pointLabel146.TagData = null;
  3383. this.pointLabel146.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1058";
  3384. //
  3385. // pointLabel147
  3386. //
  3387. this.pointLabel147.Location = new System.Drawing.Point(1343, 811);
  3388. this.pointLabel147.Name = "pointLabel147";
  3389. this.pointLabel147.Size = new System.Drawing.Size(38, 18);
  3390. this.pointLabel147.TabIndex = 290;
  3391. this.pointLabel147.TagData = null;
  3392. this.pointLabel147.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1029";
  3393. //
  3394. // pointLabel148
  3395. //
  3396. this.pointLabel148.Location = new System.Drawing.Point(1343, 837);
  3397. this.pointLabel148.Name = "pointLabel148";
  3398. this.pointLabel148.Size = new System.Drawing.Size(38, 18);
  3399. this.pointLabel148.TabIndex = 289;
  3400. this.pointLabel148.TagData = null;
  3401. this.pointLabel148.TagId = null;
  3402. //
  3403. // pointLabel149
  3404. //
  3405. this.pointLabel149.Location = new System.Drawing.Point(1343, 863);
  3406. this.pointLabel149.Name = "pointLabel149";
  3407. this.pointLabel149.Size = new System.Drawing.Size(38, 18);
  3408. this.pointLabel149.TabIndex = 288;
  3409. this.pointLabel149.TagData = null;
  3410. this.pointLabel149.TagId = null;
  3411. //
  3412. // pointLabel150
  3413. //
  3414. this.pointLabel150.Location = new System.Drawing.Point(1343, 785);
  3415. this.pointLabel150.Name = "pointLabel150";
  3416. this.pointLabel150.Size = new System.Drawing.Size(38, 18);
  3417. this.pointLabel150.TabIndex = 287;
  3418. this.pointLabel150.TagData = null;
  3419. this.pointLabel150.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1017";
  3420. //
  3421. // pointLabel151
  3422. //
  3423. this.pointLabel151.Location = new System.Drawing.Point(1302, 811);
  3424. this.pointLabel151.Name = "pointLabel151";
  3425. this.pointLabel151.Size = new System.Drawing.Size(38, 18);
  3426. this.pointLabel151.TabIndex = 286;
  3427. this.pointLabel151.TagData = null;
  3428. this.pointLabel151.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0988";
  3429. //
  3430. // pointLabel152
  3431. //
  3432. this.pointLabel152.Location = new System.Drawing.Point(1302, 837);
  3433. this.pointLabel152.Name = "pointLabel152";
  3434. this.pointLabel152.Size = new System.Drawing.Size(38, 18);
  3435. this.pointLabel152.TabIndex = 285;
  3436. this.pointLabel152.TagData = null;
  3437. this.pointLabel152.TagId = null;
  3438. //
  3439. // pointLabel153
  3440. //
  3441. this.pointLabel153.Location = new System.Drawing.Point(1302, 863);
  3442. this.pointLabel153.Name = "pointLabel153";
  3443. this.pointLabel153.Size = new System.Drawing.Size(38, 18);
  3444. this.pointLabel153.TabIndex = 284;
  3445. this.pointLabel153.TagData = null;
  3446. this.pointLabel153.TagId = null;
  3447. //
  3448. // pointLabel154
  3449. //
  3450. this.pointLabel154.Location = new System.Drawing.Point(1302, 785);
  3451. this.pointLabel154.Name = "pointLabel154";
  3452. this.pointLabel154.Size = new System.Drawing.Size(38, 18);
  3453. this.pointLabel154.TabIndex = 283;
  3454. this.pointLabel154.TagData = null;
  3455. this.pointLabel154.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0976";
  3456. //
  3457. // pointLabel155
  3458. //
  3459. this.pointLabel155.Location = new System.Drawing.Point(1261, 811);
  3460. this.pointLabel155.Name = "pointLabel155";
  3461. this.pointLabel155.Size = new System.Drawing.Size(38, 18);
  3462. this.pointLabel155.TabIndex = 282;
  3463. this.pointLabel155.TagData = null;
  3464. this.pointLabel155.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0947";
  3465. //
  3466. // pointLabel156
  3467. //
  3468. this.pointLabel156.Location = new System.Drawing.Point(1261, 837);
  3469. this.pointLabel156.Name = "pointLabel156";
  3470. this.pointLabel156.Size = new System.Drawing.Size(38, 18);
  3471. this.pointLabel156.TabIndex = 281;
  3472. this.pointLabel156.TagData = null;
  3473. this.pointLabel156.TagId = null;
  3474. //
  3475. // pointLabel157
  3476. //
  3477. this.pointLabel157.Location = new System.Drawing.Point(1261, 863);
  3478. this.pointLabel157.Name = "pointLabel157";
  3479. this.pointLabel157.Size = new System.Drawing.Size(38, 18);
  3480. this.pointLabel157.TabIndex = 280;
  3481. this.pointLabel157.TagData = null;
  3482. this.pointLabel157.TagId = null;
  3483. //
  3484. // pointLabel158
  3485. //
  3486. this.pointLabel158.Location = new System.Drawing.Point(1261, 785);
  3487. this.pointLabel158.Name = "pointLabel158";
  3488. this.pointLabel158.Size = new System.Drawing.Size(38, 18);
  3489. this.pointLabel158.TabIndex = 279;
  3490. this.pointLabel158.TagData = null;
  3491. this.pointLabel158.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0935";
  3492. //
  3493. // pointLabel159
  3494. //
  3495. this.pointLabel159.Location = new System.Drawing.Point(1220, 811);
  3496. this.pointLabel159.Name = "pointLabel159";
  3497. this.pointLabel159.Size = new System.Drawing.Size(38, 18);
  3498. this.pointLabel159.TabIndex = 278;
  3499. this.pointLabel159.TagData = null;
  3500. this.pointLabel159.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0906";
  3501. //
  3502. // pointLabel160
  3503. //
  3504. this.pointLabel160.Location = new System.Drawing.Point(1220, 837);
  3505. this.pointLabel160.Name = "pointLabel160";
  3506. this.pointLabel160.Size = new System.Drawing.Size(38, 18);
  3507. this.pointLabel160.TabIndex = 277;
  3508. this.pointLabel160.TagData = null;
  3509. this.pointLabel160.TagId = null;
  3510. //
  3511. // pointLabel161
  3512. //
  3513. this.pointLabel161.Location = new System.Drawing.Point(1220, 863);
  3514. this.pointLabel161.Name = "pointLabel161";
  3515. this.pointLabel161.Size = new System.Drawing.Size(38, 18);
  3516. this.pointLabel161.TabIndex = 276;
  3517. this.pointLabel161.TagData = null;
  3518. this.pointLabel161.TagId = null;
  3519. //
  3520. // pointLabel162
  3521. //
  3522. this.pointLabel162.Location = new System.Drawing.Point(1220, 785);
  3523. this.pointLabel162.Name = "pointLabel162";
  3524. this.pointLabel162.Size = new System.Drawing.Size(38, 18);
  3525. this.pointLabel162.TabIndex = 275;
  3526. this.pointLabel162.TagData = null;
  3527. this.pointLabel162.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0894";
  3528. //
  3529. // pointLabel163
  3530. //
  3531. this.pointLabel163.Location = new System.Drawing.Point(1179, 811);
  3532. this.pointLabel163.Name = "pointLabel163";
  3533. this.pointLabel163.Size = new System.Drawing.Size(38, 18);
  3534. this.pointLabel163.TabIndex = 274;
  3535. this.pointLabel163.TagData = null;
  3536. this.pointLabel163.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0865";
  3537. //
  3538. // pointLabel164
  3539. //
  3540. this.pointLabel164.Location = new System.Drawing.Point(1179, 837);
  3541. this.pointLabel164.Name = "pointLabel164";
  3542. this.pointLabel164.Size = new System.Drawing.Size(38, 18);
  3543. this.pointLabel164.TabIndex = 273;
  3544. this.pointLabel164.TagData = null;
  3545. this.pointLabel164.TagId = null;
  3546. //
  3547. // pointLabel165
  3548. //
  3549. this.pointLabel165.Location = new System.Drawing.Point(1179, 863);
  3550. this.pointLabel165.Name = "pointLabel165";
  3551. this.pointLabel165.Size = new System.Drawing.Size(38, 18);
  3552. this.pointLabel165.TabIndex = 272;
  3553. this.pointLabel165.TagData = null;
  3554. this.pointLabel165.TagId = null;
  3555. //
  3556. // pointLabel166
  3557. //
  3558. this.pointLabel166.Location = new System.Drawing.Point(1179, 785);
  3559. this.pointLabel166.Name = "pointLabel166";
  3560. this.pointLabel166.Size = new System.Drawing.Size(38, 18);
  3561. this.pointLabel166.TabIndex = 271;
  3562. this.pointLabel166.TagData = null;
  3563. this.pointLabel166.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0853";
  3564. //
  3565. // pointLabel167
  3566. //
  3567. this.pointLabel167.Location = new System.Drawing.Point(1138, 811);
  3568. this.pointLabel167.Name = "pointLabel167";
  3569. this.pointLabel167.Size = new System.Drawing.Size(38, 18);
  3570. this.pointLabel167.TabIndex = 270;
  3571. this.pointLabel167.TagData = null;
  3572. this.pointLabel167.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0824";
  3573. //
  3574. // pointLabel168
  3575. //
  3576. this.pointLabel168.Location = new System.Drawing.Point(1138, 837);
  3577. this.pointLabel168.Name = "pointLabel168";
  3578. this.pointLabel168.Size = new System.Drawing.Size(38, 18);
  3579. this.pointLabel168.TabIndex = 269;
  3580. this.pointLabel168.TagData = null;
  3581. this.pointLabel168.TagId = null;
  3582. //
  3583. // pointLabel169
  3584. //
  3585. this.pointLabel169.Location = new System.Drawing.Point(1138, 863);
  3586. this.pointLabel169.Name = "pointLabel169";
  3587. this.pointLabel169.Size = new System.Drawing.Size(38, 18);
  3588. this.pointLabel169.TabIndex = 268;
  3589. this.pointLabel169.TagData = null;
  3590. this.pointLabel169.TagId = null;
  3591. //
  3592. // pointLabel170
  3593. //
  3594. this.pointLabel170.Location = new System.Drawing.Point(1138, 785);
  3595. this.pointLabel170.Name = "pointLabel170";
  3596. this.pointLabel170.Size = new System.Drawing.Size(38, 18);
  3597. this.pointLabel170.TabIndex = 267;
  3598. this.pointLabel170.TagData = null;
  3599. this.pointLabel170.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0812";
  3600. //
  3601. // pointLabel171
  3602. //
  3603. this.pointLabel171.Location = new System.Drawing.Point(1097, 811);
  3604. this.pointLabel171.Name = "pointLabel171";
  3605. this.pointLabel171.Size = new System.Drawing.Size(38, 18);
  3606. this.pointLabel171.TabIndex = 266;
  3607. this.pointLabel171.TagData = null;
  3608. this.pointLabel171.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0783";
  3609. //
  3610. // pointLabel172
  3611. //
  3612. this.pointLabel172.Location = new System.Drawing.Point(1097, 837);
  3613. this.pointLabel172.Name = "pointLabel172";
  3614. this.pointLabel172.Size = new System.Drawing.Size(38, 18);
  3615. this.pointLabel172.TabIndex = 265;
  3616. this.pointLabel172.TagData = null;
  3617. this.pointLabel172.TagId = null;
  3618. //
  3619. // pointLabel173
  3620. //
  3621. this.pointLabel173.Location = new System.Drawing.Point(1097, 863);
  3622. this.pointLabel173.Name = "pointLabel173";
  3623. this.pointLabel173.Size = new System.Drawing.Size(38, 18);
  3624. this.pointLabel173.TabIndex = 264;
  3625. this.pointLabel173.TagData = null;
  3626. this.pointLabel173.TagId = null;
  3627. //
  3628. // pointLabel174
  3629. //
  3630. this.pointLabel174.Location = new System.Drawing.Point(1097, 785);
  3631. this.pointLabel174.Name = "pointLabel174";
  3632. this.pointLabel174.Size = new System.Drawing.Size(38, 18);
  3633. this.pointLabel174.TabIndex = 263;
  3634. this.pointLabel174.TagData = null;
  3635. this.pointLabel174.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0771";
  3636. //
  3637. // pointLabel175
  3638. //
  3639. this.pointLabel175.Location = new System.Drawing.Point(1056, 811);
  3640. this.pointLabel175.Name = "pointLabel175";
  3641. this.pointLabel175.Size = new System.Drawing.Size(38, 18);
  3642. this.pointLabel175.TabIndex = 262;
  3643. this.pointLabel175.TagData = null;
  3644. this.pointLabel175.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0742";
  3645. //
  3646. // pointLabel176
  3647. //
  3648. this.pointLabel176.Location = new System.Drawing.Point(1056, 837);
  3649. this.pointLabel176.Name = "pointLabel176";
  3650. this.pointLabel176.Size = new System.Drawing.Size(38, 18);
  3651. this.pointLabel176.TabIndex = 261;
  3652. this.pointLabel176.TagData = null;
  3653. this.pointLabel176.TagId = null;
  3654. //
  3655. // pointLabel177
  3656. //
  3657. this.pointLabel177.Location = new System.Drawing.Point(1056, 863);
  3658. this.pointLabel177.Name = "pointLabel177";
  3659. this.pointLabel177.Size = new System.Drawing.Size(38, 18);
  3660. this.pointLabel177.TabIndex = 260;
  3661. this.pointLabel177.TagData = null;
  3662. this.pointLabel177.TagId = null;
  3663. //
  3664. // pointLabel178
  3665. //
  3666. this.pointLabel178.Location = new System.Drawing.Point(1056, 785);
  3667. this.pointLabel178.Name = "pointLabel178";
  3668. this.pointLabel178.Size = new System.Drawing.Size(38, 18);
  3669. this.pointLabel178.TabIndex = 259;
  3670. this.pointLabel178.TagData = null;
  3671. this.pointLabel178.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0730";
  3672. //
  3673. // pointLabel179
  3674. //
  3675. this.pointLabel179.Location = new System.Drawing.Point(1015, 811);
  3676. this.pointLabel179.Name = "pointLabel179";
  3677. this.pointLabel179.Size = new System.Drawing.Size(38, 18);
  3678. this.pointLabel179.TabIndex = 258;
  3679. this.pointLabel179.TagData = null;
  3680. this.pointLabel179.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0701";
  3681. //
  3682. // pointLabel180
  3683. //
  3684. this.pointLabel180.Location = new System.Drawing.Point(1015, 837);
  3685. this.pointLabel180.Name = "pointLabel180";
  3686. this.pointLabel180.Size = new System.Drawing.Size(38, 18);
  3687. this.pointLabel180.TabIndex = 257;
  3688. this.pointLabel180.TagData = null;
  3689. this.pointLabel180.TagId = null;
  3690. //
  3691. // pointLabel181
  3692. //
  3693. this.pointLabel181.Location = new System.Drawing.Point(1015, 863);
  3694. this.pointLabel181.Name = "pointLabel181";
  3695. this.pointLabel181.Size = new System.Drawing.Size(38, 18);
  3696. this.pointLabel181.TabIndex = 256;
  3697. this.pointLabel181.TagData = null;
  3698. this.pointLabel181.TagId = null;
  3699. //
  3700. // pointLabel182
  3701. //
  3702. this.pointLabel182.Location = new System.Drawing.Point(1015, 785);
  3703. this.pointLabel182.Name = "pointLabel182";
  3704. this.pointLabel182.Size = new System.Drawing.Size(38, 18);
  3705. this.pointLabel182.TabIndex = 255;
  3706. this.pointLabel182.TagData = null;
  3707. this.pointLabel182.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0689";
  3708. //
  3709. // pointLabel183
  3710. //
  3711. this.pointLabel183.Location = new System.Drawing.Point(1795, 811);
  3712. this.pointLabel183.Name = "pointLabel183";
  3713. this.pointLabel183.Size = new System.Drawing.Size(38, 18);
  3714. this.pointLabel183.TabIndex = 334;
  3715. this.pointLabel183.TagData = null;
  3716. this.pointLabel183.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1480";
  3717. //
  3718. // pointLabel184
  3719. //
  3720. this.pointLabel184.Location = new System.Drawing.Point(1795, 837);
  3721. this.pointLabel184.Name = "pointLabel184";
  3722. this.pointLabel184.Size = new System.Drawing.Size(38, 18);
  3723. this.pointLabel184.TabIndex = 333;
  3724. this.pointLabel184.TagData = null;
  3725. this.pointLabel184.TagId = null;
  3726. //
  3727. // pointLabel185
  3728. //
  3729. this.pointLabel185.Location = new System.Drawing.Point(1795, 863);
  3730. this.pointLabel185.Name = "pointLabel185";
  3731. this.pointLabel185.Size = new System.Drawing.Size(38, 18);
  3732. this.pointLabel185.TabIndex = 332;
  3733. this.pointLabel185.TagData = null;
  3734. this.pointLabel185.TagId = null;
  3735. //
  3736. // pointLabel186
  3737. //
  3738. this.pointLabel186.Location = new System.Drawing.Point(1795, 785);
  3739. this.pointLabel186.Name = "pointLabel186";
  3740. this.pointLabel186.Size = new System.Drawing.Size(38, 18);
  3741. this.pointLabel186.TabIndex = 331;
  3742. this.pointLabel186.TagData = null;
  3743. this.pointLabel186.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1468";
  3744. //
  3745. // pointLabel187
  3746. //
  3747. this.pointLabel187.Location = new System.Drawing.Point(1754, 811);
  3748. this.pointLabel187.Name = "pointLabel187";
  3749. this.pointLabel187.Size = new System.Drawing.Size(38, 18);
  3750. this.pointLabel187.TabIndex = 330;
  3751. this.pointLabel187.TagData = null;
  3752. this.pointLabel187.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1439";
  3753. //
  3754. // pointLabel188
  3755. //
  3756. this.pointLabel188.Location = new System.Drawing.Point(1754, 837);
  3757. this.pointLabel188.Name = "pointLabel188";
  3758. this.pointLabel188.Size = new System.Drawing.Size(38, 18);
  3759. this.pointLabel188.TabIndex = 329;
  3760. this.pointLabel188.TagData = null;
  3761. this.pointLabel188.TagId = null;
  3762. //
  3763. // pointLabel189
  3764. //
  3765. this.pointLabel189.Location = new System.Drawing.Point(1754, 863);
  3766. this.pointLabel189.Name = "pointLabel189";
  3767. this.pointLabel189.Size = new System.Drawing.Size(38, 18);
  3768. this.pointLabel189.TabIndex = 328;
  3769. this.pointLabel189.TagData = null;
  3770. this.pointLabel189.TagId = null;
  3771. //
  3772. // pointLabel190
  3773. //
  3774. this.pointLabel190.Location = new System.Drawing.Point(1754, 785);
  3775. this.pointLabel190.Name = "pointLabel190";
  3776. this.pointLabel190.Size = new System.Drawing.Size(38, 18);
  3777. this.pointLabel190.TabIndex = 327;
  3778. this.pointLabel190.TagData = null;
  3779. this.pointLabel190.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI1427";
  3780. //
  3781. // pointLabel191
  3782. //
  3783. this.pointLabel191.Location = new System.Drawing.Point(934, 173);
  3784. this.pointLabel191.Name = "pointLabel191";
  3785. this.pointLabel191.Size = new System.Drawing.Size(51, 18);
  3786. this.pointLabel191.TabIndex = 338;
  3787. this.pointLabel191.TagData = null;
  3788. this.pointLabel191.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0056";
  3789. //
  3790. // pointLabel192
  3791. //
  3792. this.pointLabel192.Location = new System.Drawing.Point(934, 199);
  3793. this.pointLabel192.Name = "pointLabel192";
  3794. this.pointLabel192.Size = new System.Drawing.Size(51, 18);
  3795. this.pointLabel192.TabIndex = 337;
  3796. this.pointLabel192.TagData = null;
  3797. this.pointLabel192.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0057";
  3798. //
  3799. // pointLabel193
  3800. //
  3801. this.pointLabel193.Location = new System.Drawing.Point(934, 225);
  3802. this.pointLabel193.Name = "pointLabel193";
  3803. this.pointLabel193.Size = new System.Drawing.Size(51, 18);
  3804. this.pointLabel193.TabIndex = 336;
  3805. this.pointLabel193.TagData = null;
  3806. this.pointLabel193.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0058";
  3807. //
  3808. // pointLabel194
  3809. //
  3810. this.pointLabel194.Location = new System.Drawing.Point(934, 147);
  3811. this.pointLabel194.Name = "pointLabel194";
  3812. this.pointLabel194.Size = new System.Drawing.Size(51, 18);
  3813. this.pointLabel194.TabIndex = 335;
  3814. this.pointLabel194.TagData = null;
  3815. this.pointLabel194.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0053";
  3816. //
  3817. // pointLabel195
  3818. //
  3819. this.pointLabel195.Location = new System.Drawing.Point(1100, 173);
  3820. this.pointLabel195.Name = "pointLabel195";
  3821. this.pointLabel195.Size = new System.Drawing.Size(51, 18);
  3822. this.pointLabel195.TabIndex = 342;
  3823. this.pointLabel195.TagData = null;
  3824. this.pointLabel195.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0062";
  3825. //
  3826. // pointLabel196
  3827. //
  3828. this.pointLabel196.Location = new System.Drawing.Point(1100, 199);
  3829. this.pointLabel196.Name = "pointLabel196";
  3830. this.pointLabel196.Size = new System.Drawing.Size(51, 18);
  3831. this.pointLabel196.TabIndex = 341;
  3832. this.pointLabel196.TagData = null;
  3833. this.pointLabel196.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0063";
  3834. //
  3835. // pointLabel197
  3836. //
  3837. this.pointLabel197.Location = new System.Drawing.Point(1100, 225);
  3838. this.pointLabel197.Name = "pointLabel197";
  3839. this.pointLabel197.Size = new System.Drawing.Size(51, 18);
  3840. this.pointLabel197.TabIndex = 340;
  3841. this.pointLabel197.TagData = null;
  3842. this.pointLabel197.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0064";
  3843. //
  3844. // pointLabel198
  3845. //
  3846. this.pointLabel198.Location = new System.Drawing.Point(1100, 147);
  3847. this.pointLabel198.Name = "pointLabel198";
  3848. this.pointLabel198.Size = new System.Drawing.Size(51, 18);
  3849. this.pointLabel198.TabIndex = 339;
  3850. this.pointLabel198.TagData = null;
  3851. this.pointLabel198.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0059";
  3852. //
  3853. // pointLabel199
  3854. //
  3855. this.pointLabel199.Location = new System.Drawing.Point(1266, 173);
  3856. this.pointLabel199.Name = "pointLabel199";
  3857. this.pointLabel199.Size = new System.Drawing.Size(51, 18);
  3858. this.pointLabel199.TabIndex = 346;
  3859. this.pointLabel199.TagData = null;
  3860. this.pointLabel199.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0068";
  3861. //
  3862. // pointLabel200
  3863. //
  3864. this.pointLabel200.Location = new System.Drawing.Point(1266, 199);
  3865. this.pointLabel200.Name = "pointLabel200";
  3866. this.pointLabel200.Size = new System.Drawing.Size(51, 18);
  3867. this.pointLabel200.TabIndex = 345;
  3868. this.pointLabel200.TagData = null;
  3869. this.pointLabel200.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0069";
  3870. //
  3871. // pointLabel201
  3872. //
  3873. this.pointLabel201.Location = new System.Drawing.Point(1266, 225);
  3874. this.pointLabel201.Name = "pointLabel201";
  3875. this.pointLabel201.Size = new System.Drawing.Size(51, 18);
  3876. this.pointLabel201.TabIndex = 344;
  3877. this.pointLabel201.TagData = null;
  3878. this.pointLabel201.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0070";
  3879. //
  3880. // pointLabel202
  3881. //
  3882. this.pointLabel202.Location = new System.Drawing.Point(1266, 147);
  3883. this.pointLabel202.Name = "pointLabel202";
  3884. this.pointLabel202.Size = new System.Drawing.Size(51, 18);
  3885. this.pointLabel202.TabIndex = 343;
  3886. this.pointLabel202.TagData = null;
  3887. this.pointLabel202.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0065";
  3888. //
  3889. // pointLabel203
  3890. //
  3891. this.pointLabel203.Location = new System.Drawing.Point(1428, 173);
  3892. this.pointLabel203.Name = "pointLabel203";
  3893. this.pointLabel203.Size = new System.Drawing.Size(51, 18);
  3894. this.pointLabel203.TabIndex = 350;
  3895. this.pointLabel203.TagData = null;
  3896. this.pointLabel203.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0074";
  3897. //
  3898. // pointLabel204
  3899. //
  3900. this.pointLabel204.Location = new System.Drawing.Point(1428, 199);
  3901. this.pointLabel204.Name = "pointLabel204";
  3902. this.pointLabel204.Size = new System.Drawing.Size(51, 18);
  3903. this.pointLabel204.TabIndex = 349;
  3904. this.pointLabel204.TagData = null;
  3905. this.pointLabel204.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0075";
  3906. //
  3907. // pointLabel205
  3908. //
  3909. this.pointLabel205.Location = new System.Drawing.Point(1428, 225);
  3910. this.pointLabel205.Name = "pointLabel205";
  3911. this.pointLabel205.Size = new System.Drawing.Size(51, 18);
  3912. this.pointLabel205.TabIndex = 348;
  3913. this.pointLabel205.TagData = null;
  3914. this.pointLabel205.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0076";
  3915. //
  3916. // pointLabel206
  3917. //
  3918. this.pointLabel206.Location = new System.Drawing.Point(1428, 147);
  3919. this.pointLabel206.Name = "pointLabel206";
  3920. this.pointLabel206.Size = new System.Drawing.Size(51, 18);
  3921. this.pointLabel206.TabIndex = 347;
  3922. this.pointLabel206.TagData = null;
  3923. this.pointLabel206.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0071";
  3924. //
  3925. // pointLabel207
  3926. //
  3927. this.pointLabel207.Location = new System.Drawing.Point(1589, 173);
  3928. this.pointLabel207.Name = "pointLabel207";
  3929. this.pointLabel207.Size = new System.Drawing.Size(51, 18);
  3930. this.pointLabel207.TabIndex = 354;
  3931. this.pointLabel207.TagData = null;
  3932. this.pointLabel207.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0080";
  3933. //
  3934. // pointLabel208
  3935. //
  3936. this.pointLabel208.Location = new System.Drawing.Point(1589, 199);
  3937. this.pointLabel208.Name = "pointLabel208";
  3938. this.pointLabel208.Size = new System.Drawing.Size(51, 18);
  3939. this.pointLabel208.TabIndex = 353;
  3940. this.pointLabel208.TagData = null;
  3941. this.pointLabel208.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0081";
  3942. //
  3943. // pointLabel209
  3944. //
  3945. this.pointLabel209.Location = new System.Drawing.Point(1589, 225);
  3946. this.pointLabel209.Name = "pointLabel209";
  3947. this.pointLabel209.Size = new System.Drawing.Size(51, 18);
  3948. this.pointLabel209.TabIndex = 352;
  3949. this.pointLabel209.TagData = null;
  3950. this.pointLabel209.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0082";
  3951. //
  3952. // pointLabel210
  3953. //
  3954. this.pointLabel210.Location = new System.Drawing.Point(1589, 147);
  3955. this.pointLabel210.Name = "pointLabel210";
  3956. this.pointLabel210.Size = new System.Drawing.Size(51, 18);
  3957. this.pointLabel210.TabIndex = 351;
  3958. this.pointLabel210.TagData = null;
  3959. this.pointLabel210.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0077";
  3960. //
  3961. // pointLabel211
  3962. //
  3963. this.pointLabel211.Location = new System.Drawing.Point(1746, 173);
  3964. this.pointLabel211.Name = "pointLabel211";
  3965. this.pointLabel211.Size = new System.Drawing.Size(51, 18);
  3966. this.pointLabel211.TabIndex = 358;
  3967. this.pointLabel211.TagData = null;
  3968. this.pointLabel211.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0086";
  3969. //
  3970. // pointLabel212
  3971. //
  3972. this.pointLabel212.Location = new System.Drawing.Point(1746, 199);
  3973. this.pointLabel212.Name = "pointLabel212";
  3974. this.pointLabel212.Size = new System.Drawing.Size(51, 18);
  3975. this.pointLabel212.TabIndex = 357;
  3976. this.pointLabel212.TagData = null;
  3977. this.pointLabel212.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0087";
  3978. //
  3979. // pointLabel213
  3980. //
  3981. this.pointLabel213.Location = new System.Drawing.Point(1746, 225);
  3982. this.pointLabel213.Name = "pointLabel213";
  3983. this.pointLabel213.Size = new System.Drawing.Size(51, 18);
  3984. this.pointLabel213.TabIndex = 356;
  3985. this.pointLabel213.TagData = null;
  3986. this.pointLabel213.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0088";
  3987. //
  3988. // pointLabel214
  3989. //
  3990. this.pointLabel214.Location = new System.Drawing.Point(1746, 147);
  3991. this.pointLabel214.Name = "pointLabel214";
  3992. this.pointLabel214.Size = new System.Drawing.Size(51, 18);
  3993. this.pointLabel214.TabIndex = 355;
  3994. this.pointLabel214.TagData = null;
  3995. this.pointLabel214.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_001_AI0083";
  3996. //
  3997. // pointLabel215
  3998. //
  3999. this.pointLabel215.Location = new System.Drawing.Point(1699, 476);
  4000. this.pointLabel215.Name = "pointLabel215";
  4001. this.pointLabel215.Size = new System.Drawing.Size(38, 18);
  4002. this.pointLabel215.TabIndex = 434;
  4003. this.pointLabel215.TagData = null;
  4004. this.pointLabel215.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L5_019_AI0099";
  4005. //
  4006. // pointLabel216
  4007. //
  4008. this.pointLabel216.Location = new System.Drawing.Point(1699, 502);
  4009. this.pointLabel216.Name = "pointLabel216";
  4010. this.pointLabel216.Size = new System.Drawing.Size(38, 18);
  4011. this.pointLabel216.TabIndex = 433;
  4012. this.pointLabel216.TagData = null;
  4013. this.pointLabel216.TagId = null;
  4014. //
  4015. // pointLabel217
  4016. //
  4017. this.pointLabel217.Location = new System.Drawing.Point(1699, 528);
  4018. this.pointLabel217.Name = "pointLabel217";
  4019. this.pointLabel217.Size = new System.Drawing.Size(38, 18);
  4020. this.pointLabel217.TabIndex = 432;
  4021. this.pointLabel217.TagData = null;
  4022. this.pointLabel217.TagId = null;
  4023. //
  4024. // pointLabel218
  4025. //
  4026. this.pointLabel218.Location = new System.Drawing.Point(1699, 450);
  4027. this.pointLabel218.Name = "pointLabel218";
  4028. this.pointLabel218.Size = new System.Drawing.Size(38, 18);
  4029. this.pointLabel218.TabIndex = 431;
  4030. this.pointLabel218.TagData = null;
  4031. this.pointLabel218.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L5_019_AI0095";
  4032. //
  4033. // pointLabel219
  4034. //
  4035. this.pointLabel219.Location = new System.Drawing.Point(1648, 476);
  4036. this.pointLabel219.Name = "pointLabel219";
  4037. this.pointLabel219.Size = new System.Drawing.Size(38, 18);
  4038. this.pointLabel219.TabIndex = 430;
  4039. this.pointLabel219.TagData = null;
  4040. this.pointLabel219.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L5_018_AI0099";
  4041. //
  4042. // pointLabel220
  4043. //
  4044. this.pointLabel220.Location = new System.Drawing.Point(1648, 502);
  4045. this.pointLabel220.Name = "pointLabel220";
  4046. this.pointLabel220.Size = new System.Drawing.Size(38, 18);
  4047. this.pointLabel220.TabIndex = 429;
  4048. this.pointLabel220.TagData = null;
  4049. this.pointLabel220.TagId = null;
  4050. //
  4051. // pointLabel221
  4052. //
  4053. this.pointLabel221.Location = new System.Drawing.Point(1648, 528);
  4054. this.pointLabel221.Name = "pointLabel221";
  4055. this.pointLabel221.Size = new System.Drawing.Size(38, 18);
  4056. this.pointLabel221.TabIndex = 428;
  4057. this.pointLabel221.TagData = null;
  4058. this.pointLabel221.TagId = null;
  4059. //
  4060. // pointLabel222
  4061. //
  4062. this.pointLabel222.Location = new System.Drawing.Point(1648, 450);
  4063. this.pointLabel222.Name = "pointLabel222";
  4064. this.pointLabel222.Size = new System.Drawing.Size(38, 18);
  4065. this.pointLabel222.TabIndex = 427;
  4066. this.pointLabel222.TagData = null;
  4067. this.pointLabel222.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L5_018_AI0095";
  4068. //
  4069. // pointLabel223
  4070. //
  4071. this.pointLabel223.Location = new System.Drawing.Point(1607, 476);
  4072. this.pointLabel223.Name = "pointLabel223";
  4073. this.pointLabel223.Size = new System.Drawing.Size(38, 18);
  4074. this.pointLabel223.TabIndex = 426;
  4075. this.pointLabel223.TagData = null;
  4076. this.pointLabel223.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L5_017_AI0099";
  4077. //
  4078. // pointLabel224
  4079. //
  4080. this.pointLabel224.Location = new System.Drawing.Point(1607, 502);
  4081. this.pointLabel224.Name = "pointLabel224";
  4082. this.pointLabel224.Size = new System.Drawing.Size(38, 18);
  4083. this.pointLabel224.TabIndex = 425;
  4084. this.pointLabel224.TagData = null;
  4085. this.pointLabel224.TagId = null;
  4086. //
  4087. // pointLabel225
  4088. //
  4089. this.pointLabel225.Location = new System.Drawing.Point(1607, 528);
  4090. this.pointLabel225.Name = "pointLabel225";
  4091. this.pointLabel225.Size = new System.Drawing.Size(38, 18);
  4092. this.pointLabel225.TabIndex = 424;
  4093. this.pointLabel225.TagData = null;
  4094. this.pointLabel225.TagId = null;
  4095. //
  4096. // pointLabel226
  4097. //
  4098. this.pointLabel226.Location = new System.Drawing.Point(1607, 450);
  4099. this.pointLabel226.Name = "pointLabel226";
  4100. this.pointLabel226.Size = new System.Drawing.Size(38, 18);
  4101. this.pointLabel226.TabIndex = 423;
  4102. this.pointLabel226.TagData = null;
  4103. this.pointLabel226.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L5_017_AI0095";
  4104. //
  4105. // pointLabel227
  4106. //
  4107. this.pointLabel227.Location = new System.Drawing.Point(1566, 476);
  4108. this.pointLabel227.Name = "pointLabel227";
  4109. this.pointLabel227.Size = new System.Drawing.Size(38, 18);
  4110. this.pointLabel227.TabIndex = 422;
  4111. this.pointLabel227.TagData = null;
  4112. this.pointLabel227.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_016_AI0099";
  4113. //
  4114. // pointLabel228
  4115. //
  4116. this.pointLabel228.Location = new System.Drawing.Point(1566, 502);
  4117. this.pointLabel228.Name = "pointLabel228";
  4118. this.pointLabel228.Size = new System.Drawing.Size(38, 18);
  4119. this.pointLabel228.TabIndex = 421;
  4120. this.pointLabel228.TagData = null;
  4121. this.pointLabel228.TagId = null;
  4122. //
  4123. // pointLabel229
  4124. //
  4125. this.pointLabel229.Location = new System.Drawing.Point(1566, 528);
  4126. this.pointLabel229.Name = "pointLabel229";
  4127. this.pointLabel229.Size = new System.Drawing.Size(38, 18);
  4128. this.pointLabel229.TabIndex = 420;
  4129. this.pointLabel229.TagData = null;
  4130. this.pointLabel229.TagId = null;
  4131. //
  4132. // pointLabel230
  4133. //
  4134. this.pointLabel230.Location = new System.Drawing.Point(1566, 450);
  4135. this.pointLabel230.Name = "pointLabel230";
  4136. this.pointLabel230.Size = new System.Drawing.Size(38, 18);
  4137. this.pointLabel230.TabIndex = 419;
  4138. this.pointLabel230.TagData = null;
  4139. this.pointLabel230.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_016_AI0095";
  4140. //
  4141. // pointLabel231
  4142. //
  4143. this.pointLabel231.Location = new System.Drawing.Point(1525, 476);
  4144. this.pointLabel231.Name = "pointLabel231";
  4145. this.pointLabel231.Size = new System.Drawing.Size(38, 18);
  4146. this.pointLabel231.TabIndex = 418;
  4147. this.pointLabel231.TagData = null;
  4148. this.pointLabel231.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_015_AI0099";
  4149. //
  4150. // pointLabel232
  4151. //
  4152. this.pointLabel232.Location = new System.Drawing.Point(1525, 502);
  4153. this.pointLabel232.Name = "pointLabel232";
  4154. this.pointLabel232.Size = new System.Drawing.Size(38, 18);
  4155. this.pointLabel232.TabIndex = 417;
  4156. this.pointLabel232.TagData = null;
  4157. this.pointLabel232.TagId = null;
  4158. //
  4159. // pointLabel233
  4160. //
  4161. this.pointLabel233.Location = new System.Drawing.Point(1525, 528);
  4162. this.pointLabel233.Name = "pointLabel233";
  4163. this.pointLabel233.Size = new System.Drawing.Size(38, 18);
  4164. this.pointLabel233.TabIndex = 416;
  4165. this.pointLabel233.TagData = null;
  4166. this.pointLabel233.TagId = null;
  4167. //
  4168. // pointLabel234
  4169. //
  4170. this.pointLabel234.Location = new System.Drawing.Point(1525, 450);
  4171. this.pointLabel234.Name = "pointLabel234";
  4172. this.pointLabel234.Size = new System.Drawing.Size(38, 18);
  4173. this.pointLabel234.TabIndex = 415;
  4174. this.pointLabel234.TagData = null;
  4175. this.pointLabel234.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_015_AI0095";
  4176. //
  4177. // pointLabel235
  4178. //
  4179. this.pointLabel235.Location = new System.Drawing.Point(1484, 476);
  4180. this.pointLabel235.Name = "pointLabel235";
  4181. this.pointLabel235.Size = new System.Drawing.Size(38, 18);
  4182. this.pointLabel235.TabIndex = 414;
  4183. this.pointLabel235.TagData = null;
  4184. this.pointLabel235.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_014_AI0099";
  4185. //
  4186. // pointLabel236
  4187. //
  4188. this.pointLabel236.Location = new System.Drawing.Point(1484, 502);
  4189. this.pointLabel236.Name = "pointLabel236";
  4190. this.pointLabel236.Size = new System.Drawing.Size(38, 18);
  4191. this.pointLabel236.TabIndex = 413;
  4192. this.pointLabel236.TagData = null;
  4193. this.pointLabel236.TagId = null;
  4194. //
  4195. // pointLabel237
  4196. //
  4197. this.pointLabel237.Location = new System.Drawing.Point(1484, 528);
  4198. this.pointLabel237.Name = "pointLabel237";
  4199. this.pointLabel237.Size = new System.Drawing.Size(38, 18);
  4200. this.pointLabel237.TabIndex = 412;
  4201. this.pointLabel237.TagData = null;
  4202. this.pointLabel237.TagId = null;
  4203. //
  4204. // pointLabel238
  4205. //
  4206. this.pointLabel238.Location = new System.Drawing.Point(1484, 450);
  4207. this.pointLabel238.Name = "pointLabel238";
  4208. this.pointLabel238.Size = new System.Drawing.Size(38, 18);
  4209. this.pointLabel238.TabIndex = 411;
  4210. this.pointLabel238.TagData = null;
  4211. this.pointLabel238.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_014_AI0095";
  4212. //
  4213. // pointLabel239
  4214. //
  4215. this.pointLabel239.Location = new System.Drawing.Point(1443, 476);
  4216. this.pointLabel239.Name = "pointLabel239";
  4217. this.pointLabel239.Size = new System.Drawing.Size(38, 18);
  4218. this.pointLabel239.TabIndex = 410;
  4219. this.pointLabel239.TagData = null;
  4220. this.pointLabel239.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_013_AI0099";
  4221. //
  4222. // pointLabel240
  4223. //
  4224. this.pointLabel240.Location = new System.Drawing.Point(1443, 502);
  4225. this.pointLabel240.Name = "pointLabel240";
  4226. this.pointLabel240.Size = new System.Drawing.Size(38, 18);
  4227. this.pointLabel240.TabIndex = 409;
  4228. this.pointLabel240.TagData = null;
  4229. this.pointLabel240.TagId = null;
  4230. //
  4231. // pointLabel241
  4232. //
  4233. this.pointLabel241.Location = new System.Drawing.Point(1443, 528);
  4234. this.pointLabel241.Name = "pointLabel241";
  4235. this.pointLabel241.Size = new System.Drawing.Size(38, 18);
  4236. this.pointLabel241.TabIndex = 408;
  4237. this.pointLabel241.TagData = null;
  4238. this.pointLabel241.TagId = null;
  4239. //
  4240. // pointLabel242
  4241. //
  4242. this.pointLabel242.Location = new System.Drawing.Point(1443, 450);
  4243. this.pointLabel242.Name = "pointLabel242";
  4244. this.pointLabel242.Size = new System.Drawing.Size(38, 18);
  4245. this.pointLabel242.TabIndex = 407;
  4246. this.pointLabel242.TagData = null;
  4247. this.pointLabel242.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L4_013_AI0095";
  4248. //
  4249. // pointLabel243
  4250. //
  4251. this.pointLabel243.Location = new System.Drawing.Point(1402, 476);
  4252. this.pointLabel243.Name = "pointLabel243";
  4253. this.pointLabel243.Size = new System.Drawing.Size(38, 18);
  4254. this.pointLabel243.TabIndex = 406;
  4255. this.pointLabel243.TagData = null;
  4256. this.pointLabel243.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_012_AI0099";
  4257. //
  4258. // pointLabel244
  4259. //
  4260. this.pointLabel244.Location = new System.Drawing.Point(1402, 502);
  4261. this.pointLabel244.Name = "pointLabel244";
  4262. this.pointLabel244.Size = new System.Drawing.Size(38, 18);
  4263. this.pointLabel244.TabIndex = 405;
  4264. this.pointLabel244.TagData = null;
  4265. this.pointLabel244.TagId = null;
  4266. //
  4267. // pointLabel245
  4268. //
  4269. this.pointLabel245.Location = new System.Drawing.Point(1402, 528);
  4270. this.pointLabel245.Name = "pointLabel245";
  4271. this.pointLabel245.Size = new System.Drawing.Size(38, 18);
  4272. this.pointLabel245.TabIndex = 404;
  4273. this.pointLabel245.TagData = null;
  4274. this.pointLabel245.TagId = null;
  4275. //
  4276. // pointLabel246
  4277. //
  4278. this.pointLabel246.Location = new System.Drawing.Point(1402, 450);
  4279. this.pointLabel246.Name = "pointLabel246";
  4280. this.pointLabel246.Size = new System.Drawing.Size(38, 18);
  4281. this.pointLabel246.TabIndex = 403;
  4282. this.pointLabel246.TagData = null;
  4283. this.pointLabel246.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_012_AI0095";
  4284. //
  4285. // pointLabel247
  4286. //
  4287. this.pointLabel247.Location = new System.Drawing.Point(1361, 476);
  4288. this.pointLabel247.Name = "pointLabel247";
  4289. this.pointLabel247.Size = new System.Drawing.Size(38, 18);
  4290. this.pointLabel247.TabIndex = 402;
  4291. this.pointLabel247.TagData = null;
  4292. this.pointLabel247.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_011_AI0099";
  4293. //
  4294. // pointLabel248
  4295. //
  4296. this.pointLabel248.Location = new System.Drawing.Point(1361, 502);
  4297. this.pointLabel248.Name = "pointLabel248";
  4298. this.pointLabel248.Size = new System.Drawing.Size(38, 18);
  4299. this.pointLabel248.TabIndex = 401;
  4300. this.pointLabel248.TagData = null;
  4301. this.pointLabel248.TagId = null;
  4302. //
  4303. // pointLabel249
  4304. //
  4305. this.pointLabel249.Location = new System.Drawing.Point(1361, 528);
  4306. this.pointLabel249.Name = "pointLabel249";
  4307. this.pointLabel249.Size = new System.Drawing.Size(38, 18);
  4308. this.pointLabel249.TabIndex = 400;
  4309. this.pointLabel249.TagData = null;
  4310. this.pointLabel249.TagId = null;
  4311. //
  4312. // pointLabel250
  4313. //
  4314. this.pointLabel250.Location = new System.Drawing.Point(1361, 450);
  4315. this.pointLabel250.Name = "pointLabel250";
  4316. this.pointLabel250.Size = new System.Drawing.Size(38, 18);
  4317. this.pointLabel250.TabIndex = 399;
  4318. this.pointLabel250.TagData = null;
  4319. this.pointLabel250.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_011_AI0095";
  4320. //
  4321. // pointLabel251
  4322. //
  4323. this.pointLabel251.Location = new System.Drawing.Point(1320, 476);
  4324. this.pointLabel251.Name = "pointLabel251";
  4325. this.pointLabel251.Size = new System.Drawing.Size(38, 18);
  4326. this.pointLabel251.TabIndex = 398;
  4327. this.pointLabel251.TagData = null;
  4328. this.pointLabel251.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_010_AI0099";
  4329. //
  4330. // pointLabel252
  4331. //
  4332. this.pointLabel252.Location = new System.Drawing.Point(1320, 502);
  4333. this.pointLabel252.Name = "pointLabel252";
  4334. this.pointLabel252.Size = new System.Drawing.Size(38, 18);
  4335. this.pointLabel252.TabIndex = 397;
  4336. this.pointLabel252.TagData = null;
  4337. this.pointLabel252.TagId = null;
  4338. //
  4339. // pointLabel253
  4340. //
  4341. this.pointLabel253.Location = new System.Drawing.Point(1320, 528);
  4342. this.pointLabel253.Name = "pointLabel253";
  4343. this.pointLabel253.Size = new System.Drawing.Size(38, 18);
  4344. this.pointLabel253.TabIndex = 396;
  4345. this.pointLabel253.TagData = null;
  4346. this.pointLabel253.TagId = null;
  4347. //
  4348. // pointLabel254
  4349. //
  4350. this.pointLabel254.Location = new System.Drawing.Point(1320, 450);
  4351. this.pointLabel254.Name = "pointLabel254";
  4352. this.pointLabel254.Size = new System.Drawing.Size(38, 18);
  4353. this.pointLabel254.TabIndex = 395;
  4354. this.pointLabel254.TagData = null;
  4355. this.pointLabel254.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_010_AI0095";
  4356. //
  4357. // pointLabel255
  4358. //
  4359. this.pointLabel255.Location = new System.Drawing.Point(1279, 476);
  4360. this.pointLabel255.Name = "pointLabel255";
  4361. this.pointLabel255.Size = new System.Drawing.Size(38, 18);
  4362. this.pointLabel255.TabIndex = 394;
  4363. this.pointLabel255.TagData = null;
  4364. this.pointLabel255.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_009_AI0099";
  4365. //
  4366. // pointLabel256
  4367. //
  4368. this.pointLabel256.Location = new System.Drawing.Point(1279, 502);
  4369. this.pointLabel256.Name = "pointLabel256";
  4370. this.pointLabel256.Size = new System.Drawing.Size(38, 18);
  4371. this.pointLabel256.TabIndex = 393;
  4372. this.pointLabel256.TagData = null;
  4373. this.pointLabel256.TagId = null;
  4374. //
  4375. // pointLabel257
  4376. //
  4377. this.pointLabel257.Location = new System.Drawing.Point(1279, 528);
  4378. this.pointLabel257.Name = "pointLabel257";
  4379. this.pointLabel257.Size = new System.Drawing.Size(38, 18);
  4380. this.pointLabel257.TabIndex = 392;
  4381. this.pointLabel257.TagData = null;
  4382. this.pointLabel257.TagId = null;
  4383. //
  4384. // pointLabel258
  4385. //
  4386. this.pointLabel258.Location = new System.Drawing.Point(1279, 450);
  4387. this.pointLabel258.Name = "pointLabel258";
  4388. this.pointLabel258.Size = new System.Drawing.Size(38, 18);
  4389. this.pointLabel258.TabIndex = 391;
  4390. this.pointLabel258.TagData = null;
  4391. this.pointLabel258.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L3_009_AI0095";
  4392. //
  4393. // pointLabel259
  4394. //
  4395. this.pointLabel259.Location = new System.Drawing.Point(1238, 476);
  4396. this.pointLabel259.Name = "pointLabel259";
  4397. this.pointLabel259.Size = new System.Drawing.Size(38, 18);
  4398. this.pointLabel259.TabIndex = 390;
  4399. this.pointLabel259.TagData = null;
  4400. this.pointLabel259.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_008_AI0099";
  4401. //
  4402. // pointLabel260
  4403. //
  4404. this.pointLabel260.Location = new System.Drawing.Point(1238, 502);
  4405. this.pointLabel260.Name = "pointLabel260";
  4406. this.pointLabel260.Size = new System.Drawing.Size(38, 18);
  4407. this.pointLabel260.TabIndex = 389;
  4408. this.pointLabel260.TagData = null;
  4409. this.pointLabel260.TagId = null;
  4410. //
  4411. // pointLabel261
  4412. //
  4413. this.pointLabel261.Location = new System.Drawing.Point(1238, 528);
  4414. this.pointLabel261.Name = "pointLabel261";
  4415. this.pointLabel261.Size = new System.Drawing.Size(38, 18);
  4416. this.pointLabel261.TabIndex = 388;
  4417. this.pointLabel261.TagData = null;
  4418. this.pointLabel261.TagId = null;
  4419. //
  4420. // pointLabel262
  4421. //
  4422. this.pointLabel262.Location = new System.Drawing.Point(1238, 450);
  4423. this.pointLabel262.Name = "pointLabel262";
  4424. this.pointLabel262.Size = new System.Drawing.Size(38, 18);
  4425. this.pointLabel262.TabIndex = 387;
  4426. this.pointLabel262.TagData = null;
  4427. this.pointLabel262.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_008_AI0095";
  4428. //
  4429. // pointLabel263
  4430. //
  4431. this.pointLabel263.Location = new System.Drawing.Point(1197, 476);
  4432. this.pointLabel263.Name = "pointLabel263";
  4433. this.pointLabel263.Size = new System.Drawing.Size(38, 18);
  4434. this.pointLabel263.TabIndex = 386;
  4435. this.pointLabel263.TagData = null;
  4436. this.pointLabel263.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_007_AI0099";
  4437. //
  4438. // pointLabel264
  4439. //
  4440. this.pointLabel264.Location = new System.Drawing.Point(1197, 502);
  4441. this.pointLabel264.Name = "pointLabel264";
  4442. this.pointLabel264.Size = new System.Drawing.Size(38, 18);
  4443. this.pointLabel264.TabIndex = 385;
  4444. this.pointLabel264.TagData = null;
  4445. this.pointLabel264.TagId = null;
  4446. //
  4447. // pointLabel265
  4448. //
  4449. this.pointLabel265.Location = new System.Drawing.Point(1197, 528);
  4450. this.pointLabel265.Name = "pointLabel265";
  4451. this.pointLabel265.Size = new System.Drawing.Size(38, 18);
  4452. this.pointLabel265.TabIndex = 384;
  4453. this.pointLabel265.TagData = null;
  4454. this.pointLabel265.TagId = null;
  4455. //
  4456. // pointLabel266
  4457. //
  4458. this.pointLabel266.Location = new System.Drawing.Point(1197, 450);
  4459. this.pointLabel266.Name = "pointLabel266";
  4460. this.pointLabel266.Size = new System.Drawing.Size(38, 18);
  4461. this.pointLabel266.TabIndex = 383;
  4462. this.pointLabel266.TagData = null;
  4463. this.pointLabel266.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_007_AI0095";
  4464. //
  4465. // pointLabel267
  4466. //
  4467. this.pointLabel267.Location = new System.Drawing.Point(1156, 476);
  4468. this.pointLabel267.Name = "pointLabel267";
  4469. this.pointLabel267.Size = new System.Drawing.Size(38, 18);
  4470. this.pointLabel267.TabIndex = 382;
  4471. this.pointLabel267.TagData = null;
  4472. this.pointLabel267.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_006_AI0099";
  4473. //
  4474. // pointLabel268
  4475. //
  4476. this.pointLabel268.Location = new System.Drawing.Point(1156, 502);
  4477. this.pointLabel268.Name = "pointLabel268";
  4478. this.pointLabel268.Size = new System.Drawing.Size(38, 18);
  4479. this.pointLabel268.TabIndex = 381;
  4480. this.pointLabel268.TagData = null;
  4481. this.pointLabel268.TagId = null;
  4482. //
  4483. // pointLabel269
  4484. //
  4485. this.pointLabel269.Location = new System.Drawing.Point(1156, 528);
  4486. this.pointLabel269.Name = "pointLabel269";
  4487. this.pointLabel269.Size = new System.Drawing.Size(38, 18);
  4488. this.pointLabel269.TabIndex = 380;
  4489. this.pointLabel269.TagData = null;
  4490. this.pointLabel269.TagId = null;
  4491. //
  4492. // pointLabel270
  4493. //
  4494. this.pointLabel270.Location = new System.Drawing.Point(1156, 450);
  4495. this.pointLabel270.Name = "pointLabel270";
  4496. this.pointLabel270.Size = new System.Drawing.Size(38, 18);
  4497. this.pointLabel270.TabIndex = 379;
  4498. this.pointLabel270.TagData = null;
  4499. this.pointLabel270.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_006_AI0095";
  4500. //
  4501. // pointLabel271
  4502. //
  4503. this.pointLabel271.Location = new System.Drawing.Point(1115, 476);
  4504. this.pointLabel271.Name = "pointLabel271";
  4505. this.pointLabel271.Size = new System.Drawing.Size(38, 18);
  4506. this.pointLabel271.TabIndex = 378;
  4507. this.pointLabel271.TagData = null;
  4508. this.pointLabel271.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_005_AI0099";
  4509. //
  4510. // pointLabel272
  4511. //
  4512. this.pointLabel272.Location = new System.Drawing.Point(1115, 502);
  4513. this.pointLabel272.Name = "pointLabel272";
  4514. this.pointLabel272.Size = new System.Drawing.Size(38, 18);
  4515. this.pointLabel272.TabIndex = 377;
  4516. this.pointLabel272.TagData = null;
  4517. this.pointLabel272.TagId = null;
  4518. //
  4519. // pointLabel273
  4520. //
  4521. this.pointLabel273.Location = new System.Drawing.Point(1115, 528);
  4522. this.pointLabel273.Name = "pointLabel273";
  4523. this.pointLabel273.Size = new System.Drawing.Size(38, 18);
  4524. this.pointLabel273.TabIndex = 376;
  4525. this.pointLabel273.TagData = null;
  4526. this.pointLabel273.TagId = null;
  4527. //
  4528. // pointLabel274
  4529. //
  4530. this.pointLabel274.Location = new System.Drawing.Point(1115, 450);
  4531. this.pointLabel274.Name = "pointLabel274";
  4532. this.pointLabel274.Size = new System.Drawing.Size(38, 18);
  4533. this.pointLabel274.TabIndex = 375;
  4534. this.pointLabel274.TagData = null;
  4535. this.pointLabel274.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L2_005_AI0095";
  4536. //
  4537. // pointLabel275
  4538. //
  4539. this.pointLabel275.Location = new System.Drawing.Point(1074, 476);
  4540. this.pointLabel275.Name = "pointLabel275";
  4541. this.pointLabel275.Size = new System.Drawing.Size(38, 18);
  4542. this.pointLabel275.TabIndex = 374;
  4543. this.pointLabel275.TagData = null;
  4544. this.pointLabel275.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_004_AI0099";
  4545. //
  4546. // pointLabel276
  4547. //
  4548. this.pointLabel276.Location = new System.Drawing.Point(1074, 502);
  4549. this.pointLabel276.Name = "pointLabel276";
  4550. this.pointLabel276.Size = new System.Drawing.Size(38, 18);
  4551. this.pointLabel276.TabIndex = 373;
  4552. this.pointLabel276.TagData = null;
  4553. this.pointLabel276.TagId = null;
  4554. //
  4555. // pointLabel277
  4556. //
  4557. this.pointLabel277.Location = new System.Drawing.Point(1074, 528);
  4558. this.pointLabel277.Name = "pointLabel277";
  4559. this.pointLabel277.Size = new System.Drawing.Size(38, 18);
  4560. this.pointLabel277.TabIndex = 372;
  4561. this.pointLabel277.TagData = null;
  4562. this.pointLabel277.TagId = null;
  4563. //
  4564. // pointLabel278
  4565. //
  4566. this.pointLabel278.Location = new System.Drawing.Point(1074, 450);
  4567. this.pointLabel278.Name = "pointLabel278";
  4568. this.pointLabel278.Size = new System.Drawing.Size(38, 18);
  4569. this.pointLabel278.TabIndex = 371;
  4570. this.pointLabel278.TagData = null;
  4571. this.pointLabel278.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_004_AI0095";
  4572. //
  4573. // pointLabel279
  4574. //
  4575. this.pointLabel279.Location = new System.Drawing.Point(1033, 476);
  4576. this.pointLabel279.Name = "pointLabel279";
  4577. this.pointLabel279.Size = new System.Drawing.Size(38, 18);
  4578. this.pointLabel279.TabIndex = 370;
  4579. this.pointLabel279.TagData = null;
  4580. this.pointLabel279.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_003_AI0099";
  4581. //
  4582. // pointLabel280
  4583. //
  4584. this.pointLabel280.Location = new System.Drawing.Point(1033, 502);
  4585. this.pointLabel280.Name = "pointLabel280";
  4586. this.pointLabel280.Size = new System.Drawing.Size(38, 18);
  4587. this.pointLabel280.TabIndex = 369;
  4588. this.pointLabel280.TagData = null;
  4589. this.pointLabel280.TagId = null;
  4590. //
  4591. // pointLabel281
  4592. //
  4593. this.pointLabel281.Location = new System.Drawing.Point(1033, 528);
  4594. this.pointLabel281.Name = "pointLabel281";
  4595. this.pointLabel281.Size = new System.Drawing.Size(38, 18);
  4596. this.pointLabel281.TabIndex = 368;
  4597. this.pointLabel281.TagData = null;
  4598. this.pointLabel281.TagId = null;
  4599. //
  4600. // pointLabel282
  4601. //
  4602. this.pointLabel282.Location = new System.Drawing.Point(1033, 450);
  4603. this.pointLabel282.Name = "pointLabel282";
  4604. this.pointLabel282.Size = new System.Drawing.Size(38, 18);
  4605. this.pointLabel282.TabIndex = 367;
  4606. this.pointLabel282.TagData = null;
  4607. this.pointLabel282.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_003_AI0095";
  4608. //
  4609. // pointLabel283
  4610. //
  4611. this.pointLabel283.Location = new System.Drawing.Point(992, 476);
  4612. this.pointLabel283.Name = "pointLabel283";
  4613. this.pointLabel283.Size = new System.Drawing.Size(38, 18);
  4614. this.pointLabel283.TabIndex = 366;
  4615. this.pointLabel283.TagData = null;
  4616. this.pointLabel283.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_002_AI0099";
  4617. //
  4618. // pointLabel284
  4619. //
  4620. this.pointLabel284.Location = new System.Drawing.Point(992, 502);
  4621. this.pointLabel284.Name = "pointLabel284";
  4622. this.pointLabel284.Size = new System.Drawing.Size(38, 18);
  4623. this.pointLabel284.TabIndex = 365;
  4624. this.pointLabel284.TagData = null;
  4625. this.pointLabel284.TagId = null;
  4626. //
  4627. // pointLabel285
  4628. //
  4629. this.pointLabel285.Location = new System.Drawing.Point(992, 528);
  4630. this.pointLabel285.Name = "pointLabel285";
  4631. this.pointLabel285.Size = new System.Drawing.Size(38, 18);
  4632. this.pointLabel285.TabIndex = 364;
  4633. this.pointLabel285.TagData = null;
  4634. this.pointLabel285.TagId = null;
  4635. //
  4636. // pointLabel286
  4637. //
  4638. this.pointLabel286.Location = new System.Drawing.Point(992, 450);
  4639. this.pointLabel286.Name = "pointLabel286";
  4640. this.pointLabel286.Size = new System.Drawing.Size(38, 18);
  4641. this.pointLabel286.TabIndex = 363;
  4642. this.pointLabel286.TagData = null;
  4643. this.pointLabel286.TagId = "PLSJ1.NX_GD_PLG_DQ_P1_L1_002_AI0095";
  4644. //
  4645. // pointLabel287
  4646. //
  4647. this.pointLabel287.Location = new System.Drawing.Point(951, 476);
  4648. this.pointLabel287.Name = "pointLabel287";
  4649. this.pointLabel287.Size = new System.Drawing.Size(38, 18);
  4650. this.pointLabel287.TabIndex = 362;
  4651. this.pointLabel287.TagData = null;
  4652. this.pointLabel287.TagId = "";
  4653. //
  4654. // pointLabel288
  4655. //
  4656. this.pointLabel288.Location = new System.Drawing.Point(951, 502);
  4657. this.pointLabel288.Name = "pointLabel288";
  4658. this.pointLabel288.Size = new System.Drawing.Size(38, 18);
  4659. this.pointLabel288.TabIndex = 361;
  4660. this.pointLabel288.TagData = null;
  4661. this.pointLabel288.TagId = null;
  4662. //
  4663. // pointLabel289
  4664. //
  4665. this.pointLabel289.Location = new System.Drawing.Point(951, 528);
  4666. this.pointLabel289.Name = "pointLabel289";
  4667. this.pointLabel289.Size = new System.Drawing.Size(38, 18);
  4668. this.pointLabel289.TabIndex = 360;
  4669. this.pointLabel289.TagData = null;
  4670. this.pointLabel289.TagId = null;
  4671. //
  4672. // pointLabel290
  4673. //
  4674. this.pointLabel290.Location = new System.Drawing.Point(951, 450);
  4675. this.pointLabel290.Name = "pointLabel290";
  4676. this.pointLabel290.Size = new System.Drawing.Size(38, 18);
  4677. this.pointLabel290.TabIndex = 359;
  4678. this.pointLabel290.TagData = null;
  4679. this.pointLabel290.TagId = "";
  4680. //
  4681. // syz_pl
  4682. //
  4683. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  4684. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  4685. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  4686. this.Controls.Add(this.panel2);
  4687. this.Name = "syz_pl";
  4688. this.Controls.SetChildIndex(this.pnlImage, 0);
  4689. this.Controls.SetChildIndex(this.panel2, 0);
  4690. this.pnlImage.ResumeLayout(false);
  4691. this.ResumeLayout(false);
  4692. }
  4693. #endregion
  4694. //private System.Windows.Forms.Panel pnlImage;
  4695. private System.Windows.Forms.Panel panel2;
  4696. private SwitchLeft switchLeft1;
  4697. private Breaker breaker1;
  4698. private HandCart handCart1;
  4699. private HandCart handCart20;
  4700. private HandCart handCart19;
  4701. private HandCart handCart18;
  4702. private HandCart handCart17;
  4703. private HandCart handCart16;
  4704. private HandCart handCart15;
  4705. private HandCart handCart14;
  4706. private HandCart handCart13;
  4707. private HandCart handCart12;
  4708. private HandCart handCart11;
  4709. private HandCart handCart10;
  4710. private HandCart handCart9;
  4711. private Breaker breaker67;
  4712. private Breaker breaker66;
  4713. private Breaker breaker65;
  4714. private Breaker breaker64;
  4715. private Breaker breaker63;
  4716. private Breaker breaker62;
  4717. private Breaker breaker61;
  4718. private Breaker breaker60;
  4719. private Breaker breaker59;
  4720. private Breaker breaker58;
  4721. private Breaker breaker57;
  4722. private Breaker breaker56;
  4723. private Breaker breaker55;
  4724. private Breaker breaker54;
  4725. private Breaker breaker53;
  4726. private Breaker breaker52;
  4727. private Breaker breaker51;
  4728. private Breaker breaker50;
  4729. private Breaker breaker49;
  4730. private Breaker breaker48;
  4731. private Breaker breaker47;
  4732. private Breaker breaker46;
  4733. private Breaker breaker42;
  4734. private Breaker breaker41;
  4735. private Breaker breaker40;
  4736. private Breaker breaker39;
  4737. private Breaker breaker38;
  4738. private Breaker breaker37;
  4739. private Breaker breaker36;
  4740. private Breaker breaker35;
  4741. private Breaker breaker34;
  4742. private Breaker breaker33;
  4743. private Breaker breaker32;
  4744. private Breaker breaker31;
  4745. private Breaker breaker30;
  4746. private Breaker breaker29;
  4747. private Breaker breaker28;
  4748. private Breaker breaker27;
  4749. private Breaker breaker26;
  4750. private Breaker breaker25;
  4751. private Breaker breaker24;
  4752. private Breaker breaker23;
  4753. private Breaker breaker22;
  4754. private Breaker breaker21;
  4755. private Breaker breaker20;
  4756. private Breaker breaker19;
  4757. private Breaker breaker18;
  4758. private Breaker breaker17;
  4759. private Breaker breaker16;
  4760. private Breaker breaker15;
  4761. private Breaker breaker14;
  4762. private Breaker breaker13;
  4763. private Breaker breaker12;
  4764. private Breaker breaker11;
  4765. private Breaker breaker10;
  4766. private Breaker breaker9;
  4767. private Breaker breaker8;
  4768. private Breaker breaker7;
  4769. private Breaker breaker6;
  4770. private Breaker breaker5;
  4771. private Breaker breaker4;
  4772. private Breaker breaker3;
  4773. private Breaker breaker2;
  4774. private Breaker breaker77;
  4775. private Breaker breaker76;
  4776. private Breaker breaker75;
  4777. private Breaker breaker74;
  4778. private Breaker breaker73;
  4779. private Breaker breaker72;
  4780. private Breaker breaker71;
  4781. private Breaker breaker70;
  4782. private Breaker breaker69;
  4783. private Breaker breaker68;
  4784. private SwitchUpSmall switchUpSmall43;
  4785. private SwitchUpSmall switchUpSmall42;
  4786. private SwitchUpSmall switchUpSmall41;
  4787. private SwitchUpSmall switchUpSmall40;
  4788. private SwitchUpSmall switchUpSmall39;
  4789. private SwitchUpSmall switchUpSmall38;
  4790. private SwitchUpSmall switchUpSmall31;
  4791. private SwitchUpSmall switchUpSmall30;
  4792. private SwitchUpSmall switchUpSmall29;
  4793. private SwitchUpSmall switchUpSmall28;
  4794. private SwitchUpSmall switchUpSmall27;
  4795. private SwitchUpSmall switchUpSmall26;
  4796. private SwitchUpSmall switchUpSmall25;
  4797. private SwitchUpSmall switchUpSmall24;
  4798. private SwitchUpSmall switchUpSmall23;
  4799. private SwitchUpSmall switchUpSmall22;
  4800. private HandCartSmall handCartSmall1;
  4801. private SwitchUpSmall switchUpSmall21;
  4802. private SwitchUpSmall switchUpSmall20;
  4803. private SwitchUpSmall switchUpSmall18;
  4804. private SwitchUpSmall switchUpSmall16;
  4805. private SwitchUpSmall switchUpSmall15;
  4806. private SwitchUpSmall switchUpSmall14;
  4807. private SwitchUpSmall switchUpSmall13;
  4808. private SwitchUpSmall switchUpSmall12;
  4809. private SwitchUpSmall switchUpSmall11;
  4810. private SwitchUpSmall switchUpSmall10;
  4811. private SwitchUpSmall switchUpSmall9;
  4812. private SwitchUpSmall switchUpSmall8;
  4813. private SwitchUpSmall switchUpSmall7;
  4814. private SwitchUpSmall switchUpSmall6;
  4815. private SwitchUpSmall switchUpSmall5;
  4816. private SwitchUpSmall switchUpSmall4;
  4817. private SwitchUpSmall switchUpSmall3;
  4818. private SwitchUpSmall switchUpSmall2;
  4819. private SwitchUpSmall switchUpSmall1;
  4820. private PointLabel pointLabel2;
  4821. private PointLabel pointLabel17;
  4822. private PointLabel pointLabel18;
  4823. private PointLabel pointLabel15;
  4824. private PointLabel pointLabel16;
  4825. private PointLabel pointLabel13;
  4826. private PointLabel pointLabel14;
  4827. private PointLabel pointLabel9;
  4828. private PointLabel pointLabel10;
  4829. private PointLabel pointLabel11;
  4830. private PointLabel pointLabel12;
  4831. private PointLabel pointLabel5;
  4832. private PointLabel pointLabel6;
  4833. private PointLabel pointLabel7;
  4834. private PointLabel pointLabel8;
  4835. private PointLabel pointLabel4;
  4836. private PointLabel pointLabel3;
  4837. private PointLabel pointLabel1;
  4838. private PointLabel pointLabel23;
  4839. private PointLabel pointLabel24;
  4840. private PointLabel pointLabel25;
  4841. private PointLabel pointLabel26;
  4842. private PointLabel pointLabel39;
  4843. private PointLabel pointLabel40;
  4844. private PointLabel pointLabel41;
  4845. private PointLabel pointLabel42;
  4846. private PointLabel pointLabel43;
  4847. private PointLabel pointLabel44;
  4848. private PointLabel pointLabel45;
  4849. private PointLabel pointLabel46;
  4850. private PointLabel pointLabel47;
  4851. private PointLabel pointLabel48;
  4852. private PointLabel pointLabel49;
  4853. private PointLabel pointLabel50;
  4854. private PointLabel pointLabel51;
  4855. private PointLabel pointLabel52;
  4856. private PointLabel pointLabel53;
  4857. private PointLabel pointLabel54;
  4858. private PointLabel pointLabel31;
  4859. private PointLabel pointLabel32;
  4860. private PointLabel pointLabel33;
  4861. private PointLabel pointLabel34;
  4862. private PointLabel pointLabel35;
  4863. private PointLabel pointLabel36;
  4864. private PointLabel pointLabel37;
  4865. private PointLabel pointLabel38;
  4866. private PointLabel pointLabel27;
  4867. private PointLabel pointLabel28;
  4868. private PointLabel pointLabel29;
  4869. private PointLabel pointLabel30;
  4870. private PointLabel pointLabel215;
  4871. private PointLabel pointLabel216;
  4872. private PointLabel pointLabel217;
  4873. private PointLabel pointLabel218;
  4874. private PointLabel pointLabel219;
  4875. private PointLabel pointLabel220;
  4876. private PointLabel pointLabel221;
  4877. private PointLabel pointLabel222;
  4878. private PointLabel pointLabel223;
  4879. private PointLabel pointLabel224;
  4880. private PointLabel pointLabel225;
  4881. private PointLabel pointLabel226;
  4882. private PointLabel pointLabel227;
  4883. private PointLabel pointLabel228;
  4884. private PointLabel pointLabel229;
  4885. private PointLabel pointLabel230;
  4886. private PointLabel pointLabel231;
  4887. private PointLabel pointLabel232;
  4888. private PointLabel pointLabel233;
  4889. private PointLabel pointLabel234;
  4890. private PointLabel pointLabel235;
  4891. private PointLabel pointLabel236;
  4892. private PointLabel pointLabel237;
  4893. private PointLabel pointLabel238;
  4894. private PointLabel pointLabel239;
  4895. private PointLabel pointLabel240;
  4896. private PointLabel pointLabel241;
  4897. private PointLabel pointLabel242;
  4898. private PointLabel pointLabel243;
  4899. private PointLabel pointLabel244;
  4900. private PointLabel pointLabel245;
  4901. private PointLabel pointLabel246;
  4902. private PointLabel pointLabel247;
  4903. private PointLabel pointLabel248;
  4904. private PointLabel pointLabel249;
  4905. private PointLabel pointLabel250;
  4906. private PointLabel pointLabel251;
  4907. private PointLabel pointLabel252;
  4908. private PointLabel pointLabel253;
  4909. private PointLabel pointLabel254;
  4910. private PointLabel pointLabel255;
  4911. private PointLabel pointLabel256;
  4912. private PointLabel pointLabel257;
  4913. private PointLabel pointLabel258;
  4914. private PointLabel pointLabel259;
  4915. private PointLabel pointLabel260;
  4916. private PointLabel pointLabel261;
  4917. private PointLabel pointLabel262;
  4918. private PointLabel pointLabel263;
  4919. private PointLabel pointLabel264;
  4920. private PointLabel pointLabel265;
  4921. private PointLabel pointLabel266;
  4922. private PointLabel pointLabel267;
  4923. private PointLabel pointLabel268;
  4924. private PointLabel pointLabel269;
  4925. private PointLabel pointLabel270;
  4926. private PointLabel pointLabel271;
  4927. private PointLabel pointLabel272;
  4928. private PointLabel pointLabel273;
  4929. private PointLabel pointLabel274;
  4930. private PointLabel pointLabel275;
  4931. private PointLabel pointLabel276;
  4932. private PointLabel pointLabel277;
  4933. private PointLabel pointLabel278;
  4934. private PointLabel pointLabel279;
  4935. private PointLabel pointLabel280;
  4936. private PointLabel pointLabel281;
  4937. private PointLabel pointLabel282;
  4938. private PointLabel pointLabel283;
  4939. private PointLabel pointLabel284;
  4940. private PointLabel pointLabel285;
  4941. private PointLabel pointLabel286;
  4942. private PointLabel pointLabel287;
  4943. private PointLabel pointLabel288;
  4944. private PointLabel pointLabel289;
  4945. private PointLabel pointLabel290;
  4946. private PointLabel pointLabel211;
  4947. private PointLabel pointLabel212;
  4948. private PointLabel pointLabel213;
  4949. private PointLabel pointLabel214;
  4950. private PointLabel pointLabel207;
  4951. private PointLabel pointLabel208;
  4952. private PointLabel pointLabel209;
  4953. private PointLabel pointLabel210;
  4954. private PointLabel pointLabel203;
  4955. private PointLabel pointLabel204;
  4956. private PointLabel pointLabel205;
  4957. private PointLabel pointLabel206;
  4958. private PointLabel pointLabel199;
  4959. private PointLabel pointLabel200;
  4960. private PointLabel pointLabel201;
  4961. private PointLabel pointLabel202;
  4962. private PointLabel pointLabel195;
  4963. private PointLabel pointLabel196;
  4964. private PointLabel pointLabel197;
  4965. private PointLabel pointLabel198;
  4966. private PointLabel pointLabel191;
  4967. private PointLabel pointLabel192;
  4968. private PointLabel pointLabel193;
  4969. private PointLabel pointLabel194;
  4970. private PointLabel pointLabel183;
  4971. private PointLabel pointLabel184;
  4972. private PointLabel pointLabel185;
  4973. private PointLabel pointLabel186;
  4974. private PointLabel pointLabel187;
  4975. private PointLabel pointLabel188;
  4976. private PointLabel pointLabel189;
  4977. private PointLabel pointLabel190;
  4978. private PointLabel pointLabel111;
  4979. private PointLabel pointLabel112;
  4980. private PointLabel pointLabel113;
  4981. private PointLabel pointLabel114;
  4982. private PointLabel pointLabel115;
  4983. private PointLabel pointLabel116;
  4984. private PointLabel pointLabel117;
  4985. private PointLabel pointLabel118;
  4986. private PointLabel pointLabel119;
  4987. private PointLabel pointLabel120;
  4988. private PointLabel pointLabel121;
  4989. private PointLabel pointLabel122;
  4990. private PointLabel pointLabel123;
  4991. private PointLabel pointLabel124;
  4992. private PointLabel pointLabel125;
  4993. private PointLabel pointLabel126;
  4994. private PointLabel pointLabel127;
  4995. private PointLabel pointLabel128;
  4996. private PointLabel pointLabel129;
  4997. private PointLabel pointLabel130;
  4998. private PointLabel pointLabel131;
  4999. private PointLabel pointLabel132;
  5000. private PointLabel pointLabel133;
  5001. private PointLabel pointLabel134;
  5002. private PointLabel pointLabel135;
  5003. private PointLabel pointLabel136;
  5004. private PointLabel pointLabel137;
  5005. private PointLabel pointLabel138;
  5006. private PointLabel pointLabel139;
  5007. private PointLabel pointLabel140;
  5008. private PointLabel pointLabel141;
  5009. private PointLabel pointLabel142;
  5010. private PointLabel pointLabel143;
  5011. private PointLabel pointLabel144;
  5012. private PointLabel pointLabel145;
  5013. private PointLabel pointLabel146;
  5014. private PointLabel pointLabel147;
  5015. private PointLabel pointLabel148;
  5016. private PointLabel pointLabel149;
  5017. private PointLabel pointLabel150;
  5018. private PointLabel pointLabel151;
  5019. private PointLabel pointLabel152;
  5020. private PointLabel pointLabel153;
  5021. private PointLabel pointLabel154;
  5022. private PointLabel pointLabel155;
  5023. private PointLabel pointLabel156;
  5024. private PointLabel pointLabel157;
  5025. private PointLabel pointLabel158;
  5026. private PointLabel pointLabel159;
  5027. private PointLabel pointLabel160;
  5028. private PointLabel pointLabel161;
  5029. private PointLabel pointLabel162;
  5030. private PointLabel pointLabel163;
  5031. private PointLabel pointLabel164;
  5032. private PointLabel pointLabel165;
  5033. private PointLabel pointLabel166;
  5034. private PointLabel pointLabel167;
  5035. private PointLabel pointLabel168;
  5036. private PointLabel pointLabel169;
  5037. private PointLabel pointLabel170;
  5038. private PointLabel pointLabel171;
  5039. private PointLabel pointLabel172;
  5040. private PointLabel pointLabel173;
  5041. private PointLabel pointLabel174;
  5042. private PointLabel pointLabel175;
  5043. private PointLabel pointLabel176;
  5044. private PointLabel pointLabel177;
  5045. private PointLabel pointLabel178;
  5046. private PointLabel pointLabel179;
  5047. private PointLabel pointLabel180;
  5048. private PointLabel pointLabel181;
  5049. private PointLabel pointLabel182;
  5050. private PointLabel pointLabel87;
  5051. private PointLabel pointLabel88;
  5052. private PointLabel pointLabel89;
  5053. private PointLabel pointLabel90;
  5054. private PointLabel pointLabel91;
  5055. private PointLabel pointLabel92;
  5056. private PointLabel pointLabel93;
  5057. private PointLabel pointLabel94;
  5058. private PointLabel pointLabel95;
  5059. private PointLabel pointLabel96;
  5060. private PointLabel pointLabel97;
  5061. private PointLabel pointLabel98;
  5062. private PointLabel pointLabel99;
  5063. private PointLabel pointLabel100;
  5064. private PointLabel pointLabel101;
  5065. private PointLabel pointLabel102;
  5066. private PointLabel pointLabel103;
  5067. private PointLabel pointLabel104;
  5068. private PointLabel pointLabel105;
  5069. private PointLabel pointLabel106;
  5070. private PointLabel pointLabel107;
  5071. private PointLabel pointLabel108;
  5072. private PointLabel pointLabel109;
  5073. private PointLabel pointLabel110;
  5074. private PointLabel pointLabel55;
  5075. private PointLabel pointLabel56;
  5076. private PointLabel pointLabel57;
  5077. private PointLabel pointLabel58;
  5078. private PointLabel pointLabel59;
  5079. private PointLabel pointLabel60;
  5080. private PointLabel pointLabel61;
  5081. private PointLabel pointLabel62;
  5082. private PointLabel pointLabel63;
  5083. private PointLabel pointLabel64;
  5084. private PointLabel pointLabel65;
  5085. private PointLabel pointLabel66;
  5086. private PointLabel pointLabel67;
  5087. private PointLabel pointLabel68;
  5088. private PointLabel pointLabel69;
  5089. private PointLabel pointLabel70;
  5090. private PointLabel pointLabel71;
  5091. private PointLabel pointLabel72;
  5092. private PointLabel pointLabel73;
  5093. private PointLabel pointLabel74;
  5094. private PointLabel pointLabel75;
  5095. private PointLabel pointLabel76;
  5096. private PointLabel pointLabel77;
  5097. private PointLabel pointLabel78;
  5098. private PointLabel pointLabel79;
  5099. private PointLabel pointLabel80;
  5100. private PointLabel pointLabel81;
  5101. private PointLabel pointLabel82;
  5102. private PointLabel pointLabel83;
  5103. private PointLabel pointLabel84;
  5104. private PointLabel pointLabel85;
  5105. private PointLabel pointLabel86;
  5106. }
  5107. }