This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pluginKompleteKontrol.py
1365 lines (1363 loc) · 120 KB
/
pluginKompleteKontrol.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# PluginName: Komplete Kontrol
# Created by: NFX
#
from fireNFX_Classes import TnfxParameter, TnfxChannelPlugin
from fireNFX_PluginDefs import USER_PLUGINS
pluginKompleteKontrol = TnfxChannelPlugin('Komplete Kontrol')
if(pluginKompleteKontrol.Name not in USER_PLUGINS.keys()):
print('Komplete Kontrol param definitions loaded.')
USER_PLUGINS[pluginKompleteKontrol.Name] = pluginKompleteKontrol
pluginKompleteKontrol.addParamToGroup('SCALE', TnfxParameter(1, 'Scale On / Off', 0, 'Off ', True, 1) )
pluginKompleteKontrol.addParamToGroup('SCALE', TnfxParameter(2, 'Scale Root Note', 0, 'C ', False, 11) )
pluginKompleteKontrol.addParamToGroup('SCALE', TnfxParameter(8, 'Scale Bank', 0, 'Main ', False, 8) )
pluginKompleteKontrol.addParamToGroup('SCALE', TnfxParameter(3, 'Scale Type', 0, 'Major ', False, 14) )
pluginKompleteKontrol.addParamToGroup('SCALE', TnfxParameter(4, 'Scale Key Mode', 0, 'Mapped ', False, 4) )
pluginKompleteKontrol.addParamToGroup('SCALE', TnfxParameter(6, 'Chord Mode', 0, 'Off ', False, 2) )
pluginKompleteKontrol.addParamToGroup('SCALE', TnfxParameter(7, 'Chord Type', 0, 'Major ', False, 16) )
pluginKompleteKontrol.addParamToGroup('SCALE', TnfxParameter(9, 'Chord Position', 0, 'Root ', False, 20) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(26, 'On / Off', 0, 'Off ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(27, 'Mode', 0, 'Arp ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(28, 'Type', 0, 'Up ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(29, 'Rate', 0, '1/16 ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(30, 'Sequence', 0, 'Off ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(31, 'Swing', 0, '0.0 % ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(32, 'Octaves', 0, '1 ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(33, 'Dynamic', 0, '100.0 % ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(34, 'Gate', 0, '100.0 % ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(35, 'Retrigger', 0, 'Off ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(36, 'Repeat', 0, '1 ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(37, 'Offset', 0, 'Off ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(38, 'Inversion', 0, 'Off ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(39, 'Min. Key', 0, 'C-2 ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(40, 'Max. Key', 0, 'G8 ', False) )
pluginKompleteKontrol.addParamToGroup('ARP', TnfxParameter(41, 'Hold', 0, 'Off ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(0, 'NIKB00', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(5, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(10, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(11, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(12, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(13, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(14, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(15, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(16, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(17, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(18, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(19, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(20, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(21, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(22, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(23, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(24, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(25, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(42, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(43, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(44, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(45, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(46, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(47, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(48, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(49, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(50, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(51, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(52, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(53, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(54, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(55, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(56, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(57, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(58, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(59, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(60, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(61, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(62, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(63, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(64, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(65, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(66, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(67, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(68, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(69, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(70, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(71, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(72, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(73, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(74, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(75, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(76, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(77, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(78, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(79, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(80, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(81, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(82, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(83, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(84, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(85, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(86, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(87, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(88, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(89, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(90, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(91, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(92, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(93, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(94, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(95, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(96, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(97, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(98, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(99, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(100, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(101, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(102, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(103, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(104, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(105, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(106, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(107, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(108, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(109, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(110, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(111, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(112, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(113, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(114, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(115, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(116, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(117, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(118, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(119, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(120, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(121, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(122, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(123, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(124, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(125, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(126, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(127, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(128, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(129, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(130, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(131, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(132, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(133, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(134, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(135, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(136, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(137, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(138, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(139, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(140, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(141, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(142, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(143, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(144, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(145, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(146, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(147, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(148, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(149, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(150, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(151, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(152, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(153, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(154, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(155, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(156, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(157, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(158, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(159, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(160, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(161, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(162, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(163, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(164, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(165, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(166, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(167, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(168, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(169, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(170, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(171, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(172, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(173, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(174, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(175, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(176, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(177, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(178, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(179, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(180, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(181, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(182, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(183, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(184, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(185, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(186, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(187, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(188, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(189, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(190, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(191, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(192, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(193, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(194, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(195, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(196, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(197, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(198, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(199, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(200, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(201, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(202, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(203, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(204, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(205, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(206, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(207, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(208, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(209, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(210, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(211, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(212, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(213, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(214, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(215, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(216, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(217, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(218, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(219, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(220, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(221, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(222, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(223, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(224, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(225, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(226, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(227, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(228, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(229, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(230, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(231, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(232, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(233, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(234, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(235, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(236, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(237, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(238, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(239, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(240, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(241, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(242, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(243, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(244, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(245, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(246, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(247, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(248, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(249, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(250, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(251, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(252, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(253, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(254, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(255, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(256, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(257, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(258, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(259, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(260, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(261, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(262, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(263, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(264, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(265, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(266, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(267, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(268, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(269, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(270, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(271, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(272, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(273, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(274, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(275, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(276, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(277, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(278, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(279, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(280, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(281, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(282, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(283, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(284, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(285, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(286, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(287, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(288, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(289, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(290, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(291, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(292, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(293, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(294, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(295, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(296, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(297, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(298, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(299, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(300, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(301, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(302, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(303, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(304, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(305, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(306, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(307, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(308, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(309, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(310, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(311, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(312, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(313, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(314, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(315, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(316, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(317, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(318, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(319, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(320, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(321, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(322, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(323, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(324, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(325, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(326, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(327, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(328, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(329, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(330, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(331, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(332, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(333, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(334, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(335, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(336, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(337, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(338, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(339, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(340, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(341, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(342, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(343, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(344, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(345, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(346, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(347, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(348, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(349, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(350, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(351, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(352, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(353, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(354, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(355, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(356, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(357, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(358, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(359, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(360, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(361, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(362, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(363, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(364, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(365, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(366, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(367, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(368, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(369, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(370, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(371, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(372, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(373, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(374, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(375, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(376, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(377, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(378, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(379, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(380, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(381, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(382, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(383, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(384, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(385, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(386, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(387, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(388, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(389, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(390, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(391, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(392, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(393, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(394, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(395, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(396, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(397, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(398, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(399, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(400, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(401, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(402, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(403, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(404, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(405, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(406, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(407, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(408, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(409, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(410, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(411, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(412, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(413, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(414, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(415, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(416, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(417, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(418, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(419, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(420, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(421, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(422, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(423, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(424, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(425, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(426, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(427, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(428, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(429, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(430, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(431, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(432, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(433, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(434, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(435, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(436, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(437, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(438, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(439, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(440, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(441, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(442, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(443, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(444, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(445, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(446, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(447, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(448, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(449, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(450, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(451, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(452, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(453, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(454, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(455, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(456, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(457, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(458, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(459, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(460, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(461, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(462, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(463, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(464, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(465, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(466, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(467, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(468, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(469, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(470, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(471, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(472, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(473, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(474, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(475, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(476, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(477, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(478, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(479, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(480, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(481, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(482, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(483, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(484, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(485, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(486, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(487, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(488, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(489, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(490, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(491, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(492, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(493, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(494, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(495, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(496, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(497, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(498, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(499, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(500, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(501, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(502, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(503, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(504, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(505, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(506, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(507, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(508, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(509, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(510, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(511, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(512, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(513, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(514, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(515, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(516, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(517, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(518, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(519, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(520, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(521, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(522, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(523, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(524, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(525, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(526, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(527, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(528, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(529, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(530, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(531, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(532, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(533, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(534, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(535, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(536, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(537, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(538, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(539, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(540, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(541, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(542, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(543, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(544, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(545, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(546, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(547, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(548, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(549, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(550, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(551, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(552, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(553, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(554, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(555, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(556, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(557, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(558, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(559, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(560, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(561, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(562, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(563, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(564, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(565, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(566, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(567, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(568, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(569, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(570, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(571, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(572, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(573, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(574, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(575, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(576, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(577, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(578, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(579, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(580, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(581, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(582, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(583, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(584, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(585, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(586, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(587, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(588, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(589, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(590, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(591, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(592, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(593, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(594, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(595, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(596, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(597, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(598, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(599, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(600, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(601, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(602, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(603, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(604, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(605, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(606, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(607, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(608, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(609, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(610, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(611, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(612, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(613, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(614, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(615, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(616, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(617, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(618, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(619, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(620, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(621, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(622, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(623, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(624, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(625, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(626, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(627, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(628, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(629, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(630, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(631, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(632, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(633, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(634, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(635, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(636, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(637, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(638, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(639, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(640, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(641, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(642, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(643, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(644, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(645, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(646, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(647, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(648, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(649, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(650, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(651, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(652, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(653, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(654, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(655, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(656, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(657, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(658, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(659, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(660, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(661, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(662, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(663, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(664, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(665, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(666, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(667, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(668, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(669, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(670, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(671, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(672, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(673, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(674, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(675, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(676, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(677, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(678, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(679, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(680, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(681, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(682, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(683, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(684, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(685, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(686, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(687, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(688, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(689, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(690, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(691, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(692, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(693, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(694, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(695, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(696, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(697, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(698, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(699, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(700, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(701, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(702, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(703, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(704, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(705, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(706, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(707, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(708, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(709, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(710, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(711, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(712, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(713, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(714, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(715, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(716, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(717, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(718, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(719, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(720, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(721, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(722, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(723, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(724, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(725, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(726, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(727, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(728, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(729, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(730, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(731, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(732, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(733, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(734, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(735, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(736, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(737, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(738, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(739, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(740, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(741, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(742, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(743, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(744, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(745, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(746, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(747, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(748, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(749, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(750, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(751, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(752, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(753, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(754, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(755, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(756, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(757, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(758, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(759, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(760, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(761, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(762, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(763, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(764, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(765, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(766, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(767, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(768, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(769, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(770, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(771, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(772, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(773, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(774, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(775, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(776, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(777, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(778, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(779, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(780, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(781, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(782, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(783, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(784, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(785, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(786, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(787, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(788, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(789, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(790, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(791, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(792, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(793, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(794, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(795, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(796, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(797, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(798, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(799, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(800, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(801, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(802, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(803, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(804, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(805, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(806, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(807, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(808, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(809, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(810, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(811, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(812, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(813, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(814, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(815, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(816, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(817, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(818, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(819, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(820, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(821, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(822, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(823, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(824, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(825, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(826, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(827, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(828, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(829, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(830, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(831, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(832, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(833, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(834, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(835, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(836, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(837, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(838, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(839, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(840, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(841, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(842, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(843, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(844, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(845, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(846, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(847, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(848, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(849, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(850, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(851, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(852, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(853, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(854, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(855, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(856, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(857, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(858, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(859, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(860, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(861, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(862, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(863, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(864, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(865, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(866, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(867, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(868, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(869, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(870, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(871, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(872, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(873, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(874, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(875, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(876, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(877, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(878, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(879, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(880, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(881, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(882, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(883, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(884, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(885, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(886, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(887, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(888, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(889, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(890, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(891, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(892, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(893, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(894, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(895, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(896, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(897, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(898, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(899, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(900, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(901, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(902, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(903, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(904, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(905, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(906, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(907, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(908, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(909, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(910, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(911, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(912, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(913, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(914, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(915, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(916, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(917, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(918, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(919, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(920, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(921, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(922, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(923, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(924, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(925, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(926, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(927, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(928, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(929, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(930, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(931, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(932, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(933, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(934, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(935, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(936, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(937, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(938, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(939, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(940, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(941, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(942, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(943, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(944, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(945, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(946, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(947, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(948, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(949, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(950, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(951, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(952, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(953, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(954, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(955, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(956, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(957, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(958, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(959, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(960, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(961, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(962, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(963, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(964, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(965, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(966, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(967, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(968, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(969, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(970, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(971, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(972, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(973, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(974, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(975, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(976, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(977, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(978, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(979, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(980, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(981, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(982, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(983, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(984, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(985, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(986, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(987, '-', 0, '0.00 ', False) )
pluginKompleteKontrol.addParamToGroup('ALL', TnfxParameter(988, '-', 0, '0.00 ', False) )